mumuki-laboratory 6.7.7 → 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -5
  3. data/app/assets/javascripts/mumuki_laboratory/application/timer.js +10 -5
  4. data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
  5. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_datepicker.scss +10 -0
  6. data/app/controllers/api/organizations_controller.rb +1 -1
  7. data/app/controllers/application_controller.rb +4 -3
  8. data/app/controllers/concerns/organizations_controller_template.rb +3 -3
  9. data/app/controllers/concerns/with_authorization.rb +2 -2
  10. data/app/controllers/invitations_controller.rb +8 -4
  11. data/app/controllers/users_controller.rb +1 -1
  12. data/app/helpers/menu_bar_helper.rb +4 -1
  13. data/app/views/errors/gone.html.erb +1 -1
  14. data/app/views/invitations/_invitation_form.html.erb +23 -0
  15. data/app/views/invitations/show.html.erb +1 -39
  16. data/app/views/users/_profile_fields.html.erb +20 -0
  17. data/app/views/users/_user_form.html.erb +11 -0
  18. data/app/views/users/show.html.erb +1 -23
  19. data/config/routes.rb +1 -1
  20. data/lib/mumuki/laboratory/locales/en.yml +5 -0
  21. data/lib/mumuki/laboratory/locales/es.yml +5 -0
  22. data/lib/mumuki/laboratory/locales/pt.yml +5 -0
  23. data/lib/mumuki/laboratory/version.rb +1 -1
  24. data/spec/controllers/exercise_solutions_controller_spec.rb +1 -1
  25. data/spec/controllers/organizations_api_controller_spec.rb +6 -6
  26. data/spec/controllers/users_api_controller_spec.rb +6 -6
  27. data/spec/dummy/db/schema.rb +8 -1
  28. data/spec/dummy/db/seeds.rb +1 -0
  29. data/spec/dummy/public/error/403.svg +218 -0
  30. data/spec/dummy/public/error/404.svg +218 -0
  31. data/spec/dummy/public/error/410.svg +218 -0
  32. data/spec/dummy/public/error/500.svg +218 -0
  33. data/spec/dummy/public/error/timeout_1.svg +1 -0
  34. data/spec/dummy/public/error/timeout_2.svg +3 -0
  35. data/spec/dummy/public/error/timeout_3.svg +1 -0
  36. data/spec/features/login_flow_spec.rb +2 -0
  37. data/spec/features/not_found_private_flow_spec.rb +4 -4
  38. data/spec/features/not_found_public_flow_spec.rb +1 -1
  39. data/spec/features/profile_flow_spec.rb +11 -10
  40. data/spec/helpers/icons_helper_spec.rb +1 -1
  41. metadata +40 -15
  42. data/app/views/users/_users_form.html.erb +0 -0
  43. data/public/error/403.svg +0 -1
  44. data/public/error/404.svg +0 -1
  45. data/public/error/500.svg +0 -1
  46. data/public/error/timeout_1.svg +0 -1
  47. data/public/error/timeout_2.svg +0 -1
  48. data/public/error/timeout_3.svg +0 -1
@@ -4,9 +4,9 @@ feature 'not found on app', organization_workspace: :base do
4
4
  before { set_subdomain_host! Organization.base.name }
5
5
  before { Organization.base.switch! }
6
6
 
7
- let(:owner) { create(:user, permissions: {owner: '*'}) }
7
+ let(:admin) { create(:user, permissions: {admin: '*'}) }
8
8
  let(:student_api_client) { create :api_client, role: :student, grant: 'central/*' }
9
- let(:owner_api_client) { create :api_client, role: :owner, grant: '*' }
9
+ let(:admin_api_client) { create :api_client, role: :admin, grant: '*' }
10
10
 
11
11
  scenario 'app without authentication' do
12
12
  visit '/nonexistentroute'
@@ -15,7 +15,7 @@ feature 'not found on app', organization_workspace: :base do
15
15
  end
16
16
 
17
17
  scenario 'app with authentication' do
18
- set_current_user! owner
18
+ set_current_user! admin
19
19
 
20
20
  visit '/nonexistentroute'
21
21
 
@@ -34,7 +34,7 @@ feature 'not found on app', organization_workspace: :base do
34
34
  end
35
35
 
36
36
  scenario 'api with authentication' do
37
- Capybara.current_session.driver.header 'Authorization', "Bearer #{owner_api_client.token}"
37
+ Capybara.current_session.driver.header 'Authorization', "Bearer #{admin_api_client.token}"
38
38
 
39
39
  visit '/api/nonexistentroute'
40
40
 
@@ -4,7 +4,7 @@ feature 'Choose organization Flow' do
4
4
  let!(:central) { create(:organization, name: 'central') }
5
5
  let!(:some_orga) { create(:public_organization, name: 'someorga', profile: profile) }
6
6
 
7
- let(:profile) { Mumukit::Platform::Organization::Profile.parse json }
7
+ let(:profile) { Mumuki::Domain::Organization::Profile.parse json }
8
8
  let(:json) { { contact_email: 'some@email.com', locale: 'en', errors_explanations: { 404 => 'Some explanation'} } }
9
9
 
10
10
  scenario 'when routes does not exist in implicit central' do
@@ -2,7 +2,6 @@ require 'spec_helper'
2
2
 
3
3
  feature 'Standard Flow', organization_workspace: :test do
4
4
  let!(:user) { create(:user, uid: 'mumuki@test.com', first_name: nil) }
5
- let!(:user2) { create(:user, uid: 'johndoe@test.com') }
6
5
  let(:haskell) { create(:haskell) }
7
6
  let!(:chapter) {
8
7
  create(:chapter, name: 'Functional Programming', lessons: [
@@ -26,31 +25,33 @@ feature 'Standard Flow', organization_workspace: :test do
26
25
  reindex_current_organization!
27
26
  end
28
27
 
28
+ before do
29
+ OmniAuth.config.mock_auth[:developer] =
30
+ OmniAuth::AuthHash.new provider: 'developer',
31
+ uid: user.uid,
32
+ credentials: {},
33
+ info: {}
34
+ end
35
+
29
36
  before do
30
37
  visit '/'
31
38
  end
32
39
 
33
40
  scenario 'redirect to /user if profile uncompleted and has access to organizations' do
34
- OmniAuth.config.mock_auth[:developer] =
35
- OmniAuth::AuthHash.new provider: 'developer',
36
- uid: 'mumuki@test.com',
37
- credentials: {},
38
- info: {}
39
-
40
41
  user.update! permissions: {student: 'test/*'}
41
42
  click_on 'Sign in'
42
43
  expect(page).to have_text('Please complete your profile data to continue!')
43
44
  end
44
45
 
45
46
  scenario 'do not redirect to /user if profile is complete' do
46
- user2.update! permissions: {student: 'test/*'}
47
+ user.update! first_name: 'Mercedes', last_name: 'Sosa'
47
48
  click_on 'Sign in'
48
49
  expect(page).not_to have_text('Please complete your profile data to continue!')
49
50
  end
50
51
 
51
- scenario 'do not redirect to /user if user do not have organizations' do
52
+ scenario 'does redirect to /user even if user does not have organizations' do
52
53
  click_on 'Sign in'
53
- expect(page).not_to have_text('Please complete your profile data to continue!')
54
+ expect(page).to have_text('Please complete your profile data to continue!')
54
55
  end
55
56
 
56
57
  context 'logged in user' do
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe IconsHelper do
3
+ describe IconsHelper, organization_workspace: :test do
4
4
  helper IconsHelper
5
5
  helper FontAwesome::Rails::IconHelper
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-laboratory
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.7.7
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-02 00:00:00.000000000 Z
11
+ date: 2019-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 6.7.0
33
+ version: 7.0.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 6.7.0
40
+ version: 7.0.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mumukit-login
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '6.1'
47
+ version: '7.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '6.1'
54
+ version: '7.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: mumukit-nuntius
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -66,20 +66,34 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '6.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: mumukit-auth
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '7.7'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '7.7'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: mumuki-styles
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
87
  - - "~>"
74
88
  - !ruby/object:Gem::Version
75
- version: 1.21.1
89
+ version: '1.19'
76
90
  type: :runtime
77
91
  prerelease: false
78
92
  version_requirements: !ruby/object:Gem::Requirement
79
93
  requirements:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
- version: 1.21.1
96
+ version: '1.19'
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: muvment
85
99
  requirement: !ruby/object:Gem::Requirement
@@ -221,6 +235,7 @@ files:
221
235
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_chapter_show.scss
222
236
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_checkboxes.scss
223
237
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_console.scss
238
+ - app/assets/stylesheets/mumuki_laboratory/application/modules/_datepicker.scss
224
239
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss
225
240
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_dropdown.scss
226
241
  - app/assets/stylesheets/mumuki_laboratory/application/modules/_editor.scss
@@ -342,6 +357,7 @@ files:
342
357
  - app/views/exercises/_exercise_assignment.html.erb
343
358
  - app/views/exercises/_read_only.html.erb
344
359
  - app/views/exercises/show.html.erb
360
+ - app/views/invitations/_invitation_form.html.erb
345
361
  - app/views/invitations/show.html.erb
346
362
  - app/views/layouts/_authoring.html.erb
347
363
  - app/views/layouts/_copyright.html.erb
@@ -408,7 +424,8 @@ files:
408
424
  - app/views/user_mailer/3rd_reminder.text.erb
409
425
  - app/views/user_mailer/no_submissions_reminder.html.erb
410
426
  - app/views/user_mailer/no_submissions_reminder.text.erb
411
- - app/views/users/_users_form.html.erb
427
+ - app/views/users/_profile_fields.html.erb
428
+ - app/views/users/_user_form.html.erb
412
429
  - app/views/users/show.html.erb
413
430
  - config/i18n-tasks.yml
414
431
  - config/initializers/form_builder.rb
@@ -450,12 +467,6 @@ files:
450
467
  - public/character/magnifying_glass/loop.svg
451
468
  - public/compass_rose.svg
452
469
  - public/email-banner.png
453
- - public/error/403.svg
454
- - public/error/404.svg
455
- - public/error/500.svg
456
- - public/error/timeout_1.svg
457
- - public/error/timeout_2.svg
458
- - public/error/timeout_3.svg
459
470
  - public/favicon.ico
460
471
  - public/kibi.svg
461
472
  - public/logo-alt-large.png
@@ -503,6 +514,13 @@ files:
503
514
  - spec/dummy/db/seeds.rb
504
515
  - spec/dummy/package.json
505
516
  - spec/dummy/public/character/animations.json
517
+ - spec/dummy/public/error/403.svg
518
+ - spec/dummy/public/error/404.svg
519
+ - spec/dummy/public/error/410.svg
520
+ - spec/dummy/public/error/500.svg
521
+ - spec/dummy/public/error/timeout_1.svg
522
+ - spec/dummy/public/error/timeout_2.svg
523
+ - spec/dummy/public/error/timeout_3.svg
506
524
  - spec/evaluation_helper.rb
507
525
  - spec/features/chapter_spec.rb
508
526
  - spec/features/choose_organization_spec.rb
@@ -637,6 +655,13 @@ test_files:
637
655
  - spec/dummy/bin/rails
638
656
  - spec/dummy/bin/setup
639
657
  - spec/dummy/public/character/animations.json
658
+ - spec/dummy/public/error/timeout_2.svg
659
+ - spec/dummy/public/error/timeout_3.svg
660
+ - spec/dummy/public/error/500.svg
661
+ - spec/dummy/public/error/404.svg
662
+ - spec/dummy/public/error/410.svg
663
+ - spec/dummy/public/error/403.svg
664
+ - spec/dummy/public/error/timeout_1.svg
640
665
  - spec/dummy/config.ru
641
666
  - spec/dummy/db/schema.rb
642
667
  - spec/dummy/db/seeds.rb
File without changes
@@ -1 +0,0 @@
1
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="basic" width="1326" height="346" xmlns="http://www.w3.org/2000/svg"><defs><symbol id="a" overflow="visible"><path fill="#FF5B80" d="M78 27.7l-.3-5.25q-.45-7.75-8.2-7.35l-56.25 3.25q-7.7.4-7.25 8.05l.3 5.55L78 27.7"/><path fill="#317C99" d="M8.05 62.8q.45 7.7 8.15 7.3l56.25-3.25q7.75-.4 7.3-8.1L78 27.7 6.3 31.95 8.05 62.8"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M76.9 16.7l.35.2 7.7-1.4m-8.05 1.2l6-5.75"/></symbol></defs><path fill="#CCC" d="M660.65 284.6h-.3q-.1.05-.05.1 0 .05.1.1h.6q-.1.05-.25.05-.15.05-.1.15.05.1.25.15.2 0 .35.05h-.1l-.15.05h-.15q-.15-.05-.25-.05-.15 0-.25.05h-.1q-.15-.05-.3-.05h-.1q.1-.05 0-.05 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.15.1-.15.2.05.05.3.05.25.15.55.15.1 0 .2-.05v.05q0 .05.2.05.1.05.2.05 0 .05.2.15.25.05.5.05.3 0 .5-.05.05-.05.1-.05h.15q.1 0 .15-.1.05 0 .05-.05l-.1-.1h.2q.1-.1.05-.15l-.15-.05q.15 0 .25-.05.2-.05.15-.15-.1-.1-.25-.15-.25-.05-.55-.05-.048 0-.1.05.05-.052.05-.1h-.05l.05-.05q.1 0 .25-.05l.05.05q.05 0 .15.05.15.05.3.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.15l-.1-.05q-.1-.05-.15-.05-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05v.05h-.1q-.15.05-.25.05-.15.1-.1.15h-.1m-.25-1.6q0 .05.15.1h.45v-.05q.002.05.1.05 0 .1.15.15h.75q.15-.05.15-.15-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05-.049 0-.05.05V283q-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05m2.7.3q-.05-.05-.2-.05-.15 0-.25.05-.05 0 0 .05 0 .05.05.05.1.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.2-.05m-.45.45q.05 0 .05-.1 0-.05-.2-.1h-.5v.1q0 .1.1.1.1.05.3.05.2 0 .25-.05m-.65.45q0 .05.15.05.15.05.25.05h.1q-.048.002 0 .05 0 .05.15.1.15.1.35.1.2 0 .3-.1.15-.05.15-.1l-.2-.1q-.25-.05-.45-.05-.05 0-.1.05v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1m.7-.1q.2.05.35.05.2 0 .25-.05.15-.05.15-.1l-.2-.1h-.6q-.2.05-.15.1 0 .05.2.1m1.2-.45q-.05 0-.05.1 0 .05.2.1h.45q.05-.05.05-.1 0-.1-.15-.1-.15-.05-.25-.05t-.25.05m.8-.35q.05.05.3.15.25.05.5.05.3 0 .45-.05.2-.1.15-.15 0-.1-.3-.15-.2-.05-.5-.05-.25 0-.5.05-.1.05-.1.15m.9.8q-.3 0-.5.05-.1.05-.1.15.05.05.25.1.25.15.45.15-.1.1-.1.15.05.1.25.15h.05q.099.049.35.05-.102.002-.15.05l-.15.05q0 .05.2.1-.15.05-.2.05h-.05q-.1.1-.1.2h.05v.05h-.05q-.2-.05-.25-.05-.2 0-.2.05-.1 0-.1.05l-.1-.05h-.05q-.05-.05-.25-.05h-.15v-.15h-.2q-.05-.05-.25-.05l-.2.1v.1q0 .05.1.05l.05.05h-.05q-.05 0-.05.05-.15 0-.05.05v.05q.05.05.2.1.1.05.15.05.05.05.1 0 .15.05.25.05.2 0 .3-.05.05 0 .05-.05.05 0 .15-.05.05 0 .1-.05.05 0 .05-.05h.5q.05-.05 0-.1.05 0 .2.05.1.05.3.05l-.1.05q0 .05.15.1t.3.05q.1 0 .15-.05l.1-.05h.05q.15 0 .25-.1.05 0 .05-.05t-.2-.1l-.05.05q.05-.1 0-.2 0-.05-.1-.05-.15 0-.2-.05h-.05q-.05 0-.2-.05h.05q.1-.05.1-.1l-.15-.05q-.141-.047-.25-.05h.45q.1 0 .25-.1.05.05.1.05.2.05.35.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.6q-.05 0-.05-.05h-.15q-.05-.05-.15-.05-.25-.1-.5-.1h-.1l.05-.05q.25-.05.15-.1 0-.1-.3-.15-.15-.05-.4-.05m1.4-1.55q.15-.05.1-.1 0-.05-.25-.1-.1-.05-.35-.05-.2 0-.35.05-.15.05-.15.1.1.05.25.1.25.05.45.05t.3-.05m-.2.75q-.2-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.2.05.1.05.15.1h.55q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05 0-.05-.1-.05m-.25.5q0-.05-.1-.15h-.25q-.2 0-.3.1-.1.05-.1.1.05 0 .15.05.15.05.3.05t.25-.1l.05-.05m1.35 0q.05-.05.05-.15 0-.05-.2-.05-.05-.05-.25-.05-.1 0-.2.05v.05q0 .1.1.15h.5m-.55.5q.1 0 .15-.05l.1-.05q0-.05-.15-.1-.1-.05-.25-.05t-.2.05q-.1.05-.1.1l.15.05q.1.05.3.05m-9.85.15l.15-.05q0-.05-.2-.1-.1-.05-.25-.05-.1 0-.2.05t-.1.1l.15.05q.15.1.3.1.1 0 .15-.1m-.5.6q.15-.05.1-.1 0-.1-.25-.1l-.05-.05q-.05-.1-.3-.15-.25-.05-.55-.05-.25 0-.4.05-.2.1-.15.2l.05.05q0 .05.15.05-.2.05-.3.1-.15.05-.05.1 0 .1.15.2h.6q.25 0 .35-.1.2-.05.15-.1-.048-.048-.2-.1.158.05.4.05.15 0 .3-.05m-1.35-.1h.2q.05 0 .1.05-.19-.047-.3-.05m.5.05q.05 0 .1.05-.095-.048-.2-.05h.1m1.25.9h-.55q-.05.05 0 .1 0 .049.05.05-.151 0-.3.05v.1q0 .05.15.1h.4q0 .05.05.05.2.05.3.05h.25q.25 0 .35-.05h.3q-.1.1-.1.15.05.1.3.15.192.048.475.05-.178.003-.225.05-.15.05-.15.1-.1 0-.15.05-.2.1-.15.15 0 .05.25.1v.05h-.25q0-.05-.1-.05-.2-.05-.4-.05t-.4.05q-.05.05-.05.1.05.05.2.1.25.05.4.05h.45q.1.05.3.05.15 0 .3-.05.1-.05.1-.1-.05-.05-.25-.1h.1q.15 0 .35-.05.1-.1.1-.15l-.1-.1h.1q.15-.05.05-.1 0-.05-.1-.1h-.1q0-.05.05-.05.05-.05.1-.05h.15q.05 0 .05.05h.25q.15 0 .2-.05.15 0 .15-.1 0-.05-.25-.05.1-.05.1-.1-.05-.05-.15-.1h-.5l-.05.05h-.2q-.15-.05-.35 0h-.1q.15-.05.15-.2-.05-.05-.15-.1.1-.1.1-.15-.05-.1-.3-.1.1-.05.1-.1-.05-.05-.15-.1-.15-.05-.25-.05 0-.05-.2-.1h-.6q-.1.05-.1.1.05.05.2.1h.15l.15.1q-.15 0-.2.05h-.05q-.15.05-.05.15v.05q-.001-.05-.1-.05h-.1"/><path fill="#CCC" d="M657 285.75q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.25 0-.35.05-.1.05-.05.1 0 .05.1.1h.7m-.65 1.15l.1-.05q.15-.1.1-.15-.05-.1-.25-.1-.25-.05-.55-.05-.2 0-.4.05t-.1.15q.05.05.15.1-.05.05 0 .15 0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.1-.15-.1m-.5.65q-.2.1-.15.15 0 .15.25.2.25.05.5.05h.1q.2.05.3.05.2-.05.3-.1h.05v.1q-.1 0-.05.05 0 .05.15.05-.25.1-.3.1-.2.05-.15.15 0 .05.25.1h.1q-.05.05-.1.05l-.05.1q0 .05.1.1h.05q-.049.001 0 .05 0 .05.15.05h.25q.1 0 .2-.05.15 0 .15-.05-.05-.05-.2-.1h-.05q.05-.002.05-.1-.05 0-.15-.05.15 0 .3-.05.1-.05.1-.1-.05-.1-.25-.15h-.1q.052-.002.1-.05h.05q.15-.05.2-.05l.05-.05q.2.05.3.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.1H658l-.05.05-.05-.05h-.7l-.15-.15v-.05l-.05-.05h.1q.1-.05.05-.1 0-.05-.1-.05-.15-.05-.25-.05-.1.05-.25.1-.05 0-.05.05-.15-.05-.25-.05-.25 0-.4.05m-.25 0q.1-.05.1-.1-.05 0-.15-.05-.1-.05-.25-.05h-.05q-.1 0-.2-.05-.2-.05-.5-.05-.25 0-.45.05-.15.1-.1.15 0 .1.25.15.25.05.5.05.3 0 .5-.05.05 0 .05-.05h.3m2-.7q.05.05.15.05.05.1.25.1.1 0 .25-.1.05 0 0-.05 0-.05-.05-.1h-.45v-.05l-.1-.05q-.2-.05-.3-.05-.15 0-.2.05l-.1.05q.05.05.15.1h.4v.05m-3.95-1.25q.25 0 .45-.05.15-.05.1-.15 0-.05-.25-.2-.25-.05-.45-.05-.25 0-.5.05-.1.15-.1.2-.1 0-.15.05-.1 0-.05.1 0 .05.2.05.1.05.3 0h.45m-.1 1.6q-.05-.1-.3-.15-.25-.05-.5-.05h-.15l-.1-.1h-.45q-.1.1-.1.15h-.1l-.05-.05v-.1q0-.05-.25-.1-.1-.05-.35-.05-.2 0-.35.05-.1.1-.1.2 0 .05.1.1 0 .05.1.05.25.05.5.05.05.1.2.15.3.05.55.05.25 0 .45-.05.1.05.35.05.25 0 .35-.05.25-.05.2-.15m.25-.75q.05.05.15.1h.7q.15-.05.1-.1 0-.05-.2-.1-.15-.05-.35-.05-.25 0-.3.05-.1.05-.1.1m1.75 1.55q-.3-.05-.55-.05-.25 0-.45.05-.15.05-.1.15v.05l-.05-.05h-.3q-.2 0-.4.05-.1.05-.05.1 0 .05.2.1.15.05.35.05.2 0 .3-.1.05-.05.05-.1h.15q.3.1.55.1.2 0 .4-.1.2-.05.1-.1-.05-.1-.2-.15m-1.1 1.1q-.05 0 0 .05 0 .1.25.15h.95q.2 0 .25-.05.1-.05.1-.1t-.25-.1h-.05q-.05-.05-.15-.1-.3-.05-.55-.05v-.05h.15q.25 0 .4-.05.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.45-.05-.3 0-.45.05-.2.15-.1.2.05.1.15.15h-.35q0-.05-.1-.05-.2-.05-.4-.05-.15 0-.2.05-.15.05-.15.1.05.05.2.05.1.05.3.05.15 0 .3-.05 0 .05.15.1.1 0 .15.05m-1.2-.05q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1 0 .05.2.1h.6m.7.85q0 .1.3.15.2.05.5.05.25 0 .4-.1.2-.05.2-.15-.05-.05-.35-.1h-.45q-.3 0-.45.05-.2.05-.15.1m3.4-.95q-.05.05-.05.1l.05.05q-.15.05-.15.1.1.1.3.2h.5q.3 0 .5-.1.15-.05.1-.15 0-.05-.3-.15h-.1q0-.05-.2-.1h-.3q-.25 0-.35.05m-1.35.25q.05 0 .15.05.1.05.3.05.1 0 .25-.05.05-.05 0-.05 0-.05-.1-.1h-.55q-.05.05-.05.1m.75.45q-.15 0-.15.05l.2.1h.5q.1-.05.05-.1 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05m-.75.3h-.25v.1l.15.05q.098.098.25.1-.1.002-.1.05.1.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.1-.15h-.35l.1-.05q0-.05-.2-.1H656m-3.5-3.95q-.05-.05-.3-.1t-.45-.05v-.05q-.2-.05-.5-.05-.25 0-.5.05-.1.1-.1.15.05.1.3.15.25.1.5.1.2.05.5.05.25 0 .4-.05.25-.1.15-.2m-1.95.5q.15-.1.1-.2-.05-.05-.25-.1-.3-.1-.55-.1-.1 0-.25.1h-.15q-.2.1-.15.15v.05h-.2q-.25 0-.45.05-.15.05-.1.15.05.05.25.15.3.05.5.05.3 0 .45-.05.15-.1.1-.15v-.05h.25q.25 0 .45-.05m-.8 1.55q-.15.05-.15.15.1.05.3.1.25.1.5.1.3 0 .5-.1.1-.05.05-.1 0-.1-.25-.15-.15-.05-.45-.05-.25 0-.5.05m.55.9v.05q0 .05.1.05.15.05.25.05.2 0 .25-.05.05 0 .05-.05t-.2-.05-.2-.05q-.15 0-.25.05m17.75-3.85q-.1 0-.05.05 0 .05.15.05.1.05.2.05.15 0 .25-.05.05 0 .15-.05.05.05.2.05h.1q.1.05.2.05h.1q.1 0 .15-.05.15 0 .15-.05-.097-.048-.15-.05h.2q.05.05.2.05.05-.05.1-.05.2 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1h-.3q-.1.05-.15.05h-.1q0-.05-.15-.05v-.05q.05 0 .05-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.049.049 0 .05h-.05v-.05q.05 0 .05-.05l-.05-.05h-.15q-.1-.05-.25-.05t-.2.05q-.1 0-.1.05t.2.1h.25q-.053.002-.15.05-.1.05-.1.15.05 0 .05.05-.1 0-.25.05m-.55.45q-.05.05-.05.1.05 0 .15.05h.15v.05h.5q.1-.05.1-.1v-.05q0-.05-.15-.05-.15-.05-.25-.05t-.2.05h-.25m-.3.55h-.2q-.15.1-.1.15l.1.05h-.3q-.15.05-.1.1 0 .05.15.1h.35q0 .05.05.05.2.05.3.05.2 0 .25-.1h.45q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05h-.1q-.197.049-.3.05.053-.002.15-.05.15-.05.15-.1-.05-.1-.2-.1h-.25m-1.05-.2l.05.05h-.55q-.1.05-.1.1l.15.15q.2.05.4.05.15 0 .2-.05.15-.1.1-.15V286h.45q.15-.05.15-.1t-.25-.1h-.55q-.05.05-.05.1"/><path fill="#CCC" d="M666.7 286.7q-.1.05-.1.1t.2.05q.1.05.3.05h.2q.05.15.3.2.25.05.55 0h.1v.05h.1q.15.05.3.05t.2-.05h.05q.2.05.35.05l.2.1q.2.05.35.05h.5q.05-.05.1-.05h.1q.15.05.35.05.15-.05.15-.1h.2q.05.05.1.05l.15.05h.55q.05-.05 0-.1v-.05h-.1q-.1-.05-.2-.05h-.15v-.05h.15q.05 0 .05-.05.15-.05.1-.15 0-.05-.05-.05 0-.05-.05-.1h-.5l.05-.05q.2-.05.15-.1 0-.1-.25-.15-.2-.05-.5-.05-.2.05-.45.1-.15.05-.15.15l.2.1h-.2q-.05.05-.05.1l.2.05q.1.1.25.1.1 0 .2-.1 0-.05.1-.05v-.05h.15q0 .05-.05.05v.15l.1.05h.1q.048.048.15.05-.102.002-.15.05h-.1l-.05-.05h-.05q-.1.05-.2.05h-.15q0-.1-.25-.15h-.1q-.2-.1-.4-.1h-.25q-.15-.05-.35-.05-.25 0-.4.05-.05 0-.05.1h-.1q.1-.1 0-.15 0-.05-.2-.1.05-.05.05-.1-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15.1-.1.1v.05h-.3l-.25-.05q-.05-.05-.2-.05-.2 0-.3.05m-.9 0q.05-.05.15-.05-.05-.05-.05-.1-.05-.1-.25-.15-.25-.05-.55-.05-.25 0-.4.1-.05.05-.15.05-.15 0-.15.05-.15 0-.15.05t.15.05q0 .05.05.05h.3q.05 0 .05.05-.1 0-.15.05h-.1q-.05 0-.05.05.05.05.2.15h.35q.05-.1.1-.1.097 0 .15-.05l-.05-.05q0-.047-.1-.05h.2q.3 0 .45-.05"/><path fill="#CCC" d="M665.95 286.9q0-.05-.15-.1h-.5v.05l-.05.05h.05q0 .1.1.1.15.05.25.05.15 0 .25-.05l.05-.1m-.1.2q.05 0 .05.05l.05.05h.5q.1-.05.05-.1l-.1-.05q-.1-.05-.25-.05h-.05q-.1 0-.2.05l-.05.05m.95.15l-.1.1q.05.05.15.05.141.047.25.05h-.3q.05.05 0 .05-.1 0-.25.05-.1.05-.1.15.05.1.1.15-.1-.05-.3-.05h-.05q-.2.05-.25.05-.05.05-.05.1t.2.1h.4q0 .05.05.05h.15q.1.05.15.05.05 0 .15-.05.15.05.35.05h.15q0 .05.15.1h.5q0-.05.05-.05v-.05h.05q.05 0 .1.05.1 0 .2-.05h.35q.05-.05.15-.05.05-.05.05-.1v-.05l.05.05q.25.05.5.05.3 0 .45-.05.1-.05.15-.05h.1q.15.05.3.05v.05q.05.05.15.05l-.1.05q-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15-.05.15-.1-.1-.05-.15 0l.05-.1q.1 0 0-.05 0-.05-.05-.05h-.1q.05-.1.05-.15-.05-.1-.25-.1-.1-.05-.3-.05l.05-.05q0-.05-.15-.05l-.05-.05h-.2q-.1 0-.25.05-.05 0-.05.05l-.05-.05h-.15q0-.05-.1-.1h-.5q-.05 0-.1.05 0-.05-.15-.1h-.5q-.1.05-.1.1l.1.05h-.1l-.1.05q0 .05.2.1.1.1.2.1.15 0 .25-.1.05-.05.05-.1h-.05q.15-.05.2-.05.05 0 .1.05-.1 0-.25.05v.05q-.1.1-.05.15 0 .049.05.05h-.05q-.15-.05-.35-.05-.25.05-.35.1h-.05q-.1 0-.1.05v.1q-.1-.05-.15-.05h-.15q.102-.002.15-.05v-.05q0-.05-.15-.1h-.05q.05-.001.05-.05.1 0 0-.1 0-.05-.15-.1v-.05q0-.05-.2-.1h-.2q.103-.003.15-.05.1 0 .05-.05h.05q.15.05.3.05t.2-.05q.05 0 .05-.05t-.1-.1h-.5q-.05.05-.05.1l-.05-.05h-.5m3.25.4l.15.05v.1q-.1-.1-.15-.1v-.05m-4.7-2.6l.05-.05q.15-.05.2-.05l.05-.05h.05q0-.05-.05-.1 0-.05-.15-.1-.2-.05-.45-.05-.2 0-.35.05h.05q-.2.05-.2.1l.2.1q-.05.05 0 .05 0 .05.1.1h.5m-.8 0q.1 0 .1-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.25.1-.05 0-.05.05t.2.05h.25q.1 0 .2-.05"/><path fill="#CCC" d="M663.9 285.2q.05 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.05.1.05.15.05h.15q.1 0 .15-.05m-.55.8v-.05h.1q.1.05.2.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.3q-.094-.047-.2-.05h.15q.25 0 .35-.05.1-.05.05-.1 0-.05-.15-.1t-.4-.05q-.15 0-.3.05-.05.05-.05.1 0 .047.1.05h-.35q-.3 0-.4.05-.2.05-.15.15.1.05.25.1.2.05.3.1h-.05q0 .05.2.15h.1q-.05.002-.05.05-.15 0-.05.05 0 .1.1.1.2.05.35.05.25 0 .25-.05.2 0 .2-.1-.05-.05-.25-.05-.05-.05-.2-.05.1-.1.1-.15l-.1-.05m1.1.35q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.1.05.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.05m-.5.35h-.05q-.15 0-.35.05h-.05q-.2-.05-.45-.05-.3 0-.45.05-.15.05-.15.1.05.15.3.2-.1.05-.1.1.05 0 .15.05h.1l-.1.05q-.1 0-.05.05h-.1q-.05-.05-.15-.05v-.05q-.05-.05-.2-.1-.25-.05-.55-.05h-.2q-.049 0-.05.05v-.05q.05 0 0-.05 0-.148-.1-.15h.35q0 .05.15.15h.25q.15-.1.25-.1.05-.05.05-.1l-.15-.05q-.15-.05-.25 0 .15-.1.1-.15-.05-.1-.3-.1-.25-.05-.45-.05-.3 0-.45.05-.2.05-.1.15 0 .05.1.1h-.2q-.3 0-.45.05-.15.05-.15.2.1.05.3.1.2.1.5.1h.15l.1.05q0 .1.25.15.15.05.35.05v.1q-.05.05-.05.1t.15.15h.1q.15.05.35.05.15 0 .35-.15.2-.05.1-.1v-.05h-.1l.05-.05q.05 0 .15-.05h.05q.1.05.35.05.25 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.1-.05-.2-.05v-.1q.2 0 .3-.05h.1q0-.05.05-.05h.25q.15 0 .3-.1.05 0 .05-.05t-.2-.1q-.1-.05-.25-.05m-.3.95h-.3q-.15 0-.25.05-.1 0-.1.1.05.05.2.1.05.05.15.1.15.05.3.05.2 0 .3-.05h.15q.1.05.25.05.1 0 .2-.05t0-.1l-.05-.05q0-.048-.05-.05h.35q.15-.1.15-.15-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05h-.55m.6-.25q.1.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1m.7.85q-.15-.05-.3-.05-.2 0-.3.05l-.1-.05h-.45q-.15.05-.15.1.1 0 .15.05-.15.05-.05.1l.15.15q.15.05.3.05.2 0 .3-.05l.05-.1h.2q.2 0 .3-.05.05-.05.05-.1t-.15-.1m0 .55q0 .05.1.1.2.05.3.05h.05l.1.05q.1.05.3.05h.1q.1 0 .25-.05h.1q.05.05.2.05.15.05.35.1h-.05q-.05 0-.15.05l.2.1h.5q.05-.05.05-.1t-.15-.05h-.1q.1-.05.25-.1.1 0 .15-.05h.1q.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05h-.3q-.3 0-.45.05h-.65q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05l-.05.05m-.45.25q.15-.05.05-.15-.05-.05-.15-.1-.2-.05-.45-.05h-.05q-.109.002-.3.05 0 .05-.05.05h-.05q-.2-.05-.4-.05-.15.05-.2.1h-.15q-.049-.049-.2-.05.102-.002.15-.05h.1q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.35-.05-.1 0-.25.05-.05-.05-.1-.15h-.25q-.2-.05-.35-.05-.2 0-.25.05-.1 0-.1.1.05.05.15.1.15.05.3.05h.3q.15 0 .25-.05.05.05.2.1.097.048.2.05-.202.001-.35.05-.1.05-.05.1 0 .05.1.1h.6q.1 0 .1-.05l.05.05q.15 0 .35-.05h.25q.05-.05.1-.05l.1.05q.2.05.4.05h.2q.1-.05.15-.05"/><path fill="#CCC" d="M663.8 288.6q-.15-.1-.25-.1-.2 0-.25.1-.05 0-.05.05t.2.05.2.05h.25v-.05q.05 0 .05-.05t-.15-.05m1.05.45v.05q-.1 0-.1.05l.05.05q0 .05.15.1.15.1.35.1.2 0 .2-.1.15-.05.15-.1l-.1-.05q0-.05-.2-.1h-.5m.85-.55q-.1 0-.05.15 0 .05.2.05h.3q.15 0 .3-.05h.05q.2.05.3.05.1 0 .2-.05l.1-.05q0-.1-.2-.15-.1-.05-.2-.05-.15 0-.25.05h-.15q-.1-.05-.3-.05-.15 0-.3.1m-2.25-.45q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.1.05q.2.05.25.05h.05q.15 0 .2-.05.1 0 .1-.05t-.15-.05m.4 1.75q.048 0 .1.05-.055-.05-.2-.05-.15-.05-.3 0h-.15q-.2 0-.35.05v.1q0 .05.1.05.05.05.15.05.15.05.35.05.2-.05.3-.1l.05.05h.15q-.1.003-.1.05-.1 0-.1.1 0 .05.1.05-.051.001-.1.05-.1.05-.1.1.05.05.15 0 .05.05.25.05.1 0 .25-.05.05 0 0-.05v-.05q.05 0 .1-.05.15 0 .05-.05 0-.1-.1-.1-.047-.047-.15-.05h.2q.15-.05.15-.1-.098-.049-.15-.05.052-.001.15-.05.1 0 .05-.05 0-.1-.2-.1-.1-.05-.3-.05-.15 0-.3.05h-.05v.1m.25-.3q.1.05.3.05.1 0 .25-.05.15 0 .1-.05 0-.05-.2-.15-.15-.05-.3-.05t-.2.05q-.15.1-.15.15.05.05.2.05m0 1.05v.1q0 .05.1.05.15.05.25.05.2 0 .25-.05.05 0 .05-.05t-.2-.1h-.45m1.15-.9h.05q.2.05.35.05.25 0 .25-.05h.05q.15 0 .15-.05-.1-.05-.25-.1t-.35-.05q-.2 0-.25.05-.15.05-.1.1l.1.05m.15.1h-.05q-.2 0-.4.05-.15.05-.15.15.05.05.25.1.1.05.25.05h.7q.25.1.5.1.1-.1.3-.1h.05q0 .1.15.1.1.05.2.05.2 0 .25-.05h.15q.1 0 .15-.1.1 0 .15-.05-.05-.05-.2-.1h-.5v.05q-.05-.05-.1-.05v-.05q-.05-.05-.25-.1-.25-.05-.55 0h-.4q-.05-.05-.1-.05h-.4m-.45 1q-.2 0-.3.05-.1.05-.1.1.1.05.2.15.1.05.3.05.2 0 .35-.05.15-.1.1-.15 0-.05-.2-.1t-.35-.05m.6-.15q-.2.1-.15.15.1.1.25.15.25.05.55.05h.05q-.05.1-.05.15.05.05.1.05.15.05.25.05h.05q-.049.001 0 .05 0 .05.1.1h.3q.15 0 .15-.05.15-.05.15-.1-.1-.05-.2-.05h-.25q.048-.002 0-.05v-.05q.05 0 .15-.1 0 .1.2.15.2.05.5.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.3v-.05l-.15-.05q-.05-.05-.25-.05-.05.05-.2.1-.05-.05-.15-.1-.25-.05-.5-.05-.3 0-.4.05m2.65-2.2q-.15 0-.15.05.1.05.25.15.048.048.15.05h-.3q-.099-.05-.15-.05.05-.001.05-.1-.05-.05-.15-.1h-.55q-.15.05-.05.1l.05.1q-.15 0-.05.05v.05q0 .05.1.05.1.05.3.05h.2q.05 0 .1-.05.05.05.2.05.05.05.15.05h.1q.1 0 .2-.05.1 0 0-.05 0-.05-.05-.1.05 0 .15-.05h.2q.1 0 .15-.1.1 0 .1-.05-.05 0-.05-.05t-.2-.1q-.15-.05-.35-.05h-.05q-.2.05-.35.1v.05m-.35.8h-.2q-.2.05-.25.05-.05 0-.05.05-.15.1-.05.15 0 .1.2.15.2.05.45.05.05 0 .1.05h.425q-.184.005-.275.05-.05 0-.15.05H668q-.1.1-.05.15 0 .05.1.1h.15q.25.15.55.15.2 0 .35-.15.15 0 .15-.05l.1-.05q-.15.1-.1.25 0 .05.25.05l.05.05h-.05q0 .05.2.1h.5q0-.05.05-.1.1 0 .25-.05.1 0 .1-.05v-.1q-.05-.1-.3-.15-.05-.05-.2-.05.1-.05 0-.05v-.05h.1q.2.05.5.05.25 0 .4-.05.2-.05.15-.15h.05q.15-.05.2-.05.05-.05.1-.05h.3q.15-.1.2-.1.2-.05.15-.2 0-.05-.35-.15h-.65q-.15-.05-.3-.05t-.25.05q-.1 0-.1.05t.1.05q-.1.05-.2.05h-.3q-.15 0-.25.05h-.6q-.1.1-.1.15 0 .05.15.05h.05q0 .05.05.05h.3q.1 0 .2-.05v-.05q.048.048.1.05h-.05q-.25.05-.15.15 0 .048.05.05h-.7q-.05 0-.05.05l-.1.1q-.05-.05-.15-.05-.048-.048-.1-.05h.3q0-.05.05-.1v-.05q-.05-.05-.1 0-.15-.05-.3-.05t-.2.05l-.05-.05q.05-.05.05-.1l-.15-.15h-.1q0-.05-.05-.05-.25-.05-.45-.05"/><path fill="#CCC" d="M667.95 289.15q.05 0 .1.05h.5l.05-.05-.05-.05q0-.05-.05-.05-.2-.05-.3-.05-.2 0-.2.05-.1 0-.1.05l.05.05"/><path fill="#CCC" d="M668.6 289.15q0 .05.15.1.15 0 .3-.05h.15q.15-.05.15-.1-.1 0-.2-.05t-.25-.05q-.1.05-.25.1-.05 0-.05.05m-2-.95h-.15q-.2 0-.25.05-.05 0-.05.05t.15.05q.1.05.25.05t.25-.05v-.05q0-.05-.1-.05l-.1-.05m.2 1.35q.05-.001.05-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.05.05-.05.001-.1.1-.05 0-.05.05t.15.05h.25q.15 0 .25-.05.05 0 .05-.05 0-.049-.05-.05m.7.7q-.1.05-.05.1 0 .05.2.1.1 0 .25.05-.15 0-.05.05 0 .05.1.05.1.05.25.05.1 0 .25-.05h.4q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05h-.05l.05-.05q.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.05-.15-.05-.25-.05t-.25.05h-.5m-4.75-5.25q.2 0 .3-.05.15-.05.05-.1 0-.05-.1-.1h-.65q-.05.05-.05.1l.1.1q.2.05.35.05m-.7.95v-.05q-.05-.1-.25-.1h-.4q-.2 0-.3.05h-.1q-.1.05-.05.1h.05q-.1.05-.15.05-.1 0-.1.05-.05.05-.05.15.05.05.25.1.3.1.6.1h.15q.15.05.4 0 .3 0 .5-.1.1-.05.1-.1-.05-.15-.3-.2-.2-.05-.35-.05m-1.05 1.4q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05t.2.1h.5q.05-.05.05-.1t-.2-.05m.15.3q-.2 0-.3.05-.1 0-.1.1 0 .05.2.1h-.1q-.1.05-.1.1h.1q0 .05.05.05.1.05.25.05t.25-.05l.05-.05q0-.05-.05-.1h.1q.05-.05.05-.1 0-.1-.15-.1-.15-.05-.25-.05m-1.7-.25q.2-.05.3-.05h.2q.1-.05.1-.1l-.2-.05q-.1-.05-.2-.05-.15 0-.25.1l-.05.05q0 .05.1.1m.3.3h-.3q-.1 0-.25.1l-.05.05q.05.05.2.1.1.05.2.05.2 0 .3-.1.15-.05.1-.1l-.2-.1m.5.45q-.15.05-.1.1 0 .05.2.1t.35.05q.2 0 .3-.05h.1q.05-.05.05-.1-.05-.05-.25-.1-.15-.05-.25-.05h-.05q-.2 0-.35.05m-.4.15q-.05-.1-.3-.15-.2-.05-.45-.05-.3 0-.45.05-.25.05-.15.15 0 .1.3.15.15.05.45.05.25 0 .45-.05.15-.05.15-.15m.1.6q-.15.05-.15.15.05.05.25.1h.1q-.05.05-.05.1-.15 0-.25.05-.15.1-.15.15.05.05.25.1t.4.05q.25 0 .35-.1.15-.05.05-.1v-.1h.15q-.049.002 0 .1 0 .1.25.15.25.05.45.05.25 0 .45-.05h.1q.05.05.15.1.2.05.45.05.2 0 .3-.05.2-.05.2-.15-.05-.05-.25-.1-.2-.1-.35-.1 0-.05-.3-.15-.2-.05-.45-.05-.2 0-.4.05h-.05q-.25 0-.5.05 0-.05-.1-.1h.15q.15 0 .25-.05.05-.05 0-.05 0-.05-.05-.1h-.45v-.05q-.05 0-.1-.05-.1-.05-.25-.05-.15.05-.25.1-.05 0-.1.05h-.1m-.8 1.1q0-.05-.25-.1-.2-.05-.35-.05-.25 0-.35.05-.15.05-.15.1.05.05.25.1.1.1.35.1.2 0 .4-.1.15-.05.1-.1"/><path fill="#CCC" d="M658.55 289.4q-.15.05-.15.15.1.1.25.15.3.05.55.05.3 0 .45-.05.15-.05.1-.15 0-.1-.25-.15-.15-.1-.45-.1-.25 0-.5.1m1.15 1.05q-.2 0-.25.05-.1 0-.1.05.05.05.15.1h.55q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05m.3.3q-.25 0-.5.05-.1.05-.05.15 0 .1.25.2.25.05.45.05.3 0 .5-.05.1-.1.1-.2-.05-.1-.3-.15-.15-.05-.45-.05m1.75-.75q-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1h.45q.15-.05.15-.1m-.9.55q.15.05.35 0 .25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1q-.15.05-.1.1 0 .05.25.1m1.8.55q-.15.05-.05.1 0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05-.05-.15-.1h-.55m-1.45-.15h-.25q-.1.1-.1.15.05.05.15.05.15.05.25.05.15-.05.25-.1.1 0 .05-.05 0-.1-.1-.15-.15 0-.25.05m4.45.5q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05h-.1q-.2 0-.3.05-.15.05-.05.1 0 .05.15.05.15.05.3.05.2 0 .3-.05.1 0 .1-.05l-.2-.1h.05q.15 0 .25-.05l.05-.05m15.05-9.4q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.1.1.05.2.05.15 0 .25-.05l.05-.1m-.75.75q-.05.002-.05.05.05.1.15.15.15 0 .35-.05h.3q.15-.1.1-.15 0-.05-.2-.1-.1-.05-.3-.05h-.05q.05-.001.05-.05-.05-.05-.2-.1-.1.05-.3.05h-.3q-.1.05-.05.1 0 .05.15.1.149.05.35.05m-.65.2q-.15 0-.2.05-.1.05-.1.1.05.05.15.05.047.047.15.05h-.15q-.05.05 0 .1 0 .05.15.05.15.05.35.05.15 0 .3-.05.05 0 .05-.05-.05-.05-.2-.1-.05 0-.15-.05h.05q.1 0 .05-.05 0-.05-.1-.1-.2-.05-.35-.05m-.7.05q.1 0 .1-.05t-.2-.15h-.15q-.05 0-.1-.05h-.5q-.1.05-.05.15l.15.05h.1q0 .05.1.05.15.05.25.05.2 0 .3-.05m.85.75h-.25q-.05.05-.05.1l.15.05h-.2q-.1.05-.1.1.05.05.15.05.048.048.15.05-.097.002 0 .05 0 .05.05.1h.6q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05l.05-.05q0-.049-.05-.05.052-.001.15-.05.15 0 .1-.05 0-.05-.2-.1h-.25m-1-.4q.15-.05.15-.1-.05-.05-.25-.1h-.6q-.1.05-.05.1 0 .05.15.1t.35.05q.25 0 .25-.05m.55 1q-.15.05-.15.15 0 .05.2.05.1.05.25.05.1 0 .2-.05.1 0 .1-.05 0-.1-.15-.15H679"/><path fill="#CCC" d="M680.8 283.25q-.1-.05-.2-.05-.05-.05-.25-.05-.1.05-.25.1-.05 0 0 .05 0 .05.1.1-.1 0-.15.05-.1 0-.1.05.05.05.15.1h.25q.15 0 .25-.05t.05-.1q0-.05-.1-.05h-.3q.107-.002.25-.05h.15q.15-.05.15-.1m-.1.4l-.05.1q0 .05.15.1h.45q.1-.05.15-.05.05.05.15.05.15 0 .25-.05l.05-.05q0-.1-.1-.15h-.5q-.05 0-.05.05-.1-.05-.25-.05-.1 0-.25.05m2.6-1.4h-.2q-.15.05-.1.1 0 .05.15.05.05.05 0 .05-.15 0-.15.05l.2.1h.5l.05-.05q.05 0 .1-.05.15 0 .15-.05l-.2-.1h-.1q-.1-.05-.15-.1h-.25m-.9.3q.15-.05.05-.1l-.1-.05q-.1-.05-.25-.05t-.25.05l-.1.05.05.05h-.3q-.1.05-.1.1.05.05.15.05.1.05.25.05t.25-.05q.05 0 0-.05h.1q.15 0 .25-.05m.6.5q0 .05.15 0 .1.05.3.05.1 0 .25-.05.05 0 .05-.05-.05-.05-.2-.15H683q-.05.15 0 .2m-1.25-.2h-.2q-.1.1-.1.15.05 0 .2.05.1.05.2.05.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.3m.05.6q0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.5q.1-.05.05-.1m.3.9l.05-.05q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45m0 .1q-.05.1-.05.15 0 .05.2.05.1.05.2.05.15 0 .25-.05l.05-.05q0 .05.1.05t.25.05q-.1 0-.1.05.1.05.2.05.1.05.3.05.2 0 .3-.05h.3q.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3q-.15 0-.2.05-.05 0-.05-.05t-.05-.05q-.2-.1-.4-.1h-.05q-.05-.05-.25-.05-.1 0-.25.05l-.05.1-.1-.1h-.5m-.1-.45v.05q0 .05.1.1h.5q.05-.05.05-.1t-.2-.05-.2-.05q-.15 0-.25.05m.95-.4q.05-.05.05-.1-.05 0-.15-.05-.15-.05-.25-.05-.2 0-.3.05l-.05.05q0 .05.15.1t.3.05q.15 0 .25-.05m.35.05q-.15 0-.3.1-.05 0-.05.05 0 .1.2.1.1.05.3.05.15-.05.25-.05h.05q.1.05.25.05t.2-.05l.1-.05q0-.05-.15-.1h-.35q-.1-.1-.2-.1-.1-.05-.3 0m3.85-2.25q-.1 0-.1.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.2.05m-2.15.45q-.05-.05-.25-.05-.1 0-.25.05-.05.05 0 .1l.1.05q.15.05.3.05t.15-.05l.15-.05-.2-.1m-.1.75q0 .05.15.1h.5q.05-.05.05-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05m.3.25q-.15-.05-.25-.05-.15 0-.25.05-.1.1-.05.15l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05-.15-.15m-.85-.3h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3m.05 1.1q.05.1.2.1.1.05.2.05h.4q.1 0 .25-.05h.15q.05.05.25.05.1 0 .25-.05.05 0 0-.1 0-.05-.05-.05-.15-.05-.25-.05-.2 0-.25.05h-.05q-.05 0-.15-.05h-.6q-.1 0-.25.05-.1 0-.1.05"/><path fill="#CCC" d="M684.65 284.3q-.25 0-.35.05-.15.05-.1.1 0 .1.15.15.15 0 .25.05.05.1.2.15h-.1q-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.25.05.15.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05.15 0 .25-.05.1 0 .05-.05 0-.05-.15-.05-.048-.048-.15-.05.152-.001.25-.05.05.05.15.1h.6q.15-.05.05-.1h.15q.1-.05.25-.1l.05-.05h.05q.2 0 .3-.05.15-.05.05-.15v-.05q.1.05.15.05.1 0 .15-.05 0 .05.15.05.15.1.3.1.1 0 .15-.1.15 0 .15-.05-.05-.05-.2-.05.15-.05.15-.1-.1 0-.2-.05t-.25-.05q-.1 0-.25.05-.05 0-.1.05h-.45q-.05.05-.05.1h-.4q-.15 0-.25.05h-.3q-.05.05-.05.15 0 .05.15.05 0 .047.1.05h-.4q-.05-.1-.3-.2.15 0 .2-.05l.05-.05-.1-.1h-.5q-.05.05-.1.05l.05.05.1.05H685l-.1-.05q-.1-.05-.25-.05m.4.55q-.05 0-.15-.05.195.049.525.05-.131.003-.225.05-.1-.05-.15-.05m.3-.8l.2.05q.05.05.25.05.1 0 .25-.05v-.05q0-.05-.1-.1-.15-.05-.3-.05t-.15.05q-.15.05-.15.1m2.8-1.75v-.1l-.15-.05q-.15-.1-.35-.1-.1 0-.25.1l-.05.05q0 .05.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05m-.9-.3h.25v-.1q0-.05-.15-.05-.1-.05-.25-.05t-.25.05q-.05 0-.05.05t.2.1h.25m.25.75q.1 0 .05-.05 0-.05-.15-.05-.1-.05-.3-.05-.1 0-.15.05-.1 0-.1.05.1.05.15.05.1.05.25.05t.25-.05m-.75-.5q-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.55q.05-.05.05-.1m.05 1.15q-.05 0-.05.05t.2.05.2.05q.15 0 .25-.05.1 0 .1-.05t-.2-.05q-.15-.05-.25-.05t-.25.05m0 .45h-.25l-.05.05q-.1 0-.25.1-.05 0-.05.05.05.05.15.1.1-.05.2-.05 0 .05.1.05h1q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.098 0-.1.05v-.05q0-.05-.2-.1h.3q.05-.05 0-.1 0-.1-.05-.1-.2-.05-.3-.05h-.05q-.15 0-.15.05-.1 0-.1.1.05.05.15.1h-.05m1.35-.5q0 .05.15.05.15.05.25.05.15 0 .25-.05.05 0 .05-.05t-.1-.1h-.5q-.1.05-.1.1m.05.55q0 .05.05.1.25.05.45.05.15 0 .2-.05.15-.05.15-.1-.05-.05-.2-.1h-.65q-.05.05 0 .1m-18-1.15q.05.1.2.2.3.05.55.05.3 0 .45-.05.2-.1.15-.2 0-.05-.3-.1-.15-.1-.45-.1-.25 0-.5.1-.1.05-.1.1m-1.7-.7q-.2.1-.25.1-.1.05-.1.1.05.05.15.05.05.05.25 0 .1 0 .25-.05.05 0 0-.05 0-.05-.05-.15h-.25m.7.95q-.1 0-.25.05v.05q0 .05.1.1.15.05.3.05t.15-.05q.15-.05.15-.1l-.2-.05q-.05-.05-.25-.05m-.25-.15q.15.1.25.1.2 0 .25-.1.1 0 .1-.05-.05-.05-.15-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.05.05m.45.8q-.15-.05-.3 0h-.05q-.15-.05-.25-.05-.15 0-.25.05l-.1.1q.05.05.15.1h.05q0 .05.2.05.2.05.35.05.2-.05.3-.1.15 0 .15-.05-.1-.05-.25-.15m-.55.55q-.2 0-.3.05-.05.05-.05.1.05.05.1.05v.05q.05.1.2.15.25.05.45.05h.2q.1 0 .2-.1t.05-.15v-.05q-.15-.05-.2-.05h-.15l-.15-.05q-.15-.05-.35-.05m1.85-.55h-.3q0-.05-.1-.05-.1-.05-.3-.05-.1 0-.2.05-.05 0-.05.05.05.1.15.15h.35q0 .05.1.05.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.3l.05-.05q0-.05-.2-.15m-.05.95h-.05q-.1-.05-.2-.05t-.2.05l-.1.05q0 .05.2.1h.5q.05-.05.05-.1l-.2-.05m0-.55q-.3 0-.4.05-.25.05-.2.15.05.1.3.15.25.05.55.05.25 0 .35-.05.25-.05.2-.15-.05-.1-.3-.15-.25-.05-.5-.05"/><path fill="#CCC" d="M671.5 284.35q0 .05.1.05.15.05.25.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.5q-.1.05-.05.1m1.35-.95q-.1-.05-.15-.05-.05-.05-.25-.05-.1 0-.2.05t0 .05q0 .05.05.1h.4l.05.05q.15.05.25.05h.2q-.048.002 0 .05 0 .1.1.1.05.05.25.05.1 0 .25-.05.05 0 .05-.1l-.1-.1h-.5l.05-.05q0-.05-.1-.1-.15-.05-.3-.05l-.05.05m-.3.75l.05.05q0 .05.1.1.05.05.15.05.05.05.1.05h.4q.25 0 .4-.05.2-.05.15-.15 0-.05-.15-.1v-.05q.1.05.2.05.15 0 .25-.05V284q0-.05-.1-.1h-.5v.05q-.1-.05-.15-.05-.2-.1-.5-.1-.25 0-.5.1-.1.05-.1.1.05.1.2.15m.75-1.1q-.05 0-.05.05t.2.05q0 .048.05.05h-.15q-.05.05 0 .1l.1.05q.1.05.2.05.2 0 .25-.05l.15-.05-.2-.1h-.05q.052-.002.1-.05.05 0 .05-.05t-.15-.05q-.15-.05-.25-.05t-.25.05m1.75.8q-.1-.05-.25 0-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.05.3.05.1-.05.15-.1.15 0 .15-.05-.05-.05-.2-.05m0 .3q-.1 0-.25.05-.1 0-.1.05.05.05.2.1h.2v.05q.1.05.15 0 .1.05.15.05-.1.15-.1.2 0 .05.2 0 .048.048.1.05h-.1q-.15.05-.1.1l.15.05q.15.05.3.05h.65l.05-.05v-.05l-.15-.05q-.15-.05-.25-.05-.05 0-.15.05 0-.05-.05-.05h-.15q.1-.05.15-.05v-.05q0-.05-.05-.15h-.2q.1-.003.1-.05.1 0 .05-.05 0-.05-.15-.1h-.2l-.1-.05q0-.05-.1-.05-.1-.05-.25 0m2-.55h-.2q-.05.05-.05.15.05 0 .15.05.1.05.2.05.2 0 .25-.05l.05-.05q0-.1-.1-.15h-.3m-.75-.2h-.45q-.15.05-.05.1 0 .05.1.05.2.05.3.05.1 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1m-.3.8q.2.05.3.05.15 0 .2-.05.15 0 .15-.05t-.15-.05q0-.05.05-.05.15 0 .15-.05-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.05.05-.1.05-.05.1 0 .05.1.05m.75.35q-.1 0-.25.05l-.05.05q0 .05.1.1.2.05.3.05.2 0 .25-.05.15-.05.15-.1l-.2-.05q-.1-.05-.3-.05m.6 0q0 .05.1.05.15.05.3.05t.2-.05q.05 0 .05-.05-.05-.1-.1-.1-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.1m.4-.45q0 .05.1.1.1-.05.2-.05h.25q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.1-.05 0 0 .05m.4.55q-.15.05-.15.1.05 0 .15.05l.1.05q.05-.05.25-.05h.25q.05-.05.05-.1-.05 0-.05-.05l-.15-.05h-.25q-.1 0-.2.05m-1 .45q.1-.05.1-.1-.1-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05h-.4q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05h.45"/><path fill="#CCC" d="M677.45 285.25h-.1q-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .1.1.1.15.05.3.05h.05q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.1-.1-.3-.1"/><path fill="#CCC" d="M677.15 285.95q.25.05.5.05h.1q0 .05.15.05.05.05.1.05.049.098.15.1h.05q.05 0 .05.05-.048-.048-.1-.05-.151.001-.25.05-.05 0 0 .05h-.05q-.1 0-.1-.05h-.5v.05q-.002-.05-.1-.05-.1-.05-.2-.05l-.1.05h-.15q-.049.049 0 .05h-.05q-.1 0-.15-.05h-.35q.05-.001.05-.05.1 0 .05-.1 0-.05-.1-.05V286q-.15.05-.25.05h-.3q-.1.05-.2.05l-.05.1q0 .05.15.1.05.05.2.05.1 0 .15-.05h.05q0 .049.05.05-.1 0-.1.05.05.05.15.1.15 0 .3-.05h.35q.05-.05.1-.05.2.05.3.05.1 0 .2-.05h.1q.05.05.2.05l.05.05h.55q.1-.05.15-.05.05 0 .15-.05h.15q.1.05.25.05t.25-.1v-.05q0-.048-.1-.05.102-.002.15-.05 0 .05.15.05h.45q.05-.05.05-.15l-.15-.05q.1 0 .25-.05h.05q.05-.05 0-.1.15 0 .25-.05l.05-.05q0-.05-.15-.1h-.45q-.05.05-.05.1h-.1q-.15 0-.2.05l-.15.05q.05.05.2.1h.05q-.052.002-.1.05-.1-.05-.15-.05-.05-.05-.25-.05l-.2.1-.1-.05h-.15q.1-.05.1-.1t-.2-.05-.2-.05h-.1q.15-.05.1-.1h.2l.15.05h.1q-.05.05-.05.1.05 0 .15.05h.2q.2 0 .25-.05l.05-.05q0-.05-.1-.1h-.1q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05-.15.05-.2.05l-.05-.05h-.5q-.1.05-.1.1v.05q-.1-.05-.15-.05-.1 0-.15.05v.05h-.5q-.05.05-.05.15.05.05.15.1m-.95-.6h-.3v.1q-.1-.05-.2 0-.1 0-.2.05-.15.05-.1.1l.1.05h.05q.092.046.225.05h-.175q-.1 0-.2.05h-.15q0-.05-.25-.1-.048-.048-.1-.05h.05q.25 0 .35-.05.1-.05.05-.1 0-.1-.15-.2-.2-.05-.45-.05-.15 0-.35.05-.05.1-.05.15v.05h.05q-.1.05-.1.1.048.048.15.05-.152.001-.25.05-.05 0-.05.05-.05-.05-.1-.05-.15 0-.2.05l-.1.05q.05.05.15.1h.45q.25.05.45.05h.2l.1.05q.15.05.25.05.2 0 .3-.05v-.05h.05q.15 0 .25-.05.15-.05.15-.1-.1 0-.15-.05h-.15l.2-.1q.1 0 .1-.05.05 0 .05.05h.15q.2 0 .35-.05.1-.05.05-.1 0-.05-.2-.1h-.3m.35 1.4q0 .1.2.1.2.05.35.05.25 0 .45-.05.05-.002.05-.05l.1-.05q.15-.05.15-.1l-.2-.1h-.6q-.05.05-.1.05-.2 0-.3.05-.15.05-.1.1"/><path fill="#CCC" d="M678.05 286.85h-.5q-.1.05-.1.15 0 .05.2.05.1.05.25.05t.3-.05q.05 0 .05-.05 0-.1-.2-.15m-2.2-.2q.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.15-.05 0-.05-.1-.1h-.3q.1-.05.05-.1l-.1-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05h-.25q-.05.05-.05.1l.15.05q.15.05.25.05.15 0 .25-.05v.05q0 .05.1.05.1.05.15.05 0 .05.1.05.191.048.3.05-.253.001-.4.05-.05 0-.05.05-.15-.05-.25-.05-.2 0-.25.05l-.05.05q0 .05.15.15h-.1q0 .05-.05.05h-.2V287l-.05-.1q.05 0 .05-.05-.05-.05-.15-.1h-.65q-.1 0-.15.05-.2 0-.3.05-.15.05-.05.2v.05l.05.05q-.2-.05-.3-.05-.15 0-.2.05-.05 0-.05.05h-.05q0 .05.15.1h-.1q-.1 0-.25.05l-.05.05q0 .05.1.05-.049.001 0 .05.1 0 .15.05h.3q.05.05.25.1.15.05.45.05.25 0 .45-.1.15-.05.15-.1l-.1-.1q.1.05.25.05t.25-.05h.15l-.05.05q-.05 0-.05.05.05.05.15.05.15.05.25.05h.2q.05 0 .05-.05h.05l.05.05h.1q.05.05.15.05h.05q.2 0 .25-.05h.15q0 .05.15.1h.05q.15 0 .2.1h.15q.15.05.4 0h.1q-.1.05-.1.1.05.05.2.1-.15 0-.25.05-.05.05-.05.1t.1.05h.05q.05 0 .2.05h-.15q-.1-.05-.2 0h-.15q-.1-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.25.05h.05l.05.05h.1q-.106.003-.2.05-.1 0-.1.1-.1-.1-.25-.1h-.15q0-.05-.15-.05-.1-.05-.2-.05h-.2l-.05-.05h-.45q-.05-.05-.1-.05-.1-.05-.25-.05h-.4q-.15.05-.25.05l-.05.05q-.1 0 0 .05 0 .05.1.05.15.05.25 0h.6q0 .05.1.05.1.1.25.1h.2l.1.05h.05q-.05.05-.05.1-.05.05-.05.1.05.05.2.1.05 0 .2.05-.1 0-.1.05v.05q.05 0 .2.05h.55q.1-.05.05-.1 0-.048-.05-.05h.5q.15-.05.15-.1-.05-.05-.25-.1v-.05l-.05-.05h.25q.1-.1.05-.2 0-.05-.15 0-.048-.048-.1-.05h.6q.05 0 .05-.05.05.05.15.05.05.05.2.05.15-.05.25-.05.05-.05 0-.1l-.05-.05H678l-.05-.05q-.2 0-.2.05-.05 0-.05.05-.05-.05-.1-.05-.146-.048-.25-.05.105-.002.25-.05h.05q.05-.05.05-.1-.048-.048-.15-.05.153-.001.3-.05.1-.05.05-.1l.05-.05q.05 0 0-.05 0-.1-.05-.1-.15-.05-.2-.05h-.25v-.05l-.1-.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05.05 0 .05v.05q-.002-.05-.05-.05-.1-.05-.2-.05 0-.05-.05-.05h-.05q-.25-.05-.55 0h-.3l-.15.05h-.05q-.05 0-.1.05-.1 0-.1.05h-.3l-.05.05q0-.05-.15-.05 0-.048-.1-.05.151-.001.2-.05h.4q0-.05.1-.05.15-.05.1-.15.25 0 .35-.05.25-.1.2-.25 0-.05-.3-.1-.195-.049-.45-.05.103-.003.15-.05"/><path fill="#CCC" d="M676.45 289.2l-.05.05q0 .05.15.15.15.05.25.05.2 0 .3-.05.05-.1.05-.15 0-.05-.15-.05-.15-.05-.3-.05h-.05q-.106.003-.2.05m.65-2.1h-.25q-.1.05-.05.1 0 .05.15.05.1.05.3.05h.05q.15 0 .15-.05.15 0 .15-.05-.05-.05-.2-.1h-.3m1.05.5q-.1.05-.1.1 0 .1.2.1l.05.05h.05q.15.05.35.05.1 0 .2-.05.15 0 .1-.05 0-.1-.15-.15h-.15l-.1-.05h-.45m-3.1-2.65q0-.05-.15-.05-.15-.05-.25-.05-.15 0-.25.05h-.05q-.05 0-.15.05-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.2q.1-.05.1-.1m-.1-.1q.1 0 .25-.05l.05-.05q0-.05-.2-.1h-.45q-.1.05-.1.1l.2.05q.1.05.25.05m-.15 1.25q0-.05-.15-.1h-.5q-.05.05-.05.1l.1.1q.2.05.3.05.15 0 .2-.05l.1-.1m-.9-1q.05-.05 0-.1 0-.05-.05-.05-.2-.05-.3-.05-.2 0-.2.05-.1 0-.1.05.05.05.2.1h.45m-.1.25q-.05-.1-.2-.1-.1-.05-.25-.05h-.05q-.05-.05-.15-.1h-.2l.05-.05q-.05-.05-.15-.05-.15-.05-.25 0h-.15q-.05-.05-.15-.1h-.8q-.1.05-.05.1 0 .05.1.05.05.05.25.05.1.05.3.05.15 0 .2-.05.05.05.1.05.05.05.2.05v.05q0 .1.1.1h.3q-.105.003-.25.1-.1.05-.05.1 0 .05.2.05h.35q.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.1q.052-.002.1-.05.15 0 .15-.05m-.25.7q-.05 0-.1-.05-.15 0-.3.05h-.3q-.1.05-.1.15 0 .05.2.1.1.05.3.05 0-.05.05-.05h.5q.1-.05.1-.1-.05 0-.15-.1-.1-.05-.2-.05m1.85 2.2q.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.05-.05.05-.05.1-.05.15-.05.15-.1-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05h-.1v-.05h-.05l-.05-.05q-.1-.1-.25-.1t-.25.1l-.05.05v.05h-.1l-.05-.05h-.45q-.1 0-.25.05l-.05.05q0 .05.2.1h.1q.05.05.25.05v-.05q.002.05.2.05.15.05.35.05h.05q.1 0 .25-.05h.1q.149.05.25.05-.05.001-.05.05.05 0 .15.05m-.45-.25l-.05-.05h.05v.05m0 .8h-.05l-.1-.05h-.05q.05-.001.05-.05 0-.05-.15-.1h-.3q-.15.05-.25.05v.05l-.05.05q.05.05.15.05v.05q-.05 0-.05.05.05.05.2.1h-.25v.05q-.15 0-.2.05l-.05.05q0 .05.1.1h.55q.2-.05.3-.1.15-.05.1-.1V289l-.2-.05h.2v-.05q.05.05.1.05.1.05.3.05.1 0 .2-.05l.05-.05q-.05-.05-.15-.1h-.45"/><path fill="#CCC" d="M673.65 288.95q.15 0 .2-.05l.1-.05q0-.05-.15-.1h.15q.097 0 .15-.05l-.05-.05-.15-.05q-.1-.1-.25-.1-.1 0-.2.1l-.15.05q.05.05.2.1h-.2q-.05.05-.05.1l.1.05q.2.05.3.05m2.15.25l-.1.05q-.1 0-.1.05 0 .097.1.1h-.1q-.1 0-.25.05-.05 0-.05.05.05.05.1.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05v-.05h.3q.15-.05.05-.15h-.05q0-.05-.05-.05-.1-.05-.25-.05h-.15m-2.25-.9q-.05-.05-.2-.1-.1-.05-.2-.05-.15 0-.25.05-.15.05-.05.1-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.5q.1-.05.05-.1.1.05.25.05.1 0 .25-.05l.1-.05m.2.9q0-.05-.2-.1h-.65q-.05.05 0 .1h-.05q-.15.05-.1.1 0 .1.15.1.15.05.4.05.2 0 .2-.05.15 0 .15-.1.1-.05.1-.1m.6.35q-.2 0-.3.05l-.1.05q0 .05.15.1.05.05.2.05h.05q0 .05.1.05.05.05.25.05.1 0 .25-.05.05-.05.05-.1.2 0 .25-.05l.1-.05q-.05-.05-.15-.1h-.25q-.15.05-.25.05h-.1q-.1-.05-.25-.05m-.75.05q-.15 0-.25.05-.05 0-.05.05v.05h-.05v-.05q0-.05-.1-.05-.15-.05-.2-.05h-.05q-.15-.05-.25-.05t-.25.05l-.1.05q.05.05.15.1h.2v.05h.25v.05h-.45q-.1.05-.05.1l.15.05h.05q.1.05.25.05.05 0 .1-.05 0 .05.05.05v.05h-.3q-.05.1-.05.15 0 .05.2.1h.05q.05.05.25.05.1 0 .2-.05l.1-.05v-.05l-.1-.05h.2q0-.1.05-.1t.05-.05l-.1-.1h-.2q.103-.003.15-.05.05 0 .05-.05v-.05h.35q.05-.05.05-.1t-.1-.05q-.1-.05-.25-.05m0 1q-.1 0-.1.05h-.05q-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.2v.05l.05.05q.15.05.3.05t.25-.05l.05-.05q-.05-.05-.15-.1h.5q.05-.05 0-.1l-.05-.05q.1.05.3.05.2 0 .3-.05.1-.05.05-.1 0-.05-.15-.1h-.65q-.05.05-.05.1.047.047.175.1-.131-.05-.225-.05-.2 0-.25.05m1.9-.75q-.15 0-.1.05v.05h-.1q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1.05 0 .05-.05.1 0 .1-.05-.1-.05-.15-.05-.1-.05-.25-.05t-.2.05"/><path fill="#CCC" d="M674.9 290.55l-.1.05q0 .05.2.1h.25q.1-.05.25-.05.05-.05.05-.1l-.2-.05h.15q.1-.05.1-.1-.05-.05-.2-.1-.1 0-.2.05h-.3q-.15.05-.1.1 0 .05.15.1h-.05m3.4-2.25l.05.05.2.1h.5q.05-.05 0-.1.1 0 .1-.05-.05-.05-.15-.1-.15-.05-.3-.05-.2 0-.35.05-.1.05-.05.1m-.7.7q-.05-.05-.25 0h-.05q-.15 0-.2.05-.1.05-.05.1l.05.05h.05q.15.05.3.05.2-.05.2-.1l.1-.05q-.05-.05-.15-.1m.4.25h-.25q-.1 0-.2.05-.1.1-.1.15l.2.05h.3q0 .05.1.05.2.05.4.05.15 0 .25-.05.1 0 .1-.05-.05-.1-.2-.1-.1-.1-.3-.1h-.1q-.05 0-.2-.05m-1.05.7q0-.05-.15-.05-.1-.05-.3-.05-.1 0-.2.05-.05 0-.05.05l.05.05-.05.05q.05.15.2.15.1.05.3.05h.1q.1.05.15.1h.25q.05.05.15.1h.5q.1-.05.05-.1 0-.05-.1-.05-.1-.05-.2-.05 0-.05-.1-.15h-.45v-.05q0-.05-.15-.05v-.05"/><path fill="#CCC" d="M676 290.35l.2.1h.5q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.35-.05-.1 0-.15.05-.15 0-.15.05m.1.4q-.1 0-.1.05t.2.05q.05.05.25.05.1 0 .25-.05v-.05h.25q.1 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05l.05.05q-.1-.05-.25-.05t-.2.05m2.25 0q-.15.05-.2.05-.15.05-.1.1h-.45q-.15.05-.05.15 0 .05.1.1h.6q.1-.05.1-.1.1-.1.15-.1.2 0 .25-.05.05 0 .05-.05l-.1-.1h-.35m-6.1-5.3q-.1-.05-.2-.05v-.15l-.15-.05q-.1-.05-.2-.05-.2 0-.25.05-.15 0-.2-.05h-.45q-.15.05-.1.1h-.05q-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1h.05q.1 0 .15-.05h.15q.05.05.1.05h.15q-.1.003-.1.05-.1 0-.05.05 0 .1.15.1.05 0 .05.05t.1.1h.5q.1-.05.1-.1l-.1-.05q.05-.05.05-.1-.05-.05-.15-.05"/><path fill="#CCC" d="M670.85 285.6q.05 0 .15.05.15.05.25.05.15 0 .25-.05h.05v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1m1.7.3l.05.05q.15.05.3.05t.15-.1l.15-.05q-.05-.05-.2-.1-.05.05-.25.05h-.2q-.1.05 0 .1"/><path fill="#CCC" d="M672.65 286.05q0-.05-.3-.15-.2-.05-.5-.05v-.05q0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05t.15.1h.1q-.15.1-.15.15 0 .048.05.05h-.1q-.1-.05-.3-.05h-.1l-.15-.05h-.05q-.1-.05-.25-.05l.05-.05v-.05q-.05-.05-.35-.05-.05-.05-.1-.05h-.05q-.1-.05-.15-.05h-.25q-.05 0-.15.05h-.15v-.05q-.05-.05-.15-.05h-.15q-.05-.05-.1-.05-.15 0-.25.05l-.05.05v.05q-.15 0-.2.05-.05 0-.05.05t.1.1h.5q.05-.05.05-.1h.15q.044-.044.1-.05-.05.006-.05.05-.05 0 0 .05v.05h-.25q-.11.003-.3.05-.1.05-.1.1.05.15.2.2.25.05.45.05.25 0 .35-.05.1-.05.05-.2h.4v.1h.3l.05.05q.1 0 .25-.05h.1q.05.05.2.1.1.05.2.05h.2q-.048.002 0 .05 0 .05.25.1.05.05.15.05h.4q.1 0 .15-.05h.1v.05q-.15 0-.15.05l.15.05h.05q.1.05.25.05h.05q.048.048.1.05h-.1q-.15 0-.25.05-.05 0 0 .05 0 .05.05.15h.5q.1-.1.1-.15-.05 0-.1-.05h.35l.05-.05q.05 0 0-.05 0-.05-.1-.05-.05 0-.15-.05h.1l.1-.05q-.05-.05-.2-.1-.1-.05-.2-.05h-.55q-.05-.05-.15-.1.2 0 .3-.05.25-.05.2-.2m-1.25.15q.048.048.1.05h-.1v-.05m-.5 1.35v.05h.3q.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.25-.05h-.05q-.15.05-.2.1-.05 0 0 .05m1.85.15q-.15-.05-.45-.05-.25 0-.5.05 0 .1-.05.15h-.25q-.05.05-.05.1t.15.1q.15.05.3.05h.55q.3 0 .5-.05.1-.05.1-.15-.05-.05-.3-.1v-.1m-2.75-2.1q.1-.1.05-.15h-.1q-.2-.05-.3-.05-.15 0-.2.05h-.05l-.05.05q.05.05.15.1h.5m.7 2.7q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.4.05t.3-.05q.2-.05.1-.1m-.75.6l.05-.05v-.05h.2q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05t0 .05v.05h-.25q-.15.05-.15.1.1 0 .2.05t.25.05q.1 0 .25-.05m.45-.1h-.2q-.1.05-.1.1t.15.05q.1.05.3.05.1 0 .15-.05.1 0 .1-.05t-.15-.1h-.25m-1.15 1.85q-.15 0-.2.05-.15 0-.1.1 0 .05.15.05.15.05.35.05.2 0 .25-.05.1-.05.1-.1-.05-.1-.15-.05-.2-.05-.4-.05m1.45-.05q-.1.05-.1.1l.1.05h-.05q-.05 0-.05.05l.1.1q.2.05.3.05.2 0 .25-.05h.05q.15.05.25.05.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.45q.094-.003 0-.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.1h-.1q.102-.002.15-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.05.094.047.2.05h-.45q-.05.05-.05.1v.05h-.1m1.6-1.5h.15q.2 0 .3-.05.1 0 .1-.05.05-.05 0-.1 0-.05-.2-.15-.05 0-.2-.05-.15-.05-.35-.05-.2 0-.25.05-.05 0-.05.05h-.1q.05-.05 0-.1 0-.05-.1-.05.1-.1.15-.1h.25q.05-.05.05-.1-.05 0-.15-.05-.1-.05-.3-.05-.1 0-.2.1l-.1.05.1.05h-.3q-.2 0-.3.1-.15.05-.15.1.05.1.2.1.25.05.4.05h.35q-.1.05-.1.1.05.1.3.1.25.05.5.05m-.3.55q-.15-.05-.25-.05-.2 0-.35.05-.1.05 0 .1 0 .05.05.05.25.05.4.05.2 0 .25-.1.15 0 .15-.05l-.2-.1-.05.05m0 .85q-.15.05-.15.1.05 0 .2.05.1.05.25.05.1 0 .25-.1.05 0 .05-.05h.05q.1.05.25.05.1 0 .25-.05l.05-.05q0-.05-.05-.05-.15 0-.15-.05h-.45v.05h-.4q-.1 0-.15.05m-.55 2q-.15.05-.15.15.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05q0-.1-.15-.15h-.45m-2.3.25q-.1.05-.05.1 0 .05.1.1.2.05.35.05.2 0 .25-.05.15-.05.15-.1-.05-.05-.2-.1h-.6m8.25-1.1q-.1 0-.1.05l.15.15h.5q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05m-2.8-.15q.15 0 .1-.05 0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.35.05.2 0 .3-.05m.2.55l.1-.05q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1-.1.05-.1.1t.2.05.2.05q.15 0 .25-.05.05 0 .05-.05m.8-.2q.1 0 .2-.1.05-.05.05-.1-.05-.05-.15 0-.1-.05-.2-.05-.2 0-.25.05-.15 0-.05.05 0 .05.1.05.1.1.3.1m12.5-6.85q.15.05.3.05.1 0 .15-.05.15 0 .15-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.05 0-.05.05t.15.05m0-.25q0-.05-.15-.1h-.45q-.1.05-.1.1l.2.05q.05.05.25.05.1 0 .25-.05v-.05m-.55.6h-.05q.102-.003.15-.1.2-.05.15-.1 0-.1-.25-.15h-.4q-.2 0-.4.05.05.05 0 .05h-.25q-.1.05-.05.1 0 .05.05.15h.05q.1 0 .1.05h-.1q0 .05.2.1h.25q.1-.05.25-.05 0 .05.1.05.15.05.25.05h.2q0 .05.1.1.2.05.3.05.2 0 .25-.05h.05q.25 0 .3-.05.05 0 .1-.05.1-.05.1-.1l-.2-.1h-.6l-.05.05h-.05v.05h-.15q-.05-.05-.15-.1h-.25"/><path fill="#CCC" d="M687.3 285.7q.05-.05.05-.1l-.2-.05h-.2q-.15 0-.25.05v.05q0 .05.1.1h.25q.2 0 .25-.05m0 .3l.2-.1q.05 0 .1-.05 0-.05-.2-.1-.1 0-.25.05h-.2q-.1.05-.1.1l.15.05q.15.05.3.05m.35-.15q0 .05.2.1h.45q.1-.05.1-.1l-.15-.05h-.15q-.1-.05-.15-.05-.15 0-.15.05-.15 0-.15.05m-1.2-.85h-.05q-.2-.05-.3-.05-.2 0-.2.05-.1 0-.1.05.05.05.15.05.1.05.25.05h.05q.1 0 .2-.05.05 0 0-.05V285m-.35.9h.45q.15-.05.1-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1m.1-.3q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.45m.85.85h.1q.15-.05.1-.1 0-.05-.15-.05-.05-.05-.25-.05h-.05q-.1.05-.15.05h-.5q-.05.05-.05.1l.05.05.2.1h.05q.047.047.225.05h-.475q-.1.05-.1.1.05 0 .15.05.15.05.25.05t.25-.05q.05 0 .1-.05 0 .05.05.05.15.05.25.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.45q.103-.003.15-.05.1 0 .05-.05v-.05m-.3.15h.05l-.05.05q-.05 0-.1-.05h.1m.25.3h-.25q-.1 0-.2.1h-.05l-.05.05q0 .05.05.1h.75l.05-.05.1-.05q-.05-.05-.1-.05 0-.1-.05-.1H687"/><path fill="#CCC" d="M686.05 286.3q.1 0 .1-.05-.05-.05-.2-.05-.049-.098-.1-.1.1 0 .1-.05.2-.05.15-.1 0-.05-.2-.1-.1 0-.15-.05.05 0 .05-.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.048-.048-.1-.05h.1q.2 0 .35-.05l.05-.05q-.05-.05-.2-.1-.1-.05-.3-.05-.1 0-.3.05-.1 0-.2.05-.05 0-.05.05-.15 0-.25.1l-.05.05q.05.05.2.1.05.05.15 0-.1.1-.05.15 0 .05.15 0 .15.05.35.05h.1q0 .05.15.05.249.05.35.05-.05.001-.05.1h-.05q-.1 0 0 .05 0 .05.1.05.1.05.25.05.1 0 .25-.05m-1-.5v-.05q.05.05.15.05v.05q-.1-.05-.15-.05"/><path fill="#CCC" d="M686.35 286.9q0-.05-.2-.1h-.35q.05-.05 0-.1l-.05-.05q-.143-.048-.25-.05h.45q.2-.05.2-.1-.05-.05-.25-.1-.05-.05-.25-.05-.15 0-.3.05-.1.05-.05.1 0 .05.15.1-.15 0-.2.05H685v.05q-.1 0-.05.05 0 .05.1.05.15.05.3.05h.1q.05 0 .1-.05h.1q-.05.05-.05.1h-.35q-.15.1-.05.15 0 .05.1.05.2.05.3.05.15 0 .2-.05.1 0 .1-.05h.15q.1 0 .15-.05.15 0 .15-.1m-.2.4h-.05l-.05.05q.05.05.15.1h.25v.1q0 .05.1.05t.1.05h-.1q-.05-.05-.1-.05h-.05q-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05l-.1.05q0 .047.1.05h-.1q-.1-.05-.2-.05-.2.05-.25.1l-.15.1q.05.05.15.05-.15.05-.15.1.05 0 .2.05.1.05.3 0 .2 0 .3-.05l.05-.05q0-.05-.1-.1l-.05-.1h.35q.05.1.15.15h.5q.05-.05 0-.15l-.05-.05q.1.05.35.05.2 0 .3-.05h.05q.15-.05.15-.1-.05-.1-.25-.1-.2-.05-.35-.05h-.15q0-.05-.05-.05 0-.05-.1-.05-.1-.05-.25-.05t-.25.05m1.95-.8v.05h-.4q-.05.1-.05.15h-.05q.05.05.2 0 .1.05.2.05h.25v-.05h.05q.1.05.2.05t.25-.05l.05-.05v-.05h-.05q0-.05.05-.05.2 0 .2-.05.15 0 .15-.05l-.05-.05h.2l.05-.05q0 .05.05.05.1.05.3.05.15 0 .25-.05t.05-.1v-.05q.15 0 .2-.05.05-.1.05-.15 0-.05-.2 0L690 286q-.05 0-.1-.05-.2-.05-.4-.05t-.35.05q-.15.05-.1.15 0 .097.1.1H689q0-.1-.1-.15h-.45q-.15.05-.15.15.1 0 .2.05.05 0 .2.05h-.1q-.1-.05-.3-.05-.15 0-.3.05v.05q-.05-.05-.1-.05-.1 0-.25.05l-.05.05.1.1h.4"/><path fill="#CCC" d="M688.15 286.8H688q-.05-.05-.2-.05-.15.05-.25.1.05 0 0 .05v.1l.1.05h-.1q-.15.05-.05.1-.15.05-.15.1.05.05.2.05.05.05.25.05.1 0 .2-.05h.3q.15 0 .2-.05h.05v.05h.3v.1h-.45q-.1.05 0 .05l-.1.05q0 .048.1.05-.202.002-.3.1-.15.05-.1.15-.15 0-.35.05-.05.05-.05.1l.1.1q0 .05.1.05h.05q.1.05.3.05h.05q.2-.1.3-.1.2-.05.1-.15h.4q.1-.05.05-.1 0-.1-.15-.1-.1-.05-.15-.05-.05 0-.05-.05h.35q.1-.05.1-.1 0-.048-.05-.05h.25l-.15.1.2.1h.05q.141.047.25.05h-.1q-.15.1-.15.15.05 0 .15.05h-.1l-.05.05q0 .05.15.1h.25v.1l.05.05h.1l.05.05h-.15l-.05.05q0 .05.05.05 0 .05.05.05h.5q.1-.05.1-.1-.05 0-.1-.05h-.1q.102-.002.15-.05l.05-.05v-.05l-.1-.05h-.1q-.05-.05-.15-.05h-.05v-.05q-.1 0-.1-.05h.1l.05-.05v-.05q-.05 0-.15-.1.15 0 .15-.05.15-.05.1-.1 0-.05-.05-.1.05 0 .05-.05-.001-.05-.15-.1h-.1q0-.1-.15-.1v-.05h-.2q-.05-.05-.25-.05-.15 0-.3.05h-.05v.05l-.05-.05h-.15q-.05-.05-.15-.05-.15 0-.2.05h-.05q-.05 0-.05-.05h-.25q-.05-.05-.1-.05l-.1-.05h.15q.05-.1.05-.15 0-.05-.05-.05"/><path fill="#CCC" d="M691.1 287.5q.05 0 .05-.05t-.2-.1h.25q.15-.05.15-.1-.1 0-.2-.05t-.25-.05q-.1 0-.25.1h-.15l-.05.05h-.1l-.05.05v.05h.05q0 .05.15.05-.05.001-.05.05l.05.05h.1q.05.05.15.05h.1q.1-.05.25-.1m-6.8-2.5q0-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05l-.05.05q-.1.05-.05.1v.05q.05 0 .1.05.2.1.4.1.15-.1.2-.15.15-.05.15-.1-.048-.048-.15-.05.1-.002.1-.05m.2 1.4q.1.05.15.05h.3q.15 0 .25-.05t.05-.1l-.2-.05q-.05-.05-.25-.05-.05 0-.1-.1-.1 0-.25.1h-.25q-.1.05-.1.1.05.05.2.05.1.05.2.05m-.15.2h-.2q.05-.05 0-.1l-.1-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05h-.05q.05.05.15.1h.25q-.05.05-.05.1l.05.05h.05q.15.05.25.05h.05q.15 0 .2-.05.1 0 .1-.05t-.15-.1m-.2.3h-.05v.1q-.05-.1-.25-.1-.1 0-.25.1-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.55q.05-.05.05-.1l-.1-.1q-.15-.05-.3-.05t-.2.05m-.45.65h-.5q-.1.05-.1.1h.1q-.1.05-.1.15l-.1-.1q-.1 0-.15.1h-.1q-.05-.1-.3 0-.15 0-.3.05-.1 0-.05.05 0 .048.05.05h-.2q-.15-.05-.3-.05-.2-.05-.3-.05-.15 0-.2.05h-.05q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .2-.05 0 .05.05.05v.05q0 .05.15.1.2.05.45.05.15 0 .35-.05h.35q.05-.05.05-.1h.15q.25-.05.3-.1h.55q.1 0 .15-.05.1 0 .15-.05.05 0 0-.05v-.1q.1 0 .05-.05 0-.05-.1-.1m.2-.2q-.1.05-.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.05.05.15.05.1.05.2.05.15 0 .25-.05.05 0 .05-.05.15-.1.15-.15h-.2q-.05-.05-.25-.05-.1 0-.2.05l-.1.05q-.05 0-.1-.05h-.5m.4.3h-.2q-.1.05-.1.15l.15.05q.15.05.25.05t.25-.05l.05-.05q0-.1-.1-.15h-.3m1.45.55q.05-.05 0-.05 0-.05-.1-.1-.1 0-.2.05h-.35l-.15-.05h-.05V288q0-.05-.15-.05-.05-.05-.1-.05h-.15q-.15 0-.2.05-.1 0-.1.05t.1.05v.1q.05.05.15.1h.6q0-.05.05-.05 0 .05.15.05.05.05.25.05.1-.05.25-.1m-.8.25q-.05-.05-.2-.1h-.45q-.1.05 0 .1v.15h-.1l-.05.05v.05q-.1 0-.05.05 0 .05.2.1-.1 0-.2.05h-.25q-.1 0-.25.05v.05q0 .05.15.1h-.2q-.1.05-.05.1 0 .05.1.05.15.05.25.05h.05q.15.1.25.1.15 0 .25-.1.05 0 .05-.05t-.15-.05l-.1-.05q-.05 0-.1-.05h.1l.1-.05q.1.05.15.05.2 0 .25-.05.1-.05.1-.1-.05-.05-.15-.05-.047-.047-.15-.05h.25q.05-.05.05-.1v-.1q.1 0 .15-.05.05 0 .05-.1 0-.05-.05-.05"/><path fill="#CCC" d="M684.9 289.2q.05.05.2.05.15 0 .25-.05l.1-.05q0-.05-.2-.1-.15-.05-.25-.05-.2 0-.25.05-.05.05-.05.1l.2.05m.9-.3q-.05.05 0 .1l.05.05h.3q.2 0 .2-.05l.1-.05q-.05-.05-.2-.1-.05-.05-.2-.05-.15 0-.25.1m-1.75-.5q-.15-.05-.25-.05-.2 0-.25.05-.05 0-.05.05v.05h-.1q-.1 0 0 .1h-.25q0-.1-.15-.15-.1 0-.25.05h-.2q-.15.1-.15.15.05 0 .15.05h.05q.1.05.25.05h.25l.05.05h.45q.15-.05.15-.1h.15q.15-.05.15-.1h.05q.05-.1.05-.15 0-.05-.1-.05m.15 1.05q-.1 0-.05.05 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05m-.35.25q-.05-.05-.1-.05-.15-.05-.3-.05-.15.05-.25.1h-.2q-.05.05-.05.15.05.05.2.1.15.05.35.05.25-.05.4-.1.15-.05.1-.1 0-.05-.15-.1m-.35 1q.1.05.35.05.2-.05.3-.1.15-.05.05-.1 0-.05-.15-.1h-.25q0-.05-.05 0h-.5q-.05.05 0 .1 0 .05.05.05.15.05.2.1"/><path fill="#CCC" d="M684.65 290.3q-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .05.1.1h.25q-.05.002-.05.05-.1 0-.1.05t.15.1h-.05q-.05 0-.05.05l.1.1h.55l.1-.05q.1-.05.1-.1l-.2-.05q.05 0 .05-.05t-.1-.05q-.15-.05-.25-.05.05-.05.05-.1-.05-.05-.1-.05m1.25-.7q-.05 0-.15-.05-.15-.05-.3-.05t-.25.05l-.1.05q0 .05.15.1.2.05.3.05.2 0 .25-.05.1-.05.1-.1m-.05.85q-.1 0-.2.05-.1 0-.1.05t.2.05.2.05q.15 0 .25-.05.05 0 .05-.05t-.1-.05q-.2-.05-.3-.05m1.7-1.4q.05-.05.05-.1l-.1-.05q-.2-.05-.35-.05-.15 0-.15.05l-.15.05q0 .05.2.1.048.048.25.05-.154.002-.25.05-.05 0-.05.05h-.05q-.15-.05-.25-.05-.2 0-.3.05-.15 0-.05.05 0 .05.1.15h.5l.1.1h.55q.05-.05 0-.1v-.1h.1q.15-.05.1-.1 0-.05-.2-.05-.099-.049-.25-.05.055-.002.2-.05m.85-.05h-.1q-.05 0-.1.05-.05 0-.05.05l.1.1h.5q.1-.1.05-.15 0-.05-.1 0-.15-.05-.3-.05m-.15.6q-.1 0-.25.05-.1 0-.05.05-.1 0-.1.05.05.05.15.1h.5q.048-.048.1-.05h-.05q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05m-.95 1q0 .05.2.1h.5q.1-.05.1-.1t-.2-.05q-.1-.05-.3-.05-.1 0-.25.05-.05 0-.05.05m-4.4-5.25q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05h-.15q-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.1h.35l.05.1h.175q-.131.003-.225.05l-.05.05q0 .05.15.1t.25.05q.15 0 .25-.05.05-.05.05-.1l-.15-.05q-.094-.047-.2-.05h.25m-.2.4h-.05q-.048.002 0 .05v.05h.1q.15.05.35.05.1 0 .15-.05.05 0 .05-.05-.05-.05-.1-.05-.1-.05-.2-.05h-.05q-.2 0-.25.05"/><path fill="#CCC" d="M682.65 285.75q.1-.05.1-.1h-.05q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05q-.1-.05-.25-.05-.1 0-.25.05-.1.05-.1.1.05.05.2 0 .1.05.2.05h.8m.05.35q.05 0 .05-.05V286h-.05q0-.05-.05-.1h-.5q-.1.05-.1.1h.05v.05q0 .05.15.05 0 .1.15.1h.15q.102-.003.15-.1"/><path fill="#CCC" d="M683.3 286.2h-.15q-.05-.1-.15-.1-.1 0-.1.1h-.35q-.1.003-.1.05-.05 0-.05.05.05 0 .2.05.05 0 .15.05h.4q.15 0 .25-.05.15 0 .1-.05 0-.05-.2-.1m-1.6-1.2h-.05q0-.05-.15-.05-.05-.05-.25-.05l-.2.1q-.15 0-.15.05.05.05.2.1h.05q.05.05.1.05-.05.05-.15.05h-.45l-.05.1v.05l.1.05q.2.05.35.05.1 0 .15-.05v.05h.5q.1 0 .25-.05.05 0 0-.05v-.05q-.1-.1-.2-.15h-.05q.052-.002.1-.05.05 0 0-.05 0-.05-.05-.05l-.05-.05m-.75-.15q.15.05.25 0 .2 0 .3-.05.15 0 .05-.05 0-.05-.1-.1h-.1q-.15-.05-.25-.05-.15.05-.25.1-.05 0-.05.05v.05q.05.05.15.05m.1 1.25v-.05q-.1-.05-.2-.05-.15-.05-.3-.05-.2 0-.35.05h-.1v.05l-.05.05q-.1 0-.1.1 0 .05.1.05h.05q.15.05.25.05.15 0 .25-.05h.35q.1-.05.1-.15m.45-.15q-.1 0-.25.05l-.05.05q0 .05.15.15.1.05.2.05.15 0 .25-.15.15-.05.15-.1-.1 0-.2-.05h-.25"/><path fill="#CCC" d="M681.4 285.9q0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05m.45.75h-.2q-.1 0-.1.05h-.05q0-.05-.05-.05h-.1q.105-.002.2-.05.1-.05.1-.1l-.2-.05q-.1-.05-.25-.05-.1 0-.25.05l-.05.05q0 .05.2.1-.1 0-.15.05l-.05.05v.05h.05q-.052.002-.1.05h-.05v.05q0 .05.05.15h.55l-.05.05q-.15 0-.15.05.05 0 .05.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05h.15v.05q.15 0 .2.05h.05q-.052.002-.1.05h-.15q-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1-.094-.047-.2-.05h.45q.048-.048 0-.05h.3q.05-.05.1-.05l.05-.05h.1v.05h.1l.05.05h.05q.1.05.25.05.2 0 .3-.05.1-.05 0-.1 0-.05-.05-.05-.15-.05-.3-.05h-.2q-.1 0-.15.05-.15-.05-.2-.05 0-.05-.05-.05-.1 0-.2.05-.1 0-.2.05h-.2q.052-.002.1-.05.1 0 0-.05 0-.05-.05-.05-.1-.05-.25-.05h-.05l.05-.1q.2 0 .25-.05h.2l.05.05q.2-.05.3-.05h.25q.05.05.1.15h.5q.1-.1.05-.15 0-.05-.1-.05-.15-.05-.3-.05h-.15q0-.05-.1-.1h-.45q0-.05-.05-.05-.1 0-.25.05"/><path fill="#CCC" d="M681.95 287.55q.05.05.15.1h.25q.1-.05.25-.05.1-.05.05-.1l-.1-.05q-.1-.05-.25 0h-.05q-.15 0-.2.05-.05 0-.05.05h-.05m-1.35-2.8h-.5q-.05.05 0 .1 0 .05.1.05.15.05.3.05t.15-.05.15-.05l-.2-.1m-.55.35q.05-.05.05-.1t-.15-.1h-.6q-.05.05-.05.1h-.1q0-.05-.15-.1h-.5q-.05.05-.05.1l.1.05q.2.05.3.05 0 .05.15.1h.55v-.1q.05.05.15.05.2 0 .3-.05m-.05.25q-.1-.1-.3-.1-.1 0-.25.1-.05 0-.05.05t.2.1h.5v-.1q0-.05-.1-.05m0 .25q0 .05.05.05 0 .05.2.05.1.05.25.05.1 0 .2-.05.1 0 .1-.05t-.1-.05q-.05-.05-.15-.05-.15-.05-.25-.05t-.25.05q-.1 0-.05.05m-.7.85q-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .15-.05.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05t-.2.05m-.5.75q-.05 0-.05.05-.05.05-.05.1-.1.05-.15.05l-.05.05q0 .05.2.1h.45q.05-.05.05-.1h-.05q.148-.049.2-.05-.049-.001 0-.05v-.05h.1q.05-.05 0-.1.15 0 .15-.05-.1-.05-.2-.05h-.25q-.1 0-.25.05h-.05l-.05.05"/><path fill="#CCC" d="M679.6 287v.05q-.1 0-.1.05.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.35q.05-.05 0-.15 0-.05-.05-.05-.2-.05-.3-.05h-.45q-.1 0-.15.05-.15 0-.15.05l.1.1m0 .35v.05q0 .05.05.05h.1q.15.05.2.05.15 0 .15-.05h.1q.05.05.1.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.45v.05q-.05-.05-.2-.1h-.45q-.1.05 0 .05m.4.35h-.3l-.2.1q-.1.05-.1.1l.1.05h-.15q-.25 0-.35.05-.15.05-.1.1 0 .05.2.1h.6q.2 0 .25-.05h.05v-.1q.05-.05 0-.05 0-.049-.05-.05.1 0 .1-.05h.05v-.05q0-.05-.1-.15m.55.75h.5q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05h-.55q-.15.1-.05.15h.1q.2.05.3.05.1 0 .2-.05h.05m-.85.8q.25 0 .4-.05.1-.05.1-.1-.1-.1-.2-.15-.25-.05-.5-.05-.15 0-.3.05-.1.05-.05.15 0 .05.2.1.15.05.35.05m.1-.45q.15-.05.15-.1-.05-.05-.2-.1h-.6q-.1.05-.05.1 0 .05.1.1.2.05.4.05.15 0 .2-.05m1-.05h-.3q-.15.05-.15.1t.2.05q.1.05.25.05.1 0 .25-.05.05 0 .05-.05.1.05.3.05.15 0 .35-.05.2-.05.1-.15 0-.05-.2-.1-.2-.1-.4-.1t-.35.1q-.1.05-.1.1v.05m-.2.4q0 .05.1.1h.5q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.05 0-.05.05m-1 .3q-.15 0-.2.05-.1 0-.1.05.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.05-.2-.05-.3-.05m-.45.2v-.05h-.45q-.15.05-.15.1.05 0 .15.05 0 .05.05.05.15.05.3.05h.3q0 .05.1.1h.5q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05h-.15l-.1-.1h-.25m-.25.35h-.45q-.1.05-.1.1 0 .1.15.1.2.05.3.05.1 0 .2-.05.1 0 .1-.1 0-.05-.2-.1"/><path fill="#CCC" d="M678.7 290.35q0 .05.1.1h.5q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.2-.05-.15 0-.25.05l-.05.05m.15.25q0 .05.15.1h.5q.15-.05.15-.1-.05-.05-.2-.05-.1-.05-.25-.05t-.3.05q-.1 0-.05.05m1.75-1.2q-.05 0-.1-.1h-.25q-.2 0-.25.1l-.05.05q0 .05.1.1h.3q.15 0 .2-.05.05-.05.05-.1m-.65 1.1q.1.05.25.05.1 0 .2-.05.15 0 .1-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.05.05.2.05m.05.2l-.05.05q0 .05.1.1h.5q.05-.05.05-.1l-.1-.05q-.15-.05-.3-.05t-.2.05m2.45-1.8h-.2q-.15.05-.15.1-.05 0-.15.05-.1.05 0 .05 0 .05.05.1h.45q.1 0 .15-.05 0 .05.05.05.188.047.3.05.2 0 .3-.1.15-.05.15-.1-.1-.05-.2-.05h-.3q0-.05-.15-.1h-.3"/><path fill="#CCC" d="M682.65 289.25h-.2q-.1.05-.1.15.05 0 .2.05.1.05.2.05.15 0 .25-.05l.1-.05q0-.1-.15-.15h-.3m-.95 1.15q.05 0 .1.05.15.05.25.05.2 0 .25-.05h.15q.1 0 .15.05h.5q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.25-.05h-.1q-.05 0-.2-.05h-.5q-.15 0-.2.05-.05.05-.05.1m1.4-.4q0-.05-.15-.1h-.5q-.1.05-.1.1.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .1-.05m-.25 1.45h.25q.1-.05.05-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.25m-.3.2q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15 0 .15-.05m.1.65h-.35q-.15.05-.05.1 0 .05.1.1.2.05.4.05t.25-.05q.15-.05.15-.1-.05-.05-.2-.1h-.3m-1.3-.95q.05-.1.05-.15 0-.05-.2 0-.1-.05-.25-.05t-.3.05v.05q0 .05.15.1.1.05.3.05.1 0 .25-.05m-1.3.15q0-.05-.15-.05-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.1.1h.5q.1-.05.1-.1m-.45.9q-.15 0-.15.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.05m8.6-1.1h-.2q-.05.05-.05.1t.15.05q.1.05.2.05.2 0 .25-.05.05 0 .05-.05t-.1-.1h-.3m0 .25h-.2q-.1.05-.1.1.05.05.2.05.05.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.3m-.9-.2l.05-.05q0-.05-.1-.1-.2 0-.4.05h-.15q-.15.05-.15.1.1 0 .2.05t.25.05l.3-.1m-.45.2q0-.05-.05-.05-.15-.05-.3-.05t-.25.05q-.05 0-.05.05.05.05.15.1h.5q.1-.05 0-.1m-1.65-.5q.1 0 .05-.1 0-.05-.15-.1h-.45q-.15.05-.15.1.1.1.2.1.1.05.25.05.1 0 .25-.05m0 .25q-.15-.05-.25-.05-.15 0-.25.05-.1 0-.05.05 0 .05.1.1h.5q.1-.05.1-.1-.05-.05-.15-.05m15.05-8.55q0 .05.1.1h.65q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1m-.4 1.05q0-.15-.3-.2-.2-.05-.5-.05-.2 0-.35.05h-.15l-.05.05q0-.1-.25-.15-.099-.05-.3-.05.053-.002.15-.05.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25.05-.35.1-.15.05-.1.1 0 .05.2.1.097.048.2.05-.151.001-.2.05-.1.05-.1.2.05 0 .05.05h-.15q-.3 0-.45.05h-.2q-.15 0-.3.05-.2.05-.1.1 0 .05.25.1.15.05.35.05h.25q.15.05.3.05h.1q.05.05 0 .05h-.05q-.2 0-.35.05-.3 0-.45.05-.25.05-.15.2 0 .1.3.15.05 0 .2.05h.1q-.1.05-.1.1.1.05.15.05.1.05.25.05.1 0 .2-.05h.1q.05 0 0-.05 0-.05-.1-.05v-.05q.1 0 .1-.05.1-.05.1-.1.05 0 .05-.05v-.1q.05 0 .05-.05v-.05h.2q.1-.1.1-.15h-.2l.05-.05.1-.1q.05-.05.05-.1-.048-.048-.15-.05h.1q.25 0 .45-.1h.05q.05.05.25.15.3.05.55.05.3 0 .4-.05.25-.1.2-.15"/><path fill="#CCC" d="M699 284.15q-.2 0-.3.05-.05 0-.05.1.05 0 .05.05-.05 0-.05.05.05.05.15.05.15.1.25.1t.25-.1q.1 0 .05-.05 0-.05.05-.05.15 0 .05-.05 0-.1-.1-.1-.2-.05-.35-.05m1.9-.8h.25q.15-.05.05-.1 0-.05-.1-.1-.2-.05-.35-.05-.2 0-.3.05-.1.05-.1.1.1.05.15.1h.4m.15.2h-.3q-.15-.05-.25-.05-.15.05-.25.1-.1 0-.05.05l.05.1q-.05 0-.05.05.05.05.25.1h.35q.2 0 .35-.05.2-.05.15-.1 0-.15-.25-.2m.05.9q-.25.1-.4.15-.1.05-.15.05-.05.05 0 .1 0 .048.05.05h-.15q-.2 0-.25.05-.15.05-.15.1.1 0 .15.05.05.05.1.05t.15.05h-.3q-.1.05-.1.1.1 0 .15.05.1.1.25.1t.25-.1l.05-.05q0-.05-.15-.1.15 0 .2-.05.05 0 .1-.05.1 0 0-.05v-.05h.4q.3 0 .45-.05.15-.1.15-.15-.1-.1-.25-.15-.25-.1-.55-.1m1.8-1.75q.2-.05.15-.1-.1-.05-.25-.1h-.4q-.2 0-.35.05-.15.05-.1.1.05.05.25.1.1.05.35.05.15 0 .35-.1m-1.15 1.2q0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25 0-.3.05-.2.05-.15.1m.2.55q-.05 0 0 .1 0 .05.1.1.2.05.35.05.2 0 .25-.05.05-.05.15-.05h.4q.15-.05.05-.15h.1q-.1.1 0 .1 0 .1.2.15h.55q.25 0 .45-.05.15-.05.15-.2l-.05-.05q.3 0 .5-.05.1-.05.1-.1-.05-.05-.05-.1-.05-.05-.2-.05-.25-.05-.55-.05h-.05q-.25 0-.35.05-.2.05-.1.15-.1-.05-.25-.1t-.35 0q-.25 0-.4.05-.15.05-.1.1 0 .049.05.05-.101 0-.25.05H702l-.05.05m5-.15q-.2.1-.15.15.1.15.25.2.25.05.55.05.25 0 .35-.05.2-.05.15-.2-.05-.05-.25-.15-.25-.05-.5-.05-.3 0-.4.05m-15.55-2.8h.5q.1-.05.1-.1-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.2.1-.15 0-.1.05 0 .05.15.1m-2.25-.25q.25 0 .3-.05.2 0 .15-.05 0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.3.05m-.25.7q-.1.05-.05.1 0 .1.15.1.1.05.2.05.15 0 .25-.05.15 0 .15-.1l-.2-.1h-.5m.85 1.35q-.1 0-.05.05 0 .1.2.1.1.05.35.05.2 0 .25-.05.1 0 .1-.1-.05-.05-.25-.05-.05-.05-.2-.05-.25 0-.4.05m-.7.85q-.25 0-.35.05-.15 0-.1.05 0 .1.15.1.048.048.15.05-.1.002-.1.05 0 .1.2.15h.325q-.186.004-.325.05-.1.05-.1.1h-.1q-.05.05-.05.1t.15.05q.15.05.25.05h.05q0 .05.2.1h.05q0 .05.15.1.15 0 .3-.05h.15v.05q0 .05.25.1-.15 0-.35.1-.05.1-.05.15v.05q.05.05.15 0 .15.05.25.05h.2q.15 0 .35-.05.1 0 .1-.05-.05 0-.05-.05v-.05q.25 0 .35-.05.15-.1.1-.15 0-.05-.2-.1-.1-.05-.2-.05h-.05q-.15-.05-.35-.05h-.2q-.1 0-.15.05V285l-.15-.05h-.1v-.05q0-.05-.05-.05v-.05q.05.05.15.05.15 0 .25-.05.05 0 .05-.05l-.1-.1h-.1q.102-.002.15-.05l.15-.05q0-.097-.15-.1.153-.002.25-.05l.05-.05v-.05q.15-.05.05-.1 0-.05-.15-.1-.2-.05-.45-.05-.15 0-.35.05-.05 0-.05.05-.15-.05-.3-.05 0 .05-.05.05h-.25m.4.45q.05-.15.05-.2v-.05h.25q0-.05.1-.05.05 0 .05.05h.05l.05.05h-.25q-.1.05-.05.15l.15.05h-.1q-.1-.05-.3 0m1.4-.95q-.05-.05-.25-.05-.1 0-.25.05-.05.1 0 .1 0 .05.1.1h.05q-.05.05-.05.1.05.05.2.1.2.05.4.05t.4-.05q.05-.05.05-.1h.3q.2.05.4 0 .1 0 .15-.05.15 0 .15-.05l-.2-.1q-.1-.1-.25-.1-.15.1-.3.15-.05-.05-.2-.05-.1 0-.2.05h-.3v-.05q-.1 0-.2-.1m1.75-.95q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1-.1-.05-.2-.05"/><path fill="#CCC" d="M692.2 283.55q-.15 0-.15.05.05.05.2.05.1.1.25.1.1 0 .2-.1.15 0 .1-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05m-.2.9q.05.1.25.1.1-.1.25-.15v-.05q0-.05-.15-.05-.1-.05-.25 0-.15 0-.2.05-.1 0-.1.05t.2.05"/><path fill="#CCC" d="M693.55 283.3q-.1 0-.1.1.05.05.15.05.097.048.15.05-.15.001-.15.05h-.7q-.1.05-.05.1 0 .1.1.15.2.05.35.05h.1q.1 0 .15-.05h.15q.1 0 .15.05h.25q.25 0 .3-.05h.05q.1 0 .15.05h.05q-.054.002-.2.05-.1.05-.1.15.05.05.25.1.25.05.55 0h.3q.1.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.05-.05-.05-.1-.05h-.1q0-.1-.2-.15-.15-.05-.25-.05.1-.05.1-.15 0-.049-.05-.05.101 0 .25-.05h.05q.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1h-.55q-.15 0-.25.05t-.05.1h-.15l-.2.1q-.1-.05-.2-.05-.097-.048-.2-.05.1-.002.1-.05.15 0 .1-.05 0-.1-.2-.1h-.05q-.1-.05-.25-.05-.25 0-.3.05m-.95 1.15q-.1 0-.25.1-.05.1-.05.15h.3q.05.05.1.05h.15q.1.05.25.05-.15.05-.15.1l.2.05q.048.048.1.05h-.1l-.05.05q-.1 0-.1.1l.2.1q.1.1.3.1h.1q.25 0 .3-.1h.1q.1-.05.05-.1 0-.1-.2-.1-.15-.05-.35-.05.05-.05.1-.05v-.05q0-.05-.05-.1h-.3l.05-.05q.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05-.05-.05-.15-.05-.15-.1-.25-.1"/><path fill="#CCC" d="M693.25 284.05q0 .1.15.1.1 0 .2.05-.05 0-.05.05v.05q-.1-.05-.15-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.75q.05-.05 0-.1.1 0 .15-.05l.1-.05v-.05l-.2-.05q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.3-.05-.2 0-.4.05-.1 0-.05.05m2.3-1l-.1-.1h-.5q-.1.05-.05.1l.1.05q.149.05.3.05-.05.001-.05.05 0 .05.2.05.05.05.2.05.15 0 .25-.05v-.05q0-.05-.05-.1h-.3v-.05m.4.5h.1q.15.05.35.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.05-.1h.2l.05-.05v-.05l-.05-.05q.05 0 0-.05l-.15-.05q-.1-.05-.25-.05-.1 0-.2.05l-.15.05q.05.05.15.05v.05q0 .047.1.05h-.1q-.2 0-.35.05-.1 0-.05.1l.05.05m-.5.75q-.15 0-.25.05v.05q0 .05.1.15h.5q.05-.1.05-.15 0-.05-.2-.05-.05-.05-.2-.05m2.25-1.75h-.45q-.15.1-.15.15-.1 0-.2.05-.2.05-.15.1-.1.1-.1.15.05.05.25.1t.4.05q.25-.05.3-.1.2-.05.2-.1.05-.1.05-.15-.05-.05-.2-.1h.15l.05-.05q0-.05-.15-.1m.85 2.05q-.15-.05-.4-.05-.15.05-.25.05l-.05.05-.15.05-.05.05q.05.05.25.1l.1.05q.15 0 .25-.05h.45q0 .05.1.05.3.1.55.1.3 0 .4-.1.2-.05.15-.1-.05-.1-.25-.15-.2-.05-.5-.05-.2 0-.45.05 0-.05-.15-.05"/><path fill="#CCC" d="M698.15 285.2q.05.05.1.15-.05 0-.05.05h.05q0 .1.25.15h.5q.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.2h-.05q0-.1-.25-.15h-.05l-.1-.05h-.15q-.05-.05-.15-.05h-.15q-.2.05-.3.05-.1.05-.15.05-.05.05-.05.1.05.05.2.1h.05"/><path fill="#CCC" d="M697.8 285.25h-.45q-.15 0-.3.1H697q-.05.05 0 .1 0 .05.1.05.2.05.4.05h.05q.1 0 .15-.05h.2q.1 0 .25-.05.05-.05 0-.05 0-.05-.05-.15h-.3m.1.5q-.1.05-.1.15h-.3q-.25 0-.45.05H697q0 .05-.05.1.05.15.25.2.145.048.325.05-.127.002-.175.05-.05 0 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05-.05-.15-.05v-.05q.15 0 .3-.05t.1-.15h.25q.3-.05.5-.1.15-.05.15-.15-.05-.05-.3-.15-.2-.05-.55 0-.15 0-.35.05h-.05m-1.3-.15v.1q0 .049.05.05h-.05q-.2 0-.25.05-.15 0-.15.05l.2.1q.1.05.3.05.1 0 .25-.05.1-.05.05-.1l-.05-.05h.05q.2 0 .3-.05v-.1q-.05 0-.1-.05-.15-.05-.3-.05t-.25.05h-.05m-.1.5q-.15-.05-.4-.05-.2.05-.35.15-.15.05-.15.1.05.05.25.1.1.05.25 0h.1q.25 0 .45-.05.1-.05.05-.1 0-.05-.2-.15"/><path fill="#CCC" d="M696.95 286.9q.25 0 .4-.05.25.05.45.05.15 0 .2-.05.1-.05.15-.05h.05q.1.05.25.05.1 0 .25-.05.1 0 .05-.05v-.05h.2q.1-.1.1-.2.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05 0 .05-.05.05 0 .05-.1.05 0-.048-.05-.05h.15q.05-.1 0-.15h-.1q-.15-.05-.3-.05t-.25.05l-.05.05q0 .048.125.05-.179.002-.275.05-.2.05-.15.1 0 .1.2.1-.05.05-.15.05l-.05-.05h-.55q-.05-.05-.1-.05l-.05-.05q-.3-.05-.55-.05-.3 0-.4.05h-.1q-.1.1-.1.15h-.15q-.15 0-.2.05-.15 0-.15.05.05.05.2.05.05.05.25.05.1 0 .25-.05l.05-.05.05.05q.25.05.55.05m-.3.25q-.15-.05-.25 0-.1 0-.25.05-.1 0-.05.05 0 .05.1.05.1.05.15.05 0 .05.05.1-.05 0-.25.05t-.1.15q.05.05.25.15.3.05.5 0 .3 0 .45-.1.25-.05.15-.1v-.05q.002.05.1.05.1.05.2.05.15 0 .25-.05.15-.05.05-.1l-.1-.05q-.1-.05-.25-.05-.1 0-.25.05l-.1.05q-.05 0-.2-.05-.05 0-.1-.05h.05q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.2-.05-.05-.05-.15-.05m1.65-.25h-.2q-.15.1-.15.15.05.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05 0-.05-.1-.15h-.25m-2.4-1.85q-.1-.05-.25-.05-.1 0-.2.1-.15 0-.15.05.05.05.2.05h.25q.1 0 .2-.05.15 0 .1-.05 0-.05-.15-.05m-.05.3q0-.1-.2-.15-.106.003-.2.05H695q-.1 0-.15-.05h-.55q-.2.05-.25.05l-.05.1h-.15q-.15 0-.25.05-.1 0-.05.05 0 .05.15.1h.4l.15.05q.1 0 .3.05h.2v.1l.1.05h.1q.1.05.2.05.15 0 .15-.05.15 0 .15-.05v-.05q-.1 0-.2-.05h-.4q.109-.002.3-.05h.2q.2 0 .4-.1h-.1q.2-.05.15-.1h.05v-.05m-.6-.2v-.1h-.05q.05-.05.05-.1-.05-.05-.2-.1h-.6q-.1.05-.05.1 0 .049.05.05-.05.001-.05.05h.05q0 .05.15.1h.15q.1.05.25.05t.25-.05m.2.75q-.15 0-.2.05l-.05.05q0 .05.05.05 0 .05.05.05h.5q.05 0 .1-.05-.05 0-.05-.05l-.1-.05q-.15-.05-.3-.05"/><path fill="#CCC" d="M693.6 285.95q.15.05.3.05.35 0 .45-.1.25-.05.2-.1 0-.05-.15-.1-.1-.05-.15-.05-.2-.05-.5-.05h-.2q-.1 0-.3.05-.05.05-.1.15h-.05q0-.05-.2-.05-.1-.05-.3-.05-.2 0-.25.05-.1.05-.1.1.05 0 .15.05.15.05.3.05.2 0 .25-.05l.15-.05q0 .05.05.1h.45"/><path fill="#CCC" d="M694.75 286.1q-.15-.05-.4-.05-.2 0-.3.05-.05 0-.15.1-.05-.1-.15-.1-.25-.1-.5-.1-.3.05-.4.2-.2.05-.15.1h-.5q.1-.05.05-.1l-.05-.1q.05-.05.05-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.1q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05h-.1q-.1.05-.15.05-.1 0-.05.05l.05.05q-.05 0-.05.05h-.05v.05q0 .05.1.05.15.05.3.05 0 .05.2.1.098.098.15.1h-.05v.05h-.3q-.1 0-.15.05h-.1l-.05.05q.05.05.2.1h.05q-.098.003-.05.1h-.25q-.1 0-.2.05-.1 0-.05.05 0 .05.15.05v.05h.05l-.05.05q-.15-.05-.25-.05-.15 0-.25-.05H690q-.15.05-.25.05-.1.05-.1.1t.1.15l.15.05q.1.05.35.05.2 0 .35-.05.2-.15.15-.2l.15.05h.25q-.05.1-.05.15.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.3v-.1l-.05-.05h-.15q.15-.05.15-.1h.4q.05 0 .05-.05h.1q.05 0 .05-.05-.05-.1-.2-.1l.05-.05q.1 0 0-.05h.15q.1 0 .1-.05h.05v.05q-.15.05-.1.1.05.05.25.1.15.05.35.05h.25q.05 0 .1-.05l.15-.05h.05q.15-.05.35-.05.25 0 .35-.05l.2-.05h.1q.1.05.2.05h.2q.2 0 .35-.05.1-.05.1-.1-.05-.05-.25-.15"/><path fill="#CCC" d="M694.6 286.8v-.05q-.05-.05-.25-.1-.2-.1-.5-.1-.25 0-.45.1-.1.05-.1 0h-.45l-.05.05q-.1 0-.1.05.097.048.15.05h-.45l-.05-.05h-.55q-.1.05-.1.1l.05.05q.05.1.15.1.05.05.15.1h.05q.15.05.3.05.1.05.15.05h.05q.05.05.1.05h.3q.25 0 .5-.05.099-.099.1-.15V287l-.05-.1q.053.1.15.1l-.1.05q.001.05.1.05 0 .05.05.05h.05q0 .049.05.05-.05.001-.05.05v.05l.2.05.05.05h.35q.05-.05.15-.05v-.05q0-.05-.15-.1-.048-.048-.1-.05h.05l.05-.05q-.05-.05-.15-.05l-.1-.05h.15q.1 0 .15-.1.15 0 .15-.05.05-.05 0-.05m-1.225.1q-.124-.047-.225-.05h.1l.125.05"/><path fill="#CCC" d="M693.85 287.5q-.05 0-.1.05l-.05.05h-.2q.05-.001.05-.05v-.05h.05q.1-.05.1-.1-.1-.05-.2-.05v-.05h-.25q-.15 0-.3.05-.05 0-.05.05l-.05-.05q0-.05-.2-.1h-.1q-.15-.05-.3-.05h-.3q-.05.05-.15.05-.05 0 0 .05h-.35q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .2-.05.25.05.45.05t.3-.05h.1v.05h.05v.05q0 .05.15.1h.3q-.05.05-.05.15.05 0 .2.05.1.05.25.05t.3-.1q.049-.099 0-.1h.1q.05.1.2.1.05.05.25.05.1 0 .2-.05.1 0 .1-.1h-.1q0-.05-.05-.1h-.3q-.05-.05-.1-.05 0-.05-.05-.05h-.4"/><path fill="#CCC" d="M694.7 287.4l-.05.05v.05q.05.1.2.15h.1q.1.05.3.05.2 0 .35-.05.15-.05.05-.15 0-.05-.15-.1-.2-.05-.35-.05h-.2q-.05 0-.1.05h-.15m.9-.5q0-.05-.1-.05v-.05q-.05 0-.2-.05-.048-.048-.1-.05h.25l.05-.05q.15 0 .25-.05.05-.05.05-.1t-.2-.05q-.05-.05-.25-.05-.15 0-.2.05-.1 0-.1.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1h.15q-.105.003-.2.05-.1.05 0 .05 0 .05.05.1.05.1.15.1.15.05.25.05.15 0 .25-.05.1 0 .05-.1m.3 1.25q-.15-.05-.35-.05-.25 0-.35.05-.15.05-.15.1H695q-.1.05-.05.1 0 .05.1.05.1.05.25.05h.25q.2.05.3.05.05 0 .2-.05.1.05.3.05.25 0 .3-.05.15-.05.15-.1-.05-.05-.2-.1-.2-.05-.45-.05h-.2l-.05-.05m-.05-.3q-.05.05-.05.1t.15.05q.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.1q-.1-.05-.3-.05-.15 0-.25.05m-.85.9h-.15q-.1 0-.1.05h-.05v.05q.05 0 .15.05l-.1.05q.1.05.15.1h.45q.1 0 .15-.05l-.15-.1.1-.05q0-.05-.15-.1h-.3m.95.4q-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.1.3.1h.1q.1 0 .2.05.05 0 .2.05l.05.05q0 .1.25.15.1.05.3.05-.1.05 0 .1 0 .1.2.15.148.049.3.05-.052.002-.1.05-.1.1-.1.15.05.05.2.1.15.05.3 0h.25q-.05.05-.05.1.05.05.1.05 0 .05.1.05.25.05.45.05t.3-.05q.2-.05.15-.1 0-.05-.25-.1-.2-.05-.35-.05h-.2q.15-.05.05-.1 0-.1-.15-.15-.148-.049-.2-.05.052-.001.2-.05l.1-.1h.25v-.1q0-.05-.1-.1h-.45q.109-.003.25-.05l.2-.1q.05.1.15.15.2.05.35.05.15 0 .2-.05l.05.05q.3.05.55.05h.35q.05.1.25.15h.55q.25 0 .4-.05.2-.05.15-.15 0-.05-.2-.1h.2q.05.05.05.1.05.05.25.15.25.05.55.05.2 0 .35-.05.25-.1.2-.15-.1-.1-.35-.15-.15-.05-.4-.05v-.05q-.05-.05-.25-.15-.1-.05-.35-.05-.2 0-.35.05-.2.1-.15.15v.05q-.05-.05-.15-.05-.2 0-.3.05-.05 0-.05.05h-.15q-.05 0-.05-.05t-.25-.1q-.2-.1-.5-.1-.2 0-.35.1-.1-.1-.25-.1H699q-.2 0-.3.1-.149 0-.15.05-.001-.05-.25-.15-.049-.049-.1-.05.05-.001.05-.05v-.05q.25.05.5.05.2 0 .25-.05h.15q.15-.05.15-.1V289q.05 0 .1.05.25.05.45.05t.3-.1l.1-.05h.35q.3 0 .5-.05t.2-.1q-.1-.1-.4-.15-.15-.05-.45-.05-.2 0-.45.05.05-.05.05-.15-.05-.1-.15-.1l.05-.05q.05 0 .1-.05h.45q.1-.05.05-.1 0-.05-.05-.1h.1q.15-.05.1-.1 0-.05-.15-.1-.2-.05-.35-.05-.2 0-.25.05-.1.05-.1.1l.1.1h-.25q-.05.05-.25.05h-.05l-.05-.05h-.5q-.1.05-.05.1 0 .05.15.05h.05v.05h.05q.05.05.2.1h-.15q-.15.05-.1.2 0 .05.15.1.241.048.425.05-.132.002-.275.05-.15.05-.15.1-.05 0-.1-.05-.3-.05-.55-.05-.25 0-.4.05-.2.05-.15.15h-.05q-.05-.05-.25-.05-.1 0-.25.05-.05 0-.05.05.05.05.15.05l.05.05q-.05 0 0 .05 0 .049.05.05-.051.001-.1.05h-.55q-.05 0-.15-.05-.1-.05-.2-.05-.15 0-.2.05-.05-.05-.2-.05-.1-.05-.25-.05m2.25 0h-.1l-.1-.05h.1q.05 0 .1.05m-.3.45q.047.047.175.05h-.225l.05-.05m2-.85h-.15q.105-.002.2-.05 0 .05-.05.05"/><path fill="#CCC" d="M695.65 288.95h.1q.2.05.45.05t.4-.05q.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.5-.05-.3 0-.4.05-.05 0-.05.05-.15.05-.05.1.05.1.2.15m-.8-.35q.05-.1.05-.15-.05-.05-.15-.05-.1-.05-.3-.05-.1 0-.2.05t-.15.05q-.2 0-.25.05h-.25v-.05q.1 0 .1-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.05.05l.1.05h-.45q-.1.1-.1.15h-.15q.15-.05.1-.15 0-.05-.1-.05l.1-.05h.1v-.05h.2q.05-.05 0-.1 0-.05-.1-.1h-.5l-.1.05h-.05v-.05q-.05-.05-.15-.05-.1-.05-.2-.05-.25-.05-.5-.05l-.3.1q-.15.05-.15.1.05.05.2.1.25.05.45 0 .15 0 .35-.05h.05v.05q0 .05.15.1h-.15q-.1.05-.1.1l.05.1q-.1-.1-.25-.1-.1.1-.25.15l-.1.05q.05.05.2.1.1 0 .2-.05h.1q.05.05.15.1h.25q0 .05.05.05h.15q.048.048.1.05h-.3l-.05.05q-.05 0 0 .05l.05.05h.15q.05.05.15.05.15 0 .25-.05h.05v-.05h.15q.1.05.15.05h.05q.15 0 .25-.05l.05-.05v-.05h-.05q0-.05-.1-.05h-.2q.05-.05.05-.1h-.05v-.05h.25l.05-.05h.25q-.05.002-.05.05h-.15q-.05.05 0 .05 0 .05.15.05.1.05.25.05h.1q.05 0 .1-.05.15 0 .15-.05H694q0-.05-.15-.05-.048-.048-.1-.05h.1q-.048-.002 0-.05.05.05.15.05h.25q.1-.05.2-.05h.15q.15 0 .25-.05m-1.65 0l-.05-.1h.05v.1m1.05-.5q.05-.05.05-.1-.05-.05-.2-.1-.1 0-.3.05h-.3q-.1.05-.05.1 0 .05.15.1t.3.05q.2-.05.35-.1m-.1.95l-.05-.05q-.2 0-.2.05l-.1.05q.05.05.2.1.05.05.25.05.1 0 .2-.05t0-.1l-.05-.05h-.25m-.15.2h-.55q-.05.05-.05.15h.05q0 .05.1.05.15.05.25.05h.05q.15 0 .25-.05.05 0 .05-.05 0-.1-.15-.15"/><path fill="#CCC" d="M694.75 289.45h-.4q-.25 0-.35.05-.15.05-.1.1-.15-.05-.35-.05-.1 0-.15.05-.1 0-.1.05-.05 0-.1.05l-.05.05q.05.05.15.05.15.05.25.05h.05q.15 0 .2-.05.05 0 .05-.05h.15v-.05q.05.05.1.05.15.05.35.05.25 0 .45-.1.15-.05.1-.1 0-.1-.25-.15"/><path fill="#CCC" d="M693.8 289.85q-.05 0-.2.05h-.1l.05.05q0 .05.05.1h.5q.15-.05.15-.1l-.1-.05h-.1q-.05-.05-.25-.05m.2.8q-.15 0-.1.05 0 .05.15.05.2.05.3.05h.1q0 .05.1.05l-.1.05q.1.05.2.15h.55q.3-.1.4-.2.2-.05.15-.1 0-.1-.25-.15-.15-.05-.25 0l.1-.1.15-.05q-.05-.05-.2-.1-.1 0-.25.05h-.1v-.05l-.2-.05q-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5q-.1.003-.1.05l.15.05q.097.048.15.05H695q-.25 0-.45.05h-.1q-.05-.05-.2-.05-.15 0-.25.05"/><path fill="#CCC" d="M694 290.55q.05 0 .05-.05.1 0 .05-.05 0-.1-.1-.1-.2-.05-.4-.05h-.65v.1q0 .05.15.05.1.05.2.05h.1q0 .05.1.05.1.05.3.05.1 0 .2-.05m4.15-2.25q.25 0 .35-.05.25-.05.2-.1v-.05q.05-.05 0-.05 0-.05-.15-.1h.45q.1-.05.1-.1l-.15-.15h-.55q-.1.1 0 .15h-.1q0 .05.15.05v.05q-.15-.05-.25-.05t-.25.05h-.4q0-.05-.15-.1h-.45q-.15.05-.15.1.1 0 .2.05t.25.05h.1v.1q.05.05.25.1l.05.05h-.05q-.2 0-.3.05-.1.05-.1.15v.1q0 .05.05.1.15.05.3.05h.4q.3 0 .45-.05.15-.1.1-.2 0-.1-.25-.15-.05 0-.15-.05h.05"/><path fill="#CCC" d="M696.8 288.25q.2-.05.2-.1.1 0 .1-.05-.05-.05-.15-.1-.05 0-.25.05h-.25q-.05.05 0 .1 0 .05.05.05.2.05.3.05m-.45 2.25q-.05.05-.05.1.05.05.15.1.241.048.425.05-.13.002-.225.05l-.15.05.2.1h.5q.1-.05.05-.1l-.15-.05q-.048-.048-.15-.05.152-.001.25-.05.15-.05.1-.1 0-.05-.25-.1-.1-.05-.3-.05-.25 0-.4.05m-3.5-5.6q0-.05-.2-.1-.05-.05-.25 0-.05 0-.05.05h-.15v.1l.1.05q.1.05.25.05.15-.05.25-.1l.05-.05m-.25.6q0 .05.1.1.15-.05.25-.05h.3q.15-.05.15-.1-.1 0-.15-.05h-.05q-.1-.05-.3-.05-.1 0-.25.1l-.05.05m-.8-.55l.15-.05q-.05-.05-.2-.1h-.5q-.098.052-.05.1l.15.05q.15.05.3.05.1 0 .15-.05"/><path fill="#CCC" d="M691.2 284.65h-.15q-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.05.05.05.2.05.1.05.25.05.097 0 .2-.05l.1-.05q0-.05-.15-.1m-1.15 1.25q.2-.05.3-.1.15 0 .15-.05-.05-.05-.2-.1-.1-.05-.3 0-.15 0-.3.05-.1.05-.05.1 0 .05.1.05.15.05.3.05m-1.3-.85h-.25q-.1.05-.1.1.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.1h-.25m.6 1.75h.05q.2 0 .2-.05.1 0 .1-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05H689l.05.05q0 .05.05.05.1.05.25.05m1.6 1.05q-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1h-.05q-.05.05 0 .05v.1h.1q.1.05.2.05h.05q.2 0 .25-.05.05 0 .05-.05l.05-.05m-1.5 1.7h.25q.15-.05.05-.1 0-.05-.1-.05-.2-.1-.3-.1-.15 0-.2.1-.1 0-.1.05.05.05.15.1h.25m.15.4q.1 0 .1-.05-.05-.05-.2-.1h-.3q-.1.05-.2.05-.15.05-.1.1h.1q0 .05.05.05.15.05.3 0h.1l-.1.05v.05q.05 0 .15.1h.1q-.106.003-.2.05v.2q0 .05.1.05.2.05.4.05.15 0 .15-.05.2-.05.2-.1l-.1-.05q.05 0 .05-.05t-.2-.05q-.048-.048-.1-.05h.1q.15-.1.05-.15l-.1-.05q-.1-.05-.25-.05-.05 0-.1.05v-.05m1.25-.45q-.05-.05-.25-.05-.1 0-.25.05v.05q0 .05.15.05.1.05.25.05t.2-.05q.1 0 .1-.05t-.2-.05m-.1.25q-.15 0-.25.05-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05m.2.3q-.1 0-.05.05 0 .1.15.15h.45l.05-.05q0 .05.1.05h.45q-.1.05-.15.05-.15.05-.05.1h.05q-.15.05-.2.05-.05.05 0 .05 0 .05.05.1h.55q.05-.1.05-.15.1 0 .15-.05l.15-.05q-.05-.05-.2-.1-.1-.05-.25-.05-.026 0-.05.025.05-.131.05-.175h-.2q-.1-.05-.25-.05-.1 0-.25.05h-.1q-.1-.05-.25-.05-.1 0-.25.05m1.4-.85h-.05l-.05.05q.05 0 .05.05h.05l.05.1h.5q.05-.1.1-.15h-.05l-.1-.05h-.05q-.1-.05-.2-.05t-.25.05m-.15 1.6h-.25q-.15.05-.05.1l.1.05q.1.1.3.1.1 0 .2-.1l.05-.1q-.05-.05-.15-.05h-.2m1.35.4q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05m-2.3.3q.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.6q-.2 0-.3.05-.1.05-.1.1.05 0 .15.05.15.05.3.05t.2-.05q.1.05.15.05m-.4-.35q.05-.05.05-.1l-.15-.1q-.15-.05-.25-.05-.15 0-.25.05l-.05.1q0 .05.15.1h.5m-1.5 1.55h.5q.05-.05.05-.15-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .1.15.15m-.2.25q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45m8.35-.75q.15 0 .2-.05.15-.05.15-.1-.05 0-.2-.05-.1-.05-.3-.05-.1 0-.25.05l-.05.05q0 .05.15.1t.3.05m-2.85-.7q-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1 0 .05.2.1h.6q.05-.05.05-.1m13.3-5.55q-.05.05-.1.05h-.25q-.15 0-.3.1-.2.1-.1.15 0 .1.25.1v.05q0 .05.15.1h-.55q-.25 0-.4.05-.2.05-.15.1v.05q-.05-.05-.15-.05-.15-.05-.25-.05-.1-.05-.25-.05-.05 0-.1.05v-.1h.45q.1 0 .2-.05t.05-.1q0-.05-.15-.1-.199-.05-.3-.05.05-.001.05-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .1.15.1 0 .05.05.05l-.1.1q.05.05.2.1l.1.05q-.15-.05-.2-.05-.1-.05-.35-.05h-.05q-.2 0-.35.05-.1 0-.05.05l-.05.1q-.05 0-.1-.05-.25-.05-.55-.05h-.05q-.25 0-.4.05-.15.1-.1.15h-.05q-.25-.05-.45-.05h-.1q.109-.003.25-.05l.05-.05q0-.05-.1-.1-.2-.05-.4-.05-.1 0-.15.05-.15.05-.15.1h-.05q0-.05-.05-.05H702q0-.05-.2-.1-.1.05-.2.05h-.25q-.05.05-.05.1l.15.05q.15.05.25.05v.05h-.05q-.15.05-.15.1l.2.1h.05q.05.1.15.1h.1q-.05.05-.2.05-.1.05-.05.1v.05q-.05-.05-.15-.05-.15 0-.25.05-.05.05 0 .05 0 .05.05.1h.5l.1-.05q.1 0 .3-.05h.3q.05 0 .1-.05h.1v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.05l.05-.1h.1l.05.1h.2q-.1.003-.1.05v.2q.1.1.2.15h.8q.1-.05.1-.1.05 0 .1-.05.2-.05.15-.15-.05-.05-.25-.1-.246-.148-.55-.15.15-.002.15-.05l.05.05q.3.05.55.05.3 0 .4-.05.2-.1.1-.15v-.05h.15q.05 0 .1.05h.25l.05.05q0 .1.25.15.2.1.5.1.25 0 .4-.1.2-.05.2-.15.05.05.1.05.3.05.55.05.3 0 .45-.1.15-.05.1-.15 0-.048-.1-.1.205.1.5.1.25 0 .4-.1.2-.05.15-.1 0-.05-.15-.1.1-.05.15-.05.15-.05.15-.15-.1-.1-.25-.15-.15-.05-.35-.05-.2 0-.4.05"/><path fill="#CCC" d="M701.45 286.3h-.05q-.05-.05-.2-.05-.1-.05-.3-.05l-.05-.1h-.3q-.05-.05-.05-.1t-.2-.1q-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.1.1.2.1.05.1.1.1h.5l.05.05q0 .05.15.05v.05q.05.05.15.1.25.05.45.05.15 0 .25-.05h.05q.15-.05.1-.1v-.05m5.8.6q-.05-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5q.15-.05.15-.1-.1 0-.2-.1m-.15.65q-.05-.05-.2-.15-.25-.05-.55-.05-.25 0-.35.05-.2.1-.15.15v.05h-.35q-.05.05-.05.1l.15.1q.1.05.25.05t.25-.05v-.1q.25.1.5.1.3 0 .4-.1.2-.05.1-.15m-3.35-2.4h.05q.25-.1.45-.15.15-.05.15-.1-.05-.1-.3-.15-.25-.05-.55 0-.2 0-.4.05-.05 0-.05.05-.15.05-.05.1l.2.1q.25.1.5.1m.6 2q.05.05.25.1.15.05.35.05.25-.05.35-.1.2-.05.15-.1 0-.05-.25-.1-.1-.1-.35 0-.2 0-.4.05-.1.05-.1.1m1.4 1.25q.15.05.45.05h.25q.05.05.2.15h.45q.1-.1 0-.15 0-.05-.05-.05-.15-.05-.3-.05.05-.05.05-.1-.05-.05-.35-.1-.15-.05-.4-.05-.3 0-.5.05-.1.1-.05.15 0 .1.25.1"/><path fill="#CCC" d="M707.65 288.1q.1 0 .15-.05l.05-.05q0-.05-.1-.1-.15-.05-.3-.05t-.2.05q-.15.05-.15.1l.2.05q-.25 0-.35.05-.15.05-.15.15.1.05.25.1.2.05.45.05.15 0 .3-.05t.1-.1q0-.1-.25-.15m-2.25.1q.1-.05.15-.1.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05-.05-.05-.3-.1-.15-.05-.4-.05-.3 0-.5.05-.1.05-.05.1v.1q.05 0 .25.05h.05q.2.05.4.05h.15q.15 0 .3-.05.05-.05.1-.05h.1q.15.05.3.05m.75.85V289h.05q.15-.05.1-.1 0-.05-.1-.05l-.2-.1q-.15-.05-.25-.05.1-.05.05-.1l-.05-.1q-.15-.05-.25 0-.25-.05-.5-.05-.3 0-.4.05-.15 0-.2.1 0-.1-.1-.15h-.05q.049-.001 0-.05v-.05q-.1 0-.2-.05H704q-.2-.05-.35-.05h-.15q-.05 0-.1-.05h-.3l-.15-.05q-.25 0-.35.1-.1.05-.05.1 0 .1.1.15-.15 0-.25.1-.05 0-.1.05-.2 0-.3.05-.1 0-.05.1l.05.05q-.1 0-.25.05-.05 0-.05.05.05.05.2.1h.35q-.05.05-.15.05-.1.05-.1.1.05.05.25.1.15.1.4.1h.3v-.1h.1q.05 0 .1-.05.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1h-.25q.2-.05.15-.1.15 0 .35-.05l.05-.1q.2 0 .3-.05.15-.05.15-.1-.05-.05-.25-.15l-.05-.05h.15q0 .05.15.05l.05.1v.05q0 .05.25.1.1.05.35.05.25 0 .35-.05.05 0 .05-.05.1.05.25.1t.3.05q-.1.05-.1.1h-.05q0 .05-.1.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.1.05.35.05h.25l.05-.05q0 .05.1.15.1 0 .15.05.3.05.55.05.3-.05.4-.1.2-.1.1-.2-.05-.05-.2-.15h-.15m-2 1.55q0 .05.1.1h.45q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05m-.35.2q.15-.05.05-.1 0-.05-.1-.05h-.5q-.05.05-.05.1.05.05.15.05.1.05.2.05.2 0 .25-.05m2.4-1.25q-.05.05-.05.1.05.05.15.05v.05q.05.05.2.1.15.05.3.05v.05q0 .05.2.1t.45.05q.15 0 .35-.05.05-.05.05-.1-.05-.05-.2-.1-.095-.048-.2-.05h.3q.2 0 .35-.05.25-.05.15-.15-.05-.05-.3-.15-.1 0-.3-.05h.2q.3 0 .5-.1.15-.1.1-.15 0-.1-.3-.15-.2-.05-.5-.05-.2 0-.45.05-.15.05-.15.15.05 0 .15.05h-.15q-.25 0-.35.05-.1.05-.1.15.05.05.2.1l.1.05q.05 0 .05.05h-.2l-.05-.05h-.5m-.5.45q.2 0 .35-.05.1-.05.1-.1-.05-.05-.15-.1-.25-.05-.5-.05-.2 0-.3.05-.2.05-.1.1 0 .05.15.1.25.05.45.05m2.4-1.4q-.15.1-.15.15.1.1.25.15.25.05.55 0h.25q-.2.05-.15.1 0 .05.25.1.15.05.4.05.2 0 .4-.05.1-.05.1-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.2q.25-.05.2-.15 0-.05-.3-.2-.2-.05-.45-.05-.3.05-.45.15m-6.4-.9h.05q.15 0 .25-.05l.05-.05q0 .1.25.1.2.1.5.1.25 0 .4-.15.2-.05.15-.1 0-.1-.3-.15-.2-.05-.45-.05-.3 0-.5.1-.1.05-.1.1l-.05-.05h-.2l-.1-.05q-.2-.05-.45-.05-.15 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.35.05h.35m-2.65-2.05q-.05 0-.05.05l.1.1h.5q.1-.05.05-.1 0-.05-.1-.05-.1-.05-.25-.05t-.25.05m.8.8q-.15 0-.15.05-.15.05-.1.1 0 .1.25.15.2.05.45.05h.4q.05-.05.1-.05t.05-.05h.2q.1-.05.1-.1h-.05q0-.05-.1-.05-.1-.05-.25-.05h-.05q-.15-.05-.2-.05h-.65m-.7.6q-.3 0-.45.05-.2.05-.15.15.1.05.25.1.3.1.6.1.25-.05.35-.15.25-.05.2-.1-.05-.1-.3-.15-.25-.05-.5 0m1.65-.15q-.1-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5q.15-.05.15-.1-.1 0-.2-.1"/><path fill="#CCC" d="M700.05 287.6q.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1h-.5q-.15.05-.15.1m1 .2h-.25q-.1.05-.05.1 0 .05.1.05.15.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.15-.1h-.25m-1.35 2.15q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05h-.05q-.05-.05-.25-.05-.1 0-.2.05t0 .05q0 .05.05.15h.45q.15-.1.15-.15h.05q.1.05.25.05.1 0 .25-.05.05 0 .05-.05t-.2-.05m-.05.75q-.1.05-.1.1.05.05.15.1h.55q.2-.05.1-.1 0-.05-.15-.1h-.55m.85-.3q-.15.05-.05.1 0 .05.1.1h.35q.15-.05.2-.05.1-.05.1-.1-.05-.05-.15-.1-.15 0-.25.05h-.3m.5.25q-.15.05-.2.05-.1.05-.1.1.05 0 .15.05.15.05.25 0 .1 0 .25-.05l.05-.05q0-.05-.1-.1h-.3m1.4-2.35q-.05-.1-.2-.15-.25-.05-.55-.05-.25 0-.45.05-.15.05-.1.15.05.05.25.15.3.05.55.05.3 0 .4-.05.2-.1.1-.15m-.15 2.25q0 .05.1.1h.55q.2-.05.2-.1-.05-.05-.25-.05-.05-.05-.25-.05t-.3.05q-.1 0-.05.05m-.5 1.15q.15.05.25.05.2 0 .3-.05.1 0 .05-.05 0-.05-.1-.1h-.55q-.1.05-.1.1.05.05.15.05m-1.7-.1l.1-.05q0-.05-.2-.1-.1-.05-.25-.05-.1 0-.25.05-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05m9.6-5.25h-.25q-.1.05-.1.1.05 0 .05.05-.1 0-.25.05-.1.05-.1.1.05.1.25.15.25.05.55.05.2 0 .35-.05.25-.05.15-.15.2-.1.15-.15 0-.05-.2-.05-.15-.05-.3-.05-.05 0-.05-.05h-.25m.9.85q-.15 0-.35.05-.1.05-.05.1 0 .1.15.1.2.05.4.05.2-.05.35-.1.1 0 .1-.1-.05-.05-.25-.1-.1-.05-.35 0m-.6.95q-.05-.1-.3-.15-.25-.05-.5-.05-.3 0-.4.05-.2.05-.1.15.05.05.2.1.2.1.5.1.25 0 .45-.1.2-.05.15-.1"/><g display="none"><path fill="#317C99" d="M680.3 199.9h-3.35l2.2 54.4h11.7l-10.55-54.4"/><path fill="#FF5B80" d="M679.8 270.75q-.05 4.3 4.25 4.7h6.3q4.15-.25 3.75-4.3l-3.25-16.85h-11.7l.65 16.45"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.781;0.788;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.3 199.85h-3.35l2.2 51.85h11.7l-10.55-51.85"/><path fill="#FF5B80" d="M679.8 267.4q-.05 4.1 4.25 4.45h6.3q4.15-.2 3.75-4.1l-3.25-16.05h-11.7l.65 15.7"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.763;0.781;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.3 199.85h-3.35l2.2 60.25h11.7l-10.55-60.25"/><path fill="#FF5B80" d="M679.15 260.1l.65 18.2q-.05 4.75 4.25 5.2h6.3q4.15-.25 3.75-4.75l-3.25-18.65h-11.7"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.75;0.763;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.05 204.6h-3.35l2.2 59.85h11.7l-10.55-59.85"/><path fill="#FF5B80" d="M678.9 264.45l.65 18.1q-.05 4.75 4.25 5.2h6.3q4.15-.25 3.75-4.75l-3.25-18.55h-11.7"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.063;0.069;0.094;0.1;0.125;0.131;0.156;0.163;0.188;0.194;0.219;0.225;0.25;0.256;0.281;0.288;0.313;0.319;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.05 199.85h-3.35l2.2 63.3h11.7l-10.55-63.3"/><path fill="#FF5B80" d="M678.9 263.15l.65 19.15q-.05 5 4.25 5.45h6.3q4.15-.25 3.75-5l-3.25-19.6h-11.7"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.056;0.063;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.3 198.9l-3.35.65 2.2 63.1 11.65-2.4-10.5-61.35"/><path fill="#FF5B80" d="M679.15 262.65l.65 19.1q-.05 5 4.25 4.6l6.25-1.3q4.15-1.1 3.75-5.8l-3.25-19-11.65 2.4"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.038;0.056;0.069;0.088;0.1;0.119;0.131;0.15;0.163;0.181;0.194;0.213;0.225;0.244;0.256;0.275;0.288;0.306;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="#317C99" d="M680.3 199.85h-3.35l2.2 63.3h11.7l-10.55-63.3"/><path fill="#FF5B80" d="M679.15 263.15l.65 19.15q-.05 5 4.25 5.45h6.3q4.15-.25 3.75-5l-3.25-19.6h-11.7"/><path fill="#317C99" d="M657 199.85h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M654.7 263.15l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.038;0.088;0.094;0.119;0.125;0.15;0.156;0.181;0.188;0.213;0.219;0.244;0.25;0.275;0.281;0.306;0.313;0.319;0.75;0.788;1" values="inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M703.5 173.15l-.3-5.25q-.45-7.75-8.2-7.35l-56.25 3.25q-7.7.4-7.25 8.05l.3 5.55 71.7-4.25"/><path fill="#317C99" d="M697.95 212.3q7.75-.4 7.3-8.1l-1.75-31.05-71.7 4.25 1.75 30.85q.45 7.7 8.15 7.3l56.25-3.25"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M709.85 158.85l-7.7 3.15.2.3 7.65 1.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.813;0.819;1" values="none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="matrix(1 0 0 .979 625.5 148.7)"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.806;0.813;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 176.7l-.3-5.1q-.45-7.45-8.2-7.1l-56.25 3.15q-7.7.4-7.25 7.8l.3 5.35 71.7-4.1"/><path fill="#317C99" d="M697.95 214.45q7.75-.35 7.3-7.8l-1.75-29.95-71.7 4.1 1.75 29.75q.45 7.45 8.15 7.05l56.25-3.15"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M706.3 158.6l-3.65 7.35.35.05 6.75-4"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.794;0.806;1" values="none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="translate(625.5 145.45)"><animateTransform attributeName="transform" additive="replace" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.731;0.732;0.737;0.738;0.744;0.745;0.75;0.751;0.756;0.757;0.781;0.782;0.787;0.788;1" values="670.25,180.95;670.25,180.95;670.25,180.1;670.25,180.1;670.25,180.95;670.25,180.95;670.205,183.617;670.205,183.617;670.259,179.962;670.259,179.962;670.259,176.394;670.259,176.394;670.25,178.347;670.25,178.347;670.25,180.95;670.25,180.95" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.744;0.745;0.75;0.751;0.756;0.757;0.781;0.782;0.787;0.788;1" values="1,1;1,1;1.005,0.985;1.005,0.985;0.978,1.045;0.978,1.045;0.978,1.107;0.978,1.107;1,1.053;1,1.053;1,1;1,1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.744;0.745;0.756;0.757;1" values="-44.75,-35.5;-44.75,-35.5;-44.75,-35.45;-44.75,-35.45;-44.75,-35.5;-44.75,-35.5" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.4;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 172.3l-.3-5.25q-.45-7.75-8.2-7.35l-56.25 3.25q-7.7.4-7.25 8.05l.3 5.55 71.7-4.25"/><path fill="#317C99" d="M697.95 211.45q7.75-.4 7.3-8.1l-1.75-31.05-71.7 4.25 1.75 30.85q.45 7.7 8.15 7.3l56.25-3.25"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M709.75 157.3l-7.4 3.7.25.25 7.7.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.394;0.4;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 173.15l-.3-5.25q-.45-7.75-8.2-7.35l-56.25 3.25q-7.7.4-7.25 8.05l.3 5.55 71.7-4.25"/><path fill="#317C99" d="M697.95 212.3q7.75-.4 7.3-8.1l-1.75-31.05-71.7 4.25 1.75 30.85q.45 7.7 8.15 7.3l56.25-3.25"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M710.35 159.8l-8.05 1.85.2.4 7.35 2.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.388;0.394;1" values="none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="matrix(1.005 0 0 .985 625.25 148.7)"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.381;0.388;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M702.75 171.85l-.25-5.5q-.45-8.1-8.05-7.65l-55 3.4q-7.5.4-7.1 8.4l.3 5.8 70.1-4.45"/><path fill="#317C99" d="M697.35 212.8q7.55-.45 7.15-8.5l-1.75-32.45-70.1 4.45 1.7 32.25q.45 8.05 8 7.65l55-3.4"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M705.5 152.95l-3.9 7.4.35.1 6.8-3.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.375;0.381;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M702.75 167.75l-.25-5.8q-.45-8.6-8.05-8.15l-55 3.6q-7.5.45-7.1 8.9l.3 6.15 70.1-4.7"/><path fill="#317C99" d="M697.35 211.1q7.55-.45 7.15-8.95l-1.75-34.4-70.1 4.7 1.7 34.15q.45 8.55 8 8.1l55-3.6"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M707.55 149.25l-5.85 6.35.35.15 7.45-1.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.363;0.375;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M702.75 167.75l-.25-5.8q-.45-8.6-8.05-8.15l-55 3.6q-7.5.45-7.1 8.9l.3 6.15 70.1-4.7"/><path fill="#317C99" d="M697.35 211.1q7.55-.45 7.15-8.95l-1.75-34.4-70.1 4.7 1.7 34.15q.45 8.55 8 8.1l55-3.6"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M708.9 150.9l-7.15 4.75.25.25 7.6.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.356;0.363;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M702.75 167.75l-.25-5.8q-.45-8.6-8.05-8.15l-55 3.6q-7.5.45-7.1 8.9l.3 6.15 70.1-4.7"/><path fill="#317C99" d="M697.35 211.1q7.55-.45 7.15-8.95l-1.75-34.4-70.1 4.7 1.7 34.15q.45 8.55 8 8.1l55-3.6"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M710.35 153.85l-8.55 1.45.15.35 6.9 3.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.35;0.356;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 170.15l-.3-5.55q-.45-8.15-8.2-7.75l-56.25 3.45q-7.7.4-7.25 8.45l.3 5.85 71.7-4.45"/><path fill="#317C99" d="M697.95 211.35q7.75-.4 7.3-8.5l-1.75-32.7-71.7 4.45 1.75 32.5q.45 8.1 8.15 7.7l56.25-3.45"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M709.95 154.35l-7.55 3.9.25.3 7.75.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.344;0.35;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 176.7l-.3-5.1q-.45-7.45-8.2-7.1l-56.25 3.15q-7.7.4-7.25 7.8l.3 5.35 71.7-4.1"/><path fill="#317C99" d="M697.95 214.45q7.75-.35 7.3-7.8l-1.75-29.95-71.7 4.1 1.75 29.75q.45 7.45 8.15 7.05l56.25-3.15"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M706 158.6l-3.5 7.35h.35l6.65-4.05"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.325;0.338;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M703.5 175.8l-.3-5.15q-.45-7.55-8.2-7.15l-56.25 3.15q-7.7.4-7.25 7.9l.3 5.4 71.7-4.15"/><path fill="#317C99" d="M697.95 214.15q7.75-.4 7.3-7.95l-1.75-30.4-71.7 4.15 1.75 30.2q.45 7.55 8.15 7.15l56.25-3.15"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M706.9 158.2l-4.65 6.8.4.05 7.15-3"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.325;1" values="none;inline;none;none"/></g><g><use xlink:href="#a" transform="translate(625.5 145.45)"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.338;0.344;0.819;1" values="inline;none;inline;none;inline;inline"/></g><g transform="matrix(1 0 0 .329 677.65 198.55)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="6.667s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.32;0.325;0.326;0.337;0.338;0.344;0.345;0.35;0.351;0.375;0.376;0.381;0.382;0.387;0.388;0.394;0.395;0.4;0.401;0.456;0.457;0.469;0.47;0.475;0.476;0.485;0.486;0.487;1" values="678.25,199.75;678.25,199.75;678.25,201.841;678.25,201.841;678.25,202.356;678.25,202.356;678.25,199.75;678.25,199.75;678.25,198.147;678.25,198.147;678.087,197.196;678.087,197.196;678.087,199.655;678.087,199.655;678.253,202.148;678.253,202.148;678.25,199.75;678.25,199.75;678.25,198.9;678.25,198.9;678.25,199.75;678.25,199.75;674.35,199.75;674.35,199.75;682.25,199.75;682.25,199.75;684.85,199.4;684.85,199.4;682.25,199.75;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.487;0.494;0.495;0.506;0.507;0.512;0.513;0.525;0.526;0.531;0.532;0.544;0.545;0.55;0.551;0.556;0.557;0.562;0.5630000000000001;0.569;0.57;0.575;0.576;0.581;0.582;0.731;0.732;0.735;0.736;0.737;1" values="0;682.25,199.75;682.25,199.75;674.35,199.75;674.35,199.75;682.25,199.75;682.25,199.75;684.85,199.4;684.85,199.4;682.25,199.75;682.25,199.75;674.8,199.75;674.8,199.75;682.25,199.75;682.25,199.75;683.8,199.4;683.8,199.4;682.25,199.75;682.25,199.75;676,199.75;676,199.75;682.25,199.75;682.25,199.75;683.2,199.4;683.2,199.4;678.25,199.75;678.25,199.75;678.25,198.9;678.25,198.9;678.25,199.75;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.737;0.744;0.745;0.75;0.751;0.756;0.757;0.781;0.782;0.787;0.788;0.794;0.795;0.806;0.807;0.812;0.8130000000000001;1" values="0;678.25,199.75;678.25,199.75;678.253,202.148;678.253,202.148;678.087,199.655;678.087,199.655;678.087,197.196;678.087,197.196;678.25,198.147;678.25,198.147;678.25,199.75;678.25,199.75;678.25,202.356;678.25,202.356;678.25,201.841;678.25,201.841;678.25,199.75;678.25,199.75" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.32;0.325;0.326;0.337;0.338;0.344;0.345;0.35;0.351;0.375;0.376;0.381;0.382;0.387;0.388;0.486;0.487;1" values="1,0.329;1,0.329;1,0.322;1,0.322;1,0.317;1,0.317;1,0.329;1,0.329;1,0.346;1,0.346;0.978,0.364;0.978,0.364;0.978,0.344;0.978,0.344;1.005,0.324;1.005,0.324;1,0.329;1,0.329;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.487;0.736;0.737;1" values="1;1,0.329;1,0.329;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.737;0.744;0.745;0.75;0.751;0.756;0.757;0.781;0.782;0.787;0.788;0.794;0.795;0.806;0.807;0.812;0.8130000000000001;1" values="1;1,0.329;1,0.329;1.005,0.324;1.005,0.324;0.978,0.344;0.978,0.344;0.978,0.364;0.978,0.364;1,0.346;1,0.346;1,0.329;1,0.329;1,0.317;1,0.317;1,0.322;1,0.322;1,0.329;1,0.329" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.32;0.325;0.326;0.337;0.338;0.344;0.345;0.35;0.351;0.375;0.376;0.381;0.382;0.387;0.388;0.486;0.487;1" values="-0.6,-3.65;-0.6,-3.65;-0.6,-3.7;-0.6,-3.7;-0.6,-3.8;-0.6,-3.8;-0.6,-3.65;-0.6,-3.65;-0.6,-3.6;-0.6,-3.6;-0.6,-3.7;-0.6,-3.7;-0.6,-3.65;-0.6,-3.65;-0.6,-3.7;-0.6,-3.7;-0.6,-3.65;-0.6,-3.65;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.487;0.736;0.737;1" values="0;-0.6,-3.65;-0.6,-3.65;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.737;0.744;0.745;0.75;0.751;0.756;0.757;0.781;0.782;0.787;0.788;0.794;0.795;0.806;0.807;0.812;0.8130000000000001;1" values="0;-0.6,-3.65;-0.6,-3.65;-0.6,-3.7;-0.6,-3.7;-0.6,-3.65;-0.6,-3.65;-0.6,-3.7;-0.6,-3.7;-0.6,-3.6;-0.6,-3.6;-0.6,-3.65;-0.6,-3.65;-0.6,-3.8;-0.6,-3.8;-0.6,-3.7;-0.6,-3.7;-0.6,-3.65;-0.6,-3.65" calcMode="discrete"/><path fill="none" stroke="#1A3F4E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" d="M1.5 0l.1 7.5"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.4 180.15l43.45-2.45"/><path d="M672.75 179.25l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.1 181.1l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.45 179.3l.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.55 180.1l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.813;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 182.85l43.45-2.45"/><path d="M672.65 181.95l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.25 186.9l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M678.75 186.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 182.8l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.806;0.813;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 183.75l43.45-2.45"/><path d="M672.65 182.85l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668 184.7l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.75 187.1q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 183.7l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.794;0.806;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M649.85 180l44.8-2.45"/><path d="M672.75 179.1l-14.5 1.35.45 4.2q.25 2.85 2.55 4.65 2.35 1.9 5.3 1.6h.05q2.95-.25 4.9-2.5 1.85-2.25 1.65-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.25 184.05l-3.45 3.75m2.15-6.85l-4.75 5.1"/><path d="M681.65 188q2.3 1.9 5.3 1.55h.05q2.95-.25 4.9-2.5 1.9-2.25 1.6-5.1l-.45-4.2-14.4 1.4.4 4.2q.25 2.85 2.6 4.65"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688 179.95l-4.8 5.15m6.1-2.05l-3.4 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.788;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.05 177l44.6-2.45"/><path d="M672.8 176.1l-14.4 1.35.4 4.2q.25 2.85 2.6 4.65 2.3 1.9 5.25 1.6h.05q2.95-.25 4.9-2.5 1.85-2.25 1.65-5.1l-.45-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.05 177.95l-4.7 5.1m6-2l-3.45 3.75"/><path d="M681.7 185q2.25 1.9 5.25 1.55h.05q2.95-.25 4.85-2.5 1.9-2.25 1.6-5.1l-.4-4.2-14.35 1.4.4 4.2q.25 2.85 2.6 4.65"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688 176.95l-4.75 5.15m6.05-2.05l-3.4 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.781;0.788;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.85 175.15l42.05-2.45"/><path d="M672.35 174.25l-13.6 1.35.4 4.2q.25 2.85 2.4 4.65 2.2 1.9 5 1.6h.05q2.75-.25 4.6-2.5 1.75-2.25 1.55-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.05 179.2l-3.25 3.75m2.05-6.85l-4.45 5.1"/><path d="M678.25 178.5q.25 2.85 2.45 4.65 2.15 1.9 4.95 1.55h.05q2.8-.25 4.6-2.5 1.8-2.25 1.5-5.1l-.4-4.2-13.55 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.9 178.2l-3.2 3.8m1.95-6.9l-4.5 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.756;0.781;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 178.95l43.45-2.45"/><path d="M672.65 178.05l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668 179.9l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.75 182.3q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 178.9l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.75;0.756;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 183.15l43.45-2.45"/><path d="M672.65 182.25l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.25 187.2l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M678.75 186.5q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 183.1l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.744;0.75;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 179.1l43.45-2.45"/><path d="M672.65 178.2l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.25 183.15l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M678.75 182.45q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 179.05l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.731;0.738;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.45 180l43.45-2.45"/><path d="M672.65 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668 180.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.75 183.35q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.45 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.581;0.731;0.738;0.744;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M654.2 180l43.45-2.45"/><path d="M677.3 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M673.9 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M683 179.15l.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M693.35 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.575;0.581;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.6 180l43.45-2.45"/><path d="M672.2 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M667.55 180.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.3 183.35q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.569;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.6 180l43.45-2.45"/><path d="M662 190.9h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M664.6 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M688.1 181.95l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M684.05 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.563;0.569;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.6 180l43.45-2.45"/><path d="M672.95 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.3 180.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M679.05 183.35q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.75 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.556;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M654.95 180l43.45-2.45"/><path d="M677.3 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M673.9 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M683 179.15l.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M693.35 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.55;0.556;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M649.4 180l41.45-2.45"/><path d="M665.75 188.4q1.8-2.25 1.6-5.1l-.4-4.2-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M663.55 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M685.5 187.05q1.85-2.25 1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M683 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.531;0.544;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M649.4 180l41.45-2.45"/><path d="M661 190.9q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M663.55 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M680.75 189.55q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M683 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.494;0.506;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M656.45 179.7l43.45-2.45"/><path d="M678.8 178.8l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M674.15 180.65l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M684.5 178.85l.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M694.85 182.75l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.475;0.488;0.513;0.525;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 180l43.45-2.45"/><path d="M673.25 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 180.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.95 179.15l.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.469;0.475;0.488;0.494;0.506;0.513;0.525;0.531;0.544;0.55;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M649.4 180l41.45-2.45"/><path d="M660.95 190.9h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M663.55 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M680.7 189.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M683 183.05l-3.3 3.8m2.05-6.9l-4.65 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.456;0.469;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 180l43.45-2.45"/><path d="M673.25 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 180.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M687 189.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.4;0.456;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 178.95l43.45-2.45"/><path d="M673.25 178.05l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.85 183l-3.35 3.75m2.1-6.85L664 185"/><path d="M687 188.5h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 178.9l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.394;0.4;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 180.15l43.45-2.45"/><path d="M673.25 179.25l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 181.1l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M687 189.7h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 180.1l-4.65 5.15m5.9-2.05L686 187"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.388;0.394;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 183.15l43.45-2.45"/><path d="M673.25 182.25l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.85 187.2l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M687 192.7h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 183.1l-4.65 5.15m5.9-2.05L686 190"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.381;0.388;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 178.95l43.45-2.45"/><path d="M673.25 178.05l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 179.9L664 185m5.85-2l-3.35 3.75"/><path d="M687 188.5h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 178.9l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.375;0.381;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 174.6l43.45-2.45"/><path d="M673.25 173.7l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.85 178.65l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M687 184.15h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 174.55l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.35;0.375;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 177l43.45-2.45"/><path d="M673.25 176.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 177.95l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M687 186.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 176.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.344;0.35;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 180l43.45-2.45"/><path d="M673.25 179.1l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.85 184.05l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M687 189.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 179.95l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.338;0.344;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 183.75l43.45-2.45"/><path d="M673.25 182.85l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.6 184.7l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M687 193.3h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 183.7l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.325;0.338;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.9 182.85l43.45-2.45"/><path d="M673.25 181.95l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M669.85 186.9l-3.35 3.75m2.1-6.85l-4.6 5.1"/><path d="M687 192.4h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M688.05 182.8l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.325;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M650.4 180.15l43.45-2.45"/><path d="M672.75 179.25l-14.05 1.35.4 4.2q.25 2.85 2.5 4.65 2.25 1.9 5.15 1.6h.05q2.85-.25 4.75-2.5 1.8-2.25 1.6-5.1l-.4-4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M668.1 181.1l-4.6 5.1m5.85-2l-3.35 3.75"/><path d="M678.85 183.5q.25 2.85 2.55 4.65 2.2 1.9 5.1 1.55h.05q2.9-.25 4.75-2.5t1.55-5.1l-.4-4.2-14 1.4.4 4.2"/><path fill="none" stroke="#6F6F6F" stroke-linecap="round" stroke-linejoin="round" d="M687.55 180.1l-4.65 5.15m5.9-2.05l-3.3 3.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 203.65l7.55 24.55q-25.55-16.55-58.35-4.55"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M637.75 226.95q3.7-2.25 8.05-3.3-2.3 3.9-3 7.75m3-7.75q-4.1 2.9-6.15 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.813;0.819;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 205.75l7.55 24.05q-25.55-16.2-58.35-4.5m-7.6 4.45q3.35-2.75 7.55-4.35-1.75 4.2-1.95 8.05m1.95-8.05q-3.7 3.4-5.2 7.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.806;0.813;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 206.25l7.55 23.8Q678.5 214 645.7 225.6m-7.6 4.55q3.35-2.75 7.55-4.35-1.75 4.2-1.95 8.05m1.95-8.05q-3.7 3.4-5.2 7.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.8;0.806;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 207.55l7.55 27.3q-25.55-18.4-58.35-5.1m-7.65 4.15q3.45-2.65 7.65-4.15-1.9 4.15-2.2 8.05m2.2-8.05q-3.8 3.35-5.4 7.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.794;0.8;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 205.45l7.55 24.55q-25.55-16.55-58.35-4.55"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M637.75 228.75q3.7-2.25 8.05-3.3-2.3 3.9-3 7.75m3-7.75q-4.1 2.9-6.15 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.788;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M698.95 198.7l-4.35 19.1q-29.3-2.45-38.1-27.8"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M662.4 183.7q-2.35 3.7-5.9 6.5.45-4.5-.6-8.3m.6 8.3q2.5-4.35 2.6-8.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.781;0.788;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M683.6 163.75q-.4 7.4 1.6 14.75 4.75 17.85 18.5 20.9m-20.1-35.65q.45-7.3 3.05-11.7m9 1.1q-4.35 0-8.65-1.45 4.05-2.05 6.65-5m-6.65 5q5-.25 8.7-2.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.775;0.781;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M704.9 197.05q-18.8-13.05-6.15-39.95m8.7.65q-4.35.35-8.7-.75 3.85-2.35 6.2-5.5m-6.2 5.5q4.95-.65 8.45-3.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.756;0.775;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M703 195.95q4.85-18.95 22.85-33.55m-8.05-3.5q3.7 2.3 8.05 3.3-4.1-2.9-6.05-6.7m6.05 6.7q-2.35-3.9-3-7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.75;0.756;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M739.1 183q-28.95-5.35-35.85 17m43.4-21.95q-3.95 1.85-7.15 5 4.65-1.9 8.9-1.5m-8.9 1.5q4.5.15 8.1 1.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.744;0.75;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M703.35 195.8q24.95-11.9 38.3 11.9m6.8-5.35q-3.75 2.2-6.6 5.65 4.45-2.35 8.7-2.4m-8.7 2.4q4.5-.3 8.2.85"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.738;0.744;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 195.65q18.7-.8 26.75 23.8m2.35-8.3q-1.8 3.95-2.25 8.4 2.35-4.45 5.85-6.9m-5.85 6.9q3.55-2.75 7.3-3.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.731;0.738;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55q16.8 13.75 22.8 30.9m.4-8.6l-.1 8.6q1.7-4.25 3.7-7.95m-3.7 7.95q3.85-2.9 6.2-5.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.725;0.731;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55l22.8 30.9m1.7-9.25q-.3 5.6-1.25 9.5 3.15-3.5 4.5-3.2m-4.5 3.2q3.15-.95 3.65.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.581;0.725;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M705.1 196.55l20.6 30.9m4.75-8.25q-2.35 5.1-4.7 8.4 4.2-2.1 5.35-1.35m-5.35 1.35q3.25.25 3.3 1.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.575;0.581;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M699.4 196.55l26.15 30.9m-2.25-9.1q1.75 5.35 2.25 9.35 1.7-4.45 3.05-4.6m-3.05 4.6q2.6-2.05 3.5-1.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.494;0.506;0.531;0.544;0.563;0.569;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M705.1 196.55l20.6 30.9m4.7-8.25q-2.35 5.1-4.7 8.4 4.2-2.1 5.35-1.35m-5.35 1.35q3.25.25 3.3 1.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.475;0.488;0.513;0.525;0.55;0.556;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55l22.8 30.9m1.3-9.45q-.3 5.6-1.25 9.5 3.15-3.5 4.5-3.2m-4.5 3.2q3.15-.95 3.65.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.469;0.475;0.488;0.494;0.506;0.513;0.525;0.531;0.544;0.55;0.556;0.563;0.569;0.575;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M699.4 196.55l26.15 30.9m1.4-9.45q-.3 5.6-1.25 9.5 3.15-3.5 4.5-3.2m-4.5 3.2q3.15-.95 3.65.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.456;0.469;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55l22.8 30.9m-.2-9.05q.95 4.65.2 8.75m5.05-7.1q-3.45 1.15-4.8 7.2 4.8-5.25 7.45-3"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.45;0.456;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55l22.8 30.9m-1.75-8.75q1.9 4.35 2 8.55 2.1-4.2 2-8.85m-2 8.85q4.2-3.2 5.25-6.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.406;0.45;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 196.55Q715.1 209 724.3 225.6m.05-8.1q-.35 4.35.65 8.8.75-5.1 3.35-8.45M725 226.3q2.4-3.85 5.55-6"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.4;0.406;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.85 195.65q10.25 18.45 22.85 34.4m.85.75v-.15m.15-.05q-.1.1-.15.2m.15-.2q4.1-1.85 4.9-7m-4.95 7h.05m-.05 0q2.45-4.1 1.75-8.25m-1.85 8.3q.05-.05.1-.05m-2.1-8.35q2.25 5.15 2 8.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.394;0.4;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.6 196.9q7.95 17 26.9 27.45m.15-.35q-1.1-5 .1-9.1m-.1 9.1q.9-4.45 3-7.65m-3 7.65q-2.55-3.8-3.7-7.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.388;0.394;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M703.25 199.95q30.95 13.1 42.65-6.9m-8.9-1.3q4.15 1.25 8.65 1.2-4.75-1.8-7.55-5m7.55 5q-3.25-3.15-4.75-6.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.381;0.388;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M704.25 201.85l28.7 2.1-15.45-12.7"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M709 192.55q4.3.05 8.6-1.25-5.05-.4-8.65-2.7m8.65 2.7q-4-2.15-6.45-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.375;0.381;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M704.25 199.25l28.7 2.25L717.5 188"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M709 189.3q4.3.05 8.6-1.25-5.05-.4-8.65-2.7m8.65 2.7q-4-2.15-6.45-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.356;0.375;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M704 198.1l27.05 7.75-8.25-17.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M714.2 189.5q4.3.05 8.6-1.25-5.05-.4-8.65-2.7m8.65 2.7q-4-2.15-6.45-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.35;0.356;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M704.3 197.2l25.1 13.7-2.55-18.9m-8.1-3.45q3.65 2.3 8 3.35-4.1-2.9-6.05-6.75m6.05 6.75q-2.3-3.85-2.9-7.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.344;0.35;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 202.85l7.55 24.55q-25.55-16.55-58.35-4.55m-7.5 4.6q3.35-2.75 7.5-4.4-1.75 4.15-1.85 8.05m1.85-8.05q-3.65 3.45-5.15 7.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.338;0.344;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 205.4l7.55 23.7q-25.55-16-58.35-4.45m-7.95 3.5q3.7-2.25 8.05-3.3-2.3 3.9-3 7.75m3-7.75q-4.1 2.9-6.15 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.325;0.338;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 204.95l7.55 24.05q-25.55-16.2-58.35-4.5m-7.95 3.4q3.7-2.25 8.05-3.3-2.3 3.9-3 7.75m3-7.75q-4.1 2.9-6.15 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.325;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.5 202.85l7.55 24.55q-25.55-16.55-58.35-4.55"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M637.75 226.15q3.7-2.25 8.05-3.3-2.3 3.9-3 7.75m3-7.75q-4.1 2.9-6.15 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.819;1" values="inline;none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 205.75l-7.5 24.55q28.55-18.5 60.45-8.5"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.75 224.85q-3.7-2.25-8.05-3.3 4.1 2.9 6.15 6.65m-6.15-6.65q2.3 3.9 3 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.813;0.819;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 207.75l-7.5 24.05q28.55-18.1 60.45-8.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.75 226.65q-3.7-2.25-8.05-3.3 4.1 2.9 6.15 6.65m-6.15-6.65q2.3 3.9 3 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.806;0.813;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 208.25l-7.5 23.85q28.55-18 60.45-8.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.75 226.95q-3.7-2.25-8.05-3.3 4.1 2.9 6.15 6.65m-6.15-6.65q2.3 3.9 3 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.8;0.806;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 209.85l-7.5 27.3q28.55-20.6 60.45-9.4"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.3 230.75q-3.7-2.25-8.05-3.3 4.1 2.9 6.15 6.65m-6.15-6.65q2.3 3.9 3 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.794;0.8;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M646.25 201.9l-10.4 23.75q26.1-18.9 54.6-6.45m.75-8.6q-1 4.2-.7 8.65 1.5-4.8 4.45-7.9m-4.45 7.9q3-3.35 6.45-5.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.788;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.45 192.9l-23.65-6.35q7.3 13 8.7 25.9m-6.3-5.9q3.45 2.45 6.25 6-4.55-.5-8.55.2m8.55-.2q-4.55-2.55-8.65-3.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.781;0.788;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.2 194.1l-20.1-12.3q3.2 14.5.9 27.2m-4.8-7.3q2.75 3.25 4.55 7.4-4.3-1.65-8.3-1.95m8.3 1.95q-3.75-3.6-7.6-5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.775;0.781;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M639.5 194.85l-15.55-18.4q-3.45 13.65-12.15 23.5m-1.8-8.6q1.5 4 1.8 8.5-3.5-2.95-7.15-4.55m7.15 4.55q-2.3-4.6-5.45-7.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.756;0.775;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M642.45 197.45l-21.55.05q10.2 10.15 14.5 21.75m-.1.1q-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45m8.45-3.45q-4.4-.85-8.65-.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.75;0.756;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.55 198.8l-21.55.05q10.2 10.15 14.5 21.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M634.55 220.6q-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45m8.45-3.45q-4.4-.85-8.65-.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.744;0.75;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M644.25 192.25l-21.4-2.45q8.95 11.3 11.9 23.3m-8.85-.1q4.25-.5 8.65.35-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.731;0.738;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M644.25 192.85l-21.4-2.45q8.95 11.3 11.9 23.3m-8.85-.2q4.25-.5 8.65.35-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.4;0.731;0.738;0.744;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M644.4 192.2l-21.65-2.65q9 11.3 11.95 23.25m-8.8-.05q4.25-.5 8.65.35-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.394;0.4;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M643.45 193l-20.6-2.6q8.95 11.3 11.9 23.3m-8.85-.2q4.25-.5 8.65.35-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.388;0.394;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M622.75 198.45q8.85 8.35 11.7 19.05m-11.7-19.05l20.05-2.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M634.55 217.35q-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45m8.45-3.45q-4.4-.85-8.65-.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.381;0.388;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M643.5 193.35L623.45 196q8.85 8.35 11.7 19.05m-8.75-.3q4.25-.5 8.65.35-3.7 2.65-6.1 5.8m6.1-5.8q-5 1.05-8.45 3.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.375;0.381;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M642.45 195.1l-19.15-18.05q-.45 14.05-5.85 25.25m-.45.4q-4.1-2-8-2.6m8 2.6q-3.25-3.9-7.1-5.8m7.1 5.8q-1.35-4.3-3.85-7.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.356;0.375;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M642.95 194.3l-21.85-15.5q3.2 14.5.9 27.2m-6.2-5.9q3.5 2.5 6.2 6.15-4.55-.6-8.4.15m8.4-.15q-4.35-2.65-8.6-3.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.35;0.356;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M644.2 190.65l-26.4-7.1q7.3 13 8.7 25.9m-6.2-5.2q3.5 2.5 6.2 6.15-4.55-.6-8.4.15m8.4-.15q-4.35-2.65-8.6-3.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.344;0.35;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M647.45 199.35L626.55 216q17 1.95 30.95 8.55m7-6.65q-3.7 2.25-6.5 6.45 3.8-2.4 7.7-3.3m-7.7 3.3q.9-4.4 3.05-8.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.338;0.344;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 207.4l-7.5 23.7q28.55-17.9 60.45-8.15"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.6 226.45q-3.6-2.4-7.9-3.65 3.95 3.1 5.9 6.95m-5.9-6.95q2.1 4 2.7 7.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.325;0.338;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 206.95l-7.5 24.05q28.55-18.1 60.45-8.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.6 226.25q-3.6-2.4-7.9-3.65 3.95 3.1 5.9 6.95m-5.9-6.95q2.1 4 2.7 7.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.325;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.65 204.95l-7.5 24.55Q672.7 211 704.6 221"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.75 224.05q-3.7-2.25-8.05-3.3 4.1 2.9 6.15 6.65m-6.15-6.65q2.3 3.9 3 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.667s" keyTimes="0;0.319;0.819;1" values="inline;none;inline;inline"/></g><path fill="#999" d="M739.4 233.55q0-2-1.4-3.4t-3.4-1.4h-.05q-2 0-3.4 1.4t-1.4 3.4v62.5q0 3 3 3h3.65q3 0 3-3v-62.5"/><path fill="none" stroke="#FF294B" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M718.8 245.55q1.25-.8 2.5-1.7m-2.5 1.7q-43.7 28.45-86.75-1.95m98.25-5.45h8.65"/><path fill="#999" d="M622.5 230.15q-1.4-1.4-3.4-1.4h-.05q-2 0-3.4 1.4t-1.4 3.4v62.5q0 3 3 3h3.65q3 0 3-3v-62.5q0-2-1.4-3.4"/><path fill="none" stroke="#FF294B" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.8 238.15h8.65"/><path fill="#FF294B" d="M723.9 241.25q.6.65 1.45.65.9 0 1.5-.65.6-.55.6-1.45 0-.85-.6-1.45t-1.5-.6q-.85 0-1.45.6t-.6 1.45q0 .9.6 1.45m-97.85-1.45q0 .9.6 1.45.6.65 1.45.65.9 0 1.5-.65.6-.55.6-1.45 0-.85-.6-1.45t-1.5-.6q-.85 0-1.45.6t-.6 1.45"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="basic" width="1326" height="346" xmlns="http://www.w3.org/2000/svg"><defs><symbol id="a" overflow="visible"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4.4 9.6l5.1-2.35L4.3 4.9m5.2 2.35l-1.7-5.2"/></symbol><symbol id="b" overflow="visible"><path fill="#1A3F4E" d="M9.4-.25q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1M-9.35 2.9q0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M-12.416-.531l6.463-3.746M12.45-2.599l-6.75-3.2"/></symbol><symbol id="d" overflow="visible"><path fill="#1A3F4E" d="M7.35 4.8q1.25 0 2.05-.6.9-.6.9-1.45t-.9-1.5Q8.6.7 7.35.7q-1.2 0-2.1.55-.8.65-.8 1.5t.8 1.45q.9.6 2.1.6M-6.4 1.55q-1.2 0-2.1.6-.85.65-.85 1.55t.85 1.5q.9.65 2.1.65 1.25 0 2.05-.65.9-.6.9-1.5t-.9-1.55q-.8-.6-2.05-.6"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M-12.416-.531l9.053-.951M12.45-2.599l-8.95-.15"/></symbol><symbol id="c" overflow="visible"><path fill="#1A3F4E" d="M5.2 4.25q.9.3 2.1.3 1.25 0 2.05-.3.9-.3.9-.7 0-.45-.9-.75-.8-.3-2.05-.3-1.2 0-2.1.3-.8.3-.8.75 0 .4.8.7M-4.95 2.8q-.8-.3-2.05-.3-1.2 0-2.1.3-.85.35-.85.85 0 .45.85.8.9.35 2.1.35 1.25 0 2.05-.35.9-.35.9-.8 0-.5-.9-.85"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M-12.476-.602l9.101.158m15.879-2.495L3.749-1.074"/></symbol></defs><path fill="#CCC" d="M658.25 284.15h.3q.15-.05.15-.15-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05-.049 0-.05.05v-.05q-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45v-.05q.002.05.1.05 0 .1.15.15h.45m.3.3v.1q0 .1.1.1.1.05.3.05.2 0 .25-.05.05 0 .05-.1 0-.05-.2-.1h-.5m.65-.2q0 .05.05.05.1.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05 0 0 .05m1.75.3q-.15-.05-.25-.05t-.25.05q-.05 0-.05.1 0 .05.2.1h.45q.05-.05.05-.1 0-.1-.15-.1m.3-.35q.05.05.3.15.25.05.5.05.3 0 .45-.05.2-.1.15-.15 0-.1-.3-.15-.2-.05-.5-.05-.25 0-.5.05-.1.05-.1.15m1.8-1q-.2 0-.35.05-.15.05-.15.1.1.05.25.1.25.05.45.05t.3-.05q.15-.05.1-.1 0-.05-.25-.1-.1-.05-.35-.05m0 .95q-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.2.05.1.05.15.1h.55q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05 0-.05-.1-.05-.2-.05-.3-.05m-.05.4h-.25q-.2 0-.3.1-.1.05-.1.1.05 0 .15.05.15.05.3.05t.25-.1l.05-.05q0-.05-.1-.15m2.3-1.6h-.25q-.2.1-.25.1-.1.05-.1.1.05.05.15.05.05.05.25 0 .1 0 .25-.05.05 0 0-.05 0-.05-.05-.15m-1.45 1.55v.05q0 .1.1.15h.5q.05-.05.05-.15 0-.05-.2-.05-.05-.05-.25-.05-.1 0-.2.05m1.6-.85q-.05 0 0 .05 0 .05.05.05.15.1.25.1.2 0 .25-.1.1 0 .1-.05-.05-.05-.15-.05-.05-.05-.25-.05-.1 0-.25.05m.2.9h-.05q-.15-.05-.25-.05-.15 0-.25.05l-.1.1q.05.05.15.1h.05q0 .05.2.05.2.05.35.05.2-.05.3-.1.15 0 .15-.05-.1-.05-.25-.15-.15-.05-.3 0m-.15-.55q0 .05.1.1.15.05.3.05t.15-.05q.15-.05.15-.1l-.2-.05q-.05-.05-.25-.05-.1 0-.25.05v.05m1.25-.35q.05.1.2.2.3.05.55.05.3 0 .45-.05.2-.1.15-.2 0-.05-.3-.1-.15-.1-.45-.1-.25 0-.5.1-.1.05-.1.1m-.4.85q-.05 0-.05.05.05.1.15.15h.35q0 .05.1.05.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.3l.05-.05q0-.05-.2-.15h-.3q0-.05-.1-.05-.1-.05-.3-.05-.1 0-.2.05m-8.6.8h-.1q-.15.05-.25.05-.15.1-.1.15h-.4q-.1.05-.05.1 0 .05.1.1h.6q-.1.05-.25.05-.15.05-.1.15.05.1.25.15.2 0 .35.05h-.1l-.15.05h-.15q-.15-.05-.25-.05-.15 0-.25.05h-.1q-.15-.05-.3-.05h-.1q.1-.05 0-.05 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.15.1-.15.2.05.05.3.05.25.15.55.15.1 0 .2-.05v.05q0 .05.2.05.1.05.2.05 0 .05.2.15.25.05.5.05.3 0 .5-.05.05-.05.1-.05h.15q.1 0 .15-.1.05 0 .05-.05l-.1-.1h.2q.1-.1.05-.15l-.15-.05q.15 0 .25-.05.2-.05.15-.15-.1-.1-.25-.15-.25-.05-.55-.05-.048 0-.1.05.05-.052.05-.1h-.05l.05-.05q.1 0 .25-.05l.05.05q.05 0 .15.05.15.05.3.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.15l-.1-.05q-.1-.05-.15-.05-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05v.05m-1.7 1.85l-.05.05h-.2q-.15-.05-.35 0h-.1q.15-.05.15-.2-.05-.05-.15-.1.1-.1.1-.15-.05-.1-.3-.1.1-.05.1-.1-.05-.05-.15-.1-.15-.05-.25-.05 0-.05-.2-.1h-.6q-.1.05-.1.1.05.05.2.1h.15l.15.1q-.15 0-.2.05h-.05q-.15.05-.05.15v.05q-.002-.05-.1-.05h-.65q-.05.05 0 .1 0 .049.05.05-.151 0-.3.05v.1q0 .05.15.1h.4q0 .05.05.05.2.05.3.05h.25q.25 0 .35-.05h.3q-.1.1-.1.15.05.1.3.15.192.048.475.05-.178.003-.225.05-.15.05-.15.1-.1 0-.15.05-.2.1-.15.15 0 .05.25.1v.05h-.25q0-.05-.1-.05-.2-.05-.4-.05t-.4.05q-.05.05-.05.1.05.05.2.1.25.05.4.05h.45q.1.05.3.05.15 0 .3-.05.1-.05.1-.1-.05-.05-.25-.1h.1q.15 0 .35-.05.1-.1.1-.15l-.1-.1h.1q.15-.05.05-.1 0-.05-.1-.1h-.1q0-.05.05-.05.05-.05.1-.05h.15q.05 0 .05.05h.25q.15 0 .2-.05.15 0 .15-.1 0-.05-.25-.05.1-.05.1-.1-.05-.05-.15-.1h-.5m1.6-.4h-.1q-.1.05-.05.1h.05q-.1.05-.15.05-.1 0-.1.05-.05.05-.05.15.05.05.25.1.3.1.6.1h.15q.15.05.4 0 .3 0 .5-.1.1-.05.1-.1-.05-.15-.3-.2-.2-.05-.35-.05v-.05q-.05-.1-.25-.1h-.4q-.2 0-.3.05m.3.6q-.3 0-.45.05-.2.05-.1.15 0 .05.1.1h-.2q-.3 0-.45.05-.15.05-.15.2.1.05.3.1.2.1.5.1h.15l.1.05q0 .1.25.15.15.05.35.05v.1q-.05.05-.05.1t.15.15h.1q.15.05.35.05.15 0 .35-.15.2-.05.1-.1v-.05h-.1l.05-.05q.05 0 .15-.05h.05q.1.05.35.05.25 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.1-.05-.2-.05v-.1q.2 0 .3-.05h.1q0-.05.05-.05h.25q.15 0 .3-.1.05 0 .05-.05t-.2-.1q-.1-.05-.25-.05h-.05q-.15 0-.35.05h-.05q-.2-.05-.45-.05-.3 0-.45.05-.15.05-.15.1.05.15.3.2-.1.05-.1.1.05 0 .15.05h.1l-.1.05q-.1 0-.05.05h-.1q-.05-.05-.15-.05v-.05q-.05-.05-.2-.1-.25-.05-.55-.05h-.2q-.049 0-.05.05v-.05q.05 0 0-.05 0-.148-.1-.15h.35q0 .05.15.15h.25q.15-.1.25-.1.05-.05.05-.1l-.15-.05q-.15-.05-.25 0 .15-.1.1-.15-.05-.1-.3-.1-.25-.05-.45-.05m-3.75-2.05q0-.05-.2-.1-.1-.05-.25-.05-.1 0-.2.05t-.1.1l.15.05q.15.1.3.1.1 0 .15-.1l.15-.05m-.55.55q0-.1-.25-.1l-.05-.05q-.05-.1-.3-.15-.25-.05-.55-.05-.25 0-.4.05-.2.1-.15.2l.05.05q0 .05.15.05-.2.05-.3.1-.15.05-.05.1 0 .1.15.2h.6q.25 0 .35-.1.2-.05.15-.1-.048-.048-.2-.1.158.05.4.05.15 0 .3-.05t.1-.1m-1.25 0q.05 0 .1.05-.19-.047-.3-.05h.2m.4.1q-.095-.048-.2-.05h.1q.05 0 .1.05"/><path fill="#CCC" d="M653.3 286.65h.25q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.25 0-.35.05-.1.05-.05.1 0 .05.1.1h.45m.6.85q-.15 0-.2.05l-.1.05q.05.05.15.1h.4v.05q.05.05.15.05.05.1.25.1.1 0 .25-.1.05 0 0-.05 0-.05-.05-.1h-.45v-.05l-.1-.05q-.2-.05-.3-.05m.7 1.4q.2.05.3.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.1h-.55l-.05.05-.05-.05h-.7l-.15-.15v-.05l-.05-.05h.1q.1-.05.05-.1 0-.05-.1-.05-.15-.05-.25-.05-.1.05-.25.1-.05 0-.05.05-.15-.05-.25-.05-.25 0-.4.05-.2.1-.15.15 0 .15.25.2.25.05.5.05h.1q.2.05.3.05.2-.05.3-.1h.05v.1q-.1 0-.05.05 0 .05.15.05-.25.1-.3.1-.2.05-.15.15 0 .05.25.1h.1q-.05.05-.1.05l-.05.1q0 .05.1.1h.05q-.049.001 0 .05 0 .05.15.05h.25q.1 0 .2-.05.15 0 .15-.05-.05-.05-.2-.1h-.05q.05-.002.05-.1-.05 0-.15-.05.15 0 .3-.05.1-.05.1-.1-.05-.1-.25-.15h-.1q.052-.002.1-.05h.05q.15-.05.2-.05l.05-.05"/><path fill="#CCC" d="M655.2 289.05q-.25.05-.15.15 0 .1.3.15.15.05.45.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.2-.05-.45-.05-.3 0-.45.05m-1.3.8q-.05.05-.05.1l.05.05q-.15.05-.15.1.1.1.3.2h.5q.3 0 .5-.1.15-.05.1-.15 0-.05-.3-.15h-.1q0-.05-.2-.1h-.3q-.25 0-.35.05m-.65.3q.05-.05 0-.05 0-.05-.1-.1h-.55q-.05.05-.05.1.05 0 .15.05.1.05.3.05.1 0 .25-.05m.2.35q-.1 0-.15.05-.15 0-.15.05l.2.1h.5q.1-.05.05-.1 0-.05-.15-.05-.15-.05-.3-.05m2 .3q-.2-.05-.35-.05-.25 0-.35.05-.15.05-.15.1.05.05.25.1.1.1.35.1.2 0 .4-.1.15-.05.1-.1 0-.05-.25-.1m-.35-.5q-.15.05-.15.15.1.1.25.15.3.05.55.05.3 0 .45-.05.15-.05.1-.15 0-.1-.25-.15-.15-.1-.45-.1-.25 0-.5.1m2.65-2q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05t.2.1h.5q.05-.05.05-.1m-.3.75q-.15-.05-.25-.05h-.05q-.2 0-.35.05-.15.05-.1.1 0 .05.2.1t.35.05q.2 0 .3-.05h.1q.05-.05.05-.1-.05-.05-.25-.1m-.05-.45q-.1 0-.1.1 0 .05.2.1h-.1q-.1.05-.1.1h.1q0 .05.05.05.1.05.25.05t.25-.05l.05-.05q0-.05-.05-.1h.1q.05-.05.05-.1 0-.1-.15-.1-.15-.05-.25-.05-.2 0-.3.05m-.8-.45l-.2-.05q-.1-.05-.2-.05-.15 0-.25.1l-.05.05q0 .05.1.1.2-.05.3-.05h.2q.1-.05.1-.1m-.9.6q.05.05.2.1.1.05.2.05.2 0 .3-.1.15-.05.1-.1l-.2-.1h-.3q-.1 0-.25.1l-.05.05"/><path fill="#CCC" d="M656.6 289.8h-.1q-.15.05-.15.15.05.05.25.1h.1q-.05.05-.05.1-.15 0-.25.05-.15.1-.15.15.05.05.25.1t.4.05q.25 0 .35-.1.15-.05.05-.1v-.1h.15q-.049.002 0 .1 0 .1.25.15.25.05.45.05.25 0 .45-.05h.1q.05.05.15.1.2.05.45.05.2 0 .3-.05.2-.05.2-.15-.05-.05-.25-.1-.2-.1-.35-.1 0-.05-.3-.15-.2-.05-.45-.05-.2 0-.4.05H658q-.25 0-.5.05 0-.05-.1-.1h.15q.15 0 .25-.05.05-.05 0-.05 0-.05-.05-.1h-.45v-.05q-.05 0-.1-.05-.1-.05-.25-.05-.15.05-.25.1-.05 0-.1.05m1.4-.45q-.2 0-.25.05-.1 0-.1.1.05.05.15.1.15.05.3.05h.3q.15 0 .25-.05.05.05.2.1.097.048.2.05-.202.001-.35.05-.1.05-.05.1 0 .05.1.1h.6q.1 0 .1-.05l.05.05q.15 0 .35-.05h.25q.05-.05.1-.05l.1.05q.2.05.4.05h.2q.1-.05.15-.05.15-.05.05-.15-.05-.05-.15-.1-.2-.05-.45-.05h-.05q-.109.002-.3.05 0 .05-.05.05h-.05q-.2-.05-.4-.05-.15.05-.2.1h-.15q-.049-.049-.2-.05.102-.002.15-.05h.1q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.35-.05-.1 0-.25.05-.05-.05-.1-.15h-.25q-.2-.05-.35-.05"/><path fill="#CCC" d="M660.45 289.65v-.05q.05 0 .05-.05t-.15-.05q-.15-.1-.25-.1-.2 0-.25.1-.05 0-.05.05t.2.05.2.05h.25m-9.25-2.2q.15-.05.1-.1 0-.05-.2-.1-.15-.05-.35-.05-.25 0-.3.05-.1.05-.1.1.05.05.15.1h.7m-.55-1q.15-.05.1-.15 0-.05-.25-.2-.25-.05-.45-.05-.25 0-.5.05-.1.15-.1.2-.1 0-.15.05-.1 0-.05.1 0 .05.2.05.1.05.3 0h.45q.25 0 .45-.05m1.65 1q-.2 0-.4.05t-.1.15q.05.05.15.1-.05.05 0 .15 0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.1-.15-.1l.1-.05q.15-.1.1-.15-.05-.1-.25-.1-.25-.05-.55-.05m-3.25-.55q-.05-.05-.3-.1t-.45-.05v-.05q-.2-.05-.5-.05-.25 0-.5.05-.1.1-.1.15.05.1.3.15.25.1.5.1.2.05.5.05.25 0 .4-.05.25-.1.15-.2m.85 1.35q.25-.05.2-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.15l-.1-.1h-.45q-.1.1-.1.15h-.1l-.05-.05v-.1q0-.05-.25-.1-.1-.05-.35-.05-.2 0-.35.05-.1.1-.1.2 0 .05.1.1 0 .05.1.05.25.05.5.05.05.1.2.15.3.05.55.05.25 0 .45-.05.1.05.35.05.25 0 .35-.05m.35.85q-.1.05-.05.1 0 .05.2.1.15.05.35.05.2 0 .3-.1.05-.05.05-.1h.15q.3.1.55.1.2 0 .4-.1.2-.05.1-.1-.05-.1-.2-.15-.3-.05-.55-.05-.25 0-.45.05-.15.05-.1.15v.05l-.05-.05h-.3q-.2 0-.4.05m-1.2.65q-.1.05-.05.1 0 .05.2.1h.6q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05m1.05.1q.1.05.3.05.15 0 .3-.05 0 .05.15.1.1 0 .15.05-.05 0 0 .05 0 .1.25.15h.95q.2 0 .25-.05.1-.05.1-.1t-.25-.1h-.05q-.05-.05-.15-.1-.3-.05-.55-.05v-.05h.15q.25 0 .4-.05.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.45-.05-.3 0-.45.05-.2.15-.1.2.05.1.15.15h-.35q0-.05-.1-.05-.2-.05-.4-.05-.15 0-.2.05-.15.05-.15.1.05.05.2.05m1.85-1.4h.2q.1-.05.1-.1-.05 0-.15-.05-.1-.05-.25-.05h-.05q-.1 0-.2-.05-.2-.05-.5-.05-.25 0-.45.05-.15.1-.1.15 0 .1.25.15.25.05.5.05.3 0 .5-.05.05 0 .05-.05h.1m-.85 2.2q-.3 0-.45.05-.2.05-.15.1 0 .1.3.15.2.05.5.05.25 0 .4-.1.2-.05.2-.15-.05-.05-.35-.1h-.45m1.35.35q.098.098.25.1-.1.002-.1.05.1.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.1-.15h-.35l.1-.05q0-.05-.2-.1h-.5v.1l.15.05m5.25 0h.45q.15-.05.15-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1m.05.45q.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1q-.15.05-.1.1 0 .05.25.1.15.05.35 0m-.45.4q-.05-.1-.3-.15-.15-.05-.45-.05-.25 0-.5.05-.1.05-.05.15 0 .1.25.2.25.05.45.05.3 0 .5-.05.1-.1.1-.2m.75.15q.1 0 .05-.05 0-.1-.1-.15-.15 0-.25.05h-.25q-.1.1-.1.15.05.05.15.05.15.05.25.05.15-.05.25-.1m-1.4-.55q0-.05-.1-.05-.2-.05-.3-.05-.2 0-.25.05-.1 0-.1.05.05.05.15.1h.55q.1-.05.05-.1m11.4-6.2q0 .05.1.05.15.05.25.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.5q-.1.05-.05.1"/><path fill="#CCC" d="M668 285.15q-.05-.1-.3-.15-.25-.05-.5-.05-.3 0-.4.05-.25.05-.2.15.05.1.3.15.25.05.55.05.25 0 .35-.05.25-.05.2-.15m-.45.9h-.2q-.15.05-.1.1h-.05q-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1h.05q.1 0 .15-.05h.15q.05.05.1.05h.15q-.1.003-.1.05-.1 0-.05.05 0 .1.15.1.05 0 .05.05t.1.1h.5q.1-.05.1-.1l-.1-.05q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05v-.15l-.15-.05q-.1-.05-.2-.05-.2 0-.25.05-.15 0-.2-.05h-.25"/><path fill="#CCC" d="M668.1 286.5q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .25-.05h.05v-.05m-.7-.95l-.2-.05h-.05q-.1-.05-.2-.05t-.2.05l-.1.05q0 .05.2.1h.5q.05-.05.05-.1m.65.25q-.1.05-.05.1 0 .05.1.05.05.05.25.05.1.05.3.05.15 0 .2-.05.05.05.1.05.05.05.2.05v.05q0 .1.1.1h.3q-.105.003-.25.1-.1.05-.05.1 0 .05.2.05h.35q.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.1q.052-.002.1-.05.15 0 .15-.05-.05-.1-.2-.1-.1-.05-.25-.05h-.05q-.05-.05-.15-.1h-.2l.05-.05q-.05-.05-.15-.05-.15-.05-.25 0H669q-.05-.05-.15-.1h-.8m-2.15-.6l-.15-.05q-.15-.05-.35-.05-.2 0-.3.05-.05.05-.05.1.05.05.1.05v.05q.05.1.2.15.25.05.45.05h.2q.1 0 .2-.1t.05-.15v-.05q-.15-.05-.2-.05h-.15m.1.5q-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.049.049 0 .05h-.05v-.05q.05 0 .05-.05l-.05-.05h-.15q-.1-.05-.25-.05t-.2.05q-.1 0-.1.05t.2.1h.25q-.053.002-.15.05-.1.05-.1.15.05 0 .05.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.05.1.05.2.05.15 0 .25-.05.05 0 .15-.05.05.05.2.05h.1q.1.05.2.05h.1q.1 0 .15-.05.15 0 .15-.05-.097-.048-.15-.05h.2q.05.05.2.05.05-.05.1-.05.2 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1h-.3q-.1.05-.15.05h-.1q0-.05-.15-.05v-.05q.05 0 .05-.05m.6.65h-.1q-.2-.05-.3-.05-.15 0-.2.05h-.05l-.05.05q.05.05.15.1h.5q.1-.1.05-.15"/><path fill="#CCC" d="M666.95 286.75q-.05-.05-.35-.05-.05-.05-.1-.05h-.05q-.1-.05-.15-.05h-.25q-.05 0-.15.05h-.15v-.05q-.05-.05-.15-.05h-.15q-.05-.05-.1-.05-.15 0-.25.05l-.05.05v.05q-.15 0-.2.05-.05 0-.05.05t.1.1h.5q.05-.05.05-.1h.15q.044-.044.1-.05-.05.006-.05.05-.05 0 0 .05v.05h-.25q-.11.003-.3.05-.1.05-.1.1.05.15.2.2.25.05.45.05.25 0 .35-.05.1-.05.05-.2h.4v.1h.3l.05.05q.1 0 .25-.05h.1q.05.05.2.1.1.05.2.05h.2q-.048.002 0 .05 0 .05.25.1.05.05.15.05h.4q.1 0 .15-.05h.1v.05q-.15 0-.15.05l.15.05h.05q.1.05.25.05h.05q.048.048.1.05h-.1q-.15 0-.25.05-.05 0 0 .05 0 .05.05.15h.5q.1-.1.1-.15-.05 0-.1-.05h.35l.05-.05q.05 0 0-.05 0-.05-.1-.05-.05 0-.15-.05h.1l.1-.05q-.05-.05-.2-.1-.1-.05-.2-.05h-.55q-.05-.05-.15-.1.2 0 .3-.05.25-.05.2-.2 0-.05-.3-.15-.2-.05-.5-.05v-.05q0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05t.15.1h.1q-.15.1-.15.15 0 .048.05.05h-.1q-.1-.05-.3-.05h-.1l-.15-.05h-.05q-.1-.05-.25-.05l.05-.05v-.05m1.1.4h-.1v-.05q.048.048.1.05m-.3.55h-.15q.083-.002.15-.025v.025"/><path fill="#CCC" d="M666.85 287.65h-.2q-.05.05-.05.1l.2.05q.1.1.25.1.1 0 .2-.1 0-.05.1-.05v-.05h.15q0 .05-.05.05v.15l.1.05h.1q.048.048.15.05-.102.002-.15.05h-.1l-.05-.05h-.05q-.1.05-.2.05h-.15q0-.1-.25-.15h-.1q-.2-.1-.4-.1h-.25q-.15-.05-.35-.05-.25 0-.4.05-.05 0-.05.1h-.1q.1-.1 0-.15 0-.05-.2-.1.05-.05.05-.1-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15.1-.1.1v.05h-.3l-.25-.05q-.05-.05-.2-.05-.2 0-.3.05-.1.05-.1.1t.2.05q.1.05.3.05h.2q.05.15.3.2.25.05.55 0h.1v.05h.1q.15.05.3.05t.2-.05h.05q.2.05.35.05l.2.1q.2.05.35.05h.5q.05-.05.1-.05h.1q.15.05.35.05.15-.05.15-.1h.2q.05.05.1.05l.15.05h.55q.05-.05 0-.1v-.05h-.1q-.1-.05-.2-.05h-.15V288h.15q.05 0 .05-.05.15-.05.1-.15 0-.05-.05-.05 0-.05-.05-.1h-.5l.05-.05q.2-.05.15-.1 0-.1-.25-.15-.2-.05-.5-.05-.2.05-.45.1-.15.05-.15.15l.2.1m.9.05h-.15q.083-.002.15-.025v.025m-3.6-2.6q0-.05-.15-.1-.1-.05-.25-.05t-.2.05q-.1.05-.1.1l.15.05q.1.05.3.05.1 0 .15-.05l.1-.05m-.6.6q.05.05.1.05.2.05.35.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.6q-.05 0-.05-.05h-.15q-.05-.05-.15-.05-.25-.1-.5-.1h-.1l.05-.05q.25-.05.15-.1 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.1.05-.1.15.05.05.25.1.25.15.45.15-.1.1-.1.15.05.1.25.15h.05q.099.049.35.05-.102.002-.15.05l-.15.05q0 .05.2.1-.15.05-.2.05h-.05q-.1.1-.1.2h.05v.05h-.05q-.2-.05-.25-.05-.2 0-.2.05-.1 0-.1.05l-.1-.05h-.05q-.05-.05-.25-.05h-.15v-.15h-.2q-.05-.05-.25-.05l-.2.1v.1q0 .05.1.05l.05.05h-.05q-.05 0-.05.05-.15 0-.05.05v.05q.05.05.2.1.1.05.15.05.05.05.1 0 .15.05.25.05.2 0 .3-.05.05 0 .05-.05.05 0 .15-.05.05 0 .1-.05.05 0 .05-.05h.5q.05-.05 0-.1.05 0 .2.05.1.05.3.05l-.1.05q0 .05.15.1t.3.05q.1 0 .15-.05l.1-.05h.05q.15 0 .25-.1.05 0 .05-.05t-.2-.1l-.05.05q.05-.1 0-.2 0-.05-.1-.05-.15 0-.2-.05h-.05q-.05 0-.2-.05h.05q.1-.05.1-.1l-.15-.05q-.141-.047-.25-.05h.45q.1 0 .25-.1m.5.75q-.05.05-.05.1.05 0 .15.05h.15v.05h.5q.1-.05.1-.1v-.05q0-.05-.15-.05-.15-.05-.25-.05t-.2.05h-.25m-.5.35q0-.05-.25-.1h-.55q-.05.05-.05.1l.05.05h-.55q-.1.05-.1.1l.15.15q.2.05.4.05.15 0 .2-.05.15-.1.1-.15v-.05h.45q.15-.05.15-.1"/><path fill="#CCC" d="M663.75 287h-.2q-.15.1-.1.15l.1.05h-.3q-.15.05-.1.1 0 .05.15.1h.35q0 .05.05.05.2.05.3.05.2 0 .25-.1h.45q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05h-.1q-.197.049-.3.05.053-.002.15-.05.15-.05.15-.1-.05-.1-.2-.1h-.25m1.9 1.4q0-.05-.15-.1h-.5q-.1.05-.1.1l.1.05h-.1l-.1.05q0 .05.2.1.1.1.2.1.15 0 .25-.1.05-.05.05-.1h-.05q.15-.05.2-.05.05 0 .1.05-.1 0-.25.05v.05q-.1.1-.05.15 0 .049.05.05h-.05q-.15-.05-.35-.05-.25.05-.35.1h-.05q-.1 0-.1.05v.1q-.1-.05-.15-.05h-.15q.102-.002.15-.05v-.05q0-.05-.15-.1h-.05q.05-.001.05-.05.1 0 0-.1 0-.05-.15-.1v-.05q0-.05-.2-.1h-.2q.103-.003.15-.05.1 0 .05-.05h.05q.15.05.3.05t.2-.05q.05 0 .05-.05t-.1-.1h-.5q-.05.05-.05.1l-.05-.05h-.5l-.1.1q.05.05.15.05.141.047.25.05h-.3q.05.05 0 .05-.1 0-.25.05-.1.05-.1.15.05.1.1.15-.1-.05-.3-.05h-.05q-.2.05-.25.05-.05.05-.05.1t.2.1h.4q0 .05.05.05h.15q.1.05.15.05.05 0 .15-.05.15.05.35.05h.15q0 .05.15.1h.5q0-.05.05-.05v-.05h.05q.05 0 .1.05.1 0 .2-.05h.35q.05-.05.15-.05.05-.05.05-.1v-.05l.05.05q.25.05.5.05.3 0 .45-.05.1-.05.15-.05h.1q.15.05.3.05v.05q.05.05.15.05l-.1.05q-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15-.05.15-.1-.1-.05-.15 0l.05-.1q.1 0 0-.05 0-.05-.05-.05h-.1q.05-.1.05-.15-.05-.1-.25-.1-.1-.05-.3-.05l.05-.05q0-.05-.15-.05l-.05-.05h-.2q-.1 0-.25.05-.05 0-.05.05l-.05-.05h-.15q0-.05-.1-.1h-.5q-.05 0-.1.05m.95.2v-.05l.15.05v.1q-.1-.1-.15-.1"/><path fill="#CCC" d="M665.15 289.15h-.05q-.2.05-.35.1v.05q-.15 0-.15.05.1.05.25.15.048.048.15.05h-.3q-.099-.05-.15-.05.05-.001.05-.1-.05-.05-.15-.1h-.55q-.15.05-.05.1l.05.1q-.15 0-.05.05v.05q0 .05.1.05.1.05.3.05h.2q.05 0 .1-.05.05.05.2.05.05.05.15.05h.1q.1 0 .2-.05.1 0 0-.05 0-.05-.05-.1.05 0 .15-.05h.2q.1 0 .15-.1.1 0 .1-.05-.05 0-.05-.05t-.2-.1q-.15-.05-.35-.05m-1.8.1v-.05q0-.05-.1-.05l-.1-.05H663q-.2 0-.25.05-.05 0-.05.05t.15.05q.1.05.25.05t.25-.05m.55.7q.1 0 .15-.05h.1q.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05h-.3q-.3 0-.45.05h-.65q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05l-.05.05q0 .05.1.1.2.05.3.05h.05l.1.05q.1.05.3.05h.1q.1 0 .25-.05h.1q.05.05.2.05.15.05.35.1h-.05q-.05 0-.15.05l.2.1h.5q.05-.05.05-.1t-.15-.05h-.1q.1-.05.25-.1"/><path fill="#CCC" d="M663.35 289.6q.1 0 .2-.05l.1-.05q0-.1-.2-.15-.1-.05-.2-.05-.15 0-.25.05h-.15q-.1-.05-.3-.05-.15 0-.3.1-.1 0-.05.15 0 .05.2.05h.3q.15 0 .3-.05h.05q.2.05.3.05m.05.9q0-.049-.05-.05.05-.001.05-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.05.05-.05.001-.1.1-.05 0-.05.05t.15.05h.25q.15 0 .25-.05.05 0 .05-.05m.25.3q-.05-.05-.25-.1-.25-.05-.55 0h-.4q-.05-.05-.1-.05h-.45q-.2 0-.4.05-.15.05-.15.15.05.05.25.1.1.05.25.05h.7q.25.1.5.1.1-.1.3-.1h.05q0 .1.15.1.1.05.2.05.2 0 .25-.05h.15q.1 0 .15-.1.1 0 .15-.05-.05-.05-.2-.1h-.5v.05q-.05-.05-.1-.05v-.05m.3-.65q-.05 0-.05.05-.15.1-.05.15 0 .1.2.15.2.05.45.05.05 0 .1.05h.425q-.184.005-.275.05-.05 0-.15.05h-.05q-.1.1-.05.15 0 .05.1.1h.15q.25.15.55.15.2 0 .35-.15.15 0 .15-.05l.1-.05q-.15.1-.1.25 0 .05.25.05l.05.05h-.05q0 .05.2.1h.5q0-.05.05-.1.1 0 .25-.05.1 0 .1-.05v-.1q-.05-.1-.3-.15-.05-.05-.2-.05.1-.05 0-.05v-.05h.1q.2.05.5.05.25 0 .4-.05.2-.05.15-.15h.05q.15-.05.2-.05.05-.05.1-.05h.3q.15-.1.2-.1.2-.05.15-.2 0-.05-.35-.15h-.65q-.15-.05-.3-.05t-.25.05q-.1 0-.1.05t.1.05q-.1.05-.2.05h-.3q-.15 0-.25.05h-.6q-.1.1-.1.15 0 .05.15.05h.05q0 .05.05.05h.3q.1 0 .2-.05v-.05q.048.048.1.05h-.05q-.25.05-.15.15 0 .048.05.05h-.7q-.05 0-.05.05l-.1.1q-.05-.05-.15-.05-.048-.048-.1-.05h.3q0-.05.05-.1v-.05q-.05-.05-.1 0-.15-.05-.3-.05t-.2.05l-.05-.05q.05-.05.05-.1l-.15-.15h-.1q0-.05-.05-.05-.25-.05-.45-.05h-.2q-.2.05-.25.05"/><path fill="#CCC" d="M665.7 289.95q-.1-.05-.25-.05-.1.05-.25.1-.05 0-.05.05t.15.1q.15 0 .3-.05h.15q.15-.05.15-.1-.1 0-.2-.05m-.95-.05q-.2 0-.2.05-.1 0-.1.05l.05.05q.05 0 .1.05h.5l.05-.05-.05-.05q0-.05-.05-.05-.2-.05-.3-.05m2.95-1.6h-.05q-.15.05-.2.1-.05 0 0 .05v.05h.3q.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.25-.05m-.45.9q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.4.05t.3-.05q.2-.05.1-.1m.8-.45q-.05.05-.05.1t.15.1q.15.05.3.05h.55q.3 0 .5-.05.1-.05.1-.15-.05-.05-.3-.1v-.1q-.15-.05-.45-.05-.25 0-.5.05 0 .1-.05.15h-.25m-1.4.8q-.05-.05-.2-.05-.15 0-.25.05t0 .05v.05h-.25q-.15.05-.15.1.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.2q.1-.05.1-.1-.05 0-.2-.05m.3.15h-.2q-.1.05-.1.1t.15.05q.1.05.3.05.1 0 .15-.05.1 0 .1-.05t-.15-.1h-.25m1-.3h-.3q-.2 0-.3.1-.15.05-.15.1.05.1.2.1.25.05.4.05h.35q-.1.05-.1.1.05.1.3.1.25.05.5.05h.15q.2 0 .3-.05.1 0 .1-.05.05-.05 0-.1 0-.05-.2-.15-.05 0-.2-.05-.15-.05-.35-.05-.2 0-.25.05-.05 0-.05.05h-.1q.05-.05 0-.1 0-.05-.1-.05.1-.1.15-.1h.25q.05-.05.05-.1-.05 0-.15-.05-.1-.05-.3-.05-.1 0-.2.1l-.1.05.1.05m0 1.15q-.1.05 0 .1 0 .05.05.05.25.05.4.05.2 0 .25-.1.15 0 .15-.05l-.2-.1-.05.05q-.15-.05-.25-.05-.2 0-.35.05m-5.75-4.85q0-.05-.15-.1-.2-.05-.45-.05-.2 0-.35.05h.05q-.2.05-.2.1l.2.1q-.05.05 0 .05 0 .05.1.1h.5l.05-.05q.15-.05.2-.05l.05-.05h.05q0-.05-.05-.1m-1 .2q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.1-.05 0-.05.05t.2.05h.25q.1 0 .2-.05.1 0 .1-.05m-.1 1.4q0-.05-.1-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.1.05.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .05-.05"/><path fill="#CCC" d="M660.8 287.5q0 .05.15.05 0 .05.05.05h.3q.05 0 .05.05-.1 0-.15.05h-.1q-.05 0-.05.05.05.05.2.15h.35q.05-.1.1-.1.097 0 .15-.05l-.05-.05q0-.047-.1-.05h.2q.3 0 .45-.05.05-.05.15-.05-.05-.05-.05-.1-.05-.1-.25-.15-.25-.05-.55-.05-.25 0-.4.1-.05.05-.15.05-.15 0-.15.05-.15 0-.15.05"/><path fill="#CCC" d="M661.9 287.7h-.05v.05l-.05.05h.05q0 .1.1.1.15.05.25.05.15 0 .25-.05l.05-.1q0-.05-.15-.1h-.45m-2.05-2.35q.15-.05.15-.1l-.2-.1q-.25-.05-.45-.05-.05 0-.1.05v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05h.1q-.048.002 0 .05 0 .05.15.1.15.1.35.1.2 0 .3-.1m-.25-.3q.2 0 .25-.05.15-.05.15-.1l-.2-.1h-.6q-.2.05-.15.1 0 .05.2.1t.35.05m.05.7q0-.05-.1-.1h-.65q-.05.05-.05.1l.1.1q.2.05.35.05.2 0 .3-.05.15-.05.05-.1m.25.25q-.1 0-.05.05 0 .05.15.05.1.05.15.05h.15q.1 0 .15-.05.05 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05m-.6.55q-.3 0-.4.05-.2.05-.15.15.1.05.25.1.2.05.3.1h-.05q0 .05.2.15h.1q-.05.002-.05.05-.15 0-.05.05 0 .1.1.1.2.05.35.05.25 0 .25-.05.2 0 .2-.1-.05-.05-.25-.05-.05-.05-.2-.05.1-.1.1-.15l-.1-.05v-.05h.1q.1.05.2.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.3q-.094-.047-.2-.05h.15q.25 0 .35-.05.1-.05.05-.1 0-.05-.15-.1t-.4-.05q-.15 0-.3.05-.05.05-.05.1 0 .047.1.05h-.35m.35 2.05q-.1 0-.1.1.05.05.2.1.05.05.15.1.15.05.3.05.2 0 .3-.05h.15q.1.05.25.05.1 0 .2-.05t0-.1l-.05-.05q0-.048-.05-.05h.35q.15-.1.15-.15-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05h-.85q-.15 0-.25.05"/><path fill="#CCC" d="M659.5 288.95q-.05 0-.05.05t.1.05q.2.05.25.05h.05q.15 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05m1.1.15h-.25q-.15.05-.15.1.1 0 .15.05-.15.05-.05.1l.15.15q.15.05.3.05.2 0 .3-.05l.05-.1h.2q.2 0 .3-.05.05-.05.05-.1t-.15-.1q-.15-.05-.3-.05-.2 0-.3.05l-.1-.05h-.2m-.6 1.6h-.15q-.2 0-.35.05v.1q0 .05.1.05.05.05.15.05.15.05.35.05.2-.05.3-.1l.05.05h.15q-.1.003-.1.05-.1 0-.1.1 0 .05.1.05-.051.001-.1.05-.1.05-.1.1.05.05.15 0 .05.05.25.05.1 0 .25-.05.05 0 0-.05v-.05q.05 0 .1-.05.15 0 .05-.05 0-.1-.1-.1-.047-.047-.15-.05h.2q.15-.05.15-.1-.098-.049-.15-.05.052-.001.15-.05.1 0 .05-.05 0-.1-.2-.1-.1-.05-.3-.05-.15 0-.3.05h-.05v.1q.048 0 .1.05-.054-.05-.2-.05-.15-.05-.3 0m.6-.5q-.15.1-.15.15.05.05.2.05.1.05.3.05.1 0 .25-.05.15 0 .1-.05 0-.05-.2-.15-.15-.05-.3-.05t-.2.05m2.15-2.1h.25q.1-.05.05-.1l-.1-.05q-.1-.05-.25-.05h-.05q-.1 0-.2.05l-.05.05q.05 0 .05.05l.05.05h.25m-1.25.25q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.1.05.2.05.1.05.25.05.1 0 .25-.05m-.1 1.6v.05q-.1 0-.1.05l.05.05q0 .05.15.1.15.1.35.1.2 0 .2-.1.15-.05.15-.1l-.1-.05q0-.05-.2-.1h-.5m.4.6h.05q.2.05.35.05.25 0 .25-.05h.05q.15 0 .15-.05-.1-.05-.25-.1t-.35-.05q-.2 0-.25.05-.15.05-.1.1l.1.05m.7.9q-.3 0-.4.05-.2.1-.15.15.1.1.25.15.25.05.55.05h.05q-.05.1-.05.15.05.05.1.05.15.05.25.05h.05q-.049.001 0 .05 0 .05.1.1h.3q.15 0 .15-.05.15-.05.15-.1-.1-.05-.2-.05h-.25q.048-.002 0-.05v-.05q.05 0 .15-.1 0 .1.2.15.2.05.5.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.3v-.05l-.15-.05q-.05-.05-.25-.05-.05.05-.2.1-.05-.05-.15-.1-.25-.05-.5-.05m-.55.5q.15-.1.1-.15 0-.05-.2-.1t-.35-.05q-.2 0-.3.05-.1.05-.1.1.1.05.2.15.1.05.3.05.2 0 .35-.05m.25.4q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05h-.1q-.2 0-.3.05-.15.05-.05.1 0 .05.15.05.15.05.3.05.2 0 .3-.05.1 0 .1-.05l-.2-.1h.05q.15 0 .25-.05l.05-.05m-1.1-.9h-.45v.1q0 .05.1.05.15.05.25.05.2 0 .25-.05.05 0 .05-.05t-.2-.1m-1.35.55h-.55q-.15.05-.05.1 0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05-.05-.15-.1m7.9-.7q.094.047.2.05h-.45q-.05.05-.05.1v.05h-.1q-.1.05-.1.1l.1.05h-.05q-.05 0-.05.05l.1.1q.2.05.3.05.2 0 .25-.05h.05q.15.05.25.05.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.45q.094-.003 0-.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.1h-.1q.102-.002.15-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.05m-1.65.5q.2 0 .25-.05.1-.05.1-.1-.05-.1-.15-.05-.2-.05-.4-.05-.15 0-.2.05-.15 0-.1.1 0 .05.15.05.15.05.35.05m.3 1.85h-.6q-.1.05-.05.1 0 .05.1.1.2.05.35.05.2 0 .25-.05.15-.05.15-.1-.05-.05-.2-.1m1.7-.25q-.15.05-.15.15.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05q0-.1-.15-.15H668m-2.85-1.9h.25q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05h-.05l.05-.05q.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.05-.15-.05-.25-.05t-.25.05h-.5q-.1.05-.05.1 0 .05.2.1.1 0 .25.05-.15 0-.05.05 0 .05.1.05.1.05.25.05.1 0 .25-.05h.15m13.5-8.25q-.15 0-.25.05l-.1.05.05.05h-.3q-.1.05-.1.1.05.05.15.05.1.05.25.05t.25-.05q.05 0 0-.05h.1q.15 0 .25-.05.15-.05.05-.1l-.1-.05q-.1-.05-.25-.05m.15 1.15q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.15-.05-.25-.05-.2 0-.3.05l-.05.05m-.4-.4q.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.5q-.1.1-.1.15.05 0 .2.05.1.05.2.05m1.15-.25q-.05.15 0 .2 0 .05.15 0 .1.05.3.05.1 0 .25-.05.05 0 .05-.05-.05-.05-.2-.15h-.55m1.35-.3h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3m-.6 0q.05 0 .1-.05.15 0 .15-.05l-.2-.1h-.1q-.1-.05-.15-.1h-.45q-.15.05-.1.1 0 .05.15.05.05.05 0 .05-.15 0-.15.05l.2.1h.5l.05-.05m-.15 1.1q-.1-.05-.3 0-.15 0-.3.1-.05 0-.05.05 0 .1.2.1.1.05.3.05.15-.05.25-.05h.05q.1.05.25.05t.2-.05l.1-.05q0-.05-.15-.1h-.35q-.1-.1-.2-.1m3.25-1.8q-.05 0-.05.05t.2.1h.5v-.1q0-.05-.15-.05-.1-.05-.25-.05t-.25.05m-1.65.1l-.2-.1q-.05-.05-.25-.05-.1 0-.25.05-.05.05 0 .1l.1.05q.15.05.3.05t.15-.05l.15-.05m-.15.75h.5q.05-.05.05-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.15.1m-.1.1q-.15 0-.25.05-.1.1-.05.15l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05-.15-.15q-.15-.05-.25-.05m-.2.75q-.1 0-.25.05-.1 0-.1.05.05.1.2.1.1.05.2.05h.4q.1 0 .25-.05h.15q.05.05.25.05.1 0 .25-.05.05 0 0-.1 0-.05-.05-.05-.15-.05-.25-.05-.2 0-.25.05h-.05q-.05 0-.15-.05h-.6m1.95-1.2q.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.55m.1 1.05q-.05 0-.05.05t.2.05.2.05q.15 0 .25-.05.1 0 .1-.05t-.2-.05q-.15-.05-.25-.05t-.25.05m2.05-2.2q.15.05.3.05.25 0 .3-.05.2 0 .15-.05 0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05m0 .85q0 .1.15.1.1.05.2.05.15 0 .25-.05.15 0 .15-.1l-.2-.1h-.5q-.1.05-.05.1m-1.5-.7q-.1 0-.2.05-.1 0-.1.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.3-.05m.65.8q-.15-.1-.35-.1-.1 0-.25.1l-.05.05q0 .05.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05v-.1l-.15-.05m-.9.45q-.1 0-.15.05-.1 0-.1.05.1.05.15.05.1.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.15-.05-.1-.05-.3-.05m.2 1.05q-.2-.05-.3-.05h-.05q-.15 0-.15.05-.1 0-.1.1.05.05.15.1h-.3l-.05.05q-.1 0-.25.1-.05 0-.05.05.05.05.15.1.1-.05.2-.05 0 .05.1.05h1q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.098 0-.1.05v-.05q0-.05-.2-.1h.3q.05-.05 0-.1 0-.1-.05-.1m1.55-.3q0-.05-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05.15 0 .25-.05.05 0 .05-.05m2.4-1.95q0 .05.15.1h.5q.1-.05.1-.1-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.2.1-.15 0-.1.05m-1.5 1.9q-.1 0-.05.05 0 .1.2.1.1.05.35.05.2 0 .25-.05.1 0 .1-.1-.05-.05-.25-.05-.05-.05-.2-.05-.25 0-.4.05m.85.3q-.1 0-.25.05-.05.1 0 .1 0 .05.1.1h.05q-.05.05-.05.1.05.05.2.1.2.05.4.05t.4-.05q.05-.05.05-.1h.3q.2.05.4 0 .1 0 .15-.05.15 0 .15-.05l-.2-.1q-.1-.1-.25-.1-.15.1-.3.15-.05-.05-.2-.05-.1 0-.2.05h-.3v-.05q-.1 0-.2-.1-.05-.05-.25-.05m-18.35-.25q-.1.05 0 .05 0 .05.05.1h.4l.05.05q.15.05.25.05h.2q-.048.002 0 .05 0 .1.1.1.05.05.25.05.1 0 .25-.05.05 0 .05-.1l-.1-.1h-.5l.05-.05q0-.05-.1-.1-.15-.05-.3-.05l-.05.05q-.1-.05-.15-.05-.05-.05-.25-.05-.1 0-.2.05m1.25-.15h-.15q-.05.05 0 .1l.1.05q.1.05.2.05.2 0 .25-.05l.15-.05-.2-.1h-.05q.052-.002.1-.05.05 0 .05-.05t-.15-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05t.2.05q0 .048.05.05m2.9.35q.1 0 .1-.05-.05-.05-.2-.1h-.45q-.15.05-.05.1 0 .05.1.05.2.05.3.05.1 0 .2-.05m1.3-.25q0 .05.15.1t.35.05q.25 0 .25-.05.15-.05.15-.1-.05-.05-.25-.1h-.6q-.1.05-.05.1m-.35.3h-.5q-.05.05-.05.15.05 0 .15.05.1.05.2.05.2 0 .25-.05l.05-.05q0-.1-.1-.15m.4-.8q-.1.05-.05.15l.15.05h.1q0 .05.1.05.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.15h-.15q-.05 0-.1-.05h-.5m1.35.25q-.1.05-.1.1.05.05.15.05.047.047.15.05h-.15q-.05.05 0 .1 0 .05.15.05.15.05.35.05.15 0 .3-.05.05 0 .05-.05-.05-.05-.2-.1-.05 0-.15-.05h.05q.1 0 .05-.05 0-.05-.1-.1-.2-.05-.35-.05-.15 0-.2.05m1.6-1q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.1.1.05.2.05.15 0 .25-.05l.05-.1m-.45.6q.05-.001.05-.05-.05-.05-.2-.1-.1.05-.3.05h-.3q-.1.05-.05.1 0 .05.15.1.149.05.35.05-.05.002-.05.05.05.1.15.15.15 0 .35-.05h.3q.15-.1.1-.15 0-.05-.2-.1-.1-.05-.3-.05h-.05"/><path fill="#CCC" d="M676.65 284.15q-.05 0 0 .05 0 .05.1.1-.1 0-.15.05-.1 0-.1.05.05.05.15.1h.25q.15 0 .25-.05t.05-.1q0-.05-.1-.05h-.3q.107-.002.25-.05h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1.05-.25.1m.85.35q-.1 0-.25.05l-.05.1q0 .05.15.1h.45q.1-.05.15-.05.05.05.15.05.15 0 .25-.05l.05-.05q0-.1-.1-.15h-.5q-.05 0-.05.05-.1-.05-.25-.05m.3-.05h.5q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1m.25.7q0 .05.15.1h.45l.05-.05q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m-.65.45q-.05 0-.05.05v.05q.05.05.15.05.15.05.25 0 .2 0 .3-.05.15 0 .05-.05 0-.05-.1-.1h-.1q-.15-.05-.25-.05-.15.05-.25.1m-.05.15l-.2-.1h-.5q-.05.05 0 .1 0 .05.1.05.15.05.3.05t.15-.05.15-.05m.3.4h-.45l-.05.1v.05l.1.05q.2.05.35.05.1 0 .15-.05v.05h.5q.1 0 .25-.05.05 0 0-.05v-.05q-.1-.1-.2-.15h-.05q.052-.002.1-.05.05 0 0-.05 0-.05-.05-.05l-.05-.05h-.05q0-.05-.15-.05-.05-.05-.25-.05l-.2.1q-.15 0-.15.05.05.05.2.1h.05q.05.05.1.05-.05.05-.15.05m-1.15-.95q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05l.05-.05q0-.049-.05-.05.052-.001.15-.05.15 0 .1-.05 0-.05-.2-.1h-.5q-.05.05-.05.1l.15.05h-.2q-.1.05-.1.1.05.05.15.05.048.048.15.05-.097.002 0 .05 0 .05.05.1h.6m-.6.6q-.05.05-.05.1h-.1q0-.05-.15-.1h-.5q-.05.05-.05.1l.1.05q.2.05.3.05 0 .05.15.1h.55v-.1q.05.05.15.05.2 0 .3-.05.05-.05.05-.1t-.15-.1h-.6m.15-.3q.1 0 .1-.05 0-.1-.15-.15h-.45q-.15.05-.15.15 0 .05.2.05.1.05.25.05.1 0 .2-.05m1.05.95q-.15-.05-.25-.05t-.25.05q-.1 0-.05.05 0 .05.05.05 0 .05.2.05.1.05.25.05.1 0 .2-.05.1 0 .1-.05t-.1-.05q-.05-.05-.15-.05m-.45-.05v-.1q0-.05-.1-.05-.1-.1-.3-.1-.1 0-.25.1-.05 0-.05.05t.2.1h.5"/><path fill="#CCC" d="M676.5 286.8q.15 0 .25-.05l.05-.05q0-.05-.15-.1h-.45q-.05.05-.05.1h-.1q-.15 0-.2.05l-.15.05q.05.05.2.1h.05q-.052.002-.1.05-.1-.05-.15-.05-.05-.05-.25-.05l-.2.1-.1-.05H675q.1-.05.1-.1t-.2-.05-.2-.05h-.1q.15-.05.1-.1h.2l.15.05h.1q-.05.05-.05.1.05 0 .15.05h.2q.2 0 .25-.05l.05-.05q0-.05-.1-.1h-.1q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05-.15.05-.2.05l-.05-.05h-.5q-.1.05-.1.1v.05q-.1-.05-.15-.05-.1 0-.15.05v.05h-.5q-.05.05-.05.15.05.05.15.1.25.05.5.05h.1q0 .05.15.05.05.05.1.05.049.098.15.1h.05q.05 0 .05.05-.048-.048-.1-.05-.151.001-.25.05-.05 0 0 .05h-.05q-.1 0-.1-.05h-.5v.05q-.002-.05-.1-.05-.1-.05-.2-.05l-.1.05h-.15q-.049.049 0 .05h-.05q-.1 0-.15-.05h-.35q.05-.001.05-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.15.05-.25.05h-.3q-.1.05-.2.05l-.05.1q0 .05.15.1.05.05.2.05.1 0 .15-.05h.05q0 .049.05.05-.1 0-.1.05.05.05.15.1.15 0 .3-.05h.35q.05-.05.1-.05.2.05.3.05.1 0 .2-.05h.1q.05.05.2.05l.05.05h.55q.1-.05.15-.05.05 0 .15-.05h.15q.1.05.25.05t.25-.1v-.05q0-.048-.1-.05.102-.002.15-.05 0 .05.15.05h.45q.05-.05.05-.15l-.15-.05q.1 0 .25-.05h.05q.05-.05 0-.1m.25.1h-.1v.05l-.05.05q-.1 0-.1.1 0 .05.1.05h.05q.15.05.25.05.15 0 .25-.05h.35q.1-.05.1-.15v-.05q-.1-.05-.2-.05-.15-.05-.3-.05-.2 0-.35.05m-.85.55q.1.05.3.05.1 0 .15-.05.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05m.9.25h-.45q-.1 0-.15.05-.15 0-.15.05l.1.1v.05q-.1 0-.1.05.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.35q.05-.05 0-.15 0-.05-.05-.05-.2-.05-.3-.05m1.55-1.25q-.1 0-.25.05-.1.05-.1.1.05.05.2 0 .1.05.2.05h.8q.1-.05.1-.1h-.05q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05q-.1-.05-.25-.05"/><path fill="#CCC" d="M679.2 286.7v.05h.1q.15.05.35.05.1 0 .15-.05.05 0 .05-.05-.05-.05-.1-.05-.1-.05-.2-.05h-.05q-.2 0-.25.05h-.05q-.048.002 0 .05m-1.25.1q0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05"/><path fill="#CCC" d="M678.05 286.85q-.1 0-.25.05l-.05.05q0 .05.15.15.1.05.2.05.15 0 .25-.15.15-.05.15-.1-.1 0-.2-.05h-.25m-.65.85h-.05v.05q0 .05.05.15h.55l-.05.05q-.15 0-.15.05.05 0 .05.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05h.15v.05q.15 0 .2.05h.05q-.052.002-.1.05h-.15q-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1-.094-.047-.2-.05h.45q.048-.048 0-.05h.3q.05-.05.1-.05l.05-.05h.1v.05h.1l.05.05h.05q.1.05.25.05.2 0 .3-.05.1-.05 0-.1 0-.05-.05-.05-.15-.05-.3-.05h-.2q-.1 0-.15.05-.15-.05-.2-.05 0-.05-.05-.05-.1 0-.2.05-.1 0-.2.05h-.2q.052-.002.1-.05.1 0 0-.05 0-.05-.05-.05-.1-.05-.25-.05h-.05l.05-.1q.2 0 .25-.05h.2l.05.05q.2-.05.3-.05h.25q.05.05.1.15h.5q.1-.1.05-.15 0-.05-.1-.05-.15-.05-.3-.05h-.15q0-.05-.1-.1h-.45q0-.05-.05-.05-.1 0-.25.05h-.2q-.1 0-.1.05h-.05q0-.05-.05-.05h-.1q.105-.002.2-.05.1-.05.1-.1l-.2-.05q-.1-.05-.25-.05-.1 0-.25.05l-.05.05q0 .05.2.1-.1 0-.15.05l-.05.05v.05h.05q-.052.002-.1.05"/><path fill="#CCC" d="M679.2 288.4l-.1-.05q-.1-.05-.25 0h-.05q-.15 0-.2.05-.05 0-.05.05h-.05q.05.05.15.1h.25q.1-.05.25-.05.1-.05.05-.1m-4.2-3.45q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.1-.05 0 0 .05 0 .05.1.1.1-.05.2-.05h.25q.15-.05.15-.1m-.1.55q-.1 0-.2.05-.15.05-.15.1.05 0 .15.05l.1.05q.05-.05.25-.05h.25q.05-.05.05-.1-.05 0-.05-.05l-.15-.05h-.25m-.45-.15q-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.1 0 .05.1.05.15.05.3.05t.2-.05q.05 0 .05-.05-.05-.1-.1-.1m-.8.3q.15-.05.15-.1l-.2-.05q-.1-.05-.3-.05-.1 0-.25.05l-.05.05q0 .05.1.1.2.05.3.05.2 0 .25-.05m.15.25q-.1-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05h-.4q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05h.45q.1-.05.1-.1"/><path fill="#CCC" d="M673.9 286.15q-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .1.1.1.15.05.3.05h.05q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.1-.1-.3-.1h-.1m0 1.3h-.3q-.05.05-.1.05-.2 0-.3.05-.15.05-.1.1 0 .1.2.1.2.05.35.05.25 0 .45-.05.05-.002.05-.05l.1-.05q.15-.05.15-.1l-.2-.1h-.3"/><path fill="#CCC" d="M674.75 287.95q.05 0 .05-.05 0-.1-.2-.15h-.5q-.1.05-.1.15 0 .05.2.05.1.05.25.05t.3-.05m.65.1l-.05.05q-.05 0-.05.05-.05.05-.05.1-.1.05-.15.05l-.05.05q0 .05.2.1h.45q.05-.05.05-.1h-.05q.148-.049.2-.05-.049-.001 0-.05v-.05h.1q.05-.05 0-.1.15 0 .15-.05-.1-.05-.2-.05h-.25q-.1 0-.25.05h-.05m-.25.45h-.45q-.1.05-.1.1 0 .1.2.1l.05.05h.05q.15.05.35.05.1 0 .2-.05.15 0 .1-.05 0-.1-.15-.15h-.15l-.1-.05"/><path fill="#CCC" d="M674.85 289.25l-.05-.05h-.25l-.05-.05q-.2 0-.2.05-.05 0-.05.05-.05-.05-.1-.05-.146-.048-.25-.05.105-.002.25-.05h.05q.05-.05.05-.1-.048-.048-.15-.05.153-.001.3-.05.1-.05.05-.1l.05-.05q.05 0 0-.05 0-.1-.05-.1-.15-.05-.2-.05H674v-.05l-.1-.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05.05 0 .05v.05q-.001-.05-.05-.05-.1-.05-.2-.05 0-.05-.05-.05h-.05q-.25-.05-.55 0h-.3l-.15.05h-.05q-.05 0-.1.05-.1 0-.1.05h-.3l-.05.05q0-.05-.15-.05 0-.048-.1-.05.151-.001.2-.05h.4q0-.05.1-.05.15-.05.1-.15.25 0 .35-.05.25-.1.2-.25 0-.05-.3-.1-.195-.049-.45-.05.103-.003.15-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.15-.05 0-.05-.1-.1h-.3q.1-.05.05-.1l-.1-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05h-.25q-.05.05-.05.1l.15.05q.15.05.25.05.15 0 .25-.05v.05q0 .05.1.05.1.05.15.05 0 .05.1.05.191.048.3.05-.253.001-.4.05-.05 0-.05.05-.15-.05-.25-.05-.2 0-.25.05l-.05.05q0 .05.15.15h-.1q0 .05-.05.05h-.2v-.05l-.05-.1q.05 0 .05-.05-.05-.05-.15-.1h-.65q-.1 0-.15.05-.2 0-.3.05-.15.05-.05.2v.05l.05.05q-.2-.05-.3-.05-.15 0-.2.05-.05 0-.05.05h-.05q0 .05.15.1h-.1q-.1 0-.25.05l-.05.05q0 .05.1.05-.049.001 0 .05.1 0 .15.05h.3q.05.05.25.1.15.05.45.05.25 0 .45-.1.15-.05.15-.1l-.1-.1q.1.05.25.05t.25-.05h.15l-.05.05q-.05 0-.05.05.05.05.15.05.15.05.25.05h.2q.05 0 .05-.05h.05l.05.05h.1q.05.05.15.05h.05q.2 0 .25-.05h.15q0 .05.15.1h.05q.15 0 .2.1h.15q.15.05.4 0h.1q-.1.05-.1.1.05.05.2.1-.15 0-.25.05-.05.05-.05.1t.1.05h.05q.05 0 .2.05h-.15q-.1-.05-.2 0h-.15q-.1-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.25.05h.05l.05.05h.1q-.106.003-.2.05-.1 0-.1.1-.1-.1-.25-.1h-.15q0-.05-.15-.05-.1-.05-.2-.05h-.2l-.05-.05h-.45q-.05-.05-.1-.05-.1-.05-.25-.05h-.4q-.15.05-.25.05l-.05.05q-.1 0 0 .05 0 .05.1.05.15.05.25 0h.6q0 .05.1.05.1.1.25.1h.2l.1.05h.05q-.05.05-.05.1-.05.05-.05.1.05.05.2.1.05 0 .2.05-.1 0-.1.05v.05q.05 0 .2.05h.55q.1-.05.05-.1 0-.048-.05-.05h.5q.15-.05.15-.1-.05-.05-.25-.1v-.05l-.05-.05h.25q.1-.1.05-.2 0-.05-.15 0-.048-.048-.1-.05h.6q.05 0 .05-.05.05.05.15.05.05.05.2.05.15-.05.25-.05.05-.05 0-.1m-4.15-1.15v.05h-.1q0 .05-.1.05 0 .047.1.05h-.15q-.1-.05-.15 0h-.7q-.048-.048-.15-.05h.35q.05-.05.05-.1h.3q.05.05.05 0h.5"/><path fill="#CCC" d="M673.65 290.3q.05-.1.05-.15 0-.05-.15-.05-.15-.05-.3-.05h-.05q-.106.003-.2.05l-.05.05q0 .05.15.15.15.05.25.05.2 0 .3-.05m1.2-1.1l.05.05.2.1h.5q.05-.05 0-.1.1 0 .1-.05-.05-.05-.15-.1-.15-.05-.3-.05-.2 0-.35.05-.1.05-.05.1m.7-.3q-.15.05-.1.1 0 .05.2.1h.6q.2 0 .25-.05h.05v-.1q.05-.05 0-.05 0-.049-.05-.05.1 0 .1-.05h.05v-.05q0-.05-.1-.15h-.3l-.2.1q-.1.05-.1.1l.1.05h-.15q-.25 0-.35.05m-1.4-.8q-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.15.05.1.05.3.05h.05q.15 0 .15-.05.15 0 .15-.05"/><path fill="#CCC" d="M674.3 290q-.05-.05-.15-.1-.05-.05-.25 0h-.05q-.15 0-.2.05-.1.05-.05.1l.05.05h.05q.15.05.3.05.2-.05.2-.1l.1-.05m.15.4h.05q0 .05.1.05.2.05.4.05.15 0 .25-.05.1 0 .1-.05-.05-.1-.2-.1-.1-.1-.3-.1h-.1q-.05 0-.2-.05h-.25q-.1 0-.2.05-.1.1-.1.15l.2.05h.25m1.25-.9q-.1.05-.05.1 0 .05.1.1.2.05.4.05.15 0 .2-.05.15-.05.15-.1-.05-.05-.2-.1h-.6m.05.35q-.1.05-.05.15 0 .05.2.1.15.05.35.05.25 0 .4-.05.1-.05.1-.1-.1-.1-.2-.15-.25-.05-.5-.05-.15 0-.3.05m-.3.65h-.2q-.15.05-.15.1.05 0 .15.05 0 .05.05.05.15.05.3.05h.3q0 .05.1.1h.5q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05h-.15l-.1-.1h-.25v-.05h-.25m1.95-2.15q0-.05-.15-.1h-.45v.05q-.05-.05-.2-.1h-.45q-.1.05 0 .05v.05q0 .05.05.05h.1q.15.05.2.05.15 0 .15-.05h.1q.05.05.1.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05m.25.9q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05h-.55q-.15.1-.05.15h.1q.2.05.3.05.1 0 .2-.05h.55q.05-.05.05-.1m0-.35v.05q0 .05.15.1.2.05.45.05.15 0 .35-.05h.35q.05-.05.05-.1h.15q.25-.05.3-.1h.55q.1 0 .15-.05.1 0 .15-.05.05 0 0-.05v-.1q.1 0 .05-.05 0-.05-.1-.1h-.5q-.1.05-.1.1h.1q-.1.05-.1.15l-.1-.1q-.1 0-.15.1h-.1q-.05-.1-.3 0-.15 0-.3.05-.1 0-.05.05 0 .048.05.05h-.2q-.15-.05-.3-.05-.2-.05-.3-.05-.15 0-.2.05h-.05q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .2-.05 0 .05.05.05m-.75.85q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05.1.05.3.05.15 0 .35-.05.2-.05.1-.15 0-.05-.2-.1-.2-.1-.4-.1t-.35.1q-.1.05-.1.1v.05h-.3q-.15.05-.15.1m-.75.6q-.15 0-.2.05-.1 0-.1.05.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.05-.2-.05-.3-.05"/><path fill="#CCC" d="M676.8 290.2q-.2 0-.25.1l-.05.05q0 .05.1.1h.3q.15 0 .2-.05.05-.05.05-.1-.05 0-.1-.1h-.25m.65-.25q-.1 0-.25.05-.05 0-.05.05t.1.1h.5q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05m-4.6-4.8q.15 0 .2-.05.15 0 .15-.05t-.15-.05q0-.05.05-.05.15 0 .15-.05-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.05.05-.1.05-.05.1 0 .05.1.05.2.05.3.05m-.6.2q.1-.003.1-.05.1 0 .05-.05 0-.05-.15-.1h-.2l-.1-.05q0-.05-.1-.05-.1-.05-.25 0-.1 0-.25.05-.1 0-.1.05.05.05.2.1h.2v.05q.1.05.15 0 .1.05.15.05-.1.15-.1.2 0 .05.2 0 .048.048.1.05h-.1q-.15.05-.1.1l.15.05q.15.05.3.05h.65l.05-.05v-.05l-.15-.05q-.15-.05-.25-.05-.05 0-.15.05 0-.05-.05-.05h-.15q.1-.05.15-.05v-.05q0-.05-.05-.15h-.2m-.75-.4q.1-.05.15-.1.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25 0-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.05.3.05m-.2 1.15q-.15 0-.35.05-.05.1-.05.15v.05h.05q-.1.05-.1.1.048.048.15.05-.152.001-.25.05-.05 0-.05.05-.05-.05-.1-.05-.15 0-.2.05l-.1.05q.05.05.15.1h.45q.25.05.45.05h.2l.1.05q.15.05.25.05.2 0 .3-.05v-.05h.05q.15 0 .25-.05.15-.05.15-.1-.1 0-.15-.05h-.15l.2-.1q.1 0 .1-.05.05 0 .05.05h.15q.2 0 .35-.05.1-.05.05-.1 0-.05-.2-.1h-.6v.1q-.1-.05-.2 0-.1 0-.2.05-.15.05-.1.1l.1.05h.05q.092.046.225.05h-.175q-.1 0-.2.05h-.15q0-.05-.25-.1-.048-.048-.1-.05h.05q.25 0 .35-.05.1-.05.05-.1 0-.1-.15-.2-.2-.05-.45-.05m-.45-.15q.1.05.2.05.2 0 .25-.05h.2q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05h-.05q-.05 0-.15.05-.05 0-.05.05.05.05.15.05m.2-.3l.2.05q.1.05.25.05.1 0 .25-.05l.05-.05q0-.05-.2-.1h-.45q-.1.05-.1.1m.15 1.25h-.5q-.05.05-.05.1l.1.1q.2.05.3.05.15 0 .2-.05l.1-.1q0-.05-.15-.1m-.45-2q0-.05-.1-.1h-.5v.05q-.1-.05-.15-.05-.2-.1-.5-.1-.25 0-.5.1-.1.05-.1.1.05.1.2.15l.05.05q0 .05.1.1.05.05.15.05.05.05.1.05h.4q.25 0 .4-.05.2-.05.15-.15 0-.05-.15-.1v-.05q.1.05.2.05.15 0 .25-.05v-.05m-.85.95q-.1 0-.1.05.05.05.2.1h.45q.05-.05 0-.1 0-.05-.05-.05-.2-.05-.3-.05-.2 0-.2.05m-.8.95l.05.05q.15.05.3.05t.15-.1l.15-.05q-.05-.05-.2-.1-.05.05-.25.05h-.2q-.1.05 0 .1m.3.15q-.1.05-.1.15 0 .05.2.1.1.05.3.05 0-.05.05-.05h.5q.1-.05.1-.1-.05 0-.15-.1-.1-.05-.2-.05-.05 0-.1-.05-.15 0-.3.05h-.3m.5 2.15q-.1-.05-.2-.05-.15 0-.25.05-.15.05-.05.1-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.5q.1-.05.05-.1.1.05.25.05.1 0 .25-.05l.1-.05q-.05-.05-.2-.1m.5-.15q.05.05.25.05v-.05q.002.05.2.05.15.05.35.05h.05q.1 0 .25-.05h.1q.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.05-.05.05-.05.1-.05.15-.05.15-.1-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05h-.1v-.05h-.05l-.05-.05q-.1-.1-.25-.1t-.25.1l-.05.05v.05h-.1l-.05-.05h-.45q-.1 0-.25.05l-.05.05q0 .05.2.1h.1m1.1-.1v.05l-.05-.05h.05m-2.1 1.25q-.15.05-.1.1 0 .1.15.1.15.05.4.05.2 0 .2-.05.15 0 .15-.1.1-.05.1-.1t-.2-.1h-.65q-.05.05 0 .1h-.05m.05.4q-.15-.05-.25-.05t-.25.05l-.1.05q.05.05.15.1h.2v.05h.25v.05H669q-.1.05-.05.1l.15.05h.05q.1.05.25.05.05 0 .1-.05 0 .05.05.05v.05h-.3q-.05.1-.05.15 0 .05.2.1h.05q.05.05.25.05.1 0 .2-.05l.1-.05v-.05l-.1-.05h.2q0-.1.05-.1t.05-.05l-.1-.1h-.2q.103-.003.15-.05.05 0 .05-.05v-.05h.35q.05-.05.05-.1t-.1-.05q-.1-.05-.25-.05t-.25.05q-.05 0-.05.05v.05h-.05v-.05q0-.05-.1-.05-.15-.05-.2-.05h-.05m1.2-.9l-.05-.05-.15-.05q-.1-.1-.25-.1-.1 0-.2.1l-.15.05q.05.05.2.1h-.2q-.05.05-.05.1l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05q0-.05-.15-.1h.15q.097 0 .15-.05"/><path fill="#CCC" d="M670.65 289.55v.05l-.05.05q.05.05.15.05v.05q-.05 0-.05.05.05.05.2.1h-.25v.05q-.15 0-.2.05l-.05.05q0 .05.1.1h.55q.2-.05.3-.1.15-.05.1-.1v-.05l-.2-.05h.2v-.05q.05.05.1.05.1.05.3.05.1 0 .2-.05l.05-.05q-.05-.05-.15-.1h-.5l-.1-.05h-.05q.05-.001.05-.05 0-.05-.15-.1h-.3q-.15.05-.25.05m-.15 1q0 .05.15.1.05.05.2.05h.05q0 .05.1.05.05.05.25.05.1 0 .25-.05.05-.05.05-.1.2 0 .25-.05l.1-.05q-.05-.05-.15-.1h-.25q-.15.05-.25.05h-.1q-.1-.05-.25-.05-.2 0-.3.05l-.1.05m1.4-.2q-.05 0-.05.05.05.05.1.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05v-.05h.3q.15-.05.05-.15h-.05q0-.05-.05-.05-.1-.05-.25-.05h-.15l-.1.05q-.1 0-.1.05 0 .097.1.1h-.1q-.1 0-.25.05m.35.35q-.15 0-.2.05-.15 0-.1.05v.05h-.1q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1.05 0 .05-.05.1 0 .1-.05-.1-.05-.15-.05-.1-.05-.25-.05m.8.05q-.1 0-.2.05-.05 0-.05.05l.05.05-.05.05q.05.15.2.15.1.05.3.05h.1q.1.05.15.1h.25q.05.05.15.1h.5q.1-.05.05-.1 0-.05-.1-.05-.1-.05-.2-.05 0-.05-.1-.15h-.45v-.05q0-.05-.15-.05v-.05q0-.05-.15-.05-.1-.05-.3-.05"/><path fill="#CCC" d="M673 291.35h.25q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.35-.05-.1 0-.15.05-.15 0-.15.05l.2.1h.25m-.95.2q.05-.05.05-.1l-.2-.05h.15q.1-.05.1-.1-.05-.05-.2-.1-.1 0-.2.05h-.3q-.15.05-.1.1 0 .05.15.1h-.05l-.1.05q0 .05.2.1h.25q.1-.05.25-.05m.6.1q-.1 0-.1.05t.2.05q.05.05.25.05.1 0 .25-.05v-.05h.25q.1 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05l.05.05q-.1-.05-.25-.05t-.2.05"/><path fill="#CCC" d="M671.15 291.3h-.65q-.05.05-.05.1.047.047.175.1-.131-.05-.225-.05-.2 0-.25.05-.1 0-.1.05H670q-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.2v.05l.05.05q.15.05.3.05t.25-.05l.05-.05q-.05-.05-.15-.1h.5q.05-.05 0-.1l-.05-.05q.1.05.3.05.2 0 .3-.05.1-.05.05-.1 0-.05-.15-.1m.1 1.05q0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.35.05.2 0 .3-.05.15 0 .1-.05m.55.2q-.15 0-.05.05 0 .05.1.05.1.1.3.1.1 0 .2-.1.05-.05.05-.1-.05-.05-.15 0-.1-.05-.2-.05-.2 0-.25.05m-.35.35q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1-.1.05-.1.1t.2.05.2.05q.15 0 .25-.05.05 0 .05-.05l.1-.05m-1.75-1.45l.05-.05q0-.05-.05-.05-.15 0-.15-.05h-.45v.05h-.4q-.1 0-.15.05-.15.05-.15.1.05 0 .2.05.1.05.25.05.1 0 .25-.1.05 0 .05-.05h.05q.1.05.25.05.1 0 .25-.05m8.55-.15q.05 0 .1.05.15.05.25.05.2 0 .25-.05h.15q.1 0 .15.05h.5q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.25-.05h-.1q-.05 0-.2-.05h-.5q-.15 0-.2.05-.05.05-.05.1m-1.05.8v.05q0 .05.15.1.1.05.3.05.1 0 .25-.05.05-.1.05-.15 0-.05-.2 0-.1-.05-.25-.05t-.3.05m-.45-.65q.1 0 .2-.05.15 0 .1-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.05.05.2.05.1.05.25.05m-.9-.1q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5m.35.15q-.05-.05-.2-.05-.1-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.15.1h.5q.15-.05.15-.1m.25.85q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.1.1h.5q.1-.05.1-.1t-.15-.05m.1-.75l-.05.05q0 .05.1.1h.5q.05-.05.05-.1l-.1-.05q-.15-.05-.3-.05t-.2.05m-.4 1.7q-.15 0-.15.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.05m-.6-2.2q.1 0 .1-.1 0-.05-.2-.1H675q-.1.05-.1.1 0 .1.15.1.2.05.3.05.1 0 .2-.05m-.75.95q.1-.05.1-.1.1-.1.15-.1.2 0 .25-.05.05 0 .05-.05l-.1-.1h-.35q-.15.05-.2.05-.15.05-.1.1h-.45q-.15.05-.05.15 0 .05.1.1h.6m-.95.55l.15.15h.5q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05m14.6-7.35q-.1 0-.1.05t.2.05q.05.1.25.1.1-.1.25-.15v-.05q0-.05-.15-.05-.1-.05-.25 0-.15 0-.2.05m-.75.75q-.1-.05-.2-.05h-.05q-.15-.05-.35-.05h-.2q-.1 0-.15.05v-.05l-.15-.05h-.1v-.05q0-.05-.05-.05v-.05q.05.05.15.05.15 0 .25-.05.05 0 .05-.05l-.1-.1h-.1q.102-.002.15-.05l.15-.05q0-.097-.15-.1.153-.002.25-.05l.05-.05v-.05q.15-.05.05-.1 0-.05-.15-.1-.2-.05-.45-.05-.15 0-.35.05-.05 0-.05.05-.15-.05-.3-.05 0 .05-.05.05h-.25q-.25 0-.35.05-.15 0-.1.05 0 .1.15.1.048.048.15.05-.1.002-.1.05 0 .1.2.15h.325q-.186.004-.325.05-.1.05-.1.1h-.1q-.05.05-.05.1t.15.05q.15.05.25.05h.05q0 .05.2.1h.05q0 .05.15.1.15 0 .3-.05h.15v.05q0 .05.25.1-.15 0-.35.1-.05.1-.05.15v.05q.05.05.15 0 .15.05.25.05h.2q.15 0 .35-.05.1 0 .1-.05-.05 0-.05-.05v-.05q.25 0 .35-.05.15-.1.1-.15 0-.05-.2-.1m-1.65-.75h.25q0-.05.1-.05.05 0 .05.05h.05l.05.05h-.25q-.1.05-.05.15l.15.05h-.1q-.1-.05-.3 0 .05-.15.05-.2v-.05"/><path fill="#CCC" d="M687.75 285.55h-.15q-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.05.05.05.2.05.1.05.25.05.097 0 .2-.05l.1-.05q0-.05-.15-.1"/><path fill="#CCC" d="M687.8 285.7q-.098.052-.05.1l.15.05q.15.05.3.05.1 0 .15-.05l.15-.05q-.05-.05-.2-.1h-.5m-.75.95q-.05-.05-.2-.1-.1-.05-.3 0-.15 0-.3.05-.1.05-.05.1 0 .05.1.05.15.05.3.05.2-.05.3-.1.15 0 .15-.05m-.5.25q-.05 0-.1-.05-.2-.05-.4-.05t-.35.05q-.15.05-.1.15 0 .097.1.1h-.15q0-.1-.1-.15H685q-.15.05-.15.15.1 0 .2.05.05 0 .2.05h-.1q-.1-.05-.3-.05-.15 0-.3.05v.05q-.05-.05-.1-.05-.1 0-.25.05l-.05.05.1.1h.4v.05h-.4q-.05.1-.05.15h-.05q.05.05.2 0 .1.05.2.05h.25v-.05h.05q.1.05.2.05t.25-.05l.05-.05v-.05h-.05q0-.05.05-.05.2 0 .2-.05.15 0 .15-.05l-.05-.05h.2l.05-.05q0 .05.05.05.1.05.3.05.15 0 .25-.05t.05-.1v-.05q.15 0 .2-.05.05-.1.05-.15 0-.05-.2 0l-.05-.05"/><path fill="#CCC" d="M686.25 287.6q-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05h-.05l.05.05q0 .05.05.05.1.05.25.05h.05q.2 0 .2-.05.1 0 .1-.05m.3 0q-.15.05-.25.05-.1.05-.1.1t.1.15l.15.05q.1.05.35.05.2 0 .35-.05.2-.15.15-.2l.15.05h.25q-.05.1-.05.15.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.3v-.1l-.05-.05h-.15q.15-.05.15-.1h.4q.05 0 .05-.05h.1q.05 0 .05-.05-.05-.1-.2-.1l.05-.05q.1 0 0-.05h.15q.1 0 .1-.05h.05v.05q-.15.05-.1.1.05.05.25.1.15.05.35.05h.25q.05 0 .1-.05l.15-.05h.05q.15-.05.35-.05.25 0 .35-.05l.2-.05h.1q.1.05.2.05h.2q.2 0 .35-.05.1-.05.1-.1-.05-.05-.25-.15-.15-.05-.4-.05-.2 0-.3.05-.05 0-.15.1-.05-.1-.15-.1-.25-.1-.5-.1-.3.05-.4.2-.2.05-.15.1h-.5q.1-.05.05-.1l-.05-.1q.05-.05.05-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.1q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05h-.1q-.1.05-.15.05-.1 0-.05.05l.05.05q-.05 0-.05.05h-.05v.05q0 .05.1.05.15.05.3.05 0 .05.2.1.098.098.15.1h-.05v.05h-.3q-.1 0-.15.05h-.1l-.05.05q.05.05.2.1h.05q-.098.003-.05.1h-.25q-.1 0-.2.05-.1 0-.05.05 0 .05.15.05v.05h.05l-.05.05q-.15-.05-.25-.05-.15 0-.25-.05h-.25m-1.1-2.7q.15-.05.15-.1-.05-.05-.2-.1h-.65q-.05.05 0 .1 0 .05.05.1.25.05.45.05.15 0 .2-.05m-.5.25q-.1 0-.2-.05t-.25-.05q-.1 0-.25.05-.05 0-.1.05h-.45q-.05.05-.05.1h-.4q-.15 0-.25.05h-.3q-.05.05-.05.15 0 .05.15.05 0 .047.1.05h-.4q-.05-.1-.3-.2.15 0 .2-.05l.05-.05-.1-.1h-.5q-.05.05-.1.05l.05.05.1.05h-.35l-.1-.05q-.1-.05-.25-.05-.25 0-.35.05-.15.05-.1.1 0 .1.15.15.15 0 .25.05.05.1.2.15h-.1q-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.25.05.15.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05.15 0 .25-.05.1 0 .05-.05 0-.05-.15-.05-.048-.048-.15-.05.152-.001.25-.05.05.05.15.1h.6q.15-.05.05-.1h.15q.1-.05.25-.1l.05-.05h.05q.2 0 .3-.05.15-.05.05-.15v-.05q.1.05.15.05.1 0 .15-.05 0 .05.15.05.15.1.3.1.1 0 .15-.1.15 0 .15-.05-.05-.05-.2-.05.15-.05.15-.1m-3.35.6q-.05 0-.15-.05.195.049.525.05-.131.003-.225.05-.1-.05-.15-.05m3.45.2q-.1.05-.1.1.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.1h-.5"/><path fill="#CCC" d="M685.25 285.85q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.05 0-.05.05t.15.05q.15.05.3.05.1 0 .15-.05.15 0 .15-.05m-1.2-.3q-.1.05-.1.1l.2.05q.05.05.25.05.1 0 .25-.05v-.05q0-.05-.15-.1h-.45m.15.6q.2-.05.15-.1 0-.1-.25-.15h-.4q-.2 0-.4.05.05.05 0 .05h-.25q-.1.05-.05.1 0 .05.05.15h.05q.1 0 .1.05h-.1q0 .05.2.1h.25q.1-.05.25-.05 0 .05.1.05.15.05.25.05h.2q0 .05.1.1.2.05.3.05.2 0 .25-.05h.05q.25 0 .3-.05.05 0 .1-.05.1-.05.1-.1l-.2-.1h-.6l-.05.05h-.05v.05h-.15q-.05-.05-.15-.1h-.3q.102-.003.15-.1m.15.55q-.15 0-.15.05t.2.1h.45q.1-.05.1-.1l-.15-.05h-.15q-.1-.05-.15-.05-.15 0-.15.05"/><path fill="#CCC" d="M683.7 286.45h-.2q-.15 0-.25.05v.05q0 .05.1.1h.25q.2 0 .25-.05.05-.05.05-.1l-.2-.05m-.1.25h-.1q-.1.05-.1.1l.15.05q.15.05.3.05l.2-.1q.05 0 .1-.05 0-.05-.2-.1-.1 0-.25.05h-.1m0 .65h.1q.15-.05.1-.1 0-.05-.15-.05-.05-.05-.25-.05h-.05q-.1.05-.15.05h-.5q-.05.05-.05.1l.05.05.2.1h.05q.047.047.225.05h-.475q-.1.05-.1.1.05 0 .15.05.15.05.25.05t.25-.05q.05 0 .1-.05 0 .05.05.05.15.05.25.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.45q.103-.003.15-.05.1 0 .05-.05v-.05m-.25.15l-.05.05q-.05 0-.1-.05h.15m1.35.2h-.15q-.05-.05-.2-.05-.15.05-.25.1.05 0 0 .05v.1l.1.05h-.1q-.15.05-.05.1-.15.05-.15.1.05.05.2.05.05.05.25.05.1 0 .2-.05h.3q.15 0 .2-.05h.05v.05h.3v.1h-.45q-.1.05 0 .05l-.1.05q0 .048.1.05-.202.002-.3.1-.15.05-.1.15-.15 0-.35.05-.05.05-.05.1l.1.1q0 .05.1.05h.05q.1.05.3.05h.05q.2-.1.3-.1.2-.05.1-.15h.4q.1-.05.05-.1 0-.1-.15-.1-.1-.05-.15-.05-.05 0-.05-.05h.35q.1-.05.1-.1 0-.048-.05-.05h.25l-.15.1.2.1h.05q.141.047.25.05h-.1q-.15.1-.15.15.05 0 .15.05h-.1l-.05.05q0 .05.15.1h.25v.1l.05.05h.1l.05.05h-.15l-.05.05q0 .05.05.05 0 .05.05.05h.5q.1-.05.1-.1-.05 0-.1-.05h-.1q.102-.002.15-.05l.05-.05V289l-.1-.05h-.1q-.05-.05-.15-.05h-.05v-.05q-.1 0-.1-.05h.1l.05-.05v-.05q-.05 0-.15-.1.15 0 .15-.05.15-.05.1-.1 0-.05-.05-.1.05 0 .05-.05-.001-.05-.15-.1h-.1q0-.1-.15-.1v-.05h-.2q-.05-.05-.25-.05-.15 0-.3.05h-.05v.05l-.05-.05h-.15q-.05-.05-.15-.05-.15 0-.2.05h-.05q-.05 0-.05-.05h-.25q-.05-.05-.1-.05l-.1-.05h.15q.05-.1.05-.15 0-.05-.05-.05"/><path fill="#CCC" d="M687.65 288.4q.05 0 .05-.05t-.2-.1h.25q.15-.05.15-.1-.1 0-.2-.05t-.25-.05q-.1 0-.25.1h-.15l-.05.05h-.1l-.05.05v.05h.05q0 .05.15.05-.05.001-.05.05l.05.05h.1q.05.05.15.05h.1q.1-.05.25-.1m-3.8-.4l.1-.05q-.05-.05-.1-.05 0-.1-.05-.1h-.5q-.1 0-.2.1h-.05l-.05.05q0 .05.05.1h.75l.05-.05m0 .35q-.2-.05-.35-.05h-.15q0-.05-.05-.05 0-.05-.1-.05-.1-.05-.25-.05t-.25.05h-.05l-.05.05q.05.05.15.1h.25v.1q0 .05.1.05t.1.05h-.1q-.05-.05-.1-.05h-.05q-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05l-.1.05q0 .047.1.05h-.1q-.1-.05-.2-.05-.2.05-.25.1l-.15.1q.05.05.15.05-.15.05-.15.1.05 0 .2.05.1.05.3 0 .2 0 .3-.05l.05-.05q0-.05-.1-.1l-.05-.1h.35q.05.1.15.15h.5q.05-.05 0-.15l-.05-.05q.1.05.35.05.2 0 .3-.05h.05q.15-.05.15-.1-.05-.1-.25-.1m.25 1.6q.05-.05.05-.1l-.1-.05q-.2-.05-.35-.05-.15 0-.15.05l-.15.05q0 .05.2.1.048.048.25.05-.154.002-.25.05-.05 0-.05.05h-.05q-.15-.05-.25-.05-.2 0-.3.05-.15 0-.05.05 0 .05.1.15h.5l.1.1h.55q.05-.05 0-.1v-.1h.1q.15-.05.1-.1 0-.05-.2-.05-.099-.049-.25-.05.055-.002.2-.05m.3.7q.05.05.15.1h.5q.048-.048.1-.05h-.05q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05-.1 0-.1.05m.45-.75q-.05 0-.1.05-.05 0-.05.05l.1.1h.5q.1-.1.05-.15 0-.05-.1 0-.15-.05-.3-.05h-.1m.85.4q-.1 0-.1.05.05.05.15.1h.5q.15-.05.05-.1 0-.05-.1-.05-.2-.1-.3-.1-.15 0-.2.1m.05.4q-.1.05-.2.05-.15.05-.1.1h.1q0 .05.05.05.15.05.3 0h.1l-.1.05v.05q.05 0 .15.1h.1q-.106.003-.2.05v.2q0 .05.1.05.2.05.4.05.15 0 .15-.05.2-.05.2-.1l-.1-.05q.05 0 .05-.05t-.2-.05q-.048-.048-.1-.05h.1q.15-.1.05-.15l-.1-.05q-.1-.05-.25-.05-.05 0-.1.05v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.3m2.5-2.95l.05.05q.05.1.15.1.05.05.15.1h.05q.15.05.3.05.1.05.15.05h.05q.05.05.1.05h.3q.25 0 .5-.05.099-.099.1-.15v-.05l-.05-.1q.053.1.15.1l-.1.05q.001.05.1.05 0 .05.05.05h.05q0 .049.05.05-.05.001-.05.05v.05l.2.05.05.05h.35q.05-.05.15-.05v-.05q0-.05-.15-.1-.048-.048-.1-.05h.05l.05-.05q-.05-.05-.15-.05l-.1-.05h.15q.1 0 .15-.1.15 0 .15-.05.05-.05 0-.05v-.05q-.05-.05-.25-.1-.2-.1-.5-.1-.25 0-.45.1-.1.05-.1 0h-.45l-.05.05q-.1 0-.1.05.097.048.15.05h-.45l-.05-.05h-.55q-.1.05-.1.1m1.675.05q-.126-.048-.225-.05h.1l.125.05m.225.15v-.05l-.05-.1q.053.1.15.1l-.1.05"/><path fill="#CCC" d="M688 288.2q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .2-.05.25.05.45.05t.3-.05h.1v.05h.05v.05q0 .05.15.1h.3q-.05.05-.05.15.05 0 .2.05.1.05.25.05t.3-.1q.049-.099 0-.1h.1q.05.1.2.1.05.05.25.05.1 0 .2-.05.1 0 .1-.1h-.1q0-.05-.05-.1h-.3q-.05-.05-.1-.05 0-.05-.05-.05h-.4q-.05 0-.1.05l-.05.05h-.2q.05-.001.05-.05v-.05h.05q.1-.05.1-.1-.1-.05-.2-.05v-.05h-.25q-.15 0-.3.05-.05 0-.05.05l-.05-.05q0-.05-.2-.1h-.1q-.15-.05-.3-.05h-.3q-.05.05-.15.05-.05 0 0 .05H688m-.7.9q.05.05.2.1.25.05.45 0 .15 0 .35-.05h.05v.05q0 .05.15.1h-.15q-.1.05-.1.1l.05.1q-.1-.1-.25-.1-.1.1-.25.15l-.1.05q.05.05.2.1.1 0 .2-.05h.1q.05.05.15.1h.25q0 .05.05.05h.15q.048.048.1.05h-.3l-.05.05q-.05 0 0 .05l.05.05h.15q.05.05.15.05.15 0 .25-.05h.05v-.05h.15q.1.05.15.05h.05q.15 0 .25-.05l.05-.05v-.05h-.05q0-.05-.1-.05h-.2q.05-.05.05-.1h-.05v-.05h.25l.05-.05h.25q-.05.002-.05.05h-.15q-.05.05 0 .05 0 .05.15.05.1.05.25.05h.1q.05 0 .1-.05.15 0 .15-.05h-.05q0-.05-.15-.05-.048-.048-.1-.05h.1q-.048-.002 0-.05.05.05.15.05h.25q.1-.05.2-.05h.15q.15 0 .25-.05.05-.1.05-.15-.05-.05-.15-.05-.1-.05-.3-.05-.1 0-.2.05t-.15.05q-.2 0-.25.05h-.25v-.05q.1 0 .1-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.05.05l.1.05h-.45q-.1.1-.1.15h-.15q.15-.05.1-.15 0-.05-.1-.05l.1-.05h.1v-.05h.2q.05-.05 0-.1 0-.05-.1-.1h-.5l-.1.05h-.05v-.05q-.05-.05-.15-.05-.1-.05-.2-.05-.25-.05-.5-.05l-.3.1q-.15.05-.15.1m2.45.4l-.05-.1h.05v.1m-2.25-.75q-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1h-.05q-.05.05 0 .05v.1h.1q.1.05.2.05h.05q.2 0 .25-.05.05 0 .05-.05l.05-.05m-.35 1.6q-.1 0-.25.05v.05q0 .05.15.05.1.05.25.05t.2-.05q.1 0 .1-.05t-.2-.05q-.05-.05-.25-.05m-.1.35q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05m-4.45-5.7v-.05q0-.05-.1-.1-.15-.05-.3-.05t-.15.05q-.15.05-.15.1l.2.05q.05.05.25.05.1 0 .25-.05m-.15.9q-.1 0-.1.05.05.05.15.05.1.05.25.05h.05q.1 0 .2-.05.05 0 0-.05v-.05h-.05q-.2-.05-.3-.05-.2 0-.2.05m-.45.6l.05-.05q-.05-.05-.2-.1-.1-.05-.3-.05-.1 0-.3.05-.1 0-.2.05-.05 0-.05.05-.15 0-.25.1l-.05.05q.05.05.2.1.05.05.15 0-.1.1-.05.15 0 .05.15 0 .15.05.35.05h.1q0 .05.15.05.249.05.35.05-.05.001-.05.1H682q-.1 0 0 .05 0 .05.1.05.1.05.25.05.1 0 .25-.05.1 0 .1-.05-.05-.05-.2-.05-.049-.098-.1-.1.1 0 .1-.05.2-.05.15-.1 0-.05-.2-.1-.1 0-.15-.05.05 0 .05-.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.048-.048-.1-.05h.1q.2 0 .35-.05m-.4.15q.05.05.15.05v.05q-.1-.05-.15-.05v-.05m-.55.65q.1.05.15.05h.3q.15 0 .25-.05t.05-.1l-.2-.05q-.05-.05-.25-.05-.05 0-.1-.1-.1 0-.25.1h-.25q-.1.05-.1.1.05.05.2.05.1.05.2.05m-.1.35q.1 0 .1-.05t-.15-.1h-.2q.05-.05 0-.1l-.1-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05H680q.05.05.15.1h.25q-.05.05-.05.1l.05.05h.05q.15.05.25.05h.05q.15 0 .2-.05"/><path fill="#CCC" d="M681.8 287.55h-.25v.05q-.1 0-.05.05 0 .05.1.05.15.05.3.05h.1q.05 0 .1-.05h.1q-.05.05-.05.1h-.35q-.15.1-.05.15 0 .05.1.05.2.05.3.05.15 0 .2-.05.1 0 .1-.05h.15q.1 0 .15-.05.15 0 .15-.1 0-.05-.2-.1h-.35q.05-.05 0-.1l-.05-.05q-.143-.048-.25-.05h.45q.2-.05.2-.1-.05-.05-.25-.1-.05-.05-.25-.05-.15 0-.3.05-.1.05-.05.1 0 .05.15.1-.15 0-.2.05m1.1-.75h.2q.15-.05.1-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.25m-.3-.3h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.3m-2.75-1.15h-.05q-.05-.05-.25-.05-.1 0-.25.05l-.05.1-.1-.1h-.5q-.05.1-.05.15 0 .05.2.05.1.05.2.05.15 0 .25-.05l.05-.05q0 .05.1.05t.25.05q-.1 0-.1.05.1.05.2.05.1.05.3.05.2 0 .3-.05h.3q.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3q-.15 0-.2.05-.05 0-.05-.05t-.05-.05q-.2-.1-.4-.1m.2.75q.05 0 .1.05.2.1.4.1.15-.1.2-.15.15-.05.15-.1-.048-.048-.15-.05.1-.002.1-.05 0-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05l-.05.05q-.1.05-.05.1v.05m-.9-1.05q.05-.05.05-.1t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.1h.5m-.3 1.1h.05l.05.1h.175q-.131.003-.225.05l-.05.05q0 .05.15.1t.25.05q.15 0 .25-.05.05-.05.05-.1l-.15-.05q-.094-.047-.2-.05h.25q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05h-.15q-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.1h.3m.45.75h-.05q0-.05-.05-.1h-.5q-.1.05-.1.1h.05v.05q0 .05.15.05 0 .1.15.1h.15q.102-.003.15-.1.05 0 .05-.05v-.05"/><path fill="#CCC" d="M679 287.15q-.05 0-.05.05.05 0 .2.05.05 0 .15.05h.4q.15 0 .25-.05.15 0 .1-.05 0-.05-.2-.1h-.15q-.05-.1-.15-.1-.1 0-.1.1h-.35q-.1.003-.1.05m1.7.65h-.05v.1q-.05-.1-.25-.1-.1 0-.25.1-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.55q.05-.05.05-.1l-.1-.1q-.15-.05-.3-.05t-.2.05m-.25.45q-.1.05-.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.05.05.15.05.1.05.2.05.15 0 .25-.05.05 0 .05-.05.15-.1.15-.15h-.2q-.05-.05-.25-.05-.1 0-.2.05l-.1.05q-.05 0-.1-.05h-.5m.4.3h-.2q-.1.05-.1.15l.15.05q.15.05.25.05t.25-.05l.05-.05q0-.1-.1-.15h-.3"/><path fill="#CCC" d="M680.75 288.9q0 .05.1.05v.1q.05.05.15.1h.6q0-.05.05-.05 0 .05.15.05.05.05.25.05.1-.05.25-.1.05-.05 0-.05 0-.05-.1-.1-.1 0-.2.05h-.35l-.15-.05h-.05v-.05q0-.05-.15-.05-.05-.05-.1-.05h-.15q-.15 0-.2.05-.1 0-.1.05m-1.65.7h.05q.1.05.25.05h.25l.05.05h.45q.15-.05.15-.1h.15q.15-.05.15-.1h.05q.05-.1.05-.15 0-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.05 0-.05.05v.05h-.1q-.1 0 0 .1h-.25q0-.1-.15-.15-.1 0-.25.05h-.2q-.15.1-.15.15.05 0 .15.05m.35.3q0-.05-.15-.1h-.5q-.15.05-.15.1-.05 0-.15.05-.1.05 0 .05 0 .05.05.1h.45q.1 0 .15-.05 0 .05.05.05.188.047.3.05.2 0 .3-.1.15-.05.15-.1-.1-.05-.2-.05h-.3"/><path fill="#CCC" d="M679 290.15q-.1.05-.1.15.05 0 .2.05.1.05.2.05.15 0 .25-.05l.1-.05q0-.1-.15-.15h-.5m.5.65h-.5q-.1.05-.1.1.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .1-.05 0-.05-.15-.1m.05-.2q-.05.05-.05.15.05.05.2.1.15.05.35.05.25-.05.4-.1.15-.05.1-.1 0-.05-.15-.1-.05-.05-.1-.05-.15-.05-.3-.05-.15.05-.25.1h-.2m1.15-1q-.1 0-.05.05 0 .05.2.1-.1 0-.2.05h-.25q-.1 0-.25.05v.05q0 .05.15.1h-.2q-.1.05-.05.1 0 .05.1.05.15.05.25.05h.05q.15.1.25.1.15 0 .25-.1.05 0 .05-.05t-.15-.05l-.1-.05q-.05 0-.1-.05h.1l.1-.05q.1.05.15.05.2 0 .25-.05.1-.05.1-.1-.05-.05-.15-.05-.047-.047-.15-.05h.25q.05-.05.05-.1v-.1q.1 0 .15-.05.05 0 .05-.1 0-.05-.05-.05-.05-.05-.2-.1h-.45q-.1.05 0 .1v.15h-.1l-.05.05v.05m.05.75q-.1 0-.05.05 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05"/><path fill="#CCC" d="M681.8 289.95q-.15-.05-.25-.05-.2 0-.25.05-.05.05-.05.1l.2.05q.05.05.2.05.15 0 .25-.05l.1-.05q0-.05-.2-.1m0 .65q.2.05.3.05.2 0 .25-.05.1-.05.1-.1-.05 0-.15-.05-.15-.05-.3-.05t-.25.05l-.1.05q0 .05.15.1m1.1-.7l.1-.05q-.05-.05-.2-.1-.05-.05-.2-.05-.15 0-.25.1-.05.05 0 .1l.05.05h.3q.2 0 .2-.05m-.6 1.6q.1.05.2.05.15 0 .25-.05.05 0 .05-.05t-.1-.05q-.2-.05-.3-.05-.1 0-.2.05-.1 0-.1.05t.2.05m.95.65q-.15.05-.15.1.1 0 .2.05t.25.05l.3-.1.05-.05q0-.05-.1-.1-.2 0-.4.05h-.15m-1.7-.65q.05 0 .05-.05t-.1-.05q-.15-.05-.25-.05.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .05.1.1h.25q-.05.002-.05.05-.1 0-.1.05t.15.1h-.05q-.05 0-.05.05l.1.1h.55l.1-.05q.1-.05.1-.1l-.2-.05m-.3.7q-.1 0-.05.05 0 .05.1.1h.5q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05-.15 0-.25.05m-.05-.45q-.15.05-.15.1.1.1.2.1.1.05.25.05.1 0 .25-.05.1 0 .05-.1 0-.05-.15-.1h-.45m2.2.7q0-.05-.05-.05-.15-.05-.3-.05t-.25.05q-.05 0-.05.05.05.05.15.1h.5q.1-.05 0-.1"/><path fill="#CCC" d="M680.7 291.55q.15-.05.05-.1 0-.05-.15-.1h-.25q0-.05-.05 0h-.5q-.05.05 0 .1 0 .05.05.05.15.05.2.1.1.05.35.05.2-.05.3-.1m-1.05.8q.1-.05.05-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.5m-1.25.2q0 .05.1.05.1.05.2.05.2 0 .25-.05.15 0 .15-.05-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05m.45.65q-.15.05-.05.1 0 .05.1.1.2.05.4.05t.25-.05q.15-.05.15-.1-.05-.05-.2-.1h-.65m9.45-1.85q-.05.05 0 .05 0 .05.05.1h.55q.05-.1.05-.15.1 0 .15-.05l.15-.05q-.05-.05-.2-.1-.1-.05-.25-.05-.026 0-.05.025.05-.131.05-.175h-.2q-.1-.05-.25-.05-.1 0-.25.05h-.1q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .1.15.15h.45l.05-.05q0 .05.1.05h.45q-.1.05-.15.05-.15.05-.05.1h.05q-.15.05-.2.05m-.9.7q.05-.05.05-.1l-.15-.1q-.15-.05-.25-.05-.15 0-.25.05l-.05.1q0 .05.15.1h.5m.3.1h-.3q-.2 0-.3.05-.1.05-.1.1.05 0 .15.05.15.05.3.05t.2-.05q.1.05.15.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.3m-1.3 1.45q.05-.05.05-.15-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .1.15.15h.5m-1.25-1.3q0-.05-.1-.1h-.5q-.05.05-.05.1t.15.05q.1.05.2.05.2 0 .25-.05.05 0 .05-.05m-.5-.8q0-.05-.2-.05-.1-.05-.3-.05-.1 0-.25.05-.05 0-.05.05t.2.1h.5q.1-.05.1-.1m-.2 1.05q.05.05.2.05.05.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.5q-.1.05-.1.1m.65 1.2q0 .05.15.1h.45q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m14.25-10.35h-.4q-.2 0-.35.05-.15.05-.1.1.05.05.25.1.1.05.35.05.15 0 .35-.1.2-.05.15-.1-.1-.05-.25-.1m-10.15.35q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45m-.45.7q-.15 0-.15.05.05.05.2.05.1.1.25.1.1 0 .2-.1.15 0 .1-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05"/><path fill="#CCC" d="M689.45 284.45q-.1.05-.05.1 0 .1.1.15.2.05.35.05h.1q.1 0 .15-.05h.15q.1 0 .15.05h.25q.25 0 .3-.05h.05q.1 0 .15.05h.05q-.054.002-.2.05-.1.05-.1.15.05.05.25.1.25.05.55 0h.3q.1.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.05-.05-.05-.1-.05h-.1q0-.1-.2-.15-.15-.05-.25-.05.1-.05.1-.15 0-.049-.05-.05.101 0 .25-.05h.05q.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1h-.55q-.15 0-.25.05t-.05.1h-.15l-.2.1q-.1-.05-.2-.05-.097-.048-.2-.05.1-.002.1-.05.15 0 .1-.05 0-.1-.2-.1h-.05q-.1-.05-.25-.05-.25 0-.3.05-.1 0-.1.1.05.05.15.05.097.048.15.05-.15.001-.15.05h-.7m2.55-.6h-.5q-.1.05-.05.1l.1.05q.149.05.3.05-.05.001-.05.05 0 .05.2.05.05.05.2.05.15 0 .25-.05v-.05q0-.05-.05-.1h-.3v-.05l-.1-.1m1.45-.2q-.2.05-.15.1-.1.1-.1.15.05.05.25.1t.4.05q.25-.05.3-.1.2-.05.2-.1.05-.1.05-.15-.05-.05-.2-.1h.15l.05-.05q0-.05-.15-.1h-.45q-.15.1-.15.15-.1 0-.2.05m-.75.45q.05.05.15.05v.05q0 .047.1.05h-.1q-.2 0-.35.05-.1 0-.05.1l.05.05h.1q.15.05.35.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.05-.1h.2l.05-.05v-.05l-.05-.05q.05 0 0-.05l-.15-.05q-.1-.05-.25-.05-.1 0-.2.05l-.15.05"/><path fill="#CCC" d="M694.1 284.05q-.25.05-.35.1-.15.05-.1.1 0 .05.2.1.097.048.2.05-.151.001-.2.05-.1.05-.1.2.05 0 .05.05h-.15q-.3 0-.45.05h-.2q-.15 0-.3.05-.2.05-.1.1 0 .05.25.1.15.05.35.05h.25q.15.05.3.05h.1q.05.05 0 .05h-.05q-.2 0-.35.05-.3 0-.45.05-.25.05-.15.2 0 .1.3.15.05 0 .2.05h.1q-.1.05-.1.1.1.05.15.05.1.05.25.05.1 0 .2-.05h.1q.05 0 0-.05 0-.05-.1-.05v-.05q.1 0 .1-.05.1-.05.1-.1.05 0 .05-.05v-.1q.05 0 .05-.05v-.05h.2q.1-.1.1-.15h-.2l.05-.05.1-.1q.05-.05.05-.1-.048-.048-.15-.05h.1q.25 0 .45-.1h.05q.05.05.25.15.3.05.55.05.3 0 .4-.05.25-.1.2-.15 0-.15-.3-.2-.2-.05-.5-.05-.2 0-.35.05h-.15l-.05.05q0-.1-.25-.15-.099-.05-.3-.05.053-.002.15-.05.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05m2.7-.4q0 .05.1.1h.65q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1m.2.4q-.1.05-.1.1.1.05.15.1h.65q.15-.05.05-.1 0-.05-.1-.1-.2-.05-.35-.05-.2 0-.3.05m-.2.45q-.1 0-.05.05l.05.1q-.05 0-.05.05.05.05.25.1h.35q.2 0 .35-.05.2-.05.15-.1 0-.15-.25-.2h-.3q-.15-.05-.25-.05-.15.05-.25.1m1.5.3q0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25 0-.3.05-.2.05-.15.1m.25.5l-.05.05q-.05 0 0 .1 0 .05.1.1.2.05.35.05.2 0 .25-.05.05-.05.15-.05h.4q.15-.05.05-.15h.1q-.1.1 0 .1 0 .1.2.15h.55q.25 0 .45-.05.15-.05.15-.2l-.05-.05q.3 0 .5-.05.1-.05.1-.1-.05-.05-.05-.1-.05-.05-.2-.05-.25-.05-.55-.05h-.05q-.25 0-.35.05-.2.05-.1.15-.1-.05-.25-.1t-.35 0q-.25 0-.4.05-.15.05-.1.1 0 .049.05.05-.101 0-.25.05h-.65m-1.1.6q.1 0 0-.05v-.05h.4q.3 0 .45-.05.15-.1.15-.15-.1-.1-.25-.15-.25-.1-.55-.1-.25.1-.4.15-.1.05-.15.05-.05.05 0 .1 0 .048.05.05H697q-.2 0-.25.05-.15.05-.15.1.1 0 .15.05.05.05.1.05t.15.05h-.3q-.1.05-.1.1.1 0 .15.05.1.1.25.1t.25-.1l.05-.05q0-.05-.15-.1.15 0 .2-.05.05 0 .1-.05"/><path fill="#CCC" d="M696.3 285.8q.2-.05.15-.1-.05-.1-.25-.15-.2-.05-.5-.05-.2 0-.45.05 0-.05-.15-.05-.15-.05-.4-.05-.15.05-.25.05l-.05.05-.15.05-.05.05q.05.05.25.1l.1.05q.15 0 .25-.05h.45q0 .05.1.05.3.1.55.1.3 0 .4-.1m.75 1.1q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.1.1.2.1.05.1.1.1h.5l.05.05q0 .05.15.05v.05q.05.05.15.1.25.05.45.05.15 0 .25-.05h.05q.15-.05.1-.1v-.05h-.05q-.05-.05-.2-.05-.1-.05-.3-.05l-.05-.1h-.3q-.05-.05-.05-.1"/><path fill="#CCC" d="M697.9 287.35q-.05.05-.05.1l.15.05q.15.05.25.05v.05h-.05q-.15.05-.15.1l.2.1h.05q.05.1.15.1h.1q-.05.05-.2.05-.1.05-.05.1v.05q-.05-.05-.15-.05-.15 0-.25.05-.05.05 0 .05 0 .05.05.1h.5l.1-.05q.1 0 .3-.05h.3q.05 0 .1-.05h.1v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.05l.05-.1h.1l.05.1h.2q-.1.003-.1.05v.2q.1.1.2.15h.8q.1-.05.1-.1.05 0 .1-.05.2-.05.15-.15-.05-.05-.25-.1-.246-.148-.55-.15.15-.002.15-.05l.05.05q.3.05.55.05.3 0 .4-.05.2-.1.1-.15v-.05h.15q.05 0 .1.05h.25l.05.05q0 .1.25.15.2.1.5.1.25 0 .4-.1.2-.05.2-.15.05.05.1.05.3.05.55.05.3 0 .45-.1.15-.05.1-.15 0-.048-.1-.1.205.1.5.1.25 0 .4-.1.2-.05.15-.1 0-.05-.15-.1.1-.05.15-.05.15-.05.15-.15-.1-.1-.25-.15-.15-.05-.35-.05-.2 0-.4.05-.05.05-.1.05h-.25q-.15 0-.3.1-.2.1-.1.15 0 .1.25.1v.05q0 .05.15.1h-.55q-.25 0-.4.05-.2.05-.15.1v.05q-.05-.05-.15-.05-.15-.05-.25-.05-.1-.05-.25-.05-.05 0-.1.05v-.1h.45q.1 0 .2-.05t.05-.1q0-.05-.15-.1-.199-.05-.3-.05.05-.001.05-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .1.15.1 0 .05.05.05l-.1.1q.05.05.2.1l.1.05q-.15-.05-.2-.05-.1-.05-.35-.05h-.05q-.2 0-.35.05-.1 0-.05.05l-.05.1q-.05 0-.1-.05-.25-.05-.55-.05h-.05q-.25 0-.4.05-.15.1-.1.15h-.05q-.25-.05-.45-.05h-.1q.109-.003.25-.05l.05-.05q0-.05-.1-.1-.2-.05-.4-.05-.1 0-.15.05-.15.05-.15.1h-.05q0-.05-.05-.05h-.25q0-.05-.2-.1-.1.05-.2.05h-.25m-1.7-.75q0-.05-.1-.05-.1-.05-.25-.05t-.25.05q-.05 0-.05.05l.1.1h.5q.1-.05.05-.1m-.1.8q.1 0 .05-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05 0 .05-.05.05 0 .05-.1.05 0-.048-.05-.05h.15q.05-.1 0-.15h-.1q-.15-.05-.3-.05t-.25.05l-.05.05q0 .048.125.05-.179.002-.275.05-.2.05-.15.1 0 .1.2.1-.05.05-.15.05l-.05-.05h-.55q-.05-.05-.1-.05l-.05-.05q-.3-.05-.55-.05-.3 0-.4.05h-.1q-.1.1-.1.15h-.15q-.15 0-.2.05-.15 0-.15.05.05.05.2.05.05.05.25.05.1 0 .25-.05l.05-.05.05.05q.25.05.55.05.25 0 .4-.05.25.05.45.05.15 0 .2-.05.1-.05.15-.05h.05q.1.05.25.05.1 0 .25-.05.1 0 .05-.05v-.05h.2q.1-.1.1-.2.1.05.25.05.1 0 .25-.05"/><path fill="#CCC" d="M696.7 287.35h-.3q-.15 0-.15.05-.15.05-.1.1 0 .1.25.15.2.05.45.05h.4q.05-.05.1-.05t.05-.05h.2q.1-.05.1-.1h-.05q0-.05-.1-.05-.1-.05-.25-.05h-.05q-.15-.05-.2-.05h-.35m-.8-2.25q-.2-.05-.35-.05-.2 0-.3.05-.05 0-.05.1.05 0 .05.05-.05 0-.05.05.05.05.15.05.15.1.25.1t.25-.1q.1 0 .05-.05 0-.05.05-.05.15 0 .05-.05 0-.1-.1-.1m-.8.7h-.15q-.2.05-.3.05-.1.05-.15.05-.05.05-.05.1.05.05.2.1h.05q.05.05.1.15-.05 0-.05.05h.05q0 .1.25.15h.5q.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.2h-.05q0-.1-.25-.15h-.05l-.1-.05h-.15q-.05-.05-.15-.05"/><path fill="#CCC" d="M694.15 286.15h-.25q-.15 0-.3.1h-.05q-.05.05 0 .1 0 .05.1.05.2.05.4.05h.05q.1 0 .15-.05h.2q.1 0 .25-.05.05-.05 0-.05 0-.05-.05-.15h-.5m.3.5q-.1.05-.1.15h-.3q-.25 0-.45.05h-.05q0 .05-.05.1.05.15.25.2.145.048.325.05-.127.002-.175.05-.05 0 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05-.05-.15-.05v-.05q.15 0 .3-.05t.1-.15h.25q.3-.05.5-.1.15-.05.15-.15-.05-.05-.3-.15-.2-.05-.55 0-.15 0-.35.05h-.05m-.6 0v-.1q-.05 0-.1-.05-.15-.05-.3-.05t-.25.05h-.05v.1q0 .049.05.05h-.05q-.2 0-.25.05-.15 0-.15.05l.2.1q.1.05.3.05.1 0 .25-.05.1-.05.05-.1l-.05-.05h.05q.2 0 .3-.05m1.4 1.35q-.2.05-.15.15.1.05.25.1.3.1.6.1.25-.05.35-.15.25-.05.2-.1-.05-.1-.3-.15-.25-.05-.5 0-.3 0-.45.05"/><path fill="#CCC" d="M694.95 288.05q.1 0 .25-.05.05 0 0-.05 0-.05-.1-.15h-.45q-.15.1-.15.15.05.05.2.05.05.05.25.05m0 .55q-.1.1 0 .15h-.1q0 .05.15.05v.05q-.15-.05-.25-.05t-.25.05h-.4q0-.05-.15-.1h-.45q-.15.05-.15.1.1 0 .2.05t.25.05h.1v.1q.05.05.25.1l.05.05h-.05q-.2 0-.3.05-.1.05-.1.15v.1q0 .05.05.1.15.05.3.05h.4q.3 0 .45-.05.15-.1.1-.2 0-.1-.25-.15-.05 0-.15-.05h.05q.25 0 .35-.05.25-.05.2-.1V289q.05-.05 0-.05 0-.05-.15-.1h.45q.1-.05.1-.1l-.15-.15h-.55"/><path fill="#CCC" d="M695.4 289q-.1.05-.05.1 0 .05.15.05h.05v.05h.05q.05.05.2.1h-.15q-.15.05-.1.2 0 .05.15.1.241.048.425.05-.132.002-.275.05-.15.05-.15.1-.05 0-.1-.05-.3-.05-.55-.05-.25 0-.4.05-.2.05-.15.15h-.05q-.05-.05-.25-.05-.1 0-.25.05-.05 0-.05.05.05.05.15.05l.05.05q-.05 0 0 .05 0 .049.05.05-.051.001-.1.05h-.55q-.05 0-.15-.05-.1-.05-.2-.05-.15 0-.2.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.1.3.1h.1q.1 0 .2.05.05 0 .2.05l.05.05q0 .1.25.15.1.05.3.05-.1.05 0 .1 0 .1.2.15.148.049.3.05-.052.002-.1.05-.1.1-.1.15.05.05.2.1.15.05.3 0h.25q-.05.05-.05.1.05.05.1.05 0 .05.1.05.25.05.45.05t.3-.05q.2-.05.15-.1 0-.05-.25-.1-.2-.05-.35-.05h-.2q.15-.05.05-.1 0-.1-.15-.15-.148-.049-.2-.05.052-.001.2-.05l.1-.1h.25v-.1q0-.05-.1-.1h-.45q.109-.003.25-.05l.2-.1q.05.1.15.15.2.05.35.05.15 0 .2-.05l.05.05q.3.05.55.05h.35q.05.1.25.15h.55q.25 0 .4-.05.2-.05.15-.15 0-.05-.2-.1h.2q.05.05.05.1.05.05.25.15.25.05.55.05.2 0 .35-.05.25-.1.2-.15-.1-.1-.35-.15-.15-.05-.4-.05v-.05q-.05-.05-.25-.15-.1-.05-.35-.05-.2 0-.35.05-.2.1-.15.15v.05q-.05-.05-.15-.05-.2 0-.3.05-.05 0-.05.05h-.15q-.05 0-.05-.05t-.25-.1q-.2-.1-.5-.1-.2 0-.35.1-.1-.1-.25-.1h-.15q-.2 0-.3.1-.149 0-.15.05-.001-.05-.25-.15-.049-.049-.1-.05.05-.001.05-.05v-.05q.25.05.5.05.2 0 .25-.05h.15q.15-.05.15-.1v-.05q.05 0 .1.05.25.05.45.05t.3-.1l.1-.05h.35q.3 0 .5-.05t.2-.1q-.1-.1-.4-.15-.15-.05-.45-.05-.2 0-.45.05.05-.05.05-.15-.05-.1-.15-.1l.05-.05q.05 0 .1-.05h.45q.1-.05.05-.1 0-.05-.05-.1h.1q.15-.05.1-.1 0-.05-.15-.1-.2-.05-.35-.05-.2 0-.25.05-.1.05-.1.1l.1.1h-.25q-.05.05-.25.05h-.05l-.05-.05h-.5m-.75 1q.05 0 .1.05h-.1l-.1-.05h.1m-.25.55l.05-.05q.047.047.175.05h-.225m2.1-.95q0 .05-.05.05h-.15q.105-.002.2-.05m-2.05-1.25q-.1-.05-.25-.05-.1 0-.25.05l-.1.05q-.05 0-.2-.05-.05 0-.1-.05h.05q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.2-.05-.05-.05-.15-.05-.15-.05-.25 0-.1 0-.25.05-.1 0-.05.05 0 .05.1.05.1.05.15.05 0 .05.05.1-.05 0-.25.05t-.1.15q.05.05.25.15.3.05.5 0 .3 0 .45-.1.25-.05.15-.1v-.05q.002.05.1.05.1.05.2.05.15 0 .25-.05.15-.05.05-.1l-.1-.05m3.85.05l-.1-.05q-.2-.05-.45-.05-.15 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.35.05h.4q.15 0 .25-.05l.05-.05q0 .1.25.1.2.1.5.1.25 0 .4-.15.2-.05.15-.1 0-.1-.3-.15-.2-.05-.45-.05-.3 0-.5.1-.1.05-.1.1l-.05-.05h-.2m-.9-.4q.15-.05.15-.1-.1 0-.2-.1-.1-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5"/><path fill="#CCC" d="M697.75 289.05q-.15.05-.1.15.05.05.25.15.3.05.55.05.3 0 .4-.05.2-.1.1-.15-.05-.1-.2-.15-.25-.05-.55-.05-.25 0-.45.05m.1-.35h-.5q-.1.05-.05.1 0 .05.1.05.15.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.15-.1m-.6-.3h-.5q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1"/><path fill="#CCC" d="M698.25 289.85q.05.05.2.1h.35q-.05.05-.15.05-.1.05-.1.1.05.05.25.1.15.1.4.1h.3v-.1h.1q.05 0 .1-.05.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1h-.25q.2-.05.15-.1.15 0 .35-.05l.05-.1q.2 0 .3-.05.15-.05.15-.1-.05-.05-.25-.15l-.05-.05h.15q0 .05.15.05l.05.1v.05q0 .05.25.1.1.05.35.05.25 0 .35-.05.05 0 .05-.05.1.05.25.1t.3.05q-.1.05-.1.1h-.05q0 .05-.1.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.1.05.35.05h.25l.05-.05q0 .05.1.15.1 0 .15.05.3.05.55.05.3-.05.4-.1.2-.1.1-.2-.05-.05-.2-.15h-.15v-.05h.05q.15-.05.1-.1 0-.05-.1-.05l-.2-.1q-.15-.05-.25-.05.1-.05.05-.1l-.05-.1q-.15-.05-.25 0-.25-.05-.5-.05-.3 0-.4.05-.15 0-.2.1 0-.1-.1-.15h-.05q.049-.001 0-.05v-.05q-.1 0-.2-.05h-.05q-.2-.05-.35-.05h-.15q-.05 0-.1-.05h-.3l-.15-.05q-.25 0-.35.1-.1.05-.05.1 0 .1.1.15-.15 0-.25.1-.05 0-.1.05-.2 0-.3.05-.1 0-.05.1l.05.05q-.1 0-.25.05-.05 0-.05.05M692.6 286q0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.1-.15 0-.15.05.05.05.2.05h.25q.1 0 .2-.05.15 0 .1-.05"/><path fill="#CCC" d="M691.55 286.15q-.1 0-.15-.05h-.55q-.2.05-.25.05l-.05.1h-.15q-.15 0-.25.05-.1 0-.05.05 0 .05.15.1h.4l.15.05q.1 0 .3.05h.2v.1l.1.05h.1q.1.05.2.05.15 0 .15-.05.15 0 .15-.05v-.05q-.1 0-.2-.05h-.4q.109-.002.3-.05h.2q.2 0 .4-.1h-.1q.2-.05.15-.1h.05v-.05q0-.1-.2-.15-.106.003-.2.05h-.45m.8-.7q.05-.1.05-.15 0-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05v.05q0 .05.1.15h.5"/><path fill="#CCC" d="M691.6 285.75h-.6q-.1.05-.05.1 0 .049.05.05-.05.001-.05.05h.05q0 .05.15.1h.15q.1.05.25.05t.25-.05v-.1h-.05q.05-.05.05-.1-.05-.05-.2-.1m.2 1.1l-.05.05q0 .05.05.05 0 .05.05.05h.5q.05 0 .1-.05-.05 0-.05-.05l-.1-.05q-.15-.05-.3-.05t-.2.05m-.2.75q-.105.003-.2.05-.1.05 0 .05 0 .05.05.1.05.1.15.1.15.05.25.05.15 0 .25-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.05 0-.2-.05-.048-.048-.1-.05h.25l.05-.05q.15 0 .25-.05.05-.05.05-.1t-.2-.05q-.05-.05-.25-.05-.15 0-.2.05-.1 0-.1.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1h.15m1.05-.3h.1q.25 0 .45-.05.1-.05.05-.1 0-.05-.2-.15-.15-.05-.4-.05-.2.05-.35.15-.15.05-.15.1.05.05.25.1.1.05.25 0m-1.95-2.35q-.05-.05-.15-.05-.15-.05-.3-.05-.2 0-.4.05-.1 0-.05.05 0 .1.15.1.1 0 .2.05-.05 0-.05.05v.05q-.1-.05-.15-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.75q.05-.05 0-.1.1 0 .15-.05l.1-.05v-.05l-.2-.05q.1-.05.1-.1m-.65.95q.05-.05.1-.05v-.05q0-.05-.05-.1h-.3l.05-.05q.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1q-.05.1-.05.15h.3q.05.05.1.05h.15q.1.05.25.05-.15.05-.15.1l.2.05q.048.048.1.05h-.1l-.05.05q-.1 0-.1.1l.2.1q.1.1.3.1h.1q.25 0 .3-.1h.1q.1-.05.05-.1 0-.1-.2-.1-.15-.05-.35-.05"/><path fill="#CCC" d="M688.75 285.85l.1.05q.1.05.25.05.15-.05.25-.1l.05-.05q0-.05-.2-.1-.05-.05-.25 0-.05 0-.05.05h-.15v.1m1 .45q-.1-.05-.3-.05-.1 0-.25.1l-.05.05q0 .05.1.1.15-.05.25-.05h.3q.15-.05.15-.1-.1 0-.15-.05h-.05m-.1.4q0-.05-.2-.05-.1-.05-.3-.05-.2 0-.25.05-.1.05-.1.1.05 0 .15.05.15.05.3.05.2 0 .25-.05l.15-.05q0 .05.05.1h.45q.15.05.3.05.35 0 .45-.1.25-.05.2-.1 0-.05-.15-.1-.1-.05-.15-.05-.2-.05-.5-.05h-.2q-.1 0-.3.05-.05.05-.1.15h-.05m.35 2.25q0 .05.15.1t.3.05q.2-.05.35-.1.05-.05.05-.1-.05-.05-.2-.1-.1 0-.3.05h-.3q-.1.05-.05.1m-1.2 1.2q.05 0 .05.05h.05l.05.1h.5q.05-.1.1-.15h-.05l-.1-.05h-.05q-.1-.05-.2-.05t-.25.05h-.05l-.05.05m.95.45l-.05.05q.05.05.15.05.15.05.25.05h.05q.15 0 .2-.05.05 0 .05-.05h.15v-.05q.05.05.1.05.15.05.35.05.25 0 .45-.1.15-.05.1-.1 0-.1-.25-.15h-.4q-.25 0-.35.05-.15.05-.1.1-.15-.05-.35-.05-.1 0-.15.05-.1 0-.1.05-.05 0-.1.05m.9-.7q-.2 0-.2.05l-.1.05q.05.05.2.1.05.05.25.05.1 0 .2-.05t0-.1l-.05-.05h-.25l-.05-.05"/><path fill="#CCC" d="M690.1 290.35q.15.05.25.05h.05q.15 0 .25-.05.05 0 .05-.05 0-.1-.15-.15H690q-.05.05-.05.15h.05q0 .05.1.05m.25.4q-.05 0-.2.05h-.1l.05.05q0 .05.05.1h.5q.15-.05.15-.1l-.1-.05h-.1q-.05-.05-.25-.05m2.15-1.65l-.05-.05q-.15-.05-.35-.05-.25 0-.35.05-.15.05-.15.1h-.05q-.1.05-.05.1 0 .05.1.05.1.05.25.05h.25q.2.05.3.05.05 0 .2-.05.1.05.3.05.25 0 .3-.05.15-.05.15-.1-.05-.05-.2-.1-.2-.05-.45-.05h-.2m-.15-.25q0 .05.15.05.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.1q-.1-.05-.3-.05-.15 0-.25.05-.05.05-.05.1m.65.1q-.05.05 0 .1 0 .05.05.05.2.05.3.05.2-.05.2-.1.1 0 .1-.05-.05-.05-.15-.1-.05 0-.25.05H693m-.95-.65q-.2-.05-.35-.05h-.2q-.05 0-.1.05h-.15l-.05.05v.05q.05.1.2.15h.1q.1.05.3.05.2 0 .35-.05.15-.05.05-.15 0-.05-.15-.1m.05 1.25q-.05 0-.05.05-.15.05-.05.1.05.1.2.15h.1q.2.05.45.05t.4-.05q.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.5-.05-.3 0-.4.05"/><path fill="#CCC" d="M691.7 289.95h.2q.1 0 .15-.05l-.15-.1.1-.05q0-.05-.15-.1h-.45q-.1 0-.1.05h-.05v.05q.05 0 .15.05l-.1.05q.1.05.15.1h.25m1.15 1.55q.05.05.15.1.241.048.425.05-.13.002-.225.05l-.15.05.2.1h.5q.1-.05.05-.1l-.15-.05q-.048-.048-.15-.05.152-.001.25-.05.15-.05.1-.1 0-.05-.25-.1-.1-.05-.3-.05-.25 0-.4.05-.05.05-.05.1m-.8-.15q-.05-.05-.2-.1-.1 0-.25.05h-.1v-.05l-.2-.05q-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5q-.1.003-.1.05l.15.05q.097.048.15.05h-.05q-.25 0-.45.05h-.1q-.05-.05-.2-.05-.15 0-.25.05-.15 0-.1.05 0 .05.15.05.2.05.3.05h.1q0 .05.1.05l-.1.05q.1.05.2.15h.55q.3-.1.4-.2.2-.05.15-.1 0-.1-.25-.15-.15-.05-.25 0l.1-.1.15-.05m-.9 1.15q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1 0 .05.2.1h.6"/><path fill="#CCC" d="M690.55 291.45q.05 0 .05-.05.1 0 .05-.05 0-.1-.1-.1-.2-.05-.4-.05h-.65v.1q0 .05.15.05.1.05.2.05h.1q0 .05.1.05.1.05.3.05.1 0 .2-.05m-.75.75q.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05m-.7-.45q-.05-.05-.15-.05h-.45q-.15.05-.05.1l.1.05q.1.1.3.1.1 0 .2-.1l.05-.1m8.65-.4q-.05-.05-.15-.1-.15 0-.25.05h-.3q-.15.05-.05.1 0 .05.1.1h.35q.15-.05.2-.05.1-.05.1-.1m.1.2h-.3q-.15.05-.2.05-.1.05-.1.1.05 0 .15.05.15.05.25 0 .1 0 .25-.05l.05-.05q0-.05-.1-.1m-1.45-.6q.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05h-.05q-.05-.05-.25-.05-.1 0-.2.05t0 .05q0 .05.05.15h.45q.15-.1.15-.15h.05q.1.05.25.05.1 0 .25-.05m-.15.85h.55q.2-.05.1-.1 0-.05-.15-.1h-.55q-.1.05-.1.1.05.05.15.1m.25.55q-.1-.05-.25-.05-.1 0-.25.05-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1m1.95.1h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .3-.05.1 0 .05-.05 0-.05-.1-.1h-.35m-4.8.45l-.05.05q0 .05.15.1t.3.05q.15 0 .2-.05.15-.05.15-.1-.05 0-.2-.05-.1-.05-.3-.05-.1 0-.25.05m13.15-5.55q-.15-.05-.3-.05-.05 0-.05-.05h-.5q-.1.05-.1.1.05 0 .05.05-.1 0-.25.05-.1.05-.1.1.05.1.25.15.25.05.55.05.2 0 .35-.05.25-.05.15-.15.2-.1.15-.15 0-.05-.2-.05m-2.15-2q-.05-.05-.25-.15-.25-.05-.5-.05-.3 0-.4.05-.2.1-.15.15.1.15.25.2.25.05.55.05.25 0 .35-.05.2-.05.15-.2m1.05 3.5q-.3 0-.4.05-.2.05-.1.15.05.05.2.1.2.1.5.1.25 0 .45-.1.2-.05.15-.1-.05-.1-.3-.15-.25-.05-.5-.05m-1.7-.95q-.1 0-.2-.1-.05-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5q.15-.05.15-.1m0 .85q-.15 0-.2.05-.15.05-.15.1l.2.05q-.25 0-.35.05-.15.05-.15.15.1.05.25.1.2.05.45.05.15 0 .3-.05t.1-.1q0-.1-.25-.15.1 0 .15-.05l.05-.05q0-.05-.1-.1-.15-.05-.3-.05"/><path fill="#CCC" d="M703 289.05q-.15-.05-.4-.05-.3 0-.5.05-.1.1-.05.15 0 .1.25.1.15.05.45.05h.25q.05.05.2.15h.45q.1-.1 0-.15 0-.05-.05-.05-.15-.05-.3-.05.05-.05.05-.1-.05-.05-.35-.1m1.65.45q-.15.1-.15.15.1.1.25.15.25.05.55 0h.25q-.2.05-.15.1 0 .05.25.1.15.05.4.05.2 0 .4-.05.1-.05.1-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.2q.25-.05.2-.15 0-.05-.3-.2-.2-.05-.45-.05-.3.05-.45.15m-.45.35q-.2 0-.45.05-.15.05-.15.15.05 0 .15.05h-.15q-.25 0-.35.05-.1.05-.1.15.05.05.2.1l.1.05q.05 0 .05.05h-.2l-.05-.05h-.5q-.05.05-.05.1.05.05.15.05v.05q.05.05.2.1.15.05.3.05v.05q0 .05.2.1t.45.05q.15 0 .35-.05.05-.05.05-.1-.05-.05-.2-.1-.095-.048-.2-.05h.3q.2 0 .35-.05.25-.05.15-.15-.05-.05-.3-.15-.1 0-.3-.05h.2q.3 0 .5-.1.15-.1.1-.15 0-.1-.3-.15-.2-.05-.5-.05m3.4-1.55q.1 0 .1-.1-.05-.05-.25-.1-.1-.05-.35 0-.15 0-.35.05-.1.05-.05.1 0 .1.15.1.2.05.4.05.2-.05.35-.1m-7.3-2.25h.05q.25-.1.45-.15.15-.05.15-.1-.05-.1-.3-.15-.25-.05-.55 0-.2 0-.4.05-.05 0-.05.05-.15.05-.05.1l.2.1q.25.1.5.1m.6 2q.05.05.25.1.15.05.35.05.25-.05.35-.1.2-.05.15-.1 0-.05-.25-.1-.1-.1-.35 0-.2 0-.4.05-.1.05-.1.1"/><path fill="#CCC" d="M700.35 288.85q-.1.05-.05.1v.1q.05 0 .25.05h.05q.2.05.4.05h.15q.15 0 .3-.05.05-.05.1-.05h.1q.15.05.3.05.1-.05.15-.1.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05-.05-.05-.3-.1-.15-.05-.4-.05-.3 0-.5.05m3.3-.4q-.05-.05-.2-.15-.25-.05-.55-.05-.25 0-.35.05-.2.1-.15.15v.05h-.35q-.05.05-.05.1l.15.1q.1.05.25.05t.25-.05v-.1q.25.1.5.1.3 0 .4-.1.2-.05.1-.15m-1.9 2.2q-.2.05-.1.1 0 .05.15.1.25.05.45.05t.35-.05q.1-.05.1-.1-.05-.05-.15-.1-.25-.05-.5-.05-.2 0-.3.05m-.35.85q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.45q.15-.05.15-.1m-1.1.05h-.5q-.05.05-.05.1.05.05.15.05.1.05.2.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.05m-.85 0q.2-.05.2-.1-.05-.05-.25-.05-.05-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.1.1h.55m-53.6-4.25h-.2q-.25 0-.45.05-.15.05-.1.15.05.05.25.15.3.05.5.05.3 0 .45-.05.15-.1.1-.15v-.05h.25q.25 0 .45-.05.15-.1.1-.2-.05-.05-.25-.1-.3-.1-.55-.1-.1 0-.25.1H646q-.2.1-.15.15v.05m1.4 1.65q-.15-.05-.45-.05-.25 0-.5.05-.15.05-.15.15.1.05.3.1.25.1.5.1.3 0 .5-.1.1-.05.05-.1 0-.1-.25-.15m.2 1q.05 0 .05-.05t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.05.15.05.25.05.2 0 .25-.05"/><path fill="#317C99" d="M681.85 199.6h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M679.55 262.9l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6h-11.7"/><path fill="#317C99" d="M656.65 199.6h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M666.05 262.9h-11.7l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6"/><g transform="translate(625.4 139)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="670.15,174.5;670.15,174.5;669.553,174.791;668.888,175.108;668.328,175.444;668.013,175.474;667.916,175.777;667.651,175.832;667.651,175.832;669.256,175.895;670.963,175.994;672.629,176.061;674.29,176.167;674.29,176.167;672.632,176.121;670.975,176.235;669.253,176.167;668.818,176.166;668.256,176.121;667.654,176.109;667.654,176.109;668.687,175.977;669.547,175.753;670.385,175.612;670.646,175.596;670.988,175.49;671.237,175.458;671.237,175.458;671.739,175.656;672.31,175.677;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;672.31,175.677;672.752,175.791;673.254,175.941;673.694,176.022;674.29,176.167;674.29,176.167;671.237,175.458;661.347,174.603;651.467,173.719;641.422,172.968;638.111,172.659;634.814,172.506;633.251,172.342;631.57,172.183;631.57,172.183" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="0,0,0;0,0,0;-4.502,0,0;-9.008,0,0;-13.522,0,0;-15.02,0,0;-16.528,0,0;-18.066,0,0;-18.066,0,0;-7.257,0,0;3.504,0,0;14.274,0,0;25.295,0,0;25.295,0,0;12.762,0,0;0.015,0,0;-12.266,0,0;-16.284,0,0;-20.539,0,0;-24.819,0,0;-24.819,0,0;-18.024,0,0;-11.019,0,0;-4.255,0,0;-1.765,0,0;0.252,0,0;2.515,0,0;2.515,0,0;6.257,0,0;10.01,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;10.01,0,0;13.768,0,0;17.533,0,0;21.292,0,0;25.295,0,0;25.295,0,0;2.515,0,0;-5.512,0,0;-13.771,0,0;-22.042,0,0;-24.795,0,0;-27.559,0,0;-28.844,0,0;-30.337,0,0;-30.337,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.339;0.342;0.346;0.349;0.353;0.411;0.414;0.417;0.418;1" values="1,1;1,1;0.999,0.999;0.998,0.998;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.998,0.998;0.999,0.999;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.998,0.998;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;0.998,0.998;0.997,0.997;0.997,0.997;0.996,0.996;0.997,0.997;0.997,0.997;1,1;0.999,0.999;0.997,0.997;0.997,0.997;0.995,0.995;0.996,0.996;0.995,0.995;0.997,0.997;0.997,0.997" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="-44.75,-35.5;-44.75,-35.5;-44.8,-35.55;-44.7,-35.4;-44.8,-35.45;-44.75,-35.5;-44.8,-35.6;-44.65,-35.7;-44.65,-35.7;-44.6,-35.45;-44.8,-35.6;-44.7,-35.55;-44.75,-35.7;-44.75,-35.7;-44.85,-35.65;-44.8,-35.65;-44.8,-35.7;-44.75,-35.6;-44.75,-35.75;-44.65,-35.55;-44.65,-35.55;-44.8,-35.7;-44.7,-35.7;-44.7,-35.65;-44.7,-35.65;-44.75,-35.6;-44.7,-35.6;-44.7,-35.6;-44.75,-35.7;-44.65,-35.55;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;-44.65,-35.55;-44.75,-35.55;-44.6,-35.65;-44.75,-35.65;-44.75,-35.7;-44.75,-35.7;-44.7,-35.6;-44.7,-35.65;-44.7,-35.55;-44.7,-35.65;-44.8,-35.6;-44.75,-35.65;-44.8,-35.65;-44.7,-35.65;-44.7,-35.65" calcMode="discrete"/><path fill="#FF5B80" d="M67.2 25.05q-9.85-9.85-23.75-9.85T19.7 25.05q-3.35 3.35-5.55 7.2l20.8-1.6 34.7-2.9q-1.15-1.4-2.45-2.7"/><path fill="#317C99" d="M77.05 47.35q0-11.2-7.4-19.6l-34.7 2.9-20.8 1.6h-.2q-4.15 6.7-4.15 15.1 0 12.85 9.9 22.05 9.85 9.15 23.75 9.15T67.2 69.4q9.85-9.2 9.85-22.05"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M70.05 29.05l7.75-.3m-7.6.6l5.3 3.2"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M595.2 224.15q-4.8.8-8-.15-3.25-1.15-4.5-4.1-2.4-5.8 3.2-13.85 2.15-3.15 4.65-5.75.95-1.2 4.1-4.4m.55 28.25q9.2-1.9 31.35-13.15m-30.75-16.45q2.8-5.25 5.55-3.05"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.35 195.95q-1-2.85-6.5-.15l.1-.35q.45-.5 1.15-4.15.7-3.7 5.25-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.829;0.839;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M591.9 193.05q2.7-2.65 5.55-4.75 1.25-.85 4.8-3.25m-10.35 8q-7 6.85-6.3 13.65.35 3.7 3 5.85 2.65 2.1 7.05 2.65 8.75 1 31.4-4.2"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.2 186q.05-.25.25-.45l.05-.35q.35-.6.65-1.15 3.1-6.05 1.3-9.95M601.2 186q5.1-3.2 6.75-.2m-5.5-1.5q1.85-5.05 5.2-3"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.812;0.822;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M595.2 224.15q-4.8.8-8-.15-3.25-1.15-4.5-4.1-2.4-5.8 3.2-13.85 2.15-3.15 4.65-5.75.95-1.2 4.1-4.4m.55 28.25q9.2-1.9 31.35-13.15m-30.9-16.45q2.8-5.25 5.55-3.05"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.2 195.95q-1-2.85-6.5-.15l.1-.35q.45-.5 1.15-4.15.7-3.7 5.25-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.795;0.805;0.863;1" values="none;inline;none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M593.6 193.75q1.25-1 4.95-3.45m-4.95 3.45q-2.95 2.15-5.6 4.75-7 6.95-5.8 13.05.65 3.2 3.7 4.9 2.9 1.55 7.75 1.6 9.45.05 33.25-6.95m-21.6-19.05q-.65-3.35-6.5-1.8.1-.25.35-.4l.2-.3q.5-.45.95-.9 4.75-4.85 4.15-9.1m-3.95 9.4q3.3-4.25 5.9-1.3"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.788;0.795;0.805;0.812;0.822;0.829;0.839;0.846;0.853;0.863;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M591.9 193.05q2.7-2.65 5.55-4.75 1.25-.85 4.8-3.25m-10.35 8q-7 6.85-6.3 13.65.35 3.7 3 5.85 2.65 2.1 7.05 2.65 8.75 1 31.4-4.2"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.05 186q.05-.25.25-.45l.05-.35q.35-.6.65-1.15 3.1-6.05 1.3-9.95m-2.25 11.9q5.1-3.2 6.75-.2m-5.5-1.5q1.85-5.05 5.2-3"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.781;0.788;0.846;0.853;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M587.25 189.05q2.65-2.35 5.6-4.25 1.25-.75 4.95-2.75m-10.55 7q-6.9 6.25-5.7 13.15.7 3.75 3.75 6.35 3.1 2.25 7.95 3.3 9.5 1.85 33.65-1.05"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M603.75 184.55q-.5-3.35-6.4-2.05.1-.2.4-.3l.15-.35q.5-.45 1-.85 4.95-4.65 4.55-8.95m-4.35 9.3q3.4-4.15 5.9-1.15"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.774;0.781;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M583.95 184.95q2.7-2.45 5.75-4.2 1.25-.75 5.1-2.65m-10.85 6.85q-7.05 6.1-5.35 13.6.95 3.95 4.35 6.85 3.3 2.75 8.5 4.2 10.15 2.65 35.45 1.2m-29.8-33.7q3.95-3.6 6-.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.2 180.9q0-3.35-6.05-2.9.15-.15.45-.25l.25-.3q.55-.4 1.1-.7 4.8-3.35 6.25-7"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.764;0.774;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M603.05 217.8q-10.05 1-17.6-2.75-7.55-3.75-10.25-11.05-2.85-7.7.75-17.35m27.1 31.15q10.7-1.1 21.4-7.45m-47.3-26.2q.85-5.3 4.55-3.9"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M582.75 184.6q-2.1-2.6-6.6 1.45.05-.2.2-.4l.05-.45q.2-.65.4-1.2 1.7-5.65.6-9.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.76;0.764;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M570.7 234.5q-1.05-9.1 5.35-13.4 6.05-4.1 16.65-2.8 20.4 2.5 31.4-6.55"/><use xlink:href="#a" transform="scale(1 -1) rotate(82.82 427.711 204.253)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.757;0.76;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M578.05 247.6q-2.8-18.8 11.55-27.3 11.25-6.7 35.05-8.7"/><use xlink:href="#a" transform="scale(1 -1) rotate(82.82 439.384 201.772)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.753;0.757;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M599.7 265.4q-12.5-15.15-4.25-29.65 6.45-11.4 26.15-24.9"/><use xlink:href="#a" transform="scale(-1 1) rotate(-66.23 -97.027 604.255)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.75;0.753;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M626.45 272.3q-19.55-31.65-4.5-62.3"/><use xlink:href="#a" transform="scale(-1 1) rotate(-66.23 -105.84 627.904)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.747;0.75;1" values="none;inline;none;none"/></g><g transform="translate(678.45 188.5)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="678.45,188.5;678.45,188.5;678.85,187.55;679.2,186.65;679.6,185.7;679.65,185.4;679.8,185.2;679.95,184.85;679.95,184.85;679.2,186.5;678.5,188.05;677.7,189.6;676.95,191.15;676.95,191.15;678,189.35;679,187.45;680,185.6;680.3,185;680.65,184.35;680.95,183.7;680.95,183.7;680.65,184.8;680.3,186;679.95,187.1;679.8,187.55;679.7,187.8;679.65,188.25;679.65,188.25;679.2,188.7;678.75,189.3;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;678.75,189.3;678.3,189.7;677.85,190.2;677.35,190.75;676.95,191.15;676.95,191.15;679.65,188.25;671.15,185.8;662.65,183.4;654.1,180.95;651.25,180.15;648.35,179.35;646.95,178.9;645.55,178.45;645.55,178.45" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="0,0,0;0,0,0;-4.502,0,0;-9.008,0,0;-13.522,0,0;-15.02,0,0;-16.528,0,0;-18.066,0,0;-18.066,0,0;-7.257,0,0;3.504,0,0;14.274,0,0;25.295,0,0;25.295,0,0;12.762,0,0;0.015,0,0;-12.266,0,0;-16.284,0,0;-20.539,0,0;-24.819,0,0;-24.819,0,0;-18.024,0,0;-11.019,0,0;-4.255,0,0;-1.765,0,0;0.252,0,0;2.515,0,0;2.515,0,0;6.257,0,0;10.01,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;10.01,0,0;13.768,0,0;17.533,0,0;21.292,0,0;25.295,0,0;25.295,0,0;2.515,0,0;-5.512,0,0;-13.771,0,0;-22.042,0,0;-24.795,0,0;-27.559,0,0;-28.82,0,0;-30.337,0,0;-30.337,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.339;0.342;0.346;0.349;0.353;0.411;0.414;0.417;0.418;1" values="1,1;1,1;0.999,0.999;0.998,0.998;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.998,0.998;0.999,0.999;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.998,0.998;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;0.998,0.998;0.997,0.997;0.997,0.997;0.996,0.996;0.997,0.997;0.997,0.997;1,1;0.999,0.999;0.997,0.997;0.997,0.997;0.995,0.995;0.996,0.996;0.995,0.995;0.997,0.997;0.997,0.997" calcMode="discrete"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M-5.4 2.35v2.2"/></g><g display="none"><use xlink:href="#b" transform="matrix(.862 -.504 .504 .862 632.75 174.5)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.599;0.606;0.62;0.812;0.825;1" values="none;inline;none;inline;none;inline;inline"/></g><g display="none"><use xlink:href="#c" transform="matrix(.862 -.504 .504 .862 632.75 174.5)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.589;0.592;0.596;0.599;0.61;0.613;0.616;0.62;0.815;0.818;0.822;0.825;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><use xlink:href="#d" transform="matrix(.862 -.504 .504 .862 632.75 174.5)"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.586;0.589;0.606;0.61;0.812;0.815;1" values="none;inline;none;inline;none;inline;none;none"/></g><g><use xlink:href="#b" transform="translate(670.05 177.1)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="670.05,177.1;670.05,177.1;669.65,177.45;669.2,177.65;668.8,177.95;668.6,178;668.5,178.15;668.4,178.25;668.4,178.25;669.55,178.25;670.7,178.35;671.95,178.35;673.1,178.4;673.1,178.4;672,178.4;670.9,178.5;669.85,178.55;669.5,178.6;669.15,178.55;668.7,178.55;668.7,178.55;669.3,178.35;669.9,178.25;670.5,178.15;670.7,178.15;670.85,178.05;671.1,178;671.1,178;671.45,178.05;671.8,178.1;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;671.8,178.1;672.1,178.2;672.4,178.25;672.7,178.35;673.1,178.4;673.1,178.4;671.1,178;661.5,177.1;651.95,176.2;642.3,175.35;639.1,175.1;635.95,174.75;634.25,174.65;632.75,174.5;632.75,174.5" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.274;0.277;0.336;0.339;0.342;0.346;0.349;0.353;0.356;0.411;0.414;0.417;0.418;1" values="0,0,0;0,0,0;-4.502,0,0;-9.008,0,0;-13.522,0,0;-15.02,0,0;-16.528,0,0;-18.066,0,0;-18.066,0,0;-7.257,0,0;3.504,0,0;14.274,0,0;25.295,0,0;25.295,0,0;12.762,0,0;0.015,0,0;-12.266,0,0;-16.284,0,0;-20.539,0,0;-24.819,0,0;-24.819,0,0;-18.024,0,0;-11.019,0,0;-4.255,0,0;-1.765,0,0;0.252,0,0;2.515,0,0;2.515,0,0;6.257,0,0;10.01,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;10.01,0,0;13.768,0,0;17.533,0,0;21.292,0,0;25.295,0,0;25.295,0,0;2.515,0,0;-5.512,0,0;-13.771,0,0;-22.042,0,0;-24.795,0,0;-27.559,0,0;-28.82,0,0;-30.337,0,0;-30.337,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.041;0.045;0.048;0.051;0.055;0.058;0.062;0.103;0.106;0.11;0.113;0.116;0.257;0.26;0.264;0.267;0.271;0.339;0.342;0.346;0.349;0.353;0.411;0.414;0.417;0.418;1" values="1,1;1,1;0.999,0.999;0.998,0.998;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.998,0.998;0.999,0.999;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.998,0.998;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.418;0.421;0.425;0.428;0.431;0.49;0.491;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;0.998,0.998;0.997,0.997;0.997,0.997;0.996,0.996;0.997,0.997;0.997,0.997;1,1;0.999,0.999;0.997,0.997;0.997,0.997;0.995,0.995;0.996,0.996;0.995,0.995;0.997,0.997;0.997,0.997" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.586;1" values="inline;none;none"/></g><g display="none"><path fill="#B4B4B4" d="M675.4 187.15q0 2.2-4.5 7.35l11.15 19.85.2.45 12.55 36 25.85 3.75.05-.1L690 173.9l-1 .6q-.15 2.1-6.4 6.8-1.75 1.55-4.25 3.35l-.7.5q-1.15.95-2.25 1.95v.05"/><path fill="#CCC" d="M689.65 173l.35.9 30.7 80.55 6.35-13.85 20.3-3.2-31.85-36.05-.6-37.85 1.05-13.2-25.75 22.75-.55-.05"/><path fill="#B4B4B4" d="M651.4 212.85q-1.75 1.4-3.35 2.6-1.55 1.2-10.95 10.65l5.8 7.75L656 272.8l1.15-1.25 20.65 2.5-14.2-41.3-.05-.05-.95-2.75-11.2-17.1"/><path fill="#CCC" d="M663.4 202.15q-6.7 6.4-12 10.7l11.2 17.1.95 2.75.05.05 14.2 41.3.95.1 15.65-23.35h.4l-12.55-36-.2-.45-11.15-19.85q-2.85 3.25-7.5 7.65m-39.7 36.95q1.75 1.45 3.45 2.95l4.3 3.65.15.65 7.95 45.85L656 272.8l-13.1-38.95-5.8-7.75-5.3 5.3q-4.8 4.85-8.1 7.7m-15.65-13.25l.025-.025-.075.025h.05"/><path fill="#999" d="M648.95 250q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3m-.8-2.1q.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25m2.85 8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.1 9q.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3m.75 2.2q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m-15.35-38.7q-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35m3.8 4.45q-.15.1-.2.35-.05.2.1.35l.55.75.8 2.25q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-.8-2.3q-.05-.1-.1-.15l-.6-.8q-.1-.15-.3-.2-.25-.05-.4.1m-6.5-9.5q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m9.6 15.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m6.5-25.7q-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.6q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.6q-.15-.2-.3-.2m-1.2-1.95q.05-.2-.05-.35l-.2-.3q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l.2.3q.1.15.3.2.2.05.4-.05.15-.15.2-.35m4.7 7.25q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.55q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.55m3.2 5.05q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m2.5 4.85q-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1m3.65 5.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9m.95 5.65q-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.2 5.45q-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.45 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m1.7 5.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m2.25 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-6.85-76.95q-.1.2 0 .4l.7 1.3q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-.7-1.3q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3m2.45 3.6q-.2.1-.25.3-.1.2 0 .4l1.4 2.6q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-1.4-2.6q-.1-.2-.3-.25-.2-.1-.35 0m17.2 38.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-14.45-36.1q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6m-3.55-8.3q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m5.9 10.45q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3-.1.2 0 .4l.9 1.7.4 1.2q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.4-1.3-.05-.05-.9-1.7m1.7 5.55q-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0m1.6 5.95q-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.8 5.65q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m4.1-53.3l-.2-.5q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.2.5q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35m.7 2.55q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3m2.4 5.9q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.1 5.6q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.15 5.55q-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25m11.25 28q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m-8.15-22.35q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.35 8.75q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8m2.05 2.45q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.9 5.3q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.6 1.6v-.05l.5 1.45q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-1.1-3.05q-.1-.2-.3-.3m3.6 11.7q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.7 5.35q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-2.1-51q.1-.2.05-.35-.05-.2-.25-.3-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6m-3.3 4.55q-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6q.1-.2.05-.35-.05-.2-.25-.3m-3.1 5.2q-.2-.15-.35-.05-.2 0-.3.2l-1.6 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.05.3-.25l1.6-2.6q.1-.2.05-.35-.05-.2-.25-.3m-15.2 4.85q-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m2.3-.1q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-8.3.9q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15"/><path fill="#999" d="M704.35 213.8q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-27.7 6.65q.15.15.35.15.2 0 .35-.15l2.1-2.15q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.15q-.15.15-.15.35 0 .2.15.35m-1.4 2.1q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2m8.8-8.35q-.15-.15-.35-.15h-1.2q-.2 0-.35.15l-1.3 1.3q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l1.15-1.15h1q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m-22.35 18.95q.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .1q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.1q.2 0 .35-.15m5.3-2.35q0-.25-.15-.35-.15-.15-.35-.15-.25 0-.35.15l-1.65 1.75h-.2q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h.4q.1 0 .2-.05l.2-.1 1.8-1.9q.1-.15.1-.35m-14.7 1.85q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.15q.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .15m-2.95 1.1q.2 0 .35-.15.1-.2.1-.35 0-.25-.15-.35-.2-.15-.35-.15l-3 .2q-.15 0-.25.1-.1-.1-.25-.1l-3 .05q-.2 0-.35.15-.05.05-.05.1-.2-.15-.35-.15H642q-.2 0-.3.2l-2 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.1q.2 0 .35-.15l1.9-2.3v.05q.15.1.4.1l3-.15q.1 0 .2-.05.15.05.3.05l3-.2M670.7 226q-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15m-33 11.9l-1.9 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.2q.2 0 .35-.15l1.9-2.3q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15h-.2q-.2 0-.3.2m-5.4 7.65q.15.1.35.1.2 0 .35-.15l1.85-2.35q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15-.05 0-.1.05-.1-.05-.15-.05-.25 0-.35.2l-.8.9q-.15.1-.15.35 0 .1.1.2l-.7.9q-.15.15-.15.35 0 .2.2.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.76;1" values="none;inline;inline"/></g><g display="none"><path fill="#B4B4B4" d="M677.65 185.15q-4.2 3.6-8.05 6.95l12.45 22.25.2.45 12.55 36 25.85 3.75.05-.1-30.7-80.5-.2.15v-.1l-.8.5q-.15 2.1-6.4 6.8-1.75 1.55-4.25 3.35l-.7.5"/><path fill="#CCC" d="M715.95 150.3L690 173.95l30.7 80.5 6.35-13.85 20.3-3.2-31.85-36.05-.6-37.85 1.05-13.2m-67 58.9l13.65 20.75.95 2.75.05.05 14.2 41.3.95.1 15.65-23.35h.4l-12.55-36-.2-.45-12.45-22.25q-11.8 10.1-20.65 17.1"/><path fill="#B4B4B4" d="M662.6 229.95l-13.65-20.75q-9.65 7.7-15.8 11.7l9.75 12.95L656 272.8l1.15-1.25 20.65 2.5-14.2-41.3-.05-.05-.95-2.75"/><path fill="#CCC" d="M633.15 220.9q-1.4.9-2.6 1.6-1.95 1.5-4.4 3.4-6.05 4.6-9.85 6.85 5.45 4.65 10.85 9.3l4.3 3.65.15.65 7.95 45.85L656 272.8l-13.1-38.95-9.75-12.95m-25.1 4.95l.025-.025-.075.025h.05"/><path fill="#999" d="M648.95 250q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3m-.8-2.1q.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25m2.85 8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.1 9q.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3m.75 2.2q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m-22.2-48.4q-.15.1-.2.35-.05.2.1.35l1.65 2.15q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.65-2.15q-.1-.15-.3-.2-.25-.05-.4.1m7.45 9.25q-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2m3 5.25q-.05.2.1.35l.55.75.8 2.25q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-.8-2.3q-.05-.1-.1-.15l-.6-.8q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35m-6.3-9.85q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m9.6 15.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.8-30.35q-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3m5.65 7.8q.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35m1.55 2.2q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m3.2 5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m2.5 4.85q-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1m3.65 5.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9m.95 5.65q-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.2 5.45q-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.45 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m1.7 5.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m2.25 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-6.85-76.95q-.1.2 0 .4l.7 1.3q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-.7-1.3q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3m2.45 3.6q-.2.1-.25.3-.1.2 0 .4l1.4 2.6q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-1.4-2.6q-.1-.2-.3-.25-.2-.1-.35 0m17.2 38.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-14.45-36.1q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6m-3.55-8.3q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m5.9 10.45q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3-.1.2 0 .4l.9 1.7.4 1.2q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.4-1.3-.05-.05-.9-1.7m1.7 5.55q-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0m1.6 5.95q-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.8 5.65q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m4.1-53.3l-.2-.5q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.2.5q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35m.7 2.55q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3m2.4 5.9q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.1 5.6q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.15 5.55q-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25m11.25 28q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m-8.15-22.35q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.35 8.75q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8m2.05 2.45q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.9 5.3q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.6 1.6v-.05l.5 1.45q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-1.1-3.05q-.1-.2-.3-.3m3.6 11.7q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.7 5.35q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-2.1-51q.1-.2.05-.35-.05-.2-.25-.3-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6m-3.3 4.55q-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6q.1-.2.05-.35-.05-.2-.25-.3m-3.1 5.2q-.2-.15-.35-.05-.2 0-.3.2l-1.6 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.05.3-.25l1.6-2.6q.1-.2.05-.35-.05-.2-.25-.3m-15.2 4.85q-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m2.3-.1q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-8.3.9q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15"/><path fill="#999" d="M704.35 213.8q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-27.7 6.65q.15.15.35.15.2 0 .35-.15l2.1-2.15q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.15q-.15.15-.15.35 0 .2.15.35m-1.4 2.1q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2m8.8-8.35q-.15-.15-.35-.15h-1.2q-.2 0-.35.15l-1.3 1.3q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l1.15-1.15h1q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m-22.35 18.95q.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .1q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.1q.2 0 .35-.15m5.3-2.35q0-.25-.15-.35-.15-.15-.35-.15-.25 0-.35.15l-1.65 1.75h-.2q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h.4q.1 0 .2-.05l.2-.1 1.8-1.9q.1-.15.1-.35m-14.7 1.85q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.15q.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .15m-2.95 1.1q.2 0 .35-.15.1-.2.1-.35 0-.25-.15-.35-.2-.15-.35-.15l-3 .2q-.15 0-.25.1-.1-.1-.25-.1l-3 .05q-.2 0-.35.15-.05.05-.05.1-.2-.15-.35-.15H642q-.2 0-.3.2l-2 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.1q.2 0 .35-.15l1.9-2.3v.05q.15.1.4.1l3-.15q.1 0 .2-.05.15.05.3.05l3-.2M670.7 226q-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15m-33 11.9l-1.9 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.2q.2 0 .35-.15l1.9-2.3q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15h-.2q-.2 0-.3.2m-5.4 7.65q.15.1.35.1.2 0 .35-.15l1.85-2.35q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15-.05 0-.1.05-.1-.05-.15-.05-.25 0-.35.2l-.8.9q-.15.1-.15.35 0 .1.1.2l-.7.9q-.15.15-.15.35 0 .2.2.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.753;0.76;1" values="none;inline;none;none"/></g><g display="none"><path fill="#CCC" d="M689.65 173l.35.9 30.7 80.55 6.35-13.85 20.3-3.2-31.85-36.05-.6-37.85 1.05-13.2-25.75 22.75-.55-.05"/><path fill="#B4B4B4" d="M690 173.9l-22.65 14.3 14.7 26.15.2.45 12.55 36 25.85 3.75.05-.1L690 173.9"/><path fill="#CCC" d="M662.6 229.95l.95 2.75.05.05 14.2 41.3.95.1 15.65-23.35h.4l-12.55-36-.2-.45-14.7-26.15-22.7 14.4 17.95 27.35"/><path fill="#B4B4B4" d="M663.55 232.7l-.95-2.75-17.95-27.35-17.05 10.8 15.3 20.45L656 272.8l1.15-1.25 20.65 2.5-14.2-41.3-.05-.05"/><path fill="#CCC" d="M631.45 245.7l.15.65 7.95 45.85L656 272.8l-13.1-38.95-15.3-20.45-19.6 12.45q9.7 8.05 19.15 16.2l4.3 3.65"/><path fill="#999" d="M648.95 250q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3m-.8-2.1q.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25m2.85 8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.1 9q.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3m.75 2.2q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m-25.65-53.55q-.2-.05-.35.1-.15.15-.2.35-.05.2.1.35l1.85 2.4q.15.15.35.2.2.05.35-.1.15-.15.2-.35.05-.2-.1-.35l-1.85-2.4q-.15-.15-.35-.2m3.3 4.9q-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2-.25-.05-.4.1m7.6 9.5q-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2m3 5.25q-.05.2.1.35l.55.75.8 2.25q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-.8-2.3q-.05-.1-.1-.15l-.6-.8q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35m-6.3-9.85q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m9.6 15.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.65-30.25q-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3m3.85 4.65q-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.55q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.55q-.15-.2-.3-.2m3.5 5.25q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m3.2 5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m2.5 4.85q-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1m3.65 5.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9m.95 5.65q-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.2 5.45q-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.45 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m1.7 5.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m2.25 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-31.3-64.4q-.1.15.05.35l1.5 2.5q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.5q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3m24.45-12.55q-.1.2 0 .4l.7 1.3q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-.7-1.3q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3m2.45 3.6q-.2.1-.25.3-.1.2 0 .4l1.4 2.6q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-1.4-2.6q-.1-.2-.3-.25-.2-.1-.35 0m17.2 38.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-14.45-36.1q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6m-3.55-8.3q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m5.9 10.45q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3-.1.2 0 .4l.9 1.7.4 1.2q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.4-1.3-.05-.05-.9-1.7m1.7 5.55q-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0m1.6 5.95q-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.8 5.65q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m4.1-53.3l-.2-.5q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.2.5q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35m.7 2.55q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3m2.4 5.9q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.1 5.6q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.15 5.55q-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25m11.25 28q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m-8.15-22.35q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.35 8.75q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8m2.05 2.45q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.9 5.3q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.6 1.6v-.05l.5 1.45q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-1.1-3.05q-.1-.2-.3-.3m3.6 11.7q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.7 5.35q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-2.1-51q.1-.2.05-.35-.05-.2-.25-.3-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6m-3.3 4.55q-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6q.1-.2.05-.35-.05-.2-.25-.3m-3.1 5.2q-.2-.15-.35-.05-.2 0-.3.2l-1.6 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.05.3-.25l1.6-2.6q.1-.2.05-.35-.05-.2-.25-.3m-15.2 4.85q-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m2.3-.1q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-8.3.9q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15"/><path fill="#999" d="M704.35 213.8q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-27.7 6.65q.15.15.35.15.2 0 .35-.15l2.1-2.15q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.15q-.15.15-.15.35 0 .2.15.35m-1.4 2.1q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2m8.8-8.35q-.15-.15-.35-.15h-1.2q-.2 0-.35.15l-1.3 1.3q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l1.15-1.15h1q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m-22.35 18.95q.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .1q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.1q.2 0 .35-.15m5.3-2.35q0-.25-.15-.35-.15-.15-.35-.15-.25 0-.35.15l-1.65 1.75h-.2q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h.4q.1 0 .2-.05l.2-.1 1.8-1.9q.1-.15.1-.35m-14.7 1.85q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.15q.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .15m-2.95 1.1q.2 0 .35-.15.1-.2.1-.35 0-.25-.15-.35-.2-.15-.35-.15l-3 .2q-.15 0-.25.1-.1-.1-.25-.1l-3 .05q-.2 0-.35.15-.05.05-.05.1-.2-.15-.35-.15H642q-.2 0-.3.2l-2 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.1q.2 0 .35-.15l1.9-2.3v.05q.15.1.4.1l3-.15q.1 0 .2-.05.15.05.3.05l3-.2M670.7 226q-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15m-33 11.9l-1.9 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.2q.2 0 .35-.15l1.9-2.3q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15h-.2q-.2 0-.3.2m-5.4 7.65q.15.1.35.1.2 0 .35-.15l1.85-2.35q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15-.05 0-.1.05-.1-.05-.15-.05-.25 0-.35.2l-.8.9q-.15.1-.15.35 0 .1.1.2l-.7.9q-.15.15-.15.35 0 .2.2.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.75;0.753;1" values="none;inline;none;none"/></g><g display="none"><path fill="#CCC" d="M689.65 173l.35.9 30.7 80.55 6.35-13.85 20.3-3.2-31.85-36.05-.6-37.85 1.05-13.2-25.75 22.75-.55-.05"/><path fill="#B4B4B4" d="M690 173.9l-22.65 14.3 14.7 26.15.2.45 12.55 36 25.85 3.75.05-.1L690 173.9m-26.4 58.85l-.05-.05-.95-2.75-17.95-27.35-17.05 10.8 15.3 20.45L656 272.8l1.15-1.25 20.65 2.5-14.2-41.3"/><path fill="#CCC" d="M663.55 232.7l.05.05 14.2 41.3.95.1 15.65-23.35h.4l-12.55-36-.2-.45-14.7-26.15-22.7 14.4 17.95 27.35.95 2.75m-32.1 13l.15.65 7.95 45.85L656 272.8l-13.1-38.95-15.3-20.45-19.6 12.45q9.7 8.05 19.15 16.2l4.3 3.65"/><path fill="#999" d="M648.95 250q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3m-.8-2.1q.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25m2.85 8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.1 9q.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3m.75 2.2q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m-25.65-53.55q-.2-.05-.35.1-.15.15-.2.35-.05.2.1.35l1.85 2.4q.15.15.35.2.2.05.35-.1.15-.15.2-.35.05-.2-.1-.35l-1.85-2.4q-.15-.15-.35-.2m3.3 4.9q-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2-.25-.05-.4.1m7.6 9.5q-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2m3 5.25q-.05.2.1.35l.55.75.8 2.25q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-.8-2.3q-.05-.1-.1-.15l-.6-.8q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35m-6.3-9.85q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m9.6 15.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2.65-30.25q-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3m3.85 4.65q-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.55q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.55q-.15-.2-.3-.2m3.5 5.25q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m3.2 5q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m2.5 4.85q-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25-.2-.05-.35.1m3.65 5.75q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9m.95 5.65q-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.2 5.45q-.2.05-.3.25-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.45 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m1.7 5.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m2.25 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-31.3-64.4q-.1.15.05.35l1.5 2.5q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.5q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3m24.45-12.55q-.1.2 0 .4l.7 1.3q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-.7-1.3q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3m2.45 3.6q-.2.1-.25.3-.1.2 0 .4l1.4 2.6q.1.15.3.25.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35l-1.4-2.6q-.1-.2-.3-.25-.2-.1-.35 0m17.2 38.3q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-14.45-36.1q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6m-3.55-8.3q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m5.9 10.45q-.1-.2-.3-.25-.2-.1-.35 0-.2.1-.25.3-.1.2 0 .4l.9 1.7.4 1.2q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.4-1.3-.05-.05-.9-1.7m1.7 5.55q-.2.05-.3.25-.1.15 0 .35l.9 2.9q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.9q-.1-.2-.25-.3-.2-.1-.4 0m1.6 5.95q-.1.15 0 .35l.9 2.8q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-.9-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.8 5.65q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m4.1-53.3l-.2-.5q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.2.5q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35m.7 2.55q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3m2.4 5.9q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.1 5.6q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.15 5.55q-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25m11.25 28q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m-8.15-22.35q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m2.35 8.75q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8m2.05 2.45q-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l1.1 2.8q.05.15.25.25t.4.05q.15-.1.25-.3.1-.2.05-.35l-1.1-2.8m1.9 5.3q-.2-.1-.35 0-.2.05-.3.25-.1.2 0 .4l.6 1.6v-.05l.5 1.45q.05.2.25.3.15.1.35.05.2-.1.3-.25.1-.2.05-.4l-1.1-3.05q-.1-.2-.3-.3m3.6 11.7q-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25m2.7 5.35q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3m1.6 5.6q-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8q-.1-.2-.25-.3-.2-.1-.4 0m2.65 5.9q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m2 5.6q-.1-.2-.25-.3-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .4l1 2.8q.05.15.25.25.15.1.4.05.15-.1.25-.25.1-.2.05-.4l-1-2.8m-2.1-51q.1-.2.05-.35-.05-.2-.25-.3-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6m-3.3 4.55q-.2-.15-.35-.05-.2.05-.3.2l-1.5 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25l1.5-2.6q.1-.2.05-.35-.05-.2-.25-.3m-3.1 5.2q-.2-.15-.35-.05-.2 0-.3.2l-1.6 2.6q-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.05.3-.25l1.6-2.6q.1-.2.05-.35-.05-.2-.25-.3m-15.2 4.85q-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m2.3-.1q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-8.3.9q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15"/><path fill="#999" d="M704.35 213.8q-.15.15-.15.35 0 .2.15.35.15.15.35.15h3q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15h-3q-.2 0-.35.15m-27.7 6.65q.15.15.35.15.2 0 .35-.15l2.1-2.15q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.15q-.15.15-.15.35 0 .2.15.35m-1.4 2.1q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2m8.8-8.35q-.15-.15-.35-.15h-1.2q-.2 0-.35.15l-1.3 1.3q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l1.15-1.15h1q.2 0 .35-.15.15-.15.15-.35 0-.2-.15-.35m-22.35 18.95q.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .1q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.1q.2 0 .35-.15m5.3-2.35q0-.25-.15-.35-.15-.15-.35-.15-.25 0-.35.15l-1.65 1.75h-.2q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15h.4q.1 0 .2-.05l.2-.1 1.8-1.9q.1-.15.1-.35m-14.7 1.85q-.25 0-.35.15-.15.15-.15.4 0 .2.15.35.15.1.4.1l3-.15q.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15l-3 .15m-2.95 1.1q.2 0 .35-.15.1-.2.1-.35 0-.25-.15-.35-.2-.15-.35-.15l-3 .2q-.15 0-.25.1-.1-.1-.25-.1l-3 .05q-.2 0-.35.15-.05.05-.05.1-.2-.15-.35-.15H642q-.2 0-.3.2l-2 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.1q.2 0 .35-.15l1.9-2.3v.05q.15.1.4.1l3-.15q.1 0 .2-.05.15.05.3.05l3-.2M670.7 226q-.2 0-.35.15l-2.1 2.2q-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15l2.1-2.2q.15-.15.15-.35 0-.2-.15-.35-.15-.15-.35-.15m-33 11.9l-1.9 2.3q-.15.15-.15.35 0 .2.2.35.15.1.35.1h.2q.2 0 .35-.15l1.9-2.3q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15h-.2q-.2 0-.3.2m-5.4 7.65q.15.1.35.1.2 0 .35-.15l1.85-2.35q.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15-.05 0-.1.05-.1-.05-.15-.05-.25 0-.35.2l-.8.9q-.15.1-.15.35 0 .1.1.2l-.7.9q-.15.15-.15.35 0 .2.2.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.747;0.75;1" values="none;inline;none;none"/></g><g><g transform="translate(599.05 161.6)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="672.25,214.4;672.25,214.4;672.249,214.374;672.233,214.349;672.231,214.454;672.28,214.448;672.25,214.361;672.3,214.434;672.231,214.342;672.231,214.342;672.291,214.5;672.215,214.339;672.312,214.315;672.278,214.349;672.226,214.277;672.266,214.317;672.274,214.325;672.274,214.325;672.264,214.358;672.187,214.375;672.172,214.399;672.192,214.385;672.159,214.341;672.159,214.341;672.201,214.38;672.078,214.259;672.22,214.279;672.248,214.324;672.239,214.441;672.153,214.399;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;672.153,214.399;672.236,214.336;672.236,214.336;672.2,214.347;672.232,214.367;672.261,214.426;672.248,214.433;672.343,214.335;672.159,214.341;672.159,214.341;672.096,216.477;672.201,218.554;672.232,219.223;672.143,219.906;672.132,220.319;672.155,220.684;672.155,220.684" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="0,0,0;0,0,0;4.762,0,0;9.763,0,0;14.768,0,0;16.28,0,0;18.028,0,0;18.783,0,0;19.583,0,0;19.583,0,0;8.269,0,0;-2.753,0,0;-14.024,0,0;-17.776,0,0;-21.543,0,0;-23.538,0,0;-25.346,0,0;-25.346,0,0;-24.802,0,0;-24.295,0,0;-23.79,0,0;-23.301,0,0;-23.078,0,0;-23.078,0,0;-10.516,0,0;1.762,0,0;14.515,0,0;27.06,0,0;33.334,0,0;36.589,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;36.589,0,0;39.839,0,0;39.839,0,0;27.062,0,0;14.523,0,0;2.004,0,0;-10.514,0,0;-16.777,0,0;-23.078,0,0;-23.078,0,0;-23.045,0,0;-23.047,0,0;-23.04,0,0;-23.046,0,0;-23.044,0,0;-23.078,0,0;-23.078,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewX" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.41;0.411;1" values="0;0;-0.001;0;0.001;0.001;0;0;0.001;0.001;-0.001;0.001;0;0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewX" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.493;0.497;0.5;0.503;0.507;1" values="0;0;-0.001;0.002;0.001;-0.001;-0.001" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="1,1;1,1;0.999,0.999;0.998,0.998;0.998,0.998;0.996,0.996;0.997,0.997;0.996,0.996;0.998,0.998;0.998,0.998;0.94,0.998;0.881,0.999;0.821,0.998;0.8,0.996;0.781,0.996;0.771,0.996;0.762,0.997;0.762,0.997;0.82,0.996;0.878,0.995;0.938,0.996;0.967,0.996;0.998,0.998;0.998,0.998;0.999,0.999;0.997,0.997;0.996,0.996;0.995,0.995;0.994,0.994;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;0.994,0.994;0.997,0.997;0.997,0.997;0.996,0.996;0.997,0.997;0.999,0.999;0.998,0.998;0.997,0.997;0.998,0.998;0.998,0.998;0.972,0.996;0.948,0.996;0.939,0.995;0.931,0.996;0.927,0.996;0.925,0.998;0.925,0.998" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="-73.2,-52.8;-73.2,-52.8;-73.2,-52.75;-73.2,-52.9;-73.25,-52.8;-73.25,-52.75;-73.15,-52.8;-73.2,-52.85;-73.2,-52.75;-73.2,-52.75;-73.25,-52.75;-73.15,-52.75;-73.35,-52.85;-73.2,-52.75;-73.3,-52.7;-73.2,-52.8;-73.3,-52.8;-73.3,-52.8;-73.2,-52.9;-73.3,-52.8;-73.2,-52.8;-73.3,-52.75;-73.2,-52.65;-73.2,-52.65;-73.2,-52.7;-73.2,-52.65;-73.25,-52.7;-73.3,-52.85;-73.15,-52.8;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;-73.15,-52.8;-73.15,-52.75;-73.15,-52.75;-73.2,-52.7;-73.35,-52.75;-73.1,-52.65;-73.25,-52.75;-73.4,-52.75;-73.2,-52.65;-73.2,-52.65;-73.15,-52.7;-73.2,-52.8;-73.2,-52.65;-73.25,-52.6;-73.25,-52.6;-73.15,-52.75;-73.15,-52.75" calcMode="discrete"/><path fill="#CCC" d="M140.75 97.5L124.8 51.8l20.85-45.65-34.7 10.6L79.95.4 51.8 17.15 25.3 4.9 1.65 18.925 21.6 59.55 11 105.65 35.9 93l21.2 11.05 26.1-15.1 23.65 13.85 13.1-10.6 20.8 5.3"/><path fill="#B4B4B4" d="M85.425 50.925L83.1 89l.1-.05 23.45 13.725L109.5 58.9l1.6-41.9L79.95.4l-.825.475 6.3 50.05m-47.1 2.425L34.85 93.525 35.9 93l19.825 10.35L59.55 60.8 51.3 17.15 25.875 5.175l12.45 48.175"/><path fill="#999" d="M112.225 61.125q.178-.119.225-.325.04-.202-.075-.375-.119-.178-.325-.225-.202-.04-.375.075l-.075.05-2.275-.9q-.188-.067-.375.025-.194.083-.275.275-.067.188.025.375.082.194.275.275l2.5 1q.109.042.225.025.122-.01.225-.075l.3-.2m1.8-1.75q.12.179.325.225.202.04.375-.075l2.5-1.7q.178-.12.225-.325.04-.203-.075-.375-.119-.179-.325-.225-.202-.04-.375.075l-2.5 1.7q-.178.12-.225.325-.04.203.075.375m5.325-3.075q.201.04.375-.075l2.5-1.6q.177-.118.225-.325.041-.201-.075-.375-.118-.178-.325-.225-.201-.041-.375.075l-2.5 1.6q-.177.118-.225.325-.041.201.075.375.118.178.325.225m-16.25 1.6q.083.195.275.275l2.8 1.1q.189.067.375-.025.195-.083.275-.275.067-.188-.025-.375-.083-.195-.275-.275l-2.8-1.1q-.189-.067-.375.025-.195.083-.275.275-.067.189.025.375m-4.975-2.825q-.189-.067-.375.025-.195.083-.275.275-.067.189.025.375.083.195.275.275l2.8 1.1q.189.067.375-.025.195-.083.275-.275.067-.188-.025-.375-.083-.195-.275-.275l-2.8-1.1M91.9 53.65q.083.195.275.275l2.8 1.1q.189.067.375-.025.195-.083.275-.275.067-.188-.025-.375-.083-.195-.275-.275l-2.8-1.1q-.189-.067-.375.025-.195.083-.275.275-.067.189.025.375M90 52.225q-.085-.184-.275-.25l-2.8-1q-.204-.067-.4.025-.184.085-.25.275-.067.204.025.4.085.184.275.25l2.8 1q.204.067.4-.025.184-.085.25-.275.067-.204-.025-.4m-5.925.2q.192-.08.275-.275.092-.186.025-.375-.08-.192-.275-.275-.186-.092-.375-.025l-2.8 1.1q-.192.08-.275.275-.092.187-.025.375.08.192.275.275.186.092.375.025l2.8-1.1m-48.15.625q-.183.085-.25.275-.067.191.025.375.085.196.275.275.203.067.4-.025l1.525-.7 1 .325q.193.067.375-.025.185-.099.25-.3.067-.193-.025-.375-.099-.185-.3-.25l-1.2-.4q-.191-.062-.375.025l-1.7.8m-2.275 2.1q.194-.083.275-.275.067-.189-.025-.375-.083-.195-.275-.275-.188-.067-.375.025l-2.7 1.2q-.194.083-.275.275-.067.189.025.375.083.195.275.275.188.067.375-.025l2.7-1.2m-8.55 2.8q-.194.083-.275.275-.067.188.025.375.083.194.275.275.187.067.375-.025l2.75-1.2q.194-.083.275-.275.067-.188-.025-.375-.083-.194-.275-.275-.187-.067-.375.025l-2.75 1.2m53.375-3.325q.192-.08.275-.275.092-.186.025-.375-.08-.192-.275-.275-.186-.092-.375-.025l-2.8 1.1q-.192.08-.275.275-.092.187-.025.375.08.192.275.275.186.092.375.025l2.8-1.1M73.15 56.5q.092-.186.025-.375-.08-.192-.275-.275-.186-.092-.375-.025l-2.8 1.1q-.192.08-.275.275-.092.187-.025.375.08.192.275.275.186.092.375.025l2.8-1.1q.192-.08.275-.275m-11.175 3.825q-.08-.191-.275-.275-.186-.092-.375-.025l-.625.225-1.825-.625q-.204-.067-.4.025-.184.085-.25.275-.067.204.025.4.085.184.275.25l2 .7q.175.062.35 0l.8-.3q.191-.08.275-.275.092-.185.025-.375m2.125-.375q.186.092.375.025l2.8-1.1q.192-.08.275-.275.092-.186.025-.375-.08-.192-.275-.275-.186-.092-.375-.025l-2.8 1.1q-.192.08-.275.275-.092.187-.025.375.08.192.275.275m-11.225-2.3q-.184.085-.25.275-.067.204.025.4.085.184.275.25l2.8 1q.204.067.4-.025.184-.085.25-.275.067-.204-.025-.4-.085-.184-.275-.25l-2.8-1q-.204-.067-.4.025m-2.1-.375q.067-.204-.025-.4-.085-.184-.275-.25l-2.8-1q-.204-.067-.4.025-.184.085-.25.275-.067.204.025.4.085.184.275.25l2.8 1q.204.067.4-.025.184-.085.25-.275m-9.4-3.35q-.067.204.025.4.085.184.275.25l2.85 1q.204.067.4-.025.184-.086.25-.275.067-.204-.025-.4-.085-.184-.275-.25l-2.85-1q-.204-.067-.4.025-.184.085-.25.275m-14.6-47.8q-.05-.197-.225-.3-.178-.104-.375-.05-.197.05-.3.225-.104.177-.05.375l.8 2.95q.05.197.225.3.178.104.375.05.198-.049.3-.225.104-.177.05-.375l-.8-2.95m.6 5.725q-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9q-.05-.198-.225-.3-.178-.104-.375-.05-.198.05-.3.225m2.4 5.925q-.05-.198-.225-.3-.178-.104-.375-.05-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9m1.275 5.5q-.178-.104-.375-.05-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9q-.05-.198-.225-.3m1.725 6.1q-.05-.198-.225-.3-.178-.104-.375-.05-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9m.9 5.45q-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9q-.05-.198-.225-.3-.178-.104-.375-.05m2.2 6.15q-.05-.198-.225-.3-.178-.104-.375-.05-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9m1 5.45q-.198.05-.3.225-.104.178-.05.375l.8 2.9q.05.198.225.3.178.104.375.05.198-.05.3-.225.104-.178.05-.375l-.8-2.9q-.05-.198-.225-.3-.178-.104-.375-.05"/><path fill="#999" d="M38.5 52.2q-.208.048-.325.225-.116.175-.075.375l.2.85-.2 1.8q-.026.209.1.375.138.157.35.175.209.026.375-.1.157-.137.175-.35l.2-1.9q.013-.076 0-.15l-.2-.9q-.048-.208-.225-.325-.174-.116-.375-.075m-.05 5.8q-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175m-.05 6.55q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3m-1.325 5.575q-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125m-.5 6q-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125m.275 6.425q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3m-.9 9l.3-3q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325m16.375-71.275q-.116.173-.075.375l.6 2.9q.047.206.225.325.173.116.375.075.206-.047.325-.225.115-.173.075-.375l-.6-2.9q-.047-.206-.225-.325-.173-.116-.375-.075-.206.047-.325.225m1.1 5.8q-.116.173-.075.375l.6 2.9q.047.206.225.325.173.116.375.075.206-.047.325-.225.115-.173.075-.375l-.6-2.9q-.047-.206-.225-.325-.173-.116-.375-.075-.206.047-.325.225m1.025 6.15l.5 3q.033.204.2.325.17.127.375.1.204-.033.325-.2.127-.17.1-.375l-.5-3q-.033-.204-.2-.325-.17-.128-.375-.1-.204.033-.325.2-.127.17-.1.375m1.8 5.525q-.17-.128-.375-.1-.204.033-.325.2-.127.17-.1.375l.5 3q.033.204.2.325.17.127.375.1.204-.033.325-.2.127-.17.1-.375l-.5-3q-.033-.204-.2-.325m1.2 6.325q-.033-.204-.2-.325-.17-.128-.375-.1-.204.033-.325.2-.127.17-.1.375l.5 3q.033.204.2.325.17.127.375.1.204-.033.325-.2.127-.17.1-.375l-.5-3m1 5.95q-.033-.204-.2-.325-.17-.128-.375-.1-.204.033-.325.2-.127.17-.1.375l.5 3q.033.204.2.325.17.127.375.1.204-.033.325-.2.127-.17.1-.375l-.5-3m1 6q-.033-.204-.2-.325-.17-.128-.375-.1-.204.033-.325.2-.127.17-.1.375l.5 3q.033.204.2.325.17.127.375.1.204-.033.325-.2.127-.17.1-.375l-.5-3m.475 5.55q-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375M59.1 67.4q-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175m-.175 6.175q-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375m-.475 6.35q.013-.2-.125-.35-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3M57.6 85.4q-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175m-.875 6.125q-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125m-.15 5.875q-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35-.14-.159-.35-.175M81.4 4.7q-.168-.127-.375-.1-.202.031-.325.2-.127.168-.1.375l.4 3q.031.202.2.325.168.127.375.1.202-.031.325-.2.127-.168.1-.375l-.4-3q-.032-.202-.2-.325m0 6.1q-.127.168-.1.375l.4 3q.031.202.2.325.168.127.375.1.202-.031.325-.2.127-.168.1-.375l-.4-3q-.032-.202-.2-.325-.168-.127-.375-.1-.202.031-.325.2m1.025 5.8q-.202.031-.325.2-.127.168-.1.375l.4 3q.031.202.2.325.168.127.375.1.202-.031.325-.2.127-.168.1-.375l-.4-3q-.032-.202-.2-.325-.168-.127-.375-.1m1.2 6.125q-.165-.139-.375-.125-.199.018-.325.175-.138.165-.125.375l.3 3q.018.199.175.325.165.138.375.125.199-.018.325-.175.138-.165.125-.375l-.3-3q-.018-.199-.175-.325m.875 6.325q-.018-.199-.175-.325-.165-.139-.375-.125-.199.018-.325.175-.138.165-.125.375l.3 3q.018.199.175.325.165.138.375.125.199-.018.325-.175.138-.165.125-.375l-.3-3m.15 5.55q-.199.018-.325.175-.138.165-.125.375l.3 3q.018.199.175.325.165.138.375.125.199-.018.325-.175.138-.165.125-.375l-.3-3q-.018-.199-.175-.325-.165-.139-.375-.125m.6 6q-.199.018-.325.175-.138.165-.125.375l.3 3q.018.199.175.325.165.138.375.125.199-.018.325-.175.138-.165.125-.375l-.3-3q-.018-.199-.175-.325-.165-.139-.375-.125m.6 6q-.212.018-.35.175-.126.166-.1.375l.2 1.85-.1.9q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.1-.95q.005-.049 0-.1l-.2-1.9q-.018-.213-.175-.35-.166-.126-.375-.1m.45 6.4q.013-.21-.125-.375-.126-.157-.325-.175-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3m-.95 5.45q-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175m-.5 6q-.21-.014-.375.125-.157.126-.175.325l-.3 3q-.013.21.125.375.126.157.325.175.21.013.375-.125.157-.126.175-.325l.3-3q.013-.21-.125-.375-.126-.157-.325-.175m-.3 9.525l.25-3q.013-.2-.125-.35-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.25 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35m-.2 3q.013-.2-.125-.35-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3m-.4 6q.013-.2-.125-.35-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3m26.775-58.925q.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3q.012-.215-.125-.375-.143-.147-.35-.15-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375m.175-6.35q.002.205.15.35.145.148.35.15.205-.002.35-.15.148-.145.15-.35v-.4q-.002-.205-.15-.35-.145-.148-.35-.15-.205.002-.35.15-.148.145-.15.35v.4m-.35 8.625q-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3q.012-.215-.125-.375-.143-.147-.35-.15-.215-.012-.375.125m.55 6.4q.012-.215-.125-.375-.143-.147-.35-.15-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3m-.775 5.475q-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3q.012-.215-.125-.375-.143-.147-.35-.15m.175 6.525q.012-.215-.125-.375-.143-.147-.35-.15-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3m-.675 5.475q-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3q.012-.215-.125-.375-.143-.147-.35-.15m.275 6.525q.012-.215-.125-.375-.143-.147-.35-.15-.215-.012-.375.125-.147.143-.15.35l-.1 3q-.012.215.125.375.143.147.35.15.215.012.375-.125.147-.143.15-.35l.1-3m-.675 5.475q-.201-.012-.35.125-.159.141-.175.35l-.2 2.925q-.013.211.125.375.127.158.325.175.211.013.375-.125.158-.126.175-.325l.2-2.975q.012-.201-.125-.35-.141-.159-.35-.175m.05 6.125q-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35m-.175 6.35q.013-.2-.125-.35-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3m-.875 5.475q-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35-.14-.159-.35-.175m-.05 6.175q-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35m-.4 6q-.14-.159-.35-.175-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35m-.75 5.825q-.2-.013-.35.125-.159.14-.175.35l-.2 3q-.013.199.125.35.14.159.35.175.2.013.35-.125.158-.14.175-.35l.2-3q.013-.2-.125-.35-.14-.159-.35-.175"/></g><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.747;1" values="inline;none;none"/></g><g display="none"><path fill="#98BECC" d="M667.65 206.3q15.25-20.2 23.7-34.15-14.7 10.8-43.7 32.75-26.65 20.2-28.5 22.5-5.05 11.85 1.45 26.1 3.6 7.85 8.7 13.3 6.45-15.2 17.1-31.3 6.45-9.75 21.25-29.2"/><path fill="none" stroke="#FFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M674.9 187.5l-.6-.8m-10.2 11l-1.5-2.6M644.65 218l.65 4.9m-.65-4.9l.4-9.95m-14 18.95l13.6-9m-13.6 9l-.75-7.4m2.35 12.05l-1.6-4.65m1.85 5.55l-.25-.9m1 3.4l-.75-2.5m.75 2.5l-11.45 12.7m11.45-12.7l3 10.25m-2.9-10.4l-.1.15m-.15-.95l.25.8m-.8-2.35l.55 1.55m11.8-11.2l-12.35 9.65m12.35-9.65l3.05 6.2m3.4-12.3l-6.45 6.1m10.4-18.95l-3.95 12.85m4.1-12.95l-.15.1m.15-.1l3 7.85m5.25-14l-8.25 6.15m8.25-6.15l2.3 4.4m8.5-14.6l-10.8 10.2m10.8-10.2l1.7 2.35m2.1-6l-3.8 3.65m-42 45.05l.6 1.55m-.55-1.55h-.05m.05 0l-.3-.9"/><path fill="#FF5B80" d="M659.25 197.55q-.2 0-.35.15-.15.15-.15.35v.6q0 .2.15.35.15.15.35.15.2 0 .35-.15.15-.15.15-.35v-.6q0-.2-.15-.35-.15-.15-.35-.15m.15 3.85q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.2 1.5-.5 2.95-.1.15.05.35.1.2.3.25.15.05.35-.05.2-.15.25-.3.35-1.5.55-3.05.05-.25-.1-.4m-1.45 6.35q.1-.2.05-.35-.1-.2-.3-.3-.2-.1-.35 0-.2.05-.3.25-.6 1.35-1.35 2.6-.15.15-.1.35.05.2.25.35.15.1.35.05.2-.05.35-.2.8-1.3 1.4-2.75m-3.25 5.15q.1-.15.1-.35 0-.25-.15-.35-.15-.15-.35-.15-.25 0-.35.2-1 1.05-2.15 1.95-.15.15-.2.35-.05.2.1.35.15.15.35.2.2.05.35-.1 1.25-1 2.3-2.1m-4.6 3.5q.05-.2-.05-.4-.15-.15-.3-.2-.2-.1-.4.05-1.2.65-2.55 1.2-.2.05-.3.25-.1.2 0 .4.05.15.25.25t.4.05q1.4-.6 2.7-1.3.15-.15.25-.3m-20.95 4.95q-.2.1-.25.3-.1.2 0 .4.1.15.3.25.2.05.4-.05 1.25-.65 2.7-1.05.2-.1.3-.25.1-.2.05-.4-.1-.2-.25-.3-.2-.1-.4 0-1.55.45-2.85 1.1m5.8-.95q.15.1.35.05 1.45-.3 3-.45.2 0 .35-.15.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15-1.65.15-3.1.45-.2.05-.3.25-.15.15-.1.35.05.2.25.35m6.1-.75q.15.1.35.05 1.55-.3 2.9-.7.2-.1.3-.25.1-.2.05-.4-.1-.2-.25-.3-.2-.1-.4 0-1.35.35-2.8.65-.2.05-.3.25-.15.15-.1.35.05.2.25.35m-14.2 3.15q-.25-.05-.4.1-1.3.9-2.35 2-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15 1.05-1 2.25-1.9.15-.1.2-.3.05-.25-.1-.4-.1-.15-.3-.2m-3.8 4.65q-.05-.2-.2-.3-.2-.15-.4-.1-.2.05-.3.25-.85 1.2-1.5 2.65-.1.2 0 .4.05.15.25.25t.4.05q.15-.1.25-.3.65-1.35 1.45-2.5.1-.2.05-.4m-2.55 5.2q-.1-.15-.3-.2-.2-.1-.4 0-.15.1-.2.3-.45 1.4-.7 2.95-.05.2.1.35.1.15.35.2.2.05.35-.1.15-.1.2-.3.25-1.5.65-2.8.05-.2-.05-.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.771;1" values="none;inline;inline"/></g><g display="none"><path fill="#98BECC" d="M666.25 204.95q21.25-25.15 24.7-32.5-13 9.95-45.75 34.9-20.95 16-23.75 17.7l-.35.15q-4.75 4.1-6.05 12.9-1.25 7.6.4 14.75 1.25 5.15 3.45 9.3 1.6 2.9 3.35 4.75 18.7-31.95 44-61.95"/><path fill="none" stroke="#FFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M642.75 215.15l.65 4.9m-.65-4.9l.2-4.35m-13.8 13.35l13.6-9m-13.6 9l-.35-3.25m1.95 7.9l-1.6-4.65m1.85 5.55l-.25-.9m1 3.4l-.75-2.5m.75 2.5l-11.45 12.7m11.45-12.7l2.4 7.4m-2.3-7.55l-.1.15m-.15-.95l.25.8m-.8-2.35l.55 1.55m11.8-11.2l-12.35 9.65m12.35-9.65l3.05 6.2m3.4-12.3l-6.45 6.1m11.2-17.75l2.35 6.55m-7.1 5.1l4.75-11.65m-23.85 26.5l.3.9m0 0H631l.6 1.55m34.15-30.75l-2.95-5.35"/><path fill="#FF5B80" d="M657.5 199.9q.05-.25-.1-.4-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35l-.2 1.3q-.1.2.05.4.1.15.3.2.2.05.4-.05.15-.15.2-.3.15-.7.25-1.4m-1.45 3.7q-.2-.1-.4 0t-.25.3q-.55 1.4-1.25 2.6-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.05.3-.25.75-1.3 1.35-2.75.05-.2-.05-.4t-.25-.25m-3.3 5.1q-.2 0-.3.2-.95 1.1-2.1 2.1-.2.1-.2.3 0 .2.15.4.1.15.3.15.2 0 .4-.1 1.2-1.05 2.2-2.2.1-.2.1-.4t-.15-.3q-.2-.15-.4-.15m-4.25 4.85q.2-.15.25-.3.05-.2-.05-.4-.15-.2-.3-.2-.2-.1-.4.05-1.25.7-2.6 1.3-.2.1-.25.3-.1.15 0 .35.1.2.3.3.15.05.35-.05 1.45-.6 2.7-1.35m-11.05 2.7q-.15-.15-.35-.15-1.6.1-3.05.35-.25.05-.35.25-.15.15-.1.35.05.2.25.3.15.15.35.1 1.4-.25 2.95-.35.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35m5.55-.3q.2-.1.3-.25.1-.2.05-.4-.1-.2-.25-.3-.2-.1-.4 0-1.35.4-2.8.8-.2 0-.3.2-.15.15-.05.4 0 .15.2.3.15.1.4.05 1.5-.35 2.85-.8"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.767;0.771;1" values="none;inline;none;none"/></g><g display="none"><path fill="#98BECC" d="M616.15 228.7q-4.65 5.3-6.6 12.1-2.2 7.6-1.6 18.9 1 .3 9.85-6.65 5.5-4.35 11.6-9.65 4.9-4.3 10.2-9.2 32.45-30.3 51.6-61.95-12.8 9.8-46 35.1-26.9 20.6-29.05 21.35"/><path fill="none" stroke="#FFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M642.2 212.65l-.35 4.9m.35-4.9l.55-1.95m-15.55 12.4l15-10.45m-14.8 13.65l-.2-3.2m.3 4.1l-.1-.9m.35 3.4l-.25-2.5m.25 2.5l-14.05 12.7m14.05-12.7l.9 7.4m-.8-7.55l-.1.15m0-.95l.1.8m-.3-2.35l.2 1.55m14.1-11.2l-14.3 9.65m14.3-9.65l1.8 6.2m5.9-12.3l-7.7 6.1m14.8-17.75l1 6.55m-8.1 5.1l7.1-11.65m-29.25 26.5l.15.9m-.05 0h.05m-.05 0l.25 1.55m40.4-30.75l-1.85-4.7"/><path fill="#FF5B80" d="M659.45 198.45q-.05-.2-.25-.25-.2-.1-.4 0-.2.05-.25.25-.6 1.4-1.3 2.7-.15.2-.05.4 0 .15.2.3.2.1.4.05.15-.1.3-.25.75-1.3 1.35-2.8.1-.2 0-.4m-3.15 5.05q-.15-.15-.35-.1-.25.05-.35.2-.9 1.15-1.85 2.2-.15.15-.15.35 0 .2.15.35.15.15.35.15.2 0 .35-.15 1.05-1.05 1.95-2.3.15-.15.1-.35-.05-.25-.2-.35m-7.15 6q-.2.1-.2.3-.1.15.05.35.1.2.3.25.15.05.35-.05 1.35-.85 2.5-1.75.15-.15.2-.35.05-.2-.1-.35-.15-.15-.35-.2-.2-.05-.35.1-1.15.9-2.4 1.7m-11.5 4.55q.05.2.2.3.15.15.4.1 1.5-.25 2.95-.6.15-.05.3-.25.1-.2.05-.35-.05-.2-.25-.3-.2-.15-.35-.05-1.4.3-2.85.55-.25.05-.35.2-.15.15-.1.4m9.3-2.25q.2-.1.3-.25.05-.2-.05-.4t-.25-.25q-.2-.1-.4 0-1.35.6-2.75 1.1-.2.05-.3.25-.1.15 0 .4.05.15.25.25.15.1.4.05 1.45-.55 2.8-1.15"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.764;0.767;1" values="none;inline;none;none"/></g><g display="none"><path fill="#CCC" d="M663.75 196.05h-.55q-9.05 7.7-18.05 16.35l-2.55 2.45q.65.35 1.35.7 1.8.8 5.85 2.2 2.55.75 10.35 10l18.35-21q-1.3-4.65-9.1-8.5-4.65-2.3-5.65-2.2"/><path fill="#B4B4B4" d="M663.45 195.45l.3.6q1-.1 5.65 2.2 7.8 3.85 9.1 8.5l11.75-33.6q-10.9 8.5-26.8 22.3m-3.3 32.3q-7.8-9.25-10.35-10-4.05-1.4-5.85-2.2-.7-.35-1.35-.7-1.15 1.05-2.25 2.1-9.8 9.15-17.3 14.9l-.2.2q2 .7 4.65 1.25 1.95.3 6.25.55 5.1.2 8.75.65l17.65-6.75"/><path fill="#CCC" d="M627.5 233.3q-2.65-.55-4.65-1.25-3.15 2.4-6.45 4.7-10.6 7.4-22.35 13.25 3.15 2.65 11.05 1.15 1.95-.4 6-1.8 4.9-1.75 8.9-2.9 3.95-1.2 7.2-1.6 3.25-.4 3.45 1 2.05-6.2 11.85-11.35-3.65-.45-8.75-.65-4.3-.25-6.25-.55"/><path fill="#999" d="M665.15 196.3q.05-.2-.05-.4-.15-.2-.3-.2-.75-.2-1.1-.15-.25.05-.35.2-.15.15-.1.4.05.2.2.3.15.15.4.1.2-.05.7.1.15.05.35-.05.2-.15.25-.3m2.05.5q-.2.05-.3.25-.1.15 0 .35.05.2.25.3.85.45 2.05 1h-.05l.7.4q.2.1.4.05.15-.05.3-.25.1-.2.05-.35-.1-.2-.25-.3l-.7-.4v-.05q-1.15-.55-2.05-1-.2-.1-.4 0m11.45 10.45q.2-.1.3-.25.1-.2.05-.4-.45-1.4-1.4-2.75-.1-.2-.3-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4.85 1.2 1.25 2.5.05.2.2.3.2.1.4.05m-3-5.35q0-.2-.15-.3-1.1-.95-2.45-1.85-.2-.15-.4-.1-.2.05-.3.25-.15.15-.1.35.05.2.25.35 1.3.85 2.35 1.75.15.1.35.1.2 0 .35-.15.1-.2.1-.4m-24.4 17.05q.2-.05.3-.2.15-.2.1-.4-.05-.2-.2-.3-.9-.6-1.5-.75-.6-.25-1.1-.4-.2-.1-.4 0t-.25.3q-.1.15 0 .35.1.2.3.3.55.2 1.15.4h.05q.45.1 1.2.6.15.15.35.1m2.65 1.2q-.15-.15-.35-.15-.2 0-.35.15-.15.15-.15.35 0 .2.15.4 1 .9 2.15 2.15.1.15.35.15.2 0 .35-.1.15-.15.15-.35 0-.25-.1-.4-1.2-1.25-2.2-2.2m6.35 6.95q-1.1-1.25-2.05-2.35-.15-.2-.35-.2-.2 0-.35.15-.2.1-.2.35 0 .15.15.35.9 1.1 2.05 2.35.1.15.35.15.2 0 .35-.1.15-.15.15-.35 0-.2-.1-.35m-16.1-12h.05q-.7-.35-1.35-.7-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35.05.2.25.3.6.35 1.35.7l1.75.75q.15.05.35-.05.2-.1.3-.25.05-.2-.05-.4t-.25-.25q-1-.4-1.7-.7m-21.75 16.8q-.1.2 0 .4.1.15.3.25.85.3 1.85.6.2.05.4-.05.15-.1.25-.3.05-.2-.05-.35-.1-.2-.3-.25-1-.3-1.8-.6-.25-.1-.4 0-.2.1-.25.3m4.75 1.3q-.05.2.1.4.1.15.3.2 1.1.2 3 .35.2 0 .4-.1.15-.15.15-.35 0-.2-.1-.35-.15-.2-.35-.2-1.8-.15-2.9-.35-.2-.05-.35.1-.2.1-.25.3m15.75 1q-.15-.2-.35-.2-1.4-.15-3-.3-.2 0-.35.15-.2.1-.2.3 0 .2.15.4.1.15.3.15 1.6.15 3 .3.2.05.4-.1.15-.15.15-.35.05-.2-.1-.35m-9.35.15h.2l2.7.1q.2 0 .35-.1.15-.15.15-.35 0-.25-.1-.4-.15-.15-.35-.15-1.3-.05-2.7-.1h-.25q-.2 0-.35.15-.15.15-.15.35 0 .2.15.35.15.15.35.15"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.76;0.764;1" values="none;inline;none;none"/></g><g display="none"><path fill="#B4B4B4" d="M672.55 185.85q-9.95 7.7-14.5 11.15.05.05.2.1.05-.15.25-.2.15-.1.35 0 .9.4 2.8.95.15.05.3.2.1.2.05.4.9.2 2.05.5h.05v-.05q.05-.2.2-.25.2-.15.4-.05 1.55.45 3.05.9.2.05.3.25.1.15.05.35v.05q.9.25 1.8.6.05-.2.25-.3.2-.1.4 0 .9.35 1.75.7l1.1.5q.15.1.25.3.05.15 0 .35 1 .45 1.8.95.1-.15.3-.2.2-.05.4.1 1.4.95 1.85 1.9l11.3-30.75q-7.7 4.75-16.75 11.55M658.5 196.9q.15-.1.35 0 .9.4 2.8.95.15.05.3.2.1.2.05.4-.1.15-.25.3-.2.1-.35.05-2.05-.6-2.95-1-.2-.1-.25-.25-.1-.2 0-.4l.05-.05q.05-.15.25-.2"/><path fill="#CCC" d="M658.25 197.1q-.15-.05-.2-.1-5.5 4.1-14.85 11.15-2.95 2.25-5.85 4.4.95.9 2.3 1.65.15.1.25.3 0 .2-.05.4.9.45 2 .85.05-.2.25-.3.15-.1.35 0l1.3.4q.75.15 1.6.45.2.05.3.2.1.2.05.4v.05l1.95.65q.05-.15.25-.25t.4 0q1.3.5 2.9 1.1.15.05.25.25t.05.35q.9.35 1.9.8v-.05q.1-.2.3-.25.15-.1.35 0 1.05.45 2.2.95.15.05.2.2l20.85-14.5q-.1-.1-.1-.25-.1-.95-1.6-1.95-.2-.15-.25-.35-.05-.2.1-.35v-.05q-.8-.5-1.8-.95-.05 0-.05.05-.1.15-.3.25-.2.05-.35-.05-.5-.25-1.05-.5-.85-.35-1.7-.65-.2-.1-.3-.3-.1-.2 0-.35-.9-.35-1.8-.6-.1.15-.25.25-.2.1-.4.05-1.5-.45-3.05-.9-.2-.1-.25-.25-.1-.15-.05-.35h-.05q-1.15-.3-2.05-.5-.1.15-.25.3-.2.1-.35.05-2.05-.6-2.95-1-.2-.1-.25-.25-.1-.2 0-.4l.05-.05"/><path fill="#B4B4B4" d="M651.5 219.05v.05q-.1.15-.3.25-.2.1-.35.05-1.55-.6-2.9-1.1-.2-.1-.3-.3-.1-.2 0-.35v-.05l-1.95-.65q-.1.15-.25.25-.2.1-.4.05-.85-.25-1.55-.45h-.05l-1.3-.4q-.2-.1-.3-.25-.1-.2 0-.4-1.1-.4-2-.85-.1.15-.3.25-.2.05-.4-.05-1.5-.85-2.55-1.9-.05-.05-.05-.1-9.25 6.7-18.25 12.5.6.25 1.35.55.15.05.25.25t.05.4q.75.25 1.7.6v-.05q.05-.2.25-.3.15-.1.35 0 1.1.3 2.9.7.2.05.35.25.1.15.05.35v.05q.9.2 1.95.45v-.05q.05-.2.25-.3.15-.15.35-.1 1.35.25 2.95.55.2.05.3.25.15.15.1.35v.05q.4.05.85.15l1 .2q.05-.2.25-.3.15-.15.35-.1 1.7.3 3.15.75.15.05.3.2.1.2.05.4 1 .3 1.85.6.05-.15.25-.25t.4 0q1.75.65 2.75 1.45l.1.1 12.9-11.5q-1.05-.45-2-.85-.2-.1-.25-.25-.1-.2 0-.35-1-.45-1.9-.8m-24 9.75q.05-.2.25-.3.15-.15.35-.1 1.35.25 2.95.55.2.05.3.25.15.15.1.35v.05q-.05.15-.2.25-.2.15-.4.1-1.6-.3-2.95-.55-.2-.05-.3-.2-.1-.2-.1-.35v-.05"/><path fill="#CCC" d="M625.35 228.7q-.2.1-.4.05-1.9-.4-3-.75-.2-.1-.3-.25-.1-.2 0-.35-.95-.35-1.7-.6-.1.15-.3.25-.2.1-.35.05-1-.4-1.7-.75-.15-.05-.2-.15-13.9 8.75-27.25 15.4 10.1 3.45 17.7 3.55 7.55.1 14.9-.8 7.3-.9 8.45 1.5 1.25-5.8 10.75-12.45-.9-.65-2.4-1.2-.2-.1-.3-.3-.1-.2 0-.35v-.05q-.85-.3-1.85-.6-.1.2-.25.3-.2.1-.35.05-1.4-.4-3.05-.7-.25-.05-.35-.2-.15-.2-.1-.4l-1-.2q-.45-.1-.85-.15-.05.15-.2.25-.2.15-.4.1-1.6-.3-2.95-.55-.2-.05-.3-.2-.1-.2-.1-.35-1.05-.25-1.95-.45-.05.15-.2.3"/><path fill="#B4B4B4" d="M642.15 233.6q-.25.6-.15.65.2.05.4-.65h-.25"/><path fill="#999" d="M658.85 196.9q-.2-.1-.35 0-.2.05-.25.2l-.05.05q-.1.2 0 .4.05.15.25.25.9.4 2.95 1 .15.05.35-.05.15-.15.25-.3.05-.2-.05-.4-.15-.15-.3-.2-1.9-.55-2.8-.95m16.5 6.75q.05.2.25.35 1.5 1 1.6 1.95 0 .15.1.25 0 .05.05.1.15.1.4.1.2 0 .35-.15.1-.15.1-.35 0-.45-.2-.85-.45-.95-1.85-1.9-.2-.15-.4-.1-.2.05-.3.2v.05q-.15.15-.1.35m-1.7-1.7q-.1-.2-.25-.3l-1.1-.5q-.85-.35-1.75-.7-.2-.1-.4 0t-.25.3q-.1.15 0 .35.1.2.3.3.85.3 1.7.65.55.25 1.05.5.15.1.35.05.2-.1.3-.25 0-.05.05-.05.05-.2 0-.35m-6.2-1.5q.2.05.4-.05.15-.1.25-.25v-.05q.05-.2-.05-.35-.1-.2-.3-.25-1.5-.45-3.05-.9-.2-.1-.4.05-.15.05-.2.25v.05q-.05.2.05.35.05.15.25.25 1.55.45 3.05.9M651.5 219.1v-.05q.05-.15-.05-.35-.1-.2-.25-.25-1.6-.6-2.9-1.1-.2-.1-.4 0t-.25.25v.05q-.1.15 0 .35.1.2.3.3 1.35.5 2.9 1.1.15.05.35-.05.2-.1.3-.25m2.55.45q-.2-.1-.35 0-.2.05-.3.25v.05q-.1.15 0 .35.05.15.25.25.95.4 2 .85l.2.1q.2.1.4.05.15-.1.25-.3.1-.2.05-.35-.05-.1-.1-.1-.05-.15-.2-.2-1.15-.5-2.2-.95m-17.5-6.45q0 .05.05.1 1.05 1.05 2.55 1.9.2.1.4.05.2-.1.3-.25.05-.2.05-.4-.1-.2-.25-.3-1.35-.75-2.3-1.65l-.05-.05q-.15-.15-.35-.15-.2 0-.35.15-.15.15-.15.35 0 .15.1.25m8.8 3.2q-.85-.3-1.6-.45l-1.3-.4q-.2-.1-.35 0-.2.1-.25.3-.1.2 0 .4.1.15.3.25l1.3.4h.05q.7.2 1.55.45.2.05.4-.05.15-.1.25-.25v-.05q.05-.2-.05-.4-.1-.15-.3-.2m-20.4 12.45q.2.05.4-.05.15-.15.2-.3v-.05q.05-.2-.05-.35-.15-.2-.35-.25-1.8-.4-2.9-.7-.2-.1-.35 0-.2.1-.25.3v.05q-.1.15 0 .35.1.15.3.25 1.1.35 3 .75m2.55.05v.05q0 .15.1.35.1.15.3.2 1.35.25 2.95.55.2.05.4-.1.15-.1.2-.25v-.05q.05-.2-.1-.35-.1-.2-.3-.25-1.6-.3-2.95-.55-.2-.05-.35.1-.2.1-.25.3m-9.45-3.35q-.2-.1-.4 0-.2.05-.3.25-.1.15 0 .35 0 .05.05.15.05.1.2.15.7.35 1.7.75.15.05.35-.05.2-.1.3-.25.05-.2-.05-.4t-.25-.25q-.75-.3-1.35-.55-.15-.1-.25-.15m21.85 5.8q-.2-.1-.4 0t-.25.25v.05q-.1.15 0 .35.1.2.3.3 1.5.55 2.4 1.2l.1.1.1.1h.25q.2-.05.35-.2.15-.15.1-.35 0-.15-.1-.25l-.1-.1q-1-.8-2.75-1.45m-2.55-.75q-.15-.15-.3-.2-1.45-.45-3.15-.75-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4.1.15.35.2 1.65.3 3.05.7.15.05.35-.05.15-.1.25-.3.05-.2-.05-.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.757;0.76;1" values="none;inline;none;none"/></g><g display="none"><path fill="#CCC" d="M666.15 191.05q-.25.15-.5.35-6.4 4.35-11.7 7.55-6.05 3.7-12.1 7.05-.65.3-1.2.65.25.3.5.65 1.25 1.5 2.75 3.1 2.35 2.5 11.65 9.9l16.9-23.8q-4.25-2.65-5.9-4.9-.2-.3-.4-.55"/><path fill="#B4B4B4" d="M666.55 191.6q1.65 2.25 5.9 4.9l18.7-23.75q-14.3 10.95-25 18.3.2.25.4.55m-25.4 15.7q-.25-.35-.5-.65-10.5 5.65-21.15 10.35 2.25 2.2 5.3 4.35 3.3 2.35 14.85 9 2.25 1.3 2.3 2.5l13.6-12.55q-9.3-7.4-11.65-9.9-1.5-1.6-2.75-3.1"/><path fill="#CCC" d="M619.5 217q-.55.2-1.1.45-13.65 5.9-27.55 10.1 4 4.3 12.25 7.05 3.9 1.3 16.85 4.25Q629.3 241 630.2 245l11.75-12.15q-.05-1.2-2.3-2.5-11.55-6.65-14.85-9-3.05-2.15-5.3-4.35"/><path fill="#999" d="M666.2 190.55q-.2-.05-.35.1-.15.15-.2.35-.05.2.1.35.2.25.4.55.7.95 1.8 1.95.1.1.35.1.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-1-.9-1.6-1.75-.25-.35-.45-.6-.15-.15-.35-.2m4.15 4.6q-.15.15-.1.35.05.2.25.3.8.55 1.7 1.15.2.1.4.05.15-.05.3-.25.1-.2.05-.35-.05-.2-.25-.3-.9-.55-1.65-1.1-.2-.15-.4-.1-.2.05-.3.25m-21.25 19.3q-.2-.15-.4-.1-.2 0-.35.2-.15.15-.1.35 0 .2.2.35 1.05.85 2.3 1.85.15.15.35.1.2-.05.35-.2.15-.15.1-.35-.05-.2-.2-.35-1.25-1-2.25-1.85m3.7 4.1q0 .2.2.35 1.05.85 2.25 1.8.15.15.35.1.2-.05.35-.2.15-.15.1-.35-.05-.2-.2-.35-1.2-.95-2.2-1.8-.2-.15-.4-.1-.2 0-.35.2-.15.15-.1.35M641.55 207q-.25-.4-.5-.65-.15-.2-.35-.2-.2 0-.35.15-.2.1-.2.3 0 .2.15.4.2.25.45.6l.05.05q.65.85 1.45 1.7.1.15.35.15.2 0 .35-.1.15-.15.15-.35 0-.2-.1-.35-.75-.85-1.45-1.7m4.7 6.35q.15.1.35.1.2 0 .35-.15.1-.15.1-.35 0-.25-.15-.35-1.3-1.15-2.05-2-.15-.15-.35-.15-.25 0-.4.15-.15.1-.15.35 0 .2.15.35.8.85 2.15 2.05m-27.1 3.3q-.15.15-.15.35 0 .2.15.35 1.05 1.1 2.35 2.1.15.15.35.1.2-.05.35-.2.15-.15.1-.35-.05-.2-.2-.35-1.2-1-2.25-2-.15-.15-.35-.15-.2 0-.35.15m5.95 4.3l-.7-.5q-.15-.15-.35-.1-.25.05-.35.2-.15.15-.1.4.05.2.2.3l.7.5q.75.55 2 1.4.15.1.35.05.2-.05.35-.2.1-.2.05-.4t-.2-.3q-1.2-.8-1.95-1.35m14.4 9.75q0 .15.2.3 1.45.9 1.75 1.7 0 .15.2.3.2.1.4.05.15-.05.3-.25.1-.2.05-.35-.25-1.15-2.15-2.3-.2-.15-.4-.05-.2 0-.3.2-.15.2-.05.4m-5.2-3.05q.05.15.2.3 1.25.7 2.6 1.5.2.1.4.05.15-.05.3-.25.1-.2.05-.35-.05-.2-.25-.3-1.35-.85-2.6-1.5-.2-.15-.35-.05-.2.05-.3.2-.15.2-.05.4m-1.75-1.85q-.05-.2-.25-.3-1.45-.85-2.6-1.6-.2-.15-.4-.05-.2 0-.3.2-.15.15-.05.35 0 .2.2.35 1.2.7 2.65 1.6.2.1.4.05.15-.05.3-.25.1-.2.05-.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.753;0.757;1" values="none;inline;none;none"/></g><g display="none"><path fill="#B4B4B4" d="M667.8 187.75l4.6 7.95 17.3-21.75q-10.45 7.35-21.9 13.8"/><path fill="#CCC" d="M672.4 195.7l-4.6-7.95q-4.75 2.65-9.65 5.15-7.1 3.65-14.7 7.05l11.25 18 17.7-22.25"/><path fill="#B4B4B4" d="M643.45 199.95q-9.75 4.35-20.35 8.4l18.5 24.5 13.1-14.9-11.25-18"/><path fill="#CCC" d="M641.6 232.85l-18.5-24.5q-13.55 5.15-28.5 9.65 5.7 6.15 10.9 10.35 7.8 6.4 17 10.8l4.05 1.9 3.55 3.8 11.5-12"/><path fill="#999" d="M667.65 187.55q-.2.1-.2.3-.1.15.05.35l1.5 2.55q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.55q-.15-.15-.3-.2-.2-.1-.4.05m3.7 5.3q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m-22.8 15.45q.2-.15.25-.3.05-.2-.05-.4l-1.6-2.6q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.6q.1.2.3.25.15.05.35-.05m1.45 1.65q-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25m3.55 5.25q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5m-9.9-15.55q-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.6 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.6-2.5q-.15-.2-.35-.25m-15.2 16.4q.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2m2.25 1.6q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m3.6 4.8q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4m-11.1-14.6q-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2m18.05 24q-.2-.05-.35.1-.15.15-.2.35-.05.2.1.35l.4.5q.15.15.35.2.2.05.35-.1.15-.15.2-.35.05-.2-.1-.35l-.4-.5q-.15-.15-.35-.2m-2.35-1.6q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.8-2.4q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.8 2.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.75;0.753;1" values="none;inline;none;none"/></g><g display="none"><path fill="#B4B4B4" d="M662.5 179.3l9.9 16.4 17.3-21.75q-10.45 7.35-27.2 5.35"/><path fill="#CCC" d="M672.4 195.7l-9.9-16.4q-4.85 10.45-9.8 15.1-4.95 4.6-7.95 7.1l9.95 16.45 17.7-22.25m-30.8 37.15l-23.25-33.95q-8.8 14.6-23.75 19.1 5.7 6.15 10.9 10.35 7.8 6.4 17 10.8l4.05 1.9 3.55 3.8 11.5-12"/><path fill="#B4B4B4" d="M618.35 198.9l23.25 33.95 13.1-14.9-9.95-16.45q-11.05 2.8-26.4-2.6"/><path fill="#999" d="M662.95 179.05q-.15-.15-.3-.2-.2-.1-.4.05-.15.1-.2.3-.1.15.05.35l.5.9q.1.15.3.25.15.05.35-.05.15-.15.25-.3.05-.2-.05-.4l-.5-.9m2.1 3.4q-.15-.15-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.5 2.6q.1.15.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.5-2.6m2.2 5.35q-.1.15.05.35l1.6 2.6q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.6q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3m4 5.05q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.6q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.6M650.1 209.7q-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.6q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.6-2.6q-.15-.2-.3-.2m-1.15-2q.05-.2-.05-.4l-1.6-2.55q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.6 2.55q.1.2.3.25.15.05.35-.05.2-.15.25-.3m4.65 7.4q-.15-.2-.3-.2-.2-.1-.4.05-.2.1-.2.3-.1.15.05.35l1.55 2.6q.1.2.3.25.15.05.35-.05.2-.15.25-.3.05-.2-.05-.4l-1.55-2.6m-9.1-14q-.2.1-.25.3-.05.2.1.4l.6.9q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-.6-.9q-.15-.2-.35-.25-.2-.05-.35.1m-16.2 12.4q-.2.1-.25.3-.05.2.1.4l1.7 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.7-2.5q-.15-.2-.35-.25-.2-.05-.35.1m4.1 5.15q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.7 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.7-2.5m-13.95-20.25q-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.7 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.7-2.5q-.15-.2-.35-.25m3.75 5.25q-.15-.2-.35-.25-.2-.05-.35.1-.2.1-.25.3-.05.2.1.4l1.7 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.7-2.5m2.7 4.85q-.2.1-.25.3-.05.2.1.4l1.7 2.5q.1.15.3.2.2.05.4-.05.15-.15.2-.35.05-.2-.05-.35l-1.7-2.5q-.15-.2-.35-.25-.2-.05-.35.1m14.25 20.05q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.75 2.4q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.75-2.4m-3.4-4.95q-.1-.15-.3-.2-.25-.05-.4.1-.15.1-.2.35-.05.2.1.35l1.7 2.45q.1.15.35.2.2.05.35-.1.15-.1.2-.3.05-.25-.1-.4l-1.7-2.45"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.747;0.75;1" values="none;inline;none;none"/></g><g><use xlink:href="#a" transform="matrix(-1 0 0 1 627.95 215.7)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="622.15,220.55;622.15,220.55;622.323,216.146;622.724,211.858;622.846,207.619;622.907,206.217;622.881,204.778;622.944,204.098;623.002,203.305;623.002,203.305;627.215,211.25;631.497,219.17;635.755,227.109;637.104,229.694;638.544,232.383;639.226,233.65;639.886,234.901;639.886,234.901;636.987,236.218;634.156,237.389;631.432,238.605;629.985,239.244;628.544,239.72;628.544,239.72;625.276,229.205;622.933,219.655;623.934,208.689;626.61,198.612;628.689,193.522;629.837,191.03;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.45;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.494;0.497;0.5;0.503;0.507;0.51;0.514;0.743;0.744;1" values="0;629.837,191.03;630.89,188.564;630.89,188.564;630.94,188.614;626.526,198.428;624.115,208.708;624.157,219.397;626.32,229.64;628.189,234.645;630.813,239.039;630.813,239.039;630.885,239.051;631.8,240.726;633.146,242.112;633.477,242.755;633.485,243.402;633.781,243.779;633.86,244.097;633.86,244.097;632.26,248.491;632.26,248.491" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="0,0,0;0,0,0;4.795,0,0;9.78,0,0;14.777,0,0;16.305,0,0;18.042,0,0;18.805,0,0;19.746,0,0;19.746,0,0;8.311,0,0;-2.761,0,0;-14.058,0,0;-17.782,0,0;-21.571,0,0;-23.54,0,0;-25.497,0,0;-25.497,0,0;-24.827,0,0;-24.308,0,0;-23.786,0,0;-23.34,0,0;-23.199,0,0;-23.199,0,0;-2.049,0,0;0.866,0,0;15.113,0,0;27.644,0,0;32.594,0,0;38.086,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.494;0.497;0.5;0.503;0.507;0.51;0.514;0.743;0.744;1" values="0;38.086,0,0;39.797,0,0;39.797,0,0;28.277,0,0;16.454,0,0;2.409,0,0;-11.33,0,0;-17.082,0,0;-21.714,0,0;-21.714,0,0;-22.949,0,0;-23.063,0,0;-23.078,0,0;-23.046,0,0;-23.069,0,0;-23.062,0,0;-23.199,0,0;-23.199,0,0;-23.423,0,0;-23.423,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewY" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.41;0.411;1" values="180;180;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewY" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;1" values="0;180;180" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="-1,1;-1,1;-0.999,0.999;-0.999,0.999;-0.998,0.998;-0.999,0.999;-0.998,0.998;-1,1;-1,1;-0.999,0.999;-0.999,0.999;-0.998,0.998;-0.999,0.999;-0.998,0.998;-1,1;-1,1;-0.998,0.998;-0.998,0.998;-0.999,0.999;-0.998,0.998;-1,1;-1,1;-0.999,0.999;-0.997,0.997;-0.998,0.998;-0.998,0.998;-0.997,0.997;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;-0.997,0.997;-1,1;-1,1;-0.999,0.999;-1,1;-0.999,0.999;-0.999,0.999;-1,1;-1,1;-0.998,0.998;-0.999,0.999;-0.997,0.997;-0.998,0.998;-0.998,0.998;-1,1;-1,1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="-5.8,-4.85;-5.8,-4.85;-5.8,-4.8;-5.7,-4.8;-5.75,-4.9;-5.8,-4.95;-5.9,-4.9;-5.85,-4.9;-5.8,-4.85;-5.8,-4.85;-5.85,-4.85;-5.8,-4.9;-5.8,-4.85;-5.85,-4.8;-5.8,-4.85;-5.8,-4.85;-5.85,-4.8;-5.85,-4.8;-5.9,-4.85;-5.9,-4.8;-5.9,-4.9;-5.95,-4.9;-5.85,-4.75;-5.85,-4.75;-5.85,-4.8;-5.9,-4.85;-5.9,-4.75;-5.9,-4.8;-5.9,-4.75;-5.85,-4.75;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.462;0.466;0.469;0.493;0.494;0.497;0.5;0.503;0.507;0.51;0.514;0.743;0.744;1" values="0;-5.85,-4.75;-5.8,-4.85;-5.8,-4.85;-5.8,-4.8;-5.8,-4.85;-5.8,-4.85;-5.85,-4.85;-5.9,-4.85;-5.9,-4.85;-5.85,-4.8;-5.8,-4.8;-5.75,-4.8;-5.75,-4.75;-5.85,-4.75;-5.8,-4.75;-5.8,-4.8;-5.8,-4.8;-9.1,-8.2;-9.1,-8.2" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.747;1" values="inline;none;none"/></g><use xlink:href="#a" transform="translate(717 209.95)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="12.167s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="722.8,214.8;722.8,214.8;722.268,219.008;721.651,223.143;721.097,227.414;720.893,228.858;720.667,230.189;720.571,230.903;720.519,231.544;720.519,231.544;717.077,223.423;713.624,215.361;710.258,207.178;709.059,204.497;707.954,201.812;707.252,200.456;706.724,199.117;706.724,199.117;709.5,198.199;712.283,197.432;715.132,196.552;716.615,196.152;717.958,195.679;717.958,195.679;722.967,213.392;720.534,230.85;717.93,236.089;715.353,241.31;714.1,243.972;713.332,245.287;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;713.332,245.287;712.651,246.651;712.651,246.651;720.534,230.85;722.967,213.392;721.381,207.465;719.625,201.562;718.829,198.62;717.958,195.679;717.958,195.679;717.11,198.202;716.118,200.873;715.823,201.796;715.561,202.502;715.389,202.956;715.253,203.309;715.253,203.309" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.178;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="0,0,0;0,0,0;4.762,0,0;9.763,0,0;14.768,0,0;16.28,0,0;18.028,0,0;18.783,0,0;19.583,0,0;19.583,0,0;8.269,0,0;-2.753,0,0;-14.025,0,0;-17.774,0,0;-21.544,0,0;-23.54,0,0;-25.346,0,0;-25.346,0,0;-24.802,0,0;-24.297,0,0;-23.79,0,0;-23.302,0,0;-23.078,0,0;-23.078,0,0;-2.013,0,0;18.775,0,0;25.797,0,0;32.822,0,0;36.336,0,0;38.094,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="0;38.094,0,0;39.839,0,0;39.839,0,0;18.775,0,0;-2.013,0,0;-9.01,0,0;-16.027,0,0;-19.534,0,0;-23.078,0,0;-23.078,0,0;-23.045,0,0;-23.049,0,0;-23.04,0,0;-23.045,0,0;-23.044,0,0;-23.078,0,0;-23.078,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.182;0.185;0.188;0.192;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.39;0.394;0.397;0.401;0.404;0.408;0.41;0.411;1" values="1,1;1,1;0.999,0.999;0.998,0.998;0.998,0.998;0.996,0.996;0.997,0.997;0.996,0.996;0.998,0.998;0.998,0.998;0.999,0.999;0.998,0.998;0.996,0.996;0.996,0.996;0.997,0.997;0.997,0.997;0.996,0.996;0.995,0.995;0.996,0.996;0.996,0.996;0.998,0.998;0.998,0.998;1,1;0.997,0.997;0.995,0.995;0.995,0.995;0.994,0.994;0.994,0.994;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;0.514;1" values="1;0.994,0.994;0.997,0.997;0.997,0.997;1,1;0.998,0.998;0.997,0.997;0.996,0.996;0.998,0.998;0.998,0.998;0.996,0.996;0.996,0.996;0.995,0.995;0.996,0.996;0.996,0.996;0.998,0.998;0.998,0.998" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.096;0.099;0.103;0.106;0.11;0.113;0.116;0.12;0.182;0.185;0.188;0.192;0.195;0.199;0.202;0.226;0.229;0.233;0.236;0.24;0.243;0.394;0.397;0.401;0.408;0.41;0.411;1" values="-5.8,-4.85;-5.8,-4.85;-5.8,-4.9;-5.75,-4.75;-5.85,-4.9;-5.8,-4.85;-5.8,-4.8;-5.7,-4.85;-5.8,-4.9;-5.8,-4.9;-5.8,-4.95;-5.85,-4.95;-5.75,-4.95;-5.8,-5;-5.7,-4.9;-5.75,-4.9;-5.75,-4.9;-5.7,-4.9;-5.65,-4.9;-5.75,-4.95;-5.8,-4.85;-5.8,-4.95;-5.8,-4.95;-5.85,-4.95;-5.8,-5;-5.8,-5;-5.75,-5;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.411;0.414;0.449;0.452;0.455;0.459;0.462;0.466;0.469;0.493;0.497;0.5;0.503;0.507;0.51;1" values="0;-5.75,-5;-5.85,-5.05;-5.85,-5.05;-5.85,-4.95;-5.8,-4.95;-5.85,-4.9;-5.75,-4.95;-5.8,-4.9;-5.8,-4.95;-5.8,-4.95;-5.85,-5;-5.8,-5;-5.85,-5.05;-5.85,-5;-5.85,-4.95;-5.85,-4.95" calcMode="discrete"/></use><g display="none"><path fill="#0E2D38" d="M609.55 146.6q.55 0 .9-.4.4-.4.4-.9 0-.55-.4-.95-.35-.4-.9-.4t-.95.4q-.4.4-.4.95 0 .5.4.9t.95.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.699;0.702;1" values="none;inline;none;none"/></g><g display="none"><g transform="matrix(.504 0 0 .504 601.05 137.45)"><animateTransform attributeName="transform" additive="replace" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.558;0.562;0.565;0.568;0.675;0.678;0.681;0.685;0.688;0.692;0.695;1" values="605.658,141.529;605.658,141.529;601.35,137.244;601.4,137.247;601.35,137.25;601.35,137.25;601.324,137.254;601.356,137.209;601.334,137.263;601.362,137.267;603.518,139.329;605.658,141.529;605.658,141.529" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.558;0.562;0.565;0.568;0.675;0.678;0.681;0.685;0.688;0.692;0.695;1" values="0.504,0.504;0.504,0.504;1.207,1.207;1.103,1.103;1,1;1,1;1.074,1.074;1.147,1.147;1.221,1.221;1.295,1.295;0.899,0.899;0.504,0.504;0.504,0.504" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.558;0.562;0.675;0.678;0.681;0.688;0.692;0.695;1" values="-9.15,-8.1;-9.15,-8.1;-9.2,-8.2;-9.2,-8.2;-9.15,-8.2;-9.2,-8.2;-9.2,-8.2;-9.25,-8.15;-9.15,-8.1;-9.15,-8.1" calcMode="discrete"/><path fill="#0E2D38" d="M16.4 12.25l-1.15-1.7-.7-6.25-2.3-4.3L0 4.2l1.6 2.45 2.25 3.3.85 1.25L7.35 10 6.3 6.95l3.85-2 1.35 7.4 1.45 1.5 3.45-1.6m.6.8V13l-3.25 1.5 1.9 1.9 2.8-1.3L17 13.05"/></g><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.558;0.699;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M610.05 142q-.7-.7-1.65-.7t-1.65.7q-.7.7-.7 1.65t.7 1.65q.7.7 1.65.7t1.65-.7q.7-.7.7-1.65t-.7-1.65"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.555;0.558;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-linecap="round" stroke-linejoin="round" d="M622.25 140l.3-.1m-10.95-6.55l.05-.45m-15.5 11.8l-.25-.05m5.45-9.05l-.35-.45m-.6 19.7l-.25.3"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.705;0.712;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-linecap="round" stroke-linejoin="round" d="M619.7 140.7l1.3-.45m-9.85-4.4l.25-1.4m-12.85 10.3l-1.35-.2m5.85-7.25l-.85-1.15m-.6 17.25l-.85 1"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.702;0.705;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-linecap="round" stroke-linejoin="round" d="M610.35 140.9l.8-4.45m3.6 6.25l3.9-1.35m-12.55-.8l-1.7-2.4m.55 7l-5.3-.7m4.6 5.15l-2.6 3.05"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.699;0.702;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M581.05 167.1l-1 .35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.582;0.586;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M585.9 166.45l-3.75 1.35"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.579;0.582;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M582.25 167.8l6.8-1.85"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.575;0.579;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M592.15 165.4l-9.85 2.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.572;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M584.6 167.3l7.55-1.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.568;0.572;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M586.9 166.8l5.25-1.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.565;0.568;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M592.15 165.4l-2.95.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.562;0.565;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M579.85 147.05l-.9-.45"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.582;0.586;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M584.65 148.4l-3.5-1.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.579;0.582;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M581.15 146.5l6.5 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.575;0.579;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M590.6 150.25l-9.45-3.75"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.572;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M583.4 147.35l7.2 2.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.568;0.572;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M585.65 148.15l4.95 2.1"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.565;0.568;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M590.6 150.25l-2.7-1.25"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.562;0.565;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M637.7 127.25l.55-.95"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.582;0.586;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M636.35 132l1.85-3.6"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.579;0.582;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M635.35 135l2.85-6.5"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.575;0.579;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M634.35 138l3.85-9.4"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.572;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M634.35 138l3-7.2"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.568;0.572;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M634.35 138l2.2-5.05"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.565;0.568;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M634.35 138l1.35-2.85"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.562;0.565;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M618.1 123.05l-.35-.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.582;0.586;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M618.7 128.05l-1.35-3.75"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.579;0.582;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M617.35 124.3l1.85 6.85"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.575;0.579;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M619.65 134.2l-2.3-9.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.572;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M617.8 126.65l1.85 7.55"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.568;0.572;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M618.3 128.95l1.35 5.25"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.565;0.568;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M619.65 134.2l-.9-2.9"/><animate attributeName="display" repeatCount="indefinite" dur="12.167s" keyTimes="0;0.562;0.565;1" values="none;inline;none;none"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="basic" width="1326" height="346" xmlns="http://www.w3.org/2000/svg"><defs><symbol id="a" overflow="visible"><path fill="#FF5B80" d="M58.1 28.45l-11.6-16.2q-4.65-5.65-8.4.5L27.8 30.2l30.3-1.75"/><path fill="#317C99" d="M27.8 30.2l-3.35 5.725L11.3 58.3l-2.65 4.55q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85l9.7-.575 12.4-.725 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9l-2.75-3.75-18.95-26.1-30.3 1.75"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M41.65 1.25l.5 7.75 4.1-6.75M42.15 9l-.2.35-4.9-6.6"/></symbol></defs><path fill="#CCC" d="M658.7 284q-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05-.049 0-.05.05v-.05q-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45v-.05q.002.05.1.05 0 .1.15.15h.75q.15-.05.15-.15m-.15.45v.1q0 .1.1.1.1.05.3.05.2 0 .25-.05.05 0 .05-.1 0-.05-.2-.1h-.5m.65-.2q0 .05.05.05.1.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05 0 0 .05m1.75.3q-.15-.05-.25-.05t-.25.05q-.05 0-.05.1 0 .05.2.1h.45q.05-.05.05-.1 0-.1-.15-.1m.4-.5q-.1.05-.1.15.05.05.3.15.25.05.5.05.3 0 .45-.05.2-.1.15-.15 0-.1-.3-.15-.2-.05-.5-.05-.25 0-.5.05m1.7-.85q-.2 0-.35.05-.15.05-.15.1.1.05.25.1.25.05.45.05t.3-.05q.15-.05.1-.1 0-.05-.25-.1-.1-.05-.35-.05m-.1 1.1q.1.05.2.05.1.05.15.1h.55q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05 0-.05-.1-.05-.2-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05m.05.25h-.25q-.2 0-.3.1-.1.05-.1.1.05 0 .15.05.15.05.3.05t.25-.1l.05-.05q0-.05-.1-.15m2.05-1.6q-.2.1-.25.1-.1.05-.1.1.05.05.15.05.05.05.25 0 .1 0 .25-.05.05 0 0-.05 0-.05-.05-.15h-.25m-1.2 1.55v.05q0 .1.1.15h.5q.05-.05.05-.15 0-.05-.2-.05-.05-.05-.25-.05-.1 0-.2.05m1.85-.9q-.1 0-.25.05-.05 0 0 .05 0 .05.05.05.15.1.25.1.2 0 .25-.1.1 0 .1-.05-.05-.05-.15-.05-.05-.05-.25-.05m-.1.95q-.15-.05-.25-.05-.15 0-.25.05l-.1.1q.05.05.15.1h.05q0 .05.2.05.2.05.35.05.2-.05.3-.1.15 0 .15-.05-.1-.05-.25-.15-.15-.05-.3 0h-.05m-.1-.55q0 .05.1.1.15.05.3.05t.15-.05q.15-.05.15-.1l-.2-.05q-.05-.05-.25-.05-.1 0-.25.05v.05m1.25-.35q.05.1.2.2.3.05.55.05.3 0 .45-.05.2-.1.15-.2 0-.05-.3-.1-.15-.1-.45-.1-.25 0-.5.1-.1.05-.1.1m-.4.85q-.05 0-.05.05.05.1.15.15h.35q0 .05.1.05.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.3l.05-.05q0-.05-.2-.15h-.3q0-.05-.1-.05-.1-.05-.3-.05-.1 0-.2.05m-8.6.75v.05h-.1q-.15.05-.25.05-.15.1-.1.15h-.4q-.1.05-.05.1 0 .05.1.1h.6q-.1.05-.25.05-.15.05-.1.15.05.1.25.15.2 0 .35.05h-.1l-.15.05h-.15q-.15-.05-.25-.05-.15 0-.25.05h-.1q-.15-.05-.3-.05h-.1q.1-.05 0-.05 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.15.1-.15.2.05.05.3.05.25.15.55.15.1 0 .2-.05v.05q0 .05.2.05.1.05.2.05 0 .05.2.15.25.05.5.05.3 0 .5-.05.05-.05.1-.05h.15q.1 0 .15-.1.05 0 .05-.05l-.1-.1h.2q.1-.1.05-.15l-.15-.05q.15 0 .25-.05.2-.05.15-.15-.1-.1-.25-.15-.25-.05-.55-.05-.048 0-.1.05.05-.052.05-.1h-.05l.05-.05q.1 0 .25-.05l.05.05q.05 0 .15.05.15.05.3.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.15l-.1-.05q-.1-.05-.15-.05-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05m-1.7 2.25h.15q.05 0 .05.05h.25q.15 0 .2-.05.15 0 .15-.1 0-.05-.25-.05.1-.05.1-.1-.05-.05-.15-.1h-.5l-.05.05h-.2q-.15-.05-.35 0h-.1q.15-.05.15-.2-.05-.05-.15-.1.1-.1.1-.15-.05-.1-.3-.1.1-.05.1-.1-.05-.05-.15-.1-.15-.05-.25-.05 0-.05-.2-.1h-.6q-.1.05-.1.1.05.05.2.1h.15l.15.1q-.15 0-.2.05h-.05q-.15.05-.05.15v.05q-.002-.05-.1-.05h-.65q-.05.05 0 .1 0 .049.05.05-.151 0-.3.05v.1q0 .05.15.1h.4q0 .05.05.05.2.05.3.05h.25q.25 0 .35-.05h.3q-.1.1-.1.15.05.1.3.15.192.048.475.05-.178.003-.225.05-.15.05-.15.1-.1 0-.15.05-.2.1-.15.15 0 .05.25.1v.05h-.25q0-.05-.1-.05-.2-.05-.4-.05t-.4.05q-.05.05-.05.1.05.05.2.1.25.05.4.05h.45q.1.05.3.05.15 0 .3-.05.1-.05.1-.1-.05-.05-.25-.1h.1q.15 0 .35-.05.1-.1.1-.15l-.1-.1h.1q.15-.05.05-.1 0-.05-.1-.1h-.1q0-.05.05-.05.05-.05.1-.05m1.6-.75h-.1q-.1.05-.05.1h.05q-.1.05-.15.05-.1 0-.1.05-.05.05-.05.15.05.05.25.1.3.1.6.1h.15q.15.05.4 0 .3 0 .5-.1.1-.05.1-.1-.05-.15-.3-.2-.2-.05-.35-.05v-.05q-.05-.1-.25-.1h-.4q-.2 0-.3.05m.3.6q-.3 0-.45.05-.2.05-.1.15 0 .05.1.1h-.2q-.3 0-.45.05-.15.05-.15.2.1.05.3.1.2.1.5.1h.15l.1.05q0 .1.25.15.15.05.35.05v.1q-.05.05-.05.1t.15.15h.1q.15.05.35.05.15 0 .35-.15.2-.05.1-.1v-.05h-.1l.05-.05q.05 0 .15-.05h.05q.1.05.35.05.25 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.1-.05-.2-.05v-.1q.2 0 .3-.05h.1q0-.05.05-.05h.25q.15 0 .3-.1.05 0 .05-.05t-.2-.1q-.1-.05-.25-.05h-.05q-.15 0-.35.05h-.05q-.2-.05-.45-.05-.3 0-.45.05-.15.05-.15.1.05.15.3.2-.1.05-.1.1.05 0 .15.05h.1l-.1.05q-.1 0-.05.05h-.1q-.05-.05-.15-.05v-.05q-.05-.05-.2-.1-.25-.05-.55-.05h-.2q-.049 0-.05.05v-.05q.05 0 0-.05 0-.148-.1-.15h.35q0 .05.15.15h.25q.15-.1.25-.1.05-.05.05-.1l-.15-.05q-.15-.05-.25 0 .15-.1.1-.15-.05-.1-.3-.1-.25-.05-.45-.05m-3.75-2.05q0-.05-.2-.1-.1-.05-.25-.05-.1 0-.2.05t-.1.1l.15.05q.15.1.3.1.1 0 .15-.1l.15-.05m-.8.45l-.05-.05q-.05-.1-.3-.15-.25-.05-.55-.05-.25 0-.4.05-.2.1-.15.2l.05.05q0 .05.15.05-.2.05-.3.1-.15.05-.05.1 0 .1.15.2h.6q.25 0 .35-.1.2-.05.15-.1-.048-.048-.2-.1.158.05.4.05.15 0 .3-.05t.1-.1q0-.1-.25-.1m-1 .1q.05 0 .1.05-.19-.047-.3-.05h.2m.4.1q-.095-.048-.2-.05h.1q.05 0 .1.05"/><path fill="#CCC" d="M653.45 286.45q-.1-.05-.3-.05-.25 0-.35.05-.1.05-.05.1 0 .05.1.1h.7q.1-.05.1-.1-.05-.05-.2-.1m.45 1.05q-.15 0-.2.05l-.1.05q.05.05.15.1h.4v.05q.05.05.15.05.05.1.25.1.1 0 .25-.1.05 0 0-.05 0-.05-.05-.1h-.45v-.05l-.1-.05q-.2-.05-.3-.05m.65 1.45l.05-.05q.2.05.3.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.1h-.55l-.05.05-.05-.05h-.7l-.15-.15v-.05l-.05-.05h.1q.1-.05.05-.1 0-.05-.1-.05-.15-.05-.25-.05-.1.05-.25.1-.05 0-.05.05-.15-.05-.25-.05-.25 0-.4.05-.2.1-.15.15 0 .15.25.2.25.05.5.05h.1q.2.05.3.05.2-.05.3-.1h.05v.1q-.1 0-.05.05 0 .05.15.05-.25.1-.3.1-.2.05-.15.15 0 .05.25.1h.1q-.05.05-.1.05l-.05.1q0 .05.1.1h.05q-.049.001 0 .05 0 .05.15.05h.25q.1 0 .2-.05.15 0 .15-.05-.05-.05-.2-.1h-.05q.05-.002.05-.1-.05 0-.15-.05.15 0 .3-.05.1-.05.1-.1-.05-.1-.25-.15h-.1q.052-.002.1-.05h.05q.15-.05.2-.05"/><path fill="#CCC" d="M655.2 289.05q-.25.05-.15.15 0 .1.3.15.15.05.45.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.2-.05-.45-.05-.3 0-.45.05m-1.35.9l.05.05q-.15.05-.15.1.1.1.3.2h.5q.3 0 .5-.1.15-.05.1-.15 0-.05-.3-.15h-.1q0-.05-.2-.1h-.3q-.25 0-.35.05-.05.05-.05.1m-.6.2q.05-.05 0-.05 0-.05-.1-.1h-.55q-.05.05-.05.1.05 0 .15.05.1.05.3.05.1 0 .25-.05m.1.55h.5q.1-.05.05-.1 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05l.2.1m2.1.1q-.2-.05-.35-.05-.25 0-.35.05-.15.05-.15.1.05.05.25.1.1.1.35.1.2 0 .4-.1.15-.05.1-.1 0-.05-.25-.1m-.5-.35q.1.1.25.15.3.05.55.05.3 0 .45-.05.15-.05.1-.15 0-.1-.25-.15-.15-.1-.45-.1-.25 0-.5.1-.15.05-.15.15m2.75-2.05q.05-.05.05-.1t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05t.2.1h.5m-.5.6h-.05q-.2 0-.35.05-.15.05-.1.1 0 .05.2.1t.35.05q.2 0 .3-.05h.1q.05-.05.05-.1-.05-.05-.25-.1-.15-.05-.25-.05m.2-.1q0 .05.05.05.1.05.25.05t.25-.05l.05-.05q0-.05-.05-.1h.1q.05-.05.05-.1 0-.1-.15-.1-.15-.05-.25-.05-.2 0-.3.05-.1 0-.1.1 0 .05.2.1h-.1q-.1.05-.1.1h.1m-.8-.75l-.2-.05q-.1-.05-.2-.05-.15 0-.25.1l-.05.05q0 .05.1.1.2-.05.3-.05h.2q.1-.05.1-.1m-.85.55l-.05.05q.05.05.2.1.1.05.2.05.2 0 .3-.1.15-.05.1-.1l-.2-.1h-.3q-.1 0-.25.1"/><path fill="#CCC" d="M656.6 289.8h-.1q-.15.05-.15.15.05.05.25.1h.1q-.05.05-.05.1-.15 0-.25.05-.15.1-.15.15.05.05.25.1t.4.05q.25 0 .35-.1.15-.05.05-.1v-.1h.15q-.049.002 0 .1 0 .1.25.15.25.05.45.05.25 0 .45-.05h.1q.05.05.15.1.2.05.45.05.2 0 .3-.05.2-.05.2-.15-.05-.05-.25-.1-.2-.1-.35-.1 0-.05-.3-.15-.2-.05-.45-.05-.2 0-.4.05H658q-.25 0-.5.05 0-.05-.1-.1h.15q.15 0 .25-.05.05-.05 0-.05 0-.05-.05-.1h-.45v-.05q-.05 0-.1-.05-.1-.05-.25-.05-.15.05-.25.1-.05 0-.1.05m1.4-.45q-.2 0-.25.05-.1 0-.1.1.05.05.15.1.15.05.3.05h.3q.15 0 .25-.05.05.05.2.1.097.048.2.05-.202.001-.35.05-.1.05-.05.1 0 .05.1.1h.6q.1 0 .1-.05l.05.05q.15 0 .35-.05h.25q.05-.05.1-.05l.1.05q.2.05.4.05h.2q.1-.05.15-.05.15-.05.05-.15-.05-.05-.15-.1-.2-.05-.45-.05h-.05q-.109.002-.3.05 0 .05-.05.05h-.05q-.2-.05-.4-.05-.15.05-.2.1h-.15q-.049-.049-.2-.05.102-.002.15-.05h.1q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.35-.05-.1 0-.25.05-.05-.05-.1-.15h-.25q-.2-.05-.35-.05"/><path fill="#CCC" d="M660.5 289.55q0-.05-.15-.05-.15-.1-.25-.1-.2 0-.25.1-.05 0-.05.05t.2.05.2.05h.25v-.05q.05 0 .05-.05m-9.55-2.1h.25q.15-.05.1-.1 0-.05-.2-.1-.15-.05-.35-.05-.25 0-.3.05-.1.05-.1.1.05.05.15.1h.45m-.3-1q.15-.05.1-.15 0-.05-.25-.2-.25-.05-.45-.05-.25 0-.5.05-.1.15-.1.2-.1 0-.15.05-.1 0-.05.1 0 .05.2.05.1.05.3 0h.45q.25 0 .45-.05m2.2 1.05q-.25-.05-.55-.05-.2 0-.4.05t-.1.15q.05.05.15.1-.05.05 0 .15 0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.1-.15-.1l.1-.05q.15-.1.1-.15-.05-.1-.25-.1m-3.8-.6q-.05-.05-.3-.1t-.45-.05v-.05q-.2-.05-.5-.05-.25 0-.5.05-.1.1-.1.15.05.1.3.15.25.1.5.1.2.05.5.05.25 0 .4-.05.25-.1.15-.2m1.2 2.2q-.1.05-.05.1 0 .05.2.1.15.05.35.05.2 0 .3-.1.05-.05.05-.1h.15q.3.1.55.1.2 0 .4-.1.2-.05.1-.1-.05-.1-.2-.15-.3-.05-.55-.05-.25 0-.45.05-.15.05-.1.15v.05l-.05-.05h-.3q-.2 0-.4.05m-.35-.85q.25-.05.2-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.15l-.1-.1h-.45q-.1.1-.1.15h-.1l-.05-.05v-.1q0-.05-.25-.1-.1-.05-.35-.05-.2 0-.35.05-.1.1-.1.2 0 .05.1.1 0 .05.1.05.25.05.5.05.05.1.2.15.3.05.55.05.25 0 .45-.05.1.05.35.05.25 0 .35-.05m-.9 1.6q0 .05.2.1h.6q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1m.9-.05q.05.05.2.05.1.05.3.05.15 0 .3-.05 0 .05.15.1.1 0 .15.05-.05 0 0 .05 0 .1.25.15h.95q.2 0 .25-.05.1-.05.1-.1t-.25-.1h-.05q-.05-.05-.15-.1-.3-.05-.55-.05v-.05h.15q.25 0 .4-.05.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.45-.05-.3 0-.45.05-.2.15-.1.2.05.1.15.15h-.35q0-.05-.1-.05-.2-.05-.4-.05-.15 0-.2.05-.15.05-.15.1m1.95-1.35h.3q.1-.05.1-.1-.05 0-.15-.05-.1-.05-.25-.05h-.05q-.1 0-.2-.05-.2-.05-.5-.05-.25 0-.45.05-.15.1-.1.15 0 .1.25.15.25.05.5.05.3 0 .5-.05.05 0 .05-.05m-.75 2.2q-.3 0-.45.05-.2.05-.15.1 0 .1.3.15.2.05.5.05.25 0 .4-.1.2-.05.2-.15-.05-.05-.35-.1h-.45m1.35.35q.098.098.25.1-.1.002-.1.05.1.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.1-.15h-.35l.1-.05q0-.05-.2-.1h-.5v.1l.15.05m5.3.45q.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1q-.15.05-.1.1 0 .05.25.1.15.05.35 0m-.1-.6q-.15 0-.1.05 0 .05.15.1h.45q.15-.05.15-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05m-.35 1q-.05-.1-.3-.15-.15-.05-.45-.05-.25 0-.5.05-.1.05-.05.15 0 .1.25.2.25.05.45.05.3 0 .5-.05.1-.1.1-.2m.5.25q.15-.05.25-.1.1 0 .05-.05 0-.1-.1-.15-.15 0-.25.05h-.25q-.1.1-.1.15.05.05.15.05.15.05.25.05m-1.15-.65q0-.05-.1-.05-.2-.05-.3-.05-.2 0-.25.05-.1 0-.1.05.05.05.15.1h.55q.1-.05.05-.1m11.45-6.3q-.1.05-.05.1 0 .05.1.05.15.05.25.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.5"/><path fill="#CCC" d="M667.8 285.3q.25-.05.2-.15-.05-.1-.3-.15-.25-.05-.5-.05-.3 0-.4.05-.25.05-.2.15.05.1.3.15.25.05.55.05.25 0 .35-.05m-.55.85h-.05q-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1h.05q.1 0 .15-.05h.15q.05.05.1.05h.15q-.1.003-.1.05-.1 0-.05.05 0 .1.15.1.05 0 .05.05t.1.1h.5q.1-.05.1-.1l-.1-.05q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05v-.15l-.15-.05q-.1-.05-.2-.05-.2 0-.25.05-.15 0-.2-.05h-.45q-.15.05-.1.1"/><path fill="#CCC" d="M668.1 286.55v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .25-.05h.05m-.75-.9q.05-.05.05-.1l-.2-.05h-.05q-.1-.05-.2-.05t-.2.05l-.1.05q0 .05.2.1h.5m.65.25q0 .05.1.05.05.05.25.05.1.05.3.05.15 0 .2-.05.05.05.1.05.05.05.2.05v.05q0 .1.1.1h.3q-.105.003-.25.1-.1.05-.05.1 0 .05.2.05h.35q.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.1q.052-.002.1-.05.15 0 .15-.05-.05-.1-.2-.1-.1-.05-.25-.05h-.05q-.05-.05-.15-.1h-.2l.05-.05q-.05-.05-.15-.05-.15-.05-.25 0H669q-.05-.05-.15-.1h-.8q-.1.05-.05.1m-2.1-.7l-.15-.05q-.15-.05-.35-.05-.2 0-.3.05-.05.05-.05.1.05.05.1.05v.05q.05.1.2.15.25.05.45.05h.2q.1 0 .2-.1t.05-.15v-.05q-.15-.05-.2-.05h-.15m.1.5q-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.049.049 0 .05h-.05v-.05q.05 0 .05-.05l-.05-.05h-.15q-.1-.05-.25-.05t-.2.05q-.1 0-.1.05t.2.1h.25q-.053.002-.15.05-.1.05-.1.15.05 0 .05.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.05.1.05.2.05.15 0 .25-.05.05 0 .15-.05.05.05.2.05h.1q.1.05.2.05h.1q.1 0 .15-.05.15 0 .15-.05-.097-.048-.15-.05h.2q.05.05.2.05.05-.05.1-.05.2 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1h-.3q-.1.05-.15.05h-.1q0-.05-.15-.05v-.05q.05 0 .05-.05"/><path fill="#CCC" d="M666.95 286.75q-.05-.05-.35-.05-.05-.05-.1-.05h-.05q-.1-.05-.15-.05h-.25q-.05 0-.15.05h-.15v-.05q-.05-.05-.15-.05h-.15q-.05-.05-.1-.05-.15 0-.25.05l-.05.05v.05q-.15 0-.2.05-.05 0-.05.05t.1.1h.5q.05-.05.05-.1h.15q.044-.044.1-.05-.05.006-.05.05-.05 0 0 .05v.05h-.25q-.11.003-.3.05-.1.05-.1.1.05.15.2.2.25.05.45.05.25 0 .35-.05.1-.05.05-.2h.4v.1h.3l.05.05q.1 0 .25-.05h.1q.05.05.2.1.1.05.2.05h.2q-.048.002 0 .05 0 .05.25.1.05.05.15.05h.4q.1 0 .15-.05h.1v.05q-.15 0-.15.05l.15.05h.05q.1.05.25.05h.05q.048.048.1.05h-.1q-.15 0-.25.05-.05 0 0 .05 0 .05.05.15h.5q.1-.1.1-.15-.05 0-.1-.05h.35l.05-.05q.05 0 0-.05 0-.05-.1-.05-.05 0-.15-.05h.1l.1-.05q-.05-.05-.2-.1-.1-.05-.2-.05h-.55q-.05-.05-.15-.1.2 0 .3-.05.25-.05.2-.2 0-.05-.3-.15-.2-.05-.5-.05v-.05q0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05t.15.1h.1q-.15.1-.15.15 0 .048.05.05h-.1q-.1-.05-.3-.05h-.1l-.15-.05h-.05q-.1-.05-.25-.05l.05-.05v-.05m1.1.4h-.1v-.05q.048.048.1.05m-.3.55h-.15q.083-.002.15-.025v.025m-1.15-1.35h-.1q-.2-.05-.3-.05-.15 0-.2.05h-.05l-.05.05q.05.05.15.1h.5q.1-.1.05-.15"/><path fill="#CCC" d="M666.65 287.55l.2.1h-.2q-.05.05-.05.1l.2.05q.1.1.25.1.1 0 .2-.1 0-.05.1-.05v-.05h.15q0 .05-.05.05v.15l.1.05h.1q.048.048.15.05-.102.002-.15.05h-.1l-.05-.05h-.05q-.1.05-.2.05h-.15q0-.1-.25-.15h-.1q-.2-.1-.4-.1h-.25q-.15-.05-.35-.05-.25 0-.4.05-.05 0-.05.1h-.1q.1-.1 0-.15 0-.05-.2-.1.05-.05.05-.1-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15.1-.1.1v.05h-.3l-.25-.05q-.05-.05-.2-.05-.2 0-.3.05-.1.05-.1.1t.2.05q.1.05.3.05h.2q.05.15.3.2.25.05.55 0h.1v.05h.1q.15.05.3.05t.2-.05h.05q.2.05.35.05l.2.1q.2.05.35.05h.5q.05-.05.1-.05h.1q.15.05.35.05.15-.05.15-.1h.2q.05.05.1.05l.15.05h.55q.05-.05 0-.1v-.05h-.1q-.1-.05-.2-.05h-.15V288h.15q.05 0 .05-.05.15-.05.1-.15 0-.05-.05-.05 0-.05-.05-.1h-.5l.05-.05q.2-.05.15-.1 0-.1-.25-.15-.2-.05-.5-.05-.2.05-.45.1-.15.05-.15.15m1.1.15h-.15q.083-.002.15-.025v.025m-3.6-2.6q0-.05-.15-.1-.1-.05-.25-.05t-.2.05q-.1.05-.1.1l.15.05q.1.05.3.05.1 0 .15-.05l.1-.05m-.85.7q.1 0 .25-.1.05.05.1.05.2.05.35.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.6q-.05 0-.05-.05h-.15q-.05-.05-.15-.05-.25-.1-.5-.1h-.1l.05-.05q.25-.05.15-.1 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.1.05-.1.15.05.05.25.1.25.15.45.15-.1.1-.1.15.05.1.25.15h.05q.099.049.35.05-.102.002-.15.05l-.15.05q0 .05.2.1-.15.05-.2.05h-.05q-.1.1-.1.2h.05v.05h-.05q-.2-.05-.25-.05-.2 0-.2.05-.1 0-.1.05l-.1-.05h-.05q-.05-.05-.25-.05h-.15v-.15h-.2q-.05-.05-.25-.05l-.2.1v.1q0 .05.1.05l.05.05h-.05q-.05 0-.05.05-.15 0-.05.05v.05q.05.05.2.1.1.05.15.05.05.05.1 0 .15.05.25.05.2 0 .3-.05.05 0 .05-.05.05 0 .15-.05.05 0 .1-.05.05 0 .05-.05h.5q.05-.05 0-.1.05 0 .2.05.1.05.3.05l-.1.05q0 .05.15.1t.3.05q.1 0 .15-.05l.1-.05h.05q.15 0 .25-.1.05 0 .05-.05t-.2-.1l-.05.05q.05-.1 0-.2 0-.05-.1-.05-.15 0-.2-.05h-.05q-.05 0-.2-.05h.05q.1-.05.1-.1l-.15-.05q-.141-.047-.25-.05h.45m.75.65q-.05.05-.05.1.05 0 .15.05h.15v.05h.5q.1-.05.1-.1v-.05q0-.05-.15-.05-.15-.05-.25-.05t-.2.05h-.25m-.5.35q0-.05-.25-.1h-.55q-.05.05-.05.1l.05.05h-.55q-.1.05-.1.1l.15.15q.2.05.4.05.15 0 .2-.05.15-.1.1-.15v-.05h.45q.15-.05.15-.1"/><path fill="#CCC" d="M663.75 287h-.2q-.15.1-.1.15l.1.05h-.3q-.15.05-.1.1 0 .05.15.1h.35q0 .05.05.05.2.05.3.05.2 0 .25-.1h.45q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05h-.1q-.197.049-.3.05.053-.002.15-.05.15-.05.15-.1-.05-.1-.2-.1h-.25m1.75 1.3h-.5q-.1.05-.1.1l.1.05h-.1l-.1.05q0 .05.2.1.1.1.2.1.15 0 .25-.1.05-.05.05-.1h-.05q.15-.05.2-.05.05 0 .1.05-.1 0-.25.05v.05q-.1.1-.05.15 0 .049.05.05h-.05q-.15-.05-.35-.05-.25.05-.35.1h-.05q-.1 0-.1.05v.1q-.1-.05-.15-.05h-.15q.102-.002.15-.05v-.05q0-.05-.15-.1h-.05q.05-.001.05-.05.1 0 0-.1 0-.05-.15-.1v-.05q0-.05-.2-.1h-.2q.103-.003.15-.05.1 0 .05-.05h.05q.15.05.3.05t.2-.05q.05 0 .05-.05t-.1-.1h-.5q-.05.05-.05.1l-.05-.05h-.5l-.1.1q.05.05.15.05.141.047.25.05h-.3q.05.05 0 .05-.1 0-.25.05-.1.05-.1.15.05.1.1.15-.1-.05-.3-.05h-.05q-.2.05-.25.05-.05.05-.05.1t.2.1h.4q0 .05.05.05h.15q.1.05.15.05.05 0 .15-.05.15.05.35.05h.15q0 .05.15.1h.5q0-.05.05-.05v-.05h.05q.05 0 .1.05.1 0 .2-.05h.35q.05-.05.15-.05.05-.05.05-.1v-.05l.05.05q.25.05.5.05.3 0 .45-.05.1-.05.15-.05h.1q.15.05.3.05v.05q.05.05.15.05l-.1.05q-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15-.05.15-.1-.1-.05-.15 0l.05-.1q.1 0 0-.05 0-.05-.05-.05h-.1q.05-.1.05-.15-.05-.1-.25-.1-.1-.05-.3-.05l.05-.05q0-.05-.15-.05l-.05-.05h-.2q-.1 0-.25.05-.05 0-.05.05l-.05-.05h-.15q0-.05-.1-.1h-.5q-.05 0-.1.05 0-.05-.15-.1m1.25.4q-.1-.1-.15-.1v-.05l.15.05v.1"/><path fill="#CCC" d="M665.15 289.15h-.05q-.2.05-.35.1v.05q-.15 0-.15.05.1.05.25.15.048.048.15.05h-.3q-.099-.05-.15-.05.05-.001.05-.1-.05-.05-.15-.1h-.55q-.15.05-.05.1l.05.1q-.15 0-.05.05v.05q0 .05.1.05.1.05.3.05h.2q.05 0 .1-.05.05.05.2.05.05.05.15.05h.1q.1 0 .2-.05.1 0 0-.05 0-.05-.05-.1.05 0 .15-.05h.2q.1 0 .15-.1.1 0 .1-.05-.05 0-.05-.05t-.2-.1q-.15-.05-.35-.05m-1.8.05q0-.05-.1-.05l-.1-.05H663q-.2 0-.25.05-.05 0-.05.05t.15.05q.1.05.25.05t.25-.05v-.05m.55.75q.1 0 .15-.05h.1q.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05h-.3q-.3 0-.45.05h-.65q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05l-.05.05q0 .05.1.1.2.05.3.05h.05l.1.05q.1.05.3.05h.1q.1 0 .25-.05h.1q.05.05.2.05.15.05.35.1h-.05q-.05 0-.15.05l.2.1h.5q.05-.05.05-.1t-.15-.05h-.1q.1-.05.25-.1"/><path fill="#CCC" d="M663.45 289.35q-.1-.05-.2-.05-.15 0-.25.05h-.15q-.1-.05-.3-.05-.15 0-.3.1-.1 0-.05.15 0 .05.2.05h.3q.15 0 .3-.05h.05q.2.05.3.05.1 0 .2-.05l.1-.05q0-.1-.2-.15m-.1 1.2q.05 0 .05-.05 0-.049-.05-.05.05-.001.05-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.05.05-.05.001-.1.1-.05 0-.05.05t.15.05h.25q.15 0 .25-.05m.3.25q-.05-.05-.25-.1-.25-.05-.55 0h-.4q-.05-.05-.1-.05h-.45q-.2 0-.4.05-.15.05-.15.15.05.05.25.1.1.05.25.05h.7q.25.1.5.1.1-.1.3-.1h.05q0 .1.15.1.1.05.2.05.2 0 .25-.05h.15q.1 0 .15-.1.1 0 .15-.05-.05-.05-.2-.1h-.5v.05q-.05-.05-.1-.05v-.05m.55-.7q-.2.05-.25.05-.05 0-.05.05-.15.1-.05.15 0 .1.2.15.2.05.45.05.05 0 .1.05h.425q-.184.005-.275.05-.05 0-.15.05h-.05q-.1.1-.05.15 0 .05.1.1h.15q.25.15.55.15.2 0 .35-.15.15 0 .15-.05l.1-.05q-.15.1-.1.25 0 .05.25.05l.05.05h-.05q0 .05.2.1h.5q0-.05.05-.1.1 0 .25-.05.1 0 .1-.05v-.1q-.05-.1-.3-.15-.05-.05-.2-.05.1-.05 0-.05v-.05h.1q.2.05.5.05.25 0 .4-.05.2-.05.15-.15h.05q.15-.05.2-.05.05-.05.1-.05h.3q.15-.1.2-.1.2-.05.15-.2 0-.05-.35-.15h-.65q-.15-.05-.3-.05t-.25.05q-.1 0-.1.05t.1.05q-.1.05-.2.05h-.3q-.15 0-.25.05h-.6q-.1.1-.1.15 0 .05.15.05h.05q0 .05.05.05h.3q.1 0 .2-.05v-.05q.048.048.1.05h-.05q-.25.05-.15.15 0 .048.05.05h-.7q-.05 0-.05.05l-.1.1q-.05-.05-.15-.05-.048-.048-.1-.05h.3q0-.05.05-.1v-.05q-.05-.05-.1 0-.15-.05-.3-.05t-.2.05l-.05-.05q.05-.05.05-.1l-.15-.15h-.1q0-.05-.05-.05-.25-.05-.45-.05h-.2"/><path fill="#CCC" d="M665.7 289.95q-.1-.05-.25-.05-.1.05-.25.1-.05 0-.05.05t.15.1q.15 0 .3-.05h.15q.15-.05.15-.1-.1 0-.2-.05m-.95-.05q-.2 0-.2.05-.1 0-.1.05l.05.05q.05 0 .1.05h.5l.05-.05-.05-.05q0-.05-.05-.05-.2-.05-.3-.05m2.95-1.6h-.05q-.15.05-.2.1-.05 0 0 .05v.05h.3q.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.25-.05m-.45.9q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.4.05t.3-.05q.2-.05.1-.1m.8-.45q-.05.05-.05.1t.15.1q.15.05.3.05h.55q.3 0 .5-.05.1-.05.1-.15-.05-.05-.3-.1v-.1q-.15-.05-.45-.05-.25 0-.5.05 0 .1-.05.15h-.25m-1.4.8q-.05-.05-.2-.05-.15 0-.25.05t0 .05v.05h-.25q-.15.05-.15.1.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.2q.1-.05.1-.1-.05 0-.2-.05m.3.15h-.2q-.1.05-.1.1t.15.05q.1.05.3.05.1 0 .15-.05.1 0 .1-.05t-.15-.1h-.25m1-.3h-.3q-.2 0-.3.1-.15.05-.15.1.05.1.2.1.25.05.4.05h.35q-.1.05-.1.1.05.1.3.1.25.05.5.05h.15q.2 0 .3-.05.1 0 .1-.05.05-.05 0-.1 0-.05-.2-.15-.05 0-.2-.05-.15-.05-.35-.05-.2 0-.25.05-.05 0-.05.05h-.1q.05-.05 0-.1 0-.05-.1-.05.1-.1.15-.1h.25q.05-.05.05-.1-.05 0-.15-.05-.1-.05-.3-.05-.1 0-.2.1l-.1.05.1.05m0 1.25q0 .05.05.05.25.05.4.05.2 0 .25-.1.15 0 .15-.05l-.2-.1-.05.05q-.15-.05-.25-.05-.2 0-.35.05-.1.05 0 .1m-5.75-4.95q0-.05-.15-.1-.2-.05-.45-.05-.2 0-.35.05h.05q-.2.05-.2.1l.2.1q-.05.05 0 .05 0 .05.1.1h.5l.05-.05q.15-.05.2-.05l.05-.05h.05q0-.05-.05-.1m-1 .2q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.1-.05 0-.05.05t.2.05h.25q.1 0 .2-.05.1 0 .1-.05m-.1 1.4q0-.05-.1-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.1.05.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .05-.05"/><path fill="#CCC" d="M660.8 287.5q0 .05.15.05 0 .05.05.05h.3q.05 0 .05.05-.1 0-.15.05h-.1q-.05 0-.05.05.05.05.2.15h.35q.05-.1.1-.1.097 0 .15-.05l-.05-.05q0-.047-.1-.05h.2q.3 0 .45-.05.05-.05.15-.05-.05-.05-.05-.1-.05-.1-.25-.15-.25-.05-.55-.05-.25 0-.4.1-.05.05-.15.05-.15 0-.15.05-.15 0-.15.05"/><path fill="#CCC" d="M661.9 287.7h-.05v.05l-.05.05h.05q0 .1.1.1.15.05.25.05.15 0 .25-.05l.05-.1q0-.05-.15-.1h-.45m-2.3-2.65q.2 0 .25-.05.15-.05.15-.1l-.2-.1h-.6q-.2.05-.15.1 0 .05.2.1t.35.05m.4.2l-.2-.1q-.25-.05-.45-.05-.05 0-.1.05v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05h.1q-.048.002 0 .05 0 .05.15.1.15.1.35.1.2 0 .3-.1.15-.05.15-.1m-.4.6q.15-.05.05-.1 0-.05-.1-.1h-.65q-.05.05-.05.1l.1.1q.2.05.35.05.2 0 .3-.05m.25.2q0 .05.15.05.1.05.15.05h.15q.1 0 .15-.05.05 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m-.55.5q-.3 0-.4.05-.2.05-.15.15.1.05.25.1.2.05.3.1h-.05q0 .05.2.15h.1q-.05.002-.05.05-.15 0-.05.05 0 .1.1.1.2.05.35.05.25 0 .25-.05.2 0 .2-.1-.05-.05-.25-.05-.05-.05-.2-.05.1-.1.1-.15l-.1-.05v-.05h.1q.1.05.2.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.3q-.094-.047-.2-.05h.15q.25 0 .35-.05.1-.05.05-.1 0-.05-.15-.1t-.4-.05q-.15 0-.3.05-.05.05-.05.1 0 .047.1.05h-.35m.35 2.05q-.1 0-.1.1.05.05.2.1.05.05.15.1.15.05.3.05.2 0 .3-.05h.15q.1.05.25.05.1 0 .2-.05t0-.1l-.05-.05q0-.048-.05-.05h.35q.15-.1.15-.15-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05h-.85q-.15 0-.25.05"/><path fill="#CCC" d="M659.5 288.95q-.05 0-.05.05t.1.05q.2.05.25.05h.05q.15 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05m.9.15h-.05q-.15.05-.15.1.1 0 .15.05-.15.05-.05.1l.15.15q.15.05.3.05.2 0 .3-.05l.05-.1h.2q.2 0 .3-.05.05-.05.05-.1t-.15-.1q-.15-.05-.3-.05-.2 0-.3.05l-.1-.05h-.4m-.55 1.6q-.2 0-.35.05v.1q0 .05.1.05.05.05.15.05.15.05.35.05.2-.05.3-.1l.05.05h.15q-.1.003-.1.05-.1 0-.1.1 0 .05.1.05-.051.001-.1.05-.1.05-.1.1.05.05.15 0 .05.05.25.05.1 0 .25-.05.05 0 0-.05v-.05q.05 0 .1-.05.15 0 .05-.05 0-.1-.1-.1-.047-.047-.15-.05h.2q.15-.05.15-.1-.098-.049-.15-.05.052-.001.15-.05.1 0 .05-.05 0-.1-.2-.1-.1-.05-.3-.05-.15 0-.3.05h-.05v.1q.048 0 .1.05-.054-.05-.2-.05-.15-.05-.3 0h-.15m.6-.35q.05.05.2.05.1.05.3.05.1 0 .25-.05.15 0 .1-.05 0-.05-.2-.15-.15-.05-.3-.05t-.2.05q-.15.1-.15.15m2.25-2.45h-.05q-.1 0-.2.05l-.05.05q.05 0 .05.05l.05.05h.5q.1-.05.05-.1l-.1-.05q-.1-.05-.25-.05m-1.2.45q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.1.05.2.05.1.05.25.05.1 0 .25-.05m-.1 1.6v.05q-.1 0-.1.05l.05.05q0 .05.15.1.15.1.35.1.2 0 .2-.1.15-.05.15-.1l-.1-.05q0-.05-.2-.1h-.5m.3.55l.1.05h.05q.2.05.35.05.25 0 .25-.05h.05q.15 0 .15-.05-.1-.05-.25-.1t-.35-.05q-.2 0-.25.05-.15.05-.1.1m.8.95q-.3 0-.4.05-.2.1-.15.15.1.1.25.15.25.05.55.05h.05q-.05.1-.05.15.05.05.1.05.15.05.25.05h.05q-.049.001 0 .05 0 .05.1.1h.3q.15 0 .15-.05.15-.05.15-.1-.1-.05-.2-.05h-.25q.048-.002 0-.05v-.05q.05 0 .15-.1 0 .1.2.15.2.05.5.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.3v-.05l-.15-.05q-.05-.05-.25-.05-.05.05-.2.1-.05-.05-.15-.1-.25-.05-.5-.05m-.3.9q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05h-.1q-.2 0-.3.05-.15.05-.05.1 0 .05.15.05.15.05.3.05.2 0 .3-.05.1 0 .1-.05l-.2-.1h.05q.15 0 .25-.05l.05-.05m-.25-.4q.15-.1.1-.15 0-.05-.2-.1t-.35-.05q-.2 0-.3.05-.1.05-.1.1.1.05.2.15.1.05.3.05.2 0 .35-.05m-.85-.5h-.45v.1q0 .05.1.05.15.05.25.05.2 0 .25-.05.05 0 .05-.05t-.2-.1m-1.2.65q-.05-.05-.15-.1h-.55q-.15.05-.05.1 0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1m7.75-.8q.094.047.2.05h-.45q-.05.05-.05.1v.05h-.1q-.1.05-.1.1l.1.05h-.05q-.05 0-.05.05l.1.1q.2.05.3.05.2 0 .25-.05h.05q.15.05.25.05.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.45q.094-.003 0-.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.1h-.1q.102-.002.15-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.05m-1.4.45q.1-.05.1-.1-.05-.1-.15-.05-.2-.05-.4-.05-.15 0-.2.05-.15 0-.1.1 0 .05.15.05.15.05.35.05.2 0 .25-.05m.25 2q-.05-.05-.2-.1h-.6q-.1.05-.05.1 0 .05.1.1.2.05.35.05.2 0 .25-.05.15-.05.15-.1m1.65-.35H668q-.15.05-.15.15.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05q0-.1-.15-.15h-.3m-3.05-2.15q.1 0 .05-.05 0-.05-.1-.05-.15-.05-.25-.05t-.25.05h-.5q-.1.05-.05.1 0 .05.2.1.1 0 .25.05-.15 0-.05.05 0 .05.1.05.1.05.25.05.1 0 .25-.05h.4q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05h-.05l.05-.05q.15 0 .25-.05m13.55-8q-.15 0-.25.05l-.1.05.05.05h-.3q-.1.05-.1.1.05.05.15.05.1.05.25.05t.25-.05q.05 0 0-.05h.1q.15 0 .25-.05.15-.05.05-.1l-.1-.05q-.1-.05-.25-.05m.2 1.1l-.05.05q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.15-.05-.25-.05-.2 0-.3.05m-.45-.35q.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.5q-.1.1-.1.15.05 0 .2.05.1.05.2.05m1.15-.25q-.05.15 0 .2 0 .05.15 0 .1.05.3.05.1 0 .25-.05.05 0 .05-.05-.05-.05-.2-.15h-.55m.75-.3q.05 0 .1-.05.15 0 .15-.05l-.2-.1h-.1q-.1-.05-.15-.1h-.45q-.15.05-.1.1 0 .05.15.05.05.05 0 .05-.15 0-.15.05l.2.1h.5l.05-.05m.6 0h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3m-.75 1.1q-.1-.05-.3 0-.15 0-.3.1-.05 0-.05.05 0 .1.2.1.1.05.3.05.15-.05.25-.05h.05q.1.05.25.05t.2-.05l.1-.05q0-.05-.15-.1h-.35q-.1-.1-.2-.1m3.25-1.8q-.05 0-.05.05t.2.1h.5v-.1q0-.05-.15-.05-.1-.05-.25-.05t-.25.05m-1.65.1l-.2-.1q-.05-.05-.25-.05-.1 0-.25.05-.05.05 0 .1l.1.05q.15.05.3.05t.15-.05l.15-.05m-.15.75h.5q.05-.05.05-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.15.1m-.1.1q-.15 0-.25.05-.1.1-.05.15l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05-.15-.15q-.15-.05-.25-.05m-.05.75h-.15q-.1 0-.25.05-.1 0-.1.05.05.1.2.1.1.05.2.05h.4q.1 0 .25-.05h.15q.05.05.25.05.1 0 .25-.05.05 0 0-.1 0-.05-.05-.05-.15-.05-.25-.05-.2 0-.25.05h-.05q-.05 0-.15-.05h-.45m1.55-1.2h.25q.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.3m.35 1.05q-.05 0-.05.05t.2.05.2.05q.15 0 .25-.05.1 0 .1-.05t-.2-.05q-.15-.05-.25-.05t-.25.05m2.25-2.4q-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.3.05.25 0 .3-.05.2 0 .15-.05 0-.05-.2-.1-.1-.05-.35-.05m-.15.95q-.1.05-.05.1 0 .1.15.1.1.05.2.05.15 0 .25-.05.15 0 .15-.1l-.2-.1h-.5m-1.55-.6q-.1 0-.2.05-.1 0-.1.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.3-.05m.65.8q-.15-.1-.35-.1-.1 0-.25.1l-.05.05q0 .05.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05v-.1l-.15-.05m-.9.45q-.1 0-.15.05-.1 0-.1.05.1.05.15.05.1.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.15-.05-.1-.05-.3-.05m-.1 1h-.05q-.15 0-.15.05-.1 0-.1.1.05.05.15.1h-.3l-.05.05q-.1 0-.25.1-.05 0-.05.05.05.05.15.1.1-.05.2-.05 0 .05.1.05h1q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.098 0-.1.05v-.05q0-.05-.2-.1h.3q.05-.05 0-.1 0-.1-.05-.1-.2-.05-.3-.05m1.8-.2q.05 0 .05-.05t-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05.15 0 .25-.05m2.55-2.05q-.15 0-.1.05 0 .05.15.1h.5q.1-.05.1-.1-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.2.1m-1.65 2q0 .1.2.1.1.05.35.05.2 0 .25-.05.1 0 .1-.1-.05-.05-.25-.05-.05-.05-.2-.05-.25 0-.4.05-.1 0-.05.05m.9.25q-.1 0-.25.05-.05.1 0 .1 0 .05.1.1h.05q-.05.05-.05.1.05.05.2.1.2.05.4.05t.4-.05q.05-.05.05-.1h.3q.2.05.4 0 .1 0 .15-.05.15 0 .15-.05l-.2-.1q-.1-.1-.25-.1-.15.1-.3.15-.05-.05-.2-.05-.1 0-.2.05h-.3v-.05q-.1 0-.2-.1-.05-.05-.25-.05m-18.35-.25q-.1.05 0 .05 0 .05.05.1h.4l.05.05q.15.05.25.05h.2q-.048.002 0 .05 0 .1.1.1.05.05.25.05.1 0 .25-.05.05 0 .05-.1l-.1-.1h-.5l.05-.05q0-.05-.1-.1-.15-.05-.3-.05l-.05.05q-.1-.05-.15-.05-.05-.05-.25-.05-.1 0-.2.05m1.3-.35q-.1 0-.25.05-.05 0-.05.05t.2.05q0 .048.05.05h-.15q-.05.05 0 .1l.1.05q.1.05.2.05.2 0 .25-.05l.15-.05-.2-.1h-.05q.052-.002.1-.05.05 0 .05-.05t-.15-.05q-.15-.05-.25-.05m2.65.6q.1 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1h-.45q-.15.05-.05.1 0 .05.1.05.2.05.3.05m1.15 0h-.5q-.05.05-.05.15.05 0 .15.05.1.05.2.05.2 0 .25-.05l.05-.05q0-.1-.1-.15m.4-.4q-.1.05-.05.1 0 .05.15.1t.35.05q.25 0 .25-.05.15-.05.15-.1-.05-.05-.25-.1h-.6m.25-.4h-.25q-.1.05-.05.15l.15.05h.1q0 .05.1.05.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.15h-.15q-.05 0-.1-.05h-.25m1.15.45q-.05.05 0 .1 0 .05.15.05.15.05.35.05.15 0 .3-.05.05 0 .05-.05-.05-.05-.2-.1-.05 0-.15-.05h.05q.1 0 .05-.05 0-.05-.1-.1-.2-.05-.35-.05-.15 0-.2.05-.1.05-.1.1.05.05.15.05.047.047.15.05h-.15m1.55-1.2q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.1.1.05.2.05.15 0 .25-.05l.05-.1m-.4.6h-.05q.05-.001.05-.05-.05-.05-.2-.1-.1.05-.3.05h-.3q-.1.05-.05.1 0 .05.15.1.149.05.35.05-.05.002-.05.05.05.1.15.15.15 0 .35-.05h.3q.15-.1.1-.15 0-.05-.2-.1-.1-.05-.3-.05"/><path fill="#CCC" d="M676.65 284.15q-.05 0 0 .05 0 .05.1.1-.1 0-.15.05-.1 0-.1.05.05.05.15.1h.25q.15 0 .25-.05t.05-.1q0-.05-.1-.05h-.3q.107-.002.25-.05h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1.05-.25.1m.85.35q-.1 0-.25.05l-.05.1q0 .05.15.1h.45q.1-.05.15-.05.05.05.15.05.15 0 .25-.05l.05-.05q0-.1-.1-.15h-.5q-.05 0-.05.05-.1-.05-.25-.05m.3-.05h.5q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1m.3.65q-.1 0-.05.05 0 .05.15.1h.45l.05-.05q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05m-.75.55v.05q.05.05.15.05.15.05.25 0 .2 0 .3-.05.15 0 .05-.05 0-.05-.1-.1h-.1q-.15-.05-.25-.05-.15.05-.25.1-.05 0-.05.05m0 .1l-.2-.1h-.5q-.05.05 0 .1 0 .05.1.05.15.05.3.05t.15-.05.15-.05m.3.4h-.45l-.05.1v.05l.1.05q.2.05.35.05.1 0 .15-.05v.05h.5q.1 0 .25-.05.05 0 0-.05v-.05q-.1-.1-.2-.15h-.05q.052-.002.1-.05.05 0 0-.05 0-.05-.05-.05l-.05-.05h-.05q0-.05-.15-.05-.05-.05-.25-.05l-.2.1q-.15 0-.15.05.05.05.2.1h.05q.05.05.1.05-.05.05-.15.05m-1.15-.95q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05l.05-.05q0-.049-.05-.05.052-.001.15-.05.15 0 .1-.05 0-.05-.2-.1h-.5q-.05.05-.05.1l.15.05h-.2q-.1.05-.1.1.05.05.15.05.048.048.15.05-.097.002 0 .05 0 .05.05.1h.6m-.3.6h-.3q-.05.05-.05.1h-.1q0-.05-.15-.1h-.5q-.05.05-.05.1l.1.05q.2.05.3.05 0 .05.15.1h.55v-.1q.05.05.15.05.2 0 .3-.05.05-.05.05-.1t-.15-.1h-.3m-.35-.25q.1 0 .2-.05.1 0 .1-.05 0-.1-.15-.15h-.45q-.15.05-.15.15 0 .05.2.05.1.05.25.05m1.25.9q-.15-.05-.25-.05t-.25.05q-.1 0-.05.05 0 .05.05.05 0 .05.2.05.1.05.25.05.1 0 .2-.05.1 0 .1-.05t-.1-.05q-.05-.05-.15-.05m-.45-.05v-.1q0-.05-.1-.05-.1-.1-.3-.1-.1 0-.25.1-.05 0-.05.05t.2.1h.5"/><path fill="#CCC" d="M676.5 286.9q.05-.05 0-.1.15 0 .25-.05l.05-.05q0-.05-.15-.1h-.45q-.05.05-.05.1h-.1q-.15 0-.2.05l-.15.05q.05.05.2.1h.05q-.052.002-.1.05-.1-.05-.15-.05-.05-.05-.25-.05l-.2.1-.1-.05H675q.1-.05.1-.1t-.2-.05-.2-.05h-.1q.15-.05.1-.1h.2l.15.05h.1q-.05.05-.05.1.05 0 .15.05h.2q.2 0 .25-.05l.05-.05q0-.05-.1-.1h-.1q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05-.15.05-.2.05l-.05-.05h-.5q-.1.05-.1.1v.05q-.1-.05-.15-.05-.1 0-.15.05v.05h-.5q-.05.05-.05.15.05.05.15.1.25.05.5.05h.1q0 .05.15.05.05.05.1.05.049.098.15.1h.05q.05 0 .05.05-.048-.048-.1-.05-.151.001-.25.05-.05 0 0 .05h-.05q-.1 0-.1-.05h-.5v.05q-.002-.05-.1-.05-.1-.05-.2-.05l-.1.05h-.15q-.049.049 0 .05h-.05q-.1 0-.15-.05h-.35q.05-.001.05-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.15.05-.25.05h-.3q-.1.05-.2.05l-.05.1q0 .05.15.1.05.05.2.05.1 0 .15-.05h.05q0 .049.05.05-.1 0-.1.05.05.05.15.1.15 0 .3-.05h.35q.05-.05.1-.05.2.05.3.05.1 0 .2-.05h.1q.05.05.2.05l.05.05h.55q.1-.05.15-.05.05 0 .15-.05h.15q.1.05.25.05t.25-.1v-.05q0-.048-.1-.05.102-.002.15-.05 0 .05.15.05h.45q.05-.05.05-.15l-.15-.05q.1 0 .25-.05h.05m.25 0h-.1v.05l-.05.05q-.1 0-.1.1 0 .05.1.05h.05q.15.05.25.05.15 0 .25-.05h.35q.1-.05.1-.15v-.05q-.1-.05-.2-.05-.15-.05-.3-.05-.2 0-.35.05m-.7.4q-.15 0-.2.05-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .15-.05.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05m.75.4h-.45q-.1 0-.15.05-.15 0-.15.05l.1.1v.05q-.1 0-.1.05.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.35q.05-.05 0-.15 0-.05-.05-.05-.2-.05-.3-.05m1.55-1.25q-.1 0-.25.05-.1.05-.1.1.05.05.2 0 .1.05.2.05h.8q.1-.05.1-.1h-.05q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05q-.1-.05-.25-.05"/><path fill="#CCC" d="M679.2 286.65q-.048.002 0 .05v.05h.1q.15.05.35.05.1 0 .15-.05.05 0 .05-.05-.05-.05-.1-.05-.1-.05-.2-.05h-.05q-.2 0-.25.05h-.05m-1.25.15q0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05"/><path fill="#CCC" d="M678.05 286.85q-.1 0-.25.05l-.05.05q0 .05.15.15.1.05.2.05.15 0 .25-.15.15-.05.15-.1-.1 0-.2-.05h-.25m-.65.85h-.05v.05q0 .05.05.15h.55l-.05.05q-.15 0-.15.05.05 0 .05.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05h.15v.05q.15 0 .2.05h.05q-.052.002-.1.05h-.15q-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1-.094-.047-.2-.05h.45q.048-.048 0-.05h.3q.05-.05.1-.05l.05-.05h.1v.05h.1l.05.05h.05q.1.05.25.05.2 0 .3-.05.1-.05 0-.1 0-.05-.05-.05-.15-.05-.3-.05h-.2q-.1 0-.15.05-.15-.05-.2-.05 0-.05-.05-.05-.1 0-.2.05-.1 0-.2.05h-.2q.052-.002.1-.05.1 0 0-.05 0-.05-.05-.05-.1-.05-.25-.05h-.05l.05-.1q.2 0 .25-.05h.2l.05.05q.2-.05.3-.05h.25q.05.05.1.15h.5q.1-.1.05-.15 0-.05-.1-.05-.15-.05-.3-.05h-.15q0-.05-.1-.1h-.45q0-.05-.05-.05-.1 0-.25.05h-.2q-.1 0-.1.05h-.05q0-.05-.05-.05h-.1q.105-.002.2-.05.1-.05.1-.1l-.2-.05q-.1-.05-.25-.05-.1 0-.25.05l-.05.05q0 .05.2.1-.1 0-.15.05l-.05.05v.05h.05q-.052.002-.1.05"/><path fill="#CCC" d="M679.2 288.4l-.1-.05q-.1-.05-.25 0h-.05q-.15 0-.2.05-.05 0-.05.05h-.05q.05.05.15.1h.25q.1-.05.25-.05.1-.05.05-.1m-4.35-3.35q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.1-.05 0 0 .05 0 .05.1.1.1-.05.2-.05h.25m.3.45h-.25q-.1 0-.2.05-.15.05-.15.1.05 0 .15.05l.1.05q.05-.05.25-.05h.25q.05-.05.05-.1-.05 0-.05-.05l-.15-.05m-.7-.15q-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.1 0 .05.1.05.15.05.3.05t.2-.05q.05 0 .05-.05-.05-.1-.1-.1m-.8.3q.15-.05.15-.1l-.2-.05q-.1-.05-.3-.05-.1 0-.25.05l-.05.05q0 .05.1.1.2.05.3.05.2 0 .25-.05m.05.35q.1-.05.1-.1-.1-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05h-.4q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05h.45"/><path fill="#CCC" d="M673.9 286.15q-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .1.1.1.15.05.3.05h.05q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.1-.1-.3-.1h-.1m-.3 1.3q-.05.05-.1.05-.2 0-.3.05-.15.05-.1.1 0 .1.2.1.2.05.35.05.25 0 .45-.05.05-.002.05-.05l.1-.05q.15-.05.15-.1l-.2-.1h-.6"/><path fill="#CCC" d="M674.8 287.9q0-.1-.2-.15h-.5q-.1.05-.1.15 0 .05.2.05.1.05.25.05t.3-.05q.05 0 .05-.05m.65.15h-.05l-.05.05q-.05 0-.05.05-.05.05-.05.1-.1.05-.15.05l-.05.05q0 .05.2.1h.45q.05-.05.05-.1h-.05q.148-.049.2-.05-.049-.001 0-.05v-.05h.1q.05-.05 0-.1.15 0 .15-.05-.1-.05-.2-.05h-.25q-.1 0-.25.05m-.3.45h-.45q-.1.05-.1.1 0 .1.2.1l.05.05h.05q.15.05.35.05.1 0 .2-.05.15 0 .1-.05 0-.1-.15-.15h-.15l-.1-.05"/><path fill="#CCC" d="M674.85 289.25l-.05-.05h-.25l-.05-.05q-.2 0-.2.05-.05 0-.05.05-.05-.05-.1-.05-.146-.048-.25-.05.105-.002.25-.05h.05q.05-.05.05-.1-.048-.048-.15-.05.153-.001.3-.05.1-.05.05-.1l.05-.05q.05 0 0-.05 0-.1-.05-.1-.15-.05-.2-.05H674v-.05l-.1-.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05.05 0 .05v.05q-.001-.05-.05-.05-.1-.05-.2-.05 0-.05-.05-.05h-.05q-.25-.05-.55 0h-.3l-.15.05h-.05q-.05 0-.1.05-.1 0-.1.05h-.3l-.05.05q0-.05-.15-.05 0-.048-.1-.05.151-.001.2-.05h.4q0-.05.1-.05.15-.05.1-.15.25 0 .35-.05.25-.1.2-.25 0-.05-.3-.1-.195-.049-.45-.05.103-.003.15-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.15-.05 0-.05-.1-.1h-.3q.1-.05.05-.1l-.1-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05h-.25q-.05.05-.05.1l.15.05q.15.05.25.05.15 0 .25-.05v.05q0 .05.1.05.1.05.15.05 0 .05.1.05.191.048.3.05-.253.001-.4.05-.05 0-.05.05-.15-.05-.25-.05-.2 0-.25.05l-.05.05q0 .05.15.15h-.1q0 .05-.05.05h-.2v-.05l-.05-.1q.05 0 .05-.05-.05-.05-.15-.1h-.65q-.1 0-.15.05-.2 0-.3.05-.15.05-.05.2v.05l.05.05q-.2-.05-.3-.05-.15 0-.2.05-.05 0-.05.05h-.05q0 .05.15.1h-.1q-.1 0-.25.05l-.05.05q0 .05.1.05-.049.001 0 .05.1 0 .15.05h.3q.05.05.25.1.15.05.45.05.25 0 .45-.1.15-.05.15-.1l-.1-.1q.1.05.25.05t.25-.05h.15l-.05.05q-.05 0-.05.05.05.05.15.05.15.05.25.05h.2q.05 0 .05-.05h.05l.05.05h.1q.05.05.15.05h.05q.2 0 .25-.05h.15q0 .05.15.1h.05q.15 0 .2.1h.15q.15.05.4 0h.1q-.1.05-.1.1.05.05.2.1-.15 0-.25.05-.05.05-.05.1t.1.05h.05q.05 0 .2.05h-.15q-.1-.05-.2 0h-.15q-.1-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.25.05h.05l.05.05h.1q-.106.003-.2.05-.1 0-.1.1-.1-.1-.25-.1h-.15q0-.05-.15-.05-.1-.05-.2-.05h-.2l-.05-.05h-.45q-.05-.05-.1-.05-.1-.05-.25-.05h-.4q-.15.05-.25.05l-.05.05q-.1 0 0 .05 0 .05.1.05.15.05.25 0h.6q0 .05.1.05.1.1.25.1h.2l.1.05h.05q-.05.05-.05.1-.05.05-.05.1.05.05.2.1.05 0 .2.05-.1 0-.1.05v.05q.05 0 .2.05h.55q.1-.05.05-.1 0-.048-.05-.05h.5q.15-.05.15-.1-.05-.05-.25-.1v-.05l-.05-.05h.25q.1-.1.05-.2 0-.05-.15 0-.048-.048-.1-.05h.6q.05 0 .05-.05.05.05.15.05.05.05.2.05.15-.05.25-.05.05-.05 0-.1m-4.15-1.15v.05h-.1q0 .05-.1.05 0 .047.1.05h-.15q-.1-.05-.15 0h-.7q-.048-.048-.15-.05h.35q.05-.05.05-.1h.3q.05.05.05 0h.5"/><path fill="#CCC" d="M673.35 290.35q.2 0 .3-.05.05-.1.05-.15 0-.05-.15-.05-.15-.05-.3-.05h-.05q-.106.003-.2.05l-.05.05q0 .05.15.15.15.05.25.05m1.55-1.25q-.1.05-.05.1l.05.05.2.1h.5q.05-.05 0-.1.1 0 .1-.05-.05-.05-.15-.1-.15-.05-.3-.05-.2 0-.35.05m.55-.1q0 .05.2.1h.6q.2 0 .25-.05h.05v-.1q.05-.05 0-.05 0-.049-.05-.05.1 0 .1-.05h.05v-.05q0-.05-.1-.15h-.3l-.2.1q-.1.05-.1.1l.1.05h-.15q-.25 0-.35.05-.15.05-.1.1m-1.3-.9q-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.15.05.1.05.3.05h.05q.15 0 .15-.05.15 0 .15-.05"/><path fill="#CCC" d="M674.3 290q-.05-.05-.15-.1-.05-.05-.25 0h-.05q-.15 0-.2.05-.1.05-.05.1l.05.05h.05q.15.05.3.05.2-.05.2-.1l.1-.05m-.1.4h.3q0 .05.1.05.2.05.4.05.15 0 .25-.05.1 0 .1-.05-.05-.1-.2-.1-.1-.1-.3-.1h-.1q-.05 0-.2-.05h-.25q-.1 0-.2.05-.1.1-.1.15l.2.05m1.55-.55q-.1.05-.05.15 0 .05.2.1.15.05.35.05.25 0 .4-.05.1-.05.1-.1-.1-.1-.2-.15-.25-.05-.5-.05-.15 0-.3.05m-.05-.35q-.1.05-.05.1 0 .05.1.1.2.05.4.05.15 0 .2-.05.15-.05.15-.1-.05-.05-.2-.1h-.6m0 1h-.45q-.15.05-.15.1.05 0 .15.05 0 .05.05.05.15.05.3.05h.3q0 .05.1.1h.5q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05h-.15l-.1-.1h-.25v-.05m1.65-2.1q.1 0 .05-.05 0-.05-.15-.1h-.45v.05q-.05-.05-.2-.1h-.45q-.1.05 0 .05v.05q0 .05.05.05h.1q.15.05.2.05.15 0 .15-.05h.1q.05.05.1.05.1.05.25.05.1 0 .25-.05m.15.8q-.1-.05-.25-.05t-.2.05h-.55q-.15.1-.05.15h.1q.2.05.3.05.1 0 .2-.05h.55q.05-.05.05-.1-.05-.05-.15-.05m.1-.35q0 .05.05.05v.05q0 .05.15.1.2.05.45.05.15 0 .35-.05h.35q.05-.05.05-.1h.15q.25-.05.3-.1h.55q.1 0 .15-.05.1 0 .15-.05.05 0 0-.05v-.1q.1 0 .05-.05 0-.05-.1-.1h-.5q-.1.05-.1.1h.1q-.1.05-.1.15l-.1-.1q-.1 0-.15.1h-.1q-.05-.1-.3 0-.15 0-.3.05-.1 0-.05.05 0 .048.05.05h-.2q-.15-.05-.3-.05-.2-.05-.3-.05-.15 0-.2.05h-.05q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .2-.05m-.7.9q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05.1.05.3.05.15 0 .35-.05.2-.05.1-.15 0-.05-.2-.1-.2-.1-.4-.1t-.35.1q-.1.05-.1.1v.05h-.3q-.15.05-.15.1m-.75.6q-.15 0-.2.05-.1 0-.1.05.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.05-.2-.05-.3-.05"/><path fill="#CCC" d="M677.05 290.2h-.25q-.2 0-.25.1l-.05.05q0 .05.1.1h.3q.15 0 .2-.05.05-.05.05-.1-.05 0-.1-.1m.4-.25q-.1 0-.25.05-.05 0-.05.05t.1.1h.5q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05m-4.6-4.8q.15 0 .2-.05.15 0 .15-.05t-.15-.05q0-.05.05-.05.15 0 .15-.05-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.05.05-.1.05-.05.1 0 .05.1.05.2.05.3.05m-.6 0h-.2l-.1-.05q0-.05-.1-.05-.1-.05-.25 0-.1 0-.25.05-.1 0-.1.05.05.05.2.1h.2v.05q.1.05.15 0 .1.05.15.05-.1.15-.1.2 0 .05.2 0 .048.048.1.05h-.1q-.15.05-.1.1l.15.05q.15.05.3.05h.65l.05-.05v-.05l-.15-.05q-.15-.05-.25-.05-.05 0-.15.05 0-.05-.05-.05h-.15q.1-.05.15-.05v-.05q0-.05-.05-.15h-.2q.1-.003.1-.05.1 0 .05-.05 0-.05-.15-.1m-.75-.2q.1-.05.15-.1.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25 0-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.05.3.05m-.2 1.15q-.15 0-.35.05-.05.1-.05.15v.05h.05q-.1.05-.1.1.048.048.15.05-.152.001-.25.05-.05 0-.05.05-.05-.05-.1-.05-.15 0-.2.05l-.1.05q.05.05.15.1h.45q.25.05.45.05h.2l.1.05q.15.05.25.05.2 0 .3-.05v-.05h.05q.15 0 .25-.05.15-.05.15-.1-.1 0-.15-.05h-.15l.2-.1q.1 0 .1-.05.05 0 .05.05h.15q.2 0 .35-.05.1-.05.05-.1 0-.05-.2-.1h-.6v.1q-.1-.05-.2 0-.1 0-.2.05-.15.05-.1.1l.1.05h.05q.092.046.225.05h-.175q-.1 0-.2.05h-.15q0-.05-.25-.1-.048-.048-.1-.05h.05q.25 0 .35-.05.1-.05.05-.1 0-.1-.15-.2-.2-.05-.45-.05m-.35-.3h-.05q-.05 0-.15.05-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.2q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05m.2-.25q-.1.05-.1.1l.2.05q.1.05.25.05.1 0 .25-.05l.05-.05q0-.05-.2-.1h-.45m.05 1.35h-.5q-.05.05-.05.1l.1.1q.2.05.3.05.15 0 .2-.05l.1-.1q0-.05-.15-.1m-.45-2q0-.05-.1-.1h-.5v.05q-.1-.05-.15-.05-.2-.1-.5-.1-.25 0-.5.1-.1.05-.1.1.05.1.2.15l.05.05q0 .05.1.1.05.05.15.05.05.05.1.05h.4q.25 0 .4-.05.2-.05.15-.15 0-.05-.15-.1v-.05q.1.05.2.05.15 0 .25-.05v-.05m-.65.9q-.2 0-.2.05-.1 0-.1.05.05.05.2.1h.45q.05-.05 0-.1 0-.05-.05-.05-.2-.05-.3-.05m-1 1l.05.05q.15.05.3.05t.15-.1l.15-.05q-.05-.05-.2-.1-.05.05-.25.05h-.2q-.1.05 0 .1m.2.3q0 .05.2.1.1.05.3.05 0-.05.05-.05h.5q.1-.05.1-.1-.05 0-.15-.1-.1-.05-.2-.05-.05 0-.1-.05-.15 0-.3.05h-.3q-.1.05-.1.15m.8 2.1q-.05-.05-.2-.1-.1-.05-.2-.05-.15 0-.25.05-.15.05-.05.1-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.5q.1-.05.05-.1.1.05.25.05.1 0 .25-.05l.1-.05m.2-.25h.1q.05.05.25.05v-.05q.002.05.2.05.15.05.35.05h.05q.1 0 .25-.05h.1q.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.05-.05.05-.05.1-.05.15-.05.15-.1-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05h-.1v-.05h-.05l-.05-.05q-.1-.1-.25-.1t-.25.1l-.05.05v.05h-.1l-.05-.05h-.45q-.1 0-.25.05l-.05.05q0 .05.2.1m1.2-.1v.05l-.05-.05h.05m-2.05 1.25h-.05q-.15.05-.1.1 0 .1.15.1.15.05.4.05.2 0 .2-.05.15 0 .15-.1.1-.05.1-.1t-.2-.1h-.65q-.05.05 0 .1m0 .4q-.15-.05-.25-.05t-.25.05l-.1.05q.05.05.15.1h.2v.05h.25v.05H669q-.1.05-.05.1l.15.05h.05q.1.05.25.05.05 0 .1-.05 0 .05.05.05v.05h-.3q-.05.1-.05.15 0 .05.2.1h.05q.05.05.25.05.1 0 .2-.05l.1-.05v-.05l-.1-.05h.2q0-.1.05-.1t.05-.05l-.1-.1h-.2q.103-.003.15-.05.05 0 .05-.05v-.05h.35q.05-.05.05-.1t-.1-.05q-.1-.05-.25-.05t-.25.05q-.05 0-.05.05v.05h-.05v-.05q0-.05-.1-.05-.15-.05-.2-.05h-.05m1.2-.9l-.05-.05-.15-.05q-.1-.1-.25-.1-.1 0-.2.1l-.15.05q.05.05.2.1h-.2q-.05.05-.05.1l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05q0-.05-.15-.1h.15q.097 0 .15-.05"/><path fill="#CCC" d="M670.65 289.6l-.05.05q.05.05.15.05v.05q-.05 0-.05.05.05.05.2.1h-.25v.05q-.15 0-.2.05l-.05.05q0 .05.1.1h.55q.2-.05.3-.1.15-.05.1-.1v-.05l-.2-.05h.2v-.05q.05.05.1.05.1.05.3.05.1 0 .2-.05l.05-.05q-.05-.05-.15-.1h-.5l-.1-.05h-.05q.05-.001.05-.05 0-.05-.15-.1h-.3q-.15.05-.25.05v.05m-.05.9l-.1.05q0 .05.15.1.05.05.2.05h.05q0 .05.1.05.05.05.25.05.1 0 .25-.05.05-.05.05-.1.2 0 .25-.05l.1-.05q-.05-.05-.15-.1h-.25q-.15.05-.25.05h-.1q-.1-.05-.25-.05-.2 0-.3.05m1.25-.1q.05.05.1.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05v-.05h.3q.15-.05.05-.15h-.05q0-.05-.05-.05-.1-.05-.25-.05h-.15l-.1.05q-.1 0-.1.05 0 .097.1.1h-.1q-.1 0-.25.05-.05 0-.05.05m.4.3q-.15 0-.2.05-.15 0-.1.05v.05h-.1q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1.05 0 .05-.05.1 0 .1-.05-.1-.05-.15-.05-.1-.05-.25-.05m.8.05q-.1 0-.2.05-.05 0-.05.05l.05.05-.05.05q.05.15.2.15.1.05.3.05h.1q.1.05.15.1h.25q.05.05.15.1h.5q.1-.05.05-.1 0-.05-.1-.05-.1-.05-.2-.05 0-.05-.1-.15h-.45v-.05q0-.05-.15-.05v-.05q0-.05-.15-.05-.1-.05-.3-.05"/><path fill="#CCC" d="M673 291.35h.25q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.35-.05-.1 0-.15.05-.15 0-.15.05l.2.1h.25m-.95.05q.1-.05.1-.1-.05-.05-.2-.1-.1 0-.2.05h-.3q-.15.05-.1.1 0 .05.15.1h-.05l-.1.05q0 .05.2.1h.25q.1-.05.25-.05.05-.05.05-.1l-.2-.05h.15m.6.25q-.1 0-.1.05t.2.05q.05.05.25.05.1 0 .25-.05v-.05h.25q.1 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05l.05.05q-.1-.05-.25-.05t-.2.05"/><path fill="#CCC" d="M671.3 291.4q0-.05-.15-.1h-.65q-.05.05-.05.1.047.047.175.1-.131-.05-.225-.05-.2 0-.25.05-.1 0-.1.05H670q-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.2v.05l.05.05q.15.05.3.05t.25-.05l.05-.05q-.05-.05-.15-.1h.5q.05-.05 0-.1l-.05-.05q.1.05.3.05.2 0 .3-.05.1-.05.05-.1m-.05.95q0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.35.05.2 0 .3-.05.15 0 .1-.05m.2.55q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1-.1.05-.1.1t.2.05.2.05q.15 0 .25-.05.05 0 .05-.05l.1-.05m.35-.35q-.15 0-.05.05 0 .05.1.05.1.1.3.1.1 0 .2-.1.05-.05.05-.1-.05-.05-.15 0-.1-.05-.2-.05-.2 0-.25.05"/><path fill="#CCC" d="M669.7 291.45l.05-.05q0-.05-.05-.05-.15 0-.15-.05h-.45v.05h-.4q-.1 0-.15.05-.15.05-.15.1.05 0 .2.05.1.05.25.05.1 0 .25-.1.05 0 .05-.05h.05q.1.05.25.05.1 0 .25-.05m8.55-.15q.05 0 .1.05.15.05.25.05.2 0 .25-.05h.15q.1 0 .15.05h.5q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.25-.05h-.1q-.05 0-.2-.05h-.5q-.15 0-.2.05-.05.05-.05.1m-1.05.8v.05q0 .05.15.1.1.05.3.05.1 0 .25-.05.05-.1.05-.15 0-.05-.2 0-.1-.05-.25-.05t-.3.05m-.45-.65q.1 0 .2-.05.15 0 .1-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.05.05.2.05.1.05.25.05m-.55.05q-.05-.05-.2-.05-.1-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.15.1h.5q.15-.05.15-.1m-.35-.15q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5m.35.95q-.15 0-.25.05-.05 0-.05.05t.1.1h.5q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05m.65-.55h.25q.05-.05.05-.1l-.1-.05q-.15-.05-.3-.05t-.2.05l-.05.05q0 .05.1.1h.25m-.7 1.55q-.15 0-.15.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.05m-.6-2.2q.1 0 .1-.1 0-.05-.2-.1H675q-.1.05-.1.1 0 .1.15.1.2.05.3.05.1 0 .2-.05m-.85.6q-.15.05-.1.1h-.45q-.15.05-.05.15 0 .05.1.1h.6q.1-.05.1-.1.1-.1.15-.1.2 0 .25-.05.05 0 .05-.05l-.1-.1h-.35q-.15.05-.2.05m-.75.85q-.1 0-.1.05l.15.15h.5q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05m14.5-7.3q-.1 0-.1.05t.2.05q.05.1.25.1.1-.1.25-.15v-.05q0-.05-.15-.05-.1-.05-.25 0-.15 0-.2.05m-.95.7h-.05q-.15-.05-.35-.05h-.2q-.1 0-.15.05v-.05l-.15-.05h-.1v-.05q0-.05-.05-.05v-.05q.05.05.15.05.15 0 .25-.05.05 0 .05-.05l-.1-.1h-.1q.102-.002.15-.05l.15-.05q0-.097-.15-.1.153-.002.25-.05l.05-.05v-.05q.15-.05.05-.1 0-.05-.15-.1-.2-.05-.45-.05-.15 0-.35.05-.05 0-.05.05-.15-.05-.3-.05 0 .05-.05.05h-.25q-.25 0-.35.05-.15 0-.1.05 0 .1.15.1.048.048.15.05-.1.002-.1.05 0 .1.2.15h.325q-.186.004-.325.05-.1.05-.1.1h-.1q-.05.05-.05.1t.15.05q.15.05.25.05h.05q0 .05.2.1h.05q0 .05.15.1.15 0 .3-.05h.15v.05q0 .05.25.1-.15 0-.35.1-.05.1-.05.15v.05q.05.05.15 0 .15.05.25.05h.2q.15 0 .35-.05.1 0 .1-.05-.05 0-.05-.05v-.05q.25 0 .35-.05.15-.1.1-.15 0-.05-.2-.1-.1-.05-.2-.05m-1.45-.7h.25q0-.05.1-.05.05 0 .05.05h.05l.05.05h-.25q-.1.05-.05.15l.15.05h-.1q-.1-.05-.3 0 .05-.15.05-.2v-.05"/><path fill="#CCC" d="M687.6 285.75q.097 0 .2-.05l.1-.05q0-.05-.15-.1h-.15q-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.05.05.05.2.05.1.05.25.05"/><path fill="#CCC" d="M687.8 285.7q-.098.052-.05.1l.15.05q.15.05.3.05.1 0 .15-.05l.15-.05q-.05-.05-.2-.1h-.5m-.75.95q-.05-.05-.2-.1-.1-.05-.3 0-.15 0-.3.05-.1.05-.05.1 0 .05.1.05.15.05.3.05.2-.05.3-.1.15 0 .15-.05m-.5.25q-.05 0-.1-.05-.2-.05-.4-.05t-.35.05q-.15.05-.1.15 0 .097.1.1h-.15q0-.1-.1-.15H685q-.15.05-.15.15.1 0 .2.05.05 0 .2.05h-.1q-.1-.05-.3-.05-.15 0-.3.05v.05q-.05-.05-.1-.05-.1 0-.25.05l-.05.05.1.1h.4v.05h-.4q-.05.1-.05.15h-.05q.05.05.2 0 .1.05.2.05h.25v-.05h.05q.1.05.2.05t.25-.05l.05-.05v-.05h-.05q0-.05.05-.05.2 0 .2-.05.15 0 .15-.05l-.05-.05h.2l.05-.05q0 .05.05.05.1.05.3.05.15 0 .25-.05t.05-.1v-.05q.15 0 .2-.05.05-.1.05-.15 0-.05-.2 0l-.05-.05"/><path fill="#CCC" d="M686.15 287.65q.1 0 .1-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05h-.05l.05.05q0 .05.05.05.1.05.25.05h.05q.2 0 .2-.05m.4-.05q-.15.05-.25.05-.1.05-.1.1t.1.15l.15.05q.1.05.35.05.2 0 .35-.05.2-.15.15-.2l.15.05h.25q-.05.1-.05.15.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.3v-.1l-.05-.05h-.15q.15-.05.15-.1h.4q.05 0 .05-.05h.1q.05 0 .05-.05-.05-.1-.2-.1l.05-.05q.1 0 0-.05h.15q.1 0 .1-.05h.05v.05q-.15.05-.1.1.05.05.25.1.15.05.35.05h.25q.05 0 .1-.05l.15-.05h.05q.15-.05.35-.05.25 0 .35-.05l.2-.05h.1q.1.05.2.05h.2q.2 0 .35-.05.1-.05.1-.1-.05-.05-.25-.15-.15-.05-.4-.05-.2 0-.3.05-.05 0-.15.1-.05-.1-.15-.1-.25-.1-.5-.1-.3.05-.4.2-.2.05-.15.1h-.5q.1-.05.05-.1l-.05-.1q.05-.05.05-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.1q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05h-.1q-.1.05-.15.05-.1 0-.05.05l.05.05q-.05 0-.05.05h-.05v.05q0 .05.1.05.15.05.3.05 0 .05.2.1.098.098.15.1h-.05v.05h-.3q-.1 0-.15.05h-.1l-.05.05q.05.05.2.1h.05q-.098.003-.05.1h-.25q-.1 0-.2.05-.1 0-.05.05 0 .05.15.05v.05h.05l-.05.05q-.15-.05-.25-.05-.15 0-.25-.05h-.25m-.95-2.8q-.05-.05-.2-.1h-.65q-.05.05 0 .1 0 .05.05.1.25.05.45.05.15 0 .2-.05.15-.05.15-.1m-.65.35q-.1 0-.2-.05t-.25-.05q-.1 0-.25.05-.05 0-.1.05h-.45q-.05.05-.05.1h-.4q-.15 0-.25.05h-.3q-.05.05-.05.15 0 .05.15.05 0 .047.1.05h-.4q-.05-.1-.3-.2.15 0 .2-.05l.05-.05-.1-.1h-.5q-.05.05-.1.05l.05.05.1.05h-.35l-.1-.05q-.1-.05-.25-.05-.25 0-.35.05-.15.05-.1.1 0 .1.15.15.15 0 .25.05.05.1.2.15h-.1q-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.25.05.15.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05.15 0 .25-.05.1 0 .05-.05 0-.05-.15-.05-.048-.048-.15-.05.152-.001.25-.05.05.05.15.1h.6q.15-.05.05-.1h.15q.1-.05.25-.1l.05-.05h.05q.2 0 .3-.05.15-.05.05-.15v-.05q.1.05.15.05.1 0 .15-.05 0 .05.15.05.15.1.3.1.1 0 .15-.1.15 0 .15-.05-.05-.05-.2-.05.15-.05.15-.1m.35.8h-.25q-.1.05-.1.1.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.1h-.25m-.2-.05q.15 0 .15-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.05 0-.05.05t.15.05q.15.05.3.05.1 0 .15-.05"/><path fill="#CCC" d="M684.05 285.55q-.1.05-.1.1l.2.05q.05.05.25.05.1 0 .25-.05v-.05q0-.05-.15-.1h-.45m.3.5q0-.1-.25-.15h-.4q-.2 0-.4.05.05.05 0 .05h-.25q-.1.05-.05.1 0 .05.05.15h.05q.1 0 .1.05h-.1q0 .05.2.1h.25q.1-.05.25-.05 0 .05.1.05.15.05.25.05h.2q0 .05.1.1.2.05.3.05.2 0 .25-.05h.05q.25 0 .3-.05.05 0 .1-.05.1-.05.1-.1l-.2-.1h-.6l-.05.05h-.05v.05h-.15q-.05-.05-.15-.1h-.3q.102-.003.15-.1.2-.05.15-.1m0 .65q-.15 0-.15.05t.2.1h.45q.1-.05.1-.1l-.15-.05h-.15q-.1-.05-.15-.05-.15 0-.15.05"/><path fill="#CCC" d="M683.7 286.45h-.2q-.15 0-.25.05v.05q0 .05.1.1h.25q.2 0 .25-.05.05-.05.05-.1l-.2-.05m-.1.25h-.1q-.1.05-.1.1l.15.05q.15.05.3.05l.2-.1q.05 0 .1-.05 0-.05-.2-.1-.1 0-.25.05h-.1m0 .7v-.05h.1q.15-.05.1-.1 0-.05-.15-.05-.05-.05-.25-.05h-.05q-.1.05-.15.05h-.5q-.05.05-.05.1l.05.05.2.1h.05q.047.047.225.05h-.475q-.1.05-.1.1.05 0 .15.05.15.05.25.05t.25-.05q.05 0 .1-.05 0 .05.05.05.15.05.25.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.45q.103-.003.15-.05.1 0 .05-.05m-.25.1l-.05.05q-.05 0-.1-.05h.15m1.35.2h-.15q-.05-.05-.2-.05-.15.05-.25.1.05 0 0 .05v.1l.1.05h-.1q-.15.05-.05.1-.15.05-.15.1.05.05.2.05.05.05.25.05.1 0 .2-.05h.3q.15 0 .2-.05h.05v.05h.3v.1h-.45q-.1.05 0 .05l-.1.05q0 .048.1.05-.202.002-.3.1-.15.05-.1.15-.15 0-.35.05-.05.05-.05.1l.1.1q0 .05.1.05h.05q.1.05.3.05h.05q.2-.1.3-.1.2-.05.1-.15h.4q.1-.05.05-.1 0-.1-.15-.1-.1-.05-.15-.05-.05 0-.05-.05h.35q.1-.05.1-.1 0-.048-.05-.05h.25l-.15.1.2.1h.05q.141.047.25.05h-.1q-.15.1-.15.15.05 0 .15.05h-.1l-.05.05q0 .05.15.1h.25v.1l.05.05h.1l.05.05h-.15l-.05.05q0 .05.05.05 0 .05.05.05h.5q.1-.05.1-.1-.05 0-.1-.05h-.1q.102-.002.15-.05l.05-.05V289l-.1-.05h-.1q-.05-.05-.15-.05h-.05v-.05q-.1 0-.1-.05h.1l.05-.05v-.05q-.05 0-.15-.1.15 0 .15-.05.15-.05.1-.1 0-.05-.05-.1.05 0 .05-.05-.001-.05-.15-.1h-.1q0-.1-.15-.1v-.05h-.2q-.05-.05-.25-.05-.15 0-.3.05h-.05v.05l-.05-.05h-.15q-.05-.05-.15-.05-.15 0-.2.05h-.05q-.05 0-.05-.05h-.25q-.05-.05-.1-.05l-.1-.05h.15q.05-.1.05-.15 0-.05-.05-.05"/><path fill="#CCC" d="M687.7 288.1q-.1-.05-.25-.05-.1 0-.25.1h-.15l-.05.05h-.1l-.05.05v.05h.05q0 .05.15.05-.05.001-.05.05l.05.05h.1q.05.05.15.05h.1q.1-.05.25-.1.05 0 .05-.05t-.2-.1h.25q.15-.05.15-.1-.1 0-.2-.05m-3.9-.05l.05-.05.1-.05q-.05-.05-.1-.05 0-.1-.05-.1h-.5q-.1 0-.2.1h-.05l-.05.05q0 .05.05.1h.75m.05.3q-.2-.05-.35-.05h-.15q0-.05-.05-.05 0-.05-.1-.05-.1-.05-.25-.05t-.25.05h-.05l-.05.05q.05.05.15.1h.25v.1q0 .05.1.05t.1.05h-.1q-.05-.05-.1-.05h-.05q-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05l-.1.05q0 .047.1.05h-.1q-.1-.05-.2-.05-.2.05-.25.1l-.15.1q.05.05.15.05-.15.05-.15.1.05 0 .2.05.1.05.3 0 .2 0 .3-.05l.05-.05q0-.05-.1-.1l-.05-.1h.35q.05.1.15.15h.5q.05-.05 0-.15l-.05-.05q.1.05.35.05.2 0 .3-.05h.05q.15-.05.15-.1-.05-.1-.25-.1m.25 1.6q.05-.05.05-.1l-.1-.05q-.2-.05-.35-.05-.15 0-.15.05l-.15.05q0 .05.2.1.048.048.25.05-.154.002-.25.05-.05 0-.05.05h-.05q-.15-.05-.25-.05-.2 0-.3.05-.15 0-.05.05 0 .05.1.15h.5l.1.1h.55q.05-.05 0-.1v-.1h.1q.15-.05.1-.1 0-.05-.2-.05-.099-.049-.25-.05.055-.002.2-.05m.4.65q-.1 0-.1.05.05.05.15.1h.5q.048-.048.1-.05h-.05q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m.35-.7q-.05 0-.1.05-.05 0-.05.05l.1.1h.5q.1-.1.05-.15 0-.05-.1 0-.15-.05-.3-.05h-.1m1.05.3q-.15 0-.2.1-.1 0-.1.05.05.05.15.1h.5q.15-.05.05-.1 0-.05-.1-.05-.2-.1-.3-.1m-.15.5q-.1.05-.2.05-.15.05-.1.1h.1q0 .05.05.05.15.05.3 0h.1l-.1.05v.05q.05 0 .15.1h.1q-.106.003-.2.05v.2q0 .05.1.05.2.05.4.05.15 0 .15-.05.2-.05.2-.1l-.1-.05q.05 0 .05-.05t-.2-.05q-.048-.048-.1-.05h.1q.15-.1.05-.15l-.1-.05q-.1-.05-.25-.05-.05 0-.1.05v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.3m2.55-2.9q.05.1.15.1.05.05.15.1h.05q.15.05.3.05.1.05.15.05h.05q.05.05.1.05h.3q.25 0 .5-.05.099-.099.1-.15v-.05l-.05-.1q.053.1.15.1l-.1.05q.001.05.1.05 0 .05.05.05h.05q0 .049.05.05-.05.001-.05.05v.05l.2.05.05.05h.35q.05-.05.15-.05v-.05q0-.05-.15-.1-.048-.048-.1-.05h.05l.05-.05q-.05-.05-.15-.05l-.1-.05h.15q.1 0 .15-.1.15 0 .15-.05.05-.05 0-.05v-.05q-.05-.05-.25-.1-.2-.1-.5-.1-.25 0-.45.1-.1.05-.1 0h-.45l-.05.05q-.1 0-.1.05.097.048.15.05h-.45l-.05-.05h-.55q-.1.05-.1.1l.05.05m1.625 0q-.126-.048-.225-.05h.1l.125.05m.225.15v-.05l-.05-.1q.053.1.15.1l-.1.05"/><path fill="#CCC" d="M688 288.2q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .2-.05.25.05.45.05t.3-.05h.1v.05h.05v.05q0 .05.15.1h.3q-.05.05-.05.15.05 0 .2.05.1.05.25.05t.3-.1q.049-.099 0-.1h.1q.05.1.2.1.05.05.25.05.1 0 .2-.05.1 0 .1-.1h-.1q0-.05-.05-.1h-.3q-.05-.05-.1-.05 0-.05-.05-.05h-.4q-.05 0-.1.05l-.05.05h-.2q.05-.001.05-.05v-.05h.05q.1-.05.1-.1-.1-.05-.2-.05v-.05h-.25q-.15 0-.3.05-.05 0-.05.05l-.05-.05q0-.05-.2-.1h-.1q-.15-.05-.3-.05h-.3q-.05.05-.15.05-.05 0 0 .05H688m-.55.8q-.15.05-.15.1.05.05.2.1.25.05.45 0 .15 0 .35-.05h.05v.05q0 .05.15.1h-.15q-.1.05-.1.1l.05.1q-.1-.1-.25-.1-.1.1-.25.15l-.1.05q.05.05.2.1.1 0 .2-.05h.1q.05.05.15.1h.25q0 .05.05.05h.15q.048.048.1.05h-.3l-.05.05q-.05 0 0 .05l.05.05h.15q.05.05.15.05.15 0 .25-.05h.05v-.05h.15q.1.05.15.05h.05q.15 0 .25-.05l.05-.05v-.05h-.05q0-.05-.1-.05h-.2q.05-.05.05-.1h-.05v-.05h.25l.05-.05h.25q-.05.002-.05.05h-.15q-.05.05 0 .05 0 .05.15.05.1.05.25.05h.1q.05 0 .1-.05.15 0 .15-.05h-.05q0-.05-.15-.05-.048-.048-.1-.05h.1q-.048-.002 0-.05.05.05.15.05h.25q.1-.05.2-.05h.15q.15 0 .25-.05.05-.1.05-.15-.05-.05-.15-.05-.1-.05-.3-.05-.1 0-.2.05t-.15.05q-.2 0-.25.05h-.25v-.05q.1 0 .1-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.05.05l.1.05h-.45q-.1.1-.1.15h-.15q.15-.05.1-.15 0-.05-.1-.05l.1-.05h.1v-.05h.2q.05-.05 0-.1 0-.05-.1-.1h-.5l-.1.05h-.05v-.05q-.05-.05-.15-.05-.1-.05-.2-.05-.25-.05-.5-.05l-.3.1m0-.2l.05-.05q-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1h-.05q-.05.05 0 .05v.1h.1q.1.05.2.05h.05q.2 0 .25-.05.05 0 .05-.05m-.55 1.6v.05q0 .05.15.05.1.05.25.05t.2-.05q.1 0 .1-.05t-.2-.05q-.05-.05-.25-.05-.1 0-.25.05m.15.3q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05m-4.45-5.75q0-.05-.1-.1-.15-.05-.3-.05t-.15.05q-.15.05-.15.1l.2.05q.05.05.25.05.1 0 .25-.05v-.05m-.15.95q-.1 0-.1.05.05.05.15.05.1.05.25.05h.05q.1 0 .2-.05.05 0 0-.05v-.05h-.05q-.2-.05-.3-.05-.2 0-.2.05m-.45.6l.05-.05q-.05-.05-.2-.1-.1-.05-.3-.05-.1 0-.3.05-.1 0-.2.05-.05 0-.05.05-.15 0-.25.1l-.05.05q.05.05.2.1.05.05.15 0-.1.1-.05.15 0 .05.15 0 .15.05.35.05h.1q0 .05.15.05.249.05.35.05-.05.001-.05.1H682q-.1 0 0 .05 0 .05.1.05.1.05.25.05.1 0 .25-.05.1 0 .1-.05-.05-.05-.2-.05-.049-.098-.1-.1.1 0 .1-.05.2-.05.15-.1 0-.05-.2-.1-.1 0-.15-.05.05 0 .05-.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.048-.048-.1-.05h.1q.2 0 .35-.05m-.4.2v-.05q.05.05.15.05v.05q-.1-.05-.15-.05m-.35.3q-.1 0-.25.1h-.25q-.1.05-.1.1.05.05.2.05.1.05.2.05.1.05.15.05h.3q.15 0 .25-.05t.05-.1l-.2-.05q-.05-.05-.25-.05-.05 0-.1-.1m-.3.65q.1 0 .1-.05t-.15-.1h-.2q.05-.05 0-.1l-.1-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05H680q.05.05.15.1h.25q-.05.05-.05.1l.05.05h.05q.15.05.25.05h.05q.15 0 .2-.05"/><path fill="#CCC" d="M681.8 287.55h-.25v.05q-.1 0-.05.05 0 .05.1.05.15.05.3.05h.1q.05 0 .1-.05h.1q-.05.05-.05.1h-.35q-.15.1-.05.15 0 .05.1.05.2.05.3.05.15 0 .2-.05.1 0 .1-.05h.15q.1 0 .15-.05.15 0 .15-.1 0-.05-.2-.1h-.35q.05-.05 0-.1l-.05-.05q-.143-.048-.25-.05h.45q.2-.05.2-.1-.05-.05-.25-.1-.05-.05-.25-.05-.15 0-.3.05-.1.05-.05.1 0 .05.15.1-.15 0-.2.05m1.1-.75h.2q.15-.05.1-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.25m-.3-.3h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.3m-2.75-1.15h-.05q-.05-.05-.25-.05-.1 0-.25.05l-.05.1-.1-.1h-.5q-.05.1-.05.15 0 .05.2.05.1.05.2.05.15 0 .25-.05l.05-.05q0 .05.1.05t.25.05q-.1 0-.1.05.1.05.2.05.1.05.3.05.2 0 .3-.05h.3q.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3q-.15 0-.2.05-.05 0-.05-.05t-.05-.05q-.2-.1-.4-.1m.2.7v.05q.05 0 .1.05.2.1.4.1.15-.1.2-.15.15-.05.15-.1-.048-.048-.15-.05.1-.002.1-.05 0-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05l-.05.05q-.1.05-.05.1m-.9-1q.05-.05.05-.1t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.1h.5m-.6 1.1h.35l.05.1h.175q-.131.003-.225.05l-.05.05q0 .05.15.1t.25.05q.15 0 .25-.05.05-.05.05-.1l-.15-.05q-.094-.047-.2-.05h.25q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05h-.15q-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.1m.7.75q0-.05-.05-.1h-.5q-.1.05-.1.1h.05v.05q0 .05.15.05 0 .1.15.1h.15q.102-.003.15-.1.05 0 .05-.05v-.05h-.05"/><path fill="#CCC" d="M679 287.15q-.05 0-.05.05.05 0 .2.05.05 0 .15.05h.4q.15 0 .25-.05.15 0 .1-.05 0-.05-.2-.1h-.15q-.05-.1-.15-.1-.1 0-.1.1h-.35q-.1.003-.1.05m1.9.6q-.15 0-.2.05h-.05v.1q-.05-.1-.25-.1-.1 0-.25.1-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.55q.05-.05.05-.1l-.1-.1q-.15-.05-.3-.05m-.45.5q-.1.05-.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.05.05.15.05.1.05.2.05.15 0 .25-.05.05 0 .05-.05.15-.1.15-.15h-.2q-.05-.05-.25-.05-.1 0-.2.05l-.1.05q-.05 0-.1-.05h-.5m.4.3h-.2q-.1.05-.1.15l.15.05q.15.05.25.05t.25-.05l.05-.05q0-.1-.1-.15h-.3"/><path fill="#CCC" d="M680.85 288.95v.1q.05.05.15.1h.6q0-.05.05-.05 0 .05.15.05.05.05.25.05.1-.05.25-.1.05-.05 0-.05 0-.05-.1-.1-.1 0-.2.05h-.35l-.15-.05h-.05v-.05q0-.05-.15-.05-.05-.05-.1-.05h-.15q-.15 0-.2.05-.1 0-.1.05t.1.05m-1.4.95q0-.05-.15-.1h-.5q-.15.05-.15.1-.05 0-.15.05-.1.05 0 .05 0 .05.05.1h.45q.1 0 .15-.05 0 .05.05.05.188.047.3.05.2 0 .3-.1.15-.05.15-.1-.1-.05-.2-.05h-.3"/><path fill="#CCC" d="M679 290.15q-.1.05-.1.15.05 0 .2.05.1.05.2.05.15 0 .25-.05l.1-.05q0-.1-.15-.15h-.5m.1-.55h.05q.1.05.25.05h.25l.05.05h.45q.15-.05.15-.1h.15q.15-.05.15-.1h.05q.05-.1.05-.15 0-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.05 0-.05.05v.05h-.1q-.1 0 0 .1h-.25q0-.1-.15-.15-.1 0-.25.05h-.2q-.15.1-.15.15.05 0 .15.05m.4 1.2h-.5q-.1.05-.1.1.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .1-.05 0-.05-.15-.1m.05-.2q-.05.05-.05.15.05.05.2.1.15.05.35.05.25-.05.4-.1.15-.05.1-.1 0-.05-.15-.1-.05-.05-.1-.05-.15-.05-.3-.05-.15.05-.25.1h-.2"/><path fill="#CCC" d="M680.85 289.35v.15h-.1l-.05.05v.05q-.1 0-.05.05 0 .05.2.1-.1 0-.2.05h-.25q-.1 0-.25.05v.05q0 .05.15.1h-.2q-.1.05-.05.1 0 .05.1.05.15.05.25.05h.05q.15.1.25.1.15 0 .25-.1.05 0 .05-.05t-.15-.05l-.1-.05q-.05 0-.1-.05h.1l.1-.05q.1.05.15.05.2 0 .25-.05.1-.05.1-.1-.05-.05-.15-.05-.047-.047-.15-.05h.25q.05-.05.05-.1v-.1q.1 0 .15-.05.05 0 .05-.1 0-.05-.05-.05-.05-.05-.2-.1h-.45q-.1.05 0 .1m-.15 1.05q0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05"/><path fill="#CCC" d="M681.8 289.95q-.15-.05-.25-.05-.2 0-.25.05-.05.05-.05.1l.2.05q.05.05.2.05.15 0 .25-.05l.1-.05q0-.05-.2-.1m-.15.55q0 .05.15.1.2.05.3.05.2 0 .25-.05.1-.05.1-.1-.05 0-.15-.05-.15-.05-.3-.05t-.25.05l-.1.05m1.25-.6l.1-.05q-.05-.05-.2-.1-.05-.05-.2-.05-.15 0-.25.1-.05.05 0 .1l.05.05h.3q.2 0 .2-.05m-.6 1.6q.1.05.2.05.15 0 .25-.05.05 0 .05-.05t-.1-.05q-.2-.05-.3-.05-.1 0-.2.05-.1 0-.1.05t.2.05m1.1.65h-.15q-.15.05-.15.1.1 0 .2.05t.25.05l.3-.1.05-.05q0-.05-.1-.1-.2 0-.4.05m-1.85-.65q.05 0 .05-.05t-.1-.05q-.15-.05-.25-.05.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .05.1.1h.25q-.05.002-.05.05-.1 0-.1.05t.15.1h-.05q-.05 0-.05.05l.1.1h.55l.1-.05q.1-.05.1-.1l-.2-.05m-.05.65q-.15 0-.25.05-.1 0-.05.05 0 .05.1.1h.5q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05m-.05-.4h-.25q-.15.05-.15.1.1.1.2.1.1.05.25.05.1 0 .25-.05.1 0 .05-.1 0-.05-.15-.1h-.2m1.75.8h.2q.1-.05 0-.1 0-.05-.05-.05-.15-.05-.3-.05t-.25.05q-.05 0-.05.05.05.05.15.1h.3"/><path fill="#CCC" d="M680.35 291.35q0-.05-.05 0h-.5q-.05.05 0 .1 0 .05.05.05.15.05.2.1.1.05.35.05.2-.05.3-.1.15-.05.05-.1 0-.05-.15-.1h-.25m-.7 1q.1-.05.05-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.5m-1.25.15q-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15 0 .15-.05-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05m.45.7q-.15.05-.05.1 0 .05.1.1.2.05.4.05t.25-.05q.15-.05.15-.1-.05-.05-.2-.1h-.65m9.45-1.85q-.05.05 0 .05 0 .05.05.1h.55q.05-.1.05-.15.1 0 .15-.05l.15-.05q-.05-.05-.2-.1-.1-.05-.25-.05-.026 0-.05.025.05-.131.05-.175h-.2q-.1-.05-.25-.05-.1 0-.25.05h-.1q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .1.15.15h.45l.05-.05q0 .05.1.05h.45q-.1.05-.15.05-.15.05-.05.1h.05q-.15.05-.2.05m-.85.6l-.15-.1q-.15-.05-.25-.05-.15 0-.25.05l-.05.1q0 .05.15.1h.5q.05-.05.05-.1m.05.2h-.1q-.2 0-.3.05-.1.05-.1.1.05 0 .15.05.15.05.3.05t.2-.05q.1.05.15.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.5m-1.35 1.45h.25q.05-.05.05-.15-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .1.15.15h.25m-1-1.3q0-.05-.1-.1h-.5q-.05.05-.05.1t.15.05q.1.05.2.05.2 0 .25-.05.05 0 .05-.05m-.5-.8q0-.05-.2-.05-.1-.05-.3-.05-.1 0-.25.05-.05 0-.05.05t.2.1h.5q.1-.05.1-.1m-.1.95q-.1.05-.1.1.05.05.2.05.05.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.5m.55 1.3q0 .05.15.1h.45q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m14.5-10.25q-.1-.05-.25-.1h-.4q-.2 0-.35.05-.15.05-.1.1.05.05.25.1.1.05.35.05.15 0 .35-.1.2-.05.15-.1m-10.25.15q-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1m-.45.75q-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.1.25.1.1 0 .2-.1.15 0 .1-.05 0-.05-.15-.05-.15-.05-.3-.05"/><path fill="#CCC" d="M689.75 284.45h-.3q-.1.05-.05.1 0 .1.1.15.2.05.35.05h.1q.1 0 .15-.05h.15q.1 0 .15.05h.25q.25 0 .3-.05h.05q.1 0 .15.05h.05q-.054.002-.2.05-.1.05-.1.15.05.05.25.1.25.05.55 0h.3q.1.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.05-.05-.05-.1-.05h-.1q0-.1-.2-.15-.15-.05-.25-.05.1-.05.1-.15 0-.049-.05-.05.101 0 .25-.05h.05q.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1h-.55q-.15 0-.25.05t-.05.1h-.15l-.2.1q-.1-.05-.2-.05-.097-.048-.2-.05.1-.002.1-.05.15 0 .1-.05 0-.1-.2-.1h-.05q-.1-.05-.25-.05-.25 0-.3.05-.1 0-.1.1.05.05.15.05.097.048.15.05-.15.001-.15.05h-.4m2.25-.6h-.5q-.1.05-.05.1l.1.05q.149.05.3.05-.05.001-.05.05 0 .05.2.05.05.05.2.05.15 0 .25-.05v-.05q0-.05-.05-.1h-.3v-.05l-.1-.1m1.45-.2q-.2.05-.15.1-.1.1-.1.15.05.05.25.1t.4.05q.25-.05.3-.1.2-.05.2-.1.05-.1.05-.15-.05-.05-.2-.1h.15l.05-.05q0-.05-.15-.1h-.45q-.15.1-.15.15-.1 0-.2.05m-.6.4l-.15.05q.05.05.15.05v.05q0 .047.1.05h-.1q-.2 0-.35.05-.1 0-.05.1l.05.05h.1q.15.05.35.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.05-.1h.2l.05-.05v-.05l-.05-.05q.05 0 0-.05l-.15-.05q-.1-.05-.25-.05-.1 0-.2.05"/><path fill="#CCC" d="M694.05 284.4q-.151.001-.2.05-.1.05-.1.2.05 0 .05.05h-.15q-.3 0-.45.05h-.2q-.15 0-.3.05-.2.05-.1.1 0 .05.25.1.15.05.35.05h.25q.15.05.3.05h.1q.05.05 0 .05h-.05q-.2 0-.35.05-.3 0-.45.05-.25.05-.15.2 0 .1.3.15.05 0 .2.05h.1q-.1.05-.1.1.1.05.15.05.1.05.25.05.1 0 .2-.05h.1q.05 0 0-.05 0-.05-.1-.05v-.05q.1 0 .1-.05.1-.05.1-.1.05 0 .05-.05v-.1q.05 0 .05-.05v-.05h.2q.1-.1.1-.15h-.2l.05-.05.1-.1q.05-.05.05-.1-.048-.048-.15-.05h.1q.25 0 .45-.1h.05q.05.05.25.15.3.05.55.05.3 0 .4-.05.25-.1.2-.15 0-.15-.3-.2-.2-.05-.5-.05-.2 0-.35.05h-.15l-.05.05q0-.1-.25-.15-.099-.05-.3-.05.053-.002.15-.05.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25.05-.35.1-.15.05-.1.1 0 .05.2.1.097.048.2.05m2.8-.85q-.1.05-.05.1 0 .05.1.1h.65q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05m-.05.95q-.1 0-.05.05l.05.1q-.05 0-.05.05.05.05.25.1h.35q.2 0 .35-.05.2-.05.15-.1 0-.15-.25-.2h-.3q-.15-.05-.25-.05-.15.05-.25.1m.1-.35q.1.05.15.1h.65q.15-.05.05-.1 0-.05-.1-.1-.2-.05-.35-.05-.2 0-.3.05-.1.05-.1.1m1.65 1.15l-.05.05q-.05 0 0 .1 0 .05.1.1.2.05.35.05.2 0 .25-.05.05-.05.15-.05h.4q.15-.05.05-.15h.1q-.1.1 0 .1 0 .1.2.15h.55q.25 0 .45-.05.15-.05.15-.2l-.05-.05q.3 0 .5-.05.1-.05.1-.1-.05-.05-.05-.1-.05-.05-.2-.05-.25-.05-.55-.05h-.05q-.25 0-.35.05-.2.05-.1.15-.1-.05-.25-.1t-.35 0q-.25 0-.4.05-.15.05-.1.1 0 .049.05.05-.101 0-.25.05h-.65m-.25-.5q0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25 0-.3.05-.2.05-.15.1m-.85 1h.4q.3 0 .45-.05.15-.1.15-.15-.1-.1-.25-.15-.25-.1-.55-.1-.25.1-.4.15-.1.05-.15.05-.05.05 0 .1 0 .048.05.05H697q-.2 0-.25.05-.15.05-.15.1.1 0 .15.05.05.05.1.05t.15.05h-.3q-.1.05-.1.1.1 0 .15.05.1.1.25.1t.25-.1l.05-.05q0-.05-.15-.1.15 0 .2-.05.05 0 .1-.05.1 0 0-.05v-.05"/><path fill="#CCC" d="M696.3 285.8q.2-.05.15-.1-.05-.1-.25-.15-.2-.05-.5-.05-.2 0-.45.05 0-.05-.15-.05-.15-.05-.4-.05-.15.05-.25.05l-.05.05-.15.05-.05.05q.05.05.25.1l.1.05q.15 0 .25-.05h.45q0 .05.1.05.3.1.55.1.3 0 .4-.1m.75 1.1q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.1.1.2.1.05.1.1.1h.5l.05.05q0 .05.15.05v.05q.05.05.15.1.25.05.45.05.15 0 .25-.05h.05q.15-.05.1-.1v-.05h-.05q-.05-.05-.2-.05-.1-.05-.3-.05l-.05-.1h-.3q-.05-.05-.05-.1"/><path fill="#CCC" d="M697.9 287.35q-.05.05-.05.1l.15.05q.15.05.25.05v.05h-.05q-.15.05-.15.1l.2.1h.05q.05.1.15.1h.1q-.05.05-.2.05-.1.05-.05.1v.05q-.05-.05-.15-.05-.15 0-.25.05-.05.05 0 .05 0 .05.05.1h.5l.1-.05q.1 0 .3-.05h.3q.05 0 .1-.05h.1v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.05l.05-.1h.1l.05.1h.2q-.1.003-.1.05v.2q.1.1.2.15h.8q.1-.05.1-.1.05 0 .1-.05.2-.05.15-.15-.05-.05-.25-.1-.246-.148-.55-.15.15-.002.15-.05l.05.05q.3.05.55.05.3 0 .4-.05.2-.1.1-.15v-.05h.15q.05 0 .1.05h.25l.05.05q0 .1.25.15.2.1.5.1.25 0 .4-.1.2-.05.2-.15.05.05.1.05.3.05.55.05.3 0 .45-.1.15-.05.1-.15 0-.048-.1-.1.205.1.5.1.25 0 .4-.1.2-.05.15-.1 0-.05-.15-.1.1-.05.15-.05.15-.05.15-.15-.1-.1-.25-.15-.15-.05-.35-.05-.2 0-.4.05-.05.05-.1.05h-.25q-.15 0-.3.1-.2.1-.1.15 0 .1.25.1v.05q0 .05.15.1h-.55q-.25 0-.4.05-.2.05-.15.1v.05q-.05-.05-.15-.05-.15-.05-.25-.05-.1-.05-.25-.05-.05 0-.1.05v-.1h.45q.1 0 .2-.05t.05-.1q0-.05-.15-.1-.199-.05-.3-.05.05-.001.05-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .1.15.1 0 .05.05.05l-.1.1q.05.05.2.1l.1.05q-.15-.05-.2-.05-.1-.05-.35-.05h-.05q-.2 0-.35.05-.1 0-.05.05l-.05.1q-.05 0-.1-.05-.25-.05-.55-.05h-.05q-.25 0-.4.05-.15.1-.1.15h-.05q-.25-.05-.45-.05h-.1q.109-.003.25-.05l.05-.05q0-.05-.1-.1-.2-.05-.4-.05-.1 0-.15.05-.15.05-.15.1h-.05q0-.05-.05-.05h-.25q0-.05-.2-.1-.1.05-.2.05h-.25m-1.7-.75q0-.05-.1-.05-.1-.05-.25-.05t-.25.05q-.05 0-.05.05l.1.1h.5q.1-.05.05-.1m.5.75h-.3q-.15 0-.15.05-.15.05-.1.1 0 .1.25.15.2.05.45.05h.4q.05-.05.1-.05t.05-.05h.2q.1-.05.1-.1h-.05q0-.05-.1-.05-.1-.05-.25-.05h-.05q-.15-.05-.2-.05h-.35"/><path fill="#CCC" d="M696.1 287.4q.1 0 .05-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05 0 .05-.05.05 0 .05-.1.05 0-.048-.05-.05h.15q.05-.1 0-.15h-.1q-.15-.05-.3-.05t-.25.05l-.05.05q0 .048.125.05-.179.002-.275.05-.2.05-.15.1 0 .1.2.1-.05.05-.15.05l-.05-.05h-.55q-.05-.05-.1-.05l-.05-.05q-.3-.05-.55-.05-.3 0-.4.05h-.1q-.1.1-.1.15h-.15q-.15 0-.2.05-.15 0-.15.05.05.05.2.05.05.05.25.05.1 0 .25-.05l.05-.05.05.05q.25.05.55.05.25 0 .4-.05.25.05.45.05.15 0 .2-.05.1-.05.15-.05h.05q.1.05.25.05.1 0 .25-.05.1 0 .05-.05v-.05h.2q.1-.1.1-.2.1.05.25.05.1 0 .25-.05m-.1-2.2q0-.1-.1-.1-.2-.05-.35-.05-.2 0-.3.05-.05 0-.05.1.05 0 .05.05-.05 0-.05.05.05.05.15.05.15.1.25.1t.25-.1q.1 0 .05-.05 0-.05.05-.05.15 0 .05-.05m-.75.65q-.05-.05-.15-.05h-.15q-.2.05-.3.05-.1.05-.15.05-.05.05-.05.1.05.05.2.1h.05q.05.05.1.15-.05 0-.05.05h.05q0 .1.25.15h.5q.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.2h-.05q0-.1-.25-.15h-.05l-.1-.05h-.15"/><path fill="#CCC" d="M694.15 286.15h-.25q-.15 0-.3.1h-.05q-.05.05 0 .1 0 .05.1.05.2.05.4.05h.05q.1 0 .15-.05h.2q.1 0 .25-.05.05-.05 0-.05 0-.05-.05-.15h-.5m.3.5q-.1.05-.1.15h-.3q-.25 0-.45.05h-.05q0 .05-.05.1.05.15.25.2.145.048.325.05-.127.002-.175.05-.05 0 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05-.05-.15-.05v-.05q.15 0 .3-.05t.1-.15h.25q.3-.05.5-.1.15-.05.15-.15-.05-.05-.3-.15-.2-.05-.55 0-.15 0-.35.05h-.05m-.6-.1q-.05 0-.1-.05-.15-.05-.3-.05t-.25.05h-.05v.1q0 .049.05.05h-.05q-.2 0-.25.05-.15 0-.15.05l.2.1q.1.05.3.05.1 0 .25-.05.1-.05.05-.1l-.05-.05h.05q.2 0 .3-.05v-.1m1.1 1.5q.1 0 .25-.05.05 0 0-.05 0-.05-.1-.15h-.45q-.15.1-.15.15.05.05.2.05.05.05.25.05"/><path fill="#CCC" d="M695.25 288q-.2.05-.15.15.1.05.25.1.3.1.6.1.25-.05.35-.15.25-.05.2-.1-.05-.1-.3-.15-.25-.05-.5 0-.3 0-.45.05m-.3.6q-.1.1 0 .15h-.1q0 .05.15.05v.05q-.15-.05-.25-.05t-.25.05h-.4q0-.05-.15-.1h-.45q-.15.05-.15.1.1 0 .2.05t.25.05h.1v.1q.05.05.25.1l.05.05h-.05q-.2 0-.3.05-.1.05-.1.15v.1q0 .05.05.1.15.05.3.05h.4q.3 0 .45-.05.15-.1.1-.2 0-.1-.25-.15-.05 0-.15-.05h.05q.25 0 .35-.05.25-.05.2-.1V289q.05-.05 0-.05 0-.05-.15-.1h.45q.1-.05.1-.1l-.15-.15h-.55"/><path fill="#CCC" d="M695.4 289q-.1.05-.05.1 0 .05.15.05h.05v.05h.05q.05.05.2.1h-.15q-.15.05-.1.2 0 .05.15.1.241.048.425.05-.132.002-.275.05-.15.05-.15.1-.05 0-.1-.05-.3-.05-.55-.05-.25 0-.4.05-.2.05-.15.15h-.05q-.05-.05-.25-.05-.1 0-.25.05-.05 0-.05.05.05.05.15.05l.05.05q-.05 0 0 .05 0 .049.05.05-.051.001-.1.05h-.55q-.05 0-.15-.05-.1-.05-.2-.05-.15 0-.2.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.1.3.1h.1q.1 0 .2.05.05 0 .2.05l.05.05q0 .1.25.15.1.05.3.05-.1.05 0 .1 0 .1.2.15.148.049.3.05-.052.002-.1.05-.1.1-.1.15.05.05.2.1.15.05.3 0h.25q-.05.05-.05.1.05.05.1.05 0 .05.1.05.25.05.45.05t.3-.05q.2-.05.15-.1 0-.05-.25-.1-.2-.05-.35-.05h-.2q.15-.05.05-.1 0-.1-.15-.15-.148-.049-.2-.05.052-.001.2-.05l.1-.1h.25v-.1q0-.05-.1-.1h-.45q.109-.003.25-.05l.2-.1q.05.1.15.15.2.05.35.05.15 0 .2-.05l.05.05q.3.05.55.05h.35q.05.1.25.15h.55q.25 0 .4-.05.2-.05.15-.15 0-.05-.2-.1h.2q.05.05.05.1.05.05.25.15.25.05.55.05.2 0 .35-.05.25-.1.2-.15-.1-.1-.35-.15-.15-.05-.4-.05v-.05q-.05-.05-.25-.15-.1-.05-.35-.05-.2 0-.35.05-.2.1-.15.15v.05q-.05-.05-.15-.05-.2 0-.3.05-.05 0-.05.05h-.15q-.05 0-.05-.05t-.25-.1q-.2-.1-.5-.1-.2 0-.35.1-.1-.1-.25-.1h-.15q-.2 0-.3.1-.149 0-.15.05-.001-.05-.25-.15-.049-.049-.1-.05.05-.001.05-.05v-.05q.25.05.5.05.2 0 .25-.05h.15q.15-.05.15-.1v-.05q.05 0 .1.05.25.05.45.05t.3-.1l.1-.05h.35q.3 0 .5-.05t.2-.1q-.1-.1-.4-.15-.15-.05-.45-.05-.2 0-.45.05.05-.05.05-.15-.05-.1-.15-.1l.05-.05q.05 0 .1-.05h.45q.1-.05.05-.1 0-.05-.05-.1h.1q.15-.05.1-.1 0-.05-.15-.1-.2-.05-.35-.05-.2 0-.25.05-.1.05-.1.1l.1.1h-.25q-.05.05-.25.05h-.05l-.05-.05h-.5m-.75 1q.05 0 .1.05h-.1l-.1-.05h.1m-.025.55h-.225l.05-.05q.047.047.175.05m1.875-.95q0 .05-.05.05h-.15q.105-.002.2-.05m-2.05-1.25q-.1-.05-.25-.05-.1 0-.25.05l-.1.05q-.05 0-.2-.05-.05 0-.1-.05h.05q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.2-.05-.05-.05-.15-.05-.15-.05-.25 0-.1 0-.25.05-.1 0-.05.05 0 .05.1.05.1.05.15.05 0 .05.05.1-.05 0-.25.05t-.1.15q.05.05.25.15.3.05.5 0 .3 0 .45-.1.25-.05.15-.1v-.05q.002.05.1.05.1.05.2.05.15 0 .25-.05.15-.05.05-.1l-.1-.05m3.85.05l-.1-.05q-.2-.05-.45-.05-.15 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.35.05h.4q.15 0 .25-.05l.05-.05q0 .1.25.1.2.1.5.1.25 0 .4-.15.2-.05.15-.1 0-.1-.3-.15-.2-.05-.45-.05-.3 0-.5.1-.1.05-.1.1l-.05-.05h-.2m-.9-.4q.15-.05.15-.1-.1 0-.2-.1-.1-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5"/><path fill="#CCC" d="M697.75 289.05q-.15.05-.1.15.05.05.25.15.3.05.55.05.3 0 .4-.05.2-.1.1-.15-.05-.1-.2-.15-.25-.05-.55-.05-.25 0-.45.05m-.1-.15q.1 0 .25-.05.1 0 .1-.05-.05-.05-.15-.1h-.5q-.1.05-.05.1 0 .05.1.05.15.05.25.05m-.4-.5h-.5q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1"/><path fill="#CCC" d="M698.25 289.85q.05.05.2.1h.35q-.05.05-.15.05-.1.05-.1.1.05.05.25.1.15.1.4.1h.3v-.1h.1q.05 0 .1-.05.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1h-.25q.2-.05.15-.1.15 0 .35-.05l.05-.1q.2 0 .3-.05.15-.05.15-.1-.05-.05-.25-.15l-.05-.05h.15q0 .05.15.05l.05.1v.05q0 .05.25.1.1.05.35.05.25 0 .35-.05.05 0 .05-.05.1.05.25.1t.3.05q-.1.05-.1.1h-.05q0 .05-.1.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.1.05.35.05h.25l.05-.05q0 .05.1.15.1 0 .15.05.3.05.55.05.3-.05.4-.1.2-.1.1-.2-.05-.05-.2-.15h-.15v-.05h.05q.15-.05.1-.1 0-.05-.1-.05l-.2-.1q-.15-.05-.25-.05.1-.05.05-.1l-.05-.1q-.15-.05-.25 0-.25-.05-.5-.05-.3 0-.4.05-.15 0-.2.1 0-.1-.1-.15h-.05q.049-.001 0-.05v-.05q-.1 0-.2-.05h-.05q-.2-.05-.35-.05h-.15q-.05 0-.1-.05h-.3l-.15-.05q-.25 0-.35.1-.1.05-.05.1 0 .1.1.15-.15 0-.25.1-.05 0-.1.05-.2 0-.3.05-.1 0-.05.1l.05.05q-.1 0-.25.05-.05 0-.05.05m-5.75-3.8q.15 0 .1-.05 0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.1-.15 0-.15.05.05.05.2.05h.25q.1 0 .2-.05m-1.1.05h-.55q-.2.05-.25.05l-.05.1h-.15q-.15 0-.25.05-.1 0-.05.05 0 .05.15.1h.4l.15.05q.1 0 .3.05h.2v.1l.1.05h.1q.1.05.2.05.15 0 .15-.05.15 0 .15-.05v-.05q-.1 0-.2-.05h-.4q.109-.002.3-.05h.2q.2 0 .4-.1h-.1q.2-.05.15-.1h.05v-.05q0-.1-.2-.15-.106.003-.2.05h-.45q-.1 0-.15-.05m.95-.65q.05-.1.05-.15 0-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05v.05q0 .05.1.15h.5m-1.05.6q.1.05.25.05t.25-.05v-.1h-.05q.05-.05.05-.1-.05-.05-.2-.1h-.6q-.1.05-.05.1 0 .049.05.05-.05.001-.05.05h.05q0 .05.15.1h.15m.5.8l-.05.05q0 .05.05.05 0 .05.05.05h.5q.05 0 .1-.05-.05 0-.05-.05l-.1-.05q-.15-.05-.3-.05t-.2.05m-.2.75q-.105.003-.2.05-.1.05 0 .05 0 .05.05.1.05.1.15.1.15.05.25.05.15 0 .25-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.05 0-.2-.05-.048-.048-.1-.05h.25l.05-.05q.15 0 .25-.05.05-.05.05-.1t-.2-.05q-.05-.05-.25-.05-.15 0-.2.05-.1 0-.1.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1h.15m1.05-.3h.1q.25 0 .45-.05.1-.05.05-.1 0-.05-.2-.15-.15-.05-.4-.05-.2.05-.35.15-.15.05-.15.1.05.05.25.1.1.05.25 0m-1.95-2.35q-.05-.05-.15-.05-.15-.05-.3-.05-.2 0-.4.05-.1 0-.05.05 0 .1.15.1.1 0 .2.05-.05 0-.05.05v.05q-.1-.05-.15-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.75q.05-.05 0-.1.1 0 .15-.05l.1-.05v-.05l-.2-.05q.1-.05.1-.1"/><path fill="#CCC" d="M690 285.6q-.05-.05-.2-.05-.1-.05-.25-.05-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1q-.05.1-.05.15h.3q.05.05.1.05h.15q.1.05.25.05-.15.05-.15.1l.2.05q.048.048.1.05h-.1l-.05.05q-.1 0-.1.1l.2.1q.1.1.3.1h.1q.25 0 .3-.1h.1q.1-.05.05-.1 0-.1-.2-.1-.15-.05-.35-.05.05-.05.1-.05v-.05q0-.05-.05-.1h-.3l.05-.05q.15 0 .15-.05"/><path fill="#CCC" d="M688.75 285.75v.1l.1.05q.1.05.25.05.15-.05.25-.1l.05-.05q0-.05-.2-.1-.05-.05-.25 0-.05 0-.05.05h-.15m1 .55q-.1-.05-.3-.05-.1 0-.25.1l-.05.05q0 .05.1.1.15-.05.25-.05h.3q.15-.05.15-.1-.1 0-.15-.05h-.05m-.1.45q0 .05.05.1h.45q.15.05.3.05.35 0 .45-.1.25-.05.2-.1 0-.05-.15-.1-.1-.05-.15-.05-.2-.05-.5-.05h-.2q-.1 0-.3.05-.05.05-.1.15h-.05q0-.05-.2-.05-.1-.05-.3-.05-.2 0-.25.05-.1.05-.1.1.05 0 .15.05.15.05.3.05.2 0 .25-.05l.15-.05m.7 2.1h-.3q-.1.05-.05.1 0 .05.15.1t.3.05q.2-.05.35-.1.05-.05.05-.1-.05-.05-.2-.1-.1 0-.3.05m-1.5 1.25l-.05.05q.05 0 .05.05h.05l.05.1h.5q.05-.1.1-.15h-.05l-.1-.05h-.05q-.1-.05-.2-.05t-.25.05h-.05m.9.5l-.05.05q.05.05.15.05.15.05.25.05h.05q.15 0 .2-.05.05 0 .05-.05h.15v-.05q.05.05.1.05.15.05.35.05.25 0 .45-.1.15-.05.1-.1 0-.1-.25-.15h-.4q-.25 0-.35.05-.15.05-.1.1-.15-.05-.35-.05-.1 0-.15.05-.1 0-.1.05-.05 0-.1.05m.95-.65l-.05-.05q-.2 0-.2.05l-.1.05q.05.05.2.1.05.05.25.05.1 0 .2-.05t0-.1l-.05-.05h-.25"/><path fill="#CCC" d="M690.1 290.35q.15.05.25.05h.05q.15 0 .25-.05.05 0 .05-.05 0-.1-.15-.15H690q-.05.05-.05.15h.05q0 .05.1.05m.25.4q-.05 0-.2.05h-.1l.05.05q0 .05.05.1h.5q.15-.05.15-.1l-.1-.05h-.1q-.05-.05-.25-.05m2.35-1.65h-.2l-.05-.05q-.15-.05-.35-.05-.25 0-.35.05-.15.05-.15.1h-.05q-.1.05-.05.1 0 .05.1.05.1.05.25.05h.25q.2.05.3.05.05 0 .2-.05.1.05.3.05.25 0 .3-.05.15-.05.15-.1-.05-.05-.2-.1-.2-.05-.45-.05m-.3-.35q-.05.05-.05.1t.15.05q.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.1q-.1-.05-.3-.05-.15 0-.25.05m.6.2q-.05.05 0 .1 0 .05.05.05.2.05.3.05.2-.05.2-.1.1 0 .1-.05-.05-.05-.15-.1-.05 0-.25.05H693m-.95-.65q-.2-.05-.35-.05h-.2q-.05 0-.1.05h-.15l-.05.05v.05q.05.1.2.15h.1q.1.05.3.05.2 0 .35-.05.15-.05.05-.15 0-.05-.15-.1m.05 1.25q-.05 0-.05.05-.15.05-.05.1.05.1.2.15h.1q.2.05.45.05t.4-.05q.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.5-.05-.3 0-.4.05"/><path fill="#CCC" d="M691.75 289.95h.15q.1 0 .15-.05l-.15-.1.1-.05q0-.05-.15-.1h-.45q-.1 0-.1.05h-.05v.05q.05 0 .15.05l-.1.05q.1.05.15.1h.3m1.1 1.55q.05.05.15.1.241.048.425.05-.13.002-.225.05l-.15.05.2.1h.5q.1-.05.05-.1l-.15-.05q-.048-.048-.15-.05.152-.001.25-.05.15-.05.1-.1 0-.05-.25-.1-.1-.05-.3-.05-.25 0-.4.05-.05.05-.05.1m-.8-.15q-.05-.05-.2-.1-.1 0-.25.05h-.1v-.05l-.2-.05q-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5q-.1.003-.1.05l.15.05q.097.048.15.05h-.05q-.25 0-.45.05h-.1q-.05-.05-.2-.05-.15 0-.25.05-.15 0-.1.05 0 .05.15.05.2.05.3.05h.1q0 .05.1.05l-.1.05q.1.05.2.15h.55q.3-.1.4-.2.2-.05.15-.1 0-.1-.25-.15-.15-.05-.25 0l.1-.1.15-.05m-.9 1.15q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1 0 .05.2.1h.6"/><path fill="#CCC" d="M690.65 291.35q0-.1-.1-.1-.2-.05-.4-.05h-.65v.1q0 .05.15.05.1.05.2.05h.1q0 .05.1.05.1.05.3.05.1 0 .2-.05.05 0 .05-.05.1 0 .05-.05m-.55.75q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05m-1.05-.25l.05-.1q-.05-.05-.15-.05h-.45q-.15.05-.05.1l.1.05q.1.1.3.1.1 0 .2-.1m8.8-.3h-.3q-.15.05-.2.05-.1.05-.1.1.05 0 .15.05.15.05.25 0 .1 0 .25-.05l.05-.05q0-.05-.1-.1m-.2-.1q.1-.05.1-.1-.05-.05-.15-.1-.15 0-.25.05h-.3q-.15.05-.05.1 0 .05.1.1h.35q.15-.05.2-.05m-1.5-.45q.1 0 .25-.05.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05h-.05q-.05-.05-.25-.05-.1 0-.2.05t0 .05q0 .05.05.15h.45q.15-.1.15-.15h.05q.1.05.25.05m-.05.7q.05.05.15.1h.55q.2-.05.1-.1 0-.05-.15-.1h-.55q-.1.05-.1.1m.4.65q-.1-.05-.25-.05-.1 0-.25.05-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1m1.8.25q.15.05.25.05.2 0 .3-.05.1 0 .05-.05 0-.05-.1-.1h-.55q-.1.05-.1.1.05.05.15.05m-4.4.25q-.1 0-.25.05l-.05.05q0 .05.15.1t.3.05q.15 0 .2-.05.15-.05.15-.1-.05 0-.2-.05-.1-.05-.3-.05m13.1-5.45q0-.05-.2-.05-.15-.05-.3-.05-.05 0-.05-.05h-.5q-.1.05-.1.1.05 0 .05.05-.1 0-.25.05-.1.05-.1.1.05.1.25.15.25.05.55.05.2 0 .35-.05.25-.05.15-.15.2-.1.15-.15m-2.35-2.05q-.05-.05-.25-.15-.25-.05-.5-.05-.3 0-.4.05-.2.1-.15.15.1.15.25.2.25.05.55.05.25 0 .35-.05.2-.05.15-.2m1.55 3.55q-.25-.05-.5-.05-.3 0-.4.05-.2.05-.1.15.05.05.2.1.2.1.5.1.25 0 .45-.1.2-.05.15-.1-.05-.1-.3-.15m-2.35-.9q.15-.05.15-.1-.1 0-.2-.1-.05-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5m.15.75q-.15 0-.2.05-.15.05-.15.1l.2.05q-.25 0-.35.05-.15.05-.15.15.1.05.25.1.2.05.45.05.15 0 .3-.05t.1-.1q0-.1-.25-.15.1 0 .15-.05l.05-.05q0-.05-.1-.1-.15-.05-.3-.05"/><path fill="#CCC" d="M703 289.05q-.15-.05-.4-.05-.3 0-.5.05-.1.1-.05.15 0 .1.25.1.15.05.45.05h.25q.05.05.2.15h.45q.1-.1 0-.15 0-.05-.05-.05-.15-.05-.3-.05.05-.05.05-.1-.05-.05-.35-.1m1.5.6q.1.1.25.15.25.05.55 0h.25q-.2.05-.15.1 0 .05.25.1.15.05.4.05.2 0 .4-.05.1-.05.1-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.2q.25-.05.2-.15 0-.05-.3-.2-.2-.05-.45-.05-.3.05-.45.15-.15.1-.15.15m-.3.2q-.2 0-.45.05-.15.05-.15.15.05 0 .15.05h-.15q-.25 0-.35.05-.1.05-.1.15.05.05.2.1l.1.05q.05 0 .05.05h-.2l-.05-.05h-.5q-.05.05-.05.1.05.05.15.05v.05q.05.05.2.1.15.05.3.05v.05q0 .05.2.1t.45.05q.15 0 .35-.05.05-.05.05-.1-.05-.05-.2-.1-.095-.048-.2-.05h.3q.2 0 .35-.05.25-.05.15-.15-.05-.05-.3-.15-.1 0-.3-.05h.2q.3 0 .5-.1.15-.1.1-.15 0-.1-.3-.15-.2-.05-.5-.05m3.4-1.55q.1 0 .1-.1-.05-.05-.25-.1-.1-.05-.35 0-.15 0-.35.05-.1.05-.05.1 0 .1.15.1.2.05.4.05.2-.05.35-.1m-7.3-2.25h.05q.25-.1.45-.15.15-.05.15-.1-.05-.1-.3-.15-.25-.05-.55 0-.2 0-.4.05-.05 0-.05.05-.15.05-.05.1l.2.1q.25.1.5.1m.7 1.9q-.1.05-.1.1.05.05.25.1.15.05.35.05.25-.05.35-.1.2-.05.15-.1 0-.05-.25-.1-.1-.1-.35 0-.2 0-.4.05m-.7 1v.1q.05 0 .25.05h.05q.2.05.4.05h.15q.15 0 .3-.05.05-.05.1-.05h.1q.15.05.3.05.1-.05.15-.1.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05-.05-.05-.3-.1-.15-.05-.4-.05-.3 0-.5.05-.1.05-.05.1m3.35-.5q-.05-.05-.2-.15-.25-.05-.55-.05-.25 0-.35.05-.2.1-.15.15v.05h-.35q-.05.05-.05.1l.15.1q.1.05.25.05t.25-.05v-.1q.25.1.5.1.3 0 .4-.1.2-.05.1-.15m-1.9 2.2q-.2.05-.1.1 0 .05.15.1.25.05.45.05t.35-.05q.1-.05.1-.1-.05-.05-.15-.1-.25-.05-.5-.05-.2 0-.3.05m-.35.85q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.45q.15-.05.15-.1m-1.1.05h-.5q-.05.05-.05.1.05.05.15.05.1.05.2.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.05m-.65-.1q-.05-.05-.25-.05-.05-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.1.1h.55q.2-.05.2-.1m-53.8-4.15h-.2q-.25 0-.45.05-.15.05-.1.15.05.05.25.15.3.05.5.05.3 0 .45-.05.15-.1.1-.15v-.05h.25q.25 0 .45-.05.15-.1.1-.2-.05-.05-.25-.1-.3-.1-.55-.1-.1 0-.25.1H646q-.2.1-.15.15v.05m1.4 1.65q-.15-.05-.45-.05-.25 0-.5.05-.15.05-.15.15.1.05.3.1.25.1.5.1.3 0 .5-.1.1-.05.05-.1 0-.1-.25-.15m-.05 1.05q.2 0 .25-.05.05 0 .05-.05t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.05.15.05.25.05m11.05-5.85h.3q.15-.05.15-.15-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05-.049 0-.05.05v-.05q-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45v-.05q.002.05.1.05 0 .1.15.15h.45m.3.3v.1q0 .1.1.1.1.05.3.05.2 0 .25-.05.05 0 .05-.1 0-.05-.2-.1h-.5m.65-.2q0 .05.05.05.1.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05 0 0 .05m1.75.3q-.15-.05-.25-.05t-.25.05q-.05 0-.05.1 0 .05.2.1h.45q.05-.05.05-.1 0-.1-.15-.1m.3-.35q.05.05.3.15.25.05.5.05.3 0 .45-.05.2-.1.15-.15 0-.1-.3-.15-.2-.05-.5-.05-.25 0-.5.05-.1.05-.1.15m1.8-1q-.2 0-.35.05-.15.05-.15.1.1.05.25.1.25.05.45.05t.3-.05q.15-.05.1-.1 0-.05-.25-.1-.1-.05-.35-.05m0 .95q-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.2.05.1.05.15.1h.55q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05 0-.05-.1-.05-.2-.05-.3-.05m-.05.4h-.25q-.2 0-.3.1-.1.05-.1.1.05 0 .15.05.15.05.3.05t.25-.1l.05-.05q0-.05-.1-.15m2.3-1.6h-.25q-.2.1-.25.1-.1.05-.1.1.05.05.15.05.05.05.25 0 .1 0 .25-.05.05 0 0-.05 0-.05-.05-.15m-1.45 1.55v.05q0 .1.1.15h.5q.05-.05.05-.15 0-.05-.2-.05-.05-.05-.25-.05-.1 0-.2.05m1.6-.85q-.05 0 0 .05 0 .05.05.05.15.1.25.1.2 0 .25-.1.1 0 .1-.05-.05-.05-.15-.05-.05-.05-.25-.05-.1 0-.25.05m.2.9h-.05q-.15-.05-.25-.05-.15 0-.25.05l-.1.1q.05.05.15.1h.05q0 .05.2.05.2.05.35.05.2-.05.3-.1.15 0 .15-.05-.1-.05-.25-.15-.15-.05-.3 0m-.15-.55q0 .05.1.1.15.05.3.05t.15-.05q.15-.05.15-.1l-.2-.05q-.05-.05-.25-.05-.1 0-.25.05v.05m1.25-.35q.05.1.2.2.3.05.55.05.3 0 .45-.05.2-.1.15-.2 0-.05-.3-.1-.15-.1-.45-.1-.25 0-.5.1-.1.05-.1.1m-.4.85q-.05 0-.05.05.05.1.15.15h.35q0 .05.1.05.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.3l.05-.05q0-.05-.2-.15h-.3q0-.05-.1-.05-.1-.05-.3-.05-.1 0-.2.05m-8.6.8h-.1q-.15.05-.25.05-.15.1-.1.15h-.4q-.1.05-.05.1 0 .05.1.1h.6q-.1.05-.25.05-.15.05-.1.15.05.1.25.15.2 0 .35.05h-.1l-.15.05h-.15q-.15-.05-.25-.05-.15 0-.25.05h-.1q-.15-.05-.3-.05h-.1q.1-.05 0-.05 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.15.1-.15.2.05.05.3.05.25.15.55.15.1 0 .2-.05v.05q0 .05.2.05.1.05.2.05 0 .05.2.15.25.05.5.05.3 0 .5-.05.05-.05.1-.05h.15q.1 0 .15-.1.05 0 .05-.05l-.1-.1h.2q.1-.1.05-.15l-.15-.05q.15 0 .25-.05.2-.05.15-.15-.1-.1-.25-.15-.25-.05-.55-.05-.048 0-.1.05.05-.052.05-.1h-.05l.05-.05q.1 0 .25-.05l.05.05q.05 0 .15.05.15.05.3.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.15l-.1-.05q-.1-.05-.15-.05-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05v.05m-1.7 1.85l-.05.05h-.2q-.15-.05-.35 0h-.1q.15-.05.15-.2-.05-.05-.15-.1.1-.1.1-.15-.05-.1-.3-.1.1-.05.1-.1-.05-.05-.15-.1-.15-.05-.25-.05 0-.05-.2-.1h-.6q-.1.05-.1.1.05.05.2.1h.15l.15.1q-.15 0-.2.05h-.05q-.15.05-.05.15v.05q-.002-.05-.1-.05h-.65q-.05.05 0 .1 0 .049.05.05-.151 0-.3.05v.1q0 .05.15.1h.4q0 .05.05.05.2.05.3.05h.25q.25 0 .35-.05h.3q-.1.1-.1.15.05.1.3.15.192.048.475.05-.178.003-.225.05-.15.05-.15.1-.1 0-.15.05-.2.1-.15.15 0 .05.25.1v.05h-.25q0-.05-.1-.05-.2-.05-.4-.05t-.4.05q-.05.05-.05.1.05.05.2.1.25.05.4.05h.45q.1.05.3.05.15 0 .3-.05.1-.05.1-.1-.05-.05-.25-.1h.1q.15 0 .35-.05.1-.1.1-.15l-.1-.1h.1q.15-.05.05-.1 0-.05-.1-.1h-.1q0-.05.05-.05.05-.05.1-.05h.15q.05 0 .05.05h.25q.15 0 .2-.05.15 0 .15-.1 0-.05-.25-.05.1-.05.1-.1-.05-.05-.15-.1h-.5m1.6-.4h-.1q-.1.05-.05.1h.05q-.1.05-.15.05-.1 0-.1.05-.05.05-.05.15.05.05.25.1.3.1.6.1h.15q.15.05.4 0 .3 0 .5-.1.1-.05.1-.1-.05-.15-.3-.2-.2-.05-.35-.05v-.05q-.05-.1-.25-.1h-.4q-.2 0-.3.05m.3.6q-.3 0-.45.05-.2.05-.1.15 0 .05.1.1h-.2q-.3 0-.45.05-.15.05-.15.2.1.05.3.1.2.1.5.1h.15l.1.05q0 .1.25.15.15.05.35.05v.1q-.05.05-.05.1t.15.15h.1q.15.05.35.05.15 0 .35-.15.2-.05.1-.1v-.05h-.1l.05-.05q.05 0 .15-.05h.05q.1.05.35.05.25 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.1-.05-.2-.05v-.1q.2 0 .3-.05h.1q0-.05.05-.05h.25q.15 0 .3-.1.05 0 .05-.05t-.2-.1q-.1-.05-.25-.05h-.05q-.15 0-.35.05h-.05q-.2-.05-.45-.05-.3 0-.45.05-.15.05-.15.1.05.15.3.2-.1.05-.1.1.05 0 .15.05h.1l-.1.05q-.1 0-.05.05h-.1q-.05-.05-.15-.05v-.05q-.05-.05-.2-.1-.25-.05-.55-.05h-.2q-.049 0-.05.05v-.05q.05 0 0-.05 0-.148-.1-.15h.35q0 .05.15.15h.25q.15-.1.25-.1.05-.05.05-.1l-.15-.05q-.15-.05-.25 0 .15-.1.1-.15-.05-.1-.3-.1-.25-.05-.45-.05m-3.75-2.05q0-.05-.2-.1-.1-.05-.25-.05-.1 0-.2.05t-.1.1l.15.05q.15.1.3.1.1 0 .15-.1l.15-.05m-.55.55q0-.1-.25-.1l-.05-.05q-.05-.1-.3-.15-.25-.05-.55-.05-.25 0-.4.05-.2.1-.15.2l.05.05q0 .05.15.05-.2.05-.3.1-.15.05-.05.1 0 .1.15.2h.6q.25 0 .35-.1.2-.05.15-.1-.048-.048-.2-.1.158.05.4.05.15 0 .3-.05t.1-.1m-1.25 0q.05 0 .1.05-.19-.047-.3-.05h.2m.4.1q-.095-.048-.2-.05h.1q.05 0 .1.05"/><path fill="#CCC" d="M653.3 286.65h.25q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.25 0-.35.05-.1.05-.05.1 0 .05.1.1h.45m.6.85q-.15 0-.2.05l-.1.05q.05.05.15.1h.4v.05q.05.05.15.05.05.1.25.1.1 0 .25-.1.05 0 0-.05 0-.05-.05-.1h-.45v-.05l-.1-.05q-.2-.05-.3-.05m.7 1.4q.2.05.3.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.1h-.55l-.05.05-.05-.05h-.7l-.15-.15v-.05l-.05-.05h.1q.1-.05.05-.1 0-.05-.1-.05-.15-.05-.25-.05-.1.05-.25.1-.05 0-.05.05-.15-.05-.25-.05-.25 0-.4.05-.2.1-.15.15 0 .15.25.2.25.05.5.05h.1q.2.05.3.05.2-.05.3-.1h.05v.1q-.1 0-.05.05 0 .05.15.05-.25.1-.3.1-.2.05-.15.15 0 .05.25.1h.1q-.05.05-.1.05l-.05.1q0 .05.1.1h.05q-.049.001 0 .05 0 .05.15.05h.25q.1 0 .2-.05.15 0 .15-.05-.05-.05-.2-.1h-.05q.05-.002.05-.1-.05 0-.15-.05.15 0 .3-.05.1-.05.1-.1-.05-.1-.25-.15h-.1q.052-.002.1-.05h.05q.15-.05.2-.05l.05-.05"/><path fill="#CCC" d="M655.2 289.05q-.25.05-.15.15 0 .1.3.15.15.05.45.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.2-.05-.45-.05-.3 0-.45.05m-1.3.8q-.05.05-.05.1l.05.05q-.15.05-.15.1.1.1.3.2h.5q.3 0 .5-.1.15-.05.1-.15 0-.05-.3-.15h-.1q0-.05-.2-.1h-.3q-.25 0-.35.05m-.65.3q.05-.05 0-.05 0-.05-.1-.1h-.55q-.05.05-.05.1.05 0 .15.05.1.05.3.05.1 0 .25-.05m.2.35q-.1 0-.15.05-.15 0-.15.05l.2.1h.5q.1-.05.05-.1 0-.05-.15-.05-.15-.05-.3-.05m2 .3q-.2-.05-.35-.05-.25 0-.35.05-.15.05-.15.1.05.05.25.1.1.1.35.1.2 0 .4-.1.15-.05.1-.1 0-.05-.25-.1m-.35-.5q-.15.05-.15.15.1.1.25.15.3.05.55.05.3 0 .45-.05.15-.05.1-.15 0-.1-.25-.15-.15-.1-.45-.1-.25 0-.5.1m2.65-2q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05t.2.1h.5q.05-.05.05-.1m-.3.75q-.15-.05-.25-.05h-.05q-.2 0-.35.05-.15.05-.1.1 0 .05.2.1t.35.05q.2 0 .3-.05h.1q.05-.05.05-.1-.05-.05-.25-.1m-.05-.45q-.1 0-.1.1 0 .05.2.1h-.1q-.1.05-.1.1h.1q0 .05.05.05.1.05.25.05t.25-.05l.05-.05q0-.05-.05-.1h.1q.05-.05.05-.1 0-.1-.15-.1-.15-.05-.25-.05-.2 0-.3.05m-.8-.45l-.2-.05q-.1-.05-.2-.05-.15 0-.25.1l-.05.05q0 .05.1.1.2-.05.3-.05h.2q.1-.05.1-.1m-.9.6q.05.05.2.1.1.05.2.05.2 0 .3-.1.15-.05.1-.1l-.2-.1h-.3q-.1 0-.25.1l-.05.05"/><path fill="#CCC" d="M656.6 289.8h-.1q-.15.05-.15.15.05.05.25.1h.1q-.05.05-.05.1-.15 0-.25.05-.15.1-.15.15.05.05.25.1t.4.05q.25 0 .35-.1.15-.05.05-.1v-.1h.15q-.049.002 0 .1 0 .1.25.15.25.05.45.05.25 0 .45-.05h.1q.05.05.15.1.2.05.45.05.2 0 .3-.05.2-.05.2-.15-.05-.05-.25-.1-.2-.1-.35-.1 0-.05-.3-.15-.2-.05-.45-.05-.2 0-.4.05H658q-.25 0-.5.05 0-.05-.1-.1h.15q.15 0 .25-.05.05-.05 0-.05 0-.05-.05-.1h-.45v-.05q-.05 0-.1-.05-.1-.05-.25-.05-.15.05-.25.1-.05 0-.1.05m1.4-.45q-.2 0-.25.05-.1 0-.1.1.05.05.15.1.15.05.3.05h.3q.15 0 .25-.05.05.05.2.1.097.048.2.05-.202.001-.35.05-.1.05-.05.1 0 .05.1.1h.6q.1 0 .1-.05l.05.05q.15 0 .35-.05h.25q.05-.05.1-.05l.1.05q.2.05.4.05h.2q.1-.05.15-.05.15-.05.05-.15-.05-.05-.15-.1-.2-.05-.45-.05h-.05q-.109.002-.3.05 0 .05-.05.05h-.05q-.2-.05-.4-.05-.15.05-.2.1h-.15q-.049-.049-.2-.05.102-.002.15-.05h.1q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.35-.05-.1 0-.25.05-.05-.05-.1-.15h-.25q-.2-.05-.35-.05"/><path fill="#CCC" d="M660.45 289.65v-.05q.05 0 .05-.05t-.15-.05q-.15-.1-.25-.1-.2 0-.25.1-.05 0-.05.05t.2.05.2.05h.25m-9.25-2.2q.15-.05.1-.1 0-.05-.2-.1-.15-.05-.35-.05-.25 0-.3.05-.1.05-.1.1.05.05.15.1h.7m-.55-1q.15-.05.1-.15 0-.05-.25-.2-.25-.05-.45-.05-.25 0-.5.05-.1.15-.1.2-.1 0-.15.05-.1 0-.05.1 0 .05.2.05.1.05.3 0h.45q.25 0 .45-.05m1.65 1q-.2 0-.4.05t-.1.15q.05.05.15.1-.05.05 0 .15 0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.1-.15-.1l.1-.05q.15-.1.1-.15-.05-.1-.25-.1-.25-.05-.55-.05m-3.25-.55q-.05-.05-.3-.1t-.45-.05v-.05q-.2-.05-.5-.05-.25 0-.5.05-.1.1-.1.15.05.1.3.15.25.1.5.1.2.05.5.05.25 0 .4-.05.25-.1.15-.2m.85 1.35q.25-.05.2-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.15l-.1-.1h-.45q-.1.1-.1.15h-.1l-.05-.05v-.1q0-.05-.25-.1-.1-.05-.35-.05-.2 0-.35.05-.1.1-.1.2 0 .05.1.1 0 .05.1.05.25.05.5.05.05.1.2.15.3.05.55.05.25 0 .45-.05.1.05.35.05.25 0 .35-.05m.35.85q-.1.05-.05.1 0 .05.2.1.15.05.35.05.2 0 .3-.1.05-.05.05-.1h.15q.3.1.55.1.2 0 .4-.1.2-.05.1-.1-.05-.1-.2-.15-.3-.05-.55-.05-.25 0-.45.05-.15.05-.1.15v.05l-.05-.05h-.3q-.2 0-.4.05m-1.2.65q-.1.05-.05.1 0 .05.2.1h.6q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05m1.05.1q.1.05.3.05.15 0 .3-.05 0 .05.15.1.1 0 .15.05-.05 0 0 .05 0 .1.25.15h.95q.2 0 .25-.05.1-.05.1-.1t-.25-.1h-.05q-.05-.05-.15-.1-.3-.05-.55-.05v-.05h.15q.25 0 .4-.05.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.45-.05-.3 0-.45.05-.2.15-.1.2.05.1.15.15h-.35q0-.05-.1-.05-.2-.05-.4-.05-.15 0-.2.05-.15.05-.15.1.05.05.2.05m1.85-1.4h.2q.1-.05.1-.1-.05 0-.15-.05-.1-.05-.25-.05h-.05q-.1 0-.2-.05-.2-.05-.5-.05-.25 0-.45.05-.15.1-.1.15 0 .1.25.15.25.05.5.05.3 0 .5-.05.05 0 .05-.05h.1m-.85 2.2q-.3 0-.45.05-.2.05-.15.1 0 .1.3.15.2.05.5.05.25 0 .4-.1.2-.05.2-.15-.05-.05-.35-.1h-.45m1.35.35q.098.098.25.1-.1.002-.1.05.1.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.1-.15h-.35l.1-.05q0-.05-.2-.1h-.5v.1l.15.05m5.25 0h.45q.15-.05.15-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1m.05.45q.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1q-.15.05-.1.1 0 .05.25.1.15.05.35 0m-.45.4q-.05-.1-.3-.15-.15-.05-.45-.05-.25 0-.5.05-.1.05-.05.15 0 .1.25.2.25.05.45.05.3 0 .5-.05.1-.1.1-.2m.75.15q.1 0 .05-.05 0-.1-.1-.15-.15 0-.25.05h-.25q-.1.1-.1.15.05.05.15.05.15.05.25.05.15-.05.25-.1m-1.4-.55q0-.05-.1-.05-.2-.05-.3-.05-.2 0-.25.05-.1 0-.1.05.05.05.15.1h.55q.1-.05.05-.1m11.4-6.2q0 .05.1.05.15.05.25.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.5q-.1.05-.05.1"/><path fill="#CCC" d="M668 285.15q-.05-.1-.3-.15-.25-.05-.5-.05-.3 0-.4.05-.25.05-.2.15.05.1.3.15.25.05.55.05.25 0 .35-.05.25-.05.2-.15m-.45.9h-.2q-.15.05-.1.1h-.05q-.1 0-.25.1-.1 0-.05.05 0 .05.15.1h.45q.15-.05.15-.1h.05q.1 0 .15-.05h.15q.05.05.1.05h.15q-.1.003-.1.05-.1 0-.05.05 0 .1.15.1.05 0 .05.05t.1.1h.5q.1-.05.1-.1l-.1-.05q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05v-.15l-.15-.05q-.1-.05-.2-.05-.2 0-.25.05-.15 0-.2-.05h-.25"/><path fill="#CCC" d="M668.1 286.5q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .25-.05h.05v-.05m-.7-.95l-.2-.05h-.05q-.1-.05-.2-.05t-.2.05l-.1.05q0 .05.2.1h.5q.05-.05.05-.1m.65.25q-.1.05-.05.1 0 .05.1.05.05.05.25.05.1.05.3.05.15 0 .2-.05.05.05.1.05.05.05.2.05v.05q0 .1.1.1h.3q-.105.003-.25.1-.1.05-.05.1 0 .05.2.05h.35q.1.05.25.05.1 0 .25-.05.1 0 .05-.05 0-.05-.15-.1h-.1q.052-.002.1-.05.15 0 .15-.05-.05-.1-.2-.1-.1-.05-.25-.05h-.05q-.05-.05-.15-.1h-.2l.05-.05q-.05-.05-.15-.05-.15-.05-.25 0H669q-.05-.05-.15-.1h-.8m-2.15-.6l-.15-.05q-.15-.05-.35-.05-.2 0-.3.05-.05.05-.05.1.05.05.1.05v.05q.05.1.2.15.25.05.45.05h.2q.1 0 .2-.1t.05-.15v-.05q-.15-.05-.2-.05h-.15m.1.5q-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.049.049 0 .05h-.05v-.05q.05 0 .05-.05l-.05-.05h-.15q-.1-.05-.25-.05t-.2.05q-.1 0-.1.05t.2.1h.25q-.053.002-.15.05-.1.05-.1.15.05 0 .05.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.05.1.05.2.05.15 0 .25-.05.05 0 .15-.05.05.05.2.05h.1q.1.05.2.05h.1q.1 0 .15-.05.15 0 .15-.05-.097-.048-.15-.05h.2q.05.05.2.05.05-.05.1-.05.2 0 .2-.05.1 0 .1-.05-.05-.05-.2-.1h-.3q-.1.05-.15.05h-.1q0-.05-.15-.05v-.05q.05 0 .05-.05m.6.65h-.1q-.2-.05-.3-.05-.15 0-.2.05h-.05l-.05.05q.05.05.15.1h.5q.1-.1.05-.15"/><path fill="#CCC" d="M666.95 286.75q-.05-.05-.35-.05-.05-.05-.1-.05h-.05q-.1-.05-.15-.05h-.25q-.05 0-.15.05h-.15v-.05q-.05-.05-.15-.05h-.15q-.05-.05-.1-.05-.15 0-.25.05l-.05.05v.05q-.15 0-.2.05-.05 0-.05.05t.1.1h.5q.05-.05.05-.1h.15q.044-.044.1-.05-.05.006-.05.05-.05 0 0 .05v.05h-.25q-.11.003-.3.05-.1.05-.1.1.05.15.2.2.25.05.45.05.25 0 .35-.05.1-.05.05-.2h.4v.1h.3l.05.05q.1 0 .25-.05h.1q.05.05.2.1.1.05.2.05h.2q-.048.002 0 .05 0 .05.25.1.05.05.15.05h.4q.1 0 .15-.05h.1v.05q-.15 0-.15.05l.15.05h.05q.1.05.25.05h.05q.048.048.1.05h-.1q-.15 0-.25.05-.05 0 0 .05 0 .05.05.15h.5q.1-.1.1-.15-.05 0-.1-.05h.35l.05-.05q.05 0 0-.05 0-.05-.1-.05-.05 0-.15-.05h.1l.1-.05q-.05-.05-.2-.1-.1-.05-.2-.05h-.55q-.05-.05-.15-.1.2 0 .3-.05.25-.05.2-.2 0-.05-.3-.15-.2-.05-.5-.05v-.05q0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05t.15.1h.1q-.15.1-.15.15 0 .048.05.05h-.1q-.1-.05-.3-.05h-.1l-.15-.05h-.05q-.1-.05-.25-.05l.05-.05v-.05m1.1.4h-.1v-.05q.048.048.1.05m-.3.55h-.15q.083-.002.15-.025v.025"/><path fill="#CCC" d="M666.85 287.65h-.2q-.05.05-.05.1l.2.05q.1.1.25.1.1 0 .2-.1 0-.05.1-.05v-.05h.15q0 .05-.05.05v.15l.1.05h.1q.048.048.15.05-.102.002-.15.05h-.1l-.05-.05h-.05q-.1.05-.2.05h-.15q0-.1-.25-.15h-.1q-.2-.1-.4-.1h-.25q-.15-.05-.35-.05-.25 0-.4.05-.05 0-.05.1h-.1q.1-.1 0-.15 0-.05-.2-.1.05-.05.05-.1-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15.1-.1.1v.05h-.3l-.25-.05q-.05-.05-.2-.05-.2 0-.3.05-.1.05-.1.1t.2.05q.1.05.3.05h.2q.05.15.3.2.25.05.55 0h.1v.05h.1q.15.05.3.05t.2-.05h.05q.2.05.35.05l.2.1q.2.05.35.05h.5q.05-.05.1-.05h.1q.15.05.35.05.15-.05.15-.1h.2q.05.05.1.05l.15.05h.55q.05-.05 0-.1v-.05h-.1q-.1-.05-.2-.05h-.15V288h.15q.05 0 .05-.05.15-.05.1-.15 0-.05-.05-.05 0-.05-.05-.1h-.5l.05-.05q.2-.05.15-.1 0-.1-.25-.15-.2-.05-.5-.05-.2.05-.45.1-.15.05-.15.15l.2.1m.9.05h-.15q.083-.002.15-.025v.025m-3.6-2.6q0-.05-.15-.1-.1-.05-.25-.05t-.2.05q-.1.05-.1.1l.15.05q.1.05.3.05.1 0 .15-.05l.1-.05m-.6.6q.05.05.1.05.2.05.35.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.6q-.05 0-.05-.05h-.15q-.05-.05-.15-.05-.25-.1-.5-.1h-.1l.05-.05q.25-.05.15-.1 0-.1-.3-.15-.15-.05-.4-.05-.3 0-.5.05-.1.05-.1.15.05.05.25.1.25.15.45.15-.1.1-.1.15.05.1.25.15h.05q.099.049.35.05-.102.002-.15.05l-.15.05q0 .05.2.1-.15.05-.2.05h-.05q-.1.1-.1.2h.05v.05h-.05q-.2-.05-.25-.05-.2 0-.2.05-.1 0-.1.05l-.1-.05h-.05q-.05-.05-.25-.05h-.15v-.15h-.2q-.05-.05-.25-.05l-.2.1v.1q0 .05.1.05l.05.05h-.05q-.05 0-.05.05-.15 0-.05.05v.05q.05.05.2.1.1.05.15.05.05.05.1 0 .15.05.25.05.2 0 .3-.05.05 0 .05-.05.05 0 .15-.05.05 0 .1-.05.05 0 .05-.05h.5q.05-.05 0-.1.05 0 .2.05.1.05.3.05l-.1.05q0 .05.15.1t.3.05q.1 0 .15-.05l.1-.05h.05q.15 0 .25-.1.05 0 .05-.05t-.2-.1l-.05.05q.05-.1 0-.2 0-.05-.1-.05-.15 0-.2-.05h-.05q-.05 0-.2-.05h.05q.1-.05.1-.1l-.15-.05q-.141-.047-.25-.05h.45q.1 0 .25-.1m.5.75q-.05.05-.05.1.05 0 .15.05h.15v.05h.5q.1-.05.1-.1v-.05q0-.05-.15-.05-.15-.05-.25-.05t-.2.05h-.25m-.5.35q0-.05-.25-.1h-.55q-.05.05-.05.1l.05.05h-.55q-.1.05-.1.1l.15.15q.2.05.4.05.15 0 .2-.05.15-.1.1-.15v-.05h.45q.15-.05.15-.1"/><path fill="#CCC" d="M663.75 287h-.2q-.15.1-.1.15l.1.05h-.3q-.15.05-.1.1 0 .05.15.1h.35q0 .05.05.05.2.05.3.05.2 0 .25-.1h.45q.1-.05.05-.1 0-.05-.15-.05-.1-.05-.3-.05h-.1q-.197.049-.3.05.053-.002.15-.05.15-.05.15-.1-.05-.1-.2-.1h-.25m1.9 1.4q0-.05-.15-.1h-.5q-.1.05-.1.1l.1.05h-.1l-.1.05q0 .05.2.1.1.1.2.1.15 0 .25-.1.05-.05.05-.1h-.05q.15-.05.2-.05.05 0 .1.05-.1 0-.25.05v.05q-.1.1-.05.15 0 .049.05.05h-.05q-.15-.05-.35-.05-.25.05-.35.1h-.05q-.1 0-.1.05v.1q-.1-.05-.15-.05h-.15q.102-.002.15-.05v-.05q0-.05-.15-.1h-.05q.05-.001.05-.05.1 0 0-.1 0-.05-.15-.1v-.05q0-.05-.2-.1h-.2q.103-.003.15-.05.1 0 .05-.05h.05q.15.05.3.05t.2-.05q.05 0 .05-.05t-.1-.1h-.5q-.05.05-.05.1l-.05-.05h-.5l-.1.1q.05.05.15.05.141.047.25.05h-.3q.05.05 0 .05-.1 0-.25.05-.1.05-.1.15.05.1.1.15-.1-.05-.3-.05h-.05q-.2.05-.25.05-.05.05-.05.1t.2.1h.4q0 .05.05.05h.15q.1.05.15.05.05 0 .15-.05.15.05.35.05h.15q0 .05.15.1h.5q0-.05.05-.05v-.05h.05q.05 0 .1.05.1 0 .2-.05h.35q.05-.05.15-.05.05-.05.05-.1v-.05l.05.05q.25.05.5.05.3 0 .45-.05.1-.05.15-.05h.1q.15.05.3.05v.05q.05.05.15.05l-.1.05q-.05 0 0 .05 0 .05.1.05.1.05.2.05.2 0 .25-.05.15-.05.15-.1-.1-.05-.15 0l.05-.1q.1 0 0-.05 0-.05-.05-.05h-.1q.05-.1.05-.15-.05-.1-.25-.1-.1-.05-.3-.05l.05-.05q0-.05-.15-.05l-.05-.05h-.2q-.1 0-.25.05-.05 0-.05.05l-.05-.05h-.15q0-.05-.1-.1h-.5q-.05 0-.1.05m.95.2v-.05l.15.05v.1q-.1-.1-.15-.1"/><path fill="#CCC" d="M665.15 289.15h-.05q-.2.05-.35.1v.05q-.15 0-.15.05.1.05.25.15.048.048.15.05h-.3q-.099-.05-.15-.05.05-.001.05-.1-.05-.05-.15-.1h-.55q-.15.05-.05.1l.05.1q-.15 0-.05.05v.05q0 .05.1.05.1.05.3.05h.2q.05 0 .1-.05.05.05.2.05.05.05.15.05h.1q.1 0 .2-.05.1 0 0-.05 0-.05-.05-.1.05 0 .15-.05h.2q.1 0 .15-.1.1 0 .1-.05-.05 0-.05-.05t-.2-.1q-.15-.05-.35-.05m-1.8.1v-.05q0-.05-.1-.05l-.1-.05H663q-.2 0-.25.05-.05 0-.05.05t.15.05q.1.05.25.05t.25-.05m.55.7q.1 0 .15-.05h.1q.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05h-.3q-.3 0-.45.05h-.65q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05l-.05.05q0 .05.1.1.2.05.3.05h.05l.1.05q.1.05.3.05h.1q.1 0 .25-.05h.1q.05.05.2.05.15.05.35.1h-.05q-.05 0-.15.05l.2.1h.5q.05-.05.05-.1t-.15-.05h-.1q.1-.05.25-.1"/><path fill="#CCC" d="M663.35 289.6q.1 0 .2-.05l.1-.05q0-.1-.2-.15-.1-.05-.2-.05-.15 0-.25.05h-.15q-.1-.05-.3-.05-.15 0-.3.1-.1 0-.05.15 0 .05.2.05h.3q.15 0 .3-.05h.05q.2.05.3.05m.05.9q0-.049-.05-.05.05-.001.05-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.1-.25-.1-.1 0-.25.1-.1 0-.05.05 0 .05.05.05-.05.001-.1.1-.05 0-.05.05t.15.05h.25q.15 0 .25-.05.05 0 .05-.05m.25.3q-.05-.05-.25-.1-.25-.05-.55 0h-.4q-.05-.05-.1-.05h-.45q-.2 0-.4.05-.15.05-.15.15.05.05.25.1.1.05.25.05h.7q.25.1.5.1.1-.1.3-.1h.05q0 .1.15.1.1.05.2.05.2 0 .25-.05h.15q.1 0 .15-.1.1 0 .15-.05-.05-.05-.2-.1h-.5v.05q-.05-.05-.1-.05v-.05m.3-.65q-.05 0-.05.05-.15.1-.05.15 0 .1.2.15.2.05.45.05.05 0 .1.05h.425q-.184.005-.275.05-.05 0-.15.05h-.05q-.1.1-.05.15 0 .05.1.1h.15q.25.15.55.15.2 0 .35-.15.15 0 .15-.05l.1-.05q-.15.1-.1.25 0 .05.25.05l.05.05h-.05q0 .05.2.1h.5q0-.05.05-.1.1 0 .25-.05.1 0 .1-.05v-.1q-.05-.1-.3-.15-.05-.05-.2-.05.1-.05 0-.05v-.05h.1q.2.05.5.05.25 0 .4-.05.2-.05.15-.15h.05q.15-.05.2-.05.05-.05.1-.05h.3q.15-.1.2-.1.2-.05.15-.2 0-.05-.35-.15h-.65q-.15-.05-.3-.05t-.25.05q-.1 0-.1.05t.1.05q-.1.05-.2.05h-.3q-.15 0-.25.05h-.6q-.1.1-.1.15 0 .05.15.05h.05q0 .05.05.05h.3q.1 0 .2-.05v-.05q.048.048.1.05h-.05q-.25.05-.15.15 0 .048.05.05h-.7q-.05 0-.05.05l-.1.1q-.05-.05-.15-.05-.048-.048-.1-.05h.3q0-.05.05-.1v-.05q-.05-.05-.1 0-.15-.05-.3-.05t-.2.05l-.05-.05q.05-.05.05-.1l-.15-.15h-.1q0-.05-.05-.05-.25-.05-.45-.05h-.2q-.2.05-.25.05"/><path fill="#CCC" d="M665.7 289.95q-.1-.05-.25-.05-.1.05-.25.1-.05 0-.05.05t.15.1q.15 0 .3-.05h.15q.15-.05.15-.1-.1 0-.2-.05m-.95-.05q-.2 0-.2.05-.1 0-.1.05l.05.05q.05 0 .1.05h.5l.05-.05-.05-.05q0-.05-.05-.05-.2-.05-.3-.05m2.95-1.6h-.05q-.15.05-.2.1-.05 0 0 .05v.05h.3q.2 0 .25-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.25-.05m-.45.9q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.4.05t.3-.05q.2-.05.1-.1m.8-.45q-.05.05-.05.1t.15.1q.15.05.3.05h.55q.3 0 .5-.05.1-.05.1-.15-.05-.05-.3-.1v-.1q-.15-.05-.45-.05-.25 0-.5.05 0 .1-.05.15h-.25m-1.4.8q-.05-.05-.2-.05-.15 0-.25.05t0 .05v.05h-.25q-.15.05-.15.1.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.2q.1-.05.1-.1-.05 0-.2-.05m.3.15h-.2q-.1.05-.1.1t.15.05q.1.05.3.05.1 0 .15-.05.1 0 .1-.05t-.15-.1h-.25m1-.3h-.3q-.2 0-.3.1-.15.05-.15.1.05.1.2.1.25.05.4.05h.35q-.1.05-.1.1.05.1.3.1.25.05.5.05h.15q.2 0 .3-.05.1 0 .1-.05.05-.05 0-.1 0-.05-.2-.15-.05 0-.2-.05-.15-.05-.35-.05-.2 0-.25.05-.05 0-.05.05h-.1q.05-.05 0-.1 0-.05-.1-.05.1-.1.15-.1h.25q.05-.05.05-.1-.05 0-.15-.05-.1-.05-.3-.05-.1 0-.2.1l-.1.05.1.05m0 1.15q-.1.05 0 .1 0 .05.05.05.25.05.4.05.2 0 .25-.1.15 0 .15-.05l-.2-.1-.05.05q-.15-.05-.25-.05-.2 0-.35.05m-5.75-4.85q0-.05-.15-.1-.2-.05-.45-.05-.2 0-.35.05h.05q-.2.05-.2.1l.2.1q-.05.05 0 .05 0 .05.1.1h.5l.05-.05q.15-.05.2-.05l.05-.05h.05q0-.05-.05-.1m-1 .2q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.1-.05 0-.05.05t.2.05h.25q.1 0 .2-.05.1 0 .1-.05m-.1 1.4q0-.05-.1-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.1.05.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .05-.05"/><path fill="#CCC" d="M660.8 287.5q0 .05.15.05 0 .05.05.05h.3q.05 0 .05.05-.1 0-.15.05h-.1q-.05 0-.05.05.05.05.2.15h.35q.05-.1.1-.1.097 0 .15-.05l-.05-.05q0-.047-.1-.05h.2q.3 0 .45-.05.05-.05.15-.05-.05-.05-.05-.1-.05-.1-.25-.15-.25-.05-.55-.05-.25 0-.4.1-.05.05-.15.05-.15 0-.15.05-.15 0-.15.05"/><path fill="#CCC" d="M661.9 287.7h-.05v.05l-.05.05h.05q0 .1.1.1.15.05.25.05.15 0 .25-.05l.05-.1q0-.05-.15-.1h-.45m-2.05-2.35q.15-.05.15-.1l-.2-.1q-.25-.05-.45-.05-.05 0-.1.05v-.05q0-.05-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05h.1q-.048.002 0 .05 0 .05.15.1.15.1.35.1.2 0 .3-.1m-.25-.3q.2 0 .25-.05.15-.05.15-.1l-.2-.1h-.6q-.2.05-.15.1 0 .05.2.1t.35.05m.05.7q0-.05-.1-.1h-.65q-.05.05-.05.1l.1.1q.2.05.35.05.2 0 .3-.05.15-.05.05-.1m.25.25q-.1 0-.05.05 0 .05.15.05.1.05.15.05h.15q.1 0 .15-.05.05 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05m-.6.55q-.3 0-.4.05-.2.05-.15.15.1.05.25.1.2.05.3.1h-.05q0 .05.2.15h.1q-.05.002-.05.05-.15 0-.05.05 0 .1.1.1.2.05.35.05.25 0 .25-.05.2 0 .2-.1-.05-.05-.25-.05-.05-.05-.2-.05.1-.1.1-.15l-.1-.05v-.05h.1q.1.05.2.05.15 0 .25-.05.15 0 .15-.05l-.2-.1h-.3q-.094-.047-.2-.05h.15q.25 0 .35-.05.1-.05.05-.1 0-.05-.15-.1t-.4-.05q-.15 0-.3.05-.05.05-.05.1 0 .047.1.05h-.35m.35 2.05q-.1 0-.1.1.05.05.2.1.05.05.15.1.15.05.3.05.2 0 .3-.05h.15q.1.05.25.05.1 0 .2-.05t0-.1l-.05-.05q0-.048-.05-.05h.35q.15-.1.15-.15-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05h-.85q-.15 0-.25.05"/><path fill="#CCC" d="M659.5 288.95q-.05 0-.05.05t.1.05q.2.05.25.05h.05q.15 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05m1.1.15h-.25q-.15.05-.15.1.1 0 .15.05-.15.05-.05.1l.15.15q.15.05.3.05.2 0 .3-.05l.05-.1h.2q.2 0 .3-.05.05-.05.05-.1t-.15-.1q-.15-.05-.3-.05-.2 0-.3.05l-.1-.05h-.2m-.6 1.6h-.15q-.2 0-.35.05v.1q0 .05.1.05.05.05.15.05.15.05.35.05.2-.05.3-.1l.05.05h.15q-.1.003-.1.05-.1 0-.1.1 0 .05.1.05-.051.001-.1.05-.1.05-.1.1.05.05.15 0 .05.05.25.05.1 0 .25-.05.05 0 0-.05v-.05q.05 0 .1-.05.15 0 .05-.05 0-.1-.1-.1-.047-.047-.15-.05h.2q.15-.05.15-.1-.098-.049-.15-.05.052-.001.15-.05.1 0 .05-.05 0-.1-.2-.1-.1-.05-.3-.05-.15 0-.3.05h-.05v.1q.048 0 .1.05-.054-.05-.2-.05-.15-.05-.3 0m.6-.5q-.15.1-.15.15.05.05.2.05.1.05.3.05.1 0 .25-.05.15 0 .1-.05 0-.05-.2-.15-.15-.05-.3-.05t-.2.05m2.15-2.1h.25q.1-.05.05-.1l-.1-.05q-.1-.05-.25-.05h-.05q-.1 0-.2.05l-.05.05q.05 0 .05.05l.05.05h.25m-1.25.25q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.1.05.2.05.1.05.25.05.1 0 .25-.05m-.1 1.6v.05q-.1 0-.1.05l.05.05q0 .05.15.1.15.1.35.1.2 0 .2-.1.15-.05.15-.1l-.1-.05q0-.05-.2-.1h-.5m.4.6h.05q.2.05.35.05.25 0 .25-.05h.05q.15 0 .15-.05-.1-.05-.25-.1t-.35-.05q-.2 0-.25.05-.15.05-.1.1l.1.05m.7.9q-.3 0-.4.05-.2.1-.15.15.1.1.25.15.25.05.55.05h.05q-.05.1-.05.15.05.05.1.05.15.05.25.05h.05q-.049.001 0 .05 0 .05.1.1h.3q.15 0 .15-.05.15-.05.15-.1-.1-.05-.2-.05h-.25q.048-.002 0-.05v-.05q.05 0 .15-.1 0 .1.2.15.2.05.5.05.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.15-.25-.05-.5-.05h-.3v-.05l-.15-.05q-.05-.05-.25-.05-.05.05-.2.1-.05-.05-.15-.1-.25-.05-.5-.05m-.55.5q.15-.1.1-.15 0-.05-.2-.1t-.35-.05q-.2 0-.3.05-.1.05-.1.1.1.05.2.15.1.05.3.05.2 0 .35-.05m.25.4q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05h-.1q-.2 0-.3.05-.15.05-.05.1 0 .05.15.05.15.05.3.05.2 0 .3-.05.1 0 .1-.05l-.2-.1h.05q.15 0 .25-.05l.05-.05m-1.1-.9h-.45v.1q0 .05.1.05.15.05.25.05.2 0 .25-.05.05 0 .05-.05t-.2-.1m-1.35.55h-.55q-.15.05-.05.1 0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05-.05-.15-.1m7.9-.7q.094.047.2.05h-.45q-.05.05-.05.1v.05h-.1q-.1.05-.1.1l.1.05h-.05q-.05 0-.05.05l.1.1q.2.05.3.05.2 0 .25-.05h.05q.15.05.25.05.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.45q.094-.003 0-.05.2 0 .3-.05.15-.05.1-.1 0-.05-.2-.1h-.1q.102-.002.15-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.05m-1.65.5q.2 0 .25-.05.1-.05.1-.1-.05-.1-.15-.05-.2-.05-.4-.05-.15 0-.2.05-.15 0-.1.1 0 .05.15.05.15.05.35.05m.3 1.85h-.6q-.1.05-.05.1 0 .05.1.1.2.05.35.05.2 0 .25-.05.15-.05.15-.1-.05-.05-.2-.1m1.7-.25q-.15.05-.15.15.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05q0-.1-.15-.15H668m-2.85-1.9h.25q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05h-.05l.05-.05q.15 0 .25-.05.1 0 .05-.05 0-.05-.1-.05-.15-.05-.25-.05t-.25.05h-.5q-.1.05-.05.1 0 .05.2.1.1 0 .25.05-.15 0-.05.05 0 .05.1.05.1.05.25.05.1 0 .25-.05h.15m13.5-8.25q-.15 0-.25.05l-.1.05.05.05h-.3q-.1.05-.1.1.05.05.15.05.1.05.25.05t.25-.05q.05 0 0-.05h.1q.15 0 .25-.05.15-.05.05-.1l-.1-.05q-.1-.05-.25-.05m.15 1.15q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.15-.05-.25-.05-.2 0-.3.05l-.05.05m-.4-.4q.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.5q-.1.1-.1.15.05 0 .2.05.1.05.2.05m1.15-.25q-.05.15 0 .2 0 .05.15 0 .1.05.3.05.1 0 .25-.05.05 0 .05-.05-.05-.05-.2-.15h-.55m1.35-.3h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3m-.6 0q.05 0 .1-.05.15 0 .15-.05l-.2-.1h-.1q-.1-.05-.15-.1h-.45q-.15.05-.1.1 0 .05.15.05.05.05 0 .05-.15 0-.15.05l.2.1h.5l.05-.05m-.15 1.1q-.1-.05-.3 0-.15 0-.3.1-.05 0-.05.05 0 .1.2.1.1.05.3.05.15-.05.25-.05h.05q.1.05.25.05t.2-.05l.1-.05q0-.05-.15-.1h-.35q-.1-.1-.2-.1m3.25-1.8q-.05 0-.05.05t.2.1h.5v-.1q0-.05-.15-.05-.1-.05-.25-.05t-.25.05m-1.65.1l-.2-.1q-.05-.05-.25-.05-.1 0-.25.05-.05.05 0 .1l.1.05q.15.05.3.05t.15-.05l.15-.05m-.15.75h.5q.05-.05.05-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.15.1m-.1.1q-.15 0-.25.05-.1.1-.05.15l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05-.15-.15q-.15-.05-.25-.05m-.2.75q-.1 0-.25.05-.1 0-.1.05.05.1.2.1.1.05.2.05h.4q.1 0 .25-.05h.15q.05.05.25.05.1 0 .25-.05.05 0 0-.1 0-.05-.05-.05-.15-.05-.25-.05-.2 0-.25.05h-.05q-.05 0-.15-.05h-.6m1.95-1.2q.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.55m.1 1.05q-.05 0-.05.05t.2.05.2.05q.15 0 .25-.05.1 0 .1-.05t-.2-.05q-.15-.05-.25-.05t-.25.05m2.05-2.2q.15.05.3.05.25 0 .3-.05.2 0 .15-.05 0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05m0 .85q0 .1.15.1.1.05.2.05.15 0 .25-.05.15 0 .15-.1l-.2-.1h-.5q-.1.05-.05.1m-1.5-.7q-.1 0-.2.05-.1 0-.1.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.15-.05-.3-.05m.65.8q-.15-.1-.35-.1-.1 0-.25.1l-.05.05q0 .05.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05v-.1l-.15-.05m-.9.45q-.1 0-.15.05-.1 0-.1.05.1.05.15.05.1.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.15-.05-.1-.05-.3-.05m.2 1.05q-.2-.05-.3-.05h-.05q-.15 0-.15.05-.1 0-.1.1.05.05.15.1h-.3l-.05.05q-.1 0-.25.1-.05 0-.05.05.05.05.15.1.1-.05.2-.05 0 .05.1.05h1q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.098 0-.1.05v-.05q0-.05-.2-.1h.3q.05-.05 0-.1 0-.1-.05-.1m1.55-.3q0-.05-.1-.1h-.5q-.1.05-.1.1t.15.05q.15.05.25.05.15 0 .25-.05.05 0 .05-.05m2.4-1.95q0 .05.15.1h.5q.1-.05.1-.1-.05-.05-.2-.05-.1-.1-.25-.1-.1 0-.2.1-.15 0-.1.05m-1.5 1.9q-.1 0-.05.05 0 .1.2.1.1.05.35.05.2 0 .25-.05.1 0 .1-.1-.05-.05-.25-.05-.05-.05-.2-.05-.25 0-.4.05m.85.3q-.1 0-.25.05-.05.1 0 .1 0 .05.1.1h.05q-.05.05-.05.1.05.05.2.1.2.05.4.05t.4-.05q.05-.05.05-.1h.3q.2.05.4 0 .1 0 .15-.05.15 0 .15-.05l-.2-.1q-.1-.1-.25-.1-.15.1-.3.15-.05-.05-.2-.05-.1 0-.2.05h-.3v-.05q-.1 0-.2-.1-.05-.05-.25-.05m-18.35-.25q-.1.05 0 .05 0 .05.05.1h.4l.05.05q.15.05.25.05h.2q-.048.002 0 .05 0 .1.1.1.05.05.25.05.1 0 .25-.05.05 0 .05-.1l-.1-.1h-.5l.05-.05q0-.05-.1-.1-.15-.05-.3-.05l-.05.05q-.1-.05-.15-.05-.05-.05-.25-.05-.1 0-.2.05m1.25-.15h-.15q-.05.05 0 .1l.1.05q.1.05.2.05.2 0 .25-.05l.15-.05-.2-.1h-.05q.052-.002.1-.05.05 0 .05-.05t-.15-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05t.2.05q0 .048.05.05m2.9.35q.1 0 .1-.05-.05-.05-.2-.1h-.45q-.15.05-.05.1 0 .05.1.05.2.05.3.05.1 0 .2-.05m1.3-.25q0 .05.15.1t.35.05q.25 0 .25-.05.15-.05.15-.1-.05-.05-.25-.1h-.6q-.1.05-.05.1m-.35.3h-.5q-.05.05-.05.15.05 0 .15.05.1.05.2.05.2 0 .25-.05l.05-.05q0-.1-.1-.15m.4-.8q-.1.05-.05.15l.15.05h.1q0 .05.1.05.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.15h-.15q-.05 0-.1-.05h-.5m1.35.25q-.1.05-.1.1.05.05.15.05.047.047.15.05h-.15q-.05.05 0 .1 0 .05.15.05.15.05.35.05.15 0 .3-.05.05 0 .05-.05-.05-.05-.2-.1-.05 0-.15-.05h.05q.1 0 .05-.05 0-.05-.1-.1-.2-.05-.35-.05-.15 0-.2.05m1.6-1q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .2.1.1.05.2.05.15 0 .25-.05l.05-.1m-.45.6q.05-.001.05-.05-.05-.05-.2-.1-.1.05-.3.05h-.3q-.1.05-.05.1 0 .05.15.1.149.05.35.05-.05.002-.05.05.05.1.15.15.15 0 .35-.05h.3q.15-.1.1-.15 0-.05-.2-.1-.1-.05-.3-.05h-.05"/><path fill="#CCC" d="M676.65 284.15q-.05 0 0 .05 0 .05.1.1-.1 0-.15.05-.1 0-.1.05.05.05.15.1h.25q.15 0 .25-.05t.05-.1q0-.05-.1-.05h-.3q.107-.002.25-.05h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1.05-.25.1m.85.35q-.1 0-.25.05l-.05.1q0 .05.15.1h.45q.1-.05.15-.05.05.05.15.05.15 0 .25-.05l.05-.05q0-.1-.1-.15h-.5q-.05 0-.05.05-.1-.05-.25-.05m.3-.05h.5q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1m.25.7q0 .05.15.1h.45l.05-.05q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m-.65.45q-.05 0-.05.05v.05q.05.05.15.05.15.05.25 0 .2 0 .3-.05.15 0 .05-.05 0-.05-.1-.1h-.1q-.15-.05-.25-.05-.15.05-.25.1m-.05.15l-.2-.1h-.5q-.05.05 0 .1 0 .05.1.05.15.05.3.05t.15-.05.15-.05m.3.4h-.45l-.05.1v.05l.1.05q.2.05.35.05.1 0 .15-.05v.05h.5q.1 0 .25-.05.05 0 0-.05v-.05q-.1-.1-.2-.15h-.05q.052-.002.1-.05.05 0 0-.05 0-.05-.05-.05l-.05-.05h-.05q0-.05-.15-.05-.05-.05-.25-.05l-.2.1q-.15 0-.15.05.05.05.2.1h.05q.05.05.1.05-.05.05-.15.05m-1.15-.95q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05l.05-.05q0-.049-.05-.05.052-.001.15-.05.15 0 .1-.05 0-.05-.2-.1h-.5q-.05.05-.05.1l.15.05h-.2q-.1.05-.1.1.05.05.15.05.048.048.15.05-.097.002 0 .05 0 .05.05.1h.6m-.6.6q-.05.05-.05.1h-.1q0-.05-.15-.1h-.5q-.05.05-.05.1l.1.05q.2.05.3.05 0 .05.15.1h.55v-.1q.05.05.15.05.2 0 .3-.05.05-.05.05-.1t-.15-.1h-.6m.15-.3q.1 0 .1-.05 0-.1-.15-.15h-.45q-.15.05-.15.15 0 .05.2.05.1.05.25.05.1 0 .2-.05m1.05.95q-.15-.05-.25-.05t-.25.05q-.1 0-.05.05 0 .05.05.05 0 .05.2.05.1.05.25.05.1 0 .2-.05.1 0 .1-.05t-.1-.05q-.05-.05-.15-.05m-.45-.05v-.1q0-.05-.1-.05-.1-.1-.3-.1-.1 0-.25.1-.05 0-.05.05t.2.1h.5"/><path fill="#CCC" d="M676.5 286.8q.15 0 .25-.05l.05-.05q0-.05-.15-.1h-.45q-.05.05-.05.1h-.1q-.15 0-.2.05l-.15.05q.05.05.2.1h.05q-.052.002-.1.05-.1-.05-.15-.05-.05-.05-.25-.05l-.2.1-.1-.05H675q.1-.05.1-.1t-.2-.05-.2-.05h-.1q.15-.05.1-.1h.2l.15.05h.1q-.05.05-.05.1.05 0 .15.05h.2q.2 0 .25-.05l.05-.05q0-.05-.1-.1h-.1q.05-.05.05-.1-.05-.05-.15-.05-.1-.05-.2-.05-.15.05-.2.05l-.05-.05h-.5q-.1.05-.1.1v.05q-.1-.05-.15-.05-.1 0-.15.05v.05h-.5q-.05.05-.05.15.05.05.15.1.25.05.5.05h.1q0 .05.15.05.05.05.1.05.049.098.15.1h.05q.05 0 .05.05-.048-.048-.1-.05-.151.001-.25.05-.05 0 0 .05h-.05q-.1 0-.1-.05h-.5v.05q-.002-.05-.1-.05-.1-.05-.2-.05l-.1.05h-.15q-.049.049 0 .05h-.05q-.1 0-.15-.05h-.35q.05-.001.05-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.15.05-.25.05h-.3q-.1.05-.2.05l-.05.1q0 .05.15.1.05.05.2.05.1 0 .15-.05h.05q0 .049.05.05-.1 0-.1.05.05.05.15.1.15 0 .3-.05h.35q.05-.05.1-.05.2.05.3.05.1 0 .2-.05h.1q.05.05.2.05l.05.05h.55q.1-.05.15-.05.05 0 .15-.05h.15q.1.05.25.05t.25-.1v-.05q0-.048-.1-.05.102-.002.15-.05 0 .05.15.05h.45q.05-.05.05-.15l-.15-.05q.1 0 .25-.05h.05q.05-.05 0-.1m.25.1h-.1v.05l-.05.05q-.1 0-.1.1 0 .05.1.05h.05q.15.05.25.05.15 0 .25-.05h.35q.1-.05.1-.15v-.05q-.1-.05-.2-.05-.15-.05-.3-.05-.2 0-.35.05m-.85.55q.1.05.3.05.1 0 .15-.05.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05m.9.25h-.45q-.1 0-.15.05-.15 0-.15.05l.1.1v.05q-.1 0-.1.05.1 0 .2.05t.25.05q.1 0 .25-.05l.05-.05v-.05h.35q.05-.05 0-.15 0-.05-.05-.05-.2-.05-.3-.05m1.55-1.25q-.1 0-.25.05-.1.05-.1.1.05.05.2 0 .1.05.2.05h.8q.1-.05.1-.1h-.05q-.05-.05-.1-.05-.15-.05-.3-.05t-.25.05q-.1-.05-.25-.05"/><path fill="#CCC" d="M679.2 286.7v.05h.1q.15.05.35.05.1 0 .15-.05.05 0 .05-.05-.05-.05-.1-.05-.1-.05-.2-.05h-.05q-.2 0-.25.05h-.05q-.048.002 0 .05m-1.25.1q0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05"/><path fill="#CCC" d="M678.05 286.85q-.1 0-.25.05l-.05.05q0 .05.15.15.1.05.2.05.15 0 .25-.15.15-.05.15-.1-.1 0-.2-.05h-.25m-.65.85h-.05v.05q0 .05.05.15h.55l-.05.05q-.15 0-.15.05.05 0 .05.05-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05.05.05.2.05.1.05.25.05h.15v.05q.15 0 .2.05h.05q-.052.002-.1.05h-.15q-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1-.094-.047-.2-.05h.45q.048-.048 0-.05h.3q.05-.05.1-.05l.05-.05h.1v.05h.1l.05.05h.05q.1.05.25.05.2 0 .3-.05.1-.05 0-.1 0-.05-.05-.05-.15-.05-.3-.05h-.2q-.1 0-.15.05-.15-.05-.2-.05 0-.05-.05-.05-.1 0-.2.05-.1 0-.2.05h-.2q.052-.002.1-.05.1 0 0-.05 0-.05-.05-.05-.1-.05-.25-.05h-.05l.05-.1q.2 0 .25-.05h.2l.05.05q.2-.05.3-.05h.25q.05.05.1.15h.5q.1-.1.05-.15 0-.05-.1-.05-.15-.05-.3-.05h-.15q0-.05-.1-.1h-.45q0-.05-.05-.05-.1 0-.25.05h-.2q-.1 0-.1.05h-.05q0-.05-.05-.05h-.1q.105-.002.2-.05.1-.05.1-.1l-.2-.05q-.1-.05-.25-.05-.1 0-.25.05l-.05.05q0 .05.2.1-.1 0-.15.05l-.05.05v.05h.05q-.052.002-.1.05"/><path fill="#CCC" d="M679.2 288.4l-.1-.05q-.1-.05-.25 0h-.05q-.15 0-.2.05-.05 0-.05.05h-.05q.05.05.15.1h.25q.1-.05.25-.05.1-.05.05-.1m-4.2-3.45q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.1-.05 0 0 .05 0 .05.1.1.1-.05.2-.05h.25q.15-.05.15-.1m-.1.55q-.1 0-.2.05-.15.05-.15.1.05 0 .15.05l.1.05q.05-.05.25-.05h.25q.05-.05.05-.1-.05 0-.05-.05l-.15-.05h-.25m-.45-.15q-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.1 0 .05.1.05.15.05.3.05t.2-.05q.05 0 .05-.05-.05-.1-.1-.1m-.8.3q.15-.05.15-.1l-.2-.05q-.1-.05-.3-.05-.1 0-.25.05l-.05.05q0 .05.1.1.2.05.3.05.2 0 .25-.05m.15.25q-.1-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05h-.4q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05h.45q.1-.05.1-.1"/><path fill="#CCC" d="M673.9 286.15q-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .1.1.1.15.05.3.05h.05q0 .05.15.1t.3.05q.15 0 .25-.05.05-.05.05-.1-.05 0-.15-.05-.1-.1-.3-.1h-.1m0 1.3h-.3q-.05.05-.1.05-.2 0-.3.05-.15.05-.1.1 0 .1.2.1.2.05.35.05.25 0 .45-.05.05-.002.05-.05l.1-.05q.15-.05.15-.1l-.2-.1h-.3"/><path fill="#CCC" d="M674.75 287.95q.05 0 .05-.05 0-.1-.2-.15h-.5q-.1.05-.1.15 0 .05.2.05.1.05.25.05t.3-.05m.65.1l-.05.05q-.05 0-.05.05-.05.05-.05.1-.1.05-.15.05l-.05.05q0 .05.2.1h.45q.05-.05.05-.1h-.05q.148-.049.2-.05-.049-.001 0-.05v-.05h.1q.05-.05 0-.1.15 0 .15-.05-.1-.05-.2-.05h-.25q-.1 0-.25.05h-.05m-.25.45h-.45q-.1.05-.1.1 0 .1.2.1l.05.05h.05q.15.05.35.05.1 0 .2-.05.15 0 .1-.05 0-.1-.15-.15h-.15l-.1-.05"/><path fill="#CCC" d="M674.85 289.25l-.05-.05h-.25l-.05-.05q-.2 0-.2.05-.05 0-.05.05-.05-.05-.1-.05-.146-.048-.25-.05.105-.002.25-.05h.05q.05-.05.05-.1-.048-.048-.15-.05.153-.001.3-.05.1-.05.05-.1l.05-.05q.05 0 0-.05 0-.1-.05-.1-.15-.05-.2-.05H674v-.05l-.1-.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05-.05.05 0 .05v.05q-.001-.05-.05-.05-.1-.05-.2-.05 0-.05-.05-.05h-.05q-.25-.05-.55 0h-.3l-.15.05h-.05q-.05 0-.1.05-.1 0-.1.05h-.3l-.05.05q0-.05-.15-.05 0-.048-.1-.05.151-.001.2-.05h.4q0-.05.1-.05.15-.05.1-.15.25 0 .35-.05.25-.1.2-.25 0-.05-.3-.1-.195-.049-.45-.05.103-.003.15-.05.1 0 .1-.05-.05-.05-.15-.05-.1-.05-.15-.05 0-.05-.1-.1h-.3q.1-.05.05-.1l-.1-.05q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05h-.25q-.05.05-.05.1l.15.05q.15.05.25.05.15 0 .25-.05v.05q0 .05.1.05.1.05.15.05 0 .05.1.05.191.048.3.05-.253.001-.4.05-.05 0-.05.05-.15-.05-.25-.05-.2 0-.25.05l-.05.05q0 .05.15.15h-.1q0 .05-.05.05h-.2v-.05l-.05-.1q.05 0 .05-.05-.05-.05-.15-.1h-.65q-.1 0-.15.05-.2 0-.3.05-.15.05-.05.2v.05l.05.05q-.2-.05-.3-.05-.15 0-.2.05-.05 0-.05.05h-.05q0 .05.15.1h-.1q-.1 0-.25.05l-.05.05q0 .05.1.05-.049.001 0 .05.1 0 .15.05h.3q.05.05.25.1.15.05.45.05.25 0 .45-.1.15-.05.15-.1l-.1-.1q.1.05.25.05t.25-.05h.15l-.05.05q-.05 0-.05.05.05.05.15.05.15.05.25.05h.2q.05 0 .05-.05h.05l.05.05h.1q.05.05.15.05h.05q.2 0 .25-.05h.15q0 .05.15.1h.05q.15 0 .2.1h.15q.15.05.4 0h.1q-.1.05-.1.1.05.05.2.1-.15 0-.25.05-.05.05-.05.1t.1.05h.05q.05 0 .2.05h-.15q-.1-.05-.2 0h-.15q-.1-.05-.3-.05-.1 0-.2.05-.1 0-.1.05.05.05.2.05.1.05.25.05h.05l.05.05h.1q-.106.003-.2.05-.1 0-.1.1-.1-.1-.25-.1h-.15q0-.05-.15-.05-.1-.05-.2-.05h-.2l-.05-.05h-.45q-.05-.05-.1-.05-.1-.05-.25-.05h-.4q-.15.05-.25.05l-.05.05q-.1 0 0 .05 0 .05.1.05.15.05.25 0h.6q0 .05.1.05.1.1.25.1h.2l.1.05h.05q-.05.05-.05.1-.05.05-.05.1.05.05.2.1.05 0 .2.05-.1 0-.1.05v.05q.05 0 .2.05h.55q.1-.05.05-.1 0-.048-.05-.05h.5q.15-.05.15-.1-.05-.05-.25-.1v-.05l-.05-.05h.25q.1-.1.05-.2 0-.05-.15 0-.048-.048-.1-.05h.6q.05 0 .05-.05.05.05.15.05.05.05.2.05.15-.05.25-.05.05-.05 0-.1m-4.15-1.15v.05h-.1q0 .05-.1.05 0 .047.1.05h-.15q-.1-.05-.15 0h-.7q-.048-.048-.15-.05h.35q.05-.05.05-.1h.3q.05.05.05 0h.5"/><path fill="#CCC" d="M673.65 290.3q.05-.1.05-.15 0-.05-.15-.05-.15-.05-.3-.05h-.05q-.106.003-.2.05l-.05.05q0 .05.15.15.15.05.25.05.2 0 .3-.05m1.2-1.1l.05.05.2.1h.5q.05-.05 0-.1.1 0 .1-.05-.05-.05-.15-.1-.15-.05-.3-.05-.2 0-.35.05-.1.05-.05.1m.7-.3q-.15.05-.1.1 0 .05.2.1h.6q.2 0 .25-.05h.05v-.1q.05-.05 0-.05 0-.049-.05-.05.1 0 .1-.05h.05v-.05q0-.05-.1-.15h-.3l-.2.1q-.1.05-.1.1l.1.05h-.15q-.25 0-.35.05m-1.4-.8q-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.15.05.1.05.3.05h.05q.15 0 .15-.05.15 0 .15-.05"/><path fill="#CCC" d="M674.3 290q-.05-.05-.15-.1-.05-.05-.25 0h-.05q-.15 0-.2.05-.1.05-.05.1l.05.05h.05q.15.05.3.05.2-.05.2-.1l.1-.05m.15.4h.05q0 .05.1.05.2.05.4.05.15 0 .25-.05.1 0 .1-.05-.05-.1-.2-.1-.1-.1-.3-.1h-.1q-.05 0-.2-.05h-.25q-.1 0-.2.05-.1.1-.1.15l.2.05h.25m1.25-.9q-.1.05-.05.1 0 .05.1.1.2.05.4.05.15 0 .2-.05.15-.05.15-.1-.05-.05-.2-.1h-.6m.05.35q-.1.05-.05.15 0 .05.2.1.15.05.35.05.25 0 .4-.05.1-.05.1-.1-.1-.1-.2-.15-.25-.05-.5-.05-.15 0-.3.05m-.3.65h-.2q-.15.05-.15.1.05 0 .15.05 0 .05.05.05.15.05.3.05h.3q0 .05.1.1h.5q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05h-.15l-.1-.1h-.25v-.05h-.25m1.95-2.15q0-.05-.15-.1h-.45v.05q-.05-.05-.2-.1h-.45q-.1.05 0 .05v.05q0 .05.05.05h.1q.15.05.2.05.15 0 .15-.05h.1q.05.05.1.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05m.25.9q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05h-.55q-.15.1-.05.15h.1q.2.05.3.05.1 0 .2-.05h.55q.05-.05.05-.1m0-.35v.05q0 .05.15.1.2.05.45.05.15 0 .35-.05h.35q.05-.05.05-.1h.15q.25-.05.3-.1h.55q.1 0 .15-.05.1 0 .15-.05.05 0 0-.05v-.1q.1 0 .05-.05 0-.05-.1-.1h-.5q-.1.05-.1.1h.1q-.1.05-.1.15l-.1-.1q-.1 0-.15.1h-.1q-.05-.1-.3 0-.15 0-.3.05-.1 0-.05.05 0 .048.05.05h-.2q-.15-.05-.3-.05-.2-.05-.3-.05-.15 0-.2.05h-.05q-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.05.1.05.3.05.1 0 .2-.05 0 .05.05.05m-.75.85q0 .05.2.05.1.05.25.05.1 0 .25-.05.05 0 .05-.05.1.05.3.05.15 0 .35-.05.2-.05.1-.15 0-.05-.2-.1-.2-.1-.4-.1t-.35.1q-.1.05-.1.1v.05h-.3q-.15.05-.15.1m-.75.6q-.15 0-.2.05-.1 0-.1.05.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.05-.2-.05-.3-.05"/><path fill="#CCC" d="M676.8 290.2q-.2 0-.25.1l-.05.05q0 .05.1.1h.3q.15 0 .2-.05.05-.05.05-.1-.05 0-.1-.1h-.25m.65-.25q-.1 0-.25.05-.05 0-.05.05t.1.1h.5q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05m-4.6-4.8q.15 0 .2-.05.15 0 .15-.05t-.15-.05q0-.05.05-.05.15 0 .15-.05-.05-.05-.2-.1h-.55q-.1.05-.05.1 0 .05.05.05-.1.05-.05.1 0 .05.1.05.2.05.3.05m-.6.2q.1-.003.1-.05.1 0 .05-.05 0-.05-.15-.1h-.2l-.1-.05q0-.05-.1-.05-.1-.05-.25 0-.1 0-.25.05-.1 0-.1.05.05.05.2.1h.2v.05q.1.05.15 0 .1.05.15.05-.1.15-.1.2 0 .05.2 0 .048.048.1.05h-.1q-.15.05-.1.1l.15.05q.15.05.3.05h.65l.05-.05v-.05l-.15-.05q-.15-.05-.25-.05-.05 0-.15.05 0-.05-.05-.05h-.15q.1-.05.15-.05v-.05q0-.05-.05-.15h-.2m-.75-.4q.1-.05.15-.1.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25 0-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.05.3.05m-.2 1.15q-.15 0-.35.05-.05.1-.05.15v.05h.05q-.1.05-.1.1.048.048.15.05-.152.001-.25.05-.05 0-.05.05-.05-.05-.1-.05-.15 0-.2.05l-.1.05q.05.05.15.1h.45q.25.05.45.05h.2l.1.05q.15.05.25.05.2 0 .3-.05v-.05h.05q.15 0 .25-.05.15-.05.15-.1-.1 0-.15-.05h-.15l.2-.1q.1 0 .1-.05.05 0 .05.05h.15q.2 0 .35-.05.1-.05.05-.1 0-.05-.2-.1h-.6v.1q-.1-.05-.2 0-.1 0-.2.05-.15.05-.1.1l.1.05h.05q.092.046.225.05h-.175q-.1 0-.2.05h-.15q0-.05-.25-.1-.048-.048-.1-.05h.05q.25 0 .35-.05.1-.05.05-.1 0-.1-.15-.2-.2-.05-.45-.05m-.45-.15q.1.05.2.05.2 0 .25-.05h.2q.1-.05.1-.1t-.15-.05q-.15-.05-.25-.05-.15 0-.25.05h-.05q-.05 0-.15.05-.05 0-.05.05.05.05.15.05m.2-.3l.2.05q.1.05.25.05.1 0 .25-.05l.05-.05q0-.05-.2-.1h-.45q-.1.05-.1.1m.15 1.25h-.5q-.05.05-.05.1l.1.1q.2.05.3.05.15 0 .2-.05l.1-.1q0-.05-.15-.1m-.45-2q0-.05-.1-.1h-.5v.05q-.1-.05-.15-.05-.2-.1-.5-.1-.25 0-.5.1-.1.05-.1.1.05.1.2.15l.05.05q0 .05.1.1.05.05.15.05.05.05.1.05h.4q.25 0 .4-.05.2-.05.15-.15 0-.05-.15-.1v-.05q.1.05.2.05.15 0 .25-.05v-.05m-.85.95q-.1 0-.1.05.05.05.2.1h.45q.05-.05 0-.1 0-.05-.05-.05-.2-.05-.3-.05-.2 0-.2.05m-.8.95l.05.05q.15.05.3.05t.15-.1l.15-.05q-.05-.05-.2-.1-.05.05-.25.05h-.2q-.1.05 0 .1m.3.15q-.1.05-.1.15 0 .05.2.1.1.05.3.05 0-.05.05-.05h.5q.1-.05.1-.1-.05 0-.15-.1-.1-.05-.2-.05-.05 0-.1-.05-.15 0-.3.05h-.3m.5 2.15q-.1-.05-.2-.05-.15 0-.25.05-.15.05-.05.1-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.5q.1-.05.05-.1.1.05.25.05.1 0 .25-.05l.1-.05q-.05-.05-.2-.1m.5-.15q.05.05.25.05v-.05q.002.05.2.05.15.05.35.05h.05q.1 0 .25-.05h.1q.149.05.25.05-.05.001-.05.05.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.05-.05.05-.05.1-.05.15-.05.15-.1-.05-.05-.25-.1t-.4-.05q-.25 0-.3.05h-.1v-.05h-.05l-.05-.05q-.1-.1-.25-.1t-.25.1l-.05.05v.05h-.1l-.05-.05h-.45q-.1 0-.25.05l-.05.05q0 .05.2.1h.1m1.1-.1v.05l-.05-.05h.05m-2.1 1.25q-.15.05-.1.1 0 .1.15.1.15.05.4.05.2 0 .2-.05.15 0 .15-.1.1-.05.1-.1t-.2-.1h-.65q-.05.05 0 .1h-.05m.05.4q-.15-.05-.25-.05t-.25.05l-.1.05q.05.05.15.1h.2v.05h.25v.05H669q-.1.05-.05.1l.15.05h.05q.1.05.25.05.05 0 .1-.05 0 .05.05.05v.05h-.3q-.05.1-.05.15 0 .05.2.1h.05q.05.05.25.05.1 0 .2-.05l.1-.05v-.05l-.1-.05h.2q0-.1.05-.1t.05-.05l-.1-.1h-.2q.103-.003.15-.05.05 0 .05-.05v-.05h.35q.05-.05.05-.1t-.1-.05q-.1-.05-.25-.05t-.25.05q-.05 0-.05.05v.05h-.05v-.05q0-.05-.1-.05-.15-.05-.2-.05h-.05m1.2-.9l-.05-.05-.15-.05q-.1-.1-.25-.1-.1 0-.2.1l-.15.05q.05.05.2.1h-.2q-.05.05-.05.1l.1.05q.2.05.3.05.15 0 .2-.05l.1-.05q0-.05-.15-.1h.15q.097 0 .15-.05"/><path fill="#CCC" d="M670.65 289.55v.05l-.05.05q.05.05.15.05v.05q-.05 0-.05.05.05.05.2.1h-.25v.05q-.15 0-.2.05l-.05.05q0 .05.1.1h.55q.2-.05.3-.1.15-.05.1-.1v-.05l-.2-.05h.2v-.05q.05.05.1.05.1.05.3.05.1 0 .2-.05l.05-.05q-.05-.05-.15-.1h-.5l-.1-.05h-.05q.05-.001.05-.05 0-.05-.15-.1h-.3q-.15.05-.25.05m-.15 1q0 .05.15.1.05.05.2.05h.05q0 .05.1.05.05.05.25.05.1 0 .25-.05.05-.05.05-.1.2 0 .25-.05l.1-.05q-.05-.05-.15-.1h-.25q-.15.05-.25.05h-.1q-.1-.05-.25-.05-.2 0-.3.05l-.1.05m1.4-.2q-.05 0-.05.05.05.05.1.05.15.05.25.05.2 0 .25-.05.1 0 .05-.05v-.05h.3q.15-.05.05-.15h-.05q0-.05-.05-.05-.1-.05-.25-.05h-.15l-.1.05q-.1 0-.1.05 0 .097.1.1h-.1q-.1 0-.25.05m.35.35q-.15 0-.2.05-.15 0-.1.05v.05h-.1q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1.05 0 .05-.05.1 0 .1-.05-.1-.05-.15-.05-.1-.05-.25-.05m.8.05q-.1 0-.2.05-.05 0-.05.05l.05.05-.05.05q.05.15.2.15.1.05.3.05h.1q.1.05.15.1h.25q.05.05.15.1h.5q.1-.05.05-.1 0-.05-.1-.05-.1-.05-.2-.05 0-.05-.1-.15h-.45v-.05q0-.05-.15-.05v-.05q0-.05-.15-.05-.1-.05-.3-.05"/><path fill="#CCC" d="M673 291.35h.25q.1-.05.05-.1 0-.05-.1-.05-.2-.05-.35-.05-.1 0-.15.05-.15 0-.15.05l.2.1h.25m-.95.2q.05-.05.05-.1l-.2-.05h.15q.1-.05.1-.1-.05-.05-.2-.1-.1 0-.2.05h-.3q-.15.05-.1.1 0 .05.15.1h-.05l-.1.05q0 .05.2.1h.25q.1-.05.25-.05m.6.1q-.1 0-.1.05t.2.05q.05.05.25.05.1 0 .25-.05v-.05h.25q.1 0 .2-.05.1 0 .1-.05t-.15-.05q-.15-.05-.3-.05-.1 0-.15.05-.15 0-.15.05l.05.05q-.1-.05-.25-.05t-.2.05"/><path fill="#CCC" d="M671.15 291.3h-.65q-.05.05-.05.1.047.047.175.1-.131-.05-.225-.05-.2 0-.25.05-.1 0-.1.05H670q-.15-.05-.25-.05-.2 0-.3.05-.05 0 0 .05 0 .05.05.1h.2v.05l.05.05q.15.05.3.05t.25-.05l.05-.05q-.05-.05-.15-.1h.5q.05-.05 0-.1l-.05-.05q.1.05.3.05.2 0 .3-.05.1-.05.05-.1 0-.05-.15-.1m.1 1.05q0-.05-.2-.1-.1-.05-.35-.05-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.35.05.2 0 .3-.05.15 0 .1-.05m.55.2q-.15 0-.05.05 0 .05.1.05.1.1.3.1.1 0 .2-.1.05-.05.05-.1-.05-.05-.15 0-.1-.05-.2-.05-.2 0-.25.05m-.35.35q.1 0 .05-.05 0-.05-.15-.1h-.45q-.15.05-.15.1-.1.05-.1.1t.2.05.2.05q.15 0 .25-.05.05 0 .05-.05l.1-.05m-1.75-1.45l.05-.05q0-.05-.05-.05-.15 0-.15-.05h-.45v.05h-.4q-.1 0-.15.05-.15.05-.15.1.05 0 .2.05.1.05.25.05.1 0 .25-.1.05 0 .05-.05h.05q.1.05.25.05.1 0 .25-.05m8.55-.15q.05 0 .1.05.15.05.25.05.2 0 .25-.05h.15q.1 0 .15.05h.5q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.25-.05h-.1q-.05 0-.2-.05h-.5q-.15 0-.2.05-.05.05-.05.1m-1.05.8v.05q0 .05.15.1.1.05.3.05.1 0 .25-.05.05-.1.05-.15 0-.05-.2 0-.1-.05-.25-.05t-.3.05m-.45-.65q.1 0 .2-.05.15 0 .1-.05 0-.05-.15-.1h-.45q-.15.05-.15.1.05.05.2.05.1.05.25.05m-.9-.1q.1-.05.1-.1-.05 0-.2-.05-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5m.35.15q-.05-.05-.2-.05-.1-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.15.1h.5q.15-.05.15-.1m.25.85q-.15-.05-.25-.05-.15 0-.25.05-.05 0-.05.05t.1.1h.5q.1-.05.1-.1t-.15-.05m.1-.75l-.05.05q0 .05.1.1h.5q.05-.05.05-.1l-.1-.05q-.15-.05-.3-.05t-.2.05m-.4 1.7q-.15 0-.15.05.05.05.2.1h.45q.15-.05.1-.1 0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.05m-.6-2.2q.1 0 .1-.1 0-.05-.2-.1H675q-.1.05-.1.1 0 .1.15.1.2.05.3.05.1 0 .2-.05m-.75.95q.1-.05.1-.1.1-.1.15-.1.2 0 .25-.05.05 0 .05-.05l-.1-.1h-.35q-.15.05-.2.05-.15.05-.1.1h-.45q-.15.05-.05.15 0 .05.1.1h.6m-.95.55l.15.15h.5q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05m14.6-7.35q-.1 0-.1.05t.2.05q.05.1.25.1.1-.1.25-.15v-.05q0-.05-.15-.05-.1-.05-.25 0-.15 0-.2.05m-.75.75q-.1-.05-.2-.05h-.05q-.15-.05-.35-.05h-.2q-.1 0-.15.05v-.05l-.15-.05h-.1v-.05q0-.05-.05-.05v-.05q.05.05.15.05.15 0 .25-.05.05 0 .05-.05l-.1-.1h-.1q.102-.002.15-.05l.15-.05q0-.097-.15-.1.153-.002.25-.05l.05-.05v-.05q.15-.05.05-.1 0-.05-.15-.1-.2-.05-.45-.05-.15 0-.35.05-.05 0-.05.05-.15-.05-.3-.05 0 .05-.05.05h-.25q-.25 0-.35.05-.15 0-.1.05 0 .1.15.1.048.048.15.05-.1.002-.1.05 0 .1.2.15h.325q-.186.004-.325.05-.1.05-.1.1h-.1q-.05.05-.05.1t.15.05q.15.05.25.05h.05q0 .05.2.1h.05q0 .05.15.1.15 0 .3-.05h.15v.05q0 .05.25.1-.15 0-.35.1-.05.1-.05.15v.05q.05.05.15 0 .15.05.25.05h.2q.15 0 .35-.05.1 0 .1-.05-.05 0-.05-.05v-.05q.25 0 .35-.05.15-.1.1-.15 0-.05-.2-.1m-1.65-.75h.25q0-.05.1-.05.05 0 .05.05h.05l.05.05h-.25q-.1.05-.05.15l.15.05h-.1q-.1-.05-.3 0 .05-.15.05-.2v-.05"/><path fill="#CCC" d="M687.75 285.55h-.15q-.2-.05-.3-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.05.05.05.2.05.1.05.25.05.097 0 .2-.05l.1-.05q0-.05-.15-.1"/><path fill="#CCC" d="M687.8 285.7q-.098.052-.05.1l.15.05q.15.05.3.05.1 0 .15-.05l.15-.05q-.05-.05-.2-.1h-.5m-.75.95q-.05-.05-.2-.1-.1-.05-.3 0-.15 0-.3.05-.1.05-.05.1 0 .05.1.05.15.05.3.05.2-.05.3-.1.15 0 .15-.05m-.5.25q-.05 0-.1-.05-.2-.05-.4-.05t-.35.05q-.15.05-.1.15 0 .097.1.1h-.15q0-.1-.1-.15H685q-.15.05-.15.15.1 0 .2.05.05 0 .2.05h-.1q-.1-.05-.3-.05-.15 0-.3.05v.05q-.05-.05-.1-.05-.1 0-.25.05l-.05.05.1.1h.4v.05h-.4q-.05.1-.05.15h-.05q.05.05.2 0 .1.05.2.05h.25v-.05h.05q.1.05.2.05t.25-.05l.05-.05v-.05h-.05q0-.05.05-.05.2 0 .2-.05.15 0 .15-.05l-.05-.05h.2l.05-.05q0 .05.05.05.1.05.3.05.15 0 .25-.05t.05-.1v-.05q.15 0 .2-.05.05-.1.05-.15 0-.05-.2 0l-.05-.05"/><path fill="#CCC" d="M686.25 287.6q-.05-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05h-.05l.05.05q0 .05.05.05.1.05.25.05h.05q.2 0 .2-.05.1 0 .1-.05m.3 0q-.15.05-.25.05-.1.05-.1.1t.1.15l.15.05q.1.05.35.05.2 0 .35-.05.2-.15.15-.2l.15.05h.25q-.05.1-.05.15.05 0 .15.05.15.05.25.05.15 0 .25-.05l.05-.05q0-.05-.1-.15h-.3v-.1l-.05-.05h-.15q.15-.05.15-.1h.4q.05 0 .05-.05h.1q.05 0 .05-.05-.05-.1-.2-.1l.05-.05q.1 0 0-.05h.15q.1 0 .1-.05h.05v.05q-.15.05-.1.1.05.05.25.1.15.05.35.05h.25q.05 0 .1-.05l.15-.05h.05q.15-.05.35-.05.25 0 .35-.05l.2-.05h.1q.1.05.2.05h.2q.2 0 .35-.05.1-.05.1-.1-.05-.05-.25-.15-.15-.05-.4-.05-.2 0-.3.05-.05 0-.15.1-.05-.1-.15-.1-.25-.1-.5-.1-.3.05-.4.2-.2.05-.15.1h-.5q.1-.05.05-.1l-.05-.1q.05-.05.05-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.1q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05h-.1q-.1.05-.15.05-.1 0-.05.05l.05.05q-.05 0-.05.05h-.05v.05q0 .05.1.05.15.05.3.05 0 .05.2.1.098.098.15.1h-.05v.05h-.3q-.1 0-.15.05h-.1l-.05.05q.05.05.2.1h.05q-.098.003-.05.1h-.25q-.1 0-.2.05-.1 0-.05.05 0 .05.15.05v.05h.05l-.05.05q-.15-.05-.25-.05-.15 0-.25-.05h-.25m-1.1-2.7q.15-.05.15-.1-.05-.05-.2-.1h-.65q-.05.05 0 .1 0 .05.05.1.25.05.45.05.15 0 .2-.05m-.5.25q-.1 0-.2-.05t-.25-.05q-.1 0-.25.05-.05 0-.1.05h-.45q-.05.05-.05.1h-.4q-.15 0-.25.05h-.3q-.05.05-.05.15 0 .05.15.05 0 .047.1.05h-.4q-.05-.1-.3-.2.15 0 .2-.05l.05-.05-.1-.1h-.5q-.05.05-.1.05l.05.05.1.05h-.35l-.1-.05q-.1-.05-.25-.05-.25 0-.35.05-.15.05-.1.1 0 .1.15.15.15 0 .25.05.05.1.2.15h-.1q-.2 0-.25.05-.1.05-.1.1.05.05.15.05.15.05.25.05.15.05.2.05.1.05.25.05.1 0 .25-.05.1 0 .05-.05.15 0 .25-.05.1 0 .05-.05 0-.05-.15-.05-.048-.048-.15-.05.152-.001.25-.05.05.05.15.1h.6q.15-.05.05-.1h.15q.1-.05.25-.1l.05-.05h.05q.2 0 .3-.05.15-.05.05-.15v-.05q.1.05.15.05.1 0 .15-.05 0 .05.15.05.15.1.3.1.1 0 .15-.1.15 0 .15-.05-.05-.05-.2-.05.15-.05.15-.1m-3.35.6q-.05 0-.15-.05.195.049.525.05-.131.003-.225.05-.1-.05-.15-.05m3.45.2q-.1.05-.1.1.05.05.15.05.15.05.25.05t.25-.05q.1 0 .05-.05 0-.05-.1-.1h-.5"/><path fill="#CCC" d="M685.25 285.85q0-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.05 0-.05.05t.15.05q.15.05.3.05.1 0 .15-.05.15 0 .15-.05m-1.2-.3q-.1.05-.1.1l.2.05q.05.05.25.05.1 0 .25-.05v-.05q0-.05-.15-.1h-.45m.15.6q.2-.05.15-.1 0-.1-.25-.15h-.4q-.2 0-.4.05.05.05 0 .05h-.25q-.1.05-.05.1 0 .05.05.15h.05q.1 0 .1.05h-.1q0 .05.2.1h.25q.1-.05.25-.05 0 .05.1.05.15.05.25.05h.2q0 .05.1.1.2.05.3.05.2 0 .25-.05h.05q.25 0 .3-.05.05 0 .1-.05.1-.05.1-.1l-.2-.1h-.6l-.05.05h-.05v.05h-.15q-.05-.05-.15-.1h-.3q.102-.003.15-.1m.15.55q-.15 0-.15.05t.2.1h.45q.1-.05.1-.1l-.15-.05h-.15q-.1-.05-.15-.05-.15 0-.15.05"/><path fill="#CCC" d="M683.7 286.45h-.2q-.15 0-.25.05v.05q0 .05.1.1h.25q.2 0 .25-.05.05-.05.05-.1l-.2-.05m-.1.25h-.1q-.1.05-.1.1l.15.05q.15.05.3.05l.2-.1q.05 0 .1-.05 0-.05-.2-.1-.1 0-.25.05h-.1m0 .65h.1q.15-.05.1-.1 0-.05-.15-.05-.05-.05-.25-.05h-.05q-.1.05-.15.05h-.5q-.05.05-.05.1l.05.05.2.1h.05q.047.047.225.05h-.475q-.1.05-.1.1.05 0 .15.05.15.05.25.05t.25-.05q.05 0 .1-.05 0 .05.05.05.15.05.25.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.45q.103-.003.15-.05.1 0 .05-.05v-.05m-.25.15l-.05.05q-.05 0-.1-.05h.15m1.35.2h-.15q-.05-.05-.2-.05-.15.05-.25.1.05 0 0 .05v.1l.1.05h-.1q-.15.05-.05.1-.15.05-.15.1.05.05.2.05.05.05.25.05.1 0 .2-.05h.3q.15 0 .2-.05h.05v.05h.3v.1h-.45q-.1.05 0 .05l-.1.05q0 .048.1.05-.202.002-.3.1-.15.05-.1.15-.15 0-.35.05-.05.05-.05.1l.1.1q0 .05.1.05h.05q.1.05.3.05h.05q.2-.1.3-.1.2-.05.1-.15h.4q.1-.05.05-.1 0-.1-.15-.1-.1-.05-.15-.05-.05 0-.05-.05h.35q.1-.05.1-.1 0-.048-.05-.05h.25l-.15.1.2.1h.05q.141.047.25.05h-.1q-.15.1-.15.15.05 0 .15.05h-.1l-.05.05q0 .05.15.1h.25v.1l.05.05h.1l.05.05h-.15l-.05.05q0 .05.05.05 0 .05.05.05h.5q.1-.05.1-.1-.05 0-.1-.05h-.1q.102-.002.15-.05l.05-.05V289l-.1-.05h-.1q-.05-.05-.15-.05h-.05v-.05q-.1 0-.1-.05h.1l.05-.05v-.05q-.05 0-.15-.1.15 0 .15-.05.15-.05.1-.1 0-.05-.05-.1.05 0 .05-.05-.001-.05-.15-.1h-.1q0-.1-.15-.1v-.05h-.2q-.05-.05-.25-.05-.15 0-.3.05h-.05v.05l-.05-.05h-.15q-.05-.05-.15-.05-.15 0-.2.05h-.05q-.05 0-.05-.05h-.25q-.05-.05-.1-.05l-.1-.05h.15q.05-.1.05-.15 0-.05-.05-.05"/><path fill="#CCC" d="M687.65 288.4q.05 0 .05-.05t-.2-.1h.25q.15-.05.15-.1-.1 0-.2-.05t-.25-.05q-.1 0-.25.1h-.15l-.05.05h-.1l-.05.05v.05h.05q0 .05.15.05-.05.001-.05.05l.05.05h.1q.05.05.15.05h.1q.1-.05.25-.1m-3.8-.4l.1-.05q-.05-.05-.1-.05 0-.1-.05-.1h-.5q-.1 0-.2.1h-.05l-.05.05q0 .05.05.1h.75l.05-.05m0 .35q-.2-.05-.35-.05h-.15q0-.05-.05-.05 0-.05-.1-.05-.1-.05-.25-.05t-.25.05h-.05l-.05.05q.05.05.15.1h.25v.1q0 .05.1.05t.1.05h-.1q-.05-.05-.1-.05h-.05q-.05 0-.2-.05-.1-.05-.25-.05-.1 0-.2.05l-.1.05q0 .047.1.05h-.1q-.1-.05-.2-.05-.2.05-.25.1l-.15.1q.05.05.15.05-.15.05-.15.1.05 0 .2.05.1.05.3 0 .2 0 .3-.05l.05-.05q0-.05-.1-.1l-.05-.1h.35q.05.1.15.15h.5q.05-.05 0-.15l-.05-.05q.1.05.35.05.2 0 .3-.05h.05q.15-.05.15-.1-.05-.1-.25-.1m.25 1.6q.05-.05.05-.1l-.1-.05q-.2-.05-.35-.05-.15 0-.15.05l-.15.05q0 .05.2.1.048.048.25.05-.154.002-.25.05-.05 0-.05.05h-.05q-.15-.05-.25-.05-.2 0-.3.05-.15 0-.05.05 0 .05.1.15h.5l.1.1h.55q.05-.05 0-.1v-.1h.1q.15-.05.1-.1 0-.05-.2-.05-.099-.049-.25-.05.055-.002.2-.05m.3.7q.05.05.15.1h.5q.048-.048.1-.05h-.05q.15-.05.15-.1t-.2-.05q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05-.1 0-.1.05m.45-.75q-.05 0-.1.05-.05 0-.05.05l.1.1h.5q.1-.1.05-.15 0-.05-.1 0-.15-.05-.3-.05h-.1m.85.4q-.1 0-.1.05.05.05.15.1h.5q.15-.05.05-.1 0-.05-.1-.05-.2-.1-.3-.1-.15 0-.2.1m.05.4q-.1.05-.2.05-.15.05-.1.1h.1q0 .05.05.05.15.05.3 0h.1l-.1.05v.05q.05 0 .15.1h.1q-.106.003-.2.05v.2q0 .05.1.05.2.05.4.05.15 0 .15-.05.2-.05.2-.1l-.1-.05q.05 0 .05-.05t-.2-.05q-.048-.048-.1-.05h.1q.15-.1.05-.15l-.1-.05q-.1-.05-.25-.05-.05 0-.1.05v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.3m2.5-2.95l.05.05q.05.1.15.1.05.05.15.1h.05q.15.05.3.05.1.05.15.05h.05q.05.05.1.05h.3q.25 0 .5-.05.099-.099.1-.15v-.05l-.05-.1q.053.1.15.1l-.1.05q.001.05.1.05 0 .05.05.05h.05q0 .049.05.05-.05.001-.05.05v.05l.2.05.05.05h.35q.05-.05.15-.05v-.05q0-.05-.15-.1-.048-.048-.1-.05h.05l.05-.05q-.05-.05-.15-.05l-.1-.05h.15q.1 0 .15-.1.15 0 .15-.05.05-.05 0-.05v-.05q-.05-.05-.25-.1-.2-.1-.5-.1-.25 0-.45.1-.1.05-.1 0h-.45l-.05.05q-.1 0-.1.05.097.048.15.05h-.45l-.05-.05h-.55q-.1.05-.1.1m1.675.05q-.126-.048-.225-.05h.1l.125.05m.225.15v-.05l-.05-.1q.053.1.15.1l-.1.05"/><path fill="#CCC" d="M688 288.2q-.1.05-.1.1.05 0 .15.05.15.05.25.05.15 0 .2-.05.25.05.45.05t.3-.05h.1v.05h.05v.05q0 .05.15.1h.3q-.05.05-.05.15.05 0 .2.05.1.05.25.05t.3-.1q.049-.099 0-.1h.1q.05.1.2.1.05.05.25.05.1 0 .2-.05.1 0 .1-.1h-.1q0-.05-.05-.1h-.3q-.05-.05-.1-.05 0-.05-.05-.05h-.4q-.05 0-.1.05l-.05.05h-.2q.05-.001.05-.05v-.05h.05q.1-.05.1-.1-.1-.05-.2-.05v-.05h-.25q-.15 0-.3.05-.05 0-.05.05l-.05-.05q0-.05-.2-.1h-.1q-.15-.05-.3-.05h-.3q-.05.05-.15.05-.05 0 0 .05H688m-.7.9q.05.05.2.1.25.05.45 0 .15 0 .35-.05h.05v.05q0 .05.15.1h-.15q-.1.05-.1.1l.05.1q-.1-.1-.25-.1-.1.1-.25.15l-.1.05q.05.05.2.1.1 0 .2-.05h.1q.05.05.15.1h.25q0 .05.05.05h.15q.048.048.1.05h-.3l-.05.05q-.05 0 0 .05l.05.05h.15q.05.05.15.05.15 0 .25-.05h.05v-.05h.15q.1.05.15.05h.05q.15 0 .25-.05l.05-.05v-.05h-.05q0-.05-.1-.05h-.2q.05-.05.05-.1h-.05v-.05h.25l.05-.05h.25q-.05.002-.05.05h-.15q-.05.05 0 .05 0 .05.15.05.1.05.25.05h.1q.05 0 .1-.05.15 0 .15-.05h-.05q0-.05-.15-.05-.048-.048-.1-.05h.1q-.048-.002 0-.05.05.05.15.05h.25q.1-.05.2-.05h.15q.15 0 .25-.05.05-.1.05-.15-.05-.05-.15-.05-.1-.05-.3-.05-.1 0-.2.05t-.15.05q-.2 0-.25.05h-.25v-.05q.1 0 .1-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.05.05l.1.05h-.45q-.1.1-.1.15h-.15q.15-.05.1-.15 0-.05-.1-.05l.1-.05h.1v-.05h.2q.05-.05 0-.1 0-.05-.1-.1h-.5l-.1.05h-.05v-.05q-.05-.05-.15-.05-.1-.05-.2-.05-.25-.05-.5-.05l-.3.1q-.15.05-.15.1m2.45.4l-.05-.1h.05v.1m-2.25-.75q-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1h-.05q-.05.05 0 .05v.1h.1q.1.05.2.05h.05q.2 0 .25-.05.05 0 .05-.05l.05-.05m-.35 1.6q-.1 0-.25.05v.05q0 .05.15.05.1.05.25.05t.2-.05q.1 0 .1-.05t-.2-.05q-.05-.05-.25-.05m-.1.35q-.05.05 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05 0-.2-.05-.05-.05-.2-.05-.15 0-.25.05m-4.45-5.7v-.05q0-.05-.1-.1-.15-.05-.3-.05t-.15.05q-.15.05-.15.1l.2.05q.05.05.25.05.1 0 .25-.05m-.15.9q-.1 0-.1.05.05.05.15.05.1.05.25.05h.05q.1 0 .2-.05.05 0 0-.05v-.05h-.05q-.2-.05-.3-.05-.2 0-.2.05m-.45.6l.05-.05q-.05-.05-.2-.1-.1-.05-.3-.05-.1 0-.3.05-.1 0-.2.05-.05 0-.05.05-.15 0-.25.1l-.05.05q.05.05.2.1.05.05.15 0-.1.1-.05.15 0 .05.15 0 .15.05.35.05h.1q0 .05.15.05.249.05.35.05-.05.001-.05.1H682q-.1 0 0 .05 0 .05.1.05.1.05.25.05.1 0 .25-.05.1 0 .1-.05-.05-.05-.2-.05-.049-.098-.1-.1.1 0 .1-.05.2-.05.15-.1 0-.05-.2-.1-.1 0-.15-.05.05 0 .05-.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.048-.048-.1-.05h.1q.2 0 .35-.05m-.4.15q.05.05.15.05v.05q-.1-.05-.15-.05v-.05m-.55.65q.1.05.15.05h.3q.15 0 .25-.05t.05-.1l-.2-.05q-.05-.05-.25-.05-.05 0-.1-.1-.1 0-.25.1h-.25q-.1.05-.1.1.05.05.2.05.1.05.2.05m-.1.35q.1 0 .1-.05t-.15-.1h-.2q.05-.05 0-.1l-.1-.05q-.15-.05-.25-.05t-.25.05q-.05 0-.05.05H680q.05.05.15.1h.25q-.05.05-.05.1l.05.05h.05q.15.05.25.05h.05q.15 0 .2-.05"/><path fill="#CCC" d="M681.8 287.55h-.25v.05q-.1 0-.05.05 0 .05.1.05.15.05.3.05h.1q.05 0 .1-.05h.1q-.05.05-.05.1h-.35q-.15.1-.05.15 0 .05.1.05.2.05.3.05.15 0 .2-.05.1 0 .1-.05h.15q.1 0 .15-.05.15 0 .15-.1 0-.05-.2-.1h-.35q.05-.05 0-.1l-.05-.05q-.143-.048-.25-.05h.45q.2-.05.2-.1-.05-.05-.25-.1-.05-.05-.25-.05-.15 0-.3.05-.1.05-.05.1 0 .05.15.1-.15 0-.2.05m1.1-.75h.2q.15-.05.1-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.25m-.3-.3h.15q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.3m-2.75-1.15h-.05q-.05-.05-.25-.05-.1 0-.25.05l-.05.1-.1-.1h-.5q-.05.1-.05.15 0 .05.2.05.1.05.2.05.15 0 .25-.05l.05-.05q0 .05.1.05t.25.05q-.1 0-.1.05.1.05.2.05.1.05.3.05.2 0 .3-.05h.3q.2 0 .25-.05.1 0 .05-.05 0-.05-.1-.1h-.3q-.15 0-.2.05-.05 0-.05-.05t-.05-.05q-.2-.1-.4-.1m.2.75q.05 0 .1.05.2.1.4.1.15-.1.2-.15.15-.05.15-.1-.048-.048-.15-.05.1-.002.1-.05 0-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05l-.05.05q-.1.05-.05.1v.05m-.9-1.05q.05-.05.05-.1t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.1h.5m-.3 1.1h.05l.05.1h.175q-.131.003-.225.05l-.05.05q0 .05.15.1t.25.05q.15 0 .25-.05.05-.05.05-.1l-.15-.05q-.094-.047-.2-.05h.25q.1-.1.05-.15 0-.05-.1-.05-.2-.05-.3-.05h-.15q-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .05.15.1h.3m.45.75h-.05q0-.05-.05-.1h-.5q-.1.05-.1.1h.05v.05q0 .05.15.05 0 .1.15.1h.15q.102-.003.15-.1.05 0 .05-.05v-.05"/><path fill="#CCC" d="M679 287.15q-.05 0-.05.05.05 0 .2.05.05 0 .15.05h.4q.15 0 .25-.05.15 0 .1-.05 0-.05-.2-.1h-.15q-.05-.1-.15-.1-.1 0-.1.1h-.35q-.1.003-.1.05m1.7.65h-.05v.1q-.05-.1-.25-.1-.1 0-.25.1-.05 0-.05.05.05.05.15.05.1.05.2.05.2 0 .25-.05h.55q.05-.05.05-.1l-.1-.1q-.15-.05-.3-.05t-.2.05m-.25.45q-.1.05-.05.1 0 .05.15.05.15.05.3.05.1 0 .15-.05.05.05.15.05.1.05.2.05.15 0 .25-.05.05 0 .05-.05.15-.1.15-.15h-.2q-.05-.05-.25-.05-.1 0-.2.05l-.1.05q-.05 0-.1-.05h-.5m.4.3h-.2q-.1.05-.1.15l.15.05q.15.05.25.05t.25-.05l.05-.05q0-.1-.1-.15h-.3"/><path fill="#CCC" d="M680.75 288.9q0 .05.1.05v.1q.05.05.15.1h.6q0-.05.05-.05 0 .05.15.05.05.05.25.05.1-.05.25-.1.05-.05 0-.05 0-.05-.1-.1-.1 0-.2.05h-.35l-.15-.05h-.05v-.05q0-.05-.15-.05-.05-.05-.1-.05h-.15q-.15 0-.2.05-.1 0-.1.05m-1.65.7h.05q.1.05.25.05h.25l.05.05h.45q.15-.05.15-.1h.15q.15-.05.15-.1h.05q.05-.1.05-.15 0-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.05 0-.05.05v.05h-.1q-.1 0 0 .1h-.25q0-.1-.15-.15-.1 0-.25.05h-.2q-.15.1-.15.15.05 0 .15.05m.35.3q0-.05-.15-.1h-.5q-.15.05-.15.1-.05 0-.15.05-.1.05 0 .05 0 .05.05.1h.45q.1 0 .15-.05 0 .05.05.05.188.047.3.05.2 0 .3-.1.15-.05.15-.1-.1-.05-.2-.05h-.3"/><path fill="#CCC" d="M679 290.15q-.1.05-.1.15.05 0 .2.05.1.05.2.05.15 0 .25-.05l.1-.05q0-.1-.15-.15h-.5m.5.65h-.5q-.1.05-.1.1.05.05.2.05.1.05.2.05.15 0 .25-.05.15 0 .1-.05 0-.05-.15-.1m.05-.2q-.05.05-.05.15.05.05.2.1.15.05.35.05.25-.05.4-.1.15-.05.1-.1 0-.05-.15-.1-.05-.05-.1-.05-.15-.05-.3-.05-.15.05-.25.1h-.2m1.15-1q-.1 0-.05.05 0 .05.2.1-.1 0-.2.05h-.25q-.1 0-.25.05v.05q0 .05.15.1h-.2q-.1.05-.05.1 0 .05.1.05.15.05.25.05h.05q.15.1.25.1.15 0 .25-.1.05 0 .05-.05t-.15-.05l-.1-.05q-.05 0-.1-.05h.1l.1-.05q.1.05.15.05.2 0 .25-.05.1-.05.1-.1-.05-.05-.15-.05-.047-.047-.15-.05h.25q.05-.05.05-.1v-.1q.1 0 .15-.05.05 0 .05-.1 0-.05-.05-.05-.05-.05-.2-.1h-.45q-.1.05 0 .1v.15h-.1l-.05.05v.05m.05.75q-.1 0-.05.05 0 .05.15.05.15.05.3.05.1 0 .15-.05.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05"/><path fill="#CCC" d="M681.8 289.95q-.15-.05-.25-.05-.2 0-.25.05-.05.05-.05.1l.2.05q.05.05.2.05.15 0 .25-.05l.1-.05q0-.05-.2-.1m0 .65q.2.05.3.05.2 0 .25-.05.1-.05.1-.1-.05 0-.15-.05-.15-.05-.3-.05t-.25.05l-.1.05q0 .05.15.1m1.1-.7l.1-.05q-.05-.05-.2-.1-.05-.05-.2-.05-.15 0-.25.1-.05.05 0 .1l.05.05h.3q.2 0 .2-.05m-.6 1.6q.1.05.2.05.15 0 .25-.05.05 0 .05-.05t-.1-.05q-.2-.05-.3-.05-.1 0-.2.05-.1 0-.1.05t.2.05m.95.65q-.15.05-.15.1.1 0 .2.05t.25.05l.3-.1.05-.05q0-.05-.1-.1-.2 0-.4.05h-.15m-1.7-.65q.05 0 .05-.05t-.1-.05q-.15-.05-.25-.05.05-.05.05-.1-.05-.05-.1-.05-.15-.05-.25-.05-.2 0-.25.05-.1 0-.05.05 0 .05.1.1h.25q-.05.002-.05.05-.1 0-.1.05t.15.1h-.05q-.05 0-.05.05l.1.1h.55l.1-.05q.1-.05.1-.1l-.2-.05m-.3.7q-.1 0-.05.05 0 .05.1.1h.5q.1-.05.1-.1-.05-.05-.15-.05-.15-.05-.25-.05-.15 0-.25.05m-.05-.45q-.15.05-.15.1.1.1.2.1.1.05.25.05.1 0 .25-.05.1 0 .05-.1 0-.05-.15-.1h-.45m2.2.7q0-.05-.05-.05-.15-.05-.3-.05t-.25.05q-.05 0-.05.05.05.05.15.1h.5q.1-.05 0-.1"/><path fill="#CCC" d="M680.7 291.55q.15-.05.05-.1 0-.05-.15-.1h-.25q0-.05-.05 0h-.5q-.05.05 0 .1 0 .05.05.05.15.05.2.1.1.05.35.05.2-.05.3-.1m-1.05.8q.1-.05.05-.1l-.15-.05q-.15-.05-.3-.05-.1 0-.15.05l-.15.05q.05.05.2.1h.5m-1.25.2q0 .05.1.05.1.05.2.05.2 0 .25-.05.15 0 .15-.05-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05m.45.65q-.15.05-.05.1 0 .05.1.1.2.05.4.05t.25-.05q.15-.05.15-.1-.05-.05-.2-.1h-.65m9.45-1.85q-.05.05 0 .05 0 .05.05.1h.55q.05-.1.05-.15.1 0 .15-.05l.15-.05q-.05-.05-.2-.1-.1-.05-.25-.05-.026 0-.05.025.05-.131.05-.175h-.2q-.1-.05-.25-.05-.1 0-.25.05h-.1q-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .1.15.15h.45l.05-.05q0 .05.1.05h.45q-.1.05-.15.05-.15.05-.05.1h.05q-.15.05-.2.05m-.9.7q.05-.05.05-.1l-.15-.1q-.15-.05-.25-.05-.15 0-.25.05l-.05.1q0 .05.15.1h.5m.3.1h-.3q-.2 0-.3.05-.1.05-.1.1.05 0 .15.05.15.05.3.05t.2-.05q.1.05.15.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.1h-.3m-1.3 1.45q.05-.05.05-.15-.05-.05-.15-.05-.1-.05-.25-.05t-.2.05q-.15 0-.1.05 0 .1.15.15h.5m-1.25-1.3q0-.05-.1-.1h-.5q-.05.05-.05.1t.15.05q.1.05.2.05.2 0 .25-.05.05 0 .05-.05m-.5-.8q0-.05-.2-.05-.1-.05-.3-.05-.1 0-.25.05-.05 0-.05.05t.2.1h.5q.1-.05.1-.1m-.2 1.05q.05.05.2.05.05.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.1h-.5q-.1.05-.1.1m.65 1.2q0 .05.15.1h.45q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05m14.25-10.35h-.4q-.2 0-.35.05-.15.05-.1.1.05.05.25.1.1.05.35.05.15 0 .35-.1.2-.05.15-.1-.1-.05-.25-.1m-10.15.35q.15-.05.15-.1-.1-.05-.2-.05-.1-.05-.25-.05-.1 0-.25.05-.1 0-.05.05 0 .05.15.1h.45m-.45.7q-.15 0-.15.05.05.05.2.05.1.1.25.1.1 0 .2-.1.15 0 .1-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05"/><path fill="#CCC" d="M689.45 284.45q-.1.05-.05.1 0 .1.1.15.2.05.35.05h.1q.1 0 .15-.05h.15q.1 0 .15.05h.25q.25 0 .3-.05h.05q.1 0 .15.05h.05q-.054.002-.2.05-.1.05-.1.15.05.05.25.1.25.05.55 0h.3q.1.05.2.05.15 0 .25-.05.15 0 .05-.05 0-.05-.1-.05-.05-.05-.1-.05h-.1q0-.1-.2-.15-.15-.05-.25-.05.1-.05.1-.15 0-.049-.05-.05.101 0 .25-.05h.05q.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1h-.55q-.15 0-.25.05t-.05.1h-.15l-.2.1q-.1-.05-.2-.05-.097-.048-.2-.05.1-.002.1-.05.15 0 .1-.05 0-.1-.2-.1h-.05q-.1-.05-.25-.05-.25 0-.3.05-.1 0-.1.1.05.05.15.05.097.048.15.05-.15.001-.15.05h-.7m2.55-.6h-.5q-.1.05-.05.1l.1.05q.149.05.3.05-.05.001-.05.05 0 .05.2.05.05.05.2.05.15 0 .25-.05v-.05q0-.05-.05-.1h-.3v-.05l-.1-.1m1.45-.2q-.2.05-.15.1-.1.1-.1.15.05.05.25.1t.4.05q.25-.05.3-.1.2-.05.2-.1.05-.1.05-.15-.05-.05-.2-.1h.15l.05-.05q0-.05-.15-.1h-.45q-.15.1-.15.15-.1 0-.2.05m-.75.45q.05.05.15.05v.05q0 .047.1.05h-.1q-.2 0-.35.05-.1 0-.05.1l.05.05h.1q.15.05.35.05.2 0 .25-.05.1 0 .1-.05-.05-.05-.05-.1h.2l.05-.05v-.05l-.05-.05q.05 0 0-.05l-.15-.05q-.1-.05-.25-.05-.1 0-.2.05l-.15.05"/><path fill="#CCC" d="M694.1 284.05q-.25.05-.35.1-.15.05-.1.1 0 .05.2.1.097.048.2.05-.151.001-.2.05-.1.05-.1.2.05 0 .05.05h-.15q-.3 0-.45.05h-.2q-.15 0-.3.05-.2.05-.1.1 0 .05.25.1.15.05.35.05h.25q.15.05.3.05h.1q.05.05 0 .05h-.05q-.2 0-.35.05-.3 0-.45.05-.25.05-.15.2 0 .1.3.15.05 0 .2.05h.1q-.1.05-.1.1.1.05.15.05.1.05.25.05.1 0 .2-.05h.1q.05 0 0-.05 0-.05-.1-.05v-.05q.1 0 .1-.05.1-.05.1-.1.05 0 .05-.05v-.1q.05 0 .05-.05v-.05h.2q.1-.1.1-.15h-.2l.05-.05.1-.1q.05-.05.05-.1-.048-.048-.15-.05h.1q.25 0 .45-.1h.05q.05.05.25.15.3.05.55.05.3 0 .4-.05.25-.1.2-.15 0-.15-.3-.2-.2-.05-.5-.05-.2 0-.35.05h-.15l-.05.05q0-.1-.25-.15-.099-.05-.3-.05.053-.002.15-.05.1-.05.1-.1-.05-.05-.25-.1-.25-.05-.4-.05m2.7-.4q0 .05.1.1h.65q.1-.05.1-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1m.2.4q-.1.05-.1.1.1.05.15.1h.65q.15-.05.05-.1 0-.05-.1-.1-.2-.05-.35-.05-.2 0-.3.05m-.2.45q-.1 0-.05.05l.05.1q-.05 0-.05.05.05.05.25.1h.35q.2 0 .35-.05.2-.05.15-.1 0-.15-.25-.2h-.3q-.15-.05-.25-.05-.15.05-.25.1m1.5.3q0 .05.25.1.1.05.35.05.2 0 .35-.05.15-.05.15-.1-.05-.05-.25-.1-.25-.05-.4-.05-.25 0-.3.05-.2.05-.15.1m.25.5l-.05.05q-.05 0 0 .1 0 .05.1.1.2.05.35.05.2 0 .25-.05.05-.05.15-.05h.4q.15-.05.05-.15h.1q-.1.1 0 .1 0 .1.2.15h.55q.25 0 .45-.05.15-.05.15-.2l-.05-.05q.3 0 .5-.05.1-.05.1-.1-.05-.05-.05-.1-.05-.05-.2-.05-.25-.05-.55-.05h-.05q-.25 0-.35.05-.2.05-.1.15-.1-.05-.25-.1t-.35 0q-.25 0-.4.05-.15.05-.1.1 0 .049.05.05-.101 0-.25.05h-.65m-1.1.6q.1 0 0-.05v-.05h.4q.3 0 .45-.05.15-.1.15-.15-.1-.1-.25-.15-.25-.1-.55-.1-.25.1-.4.15-.1.05-.15.05-.05.05 0 .1 0 .048.05.05H697q-.2 0-.25.05-.15.05-.15.1.1 0 .15.05.05.05.1.05t.15.05h-.3q-.1.05-.1.1.1 0 .15.05.1.1.25.1t.25-.1l.05-.05q0-.05-.15-.1.15 0 .2-.05.05 0 .1-.05"/><path fill="#CCC" d="M696.3 285.8q.2-.05.15-.1-.05-.1-.25-.15-.2-.05-.5-.05-.2 0-.45.05 0-.05-.15-.05-.15-.05-.4-.05-.15.05-.25.05l-.05.05-.15.05-.05.05q.05.05.25.1l.1.05q.15 0 .25-.05h.45q0 .05.1.05.3.1.55.1.3 0 .4-.1m.75 1.1q0-.05-.2-.1-.15-.05-.4-.05-.2 0-.35.05-.1.05-.1.1.1.1.2.1.05.1.1.1h.5l.05.05q0 .05.15.05v.05q.05.05.15.1.25.05.45.05.15 0 .25-.05h.05q.15-.05.1-.1v-.05h-.05q-.05-.05-.2-.05-.1-.05-.3-.05l-.05-.1h-.3q-.05-.05-.05-.1"/><path fill="#CCC" d="M697.9 287.35q-.05.05-.05.1l.15.05q.15.05.25.05v.05h-.05q-.15.05-.15.1l.2.1h.05q.05.1.15.1h.1q-.05.05-.2.05-.1.05-.05.1v.05q-.05-.05-.15-.05-.15 0-.25.05-.05.05 0 .05 0 .05.05.1h.5l.1-.05q.1 0 .3-.05h.3q.05 0 .1-.05h.1v-.05q.1 0 .1-.05-.05-.05-.2-.1h-.05l.05-.1h.1l.05.1h.2q-.1.003-.1.05v.2q.1.1.2.15h.8q.1-.05.1-.1.05 0 .1-.05.2-.05.15-.15-.05-.05-.25-.1-.246-.148-.55-.15.15-.002.15-.05l.05.05q.3.05.55.05.3 0 .4-.05.2-.1.1-.15v-.05h.15q.05 0 .1.05h.25l.05.05q0 .1.25.15.2.1.5.1.25 0 .4-.1.2-.05.2-.15.05.05.1.05.3.05.55.05.3 0 .45-.1.15-.05.1-.15 0-.048-.1-.1.205.1.5.1.25 0 .4-.1.2-.05.15-.1 0-.05-.15-.1.1-.05.15-.05.15-.05.15-.15-.1-.1-.25-.15-.15-.05-.35-.05-.2 0-.4.05-.05.05-.1.05h-.25q-.15 0-.3.1-.2.1-.1.15 0 .1.25.1v.05q0 .05.15.1h-.55q-.25 0-.4.05-.2.05-.15.1v.05q-.05-.05-.15-.05-.15-.05-.25-.05-.1-.05-.25-.05-.05 0-.1.05v-.1h.45q.1 0 .2-.05t.05-.1q0-.05-.15-.1-.199-.05-.3-.05.05-.001.05-.1-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .1.15.1 0 .05.05.05l-.1.1q.05.05.2.1l.1.05q-.15-.05-.2-.05-.1-.05-.35-.05h-.05q-.2 0-.35.05-.1 0-.05.05l-.05.1q-.05 0-.1-.05-.25-.05-.55-.05h-.05q-.25 0-.4.05-.15.1-.1.15h-.05q-.25-.05-.45-.05h-.1q.109-.003.25-.05l.05-.05q0-.05-.1-.1-.2-.05-.4-.05-.1 0-.15.05-.15.05-.15.1h-.05q0-.05-.05-.05h-.25q0-.05-.2-.1-.1.05-.2.05h-.25m-1.7-.75q0-.05-.1-.05-.1-.05-.25-.05t-.25.05q-.05 0-.05.05l.1.1h.5q.1-.05.05-.1m-.1.8q.1 0 .05-.05 0-.05-.15-.05-.15-.05-.3-.05-.1 0-.15.05 0 .05-.05.05 0 .05-.1.05 0-.048-.05-.05h.15q.05-.1 0-.15h-.1q-.15-.05-.3-.05t-.25.05l-.05.05q0 .048.125.05-.179.002-.275.05-.2.05-.15.1 0 .1.2.1-.05.05-.15.05l-.05-.05h-.55q-.05-.05-.1-.05l-.05-.05q-.3-.05-.55-.05-.3 0-.4.05h-.1q-.1.1-.1.15h-.15q-.15 0-.2.05-.15 0-.15.05.05.05.2.05.05.05.25.05.1 0 .25-.05l.05-.05.05.05q.25.05.55.05.25 0 .4-.05.25.05.45.05.15 0 .2-.05.1-.05.15-.05h.05q.1.05.25.05.1 0 .25-.05.1 0 .05-.05v-.05h.2q.1-.1.1-.2.1.05.25.05.1 0 .25-.05"/><path fill="#CCC" d="M696.7 287.35h-.3q-.15 0-.15.05-.15.05-.1.1 0 .1.25.15.2.05.45.05h.4q.05-.05.1-.05t.05-.05h.2q.1-.05.1-.1h-.05q0-.05-.1-.05-.1-.05-.25-.05h-.05q-.15-.05-.2-.05h-.35m-.8-2.25q-.2-.05-.35-.05-.2 0-.3.05-.05 0-.05.1.05 0 .05.05-.05 0-.05.05.05.05.15.05.15.1.25.1t.25-.1q.1 0 .05-.05 0-.05.05-.05.15 0 .05-.05 0-.1-.1-.1m-.8.7h-.15q-.2.05-.3.05-.1.05-.15.05-.05.05-.05.1.05.05.2.1h.05q.05.05.1.15-.05 0-.05.05h.05q0 .1.25.15h.5q.25 0 .45-.05.15-.05.15-.15-.05-.1-.3-.2h-.05q0-.1-.25-.15h-.05l-.1-.05h-.15q-.05-.05-.15-.05"/><path fill="#CCC" d="M694.15 286.15h-.25q-.15 0-.3.1h-.05q-.05.05 0 .1 0 .05.1.05.2.05.4.05h.05q.1 0 .15-.05h.2q.1 0 .25-.05.05-.05 0-.05 0-.05-.05-.15h-.5m.3.5q-.1.05-.1.15h-.3q-.25 0-.45.05h-.05q0 .05-.05.1.05.15.25.2.145.048.325.05-.127.002-.175.05-.05 0 0 .05 0 .05.05.1h.5q.1-.05.1-.1-.05-.05-.15-.05v-.05q.15 0 .3-.05t.1-.15h.25q.3-.05.5-.1.15-.05.15-.15-.05-.05-.3-.15-.2-.05-.55 0-.15 0-.35.05h-.05m-.6 0v-.1q-.05 0-.1-.05-.15-.05-.3-.05t-.25.05h-.05v.1q0 .049.05.05h-.05q-.2 0-.25.05-.15 0-.15.05l.2.1q.1.05.3.05.1 0 .25-.05.1-.05.05-.1l-.05-.05h.05q.2 0 .3-.05m1.4 1.35q-.2.05-.15.15.1.05.25.1.3.1.6.1.25-.05.35-.15.25-.05.2-.1-.05-.1-.3-.15-.25-.05-.5 0-.3 0-.45.05"/><path fill="#CCC" d="M694.95 288.05q.1 0 .25-.05.05 0 0-.05 0-.05-.1-.15h-.45q-.15.1-.15.15.05.05.2.05.05.05.25.05m0 .55q-.1.1 0 .15h-.1q0 .05.15.05v.05q-.15-.05-.25-.05t-.25.05h-.4q0-.05-.15-.1h-.45q-.15.05-.15.1.1 0 .2.05t.25.05h.1v.1q.05.05.25.1l.05.05h-.05q-.2 0-.3.05-.1.05-.1.15v.1q0 .05.05.1.15.05.3.05h.4q.3 0 .45-.05.15-.1.1-.2 0-.1-.25-.15-.05 0-.15-.05h.05q.25 0 .35-.05.25-.05.2-.1V289q.05-.05 0-.05 0-.05-.15-.1h.45q.1-.05.1-.1l-.15-.15h-.55"/><path fill="#CCC" d="M695.4 289q-.1.05-.05.1 0 .05.15.05h.05v.05h.05q.05.05.2.1h-.15q-.15.05-.1.2 0 .05.15.1.241.048.425.05-.132.002-.275.05-.15.05-.15.1-.05 0-.1-.05-.3-.05-.55-.05-.25 0-.4.05-.2.05-.15.15h-.05q-.05-.05-.25-.05-.1 0-.25.05-.05 0-.05.05.05.05.15.05l.05.05q-.05 0 0 .05 0 .049.05.05-.051.001-.1.05h-.55q-.05 0-.15-.05-.1-.05-.2-.05-.15 0-.2.05-.05-.05-.2-.05-.1-.05-.25-.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.05.15.1.3.1h.1q.1 0 .2.05.05 0 .2.05l.05.05q0 .1.25.15.1.05.3.05-.1.05 0 .1 0 .1.2.15.148.049.3.05-.052.002-.1.05-.1.1-.1.15.05.05.2.1.15.05.3 0h.25q-.05.05-.05.1.05.05.1.05 0 .05.1.05.25.05.45.05t.3-.05q.2-.05.15-.1 0-.05-.25-.1-.2-.05-.35-.05h-.2q.15-.05.05-.1 0-.1-.15-.15-.148-.049-.2-.05.052-.001.2-.05l.1-.1h.25v-.1q0-.05-.1-.1h-.45q.109-.003.25-.05l.2-.1q.05.1.15.15.2.05.35.05.15 0 .2-.05l.05.05q.3.05.55.05h.35q.05.1.25.15h.55q.25 0 .4-.05.2-.05.15-.15 0-.05-.2-.1h.2q.05.05.05.1.05.05.25.15.25.05.55.05.2 0 .35-.05.25-.1.2-.15-.1-.1-.35-.15-.15-.05-.4-.05v-.05q-.05-.05-.25-.15-.1-.05-.35-.05-.2 0-.35.05-.2.1-.15.15v.05q-.05-.05-.15-.05-.2 0-.3.05-.05 0-.05.05h-.15q-.05 0-.05-.05t-.25-.1q-.2-.1-.5-.1-.2 0-.35.1-.1-.1-.25-.1h-.15q-.2 0-.3.1-.149 0-.15.05-.001-.05-.25-.15-.049-.049-.1-.05.05-.001.05-.05v-.05q.25.05.5.05.2 0 .25-.05h.15q.15-.05.15-.1v-.05q.05 0 .1.05.25.05.45.05t.3-.1l.1-.05h.35q.3 0 .5-.05t.2-.1q-.1-.1-.4-.15-.15-.05-.45-.05-.2 0-.45.05.05-.05.05-.15-.05-.1-.15-.1l.05-.05q.05 0 .1-.05h.45q.1-.05.05-.1 0-.05-.05-.1h.1q.15-.05.1-.1 0-.05-.15-.1-.2-.05-.35-.05-.2 0-.25.05-.1.05-.1.1l.1.1h-.25q-.05.05-.25.05h-.05l-.05-.05h-.5m-.75 1q.05 0 .1.05h-.1l-.1-.05h.1m-.25.55l.05-.05q.047.047.175.05h-.225m2.1-.95q0 .05-.05.05h-.15q.105-.002.2-.05m-2.05-1.25q-.1-.05-.25-.05-.1 0-.25.05l-.1.05q-.05 0-.2-.05-.05 0-.1-.05h.05q.15-.05.15-.1-.1-.05-.2-.05-.05-.05-.2-.05-.05-.05-.15-.05-.15-.05-.25 0-.1 0-.25.05-.1 0-.05.05 0 .05.1.05.1.05.15.05 0 .05.05.1-.05 0-.25.05t-.1.15q.05.05.25.15.3.05.5 0 .3 0 .45-.1.25-.05.15-.1v-.05q.002.05.1.05.1.05.2.05.15 0 .25-.05.15-.05.05-.1l-.1-.05m3.85.05l-.1-.05q-.2-.05-.45-.05-.15 0-.35.05-.1.05-.1.1.05.05.25.1.15.05.35.05h.4q.15 0 .25-.05l.05-.05q0 .1.25.1.2.1.5.1.25 0 .4-.15.2-.05.15-.1 0-.1-.3-.15-.2-.05-.45-.05-.3 0-.5.1-.1.05-.1.1l-.05-.05h-.2m-.9-.4q.15-.05.15-.1-.1 0-.2-.1-.1-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5"/><path fill="#CCC" d="M697.75 289.05q-.15.05-.1.15.05.05.25.15.3.05.55.05.3 0 .4-.05.2-.1.1-.15-.05-.1-.2-.15-.25-.05-.55-.05-.25 0-.45.05m.1-.35h-.5q-.1.05-.05.1 0 .05.1.05.15.05.25.05t.25-.05q.1 0 .1-.05-.05-.05-.15-.1m-.6-.3h-.5q-.15.05-.15.1.1.05.2.05.05.05.25.05.1 0 .25-.05.05 0 0-.05 0-.05-.05-.1"/><path fill="#CCC" d="M698.25 289.85q.05.05.2.1h.35q-.05.05-.15.05-.1.05-.1.1.05.05.25.1.15.1.4.1h.3v-.1h.1q.05 0 .1-.05.25 0 .35-.05.15-.05.15-.1-.1-.05-.25-.1-.2-.05-.45-.05l-.3.1h-.25q.2-.05.15-.1.15 0 .35-.05l.05-.1q.2 0 .3-.05.15-.05.15-.1-.05-.05-.25-.15l-.05-.05h.15q0 .05.15.05l.05.1v.05q0 .05.25.1.1.05.35.05.25 0 .35-.05.05 0 .05-.05.1.05.25.1t.3.05q-.1.05-.1.1h-.05q0 .05-.1.05-.2 0-.35.05-.1.05-.1.1.05.05.25.1.1.05.35.05h.25l.05-.05q0 .05.1.15.1 0 .15.05.3.05.55.05.3-.05.4-.1.2-.1.1-.2-.05-.05-.2-.15h-.15v-.05h.05q.15-.05.1-.1 0-.05-.1-.05l-.2-.1q-.15-.05-.25-.05.1-.05.05-.1l-.05-.1q-.15-.05-.25 0-.25-.05-.5-.05-.3 0-.4.05-.15 0-.2.1 0-.1-.1-.15h-.05q.049-.001 0-.05v-.05q-.1 0-.2-.05h-.05q-.2-.05-.35-.05h-.15q-.05 0-.1-.05h-.3l-.15-.05q-.25 0-.35.1-.1.05-.05.1 0 .1.1.15-.15 0-.25.1-.05 0-.1.05-.2 0-.3.05-.1 0-.05.1l.05.05q-.1 0-.25.05-.05 0-.05.05M692.6 286q0-.05-.15-.05-.1-.05-.25-.05-.1 0-.2.1-.15 0-.15.05.05.05.2.05h.25q.1 0 .2-.05.15 0 .1-.05"/><path fill="#CCC" d="M691.55 286.15q-.1 0-.15-.05h-.55q-.2.05-.25.05l-.05.1h-.15q-.15 0-.25.05-.1 0-.05.05 0 .05.15.1h.4l.15.05q.1 0 .3.05h.2v.1l.1.05h.1q.1.05.2.05.15 0 .15-.05.15 0 .15-.05v-.05q-.1 0-.2-.05h-.4q.109-.002.3-.05h.2q.2 0 .4-.1h-.1q.2-.05.15-.1h.05v-.05q0-.1-.2-.15-.106.003-.2.05h-.45m.8-.7q.05-.1.05-.15 0-.05-.2-.05-.05-.05-.2-.05-.15 0-.25.05v.05q0 .05.1.15h.5"/><path fill="#CCC" d="M691.6 285.75h-.6q-.1.05-.05.1 0 .049.05.05-.05.001-.05.05h.05q0 .05.15.1h.15q.1.05.25.05t.25-.05v-.1h-.05q.05-.05.05-.1-.05-.05-.2-.1m.2 1.1l-.05.05q0 .05.05.05 0 .05.05.05h.5q.05 0 .1-.05-.05 0-.05-.05l-.1-.05q-.15-.05-.3-.05t-.2.05m-.2.75q-.105.003-.2.05-.1.05 0 .05 0 .05.05.1.05.1.15.1.15.05.25.05.15 0 .25-.05.1 0 .05-.1 0-.05-.1-.05v-.05q-.05 0-.2-.05-.048-.048-.1-.05h.25l.05-.05q.15 0 .25-.05.05-.05.05-.1t-.2-.05q-.05-.05-.25-.05-.15 0-.2.05-.1 0-.1.05-.1 0-.2.05-.15 0-.1.05 0 .05.15.1h.15m1.05-.3h.1q.25 0 .45-.05.1-.05.05-.1 0-.05-.2-.15-.15-.05-.4-.05-.2.05-.35.15-.15.05-.15.1.05.05.25.1.1.05.25 0m-1.95-2.35q-.05-.05-.15-.05-.15-.05-.3-.05-.2 0-.4.05-.1 0-.05.05 0 .1.15.1.1 0 .2.05-.05 0-.05.05v.05q-.1-.05-.15-.05-.15 0-.2.05-.1 0-.1.05.05.05.15.1h.75q.05-.05 0-.1.1 0 .15-.05l.1-.05v-.05l-.2-.05q.1-.05.1-.1m-.65.95q.05-.05.1-.05v-.05q0-.05-.05-.1h-.3l.05-.05q.15 0 .15-.05-.05-.05-.2-.05-.1-.05-.25-.05-.05-.05-.15-.05-.15-.1-.25-.1t-.25.1q-.05.1-.05.15h.3q.05.05.1.05h.15q.1.05.25.05-.15.05-.15.1l.2.05q.048.048.1.05h-.1l-.05.05q-.1 0-.1.1l.2.1q.1.1.3.1h.1q.25 0 .3-.1h.1q.1-.05.05-.1 0-.1-.2-.1-.15-.05-.35-.05"/><path fill="#CCC" d="M688.75 285.85l.1.05q.1.05.25.05.15-.05.25-.1l.05-.05q0-.05-.2-.1-.05-.05-.25 0-.05 0-.05.05h-.15v.1m1 .45q-.1-.05-.3-.05-.1 0-.25.1l-.05.05q0 .05.1.1.15-.05.25-.05h.3q.15-.05.15-.1-.1 0-.15-.05h-.05m-.1.4q0-.05-.2-.05-.1-.05-.3-.05-.2 0-.25.05-.1.05-.1.1.05 0 .15.05.15.05.3.05.2 0 .25-.05l.15-.05q0 .05.05.1h.45q.15.05.3.05.35 0 .45-.1.25-.05.2-.1 0-.05-.15-.1-.1-.05-.15-.05-.2-.05-.5-.05h-.2q-.1 0-.3.05-.05.05-.1.15h-.05m.35 2.25q0 .05.15.1t.3.05q.2-.05.35-.1.05-.05.05-.1-.05-.05-.2-.1-.1 0-.3.05h-.3q-.1.05-.05.1m-1.2 1.2q.05 0 .05.05h.05l.05.1h.5q.05-.1.1-.15h-.05l-.1-.05h-.05q-.1-.05-.2-.05t-.25.05h-.05l-.05.05m.95.45l-.05.05q.05.05.15.05.15.05.25.05h.05q.15 0 .2-.05.05 0 .05-.05h.15v-.05q.05.05.1.05.15.05.35.05.25 0 .45-.1.15-.05.1-.1 0-.1-.25-.15h-.4q-.25 0-.35.05-.15.05-.1.1-.15-.05-.35-.05-.1 0-.15.05-.1 0-.1.05-.05 0-.1.05m.9-.7q-.2 0-.2.05l-.1.05q.05.05.2.1.05.05.25.05.1 0 .2-.05t0-.1l-.05-.05h-.25l-.05-.05"/><path fill="#CCC" d="M690.1 290.35q.15.05.25.05h.05q.15 0 .25-.05.05 0 .05-.05 0-.1-.15-.15H690q-.05.05-.05.15h.05q0 .05.1.05m.25.4q-.05 0-.2.05h-.1l.05.05q0 .05.05.1h.5q.15-.05.15-.1l-.1-.05h-.1q-.05-.05-.25-.05m2.15-1.65l-.05-.05q-.15-.05-.35-.05-.25 0-.35.05-.15.05-.15.1h-.05q-.1.05-.05.1 0 .05.1.05.1.05.25.05h.25q.2.05.3.05.05 0 .2-.05.1.05.3.05.25 0 .3-.05.15-.05.15-.1-.05-.05-.2-.1-.2-.05-.45-.05h-.2m-.15-.25q0 .05.15.05.15.05.25.05.2 0 .3-.05.1 0 .1-.05t-.2-.1q-.1-.05-.3-.05-.15 0-.25.05-.05.05-.05.1m.65.1q-.05.05 0 .1 0 .05.05.05.2.05.3.05.2-.05.2-.1.1 0 .1-.05-.05-.05-.15-.1-.05 0-.25.05H693m-.95-.65q-.2-.05-.35-.05h-.2q-.05 0-.1.05h-.15l-.05.05v.05q.05.1.2.15h.1q.1.05.3.05.2 0 .35-.05.15-.05.05-.15 0-.05-.15-.1m.05 1.25q-.05 0-.05.05-.15.05-.05.1.05.1.2.15h.1q.2.05.45.05t.4-.05q.2-.05.15-.15-.05-.05-.3-.15-.25-.05-.5-.05-.3 0-.4.05"/><path fill="#CCC" d="M691.7 289.95h.2q.1 0 .15-.05l-.15-.1.1-.05q0-.05-.15-.1h-.45q-.1 0-.1.05h-.05v.05q.05 0 .15.05l-.1.05q.1.05.15.1h.25m1.15 1.55q.05.05.15.1.241.048.425.05-.13.002-.225.05l-.15.05.2.1h.5q.1-.05.05-.1l-.15-.05q-.048-.048-.15-.05.152-.001.25-.05.15-.05.1-.1 0-.05-.25-.1-.1-.05-.3-.05-.25 0-.4.05-.05.05-.05.1m-.8-.15q-.05-.05-.2-.1-.1 0-.25.05h-.1v-.05l-.2-.05q-.1-.05-.2-.05-.15 0-.25.05l-.05.05q0 .05.1.1h.5q-.1.003-.1.05l.15.05q.097.048.15.05h-.05q-.25 0-.45.05h-.1q-.05-.05-.2-.05-.15 0-.25.05-.15 0-.1.05 0 .05.15.05.2.05.3.05h.1q0 .05.1.05l-.1.05q.1.05.2.15h.55q.3-.1.4-.2.2-.05.15-.1 0-.1-.25-.15-.15-.05-.25 0l.1-.1.15-.05m-.9 1.15q.05-.05.05-.1-.05-.05-.2-.1-.1-.05-.3-.05-.15 0-.3.05-.1.05-.05.1 0 .05.2.1h.6"/><path fill="#CCC" d="M690.55 291.45q.05 0 .05-.05.1 0 .05-.05 0-.1-.1-.1-.2-.05-.4-.05h-.65v.1q0 .05.15.05.1.05.2.05h.1q0 .05.1.05.1.05.3.05.1 0 .2-.05m-.75.75q.15 0 .25-.05l.05-.05q0-.05-.1-.1h-.5q-.1.05-.1.1.05 0 .15.05.15.05.25.05m-.7-.45q-.05-.05-.15-.05h-.45q-.15.05-.05.1l.1.05q.1.1.3.1.1 0 .2-.1l.05-.1m8.65-.4q-.05-.05-.15-.1-.15 0-.25.05h-.3q-.15.05-.05.1 0 .05.1.1h.35q.15-.05.2-.05.1-.05.1-.1m.1.2h-.3q-.15.05-.2.05-.1.05-.1.1.05 0 .15.05.15.05.25 0 .1 0 .25-.05l.05-.05q0-.05-.1-.1m-1.45-.6q.05 0 .05-.05t-.2-.05q-.1-.05-.25-.05-.1 0-.2.05-.1 0-.1.05h-.05q-.05-.05-.25-.05-.1 0-.2.05t0 .05q0 .05.05.15h.45q.15-.1.15-.15h.05q.1.05.25.05.1 0 .25-.05m-.15.85h.55q.2-.05.1-.1 0-.05-.15-.1h-.55q-.1.05-.1.1.05.05.15.1m.25.55q-.1-.05-.25-.05-.1 0-.25.05-.05.05-.05.1l.2.05q.1.05.25.05.1 0 .2-.05l.1-.05q0-.05-.2-.1m1.95.1h-.2q-.1.05-.1.1.05.05.15.05.15.05.25.05.2 0 .3-.05.1 0 .05-.05 0-.05-.1-.1h-.35m-4.8.45l-.05.05q0 .05.15.1t.3.05q.15 0 .2-.05.15-.05.15-.1-.05 0-.2-.05-.1-.05-.3-.05-.1 0-.25.05m13.15-5.55q-.15-.05-.3-.05-.05 0-.05-.05h-.5q-.1.05-.1.1.05 0 .05.05-.1 0-.25.05-.1.05-.1.1.05.1.25.15.25.05.55.05.2 0 .35-.05.25-.05.15-.15.2-.1.15-.15 0-.05-.2-.05m-2.15-2q-.05-.05-.25-.15-.25-.05-.5-.05-.3 0-.4.05-.2.1-.15.15.1.15.25.2.25.05.55.05.25 0 .35-.05.2-.05.15-.2m1.05 3.5q-.3 0-.4.05-.2.05-.1.15.05.05.2.1.2.1.5.1.25 0 .45-.1.2-.05.15-.1-.05-.1-.3-.15-.25-.05-.5-.05m-1.7-.95q-.1 0-.2-.1-.05-.05-.25-.05-.1 0-.25.05l-.05.1q0 .05.1.1h.5q.15-.05.15-.1m0 .85q-.15 0-.2.05-.15.05-.15.1l.2.05q-.25 0-.35.05-.15.05-.15.15.1.05.25.1.2.05.45.05.15 0 .3-.05t.1-.1q0-.1-.25-.15.1 0 .15-.05l.05-.05q0-.05-.1-.1-.15-.05-.3-.05"/><path fill="#CCC" d="M703 289.05q-.15-.05-.4-.05-.3 0-.5.05-.1.1-.05.15 0 .1.25.1.15.05.45.05h.25q.05.05.2.15h.45q.1-.1 0-.15 0-.05-.05-.05-.15-.05-.3-.05.05-.05.05-.1-.05-.05-.35-.1m1.65.45q-.15.1-.15.15.1.1.25.15.25.05.55 0h.25q-.2.05-.15.1 0 .05.25.1.15.05.4.05.2 0 .4-.05.1-.05.1-.1-.05-.05-.2-.1-.25-.05-.5-.05h-.2q.25-.05.2-.15 0-.05-.3-.2-.2-.05-.45-.05-.3.05-.45.15m-.45.35q-.2 0-.45.05-.15.05-.15.15.05 0 .15.05h-.15q-.25 0-.35.05-.1.05-.1.15.05.05.2.1l.1.05q.05 0 .05.05h-.2l-.05-.05h-.5q-.05.05-.05.1.05.05.15.05v.05q.05.05.2.1.15.05.3.05v.05q0 .05.2.1t.45.05q.15 0 .35-.05.05-.05.05-.1-.05-.05-.2-.1-.095-.048-.2-.05h.3q.2 0 .35-.05.25-.05.15-.15-.05-.05-.3-.15-.1 0-.3-.05h.2q.3 0 .5-.1.15-.1.1-.15 0-.1-.3-.15-.2-.05-.5-.05m3.4-1.55q.1 0 .1-.1-.05-.05-.25-.1-.1-.05-.35 0-.15 0-.35.05-.1.05-.05.1 0 .1.15.1.2.05.4.05.2-.05.35-.1m-7.3-2.25h.05q.25-.1.45-.15.15-.05.15-.1-.05-.1-.3-.15-.25-.05-.55 0-.2 0-.4.05-.05 0-.05.05-.15.05-.05.1l.2.1q.25.1.5.1m.6 2q.05.05.25.1.15.05.35.05.25-.05.35-.1.2-.05.15-.1 0-.05-.25-.1-.1-.1-.35 0-.2 0-.4.05-.1.05-.1.1"/><path fill="#CCC" d="M700.35 288.85q-.1.05-.05.1v.1q.05 0 .25.05h.05q.2.05.4.05h.15q.15 0 .3-.05.05-.05.1-.05h.1q.15.05.3.05.1-.05.15-.1.15 0 .15-.05-.1-.05-.2-.05-.1-.05-.25 0-.1 0-.25.05-.05-.05-.3-.1-.15-.05-.4-.05-.3 0-.5.05m3.3-.4q-.05-.05-.2-.15-.25-.05-.55-.05-.25 0-.35.05-.2.1-.15.15v.05h-.35q-.05.05-.05.1l.15.1q.1.05.25.05t.25-.05v-.1q.25.1.5.1.3 0 .4-.1.2-.05.1-.15m-1.9 2.2q-.2.05-.1.1 0 .05.15.1.25.05.45.05t.35-.05q.1-.05.1-.1-.05-.05-.15-.1-.25-.05-.5-.05-.2 0-.3.05m-.35.85q-.1-.05-.2-.05-.05-.05-.25-.05-.1 0-.25.05-.05 0 0 .05 0 .05.1.1h.45q.15-.05.15-.1m-1.1.05h-.5q-.05.05-.05.1.05.05.15.05.1.05.2.05.2 0 .25-.05.15-.05.05-.1 0-.05-.1-.05m-.85 0q.2-.05.2-.1-.05-.05-.25-.05-.05-.05-.25-.05t-.3.05q-.1 0-.05.05 0 .05.1.1h.55m-53.6-4.25h-.2q-.25 0-.45.05-.15.05-.1.15.05.05.25.15.3.05.5.05.3 0 .45-.05.15-.1.1-.15v-.05h.25q.25 0 .45-.05.15-.1.1-.2-.05-.05-.25-.1-.3-.1-.55-.1-.1 0-.25.1H646q-.2.1-.15.15v.05m1.4 1.65q-.15-.05-.45-.05-.25 0-.5.05-.15.05-.15.15.1.05.3.1.25.1.5.1.3 0 .5-.1.1-.05.05-.1 0-.1-.25-.15m.2 1q.05 0 .05-.05t-.2-.05-.2-.05q-.15 0-.25.05v.05q0 .05.1.05.15.05.25.05.2 0 .25-.05"/><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M662.1 196.9l-2.4-1.55q-18.6 34.7-44.7 58.5l8.75 6.6q22.75-30.4 38.35-63.55"/><path fill="#FF5B80" d="M596.95 268.05q-4.05 4.25-1.4 7.35l4.45 4.05q1.6 1.2 3.25.9 1.6-.25 3.7-2.1 7.45-6.3 16.8-17.8l-8.75-6.6-18.05 14.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.735;0.749;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M660.3 197l-2.75-1.3q-14.95 38.05-39.25 65.9l10.1 5.65q19.9-34.2 31.9-70.25"/><path fill="#FF5B80" d="M601.2 278.5q-3.7 4.9-.5 7.7l5.25 3.6q1.85 1.05 3.55.55 1.65-.5 3.6-2.65 7-7.5 15.3-20.45l-10.1-5.65-17.1 16.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.73;0.735;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M659.6 199.7l-2.7-1.5q-17.2 23.95-28.1 52.9l10.4 5.1q3.65-29.55 20.4-56.5"/><path fill="#FF5B80" d="M638.45 275.8l.75-19.6-10.4-5.1q-3.4 10.45-3.7 19.7-1.4 4.35 2.5 6.25l5.8 2.35q3.95 1.15 5.05-3.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.727;0.73;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M659.55 197.2l-3.05.25q-4.629 31.074 3.15 60.25l10.85-2.25q-13.021-25.217-10.95-58.25"/><path fill="#FF5B80" d="M677.9 260.55q-3.45-1.15-7.4-5.1l-10.85 2.25q4.7 12.7 16.05 15.5 5.65 1.4 10.4.25 4.45-.25 4.25-6.95-.1-2.65-1.05-4.5-1-1.95-2.35-1.75-5.2 1.5-9.05.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.713;0.727;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M659.55 197.2l-3.05.25q-.918 29.441 6.2 59.6l11.45-1.6q-13.457-26.532-14.6-58.25"/><path fill="#FF5B80" d="M684.5 272.15l-10.35-16.7-11.45 1.6q3.027 10.573 7.95 18.4 1.3 4.4 5.55 3.8l6.15-1.3q3.95-1.25 2.15-5.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.71;0.713;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M658.1 197.3h-3.35l.2 62.6h11.7l-8.55-62.6"/><path fill="#FF5B80" d="M669.2 278.85l-2.55-18.95h-11.7l.1 19.35q.35 4.7 4.6 4.95h6.3q4.15-.45 3.25-5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.705;0.71;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M679.3 200.15h-3.35l3.2 63.1h11.7l-11.55-63.1"/><path fill="#FF5B80" d="M679.15 263.25l1.05 19.1q.05 5 4.3 5.45h6.3q4.2-.25 3.65-5l-3.6-19.55h-11.7"/><path fill="#317C99" d="M657.9 200.8h-3.35l-1.65 62.6h11.7l-6.7-62.6"/><path fill="#FF5B80" d="M666.6 282.35l-2-18.95h-11.7l-.5 19.35q.25 4.7 4.45 4.95h6.3q4.15-.45 3.45-5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.331;0.705;0.749;1" values="none;inline;none;inline;inline"/></g><g display="none"><path fill="#317C99" d="M679.3 195.9h-3.35l3.2 66.2h11.7l-11.55-66.2"/><path fill="#FF5B80" d="M679.15 262.1l1.05 20q.05 5.25 4.3 5.7h6.3q4.2-.25 3.65-5.25l-3.6-20.45h-11.7"/><path fill="#317C99" d="M657.9 196.5h-3.35l-1.65 65.7h11.7l-6.7-65.7"/><path fill="#FF5B80" d="M666.6 282.05l-2-19.85h-11.7l-.5 20.35q.25 4.9 4.45 5.15h6.3q4.15-.45 3.45-5.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M682.65 203.2l-3.15.4 20.65 62.85 9.6.55-27.1-63.8"/><path fill="#FF5B80" d="M709.75 267l-9.6-.55-10.45 14.95q-1.8 3.15-.85 4.95.75 1.5 3.15 1.95l5.1-.1q2-.15 3.4-1.6 1.2-1.25 2.45-3.95l6.8-15.65"/><path fill="#317C99" d="M665.6 203.6l-3.25-.4-11.4 63.8 9.5-.55 5.15-62.85"/><path fill="#FF5B80" d="M660.55 266.45h-.1l-9.5.55 6.75 15.65q1.2 2.7 2.45 3.95 1.35 1.45 3.35 1.6l5.1.1q2.4-.45 3.2-1.95.9-1.8-.9-4.95l-10.35-14.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.32;0.326;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M682.85 183.8l-3.35.25 9.05 62.65 11.7-.8-17.4-62.1"/><path fill="#FF5B80" d="M700.25 245.9l-11.7.8 2.8 18.95q.5 4.95 4.8 5.1l6.3-.45q4.15-.5 3.2-5.2l-5.4-19.2"/><path fill="#317C99" d="M661.1 186.5l-3.35-.3-8.1 62.55 11.7 1.1-.25-63.35"/><path fill="#FF5B80" d="M661.4 269l-.05-19.15-11.7-1.1-2.5 19.4q-.25 4.7 3.95 5.35l6.3.6q4.2-.1 4-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.318;0.32;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M661.25 199.95l-3.25-.45-18.55 50.8 7.7 17.35 12.2-.3-1.45-2.15-8.85-14.95 12.2-50.3"/><path fill="#FF5B80" d="M668.35 280.8l-9-13.45-12.2.3 6.55 14.75q1.2 2.8 2.45 4.15 1.35 1.5 3.35 1.65l5.1.1q2.65-.45 3.9-2.15 1.65-2.15-.15-5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.287;0.318;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M654.25 205.8l-3.25-.4-14.55 47.45 9.05 16.2 12.75-.1-1.6-2-10-14 7.6-47.15"/><path fill="#FF5B80" d="M668.35 281.5l-10.1-12.55-12.75.1 7.75 13.75q1.45 2.65 2.8 3.85 1.5 1.45 3.5 1.6l5.1.05q2.75-.45 4.05-1.9 1.7-1.95-.35-4.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M660.65 197.2l-3.25-.4-18.2 52.35L647 267l12.2.1-1.45-2.2-8.95-15.45 11.85-52.25"/><path fill="#FF5B80" d="M668.3 280.95l-9.1-13.85-12.2-.1 6.65 15.2q1.25 2.9 2.5 4.25 1.35 1.55 3.35 1.7l5.1.1q2.7-.5 3.9-2 1.6-2-.2-5.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.273;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M659.65 201.05l-3.25-.45-17.65 50.2 8 17.1 11.85-.2-1.45-2.1-9.15-14.8 11.65-49.75"/><path fill="#FF5B80" d="M667.85 281l-9.25-13.3-11.85.2 6.8 14.6q1.3 2.75 2.55 4.05 1.4 1.5 3.4 1.65l5.1.1q2.6-.45 3.7-2.05 1.4-2.05-.45-5.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M655 207.4l-3.3-.4-14.9 46.55 8.9 15.85h11.9l-1.6-1.95-9.9-13.7 8.9-46.35"/><path fill="#FF5B80" d="M667.55 281.75l-9.95-12.35h-11.9l7.6 13.5q1.4 2.6 2.75 3.8 1.5 1.4 3.5 1.55l5.1.05q2.6-.4 3.65-1.8 1.3-1.8-.75-4.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M661.1 195.25l-3.25-.45-18.45 53.5 7.7 18.25 12 .1-1.45-2.25-8.85-15.75 12.3-53.4"/><path fill="#FF5B80" d="M668.1 280.8l-9-14.15-12-.1 6.55 15.55q1.25 2.95 2.45 4.35 1.4 1.6 3.4 1.75l5.1.1q2.7-.5 3.8-2.1 1.5-2.05-.3-5.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M659.1 203.6l-3.25-.4-18.05 48.7 7.85 16.6 12 .05-1.45-2.05-9-14.35 11.9-48.55"/><path fill="#FF5B80" d="M666.8 281.45l-9.15-12.9-12-.05 6.7 14.15q1.25 2.7 2.5 3.95 1.4 1.45 3.4 1.6l5.1.1q2.65-.45 3.8-1.9 1.45-1.9-.35-4.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M682.05 189.5h-3.35l9.45 63.3h11.7l-17.8-63.3"/><path fill="#FF5B80" d="M691.05 271.95q.55 5 4.85 5.45h6.3q4.15-.25 3.15-5l-5.5-19.6h-11.7l2.9 19.15"/><path fill="#317C99" d="M661.1 192.3h-3.35l-8.1 63.3h11.7l-.25-63.3"/><path fill="#FF5B80" d="M661.4 274.75l-.05-19.15h-11.7l-2.5 19.6q-.25 4.75 3.95 5h6.3q4.2-.45 4-5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.234;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M682.05 191.6h-3.35l9.45 63.3h11.7l-17.8-63.3"/><path fill="#FF5B80" d="M691.05 274.05q.55 5 4.85 5.45h6.3q4.15-.25 3.15-5l-5.5-19.6h-11.7l2.9 19.15"/><path fill="#317C99" d="M661.1 194.4h-3.35l-8.1 63.3h11.7l-.25-63.3"/><path fill="#FF5B80" d="M661.4 276.85l-.05-19.15h-11.7l-2.5 19.6q-.25 4.75 3.95 5h6.3q4.2-.45 4-5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.226;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M683.7 203.2l-3.15.4 19.85 62.85 9.6.55-26.3-63.8"/><path fill="#FF5B80" d="M710 267l-9.6-.55-10.6 14.95q-1.85 3.15-.95 4.95.75 1.5 3.15 1.95l5.1-.1q2-.15 3.4-1.6 1.25-1.25 2.5-3.95l7-15.65"/><path fill="#317C99" d="M664.35 203.6l-3.25-.4-10.5 63.8 9.5-.55 4.25-62.85"/><path fill="#FF5B80" d="M660.2 266.45h-.1l-9.5.55 7 15.65q1.25 2.7 2.5 3.95 1.4 1.45 3.4 1.6l5.1.1q2.4-.45 3.15-1.95.9-1.8-.95-4.95l-10.6-14.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.223;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M680.7 193.45h-3.35l-15.9 67.95h11.7l7.55-67.95"/><path fill="#FF5B80" d="M673.15 261.4h-11.7L656.6 282q-1.4 5.35 2.7 5.85h6.3q4.3-.3 5.2-5.4l2.35-21.05"/><path fill="#317C99" d="M699.65 193.45h-3.35l-6.05 67.95h11.7l-2.3-67.95"/><path fill="#FF5B80" d="M701.95 261.4h-11.7l-1.8 20.6q-.65 5.35 3.5 5.85h6.3q4.25-.3 4.4-5.4l-.7-21.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.189;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M676.5 193.45h-3.35L660.3 261.4H672l4.5-67.95"/><path fill="#FF5B80" d="M672 261.4h-11.7l-3.9 20.6q-1.2 5.35 2.95 5.85h6.3q4.25-.3 4.95-5.4l1.4-21.05"/><path fill="#317C99" d="M695.45 193.45h-3.35l-3 67.95h11.7l-5.35-67.95"/><path fill="#FF5B80" d="M700.8 261.4h-11.7l-.9 20.6q-.4 5.35 3.8 5.85h6.3q4.2-.3 4.15-5.4l-1.65-21.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.187;0.189;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M674 193.45h-3.35l-11.1 67.95h11.7l2.75-67.95"/><path fill="#FF5B80" d="M671.25 261.4h-11.7L656.2 282q-1.05 5.35 3.1 5.85h6.3q4.25-.3 4.8-5.4l.85-21.05"/><path fill="#317C99" d="M692.95 193.45h-3.35l-1.2 67.95h11.7l-7.15-67.95"/><path fill="#FF5B80" d="M688.4 261.4l-.35 20.6q-.3 5.35 3.9 5.85h6.3q4.2-.3 4.05-5.4l-2.2-21.05h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.187;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M658.1 199.95h-3.35l.4 63.3h11.7l-8.75-63.3"/><path fill="#FF5B80" d="M666.85 263.25h-11.7l.1 19.15q-.15 5 4.1 5.45h6.3q4.2-.25 3.9-5l-2.7-19.6"/><path fill="#317C99" d="M675 199.95h-3.35l11.7 63.3h11.7L675 199.95"/><path fill="#FF5B80" d="M683.35 263.25l3.55 19.15q.75 5 5.05 5.45h6.3q4.15-.25 3-5l-6.2-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M652.45 199.95h-3.35l.25 63.3h11.7l-8.6-63.3"/><path fill="#FF5B80" d="M661.05 263.25H649.4l4.55 19.15q1 5 5.35 5.45h6.3q4.1-.25 2.7-5l-7.2-19.6h-.05"/><path fill="#317C99" d="M669.6 203.2l-3.05.4 22.1 60.55 10.1-2.7-29.15-58.25"/><path fill="#FF5B80" d="M698.75 261.45l-10.1 2.7.05 17.25q-.5 6.2 3.3 6.9l5.1-.1q4.25-.35 4.15-5.6l-2.5-21.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M650.95 263.25h11.7l-19.55-63.3h-3.35l11.2 63.3"/><path fill="#FF5B80" d="M662.65 263.25h-11.7l3.35 19.15q.7 5 5 5.45h6.3q4.15-.25 3.05-5l-6-19.6"/><path fill="#317C99" d="M661.6 203.15l-3.15.4 21.75 60.6 9.6-4.9-28.2-56.1"/><path fill="#FF5B80" d="M680.2 264.15l6.55 18.3q1.8 5.75 5.6 4.6l4.7-2.45q3.8-2.25 1.85-6.9l-9.1-18.45-9.6 4.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M651.55 263.25h11.7l-17.9-63.3H642l9.55 63.3"/><path fill="#FF5B80" d="M663.25 263.25h-11.7l2.85 19.15q.6 5 4.9 5.45h6.3q4.15-.25 3.15-5l-5.5-19.6"/><path fill="#317C99" d="M663.2 199.95h-3.35l20.2 63.3h11.7l-28.55-63.3"/><path fill="#FF5B80" d="M680.05 263.25l6.1 19.15q1.45 5 5.8 5.45h6.3q4.1-.25 2.3-5l-8.8-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M652.7 263.25h11.7l-14.85-63.3h-3.35l6.5 63.3"/><path fill="#FF5B80" d="M664.4 263.25h-11.7l1.95 19.15q.35 5 4.65 5.45h6.3q4.15-.25 3.4-5l-4.6-19.6"/><path fill="#317C99" d="M667.4 199.95h-3.35l17.15 63.3h11.7l-25.5-63.3"/><path fill="#FF5B80" d="M681.2 263.25l5.2 19.15q1.2 5 5.55 5.45h6.3q4.1-.25 2.55-5l-7.9-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g><path fill="#317C99" d="M657.15 199.95h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M666.55 263.25h-11.7l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6"/><path fill="#317C99" d="M675 199.95h-3.35l11.7 63.3h11.7L675 199.95"/><path fill="#FF5B80" d="M683.35 263.25l3.55 19.15q.75 5 5.05 5.45h6.3q4.15-.25 3-5l-6.2-19.6h-11.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M703.7 240.5q.3 7.75-.25 15.85m.25-15.85q-.95-24.75-10.5-45.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M702.45 262.5q.9-2.65.9-6.5l-4.15 3.55m4.15-3.55q2.55 2.2 3.45 5.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.7 202.35q4.1 16.3 3.55 34.3-.25 7.7-1.35 15.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M698.6 257.85q1.1-2.55 1.35-6.4l-4.4 3.3m4.4-3.3q2.4 2.35 3.05 5.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.334;0.368;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.6 199.95q6.95 16.55 8.75 35.8.75 7.75.65 15.8m.3 6.4q.15-2.85-1-6.55l-2.95 4.65m2.95-4.65q3.1 1.4 4.95 4.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.331;0.334;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M714.25 226.65q2.9 7.65 5.15 15.95m-5.15-15.95q-9.3-24.5-25.2-42.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;1" values="none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="translate(624.35 146.25)"><animateTransform attributeName="transform" additive="replace" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.794;0.795;1" values="624.35,146.25;624.35,146.25;624.05,145.9;624.05,145.9" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.641;1" values="none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M670.25 159.1q-4.65-5.65-8.4.5l-13.95 23.7 38.2-2.2-15.85-22"/><path fill="#317C99" d="M703.55 205.15l-2.75-3.75-14.7-20.3-38.2 2.2-12.85 21.85-2.65 4.55q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85l22.1-1.3 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M665.9 155.85l4.1-6.75m-4.1 6.75l-.2.35-4.9-6.6m5.1 6.25l-.5-7.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.635;0.641;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M670.25 159.1q-4.65-5.65-8.4.5l-13.95 23.7 38.2-2.2-15.85-22"/><path fill="#317C99" d="M703.55 205.15l-2.75-3.75-14.7-20.3-38.2 2.2-12.85 21.85-2.65 4.55q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85l22.1-1.3 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M660.8 149.6l4.9 6.6.2-.35-.5-7.75m.5 7.75l4.1-6.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.632;0.635;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M687.4 182.975l-17-23.625q-4.65-5.65-8.4.5l-14.95 25.375 40.35-2.25"/><path fill="#317C99" d="M636.85 217.2l22.1-1.3 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9l-2.75-3.75-13.55-18.675-40.35 2.25L635.2 205.4l-2.65 4.55q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M665.55 148.35l.5 7.75 4.1-6.75m-4.1 6.75l-.2.35-4.9-6.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.379;0.632;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M685.55 180.4l-15.15-21.05q-4.65-5.65-8.4.5l-13.2 22.5 36.75-1.95"/><path fill="#317C99" d="M685.55 180.4l-36.75 1.95-16.25 27.6q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85l22.1-1.3 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9l-18.15-25"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M660.95 149.85l4.9 6.6.2-.35-.5-7.75m.5 7.75l4.1-6.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.373;0.379;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M684.15 178.45l-13.75-19.1q-4.65-5.65-8.4.5l-12.1 20.55 34.25-1.95"/><path fill="#317C99" d="M684.15 178.45l-34.25 1.95-17.35 29.55q-1.95 3.3-.3 5.4 1.45 2.1 4.6 1.85l22.1-1.3 39.5-2.15q4.6 0 6.25-2.45 1.55-2.45-1-5.9l-19.55-26.95"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M660.95 149.85l4.9 6.6.2-.35-.5-7.75m.5 7.75l4.1-6.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.373;1" values="none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="matrix(.999 -.053 .053 .999 626.4 160.5)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="14.958s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.224;0.226;0.227;0.234;0.23500000000000001;0.239;0.24;0.242;0.243;0.267;0.268;0.27;0.271;0.273;0.274;0.281;0.28200000000000003;0.287;0.288;0.29;0.291;0.317;0.318;0.32;0.321;0.324;0.325;0.326;1" values="672.85,193.647;672.85,193.647;669.134,171.233;669.134,171.233;669.131,167.639;669.131,167.639;658.793,193.575;658.793,193.575;658.782,188.47;658.782,188.47;658.815,180.808;658.815,180.808;655.379,193.524;655.379,193.524;658.826,186.476;658.826,186.476;658.815,180.808;658.815,180.808;655.379,193.524;655.379,193.524;658.826,186.476;658.826,186.476;658.815,180.808;658.815,180.808;669.081,162.681;669.081,162.681;672.85,193.647;672.85,193.647;669.125,174.882;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;0.332;1" values="0;669.125,174.882;669.125,174.882;669.1,181.75;669.1,181.75" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.224;0.226;0.227;0.234;0.23500000000000001;0.239;0.24;0.242;0.243;0.267;0.268;0.27;0.271;0.273;0.274;0.281;0.28200000000000003;0.287;0.288;0.29;0.291;0.317;0.318;0.32;0.321;0.324;0.325;0.326;1" values="-3.061,0,0;-3.061,0,0;-2.797,0,0;-2.797,0,0;-2.758,0,0;-2.758,0,0;-13.177,0,0;-13.177,0,0;-12.589,0,0;-12.589,0,0;-12.052,0,0;-12.052,0,0;-14.915,0,0;-14.915,0,0;-12.637,0,0;-12.637,0,0;-12.052,0,0;-12.052,0,0;-14.915,0,0;-14.915,0,0;-12.637,0,0;-12.637,0,0;-12.052,0,0;-12.052,0,0;-2.797,0,0;-2.797,0,0;-3.061,0,0;-3.061,0,0;0,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewY" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.224;0.226;0.227;0.234;0.23500000000000001;0.239;0.24;0.242;0.243;0.267;0.268;0.27;0.271;0.273;0.274;0.281;0.28200000000000003;0.287;0.288;0.29;0.291;0.317;0.318;0.32;0.321;0.325;0.326;1" values="0;0;-0.551;-0.551;-0.637;-0.637;3.436;3.436;2.386;2.386;1.39;1.39;5.121;5.121;2.474;2.474;1.39;1.39;5.121;5.121;2.474;2.474;1.39;1.39;-0.551;-0.551;0;0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.224;0.226;0.227;0.234;0.23500000000000001;0.239;0.24;0.242;0.243;0.267;0.268;0.27;0.271;0.273;0.274;0.281;0.28200000000000003;0.287;0.288;0.29;0.291;0.317;0.318;0.32;0.321;0.324;0.325;0.326;1" values="1,1;1,1;1,1.094;1,1.094;1,1.109;1,1.109;1.041,1.035;1.041,1.035;1.044,1.083;1.044,1.083;0.993,1.072;0.993,1.072;1.034,1.043;1.034,1.043;0.991,1.024;0.991,1.024;0.993,1.072;0.993,1.072;1.034,1.043;1.034,1.043;0.991,1.024;0.991,1.024;0.993,1.072;0.993,1.072;1,1.094;1,1.094;1,1;1,1;0.969,1.059;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;0.332;1" values="1;0.969,1.059;0.969,1.059;1,1;1,1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.224;0.226;0.227;0.234;0.23500000000000001;0.239;0.24;0.27;0.271;0.273;0.274;0.287;0.288;0.29;0.291;0.317;0.318;0.32;0.321;0.324;0.325;0.326;1" values="-44.65,-35.55;-44.65,-35.55;-44.7,-35.55;-44.7,-35.55;-44.7,-35.5;-44.7,-35.5;-44.75,-35.5;-44.75,-35.5;-44.75,-35.45;-44.75,-35.45;-44.75,-35.5;-44.75,-35.5;-44.75,-35.45;-44.75,-35.45;-44.75,-35.5;-44.75,-35.5;-44.75,-35.45;-44.75,-35.45;-44.65,-35.5;-44.65,-35.5;-44.65,-35.55;-44.65,-35.55;-44.75,-35.5;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;1" values="0;-44.75,-35.5;-44.75,-35.5" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.214;0.368;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.2 194.15q8.95-3.85 17.3-3.85 8.7 0 14.1 4.25 5.95 4.65 6.75 13.55m-38.15-13.95q-9.15 3.9-16.25 10.7"/><use xlink:href="#a" transform="matrix(.999 -.053 .053 .999 626.4 160.5)"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M753.05 212.3l-3.7-4.2q2.1-2.6 5.5-3.65m-5.5 3.65q3.75-.15 6.45.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.214;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M700.65 181.05q4.45-5.55 10-10.2 7.75-6.3 13-7.15 5.75-.95 5.65 5.35-.3 7.25-8.75 22.45m3.3 5q-.95-2.1-3.4-4.4 2.15-2.65 5.8-3.45m-5.8 3.45q3.45-.45 6.4 1.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.192;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M700.7 182.2q4.7-5.35 10.45-9.75 8-5.95 13.25-6.6 5.8-.7 5.4 5.6-.6 7.2-9.7 22m.35.6q2.15-2.65 5.8-3.45m-5.8 3.45q3.45-.45 6.4 1.15m-6.4-1.15q2.45 2.3 3.4 4.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.189;0.192;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M696.75 182.2q4.5-5.35 10.15-9.75 7.8-5.95 13-6.6 5.8-.7 5.6 5.6-.4 7.2-9 22m.2.45q2.15-2.65 5.8-3.45m-5.8 3.45q3.45-.45 6.4 1.15m-6.4-1.15q2.45 2.3 3.4 4.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.187;0.189;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M693.7 183.9q4.65-5 10.4-9 7.95-5.45 13.2-5.75 5.8-.3 5.45 5.95-.6 7.1-9.6 21.35m.25.55q2.15-2.65 5.8-3.45m-5.8 3.45q3.45-.45 6.4 1.15m-6.4-1.15q2.45 2.3 3.4 4.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.187;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M695.2 184.25q8.6-4.45 13.8-4.1 5.8.4 4.7 6.55-1.45 7-12.1 20.05m-6.4-22.5q-6.15 3.3-11.35 7.7m20.8 19.95q-.75-2.15-3.05-4.65 2.4-2.5 6.1-3m-6.1 3q3.5-.2 6.35 1.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M690.35 191.7q9-3.4 14.15-2.3 5.85 1.15 4.25 7.05-2 6.8-13.75 18.3m-4.65-23.05q-6.4 2.45-11.95 6.2m18.3 22.2q-.25-2.35-1.8-5.25 2.85-1.8 6.6-1.45m-6.6 1.45q3.4.65 5.7 3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M684.15 194.2q9.35-2.2 14.35-.5 5.65 1.85 3.3 7.5-2.8 6.5-15.9 16.45m-1.75-23.45q-6.65 1.6-12.65 4.65m16.1 24.6q-.25-2.35-1.8-5.25 2.85-1.8 6.6-1.45m-6.6 1.45q3.4.65 5.7 3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M673.35 197.55q5.9-3.3 12.6-5.15 9.3-2.55 14.35-1.05 5.7 1.6 3.4 7.35-2.7 6.55-15.7 17.05m1.85 6.05q-.25-2.35-1.8-5.25 2.85-1.8 6.6-1.45m-6.6 1.45q3.4.65 5.7 3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M688.7 192.4q9.35-2.55 14.35-1.05 5.65 1.6 3.2 7.35-2.85 6.55-16.1 17.05m-1.45-23.35q-6.75 1.85-12.75 5.15m15.7 24.1q-.25-2.35-1.8-5.25 2.85-1.8 6.6-1.45m-6.6 1.45q3.4.65 5.7 3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M691.4 179.1q7.95-5.45 13.2-5.75 5.8-.3 5.45 5.95-.6 7.1-9.6 21.35m-9.05-21.55q-5.75 4-10.4 9m22.9 17.55q-.95-2.1-3.4-4.4 2.15-2.65 5.8-3.45m-5.8 3.45q3.45-.45 6.4 1.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.131;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M690.5 200.3q5.8 8.8 11.15 13.75 17.2 15.9 23.4-12.25m-34.55-1.5l-4.8-7.8m35 8.55q1.3-1.55 4.15.35.2-.35.35-.7-.9-5.8-3.8-3.6m4.05 3.5q2.15-7.65-1.45-7.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.103;0.131;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M686.55 191.15q.05 0 11.95 3.2 14.35 3.85 33.25 8.35m0-3.55q.1 2.85.15 2.85-.05.2 0 .35 2.6-5.05 3.15-9.25m-3.15 9.25q-2.3-4.45-4.85-7.8m4.7 4.6q-.1-3-1-6.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.072;0.103;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M686.55 191.15q.05 0 11.95 3.2 14.35 3.85 33.25 8.35m-.2-3.7q.3 2.85.35 2.85 0 .2.05.35 2.25-5.25 2.45-9.5m-2.45 9.5q-2.65-4.3-5.45-7.4m5.05 4.2q-.35-3-1.5-6.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.07;0.072;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M686.65 191.15q.05 0 13.15 3.2 15.75 3.85 36.45 8.35m.6-3.6q.05 2.7.1 2.7v.35q2.25-5.1 2.5-9.4m-2.5 9.4q-2.5-4.45-5.3-7.1m5.2 4.05q-.1-2.75-1.7-6.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.067;0.07;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M738 199.85q-.95 2.75-.9 2.8-.1.15-.15.3 4.35-4 5.1-8.3m-5.1 8.3q-.6-4.85-3.05-8.3m4.1 5.2q.9-2.8 0-6.8m-51.35-1.9q.35-.65 15.3 1.6 14.95 2.2 34.3 9.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.064;0.067;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M690.5 200.3q5.8 8.8 11.15 13.75 17.2 15.9 23.4-12.25m-34.55-1.5l-4.8-7.8m35 8.35q1.3-1.55 4.15.35.2-.35.35-.7-.9-5.8-3.8-3.6m4.05 3.5q2.15-7.65-1.45-7.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.036;0.064;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M689.05 200.55q6.6 9.75 13.1 15.65 21 18.9 33.1-7.85m-46.2-7.8l-5.45-8.65m58 16.85q-1.45 1.85-6-.3m0-5.1q1 1.45-.15 4.7.35.15.75.25 4.1-1.8 3.65-4.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.031;0.036;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M678.5 195.4q4-4 9.95-6.25 8.3-3.05 15-1.1 7.5 2.1 9.45 9.25 2.15 8.15-4 21.1m3.75 4.75q-1.15-1.9-3.9-3.9 1.9-2.85 5.4-4.1m-5.4 4.1q3.4-.85 6.55.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.025;0.031;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M679.9 191.75q3.5-5.9 8.3-11 6.8-6.95 11.8-8.25 5.7-1.5 6.5 4.75.95 7.05-5.1 22.9m4.4 3.8q-1.45-1.7-4.4-3.3 1.4-3.1 4.8-4.9m-4.8 4.9q3.25-1.4 6.5-.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.025;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.85 200.8q3.9 6.65 6.5 14.1 1.5 4.45 1.9 7.45.5 4-.75 6.6-2.8 2.55-8.05-1.85-5.3-4.4-11.85-14.1m-5.55 1.2q.65-3.1 5.4-1.35-1.45-4.35-5.75-4.45m5.75 4.45v.05q-2.25 1.6-1.6 3.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.83;0.844;0.864;0.877;0.897;0.911;0.93;0.944;0.964;0.978;0.997;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.15 200.8q4.2 6.65 7.05 14.1 1.65 4.45 2.05 7.45.55 4-.8 6.6-3.05 2.55-8.75-1.85-5.75-4.4-12.85-14.1m-5.75 1.2q.65-3.1 5.4-1.35-1.45-4.35-5.75-4.45m5.75 4.45v.05q-2.25 1.6-1.6 3.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.827;0.83;0.861;0.864;0.894;0.897;0.928;0.93;0.961;0.964;0.994;0.997;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M695.7 200.8q4.2 6.65 6.85 14.1 1.5 4.45 1.7 7.45.35 4-1.4 6.6-3.75 2.55-9.85-1.85-6.2-4.4-13.5-14.1m-7.65.45q1.45-3.75 6-1-4.8-3.2-6.25-6.8m6.25 6.8q.5.3 1.05.65l.35.3q.2.1.35.2-6.05-.2-6.1 3.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.816;0.825;0.85;0.858;0.883;0.891;0.916;0.925;0.95;0.958;0.983;0.992;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M695.75 200.8q4.75 6.65 8 14.1 1.9 4.45 2.35 7.45.65 4-.9 6.6-3.5 2.55-10-1.85-6.55-4.4-14.65-14.1m-8.2.4q.8-4.2 7.05-1.05-6.15-3.4-8.55-5.65m8.55 5.65l.45.25q.2.1.35.15-6.1.45-5.65 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.813;0.816;0.825;0.827;0.847;0.85;0.858;0.861;0.88;0.883;0.891;0.894;0.914;0.916;0.925;0.928;0.947;0.95;0.958;0.961;0.981;0.983;0.992;0.994;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M695.75 200.8q4.75 6.65 8 14.1 1.9 4.45 2.35 7.45.65 4-.9 6.6-3.5 2.55-10-1.85-6.55-4.4-14.65-14.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.811;0.813;0.844;0.847;0.877;0.88;0.911;0.914;0.944;0.947;0.978;0.981;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.15 200.8q4.2 6.65 7.05 14.1 1.65 4.45 2.05 7.45.55 4-.8 6.6-3.05 2.55-8.75-1.85-5.75-4.4-12.85-14.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.802;0.811;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.75 200.75q2.85 7.3 4.2 15.2.75 4.65.55 7.7-.25 4-2.05 6.3-3.5 1.9-8.2-3.5-4.8-5.4-9.9-16.35m-1.75-7.3q3.25 2.8 1.65 7.15v.05q-2.8-.25-3.7 1.95m3.7-2q-2.55-4.4-5.05-2.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.799;0.802;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M697.15 200.8q1.7 2.7 4.1 9.05 3.2 8.45 4.2 15.6 2.95 21.5-14.7 22.4m-5.65 2.2q.9-2.7 4.85-2.5-1.9-4-6.65-4.25m6.65 4.25q-1.8 2.2-1.7 5.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.794;0.799;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677 187.25q-3.35-13.6-7.95-21.65-4.2-7.4-8.75-9-4.7-1.65-10.8 2.2-6.85 4.35-14.65 15.4m-.05.65v-.3m0 .3q-2.25 2.85-2.55 5.75m2.8-6.1q-.15.15-.25.35m.25-.35q.15 3.55 1.3 6.25m-1.55-6.2q.1-.05.25-.05m-6.3 4.1q2.9-3.25 6.05-4.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.29;0.318;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677 192.55q-3.35-12.95-7.95-20.6-4.2-7.05-8.75-8.6-4.7-1.55-10.8 2.1-6.85 4.15-14.65 14.65m-.35.65v-.3m0 .3q-2.3 2.85-2.6 5.75m2.85-6.1q-.15.15-.25.35m.25-.35q.1 3.55 1.25 6.25m-1.5-6.2q.1-.05.25-.05m-6.35 4.05q2.9-3.25 6.1-4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.287;0.29;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.95 185.2q-5.45-5.3-10.95-6.3-5.6-1.05-12.5 2.05-7.75 3.45-16.05 11.9m39.5-7.65q5.95 5.85 10.95 15.75M623.65 194v-.3m0 .3q-2.3 2.85-2.6 5.75m2.85-6.1q-.15.15-.25.35m.25-.35q.1 3.55 1.25 6.25m-1.5-6.2q.1-.05.25-.05m-6.35 4.05q2.9-3.25 6.1-4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677 187.25q-3.35-13.6-7.95-21.65-4.2-7.4-8.75-9-4.7-1.65-10.8 2.2-6.85 4.35-14.65 15.4m-.55 1.25v-.3m0 .3q-1.85 2.85-2.4 5.75m2.4-5.75q.1 3.4 1.35 6.05m-1.1-6.4q-.15.15-.25.35m0-.3q.1-.05.25-.05m-5.75 4.65q2.3-3.85 5.5-4.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.273;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677 192.55q-3.35-12.95-7.95-20.6-4.2-7.05-8.75-8.6-4.7-1.55-10.8 2.1-6.85 4.15-14.65 14.65m-.8 1.45v-.3m0 .3q-2 2.65-2.7 5.5m2.7-5.5q-.1 3.4 1 6.15m-.75-6.5q-.15.15-.25.35m0-.3q.1-.05.25-.05m-5.95 4.1q2.5-3.6 5.7-4.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.95 185.2q-5.45-5.3-10.95-6.3-5.6-1.05-12.5 2.05-7.75 3.45-16.05 11.9m39.5-7.65q5.95 5.85 10.95 15.75m-50.65-7.5q-3.35-.05-6.3 2.4m6.3-2.4q.2 3.45 1.3 5.45m-1.3-5.45q-2.5 2.5-3.2 5.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677 187.25q-3.35-13.6-7.95-21.65-4.2-7.4-8.75-9-4.7-1.65-10.8 2.2-6.85 4.35-14.65 15.4m1.35 6.35q-1.2-1.9-1.6-5.35-2.35 2.6-2.9 5.8m2.9-5.8q-3.35.15-6.2 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677.35 195.05q-5.4-12.9-11.35-20.2-5.4-6.65-10.4-7.6-5.15-.8-11.1 3.85-6.6 5.35-13.3 17.45m2.05 6.05q-1.35-1.75-2.15-5.2-2.05 2.9-2.25 6.1m2.25-6.1q-3.3.55-5.85 3.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g><use xlink:href="#a" transform="rotate(-11.76 1054.758 -2860.732)"><animateTransform attributeName="transform" additive="replace" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.146;0.148;0.149;0.153;0.154;0.17;0.171;0.175;0.176;0.181;0.182;0.187;0.188;0.189;0.19;0.192;0.193;1" values="659.635,181.755;659.635,181.755;658.515,181.865;658.515,181.865;655.555,181.832;655.555,181.832;653.889,182.156;653.889,182.156;658.817,184.557;658.817,184.557;663.498,182.086;663.498,182.086;672.296,177.565;672.296,177.565;675.25,177.699;675.25,177.699;679.29,177.713;679.29,177.713;679.114,177.897;679.114,177.897" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.146;0.148;0.149;0.153;0.154;0.17;0.171;0.175;0.176;0.181;0.182;0.187;0.188;0.189;0.19;0.192;0.193;1" values="-11.854,0,0;-11.854,0,0;7.339,0,0;7.339,0,0;5.872,0,0;5.872,0,0;6.702,0,0;6.702,0,0;-0.518,0,0;-0.518,0,0;-4.901,0,0;-4.901,0,0;-11.854,0,0;-11.854,0,0;-13.428,0,0;-13.428,0,0;-11.685,0,0;-11.685,0,0;-14.156,0,0;-14.156,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewY" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.149;0.153;0.154;0.17;0.171;0.175;0.176;0.187;0.188;0.189;0.19;1" values="0;0;1.443;1.443;2.806;2.806;2.805;2.805;0;0;-2.064;-2.064;-3.678;-3.678" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.146;0.148;0.149;0.153;0.154;0.175;0.176;0.181;0.182;0.187;0.188;0.189;0.19;1" values="0.999,0.999;0.999,0.999;1,1;1,1;1.003,0.997;1.003,0.997;1.005,0.995;1.005,0.995;1,1;1,1;0.999,0.999;0.999,0.999;1.007,0.993;1.007,0.993;1.014,0.986;1.014,0.986" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.146;0.148;0.149;0.153;0.154;0.17;0.171;0.175;0.176;0.181;0.182;0.187;0.188;0.189;0.19;0.192;0.193;1" values="-44.7,-35.55;-44.7,-35.55;-44.75,-35.6;-44.75,-35.6;-44.8,-35.55;-44.8,-35.55;-44.7,-35.55;-44.7,-35.55;-44.6,-35.55;-44.6,-35.55;-44.7,-35.55;-44.7,-35.55;-44.65,-35.6;-44.65,-35.6;-44.7,-35.5;-44.7,-35.5;-44.65,-35.5;-44.65,-35.5;-44.65,-35.55;-44.65,-35.55" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M640.55 204.1q-2.9 7.15-4.55 14.9-.95 4.7-.95 7.7 0 4 1.55 6.45 3.1 2.05 7.7-3.1 4.65-5.15 9.85-15.7m4.85-6q-4.2.9-4.8 5.5 4.35-2.65 5.6.25m-5.6-.25v.05q2.55 1.1 2.35 3.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.83;0.844;0.864;0.877;0.897;0.911;0.93;0.944;0.964;0.978;0.997;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.05 204.1q-3.2 7.15-5 14.9-1 4.7-1 7.7 0 4 1.7 6.45 3.35 2.05 8.4-3.1 5.1-5.15 10.8-15.7m5.15-6q-4.2.9-4.8 5.5 4.35-2.65 5.6.25m-5.6-.25v.05q2.55 1.1 2.35 3.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.827;0.83;0.861;0.864;0.894;0.897;0.928;0.93;0.961;0.964;0.994;0.997;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M642.55 204.1q-3.9 7.15-6.05 14.9-1.2 4.7-1.2 7.7 0 4 2.05 6.45 4.05 2.05 10.2-3.1 6.2-5.15 13.1-15.7m6.5 2.5q0-3.35-6.1-2.95.15-.1.35-.2l.4-.3q5.65-4.2 7.75-6.75m-7.75 6.75q5.75-4 7.15.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.825;0.827;0.858;0.861;0.891;0.894;0.925;0.928;0.958;0.961;0.992;0.994;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M667.8 216.85q-.05-3.35-6.1-2.95.15-.1.35-.2l.35-.3q.55-.4 1.05-.7 4.8-3.4 6.25-7.05m-6.25 7.05q4.55-2.9 6 .8m-20.1 16.55q5.85-5.15 12.05-15.7m-12.05 15.7q-5.85 5.15-10 3.1-2.2-2.45-2.5-6.45-.2-3 .7-7.7 1.65-7.75 5.05-14.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.816;0.825;0.85;0.858;0.883;0.891;0.916;0.925;0.95;0.958;0.983;0.992;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M667.15 216.85q0-3.35-6.1-2.95.15-.1.35-.2l.4-.3q5.65-4.2 7.75-6.75m-7.75 6.75q5.75-4 7.15.1m-26.4-9.4q-3.9 7.15-6.05 14.9-1.2 4.7-1.2 7.7 0 4 2.05 6.45 4.05 2.05 10.2-3.1 6.2-5.15 13.1-15.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.813;0.816;0.847;0.85;0.88;0.883;0.914;0.916;0.947;0.95;0.981;0.983;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M669.75 206.95q-4.9 1.15-8.5 6.6 5.35-4.45 6.8-.8m-6.8.8q4.6-.35 4.6 2.55m-23.3-12q-3.9 7.15-6.05 14.9-1.2 4.7-1.2 7.7 0 4 2.05 6.45 4.05 2.05 10.2-3.1 6.2-5.15 13.1-15.7m13-1.75q1.2-3.7 6.8.4-3.95-5.2-8.85-6.05m8.85 6.05q-4.6-.1-4.45 2.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.811;0.813;0.844;0.847;0.877;0.88;0.911;0.914;0.944;0.947;0.978;0.981;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.05 204.1q-3.2 7.15-5 14.9-1 4.7-1 7.7 0 4 1.7 6.45 3.35 2.05 8.4-3.1 5.1-5.15 10.8-15.7m5.15-6q-4.2.9-4.8 5.5 4.35-2.65 5.6.25m-5.6-.25v.05q2.55 1.1 2.35 3.5m19.45-3.2q.65-3.1 5.4-1.35-1.45-4.35-5.75-4.45m5.75 4.45v.05q-2.25 1.6-1.6 3.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.802;0.811;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M649.05 228.9q4.1-5.95 8-17.3m-8 17.3q-4.15 5.9-7.8 4.5-2.05-2.2-2.7-6.1-.55-3-.35-7.75.5-7.95 2.45-15.55m21.85 4.5q-2.5-1.95-5.05 2.45v.05q2.8-.25 3.7 1.95m-3.7-2q-1.6-4.35 1.65-7.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.799;0.802;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M654.2 227.25q4.15-6.65 7.4-18.7m-7.4 18.7q-4.15 6.65-8.6 5.85-2.65-1.75-3.85-5.55-.95-2.85-1.3-7.7-.35-8 1.1-15.95"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M667.45 206.45q-2.7.25-5.95 2.7 2.8.35 5.45 1.6m-5.45-1.6q.5-3.35 3.2-5.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.794;0.799;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M652.25 230.6q7.8-3.7 15.4-20.6m-15.4 20.6q-3.1 1.45-5.5.3-2.25-1-3.1-3.85-1.5-4.8-1.25-11.2.15-4.25 1.35-11.8m27.25-.8q-1.75 2.15-3 5.8l5.25-2.1m-5.25 2.1q-1.7-2.9-1.5-6.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.641;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M665.25 232.45q-4.05 7.55-9.7 9-5.25 1.35-9.45-3.05-4.4-4.6-5.3-13.15-1-9.65 2.95-21.4m26.55 23.55q-2.35 1.5-4.7 4.55l5.65-.25m-5.65.25q-.7-3.25.65-6.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.635;0.641;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M646.3 242.75q-.35-3.35-3-10.95-2.5-7.25-2.8-12.1-.4-7.55 3.25-15.85m2.55 38.9q.6 6.15-2.7 12.25m-4.55 6.1q2.05-1.95 3.75-5.4l-5.45 1.35m5.45-1.35q1.3 3.05.65 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.632;0.635;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M640.25 211q-6.05 14.8-6.8 31.7-.3 6.7.25 13.75m1.5 7.4q-.95-2.7-.95-6.5-2.55 2.15-3.45 5.5m3.45-5.5l4.25 3.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.632;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M640.2 206.45q-5.35 15.05-5.3 31.95 0 6.7.9 13.75m1.45 7.25q-.9-2.75-.85-6.55-2.55 2.2-3.5 5.5m3.5-5.5l4.25 3.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.334;0.368;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M640.25 206.5q-6.05 14.8-6.8 31.7-.3 6.7.25 13.75m-.15 7.85q-.3-2.85.6-6.55-3 1.55-4.65 4.6m4.65-4.6l3.3 4.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.331;0.334;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.75 201.85q-10.45 13.1-16.6 29.9-2.5 6.7-4.3 13.95m-2.35 6.95q.35-2.8 2.1-6.2-3.25.8-5.6 3.4m5.6-3.4l2.15 5.1m96.4-8.85q3.35 0 6.2 2.05m-6.2-2.05q2.45 2.9 3.45 5.55m-3.45-5.55l-.95 5.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M720.3 167.8q-1.95-6.35-9.7-9.6m9.7 9.6q1.15 4.05-.25 8.8-.6 1.9-1.6 3.95-3.25 6.8-10.35 12.9-7.25 6.2-16.2 9.9m-67.85-33.5q-2.45 1.4-4.85 4.3l5.55.05m-5.55-.05q-.55-3.3.9-6.45m86.2-15.35q2.6 2.3 3.4 5.6l-5.1 2.2m5.1-2.2q-3.35-1.7-6.15-2.05m-90.1 31.6q-.85-6.55 4.85-12.7m-4.85 12.7q.9 5.9 6.9 10.9 5.7 4.85 14.75 7.5 4.85 1.4 9.9 2 2.4.25 4.9.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.32;0.326;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M654.45 150.7q7.95 5.05 11.85 8.9m-11.85-8.9q-9.15-5.85-14.8-7.05-16.15-3.55 7.4 32m24.1-10.55q-1.55-2.4-4.6-4.6l.25 5.55m-.25-5.55q3.3-.75 6.5.5"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M686.1 163.2q-3.3-8.9-8.75-14.15-5.7-5.6-12.2-5.95-7.1-.3-13.65 6.05m34.6 14.05q3.3 8.95 3.3 18.7m-38.45-32.05q-3.25 0-6.9 2.35m6.8-2.05l.1-.3m-.1.3q-2.9 2.2-3.9 4.9m4.25-5.15q-.2.1-.35.25m.35-.25q-.75 3.5-.35 6.35m.1-6.4q.1 0 .25.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.318;0.32;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M635.6 209.05q-18.35-10.9-20.7-21.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;0.287;0.29;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M632.4 220.25q-19.1-12.65-20.2-22.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;0.281;0.287;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M635.6 204.6q-18.35-11.45-20.7-22.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;0.273;0.281;0.29;0.318;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M633.85 214.55q-16.35-13.35-16.35-24.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M638.4 201.25q-16.35 6.95-16.35 15.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M637.55 202q-15.5 10.05-15.5 18.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M670.65 169.45q-7.75.9-15.85 6.3-8.2 5.2-14 13.2m29.85-19.5q8.25-.95 13.8 2.9 4.8 3.5 6.75 9.95.4 1.3.65 2.7.15.6.25 1.25m-.8 1.4q.05-.55.15-1.1m.3 1.2q-.25-.05-.45-.1m1.25.25q-.4-.1-.8-.15m.8.15q.75.2 1.35.35m-2.45-1.7q.55.65 1.1 1.35m-1.1-1.35l.3 1.2"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M644.25 179.4q-1.6 1.25-3.25 2.5m3.25-2.5q.3 0 .55.05"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M688.1 168.15q-3.3-9.05-8.75-14.35-5.7-5.7-12.2-6.05-7.1-.3-13.65 6.15m34.6 14.25q3.3 9.05 3.3 18.95m-38.35-26.9q-.6-2.15-.2-5.55-2.95 1.9-4.2 4.95m4.2-4.95q-3.35-.65-6.7 1.15"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M692.55 187.9q2.3 3.1 3.6 6.6m-4.4-6.75q.9 4.5.55 8.65m-4.2-1.75q2.5-3.05 3.2-7"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M652.45 157.45q7.95 5.15 11.85 9.05m-11.85-9.05q-9.15-5.9-14.8-7.15-16.15-3.6 7.4 32.45m20.4-10.1l-.75-5.6q3.15-1.05 6.55-.05m-6.55.05q3.15 1.95 4.95 4.2"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M727.35 150.35q-.1-.004-.2 0 3.3 2.4 5.35 5.35m-5.35-5.35q1.2 3.65 1.05 7.15m-.85-7.15q-6-5.1-12.6-3.95-6 1-11.2 6.75-5.05 5.35-7.95 13.7-2.95 8.5-2.95 17.3m34.7-33.8q3.987-.112 7.45 1.4m-80.4 16.35q5.3-8.1 6.35-16.4 1.15-8.6-2.4-14.95-4.15-7-13.25-9.6-4.8.25-7.7 2.8m7.7-2.8q-5-2.1-8.6-1.5m8.6 1.5q-3.6-4.85-7.6-6.05m16.9 47q-4.25 6.45-10.15 11.3m-45.4-2.55q-5.1 6.2-4.55 15.55m4.55-15.55q4.7-5.45 13.1-7.2 8-1.8 17.3.55 7.45 1.85 13.9 5.85m-46.5 25q-1.6-3.75-2.2-8.3-1.55 4.15-1.75 8.3m1.75-8.3q1.85 3.25 4.95 5.25m82.85-11.4q-9.7-.35-17.35 2.5-8.05 3.05-11.35 8.6-3.65 6.3-.85 14.45m29.55-25.55q4.25.15 8.25.9.4.1.8.15m-31.6 29.1q-3.05-.9-4.8-2.75-.8-.95-1.65-1.95.45 1.7 1.05 3.25.9 2.35 2.25 4.35m-3.3-7.6q-1 3.7-.85 7.25.05.9.2 1.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.234;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M691.85 188.3q2.05-.4 2.05 0m-2.05 0q.15.6.25 1.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M685.25 172.4q-4.65-8.3-10.9-12.6-6.55-4.6-13-3.9-7.05.8-12.5 8.1m36.4 8.4q4.7 8.25 6.25 17.9m-41.95-20.25q-.95-2.05-1.1-5.45-2.6 2.35-3.35 5.55m3.35-5.55q-3.4-.1-6.45 2.2"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M651.45 161.2q7.95 5.05 11.85 8.9m-11.85-8.9q-9.15-5.85-14.8-7.05-16.15-3.55 7.4 32m20.25-9.95l-.75-5.6q3.15-1.05 6.55-.05m-6.55.05q3.15 1.95 4.95 4.2"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M601.85 180.05q-5.1 6.2-4.55 15.55m4.55-15.55q4.7-5.45 13.1-7.2 8-1.8 17.3.55 7.45 1.85 13.9 5.85m-46.5 25.05q-1.6-3.75-2.2-8.3-1.55 4.15-1.75 8.3m1.75-8.3q1.85 3.25 4.95 5.25m77.1-39.5q-6.55-1.6-13.95 2.25-6.9 3.5-12.6 11.35-5.9 7.7-8.5 17.1m35.05-30.7q5.7 1.55 9.75 6.75.85 1.15 1.55 2.3m7.75 6.15q-3.3-2.55-7.15-4.6 2.6 3.75 3.9 7.7m-3.9-7.7q.3 4.65-.65 7.8"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M727.65 154.35q3.3 2.4 5.35 5.35m-5.35-5.35q4.1-.15 7.65 1.4m-7.7-1.55q0 .05.05.15m-.3-.2q.1 0 .25.05m-32 16.25q-2.95 8.35-2.95 17.05m10.9-30.6q-5.05 5.3-7.95 13.55m19.15-20.2q-6 1-11.2 6.65m23.8-2.75q-6-5-12.6-3.9m12.9 4.1l-.3-.2m.3.2q1.2 3.65 1.05 7.15m-74.3 10.15q5.3-8 6.35-16.15 1.15-8.5-2.4-14.75-4.15-6.9-13.275-9.4.007.026.025.05-4.8.25-7.7 2.8m7.7-2.8q-5-2.1-8.6-1.5m8.575 1.45q-3.595-4.806-7.575-6m16.9 46.3q-4.25 6.35-10.15 11.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.226;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.65 187.5q-.85-6.55 4.85-12.7m-4.85 12.7q.9 5.9 6.9 10.9 5.7 4.85 14.75 7.5 4.85 1.4 9.9 2 2.4.25 4.9.35"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M691.8 205.55q3.4 5.65 1.3 13.4m-1.3-13.4q-3.1-5.1-9.95-7.4-6.6-2.3-14.95-1.3-6.65.8-12.9 3.4m39.65 27.6q.25-4.45-1.1-8.9-1 5-3.45 8.7m3.45-8.7q-2.5 3.8-6.75 5.2"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M625.6 174.7l-5.65-.05q-.55-3.3.9-6.45m-.9 6.45q2.35-2.85 4.85-4.3"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M711.7 165.95q2.95-1.65 6.65-2.5.15.05.3.15-.1-.2-.25-.35-4-1.3-7.7-1.4m7.7 1.4q-2.35-3.55-5.75-5.8m16.1 15.3q-1.95-6.35-9.7-9.6m9.7 9.6q1.6 5.7-1.85 12.75-3.25 6.8-10.35 12.9-7.25 6.2-16.2 9.9m-32.8-31.3q.2-4 2.35-7.05h-.1q-3.8 2.15-6.55 5.15m6.55-5.15q-4.4.2-8.25 1.2m21.3-5.3q-6.4-1.55-13.15 3.5m13.15-3.5q5.75 1.5 10.15 8 4.2 6.2 5.9 15.45 1.7 9.4.4 19"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.22;0.223;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M657.25 182.65q7.95 4.6 11.85 8.1m-11.85-8.1q-9.15-5.35-14.8-6.45-16.15-3.25 7.4 29.25m38.05 19q-2.05 9.25-.55 16.55 1.5 7.7 6.25 11.3 5.3 3.95 13.55 1.9m-19.25-29.75q2.05-9.3 7.05-17.65m-24.45-9.5l-.6-5.6q3.2-.95 6.55.15m-6.55-.15q3.1 2 4.8 4.35"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M707.55 248.45l-.6 5.6q3.1-2 4.8-4.35m-4.8 4.35q3.2.95 6.55-.15"/><path fill="none" stroke="#0D2B35" stroke-opacity=".498" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M666.95 242.45q1.05 4 3.45 7.15m-3.25-7.1q-.1-.05-.2-.05m.2.05q2.85 2.75 6.1 4.5m-6.1-4.5q4 .2 6.65-.45m-6.9.2l.25.25m-.2-.05q0-.1-.05-.2m12.9-32.4q-8.7 3.55-13.9 8.95-5.4 5.7-5.7 11.65-.15 6.55 6.2 12.1m13.4-32.7q8.8-3.65 18.45-4.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.214;0.22;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M621.05 214.25q.9-5.65 6-14.95 4.4-8.1 7.75-12.1m-13.75 27.05q-2.8 16.25 28.95-8.2m-9.6-20.7L635 187q-1.5-2.95-1.05-6.5M635 187q1.4-3.45 3.35-5.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.214;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M653 228.65l-.65-32.85-13.95 26.95q-1.6 3.4.2 5.45 1.6 2.05 4.75 1.5l9.65-1.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.32;0.326;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M649.2 201.05q.45-17.5-1.15-34.8L634.8 194.1l-.2 1.05q-1.6 3.4.2 5.45 1.6 2.05 4.75 1.5l9.65-1.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.318;0.32;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M630 215.2l-.1 1.05q-1.2 3.6.8 5.45 1.85 1.8 4.9.95l9.3-2.125.15-.025-6.05-34.8-8.75 28.7-.25.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.312;0.318;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M630.7 221.7q1.85 1.8 4.9.95l9.45-2.15-6.05-34.8-9 29.5-.1 1.05q-1.2 3.6.8 5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.29;0.312;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M630.9 225.5q1.85 1.8 4.9.95l9.45-2.15-5.8-34.8-9.25 29.3-.1 1.25q-1.2 3.6.8 5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.287;0.29;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M631.6 234.05l9.45-2.15-6-35-9.15 30.75q-1.2 3.6.8 5.45 1.85 1.8 4.9.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M629.9 216.25q-1.2 3.6.8 5.45 1.85 1.8 4.9.95l9.45-2.15-6-35-9.15 30.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.273;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M630.7 225.5q1.85 1.8 4.9.95l9.45-2.15-5.6-34.6-9.55 30.35q-1.2 3.6.8 5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M631.4 234.05l9.45-2.15-5.6-34.6-9.55 30.35q-1.2 3.6.8 5.45 1.85 1.8 4.9.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M629.7 216.15q-1.2 3.6.8 5.45 1.85 1.8 4.9.95l9.45-2.15-5.6-34.6-9.55 30.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M629 229.6q1.85 1.8 4.9.95l9.45-2.15-5.6-34.6-9.55 30.35q-1.2 3.6.8 5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M629.95 222.4l-1.75 5.05q-1.2 3.6.8 5.45 1.85 1.8 4.9.95l9.45-2.15q1.2-23.4-5.15-34.15l-8.25 24.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M649.3 206.55l-1.25-35.3q-2.45 4.95-8.05 17.1-2.8 6.05-5.1 11.15l-.25 1.25q-1.6 3.55.2 5.55 1.7 2 4.85 1.4l9.6-1.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.234;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M636.75 199l-2.25 4.8q-1.65 3.4.2 5.45 1.65 1.9 4.75 1.4l9.6-1.2-1.45-33.8L636.75 199"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.226;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M652.8 228.65l.15-33.7-12.05 23-2.4 4.7q-1.8 3.35-.05 5.4 1.55 2 4.65 1.6l9.7-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.223;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M661.95 194.3q-6.6-1.5-13.55-1.55-9.55.05-14.2 2.75-5.2 3.05-1.65 8 4.05 5.55 19 12.3m-2.95 6.2q.3-2.2 1.95-5.15-3.5.6-5.75 3.1m5.75-3.1q-2.9-1.85-6.7-1.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.192;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M646.6 192.05q-9.6-.2-14.35 2.45-5.25 2.95-1.85 7.9 3.95 5.75 18.75 12.75m-2.55-23.1q6.95.2 13.45 1.9m-17.3 25.25q2.2-2.55 5.7-3.2-2.95-1.8-6.75-1.35m6.75 1.35q-1.6 3-1.85 5.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.189;0.192;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M643.05 192.05q-9.6-.3-14.25 2.3-5.2 2.9-1.7 7.9 4.05 5.75 19 12.95m-3.05-23.15q6.95.3 13.5 2.1m-17 25.15q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.187;0.189;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M640.35 190q-9.6-.95-14.35 1.35-5.25 2.55-1.9 7.8 3.9 6 18.7 14.15m-2.45-23.3q6.95.75 13.45 2.95m-17.35 24.5q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.187;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M643.1 194.95q-6.2-2.95-13-4.55-9.4-2.15-14.35-.4-5.55 1.9-2.85 7.5 3.1 6.45 16.85 16.35m-6.1 3.95q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M637.75 195.1q-5.95-3.7-12.65-6.15-9.35-3.25-14.45-2.15-5.7 1.2-3.4 7.05 2.6 6.75 15.65 18.3m-6.35 4.1q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M606 178.25q-5.85.5-4.25 6.6 1.7 7 13.2 20.1m-8.95-26.7q5.2-.4 14.05 4 6.35 3.25 11.8 7.65m-19.2 20.9q.3-2.2 1.9-5.15-3.5.6-5.7 3.1m5.7-3.1q-2.9-1.85-6.7-1.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M607.35 179.9q-5.8.7-4.15 6.75 1.85 6.95 13.5 19.55m-9.35-26.3q5.2-.6 14.1 3.45 6.4 3 11.95 7.2m-23 19.5q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M635.95 190.1q-5.45-4.2-11.75-7.2-8.8-4.05-14-3.45-5.85.7-4.35 6.75 1.65 6.95 13 19.55m-6.1 3.85q2.2-2.5 5.7-3.1-2.9-1.85-6.7-1.45m6.7 1.45q-1.6 2.95-1.9 5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M641.1 197.15q-6.5-2.2-13.45-2.95-9.6-.95-14.35 1.35-5.25 2.55-1.9 7.8 3.9 6 18.7 14.15m-.05 5.65q-.45-2.2.15-5.5-3.1 1.7-4.45 4.75m4.45-4.75q-3.35-.85-6.8.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M657.6 196.85q1.2 2.85 3.35 4.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.799;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M667.45 197.5q1.85 1.85 4.1 2.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.794;0.799;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M677.3 194.7q.35.65.15 2.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.641;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M672.1 201.1q.35.65.15 2.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.632;0.641;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M680.9 203.3l.6 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.373;0.379;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M680.9 200l.6 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.373;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M680.9 196.35l.6 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.331;0.368;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M680.6 190.35l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M648.511 212.697l.162-4.092"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;0.287;0.29;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M645.424 220.055l.037-4.128"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;0.281;0.287;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M648.511 208.425l.162-4.297"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;0.273;0.281;0.29;0.318;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M647.958 216.307l.171-4.328"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M647.958 220.055l.171-4.128"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M678.4 183.75q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1m-12.85 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.418q4.082-.473 6.463-3.746m18.454 1.678q-3.925-.45-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.802;1" values="none;inline;inline"/></g><g display="none"><path fill="#1A3F4E" d="M679.3 185.85q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-14.65 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.418q4.082-.473 6.463-3.746m18.454 1.678q-3.925-.45-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.794;0.802;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M679.3 186.2q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-14.65 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.768l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.791;0.794;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M679.3 188.4q0-.3-.9-.5-.8-.2-2.05-.2-1.2 0-2.1.2-.8.2-.8.5t.8.5q.9.25 2.1.25 1.25 0 2.05-.25.9-.2.9-.5m-14.85.6q.9-.2.9-.5 0-.25-.9-.45-.8-.2-2.05-.2-1.2 0-2.1.2-.85.2-.85.45 0 .3.85.5.9.2 2.1.2 1.25 0 2.05-.2"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.786;0.791;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M679.3 187.6q0-.6-.9-1.1-.8-.45-2.05-.45-1.2 0-2.1.45-.8.5-.8 1.1 0 .65.8 1.1.9.45 2.1.45 1.25 0 2.05-.45.9-.45.9-1.1m-14.85 1.15q.9-.35.9-.9 0-.5-.9-.9-.8-.35-2.05-.35-1.2 0-2.1.35-.85.4-.85.9 0 .55.85.9.9.4 2.1.4 1.25 0 2.05-.4"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.783;0.786;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M673.45 186.2q0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1m-12.95-1.05q-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.768l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.705;0.763;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M678.4 187.9q-.8-.2-2.05-.2-1.2 0-2.1.2-.8.2-.8.5t.8.5q.9.25 2.1.25 1.25 0 2.05-.25.9-.2.9-.5t-.9-.5m-13.05.6q0-.25-.9-.45-.8-.2-2.05-.2-1.2 0-2.1.2-.85.2-.85.45 0 .3.85.5.9.2 2.1.2 1.25 0 2.05-.2.9-.2.9-.5"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.68;0.685;0.766;0.772;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M678.4 186.5q-.8-.45-2.05-.45-1.2 0-2.1.45-.8.5-.8 1.1 0 .65.8 1.1.9.45 2.1.45 1.25 0 2.05-.45.9-.45.9-1.1 0-.6-.9-1.1m-13.05 1.35q0-.5-.9-.9-.8-.35-2.05-.35-1.2 0-2.1.35-.85.4-.85.9 0 .55.85.9.9.4 2.1.4 1.25 0 2.05-.4.9-.35.9-.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.677;0.68;0.763;0.766;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M676.35 183.3q-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8m-11.7 1.85q-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.768l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.666;0.677;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M676.35 187.7q-1.2 0-2.1.2-.8.2-.8.5t.8.5q.9.25 2.1.25 1.25 0 2.05-.25.9-.2.9-.5t-.9-.5q-.8-.2-2.05-.2m-11.9.35q-.8-.2-2.05-.2-1.2 0-2.1.2-.85.2-.85.45 0 .3.85.5.9.2 2.1.2 1.25 0 2.05-.2.9-.2.9-.5 0-.25-.9-.45"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.66;0.666;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M676.35 186.05q-1.2 0-2.1.45-.8.5-.8 1.1 0 .65.8 1.1.9.45 2.1.45 1.25 0 2.05-.45.9-.45.9-1.1 0-.6-.9-1.1-.8-.45-2.05-.45m-11.9.9q-.8-.35-2.05-.35-1.2 0-2.1.35-.85.4-.85.9 0 .55.85.9.9.4 2.1.4 1.25 0 2.05-.4.9-.35.9-.9 0-.5-.9-.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.356 183.536l7.4-1.023m17.612-.516l-7.461-.365"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.657;0.66;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M678.4 184.1q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1m-12.85 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M656.533 183.768l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.641;0.657;0.685;0.705;0.772;0.783;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M674.1 192.6q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-14.65 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M651.333 190.168l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.635;0.641;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M673.2 194.65q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9m-15.8 1.95q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M651.333 190.168l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.632;0.635;1" values="none;inline;none;none"/></g><g display="none"><g transform="translate(664.9 188.4)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="14.958s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.451;0.454;0.457;0.46;0.462;0.465;0.468;0.471;0.474;0.476;0.479;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.518;0.521;0.524;0.526;0.528;0.529;1" values="677.35,199;677.35,199;676.9,199;676.5,199;676.05,199;675.6,199;675.15,199;674.75,199;674.3,199;673.85,199;673.4,199;673,199;672.55,199;671.747,199.002;670.952,199.005;670.15,199.007;669.454,199.009;668.658,199.012;667.855,199.013;667.108,199.016;666.312,198.968;665.56,198.969;664.762,199.021;664.016,198.923;663.163,198.923;662.417,198.977;661.669,198.979;660.819,198.977;660.066,199.03;659.32,199.037;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.529;0.532;0.535;0.538;0.54;0.543;0.546;0.549;0.552;1" values="0;659.32,199.037;658.97,198.881;658.671,199.035;658.377,198.885;658.174,198.987;657.82,198.986;657.573,199.038;657.274,199.039;656.962,199.002;656.962,199.002" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.518;0.521;0.524;0.526;0.528;0.529;1" values="0,0,0;0,0,0;0.041,0,0;0.27,0,0;0.311,0,0;0.54,0,0;0.768,0,0;0.81,0,0;1.039,0,0;1.267,0,0;1.309,0,0;1.537,0,0;1.766,0,0;1.807,0,0;2.037,0,0;2.265,0,0;2.306,0,0;2.535,0,0;2.805,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.529;0.532;0.535;0.538;0.54;0.543;0.546;0.549;0.552;1" values="0;2.805,0,0;2.785,0,0;2.806,0,0;3.016,0,0;3.038,0,0;3.059,0,0;3.268,0,0;3.291,0,0;3.495,0,0;3.495,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.518;0.521;0.524;0.526;0.528;0.529;1" values="-12.45,-10.6;-12.45,-10.6;-12.45,-10.65;-12.45,-10.6;-12.4,-10.6;-12.45,-10.65;-12.45,-10.6;-12.45,-10.6;-12.45,-10.65;-12.45,-10.6;-12.4,-10.6;-12.45,-10.65;-12.45,-10.6;-12.4,-10.6;-12.45,-10.6;-12.5,-10.6;-12.4,-10.55;-12.45,-10.65;-12.5,-10.6;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.529;0.532;0.535;0.538;0.54;0.543;0.546;0.549;0.552;1" values="0;-12.5,-10.6;-12.45,-10.6;-12.5,-10.55;-12.5,-10.5;-12.5,-10.55;-12.45,-10.6;-12.5,-10.6;-12.5,-10.55;-12.5,-10.65;-12.5,-10.65" calcMode="discrete"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M16.3 17.85l.6 2.85"/><path fill="#1A3F4E" d="M21.85 9.75q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9M9 8.75q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M.034 5.319l6.463-3.746M24.9 3.251l-6.75-3.2"/></g><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.379;0.632;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M682.3 195.2q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-11.65-3.9q-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.583 190.718l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.373;0.379;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M682.3 191.9q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-11.65-3.9q-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.583 187.418l6.463-3.746m18.454 1.678l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.373;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M682.3 188.25q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-9.6-3.1q-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.583 183.768l6.463-3.746M689.5 181.7l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.334;0.368;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M682.3 188.25q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-11.65-3.9q-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.583 183.768l6.463-3.746M689.5 181.7l-6.75-3.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.331;0.334;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M681.95 181.75q.85.95 2.05.95 1.2 0 1.95-.95.9-.85.9-2.15 0-1.3-.9-2.25-.75-.85-1.95-.85t-2.05.85q-.8.95-.8 2.25t.8 2.15m-11.3-4.1q-1.15 0-2.05.85-.8.95-.8 2.2 0 1.3.8 2.15.9.95 2.05.95 1.2 0 2-.95.85-.85.85-2.15 0-1.25-.85-2.2-.8-.85-2-.85"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.813 176.994l6.264-3.966m17.879 1.784l-6.543-3.388"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.326;0.331;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.9 182.45q-2.35-19 42.85-3.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M650.305 196.232l7.251-5.706m-7.251 5.706l7.142.938m-12.045.237l-6.803 2.323m6.803-2.323l-9.432-3.16"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.85 183.2q-1.75-2.25-4.95-4.2l.7 5.5m-.7-5.5q3.2-1.05 6.55-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.29;0.318;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.9 188q-2.35-18.1 42.85-3.65"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M650.305 201.101l7.251-5.434m-7.251 5.434l7.142.893m-12.045.211l-6.803 2.213m6.803-2.213l-9.432-3.008"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.15 189.05q-1.75-2.25-4.95-4.2l.7 5.5m-.7-5.5q3.2-1.05 6.55-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.287;0.29;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M612.2 197.6q.15-17.45 49.15 2"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M647.575 209.319l8.598-2.405m-8.598 2.405l7.554.901m-12.673.249l-7.095 2.233m7.095-2.233l-9.964.106"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.95 203.6q-1.75-2.25-4.95-4.2l.7 5.5m-.7-5.5q3.2-1.05 6.55-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.9 182.45q-2.35-19 42.85-3.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M650.305 196.232l7.251-5.706m-7.251 5.706l7.142.938m-12.045.237l-6.803 2.323m6.803-2.323l-9.432-3.16"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.45 183.3q-1.75-2.25-4.95-4.2l.7 5.5m-.7-5.5q3.2-1.05 6.55-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.273;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.9 188q-2.35-18.1 42.85-3.65"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M650.305 201.101l7.251-5.434m-7.251 5.434l7.142.893m-12.045.211l-6.803 2.213m6.803-2.213l-9.432-3.008"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M662.9 188.8q-1.75-2.25-4.95-4.2l.7 5.5m-.7-5.5q3.2-1.05 6.55-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M612.2 197.6q.15-17.45 49.15 2"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M647.575 209.319l8.598-2.405m-8.598 2.405l7.554.901m-12.673.249l-7.095 2.233m7.095-2.233l-9.964.106"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.3 204.05q-1.45-2.45-4.25-4.9l-.15 5.6m.15-5.6q3.25-.55 6.45.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M614.9 182.45q-2.35-19 42.85-3.8"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M650.305 196.232l7.251-5.706m-7.251 5.706l7.142.938m-12.045.237l-6.803 2.323m6.803-2.323l-9.432-3.16"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M663.25 183.5q-1.65-2.3-4.65-4.5l.35 5.6m-.35-5.6q3.15-.85 6.5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M617.5 190.15q1.95-19.35 45.1.45"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M649.852 204.027l7.64-5.748m-7.64 5.748l7.525.945m-12.695.237l-7.167 2.34m7.167-2.34l-9.938-3.183"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M668.05 195.6q-1.65-2.3-4.7-4.5l.4 5.65m-.4-5.65q3.2-.85 6.5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M649.852 208.319l7.64-5.483m-7.64 5.483l7.525.901m-12.695.249l-7.167 2.233m7.167-2.233l-9.938-3.036"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M661.412 193.141l.083-4.138"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M663.316 179.45l8.226-5.23m-8.226 5.23l7.554 1.125m-12.909-.164l-7.463 2.007m7.463-2.007l-9.814-3.324"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.234;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M661.412 196.32l.083-4.08"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M663.316 182.814l8.226-5.157m-8.226 5.157l7.554 1.11m-12.909-.137l-7.463 1.979m7.463-1.979l-9.814-3.278"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.226;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M665.212 216.566l.083-3.729"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M667.116 204.189l8.226-4.714m-8.226 4.714l7.554 1.013m-12.909-.105l-7.463 1.809m7.463-1.809l-9.814-2.996"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.223;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M685.95 176.55q-.25-.3-.35-.65m.35.65q1.45 2.25 3.7 3.4t3.95.5q1.6-.65 1.7-2.65.2-2.1-1.3-4.35-.3-.25-.4-.6m-14.9 6.8q.15.3.3.65 1.35 2.4 1.1 4.45-.25 1.95-1.9 2.6-1.7.5-3.95-.75-2.15-1.35-3.5-3.7-.15-.3-.25-.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.192;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.2 176.7q-.25-.3-.3-.65m.3.65q1.35 2.3 3.6 3.55 2.2 1.25 3.9.7 1.65-.6 1.85-2.6.25-2.1-1.15-4.4-.25-.25-.35-.6m-15.2 6.15q.1.3.25.65 1.25 2.45.9 4.5-.3 1.95-2 2.5-1.7.45-3.9-.9-2.1-1.45-3.35-3.85-.15-.3-.2-.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.189;0.192;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M674.8 179.5q.1.3.25.65 1.35 2.45 1.1 4.5-.25 1.95-1.95 2.5-1.7.45-3.95-.9-2.1-1.45-3.5-3.85-.15-.3-.2-.65m19.2-1.5q-2.3-1.25-3.7-3.55-.25-.3-.3-.65m4 4.2q2.25 1.25 3.9.7 1.65-.6 1.8-2.6.2-2.1-1.25-4.4-.25-.25-.4-.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.187;0.189;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M667.1 185.7q-2.1-1.55-3.4-4-.15-.3-.2-.65m3.6 4.65q2.2 1.5 3.9 1.15 1.7-.4 2-2.35.3-2.05-.95-4.5-.15-.35-.25-.7m7.35-2.3q-.25-.3-.3-.65m.3.65q1.35 2.4 3.6 3.8 2.2 1.4 3.9.95 1.65-.5 1.85-2.5.25-2.05-1.15-4.45-.25-.3-.35-.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.187;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M662.7 183.75q.1.4.2.75.95 2.55.4 4.55-.55 1.95-2.3 2.1-1.75.1-3.7-1.6-1.9-1.8-2.9-4.4-.15-.35-.15-.7m25.1 1.3q-.45 1.9-2.2 2.2-1.75.25-3.75-1.4-2.05-1.65-3.1-4.2-.2-.3-.2-.7m9.25 4.1q.4-2.05-.65-4.6-.2-.35-.25-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M649.45 186.45q-.1-.35-.1-.7m.1.7q.8 2.7 2.6 4.7 1.9 1.95 3.6 2.05 1.75 0 2.45-1.8.7-1.85-.05-4.6-.05-.3-.1-.65m7.7-.45q-.2-.35-.2-.7m.2.7q.85 2.6 2.75 4.55 1.95 1.85 3.7 1.75 1.75-.05 2.25-1.9.75-1.85-.2-4.6-.2-.3-.2-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M666.1 191.25q-1.75-.15-3.4-2.25-1.7-2.15-2.2-4.85-.15-.4-.1-.75m5.7 7.85q1.75.15 2.5-1.65.95-1.75.35-4.55-.15-.35-.1-.7m-16.05-.75v.7q.4 2.8-.5 4.55t-2.65 1.45q-1.7-.3-3.35-2.45-1.5-2.2-1.95-5-.05-.35 0-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M651.35 190.15q-1.7-.25-3.35-2.35-1.55-2.15-2.05-4.9-.05-.35 0-.7m5.4 7.95q1.75.2 2.65-1.55.85-1.8.45-4.6 0-.35-.05-.7m13.4 7.15q-1.75-.1-3.4-2.1-1.75-2.1-2.25-4.8-.2-.4-.15-.75m5.8 7.65q1.75.1 2.5-1.75.9-1.8.3-4.55-.15-.35-.1-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M665.1 183.55q-.15-.4-.1-.75m.1.75q.45 2.7 2.15 4.8 1.6 2 3.35 2.1 1.75.1 2.55-1.75.95-1.8.4-4.55-.15-.35-.1-.7m-16.05-.15v.7q.35 2.8-.55 4.6-.95 1.75-2.7 1.55-1.7-.25-3.3-2.35-1.5-2.15-1.9-4.9-.05-.35 0-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M653.2 186.75l9.55-3m14.45-3.2l-8.55-1.7"/><path fill="#1A3F4E" d="M676.3 184.55q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9m-16.1 5.05q.9-.75 1-2.05.1-1.1-.7-2.1-.75-.9-1.9-1.1-1.25 0-2.15.75-1 .8-1.05 1.9-.15 1.25.6 2.15.8 1 2 1.05 1.2.2 2.2-.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.07;0.089;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M653.2 186.75l9.55-3m14.45-3.2l-8.55-1.7"/><path fill="#1A3F4E" d="M674.25 185.45q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9m-14.05 4.15q.9-.75 1-2.05.1-1.1-.7-2.1-.75-.9-1.9-1.1-1.25 0-2.15.75-1 .8-1.05 1.9-.15 1.25.6 2.15.8 1 2 1.05 1.2.2 2.2-.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.067;0.07;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M653.2 186.75l9.55-3m14.45-3.2l-8.55-1.7"/><path fill="#1A3F4E" d="M671.35 182.5q0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1m-10.85 2.95q-.75-.9-1.9-1.1-1.25 0-2.15.75-1 .8-1.05 1.9-.15 1.25.6 2.15.8 1 2 1.05 1.2.2 2.2-.6.9-.75 1-2.05.1-1.1-.7-2.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.036;0.064;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M677.2 180.55l-8.55-1.7m-15.45 7.9l9.55-3"/><path fill="#1A3F4E" d="M674.25 185.45q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9m-13.05 2.1q.1-1.1-.7-2.1-.75-.9-1.9-1.1-1.25 0-2.15.75-1 .8-1.05 1.9-.15 1.25.6 2.15.8 1 2 1.05 1.2.2 2.2-.6.9-.75 1-2.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.031;0.036;0.064;0.067;1" values="none;inline;none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M651 185.9q-.15-.3-.2-.65m.2.65q1.3 2.45 3.4 4 2.2 1.5 3.9 1.15 1.7-.4 2-2.35.3-2.05-.95-4.5-.15-.35-.25-.7m7.35-2.3q-.25-.3-.3-.65m.3.65q1.35 2.4 3.6 3.8 2.2 1.4 3.9.95 1.65-.5 1.85-2.5.25-2.05-1.15-4.45-.25-.3-.35-.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.031;0.089;0.145;1" values="inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M665.212 216.566l.083-3.729"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M667.116 204.189l8.226-4.714m-8.226 4.714l7.554 1.013m-12.909-.105l-7.463 1.809m7.463-1.809l-9.814-2.996"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.32;0.326;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M661.412 187.82l.083-4.08"/><path fill="none" stroke="#1A3F4E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M663.316 174.314l8.226-5.157m-8.226 5.157l7.554 1.11m-12.909-.137l-7.463 1.979m7.463-1.979l-9.814-3.278"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.318;0.32;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M652.45 219.05l-.55-.225 23.4-19.225-3-1.85-28.075 18-11.125 7.125q1.135.155 2.5-.225l9.3-2.125 6.475-1.275 1.075-.2"/><path fill="#317C99" d="M677.05 199.85l-3-1.85-40 25.65.75 14.75 11.3 1.75-2.95-12.45 33.9-27.85"/><path fill="#FF5B80" d="M646.1 240.15l-11.3-1.75.1 10.05q.15 3.2.85 5 .9 2.3 2.65 3.2l5 1.4q2.85.8 4.55-.55 2.2-1.7.8-6.45l-2.65-10.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.312;0.318;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M685.2 207.6l-1.75-3-40.45 4.15-6.95.7-5.6 12q.1.15.25.25 1.85 1.8 4.9.95l5.55-1.25 1.15-4.3 2.1-.45 40.8-9.05"/><path fill="#317C99" d="M686.2 208.6l-1.75-3-47.4 4.85-6.3 13.5 9.2 6.6 3.35-12.45 42.9-9.5"/><path fill="#FF5B80" d="M624.45 237.85q-.3 2.45.8 4.05l3.75 3.45q2.15 2 4.3 1.55 2.8-.6 3.8-5.45l2.85-10.9-9.2-6.6-4.7 9.05q-1.35 2.9-1.6 4.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.29;0.312;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M685.45 210.6l-1.75-3-40.75 4.2-6.65.65-5.9 12.7q.1.2.3.35 1.85 1.8 4.9.95l5.55-1.25 1.35-5.1 1.8-.4 41.15-9.1"/><path fill="#317C99" d="M686.45 211.6l-1.75-3-47.4 4.85-6.3 13.5 9.15 6.6 3.35-12.45 42.95-9.5"/><path fill="#FF5B80" d="M637.3 244.45l2.85-10.9-9.15-6.6-4.7 9.05q-1.35 2.9-1.6 4.85-.3 2.45.8 4.05l3.75 3.45q2.15 2 4.3 1.55 2.75-.6 3.75-5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.287;0.29;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M681.4 211.55l-1.75-3-41.85 4.3-5.55.55-5.8 12.5-.55 1.75q-1.2 3.6.8 5.45 1.85 1.8 4.9.95l3.65-.8 3.3-12.4.6-.1 42.25-9.2"/><path fill="#317C99" d="M682.4 212.75l-1.75-3-47.4 4.85-6.3 13.5 9.25 6.4 3.35-12.45 42.85-9.3"/><path fill="#FF5B80" d="M633.35 245.4l2.85-10.9-9.25-6.4-4.7 9.05q-1.35 2.9-1.6 4.85-.3 2.45.8 4.05l3.75 3.45q2.1 1.95 4.35 1.45 2.8-.7 3.8-5.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M684.85 209l-1.75-3-39.65 4.05-7.75.8-5.05 10.8q.1.15.25.25 1.85 1.8 4.9.95l5.7-1.3.8-3.05 2.5-.55 40.05-8.95"/><path fill="#317C99" d="M685.65 210l-1.75-3-47.4 4.85-6.3 13.5 9.55 6.6 3.35-12.45 42.55-9.5"/><path fill="#FF5B80" d="M636.9 242.85l2.85-10.9-9.55-6.6-4.7 9.05q-1.35 2.9-1.6 4.85-.3 2.45.8 4.05l3.75 3.45q2.15 2 4.5 1.55 2.95-.6 3.95-5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.273;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M684.85 211l-1.75-3-40 4.1-7.4.75-5.55 12q.2.35.55.65 1.85 1.8 4.9.95l4.6-1.05 1.3-4.9 2.85-.6 40.5-8.9"/><path fill="#317C99" d="M685.65 212l-1.75-3-47.4 4.85-6.3 13.5 8.75 6.6 3.35-12.45 43.35-9.5"/><path fill="#FF5B80" d="M636.1 244.85l2.85-10.9-8.75-6.6-4.7 9.05q-1.35 2.9-1.6 4.85-.3 2.45.8 4.05l3.75 3.45q2.1 2 4.1 1.55 2.55-.6 3.55-5.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.27;0.273;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M681.9 211.05l-1.75-2.95-42.3 5-5.1.6-6.3 13.6-1.15 2.3q-.2 2.2 1.2 3.5 1.85 1.8 4.9.95L636 233l3.05-11.5h.15l42.7-10.45"/><path fill="#317C99" d="M683.1 212.05l-1.75-2.95-47.4 5.6-6.3 13.6 9.25 6.7 3.35-12.5 42.85-10.45"/><path fill="#FF5B80" d="M634.05 245.95L636.9 235l-9.25-6.7-4.7 9.1q-1.35 2.95-1.6 4.9-.3 2.45.8 4.05l3.75 3.4q2.2 2 4.35 1.6 2.8-.5 3.8-5.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.267;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M685.05 207.6l-1.75-2.8-40.15 5.15-7.25.9-5.25 10.9q1.8 1.6 4.75.8l5.3-1.2.95-3.4 2.7-.65 40.7-9.7"/><path fill="#317C99" d="M685.85 208.6l-1.75-2.8-47.4 6.05-6.3 13.05 8.7 6 3.35-11.95 43.4-10.35"/><path fill="#FF5B80" d="M624.1 238.35q-.3 2.35.8 3.9l3.75 3.2q2.1 1.8 4.05 1.3 2.55-.7 3.55-5.35l2.85-10.5-8.7-6-4.7 8.8q-1.35 2.8-1.6 4.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.267;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M683.15 216.65l-1.75-2.8-39.5 5.05-7.9 1-4.8 10q1.8 1.7 4.8.85l4.9-1.1.65-2.35 3.55-.85 40.05-9.8"/><path fill="#317C99" d="M684.1 217.35l-1.75-2.8-47.4 6.05-6.3 13.05 8.95 7.45 3.35-11.95 43.15-11.8"/><path fill="#FF5B80" d="M623.95 242.45q-1.35 2.8-1.6 4.65-.3 2.35.8 3.9l3.75 3.2q2.4 2 4.2 2 2.65 0 3.65-4.6l2.85-10.5-8.95-7.45-4.7 8.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFF" d="M659.5 228.15l14.85-11.95-2.7-1.85-30.2 18.15 18.05-4.35"/><path fill="#317C99" d="M677 215.45l-2.7-1.85-30.2 18.15-10.75 6.45-.5 14.5 11.2 2.8-1.3-12.5 19.4-15.6L677 215.45"/><path fill="#FF5B80" d="M646.1 266.05l-2.05-10.55-11.2-2.8-.8 9.95q-.1 3.1.45 4.9.65 2.25 2.3 3.25l4.7 1.4q2.9.85 4.9-.15 2.65-1.35 1.7-6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M688.15 211.75q-4.25 3.6-14.7 2.3-12.6-1.55-31-7.15m45.7 4.85q3.8-3.15.95-8-3-4.95-10.55-7.3m-56.5 20.25q.5 2.1 3.95 3.2 3.5 1.1 8.8.85 12.75-.65 25.2-8"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M664.65 206.9q-1.3 2.6-3.95 5.2 3.3.35 6.4-1.3m-6.4 1.3l-.45-5.65m-23.5 3.3q1.5-1.65 4.7-3.05-3.2-1.5-6.4-1.05m6.4 1.05q-1.2-3.15-4.45-5.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M686.75 208.05q2.6 7.5-.85 12.4-3.85 5.55-13.35 3.55-11.45-2.4-28.2-15.4m42.4-.55q-2.7-7.65-9.55-11.25"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M622.05 220.35q.5 3.75 3.95 5.75 3.5 2 8.8 1.5 12.75-1.2 25.2-14.4m4.4-6.15q-1.3 2.6-3.95 5.2 3.3.35 6.4-1.3m-6.4 1.3l-.45-5.65m-19.7-3.55q1.3 2.6 3.95 5.2l.45-5.65m-.45 5.65q-3.3.35-6.4-1.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M679.2 207.65q-9.45.5-16.1 3.9-7 3.55-9.2 9.05-2.4 6.15 1.8 13.55m23.5-26.5q9.5-.5 18.9 2.05M662 235.2l-5.6-.85q1.85 3.15 4.1 5.05m-4.1-5.05q-1.1 3.15-.2 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.22;0.223;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M657.15 198.55q.9 1.35 1.95 2.3 2 1.9 4.55 2.25 2.3.35 4.35-.65 1.2-.6 2.2-1.6.6-.7 1.15-1.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.131;1" values="inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M696.55 192.9h-.05q-.05 0-.1.05-.2 0-.45.1-.5.45-.45 1.3v.15q.1.85.6 1.6v.05q.6.9 1.2 1.2l.2.1q.65.2 1.1 0l.2-.1q.15-.15.25-.35l.1-.2v-.1q0-.1.05-.2v-.45q-.05-.05-.05-.2v-.1q0-.15-.05-.35-.15-.5-.45-1.1-.05-.15-.1-.25-.5-.7-1.15-.9-.1-.05-.2-.05-.05-.05-.15-.1-.05-.05-.1-.05-.05-.05-.15 0-.1-.05-.15-.05-.05-.05-.1 0"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.209;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M696.5 193.2q-.05-.05-.15-.1-.1-.05-.3-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1-.3-.05-.55.1-.55.45-.55 1.45 0 1.05.6 2 .6 1.1 1.35 1.45.85.4 1.4.05.3-.25.4-.55.05-.05.05-.1 0-.2.05-.4v-.95q-.15-.7-.55-1.65-.55-.95-1.35-1.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.206;0.209;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M695.65 193.6q-.1-.05-.3-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.15-.3-.1-.55.05-.55.45-.55 1.45 0 1.05.6 2 .6 1.1 1.35 1.45.85.4 1.4.05.3-.25.4-.55.05-.05.05-.1 0-.2.05-.4v-.9q-.15-.75-.55-1.7-.55-.95-1.35-1.2-.05-.05-.15-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.203;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M694.9 194.1q-.1-.05-.25-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.15-.3-.1-.55.05-.55.45-.55 1.45 0 1.05.6 2 .6 1.1 1.3 1.45.85.4 1.45.05.25-.25.4-.55.05-.05.05-.1 0-.2.05-.4v-.5q-.05-.15 0-.4-.2-.75-.6-1.7-.55-.95-1.3-1.2-.05-.05-.2-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.198;0.201;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M694.5 194q-.1-.1-.15-.1-.05 0-.1.15-.3-.1-.55.05-.55.45-.55 1.45 0 1.05.6 2 .6 1.1 1.3 1.45.85.4 1.45.05.25-.25.4-.55.05-.05.05-.1 0-.2.05-.4v-.5q-.05-.15 0-.4-.2-.75-.6-1.7-.55-.95-1.3-1.2-.05-.05-.2-.1-.1-.05-.25-.05-.1-.05-.15-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.195;0.198;0.201;0.203;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M692.75 194.4q-.6.45-.65 1.45-.05 1.1.5 2 .5 1.1 1.2 1.45.8.4 1.4.05.3-.25.45-.55.05-.05.05-.1 0-.2.05-.4 0-.1.05-.3v-.2q0-.15.05-.45-.15-.7-.5-1.65-.45-.95-1.25-1.2-.05-.05-.15-.1-.1-.05-.25-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05.05-.1.15-.3-.1-.55.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.192;0.195;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M692.8 194.75q-.3-.05-.55.05-.6.45-.7 1.45-.1 1.05.35 2 .45 1.15 1.15 1.5.8.45 1.4.1.3-.2.45-.55.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.1-.4-.1-.75-.4-1.65-.45-1-1.2-1.3-.05-.05-.15-.1-.1-.05-.25-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.189;0.192;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M689.25 194.75q-.3-.05-.5.05-.6.45-.65 1.45-.1 1.05.45 2 .4 1.15 1.15 1.5.8.45 1.4.1.3-.2.4-.55.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.15-.75-.45-1.65-.5-1-1.25-1.3-.05-.05-.15-.1-.1-.05-.25-.05-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.187;0.189;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M685.9 195.45q-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1-.1-.05-.25-.1-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.187;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M675.05 201.9q-.05 0-.05.05-.3-.1-.55-.05-.65.35-.85 1.3-.25 1.05.15 2.1.3 1.2.9 1.7.75.6 1.35.4.35-.2.55-.45.05-.05.05-.1.05-.2.15-.4 0-.1.1-.3v-.2q0-.15.1-.4 0-.75-.2-1.75-.3-1.05-1.05-1.5 0-.05-.1-.1t-.25-.15q-.1-.05-.15-.05-.1-.1-.15-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.178;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M677.2 201.75q-.05-.05-.15-.1-.05-.05-.2-.15-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.05-.3-.1-.55-.05-.65.35-.85 1.3-.25 1 .15 2.1.3 1.2.95 1.65.75.6 1.4.35.3-.15.5-.45.05-.05.05-.1.1-.15.15-.35.05-.1.1-.3v-.2q.05-.15.1-.4 0-.75-.2-1.75-.35-1-1.05-1.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.178;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M672.1 205.15q-.15-.1-.45-.2-.6.1-.95.85-.45.8-.35 1.65.05 1 .45 1.5.55.7 1.15.65.25-.05.5-.25.2-.1.3-.25.05-.05.15-.2.05-.05.1-.15 0-.15.15-.35.15-.65.1-1.3-.1-1-.55-1.5-.15-.2-.3-.3.05-.05 0-.05-.1-.1-.15-.1h-.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.173;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M671.45 205.25q-.15-.1-.45-.1-.55.25-.7 1.05-.3.85 0 1.7.3.95.8 1.35.65.55 1.25.4.25-.1.45-.35.15-.15.2-.35.05-.1.1-.25.05-.05.05-.15 0-.15.1-.35 0-.65-.2-1.35-.3-.9-.85-1.3-.2-.15-.4-.25 0-.05-.05-.05-.1-.05-.15-.05-.05 0-.15.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.173;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M661.1 204.15q-.05-.1-.15-.2l-.1-.1q-.1-.15-.15-.15-.05 0-.1.05-.3-.2-.5-.15-.7.1-1.15 1.05-.5.95-.4 2 .05 1.3.55 1.9.55.75 1.2.7.35-.1.6-.3l.1-.1q.1-.2.25-.3 0-.1.15-.3 0-.05.05-.2.05-.15.2-.3.15-.75.2-1.75-.05-1.15-.6-1.7l-.15-.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.162;0.167;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M661.4 203.7q-.25-.2-.5-.2-.65.15-1.15 1.05-.45.9-.35 2.05.05 1.25.55 1.85.55.75 1.2.7.35-.1.6-.35.05-.05.1-.05.1-.15.2-.35.05-.1.2-.3 0-.05.05-.15.05-.15.2-.35.15-.75.2-1.75-.05-1.05-.6-1.7l-.15-.15-.15-.15q-.1-.05-.15-.05-.05-.15-.1-.2-.05 0-.15.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.159;0.162;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M662.8 203.9q-.05-.1-.15-.2-.05-.1-.1-.1-.1-.15-.15-.15-.05-.05-.1.05-.3-.2-.5-.2-.7.2-1.15 1.05-.5.95-.4 2.1.05 1.2.55 1.85.55.75 1.25.65.3-.05.55-.3.05 0 .1-.05.1-.2.25-.35 0-.1.15-.25 0-.05.05-.2.05-.15.2-.35.15-.75.2-1.75-.05-1.1-.6-1.65-.05-.1-.15-.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.156;0.159;0.167;0.17;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M663.25 203.95q0-.1-.05-.1h-.05q0-.05-.05-.1h-.15q-.1-.05-.25-.1-.15 0-.3.1-.55.1-.9.85v.1q-.35.9-.15 1.9.05 1.05.5 1.55h.05q.5.75 1.1.6.05.05.15 0 .2-.1.35-.2.05 0 .1-.05t.15-.1q0-.1.05-.2.1-.05.15-.2 0-.05.05-.05 0-.05.1-.15 0-.05.05-.15 0-.1.05-.2l.1-.2q.05-.65.05-1.4.05-.05 0-.05-.1-.9-.6-1.4 0-.1-.1-.15l-.15-.15-.05-.05q-.05-.05-.1-.05v-.1l-.1.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M667.05 204.1q-.15-.2-.35-.3l-.1-.1q-.1 0-.15-.05-.05 0-.05.05-.2-.1-.45-.1-.6.2-.85.95-.35.8-.15 1.7.25.95.7 1.45.6.6 1.2.45.25-.05.45-.3.15-.1.25-.35.05-.1.15-.25 0-.05.05-.15 0-.15.1-.3.05-.65-.1-1.4-.15-.85-.7-1.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M668.65 203.9q0-.1-.1-.15-.1-.05-.2-.15h-.05q0-.05-.05-.1h-.05l-.05-.05h-.1l-.05-.05q0-.05-.05-.05h-.15q-.1-.05-.25-.1t-.25.05q-.55.2-.9.9v.1q-.4.9-.15 1.8.1 1.1.55 1.7h.05q.55.65 1.15.5h.15q.25-.05.35-.2.05 0 .05-.05.1-.1.15-.1l.1-.2.1-.2q.05-.05.05-.1t.1-.15q0-.05.05-.15.05-.1.05-.2l.1-.2q.05-.65.05-1.35.05-.05 0-.1-.15-.85-.65-1.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M674.85 199.25q-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1-.1-.05-.25-.1-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.142;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M674.2 199.6q-.05 0-.1.1-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1-.1-.05-.25-.1-.1-.05-.15-.05-.1-.1-.15-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.139;0.142;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M674 200.25q-.1-.05-.25-.1-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.136;0.139;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M673.6 200.1q-.1-.1-.15-.1-.05 0-.1.1-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1-.1-.05-.25-.1-.1-.05-.15-.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.134;0.136;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A3F4E" d="M673.75 200.15q-.1-.05-.15-.05-.1-.1-.15-.1-.05 0-.1.1-.3-.1-.55 0-.6.4-.7 1.4-.1 1.05.4 2.05.45 1.15 1.15 1.55.8.5 1.4.2.3-.2.45-.5.05-.05.05-.1l.1-.4q0-.1.05-.3v-.2q0-.15.05-.4-.1-.75-.4-1.7-.45-1-1.2-1.35-.05-.05-.15-.1-.1-.05-.25-.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.131;0.134;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M702.4 184.15q4.95 1.1 6.85 5.4 1.85 4.05-.2 8m-20 1.1q1.95 4-.35 7.9m.35-7.9q-2-4.35-7.25-5.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.209;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M702.55 184.65q4.1 1.15 5.85 5.1 1.75 3.8.15 7.4m-20.75 1.9q1.8 3.8.05 7.35m-.05-7.35q-1.8-4-6.1-5.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.206;0.209;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M702.75 185.2q3.25 1.1 4.85 4.75 1.6 3.55.5 6.85m-21.5 2.7q1.65 3.5.45 6.8m-.45-6.8q-1.65-3.65-4.95-4.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.203;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M707.6 196.4q.65-2.95-.85-6.25-1.45-3.3-3.85-4.45m-16.7 20.45q.65-2.95-.85-6.25-1.45-3.3-3.8-4.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.201;0.203;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M664.45 212q1.3-2.75.55-6.25-.7-3.55-2.75-5.2m25.2 6.7q1.25-2.75.55-6.3-.7-3.5-2.75-5.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.178;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M662.6 199.4q3.95 1.95 4.85 6.15.95 4.15-1.55 7.25m23.65-11.85q.9 4.05-1.4 7.25m1.4-7.25q-.8-4.25-4.55-6.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.178;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M679.35 198.05q5.05 2.95 5.45 7.95.5 4.75-3.3 7.9m-24.4-14.1q5.55 3 6.05 8.05.6 4.75-3.45 7.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.173;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M679.35 198.2q5.05 2.95 5.4 8.05.4 4.7-3.45 7.85m-24.25-14.35q5.55 3.1 6 8.15.5 4.75-3.55 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.173;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M672.25 199.15q3.15 2.85 2.85 7.2-.15 4.1-3.15 6.6m-22.6-14.85q3.4 2.9 3.2 7.2-.15 4.25-3.25 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.167;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M671.4 211.85q1.9-2.3 2.05-5.95.2-3.55-1.4-5.65M650 205q.2-3.6-1.4-5.7m1.4 5.7q-.15 3.6-2.05 5.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.162;0.167;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M672.15 199.65q2.35 2.5 2.15 6.5-.15 3.85-2.65 6.3M649 198.7q2.4 2.5 2.3 6.45-.15 3.9-2.7 6.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.159;0.162;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M672.25 199.15q3.15 2.85 2.85 7.2-.15 4.1-3.15 6.65m-22.6-14.9q3.4 2.9 3.2 7.2-.1 4.25-3.3 6.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.156;0.159;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M672.35 198.65q3.85 3.15 3.65 7.85-.2 4.45-3.85 7m-18.35-8q-.05 4.5-3.85 6.95m3.85-6.95q.2-4.7-4.05-8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M657.75 205.55q.1 4.75-4.2 7.4m4.2-7.4q.05-5.05-5.25-8.65m26.95 9q.05 4.75-4.1 7.55m4.1-7.55q.15-5.05-4.6-8.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M680.9 205.65q0 4.5-3.55 7.15m3.55-7.15q.1-4.65-3.9-7.7m-18.25 7.35q.05 4.5-3.7 7.05m3.7-7.05q0-4.7-4.3-7.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M682.6 191.65q3.9 1.5 5.25 5.6 1.35 4-.65 7.4m-26.35-5.9q4.2 1.55 5.55 5.65 1.4 4-.7 7.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.142;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M682.7 192.2q3.1 1.45 4.3 5.2 1.25 3.7-.2 6.85m-26.1-4.75q3.25 1.45 4.45 5.2 1.3 3.75-.25 6.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.139;0.142;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#266177" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.15 197.5q-1.1-3.4-3.35-4.8m3.35 4.8q1.15 3.45.2 6.3m-22.25 7.5q.95-2.85-.2-6.3-1.1-3.4-3.35-4.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.136;0.139;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M708.6 179.35l5-8.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.209;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M708.6 179.35l3.75-6.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.206;0.209;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M708.6 179.35l2.55-4.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.203;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M708.6 179.35l1.3-2.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.201;0.203;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M709.15 174.15l.55-.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.184;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M696.85 186.4l2.25-3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.178;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M694.3 188.55l4.55-5.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.178;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.7 196l7.7-6.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.173;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.7 196.25l5.9-5.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.173;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M679.95 197.05l4.5-3.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.167;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M679.95 197.1l2.5-1.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.164;0.167;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M689.8 191.6l.85-.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M687.5 192.95l2.9-2.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.15;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M685.05 194.6l5.6-4.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M684.65 196.15l8.25-5.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M689.1 186.95l4.5-6.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.142;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M689.1 186.95l3.1-4.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.139;0.142;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M689.1 186.95l1.65-2.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.136;0.139;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M711.45 184.75l9.7-3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.209;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M711.45 184.75l7.35-2.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.206;0.209;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M711.45 184.75l5-1.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.203;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M711.45 184.75l2.65-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.201;0.203;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M715.35 186.35l1.05-.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.184;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M700.65 196.1l3.3-.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.178;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M697.05 196.4l6.75-.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.178;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M687.6 202.15l10.2.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.173;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M687.6 202.35l7.7.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.173;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M680.1 203.25l5.2.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.167;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M680.1 203.25l2.7.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.164;0.167;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M691.25 205.25l1.05.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M689.2 203.2l3.25.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.15;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.1 202.7l6.65 1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M684.9 202.3l10.15 1.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M691.4 192.65l7.55-1.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.142;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M691.4 192.65l5.15-.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.139;0.142;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M691.4 192.65l2.7-.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.136;0.139;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M713.05 191.35l9.95 1.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.209;0.212;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M713.05 191.35l7.6 1.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.206;0.209;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M713.05 191.35l5.3 1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.203;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M713.05 191.35l2.95.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.201;0.203;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M716.1 197.3l.95.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.181;0.184;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M699.85 205.55l3.35 1.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.178;0.181;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M696.75 204.55l6.4 2.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.175;0.178;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.95 208.95l8.85 4.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.173;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.85 209.15l6.7 3.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.17;0.173;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M678.5 209.85l4.25 3.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.167;0.17;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M678.5 209.85l2.35 1.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.164;0.167;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M688.1 215.75l.75.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.153;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M686.35 212.3l2.95 2.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.15;0.153;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M684.05 210.65l5.6 4.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.148;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M683.55 208.95l8.35 5.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.145;0.148;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M692.3 199.4l7.45 2.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.142;0.145;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M692.3 199.4l5.15 1.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.139;0.142;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#86959A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M692.1 199.75l2.55 1.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.136;0.139;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M26.5 91.7l.55 5.75 7.6 4.8 10.2 1.15 6.85-3.3-.5-5.8-7.65-4.8-10.25-1.1-6.8 3.3m10.05 2.8q1.05-.5 2.45-.3 1.45.15 2.45.85 1.1.6 1.1 1.45.15.85-.8 1.2-.9.4-2.35.3-1.5-.15-2.6-.85-.85-.6-1-1.45-.05-.8.75-1.2"/><path fill="#DEDEDE" d="M131.65 117.95L124 112.6l-10.9-2.4-7.8 2-.35 5.3 7.6 5.35 11 2.4 7.8-2 .3-5.3m-10.6-.7q1.1.7.95 1.4.05.8-1.05 1.05-1.1.3-2.55-.1-1.55-.3-2.6-1.05-1-.65-1-1.4.05-.75.95-1 1.2-.35 2.75.05 1.5.3 2.55 1.05"/><path fill="#C5C5C5" d="M65.5 107.1l7.7 5.2 11 2.1 7.75-2.2.3-5.3-7.8-5.15-11-2.25-7.8 2.25-.15 5.35m10.75-1.6q1.15-.35 2.75-.05 1.5.3 2.5 1.05 1.15.65.95 1.45.15.75-1 1-1.1.25-2.55 0-1.55-.3-2.65-1.05-.95-.6-1-1.4.05-.75 1-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.752;0.755;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M179.65 128.5l-10.6-2.35-7.6 2.3-.35 5.4 7.35 5.4 10.65 2.2 7.6-2.05.3-5.4-7.35-5.5m-2 6.35q-.05.8-1.05 1.1-1.05.2-2.55-.05-1.5-.3-2.5-1.1-.9-.7-.9-1.5.05-.75.95-1 1.15-.45 2.6-.05 1.55.35 2.5 1.15 1 .65.95 1.45"/><path fill="#DEDEDE" d="M228.9 155.05l7.25 5.95 11.3 3.55 8.55-.95.95-4.85-7.3-5.95-11.2-3.6-8.55 1.05-1 4.8m11.2 2.3q-.85-.7-.8-1.4.15-.75 1.25-.8 1.1-.25 2.75.4 1.6.45 2.55 1.25 1.05.8.8 1.45-.05.65-1.25.75-1.2.15-2.7-.3-1.6-.5-2.6-1.35"/><path fill="#C5C5C5" d="M215.2 140.4l-11.5-2.6-8.4 1.6-.65 4.95 7.7 5.35 11.6 2.65 8.4-1.55.65-5-7.8-5.4m-3.5 4.35q1.1.7.95 1.35-.05.75-1.2.95-1.2.2-2.75-.1-1.6-.45-2.75-1.2-.9-.65-.9-1.35.15-.7 1.2-.85 1.2-.3 2.8.1 1.6.35 2.65 1.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.747;0.752;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M280 164.3l-11.15-2.4-8.15 1.85-.4 5.1 7.65 5.15 11.15 2.5 8.25-1.9.3-5.05-7.65-5.25m-8.55 3.3q1.1-.2 2.8.1 1.55.3 2.5 1 1.1.7.95 1.45 0 .7-1.05.9-1.15.3-2.7-.05-1.65-.3-2.65-1.05-1-.65-.95-1.4 0-.7 1.1-.95"/><path fill="#DEDEDE" d="M342 189.25l-1.25 4.4 7.65 6 11.95 3.85 9.1-.4 1.15-4.5-7.7-5.95-11.9-3.85-9 .45m16.75 6.95q1.15.75.9 1.35-.15.7-1.4.75-1.3.05-2.85-.5-1.75-.55-2.8-1.35-.95-.75-.8-1.45.2-.6 1.25-.65 1.35-.05 3.05.5 1.6.55 2.65 1.35"/><path fill="#C5C5C5" d="M326.75 188.7l1.25-4.5-7.7-5.7-11.85-3.6-9.05.65-1.15 4.5 7.55 5.8 11.9 3.55 9.05-.7m-11.05-4.5q-1.25.2-2.85-.4-1.65-.5-2.85-1.35-.85-.65-.75-1.25.15-.7 1.3-.8 1.3-.05 3 .5 1.65.45 2.6 1.2 1.15.75.9 1.35-.1.7-1.35.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.741;0.747;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M386.35 213.65l8.65-1.05.85-4.7-7.75-5.5-11.55-3.25-8.7 1-.8 4.65 7.7 5.55 11.6 3.3m-2-7.45q1.15.7.95 1.4-.1.65-1.3.8-1.15.1-2.8-.3-1.7-.5-2.75-1.2-.9-.75-.85-1.45.15-.65 1.2-.8 1.25-.1 2.95.4 1.6.4 2.6 1.15"/><path fill="#DEDEDE" d="M460.2 231.6l-7.9-5.7-12.35-3.95-9.55.25-1.35 4.15 7.8 5.7L449.3 236l9.5-.2 1.4-4.2m-12.95-.6q-1.35.05-3-.5-1.75-.55-2.9-1.35-.9-.7-.85-1.3.25-.65 1.4-.6 1.4-.05 3.2.55 1.75.5 2.7 1.3 1.25.65.95 1.25-.15.65-1.5.65"/><path fill="#C5C5C5" d="M421.25 214.2l-12.4-3.9-9.6.25-1.3 4.15 7.75 5.7 12.4 3.85 9.65-.1 1.3-4.2-7.8-5.75m-10.45 1.35q1.45 0 3.2.55 1.75.55 2.7 1.3 1.15.75.85 1.35-.05.65-1.4.65-1.35.05-3.05-.55-1.7-.5-2.9-1.35-.8-.75-.75-1.25.25-.7 1.35-.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.735;0.741;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M460.6 233.4l-1.1 4.25 7.75 5.85 11.95 4 9.2-.15 1.05-4.25-7.65-5.85-12.05-4-9.15.15m14.3 5.75q1.65.55 2.7 1.35 1.1.75.9 1.35-.1.65-1.4.65-1.2.05-2.9-.5-1.7-.6-2.8-1.4-.95-.8-.85-1.4.2-.55 1.35-.6 1.3 0 3 .55"/><path fill="#DEDEDE" d="M525.95 258.45l-10.05-.9-1.8 3.7 7.7 6.15 12.65 5.05 10 .9 1.85-3.7-7.75-6.15-12.6-5.05m.8 6.8q-.9-.75-.7-1.25.3-.6 1.5-.45 1.45.1 3.25.9 1.75.65 2.75 1.45 1.15.85.8 1.35-.15.6-1.55.4-1.4-.1-3.1-.8-1.8-.7-2.95-1.6"/><path fill="#C5C5C5" d="M514.65 263.4l10.05.95 1.8-3.75-7.75-6.15-12.6-5-10-.95-1.85 3.7 7.7 6.15 12.65 5.05m-7.65-7.2q-.9-.75-.75-1.25.3-.55 1.5-.4 1.5.1 3.3.85 1.75.7 2.75 1.55 1.15.8.8 1.25-.2.6-1.55.45-1.45-.15-3.1-.8-1.8-.75-2.95-1.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.73;0.735;1" values="none;inline;none;none"/></g><g display="none"><g transform="translate(1374.05 274.8)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="14.958s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.362;0.365;0.368;0.37;0.373;0.376;0.379;0.382;0.384;0.387;0.39;0.393;0.396;0.398;0.401;0.404;0.407;0.409;0.412;0.415;0.418;0.421;0.423;0.426;0.429;0.432;0.435;0.437;0.439;0.44;1" values="1383.45,284.2;1383.45,284.2;1359.732,255.555;1331.858,230.849;1298.353,213.099;1260.105,207.135;1221.53,215.106;1186.512,233.379;1155.758,257.569;1128.308,284.923;1116.67,278.708;1103.734,268.736;1089.615,260.399;1074.541,253.793;1058.873,249.083;1042.679,246.543;1026.333,246.084;1010.142,247.516;994.108,251.073;978.648,256.661;964.146,264.125;954.457,270.536;945.464,277.837;937.074,285.901;927.746,282.717;917.429,277.764;906.344,274.491;894.873,273.228;883.268,273.864;871.97,276.618;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.44;0.443;0.446;0.448;0.451;0.454;0.457;0.46;0.462;0.465;0.468;0.471;0.474;0.476;0.479;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.517;0.518;1" values="0;871.97,276.618;861.169,281.094;850.953,286.802;839.404,286.971;827.712,286.906;816.184,286.963;804.604,287.276;797.43,286.876;790.224,286.769;783.1,286.833;775.883,286.899;768.757,286.914;761.586,286.961;754.411,286.902;747.249,286.841;740.048,286.821;732.88,286.891;725.695,286.818;718.512,286.918;711.326,286.868;704.15,287.05;700.389,286.791;696.6,286.9;692.81,286.896;689,286.9;685.17,286.876;681.4,286.9;677.612,286.887;673.85,286.9;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.518;0.521;0.524;0.526;0.529;0.532;0.535;0.538;0.54;0.543;0.549;0.55;0.554;0.555;0.56;0.561;0.565;0.566;0.571;0.572;0.577;0.578;0.582;0.583;0.588;0.589;0.591;0.592;0.593;1" values="0;673.85,286.9;670.03,286.876;666.25,286.9;662.501,286.95;658.7,287;656.439,286.911;654.05,286.9;652.854,286.918;651.773,286.901;649.15,286.9;649.15,286.9;647.144,286.905;647.144,286.905;644.8,286.9;644.8,286.9;642.463,286.89;642.463,286.89;640.2,286.9;640.2,286.9;637.897,286.905;637.897,286.905;635.55,286.9;635.55,286.9;631.969,294.836;631.969,294.836;631.917,294.834;631.917,294.834;624.648,295.149;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.593;0.599;0.6;0.604;0.605;0.61;0.611;1" values="0;624.648,295.149;624.648,295.149;631.917,294.834;631.917,294.834;631.953,294.859;631.953,294.859;631.917,294.834;631.917,294.834" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.362;0.365;0.368;0.37;0.373;0.376;0.379;0.382;0.384;0.387;0.39;0.393;0.396;0.398;0.401;0.404;0.407;0.409;0.412;0.415;0.418;0.421;0.423;0.426;0.429;0.432;0.435;0.437;0.439;0.44;1" values="0,0,0;0,0,0;-1.781,0,0;-3.562,0,0;-5.533,0,0;-7.315,0,0;-9.286,0,0;-11.069,0,0;-13.041,0,0;-14.999,0,0;-35.327,0,0;-55.656,0,0;-75.97,0,0;-96.06,0,0;-116.539,0,0;-109.55,0,0;-102.557,0,0;-95.757,0,0;-88.962,0,0;-81.978,0,0;-75,0,0;-67.175,0,0;-59.169,0,0;-51.159,0,0;-43.148,0,0;-35.327,0,0;-27.318,0,0;-19.426,0,0;-7.035,0,0;5.045,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.44;0.443;0.446;0.448;0.451;0.454;0.457;0.46;0.462;0.465;0.468;0.471;0.474;0.476;0.479;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.517;0.518;1" values="0;5.045,0,0;17.324,0,0;29.805,0,0;42.107,0,0;54.409,0,0;66.708,0,0;79,0,0;-41.842,0,0;-13.097,0,0;-42.071,0,0;-61.062,0,0;-45.8,0,0;-25.588,0,0;-44.195,0,0;-19.279,0,0;-42.752,0,0;-12.786,0,0;-39.491,0,0;-6.296,0,0;-21.754,0,0;0,0,0;-18.217,0,0;0,0,0;-23.499,0,0;0,0,0;-20.71,0,0;0,0,0;-15.975,0,0;0,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.518;0.521;0.524;0.526;0.529;0.532;0.535;0.538;0.54;0.543;0.549;0.55;0.554;0.555;0.56;0.561;0.565;0.566;0.571;0.572;0.577;0.578;0.582;0.583;0.588;0.589;0.591;0.592;0.593;1" values="0;0,0,0;-19.206,0,0;0,0,0;-22.695,0,0;0,0,0;-24.203,0,0;0,0,0;-9.032,0,0;-18.217,0,0;0,0,0;0,0,0;-19.244,0,0;-19.244,0,0;0,0,0;0,0,0;-15.23,0,0;-15.23,0,0;0,0,0;0,0,0;-17.206,0,0;-17.206,0,0;0,0,0;0,0,0;-31.963,0,0;-31.963,0,0;-44.194,0,0;-44.194,0,0;-58.651,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.593;0.599;0.6;0.604;0.605;0.61;0.611;1" values="0;-58.651,0,0;-58.651,0,0;-44.194,0,0;-44.194,0,0;-35.489,0,0;-35.489,0,0;-44.194,0,0;-44.194,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.368;0.37;0.384;0.387;0.39;0.393;0.396;0.398;0.404;0.407;0.415;0.418;0.421;0.423;0.432;0.435;0.439;0.44;1" values="1,1;1,1;0.999,0.999;0.999,0.999;0.997,0.997;0.996,0.996;0.997,0.997;0.998,0.998;0.997,0.997;0.997,0.997;0.999,0.999;0.999,0.999;0.997,0.997;0.997,0.997;0.996,0.996;0.996,0.996;0.998,0.998;0.998,0.998;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.44;0.443;0.446;0.448;0.451;0.454;0.457;0.46;0.462;0.465;0.474;0.476;0.479;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.517;0.518;1" values="1;0.998,0.998;0.997,0.997;0.996,0.996;0.996,0.996;0.997,0.997;0.997,0.997;0.999,0.999;0.997,0.997;0.998,0.998;0.997,0.997;0.997,0.997;0.998,0.998;0.998,0.998;0.997,0.997;0.999,0.999;0.998,0.998;0.999,0.999;0.999,0.999;1,1;0.999,0.999;1,1;0.999,0.999;1,1;0.999,0.999;1,1;0.999,0.999;1,1;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.518;0.521;0.524;0.526;0.529;0.532;0.535;0.538;0.54;0.543;0.549;0.55;0.554;0.555;0.56;0.561;0.565;0.566;0.571;0.572;0.577;0.578;0.582;0.583;0.588;0.589;0.591;0.592;0.593;1" values="1;1,1;0.999,0.999;1,1;0.999,0.999;1,1;0.999,0.999;1,1;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.999,0.999;1,1;1,1;0.999,0.999;0.999,0.999;0.998,0.998;0.998,0.998;0.999,0.999;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.593;0.599;0.6;1" values="1;0.999,0.999;0.999,0.999;0.998,0.998;0.998,0.998" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.365;0.368;0.37;0.373;0.376;0.379;0.382;0.384;0.387;0.39;0.393;0.396;0.398;0.401;0.404;0.407;0.409;0.412;0.415;0.418;0.421;0.423;0.426;0.429;0.432;0.435;0.437;0.439;0.44;1" values="-9.4,-9.4;-9.4,-9.4;-9.45,-9.45;-9.4,-9.4;-9.35,-9.4;-9.4,-9.4;-9.35,-9.4;-9.45,-9.4;-9.4,-9.5;-9.5,-9.45;-9.45,-9.45;-9.4,-9.5;-9.45,-9.35;-9.45,-9.4;-9.45,-9.4;-9.35,-9.3;-9.45,-9.45;-9.4,-9.35;-9.35,-9.4;-9.45,-9.4;-9.35,-9.4;-9.45,-9.45;-9.35,-9.45;-9.35,-9.4;-9.4,-9.45;-9.35,-9.45;-9.3,-9.45;-9.4,-9.5;-9.4,-9.5;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.44;0.443;0.446;0.448;0.451;0.454;0.457;0.46;0.462;0.465;0.468;0.471;0.474;0.476;0.479;0.482;0.485;0.487;0.49;0.493;0.496;0.499;0.501;0.504;0.507;0.51;0.513;0.515;0.517;0.518;1" values="0;-9.4,-9.5;-9.45,-9.55;-9.35,-9.45;-9.45,-9.55;-9.4,-9.55;-9.35,-9.5;-9.3,-9.45;-9.4,-9.4;-9.4,-9.5;-9.4,-9.35;-9.3,-9.4;-9.5,-9.45;-9.5,-9.5;-9.5,-9.5;-9.45,-9.4;-9.35,-9.45;-9.35,-9.4;-9.35,-9.45;-9.35,-9.4;-9.3,-9.45;-9.4,-9.4;-9.5,-9.25;-9.4,-9.4;-9.4,-9.45;-9.4,-9.4;-9.45,-9.35;-9.4,-9.4;-9.35,-9.45;-9.4,-9.4;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.518;0.521;0.524;0.526;0.529;0.532;0.535;0.538;0.54;0.543;0.56;0.561;0.565;0.566;0.571;0.572;0.577;0.578;0.582;0.583;0.588;0.589;0.591;0.592;0.593;1" values="0;-9.4,-9.4;-9.35,-9.35;-9.4,-9.4;-9.45,-9.35;-9.4,-9.4;-9.45,-9.5;-9.4,-9.4;-9.3,-9.45;-9.45,-9.35;-9.4,-9.4;-9.4,-9.4;-9.35,-9.4;-9.35,-9.4;-9.4,-9.4;-9.4,-9.4;-9.45,-9.45;-9.45,-9.45;-9.4,-9.4;-9.4,-9.4;-6.55,-17.2;-6.55,-17.2;-6.55,-17.15;-6.55,-17.15;-1.1,-12.4;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.593;0.599;0.6;0.604;0.605;0.61;0.611;1" values="0;-1.1,-12.4;-1.1,-12.4;-6.55,-17.15;-6.55,-17.15;-6.55,-17.25;-6.55,-17.25;-6.55,-17.15;-6.55,-17.15" calcMode="discrete"/><path fill="#999" d="M18.8 5.5L13.3 0H5.5L0 5.5v7.8l5.5 5.5h7.8l5.5-5.5V5.5m-7.5 6.05q-.75.75-1.85.75t-1.85-.75q-.75-.75-.75-1.85t.75-1.85q.75-.75 1.85-.75t1.85.75q.75.75.75 1.85t-.75 1.85"/></g><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.362;0.73;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1B576B" stroke-opacity=".698" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M621.2 260.651l-.8-.85m-6.35 14.45l-1-.05m3.9 10.599l-1.45.75m31.1-15.549l1.4-.5m-9.75 21.299l.55 1.05m-11.6-.55l-.35 1.2m19.55-10.45l1.05.7m-10.5-23.449l.3-1.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.735;0.738;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1B576B" stroke-opacity=".698" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M623.9 265.051l-1.7-2.8m-3.15 12.35l-3.7-.15m5.5 8.099l-3.55 2.2m25.55-13.399l3.2-1.3M636.8 287l1.4 3.45m-10-3.1l-.9 3.3m15.8-10.15l2.95 1.45m-10.8-18.249l.6-3.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.733;0.735;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1B576B" stroke-opacity=".698" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M626.6 269.501l-3.15-5.3m0 10.65l-6.15-.15m6.85 5.749l-5.3 3.35m19.75-10.849l5.25-2.2m-8.9 12.649l2.1 5.3m-7.8-4.9l-1.35 5.25m11.4-10.4l5.05 2m-10.3-11.899l1.2-5.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.73;0.733;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1B576B" stroke-opacity=".698" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M627.9 272.251l-3.15-5.3m1.35 8.349l-6.15-.15m6.45 3.95l-5.3 3.35m15.1-8.599l5.25-2.2m-7.45 9.45l2.1 5.3m-6.4-4.85l-1.35 5.25m8.15-9.601l5.05 2m-8.75-7.549l1.2-5.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.727;0.73;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1306.9 85.25q1.3-.8 1.4-1.95.15-1.15-1-2-.85-.9-2.4-1-.75-.65-2.1-.75-1.2-.05-2.2.55-.95.55-1.05 1.5-.15.85.7 1.6l.05.05q.05.95 1 1.7 1.1.85 2.75.95 1.65.1 2.85-.65m-10.2 7.25q.45-1.05-.1-2-.7-.95-2.05-1.3-1.1-.3-2.15-.1-.05-.35-.35-.75-.5-.7-1.55-.95-1.1-.3-2.15 0-1.05.35-1.4 1.15-.45.8 0 1.6.55.7 1.65.95.55.15 1.15.1-.2.8.3 1.55.6.95 2.1 1.25 1.4.35 2.65-.15 1.4-.4 1.9-1.35m16.2-4.75q-.65-.6-1.55-.6-.95-.05-1.7.45-.8.45-.85 1.05-.05.7.6 1.25.35.25.8.4-.05.1-.05.2-.1.65.55 1.2.65.5 1.55.55.95.05 1.75-.4.65-.45.75-1.15 0-.65-.5-1.15-.4-.3-.9-.45.05-.1.05-.25.05-.6-.5-1.1m1 6.4q-.15 1.5 1.25 2.6 1.1.9 2.65 1.15-.1.2-.1.45-.1 1.2 1 2.05 1.05.8 2.55.9 1.65.1 2.8-.65 1.2-.7 1.35-1.85.1-1.15-.95-1.9-.55-.55-1.35-.8.5-.6.55-1.45.15-1.3-1.15-2.45-1.3-1.1-3.35-1.25-1.9-.1-3.5.9-1.65.95-1.75 2.3m-14.55 13.4q-.5-.8-1.7-1.15-.35 0-.8-.1-.1-.2-.25-.3-.75-.65-1.85-.7-1.05-.1-1.85.45-.9.5-1 1.3-.1.7.75 1.35.35.3.95.5 0 .25.2.55.6.8 1.9 1.15 1.1.25 2.2-.1 1.15-.4 1.65-1.3.4-.8-.2-1.65m16.1 16.15q-1.35-1.15-3.45-1.25-2.1-.1-3.7.9-1.65 1-1.85 2.4-.15 1.55 1.3 2.7 1.4 1.1 3.45 1.2 1 .1 2-.15.15 1 1.15 1.75 1.1.9 2.65 1.1.6.85 2.95 2.8 4.5 3.45 6.15 3.55 1.7.05 2.9-.65 1.3-.75 1.45-2.05.15-1.1-1.6-2.55-1.65-1.35-5.5-3.2l-.6-.2q.2-.4.2-.9.1-1.4-1.15-2.45-1.3-1.2-3.4-1.3-.9 0-1.85.25-.1-1.05-1.1-1.95m1.9 133.1q.15-1.15-1-2.15-1.2-.9-2.8-.9-1.7-.15-2.9.65-.75.45-1.1.9-1.25.3-2.7 1-2.3 1.15-3.95 3v.05q-1.1.1-2.05.7-.75.4-1.15 1-.75-.35-1.7-.35-1.9-.1-3.35.75-1.5.95-1.6 2.25-.2 1.4 1.2 2.45 1.2 1.05 3.05 1.15 1.9.15 3.4-.8.7-.45 1.2-1.05.65.3 1.6.35 1.9.1 3.35-.75 1.45-.95 1.6-2.35.1-.5-.05-.85 3.6-1.15 4.55-1.75.45-.25.7-.5 1.2-.2 2.25-.8 1.35-.8 1.45-2m-12.8 33.4q-1.15-.85-2.6-.9-1.6-.1-2.75.65-1.3.8-1.4 1.85 0 .4.1.75-.3-.05-.55-.05-1.95-.15-3.5.9-1.55.9-1.75 2.3-.15 1.45 1.25 2.55 1.3 1.15 3.3 1.2 2 .1 3.55-.85 1.55-.95 1.65-2.4.15-.8-.3-1.45 1.45 0 2.6-.7 1.15-.7 1.3-1.85.1-1.05-.9-2M1261.8 84.6q-.45-.25-1.1-.45-1.6-.4-3.2.15-1.55.5-2.05 1.75-.6 1.15.1 2.2.75 1.2 2.45 1.55.75.2 1.55.15.35.5.95.9 1.55 1.35 3.95 1.5 2.45.15 4.35-1.05 1.85-1.1 2.05-2.9.2-1.65-1.4-3-1.7-1.35-4.15-1.5-1.95-.15-3.5.7m18.65 30.45q-.55-.85-1.8-1.15-1.25-.35-2.45.05-1.2.35-1.55 1.3-.5.95 0 1.8.65.85 1.9 1.1 1.25.35 2.4-.1 1.15-.4 1.6-1.25.45-.9-.1-1.75m-7.65-9.45q-1.35-.45-2.75.05-1.3.45-1.75 1.45-.25.5-.3 1-.5.05-1 .2 0-.05-.05-.1-.6-.75-1.7-1.05-1.2-.35-2.3.05-1.15.35-1.45 1.25-.5.85.05 1.65.5.75 1.75 1.05.35.1.75.1-.15.95.4 1.8.9 1.25 2.85 1.75 1.9.45 3.6-.25 1.85-.55 2.6-1.85.55-1.3-.15-2.5 1.2-.45 1.6-1.4.5-1-.05-2-.7-.9-2.1-1.2m-22.7 165.1q-.15.05-.25.15-1.25-.05-2.25.6-1.15.65-1.25 1.65-.05.55.2 1.05-1.05.05-1.8.5-.95.65-1.05 1.4-.05.85.7 1.55.8.6 1.95.7 1.15.05 2.15-.55.5-.3.75-.7.6.35 1.5.5-.1.15-.1.4-.1 1 .85 1.8.9.8 2.35.9 1.35.05 2.5-.65 1.05-.7 1.15-1.75.05-.9-.85-1.65-.95-.8-2.35-.9-.148-.049-.2-.05.05-.001.05-.05 0-.3-.1-.6.4-.15.7-.4 1.2-.65 1.3-1.8.1-.95-.85-1.85-1.05-.75-2.55-.8-1.5-.1-2.55.55m-15.7 24.65q-1.1.65-1.15 1.6-.15 1 .8 1.75.85.7 2.2.75 1.35.1 2.4-.5.7-.4.95-.95h.4q.25.7 1.05 1.3 1.15 1.1 3.1 1.15 1.85.1 3.3-.8 1.45-.95 1.65-2.3.15-1.3-1.2-2.4-.45-.45-1.2-.7-.2-.55-.75-1-.9-.7-2.25-.85-1.4-.1-2.4.6-.25.15-.5.45-.3-.15-.55-.1-1.35-.05-2.35.6-.6.35-.95.8-.15.05-.2 0-1.35-.05-2.35.6m23.55-25q-.15 1.05.8 1.8.9.75 2.35.85 1.35.15 2.55-.6 1.05-.65 1.15-1.7.15-.95-.8-1.75-1.05-.75-2.35-.8-1.45-.1-2.5.55-1.1.7-1.2 1.65m15.9 9.75q-.05 1.15 1.05 2 1 .9 2.55 1 1.6 0 2.8-.7 1.2-.7 1.25-1.9.15-1.05-.85-1.9-1.1-.9-2.55-.95-1.65-.15-2.85.7-1.25.7-1.4 1.75m-1.45 13.9q-1.45-.05-2.5.65-.9.55-1.15 1.25-.15-.05-.35-.1-1.1-.05-2 .6-.95.6-1 1.4-.15.95.7 1.6.7.7 1.9.75 1.1.1 2-.5.55-.35.8-.85.45.15 1.05.2 1.4.05 2.5-.65 1.05-.6 1.15-1.7.1-.95-.75-1.75-1-.8-2.35-.9m20.2 6.75q.8-.5.9-1.3.05-.65-.65-1.25-.65-.6-1.7-.6-1.05-.1-1.9.4-.75.55-.85 1.2v.4q-.35.1-.7.3-.65.4-.75.9 0 .6.55.95.5.55 1.35.6.75 0 1.4-.35.5-.3.65-.85 1 .05 1.7-.4m-11.6 2.7q-1.6-.05-2.75.65-1.3.7-1.4 1.8-.15 1.2 1 2.05 1 .9 2.55.9 1.5.1 2.75-.65 1.2-.7 1.3-1.85.15-1.1-.85-2-1.1-.9-2.6-.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.245;0.281;0.292;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1312.7 78.25q-2-.15-3.65.9-1.2.65-1.55 1.55-.1 0-.1-.05-2.2-.05-4 1-1.8 1.05-1.9 2.6-.2 1.6 1.3 2.85 1.6 1.2 3.8 1.35 2.25.1 3.9-1 1.35-.8 1.7-2 2 .05 3.45-.85 1.6-.95 1.8-2.55.1-1.4-1.2-2.5-1.45-1.25-3.55-1.3M1302.95 92q-1.35.8-1.45 1.9-.15 1.25 1 2.2 1.2.8 2.8.95 1.6.1 2.75-.5.85.4 1.9.45 1.5.1 2.5-.55 1.1-.65 1.2-1.7.15-.95-.85-1.75-.85-.8-2.35-.85-.9-.05-1.65.2l-.05-.05q-1.1-.95-2.85-1.05-1.55-.1-2.95.75m12.6 6.3q-.6-.5-1.5-.6-.9-.05-1.7.5-.75.4-.8 1.1-.15.65.6 1.15.65.55 1.55.55.95 0 1.65-.35.7-.45.8-1.1.1-.7-.6-1.25m13 7.95q-.1-.45-.25-.85-1-2.1-3.8-3.15-2.7-.9-5.7-.15-3.05.65-4.35 2.6-1.4 2-.25 4.1.7 1.6 2.4 2.55l-.2.3q-1 1.55-.25 3.1.8 1.55 2.75 2.25 1.4.55 2.75.5.65.4 1.5.7 3.25 1.1 6.65.25 3.3-.9 5-3.25 1.6-2.35.5-4.75-1.05-2.5-4.25-3.6-1.2-.45-2.5-.6m-28.75.1q2.05-1.3 2.3-3.3.2-1.95-1.6-3.4-1.8-1.55-4.65-1.7h-.3l-.05-.05q-.6-.85-1.8-1.15-1.3-.4-2.45-.05-1.2.5-1.6 1.4-.5.85.05 1.75.05.1.15.25-.95.95-1.1 2.25-.25 2 1.7 3.45 1.8 1.5 4.45 1.65 2.85.15 4.9-1.1m.2 17.05q1.45-.95 1.65-2.4.15-1.4-1.2-2.5-.3-.2-.55-.4v-.15q.2-.1.45-.25 1.8-1.1 1.95-2.75.1-1.65-1.35-2.85-1.45-1.3-3.85-1.35-2.25-.2-3.95.95-1.3.8-1.8 1.85-.9.35-1.65.75-2 1.25-2.25 3-.15 1.9 1.6 3.25 1.25 1.05 3.05 1.4.25.6 1 1.1 1.35 1.1 3.3 1.25 2.1.1 3.6-.9m15.5 9.15q-1.05-.85-2.7-1.1.1-1.1-.95-2-1.2-1-2.95-1.1-1.7-.15-3 .75-1.45.8-1.55 2.05-.15 1.3 1.1 2.15.65.6 1.5.85-.1.1-.15.35-.55-.2-1.3-.3-1.5 0-2.65.7-1.25.7-1.35 1.7-.1 1.15.95 2 .95.75 2.5.9 1.45.1 2.45-.5 1.2 3.95 7.55 4.45 3.75 4.7 9.55 6.75 0 .2-.05.35-.15 1.3 1.05 2.3 1.2.9 2.95 1 1.7.1 3.05-.7 1-.65 1.35-1.55.05-.25.05-.55l1.45-7.05q-4.2-2.7-5.75-6.85.45-.7.55-1.5.15-1.45-1.15-2.55-1.45-1.25-3.5-1.3-2.05-.1-3.65.9-1.7.95-1.85 2.45-.1.4 0 .8-1.05.65-2.45-.35.1-.25.05-.5.2-1.4-1.1-2.55m7.1 117.95q.1-1.15-.9-2-1-.95-2.65-1-1.55-.05-2.8.65-1.3.75-1.4 1.9-.05.4.1.75-3.95 2.6-10.35 5.05-6.55.2-11.8 4.15-.8-.1-1.7.15-1.1.4-1.55 1.35-.5.9.1 1.8.55.8 1.85 1.1 1.15.35 2.4-.1h.1l.15.2q-1.45.05-2.45.85-1.4.8-1.5 1.95-.15 1.2 1.1 2.2 1 .85 2.65.9 1.7.15 3.05-.6.75-.55 1.05-1.15 3.1-1.15 4.95-3.7 2.95-2.55 6.2-.7h-.05q-1.25.65-1.4 1.8-.05 1.15 1.05 2.1 1.1.75 2.6.8 1.7.15 2.85-.55 1.2-.85 1.3-1.95.15-1.1-.9-1.95l-.1-.1q3.3-4.7 8.05-6.4l-.1-7q.1-.25.1-.5m-8.85 33.35q-1.85-1.55-4.85-1.7-1.65-.05-3.15.4-.5-.05-.95-.1-2.35-.1-4.05 1-1.85 1.15-2 2.75-.05.55.05 1-1.25.2-2.25.9-1.9 1.1-1.95 2.7-.15.55.05 1.1-.3.55-.3 1.15-.3 2.2 1.8 3.85 2.05 1.7 5.05 1.85 3.1.1 5.4-1.3 2.25-1.45 2.5-3.65.05-.4.05-.75.75.2 1.55.25 2.35.1 4.15-1 1.7-1.05 1.9-2.75.2-1.6-1.35-2.9v-.05q-.2-1.45-1.65-2.75m-50.15-195.4q-2.55-.15-4.45 1.1-2.1 1.25-2.25 3.05-.25 1.9 1.6 3.3.55.5 1.3.9-.7 1.1-.85 2.25-.3 2.65 2.3 4.75 2.35 1.95 6.1 2.2 3.2.2 5.7-1.1 1.85 1.2 4.4 1.35 3.2.15 5.65-1.3 2.3-1.5 2.55-3.75t-1.8-3.95q-2.05-1.7-5.25-1.9-1.85-.15-3.35.4l-.4-.4q-.3-.2-.55-.4.1-.35.15-.6.15-1.65-1.5-2.95-1.5-1.3-3.9-1.45-.55.05-1.15.05-1.7-1.4-4.3-1.55m18 31.2q-1.2-1.05-2.7-1.5 1.15-1.05 1.35-2.35.15-1.65-1.35-2.9-1.55-1.3-3.9-1.4-2.25-.2-4.1 1-1.85 1.05-2 2.7 0 .2-.05.4-1.7-1-4-1.1-3-.2-5.35 1.35-2.4 1.4-2.65 3.5-.25 2.2 1.85 3.85 2.05 1.7 5.1 1.85 1.9.1 3.6-.45.4 1.45 1.8 2.55 2.35 1.85 5.6 2 3.4.25 5.9-1.35 2.55-1.65 2.8-4.05.2-2.35-1.9-4.1m-31.95 149.25q-3-.1-5.35 1.35-2.35 1.45-2.6 3.6-.2 2.15 1.85 3.8 1.95 1.7 4.95 1.8 1.3.1 2.5-.05-.1 1.75 1.5 3.1 1.7 1.4 4.2 1.55 2.55.1 4.5-1 1.9-1.25 2.05-3.05.15-1.05-.3-1.9 1.7-.35 3.15-1.2 2.5-1.6 2.75-4 .25-2.35-1.9-4.2-2.3-1.9-5.65-2.05-3.25-.15-5.9 1.45-1.3.8-2.1 1.8-1.5-.85-3.65-1m-.55 18.9q-3.55-.25-6.3 1.55-2.85 1.7-3.15 4.25-.15 1.35.4 2.5-1.3.25-2.5 1.05-2 1.15-2.2 2.95-.2 1.85 1.55 3.35 1.75 1.35 4.2 1.5 2.4.15 4.3-.85 1 .35 2.1.4 2.2.1 3.9-.95 1.65-1.1 1.8-2.65.05-.75-.15-1.3.55-.3 1.05-.6 1.5.8 3.5.95 2.95.1 5.15-1.25 2.25-1.35 2.4-3.4.2-2.05-1.75-3.6-1.8-1.65-4.75-1.8-1.65-.05-3.05.35-.2-.1-.35-.3-2.35-2.05-6.15-2.15M1275 276q-1.45.25-2.65 1-1.85 1.05-2.05 2.7-.15 1.7 1.4 3 1.15.8 2.65 1.15.35.95 1.3 1.75 1.55 1.25 3.85 1.35 2.35.15 4.05-.9 1.75-1.15 1.95-2.8.15-1.55-1.35-2.85-.6-.5-1.45-.85.25-.1.4-.2 1.55-1 1.7-2.45.1-1.4-1.15-2.45-1.4-1.2-3.4-1.3-2.05-.1-3.6.95-1.35.75-1.65 1.9m-4.85 18.35q-.1.9.4 1.7-.25.1-.45.25-.95.6-1.05 1.45-.15.95.75 1.7.85.7 2.15.75 1.3.1 2.3-.5.7-.5.95-1.2 2.25.15 3.9-.85 1.65-1.15 1.85-2.75.2-1.5-1.3-2.65-1.45-1.35-3.65-1.4-2.2-.15-3.9.9-1.75 1.05-1.95 2.6m24.55 4.85q-.5-.5-1.35-.55-.85-.05-1.45.4-.7.35-.75 1-.1.6.5 1 .6.55 1.4.6.8.05 1.5-.45.6-.35.75-.95 0-.6-.6-1.05m-5.85 2.2q-1.45-.05-2.55.7-.35.2-.55.35-.75-.35-1.65-.4-1.45-.05-2.35.65-1.2.55-1.25 1.55-.1.9.95 1.65.8.8 2.2.85 1.3.05 2.3-.55.15-.05.35-.25.8.6 2 .65 1.5.1 2.7-.6 1.15-.7 1.25-1.8.1-1.05-.9-1.85-1.05-.9-2.5-.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;0.276;0.281;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1312.7 78.25q-2-.15-3.65.9-1.2.65-1.55 1.55-.1 0-.1-.05-2.2-.05-4 1-1.8 1.05-1.9 2.6-.2 1.6 1.3 2.85 1.6 1.2 3.8 1.35 1.55 0 2.85-.4.25.65 1 1.25 1.3 1 3.1 1.1 1.85.1 3.25-.8 1.5-.85 1.6-2.2.15-1.25-1.05-2.35-.6-.45-1.3-.7 1.2-.9 1.4-2.3.1-1.4-1.2-2.5-1.45-1.25-3.55-1.3m-10.1 13.5q.3-2.75-2.3-4.9-2.5-2.2-6.55-2.35-3.8-.2-6.75 1.65-.95.6-1.6 1.25-.5-1.55-2.1-2.9-2.6-2.15-6.5-2.4-1.8-.1-3.35.3l-.05-.05q-2.6-2.15-6.5-2.4-3.9-.2-6.8 1.7-3.1 1.8-3.4 4.5-.05.35-.05.65-1.15 1.45-1.4 3.15-.25 3.2 2.75 5.55 1.5 1.25 3.45 1.95-1.35.45-2.6 1.25-3.65 2.3-4 5.5-.35 3.5 2.8 6.05t7.85 2.8q1.45.1 2.9-.05 3.05 1.85 7.3 2.05 5.65.3 9.9-2.3 2.3-1.35 3.4-3.15.4.8 1.3 1.45 1.9 1.5 4.55 1.65 2.85.15 5-1.15 2.05-1.35 2.3-3.35.05-.4.05-.75l.8.1q3.1.2 5.35-1.2 2.3-1.45 2.55-3.6.1-1.5-.85-2.75 1.2-1.05 1.3-2.4.2-1.8-1.4-3.1-1.65-1.45-4.2-1.6-2-.05-3.65.7.4-.85.5-1.85m18.4.35q-3.1 1.75-3.4 4.55-.15 1.55.7 3-1.2.3-2.25.95-2.6 1.55-2.8 3.8-.25 2.3 1.95 4.05 2.1 1.75 5.3 1.95 2.5.1 4.6-.8.7 1.6 2.35 2.9 2.9 2.65 7.4 2.85 4.6.25 8.1-1.95 3.35-2.25 3.8-5.7.35-3.35-2.65-5.95-3-2.65-7.55-2.9-.1 0-.2.05.2-.6.25-1.3.3-2.7-2.3-4.8-2.5-2.2-6.5-2.4-3.8-.25-6.8 1.7m28.25 36.3q.1-1.35-1.25-2.6-1.4-1.1-3.55-1.25-2-.15-3.65.85-.1.2-.25.25-.75-.25-1.65-.3-.25 0-.5-.05v-.3q.25-2.25-1.85-4-2.1-1.8-5.35-1.95-2.8-.15-5.05 1.1-.05-.15-.25-.3-1-.9-2.55-1.2.2-2.15-1.8-3.9-2.05-1.75-5.25-1.9-3.15-.2-5.5 1.35-2.6 1.5-2.8 3.75-.1 1.35.8 2.65-2.3-.05-4.1 1.1-.1.05-.25.1-2.05-1.6-5.1-1.75-2.9-.15-5.15 1.3-2.4 1.4-2.65 3.5-.2 2.2 1.9 3.8 2 1.7 4.9 1.85 3.05.15 5.4-1.25.7-.45 1.2-1 1.4.7 3.15.75.75.1 1.6 0 23 5.1 33.75 22.7l2.6-20.15q.8-.2 1.4-.6 1.6-1 1.8-2.55m-16 131.25q-.1-.15-.3-.3 3-10.1 1.1-20.5-8.6 9-21.3 14.1-.85-.35-1.9-.4-2.1-.15-3.75.9-.6.3-1 .8-4.05 2.25-13.65 2.2-.5-.65-1.25-1.2-2.1-1.8-5.3-1.95-3.1-.15-5.5 1.35-2.5 1.5-2.7 3.65-.25 2.4 1.9 4.1 2.1 1.7 6.2 2.4 3.7.6 7.2.25-.4.15-.65 2.2-.25 2.05 2.15 4 2.3 1.85 5.6 2 3.3.2 5.85-1.3 2.5-1.5 2.8-3.95 0-.65-.05-1.25.35.5.95.95 2.35 1.95 5.95 2.15 3.7.2 6.45-1.55 2.8-1.6 3.1-4.25-.05-.05-.05-.1.15.2.5.4 1.35 1.1 3.4 1.25 2.1.1 3.7-.9 1.55-.95 1.75-2.45.1-1.5-1.2-2.6m-17.95 13.55q-1.3.75-1.65 1.8-1.45.45-2.7 1.3-2.3 1.3-3.2 3.1 0-.05-.05-.05-2.05-1.7-5.1-1.9-2.95-.15-5.25 1.35-2.45 1.4-2.7 3.55-.15 2.15 1.9 3.8 2.05 1.6 5 1.75 2.95.2 5.2-1.1 1.75 1.2 1.55 2.75-.15 1.75-2.25 2.85-2.1 1.05-4.85.9-2.7-.1-4.5-1.35.6 1.65 2.3 3 2.75 2.25 6.8 2.45 4.25.25 7.35-1.7 3.25-1.9 3.5-4.85.1-.65 0-1.15.15-.05.3 0 4.5.25 7.85-1.85 3.4-2.05 3.7-5.25.35-3.15-2.55-5.45-1-.9-2.25-1.5-.1-1.15-1.25-2.05-1.35-1.2-3.45-1.35-2.1-.1-3.7.95m-74.15-2.45q-3.7 2.15-4.1 5.5-.35 3.45 2.9 6.05 1.55 1.25 3.45 1.95-3.35.4-6.05 2.15-3.95 2.3-4.35 5.8-.35 3.6 3.1 6.3 3.2 2.7 8.15 2.95 5 .3 8.8-2.05.25-.15.5-.35.6.1 1.3.15 4.2.25 7.4-1.7.9-.55 1.55-1.2.6.7 1.3 1.4 2.65 2.2 6.8 2.4 4.2.25 7.4-1.7 3.3-2 3.55-5l.1-.4q.5.1 1.1.05 2.9.2 5.1-1.3 2.25-1.45 2.5-3.75.15-1.6-.8-2.95.5-.7.75-1.6.75-2.1-1-3.8-1.55-1.65-4.7-1.9-.75-.05-1.35 0v-.1q.2-2.1-1.75-3.8-1.8-1.85-4.7-2-2.8-.15-5.05 1.4-1.7 1.15-2.2 2.7-.5-2.8-3.35-5.15-3.7-3.3-9.5-3.55-4.35-.2-7.95 1.45-.25-.1-.6-.1-4.7-.25-8.3 2.15m50.7 25.05q-2.05-.15-3.7.9-1.1.65-1.5 1.4-1.15-.55-2.65-.65-2.05-.1-3.65.9-1.7 1.05-1.85 2.4-.2 1.55 1.25 2.7 1.45 1.15 3.5 1.25.3.05.6.05 0 1.25 1.25 2.3 1.45 1.1 3.5 1.2 2.1.05 3.7-.8 1.55-1 1.7-2.5.15-1.15-.6-2.2.7-.15 1.4-.6 1.6-.95 1.75-2.45.15-1.5-1.25-2.6-1.35-1.2-3.45-1.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.228;0.234;0.27;0.276;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1331.65 89.45q-6.4-.35-11.25 2.8-1.95 1.2-3.25 2.6-.2-.2-.4-.3-4.75-3.45-12.15-3.85-7.1-.4-12.45 2.55-5.75 2.7-6.2 6.95-.45 4.05 3.9 7.25-2.15-.45-4.55-.6-7.7-.45-13.55 3.4-6.15 3.6-6.65 9.05-.6 5.6 4.7 9.85 5.05 4.2 12.75 4.65.85 1.1 2.15 2.15 4.15 3.5 10.45 3.85 2.1.1 4.1-.15-.45 1-.6 2.15-.35 3.8 3.4 6.55 3.5 2.85 9 3.15 2.05.1 3.9-.15 17.55 4.25 26.65 13.75 14.85-33.6 9.45-62.2 1.3-1.45 1.45-3.3.25-2.5-1.55-4.35-1.75-1.9-4.4-2.05-2-.05-3.65.75-.25-.25-.65-.55-4.2-3.6-10.6-3.95m3.75 129.45q-6.15 8.85-29.9 12.15-1.05-.2-2.2-.3-4.8-.5-9.1 1.2-4.2 1.65-5.2 4.35-.8 2.05.55 3.9-9.2-.9-19.2 4.1-7 .1-12.5 3.5-6.55 3.6-7.05 9.15-.65 5.75 5.15 10.1 5.4 4.25 13.65 4.65 1 .1 1.95.05-1.75 1.55-2.65 3.55-2.5 4.55.35 8.7 2.95 4.3 9.65 5.65 6.45 1.45 12.65-.75 2.5-.85 4.4-2.05.1-.05.1.05 2.2 4.7 8.2 6.5 6.1 1.9 12.45-.15 2.45-.7 4.45-1.9.05 0 .1.05 3.65 1.25 7.4-.2 3.75-1.4 5.4-4.7 1.75-3.25.4-6.6-.15-.25-.3-.6 12.55-26.3 1.25-60.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1351.15 122.55q-.2-1.65-.05-3.05.3-3.15-2.25-5.55-2.4-2.4-6.1-2.6-3.7-.2-6.5 2.05-.2.1-.4.3-.5-.55-1.15-1.2-3-3.05-7.85-3.25-4.8-.25-8.35 2.4-3.85 2.55-4.25 6.35-.15 1.3.1 2.55-.35-.1-.8-.1-5.8-.3-10.9 1.65-3.8 2.65-3.9 5.8-.1 3.15 2.2 5.15 2.25 2 3.35 2.6-1-.1-2.05-.1-7.75-.45-13.5 2.95-6.15 3.25-6.65 8.2-.6 5.15 4.8 8.95 5.05 3.95 12.75 4.35 4.4.2 8.15-.7.55 2.2 2.8 4.05 3.25 2.7 8.1 2.95 4.6.2 8.05-1.6 12.95 4.2 15.7 15.5 15.2-22.65 8.7-57.65m-33.35 91.5q-1.5-1.2-3.95-1.5-2.65-.3-4.8.65-2.05.9-2.4 2.45-.05.55-.1 1-18.6.1-24.75 2.2-6.85 2.25-8.75 6.95-2.3 4.65 1.6 8.65 3.9 4.15 11.75 5.4 3.6.55 6.95.4-3.3 1.5-4.85 4.25-2.2 3.45-.25 6.7 2 3.4 7.1 4.65 4.5 1.15 8.95.05-3.25 1.95-3.5 4.8-.4 3.2 2.6 5.55 2.9 2.35 7.2 2.6 4.4.2 7.7-1.8.95-.6 1.6-1.25.25.2.5.35 2.45 2.1 6 2.3 3.75.25 6.5-1.65 2.7-1.65 3.1-4.2 12.9-31.4 5.1-61.3-10.25 14.85-23.3 12.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1349.45 138.05q-.15-1.15-.1-2.2.2-2.3-2.3-4.1-2.5-1.8-6.2-2-3.7-.2-6.45 1.4l-.4.2q-.5-.45-1.15-.85-3.15-2.25-7.95-2.5-4.8-.25-8.3 1.7-3.75 1.75-4.05 4.5-.1 1.05.2 1.85-.35-.05-.75-.1-5.85-.3-10.9 1.15-3.75 1.85-3.75 4.15 0 2.3 2.35 3.8 2.3 1.55 3.4 2.05-1-.15-2.05-.2-7.75-.45-13.4 1.95-6.1 2.35-6.4 5.95-.45 3.75 5 6.6 5.2 3 12.85 3.4 4.4.25 8.15-.4.65 1.65 2.95 3 3.25 2.05 8.15 2.3 4.6.2 8-1.1 13.1 3.25 16.1 11.6 14.55-16.4 7-42.15m-53.2 108.5q4.55 1.05 9 .15-3.15 1.6-3.45 4.05-.25 2.6 2.75 4.6 2.9 2 7.2 2.25 4.4.2 7.65-1.45.95-.5 1.65-1.05.25.2.5.35 2.45 1.75 6.05 1.95 3.7.25 6.45-1.3 2.6-1.35 3-3.5 12.3-26.15 4.05-51.3-10 12.35-23.05 10.5-1.55-1.05-3.95-1.25-2.7-.3-4.75.45-2.1.8-2.4 2.05-.1.45-.1.85-18.6-.15-24.75 1.6-6.75 1.8-8.55 5.75-2.25 3.85 1.7 7.25 4.05 3.5 11.85 4.65 3.55.45 6.95.35-3.25 1.25-4.75 3.5-2.2 2.95-.15 5.7 2.1 2.75 7.1 3.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A5262" d="M1187.9 110.45q1.5.05 2.75-1.3 1.25-1.25 1.45-3.15.15-1.2-.2-2.1.45-.75.45-1.55.2-1.7-.8-3-1-1.15-2.6-1.25-1.5-.1-2.8 1-1.2 1.15-1.45 2.8-.1 1.1.4 2.05-.35.75-.5 1.7-.15 1.9.7 3.2 1.05 1.55 2.6 1.6m-6.75 21.6q-1.5-.05-2.8 1-1.2 1.15-1.4 2.85-.25 1.65.75 2.75.45.6.95.9-1.7 1.65-2.2 3.85-.6 1.7-.2 3.05-.2.45-.4.95-.7 2.65.3 4.4 1 2.05 2.95 2.15 2.05.1 4.05-1.75 1.9-1.7 2.6-4.3.15-.7.25-1.3.8-1.2 1.25-2.55.65-2.6-.35-4.65-.85-1.55-2.65-1.85.25-.6.35-1.3.15-1.7-.85-2.9t-2.6-1.3m-6.85 60.9q-.65-1.3-1.95-1.35-1.15-.05-2.1 1.15-.9 1.25-1.1 3-.15 1.9.55 3.05.2.3.35.6-.8.25-1.5.85-1.45 1.15-1.55 3-.15 1.85 1.05 3.05.85.95 2.05 1.35-.25 1.05-.3 2.2-.3 3.05.75 5.1-.5.3-.9.75-1.4 1.6-1.6 3.95-.2 2.3.9 3.8 1.25 1.75 3.1 1.95 1.85.05 3.25-1.65 1.45-1.35 1.65-3.7.1-1.35-.25-2.4.95-.65 1.9-1.8 1.8-2 2.1-5.4.2-3.25-1.2-5.7-1.35-2.35-3.7-2.45h-.05q-.35-.95-.95-1.7-.6-.7-1.4-1.05l.4-.5q.9-1.1 1.15-2.95.15-1.8-.65-3.15m-.35-22q-1.75 1.8-1.85 4.3-.25 2.75 1.15 4.55 1.55 2.05 3.75 2.25 2.25.05 4.1-1.85 1.7-1.6 1.95-4.35.15-2.45-1.1-4.35.6-.85.8-2 .4-1.8-.6-3.25-1-1.4-2.85-1.5-1.85-.05-3.45 1.2-1.55 1.25-1.9 3.15-.25 1 0 1.85M1060.6 91.9q-2 2.45-2.1 6-.1 2.5.8 4.45-.6.4-1 1.05-1 1.65-.7 3.75.25 2.15 1.45 3.35 1.4 1.5 2.8 1.35 1.55-.25 2.5-1.85.8-1.45.65-3.3 2.15-.2 3.9-2.3 1.9-2.35 2.1-5.8.05-3.6-1.65-6.15-.55-.85-1.15-1.4.2 0 .4.05 1.9.05 3.25-.6 1.35-.5 1.45-1.5.1-1-1.1-1.8-1.2-.7-3.1-.8-1.85-.1-3.2.55-1.3.55-1.4 1.55-.15.65.45 1.2-2.45-.05-4.35 2.2m-9.15 39.95q-2 1.25-2.3 3.15-.1 1.25.65 2.3-1.8 1.45-2.2 3.55-.35 2.35 1.15 3.9.9 1.05 2.05 1.55-.75.8-.9 1.85-.15 1.3.75 2.2.95 1 2.3 1.05 1.45.1 2.5-.8 1.05-.8 1.25-2.05.15-1.2-.7-2.15 1-.4 1.95-1.1 2.15-1.4 2.55-3.8.3-1.55-.3-2.85 1.7-1.15 1.85-3 .2-1.85-1.5-3.35-1.7-1.45-4.35-1.55-2.65-.15-4.75 1.1m-.85 27.95q-.95 0-1.85.6-.8.65-.95 1.65-.05 1 .65 1.7.65.75 1.7.8 1 .1 1.85-.6.8-.55.9-1.6.1-1-.55-1.7-.7-.75-1.75-.85m1.55 24.8q.15-1.4-.85-2.5-1-1.05-2.55-1.1-1.55-.1-2.8.8-1.2 1-1.35 2.4-.05.6.15 1.15-1.45 1.25-1.6 3.15-.15 1.8.85 3.05-.45.65-.6 1.6-.1 1.55.75 2.6 1.1 1.2 2.55 1.3 1.55.05 2.75-1.05 1.2-.85 1.3-2.45.1-.8-.05-1.55 1.45-1.1 1.65-3.05.15-1.65-.65-2.9.35-.65.45-1.45m4.7 99.85q.85-2.05.3-4.05-.6-2.05-2.3-2.95-.25-.1-.45-.1.15-1.25-.7-2.4-.9-1.1-2.55-1.35-1.55-.35-3 .35-1.3.8-1.6 2.2-.25 1.4.65 2.4.55.8 1.35 1.15-.1.05-.1.25-.95 1.85-.35 3.6-1.15 1.75-.75 4.05.5 2.5 2.2 3.95.15.15.25.35-.15.65-.05 1.4.25 1.9 1.9 3.1.15.15.25.15-.15.4-.2.8-.3 1.35.65 2.35.9 1.35 2.45 1.55 1.65.25 3.05-.5 1.3-.7 1.65-2.05.25-1.3-.6-2.45 1.4-1.3 1.2-3.2-.3-1.85-1.95-3.2-.1-.1-.25-.2.35-1.15.05-2.55-.25-1.5-1.1-2.65m-10.5-82.3q-1.1-.1-1.9.75-.75.8-.9 1.8-.4.1-.6.35-.75.45-.85 1.15-.1.75.55 1.25.6.55 1.55.65.45 0 .8-.1.3.15.75.15.95.05 1.8-.8.85-.8 1-2.1.1-1.2-.5-2.15-.7-.9-1.7-.95m.75 11.25q.7-.5.85-1.2.05-.7-.6-1.3-.7-.5-1.6-.6-1-.05-1.65.45-.75.5-.8 1.15-.15.75.5 1.35.6.55 1.6.6.95.05 1.7-.45m.2 29q-.6-.55-1.55-.65-.95-.05-1.7.4-.75.55-.8 1.25-.1.75.5 1.25.55.45 1.25.6-.5.25-1 .7-1.6 1.3-1.75 3.25-.25 2.1 1.1 3.45.35.4.7.7-.45.9-.4 2.1-.1 1.9 1.15 3.1 1.1 1.4 2.9 1.5 1.75.05 3.05-1.2 1.1-1.1 1.15-3 0-1.8-1.15-3.1-.05 0-.05-.05 1.15-1.15 1.35-2.95.15-1.9-1.15-3.45-1.35-1.45-3.35-1.5-.15-.05-.3 0 .55-.45.65-1.15.05-.75-.6-1.25m14.8 63.35h.05v-.05l-.05.05m113.45-72.8q.15-1.75-.7-3.05-.85-1.2-2.2-1.25-1.4-.1-2.45 1.05-1 1.15-1.15 2.95-.15 1.75.7 2.85.9 1.4 2.2 1.45 1.3.05 2.4-1.15 1.05-1.1 1.2-2.85m-6.7 36.8q1.3 2.45 3.45 2.55 2.2.1 3.95-2.15 1.7-1.9 1.95-5.2.35-3.1-1.05-5.35-.25-.3-.4-.6.35-.85.4-1.95.2-1.9-.8-3.45-.95-1.35-2.6-1.5-1.6-.05-2.85 1.25-1.15 1.3-1.35 3.3-.1 1.35.25 2.35 0 .1-.1.2-1.65 2.15-1.9 5.25-.25 3.25 1.05 5.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;0.276;0.281;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1A5262" d="M1201.05 86.7q-1.75 2.45-2.75 6.7-4.35 3.65-6.45 17.7-2.5 3.25-3.55 7.45-1.05 4.15-.25 7.8-3.8 4.75-1.7 11-3.7 6.35-2.15 13-5.15 15.3-7.55 38.4-4.65 45-1.45 77.2.2 3.05 2.25 6.85-.4 4.15.5 8.85l8.65-10.1q.7-3.85-.45-7.45-1.65-4.75-2.25-4.85-2.9-7.5.25-12.8-1.35-22.25 1.1-60.95 2.6-38.75 7.55-51.7 4.8-12.95 4.4-17.55 4.7-10 6.1-16.6l-2.25-12.95m-113.7-6l-6.15-16.9q-1.1.9-2.1 2.2-3.85 4.7-1.7 10.25-4.5 1.55-2.15 8.8-2.7.4-4.9 5.25-2.25 4.85-1.8 14.8-7.95 34.05-13.45 83.05-5.6 49.05-2.5 73.5 3.05 24.5 5.15 32.35-.7 3.15-.25 5.6l12.15-8.25q-1.2-2.65-1-5.9 3.9-7.35-1.7-12.2 1.65-2.25 2-4.6.35-2.4-2.45-3.85 2.75-6.4-2.4-8.85 2.75-9.3-1.6-12 2.7-27 5.25-63.55 2.65-36.7 12.75-67.55 3.8-2.35 1.5-10.65 6.45-4.9 6.7-8.85.2-3.9-.75-2.65-3.1-6.2-.6-10"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.228;0.234;0.27;0.276;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1211.9 103.75q-3.25 6.35-6.45 16.45-8.8 27.35-12.9 66.55-4 39.2-1 67.2.7 7.65 2.05 13.15 1.7 3 4 3.1.9.05 1.8-.35-.1-.25-.1-.5-2-6.65-2.95-18.75-2-26.45 1.9-63.55 3.8-37.1 11.3-63.1 3.8-13.25 7.45-19.55-1.1-1.8-2.5-1.85-1.25-.1-2.6 1.2M1096.6 88.5q-.9-.8-1.9-.85-1.4-.1-2.8 1.35-3.1 7.45-6.3 19.2-8.7 31.85-13.45 77.4-4.8 45.5-2.75 78 .55 8.7 1.45 15.1 1.45 3.5 3.6 3.65.9 0 1.8-.6-2.05-7.8-2.55-23.7-1.15-30.4 3.25-73.25 4.4-42.7 11.95-72.65 3.8-15.75 7.7-23.65"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1191.5 147.45q-.95 0-1.85.6-1.95 3.15-3.75 8-5.05 13.45-7.15 32.7-1.95 19.25.25 33 .6 3.75 1.45 6.45 1.1 1.5 2.5 1.6 1.95.05 3.9-2.55-1.55-3.15-2.4-9.55-1.7-12.15.1-29.2 1.8-17.05 6-28.95 2.15-6.3 4.35-9.15-1.45-2.9-3.4-2.95m72.4-8.75q-1.85-3.9-4.25-4.05-1.2-.05-2.45.8-2.45 4.35-4.9 11.25-6.6 18.7-9.4 45.6-2.8 26.9-.1 46.1.65 5.2 1.7 9 1.4 2.05 3.15 2.1 2.45.15 5.05-3.5-1.95-4.35-2.95-13.25-2-17 .5-40.8 2.55-23.8 7.95-40.45 2.85-8.75 5.7-12.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1322.2 145.15q-1.3-.1-2.4.65-2.35 3.7-4.7 9.7-6.35 16.2-8.75 39.45-2.45 23.2.45 39.95.75 4.45 1.85 7.7 1.35 1.85 3.25 1.95 2.4.15 4.9-3.1-2-3.7-3.15-11.45-2.15-14.75 0-35.4 2.1-20.55 7.25-34.85 2.8-7.55 5.6-11-1.9-3.45-4.3-3.6m-33.65 15.45q-4.95 11.95-6.75 29.1-1.75 17.25.65 29.5.55 3.35 1.4 5.75 1.15 1.35 2.6 1.4 1.9.15 3.85-2.15-1.55-2.85-2.5-8.55-1.8-10.9-.2-26.15 1.55-15.2 5.55-25.8 2.15-5.55 4.35-8.1-1.5-2.5-3.45-2.65-.95-.05-1.85.5-1.9 2.7-3.65 7.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1232.75 78.85q8.25 5.5 8.75 5.95-12.55-16.1-32.75-30.95 12.3 21 32.3 38.8l-8.3-13.8m37.35-18.35q1.65 11.5 5.85 21.45 4.2 9.9 7.7 15-2.3-12.25-5.45-20.7-3.1-8.45-8.1-15.75m-72.6 33.8q5.35 2.35 6.5 2.55l-19.65-13.95q-16.5-10.3-28.4-15.8 9.6 9.2 22.9 17 13.4 7.75 18.65 10.2m12.6-20.45q-13.05-11.1-19.4-13.7 4.3 7.2 18.2 18.95 14 10.5 23 14.25l-21.8-19.5m-66.6 29.45q-2.75-1.55-8-3.35t-8.5-2.75q-3.25-.95-3.45-.8-.3.15 2.65 1.55 2.85 1.4 7.95 3.45 5.05 2.05 7.95 2.9 2.9.75 3.6.85.65.1.5-.1 0-.25-2.7-1.75m89 7.55q7.85 5.5 16.55 10.25-14.85-14.85-31.05-24.35 6.75 8.6 14.5 14.1m-216.9-.5q17.55 5.8 25.9 6.9-5.85-3.2-21.9-8.45-17-5.5-27.25-7.15 7.55 3.5 23.25 8.7m25.25 29.35q-5.8-3.4-27.8-8.25-22.05-4.9-35.7-6.15 8.9 3.8 31 8.9 22 5.15 32.5 5.5m-31.7 5.2q-16.4-3-26.45-3.55 6.8 2.6 23.2 5.85 16.45 3.25 24.1 3.2-4.4-2.4-20.85-5.5m.95 35.8q-10.65-1.7-32.95-2.3-22.2-.65-34.25.45 10.2 1.45 34.65 2 24.45.6 32.55-.15m94.1-74.3q8.6 3.1 14 4.75 5.4 1.55 5.6 1.35.2-.3-4.4-2.6-4.6-2.3-13.25-5.3-8.7-3-14.1-4.5t-5.8-1.35q-.4.2 4.5 2.4 4.8 2.15 13.45 5.25m10.7 32.25q-26.8-13.7-63.1-23.55 31.5 13.7 63.1 23.55m-69.95-48.7q24.95 13.15 61.55 24.3-23.9-13.95-61.55-24.3m47.05 157.8q-10.3 1.1-15.9 6.2-.9.8 4.4-.6 5.4-1.35 11.5-5.6M1060.55 260q7-1.85 11.1-5.5-9.6-.4-18.9 6.75.8.55 7.8-1.25m3.95 14.65q8.9-3.65 16.25-8.6-1.95.25-12.7 3.55-10.75 3.4-23.65 11.1 10-2.1 19.05-5.7.45-.1 1.05-.35m19.25 6.45q-11.45 4.05-24.25 8.85-35.85 13.55-48.9 21.35 10.5-2.2 22.65-6.3 7.85-2.65 21.55-7.95 29.2-13.3 40.65-19.7-1.15.2-11.7 3.75m47.2-11.4q-14.9 6.3-23.15 10.9 6.05-1.55 17.8-5.95 8.3-3.15 10.85-4.35 8.9-3.95 13.85-6.45 4.9-2.45 8.65-4.6-1.05.15-7 2.15-6 2-21 8.3m-.25 11q-11 3.4-33.25 11.5-22.25 8-32.85 13.1 11.2-2.65 35.5-11.65 24.25-8.9 30.6-12.95m-104.75-46.65q12.65-2.75 24-7.05-8.5 1.15-21.45 3.65-13 2.45-30.85 7.6 14.1-1.15 26.85-3.9.75-.1 1.45-.3m2.95-13.1q13.95-1.95 20.55-4-3.95-.15-17.5 1.5-13.6 1.6-28.85 5.05 11.9-.65 25.8-2.55m9 18.35q-10.15 2.5-24.2 7.65 11-1.25 21.1-4.05.5-.1 1.05-.25 9.9-2.8 18.95-7.1-6.7 1.2-16.9 3.75m-2.6-15.2q-14.15.45-38.85 4.4-24.7 3.85-41.35 9.4 9.05.5 41.35-5l38.85-8.8m174.8 81.15q-5.7 2.75-20.1 11.2-14.4 8.45-22.3 14.6 5.75-2.05 17-8.05 8.05-4.3 10.4-5.85 8.65-5.35 13.4-8.7 4.8-3.3 8.35-6.1-1.05.15-6.75 2.9m-4.95 19.9q6.6-4.1 8.6-5.65 7-5.05 10.95-8.25 3.9-3.15 6.85-5.85-.8.1-5.45 2.8-4.75 2.6-16.5 10.7-11.85 8.15-18.35 13.95 4.7-1.95 13.9-7.7m-44.85-11.75q9.05-5.45 11.4-6.85 6.9-4.1 8.35-5.3-.95.15-6.25 2.65-5.4 2.5-19.05 10.3-13.55 7.75-21.6 13.3 2.6-.75 13.75-6.45 4.6-2.4 13.4-7.65m76.7 8.5q8.75-6.65 14.95-14.9-13.2 9.25-20.85 19l5.9-4.1m-16.85-15.1q7-3.85 15.1-11.8-12.95 4.8-21.35 14.65-.9.9 6.25-2.85m-131.4-233.05q21.45 14.55 56.9 25.5-22.5-15.2-56.9-25.5m-168.7 86.2q-17.8-1.05-27.45.25 8.15 1.85 27.7 2.85 19.45 1 26 .15-8.45-2.3-26.25-3.25m19.2 30.55q-11.9-1.6-36.4-.75-24.6.95-37.55 3.4 11.5 1.15 38.35.15 26.85-1.15 35.6-2.8m-44.3-13.6q30.5 1.45 40.65.1-13.1-3.75-40.95-5.25-27.85-1.6-43 .5 12.7 3.05 43.3 4.65m59.85 82.5q.85-.05 1.8-.25 14.85-2.75 28.35-7.05-10.1 1.15-25.45 3.55-15.45 2.4-36.45 7.55 16.7-1.1 31.75-3.8m-36.2-57.2q8.55.9 28.5-.7 20-1.7 26.5-3.55-8.8-1.35-27.05.05-18.25 1.4-27.95 4.2m125.9-91.25q-36.85-18.05-91.8-30.9 40.7 17.75 91.8 30.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.245;0.281;0.292;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1167.25 114.75l-8.6-8.6 33.15 11.45q-37.9-26.8-93.6-39.75l46.15 24.15-14.9-3.75 37.8 16.5m65.75 8l-14.4-17.55 29.05 15.95-12.8-21.65 20.75 13.2q3.15-11.4-13.8-32.75-17.05-21.35-31.9-27.25 11 15.35 18.95 31.55l-33.2-20.65 25.65 35.75q-27.8-15.85-57.25-26l68.95 49.4m61.6-2.65q-5.25-41.1-20.65-65.95 3 33.3 20.65 65.95m-247.35 21.15l-19.55-1.6 81.85 18.4-30.25-10.55 23.7 1.85-44.45-10.35-52.4-6.65 41.1 8.9M979.6 172.4l55.5-1.8q-33.3-4.55-63.55-6.65-33.5-3.45-66.25-2.2l50.8 7.35-102.45 2.9 76.4 12.85-22.85 1.95q23.25 1.7 32.5 4.05l-49.5 1.3 68.9 5.4-26 4.95q41.5 1.75 80.5-.8l-29.5-2.85 32.25-3.25-31.2-2.6 76.6-7.75-79.45-6.85 37-2.85-39.7-3.15m18.3-71.35l29.55 11.45-21.5-5.75 28.55 10.9 62.15 22.8-13.95-6.95 62.3 15.8-61.2-28.2 27.7 4.65q-70.75-24.65-149.6-43.4l56.15 23.05-20.15-4.35m93.9 62.7q-2.5-.7-18.3-6.8l18.3.4q-20.6-6.65-42.75-9.35l9.35 3.4-48.65-5.6q43.5 14.35 82.05 17.95m22.4-55.65l-49.2-12 73.65 31.7-19.45-11.4 29 2.2-48.3-21.05 14.3 10.55m-57.9 112.25l17.4-6.65-61.6 9.35 22.2-.45-70.2 13.1 63.95-6.15-23.1 7.55 73.7-12.75-22.1 1.35 36.8-10-37.05 4.65m2.5 53.85q2.35.35 23-6 20.65-6.45 35.2-13.45-30.6 7.15-58.2 19.45m22.55 17.85l23.25-6.8-28.5 16.55q39.05-12.05 76.1-25.85l-31.8 7.1 54.75-27.55-61.45 17.65 33.8-19.6-122.75 50.5 76.45-22.75-19.85 10.75m43.05-51.65q-33.3 6.35-65.6 19.4 20.1-4.55 65.6-19.4m-135.15 20.55l28.45-4.1 36.05-7.6-28.95 1.65 36.55-13.15q-69.35 8.9-134.1 24.8-.05.2 42.95-4.5 21.45-2.35 42.95-4.75l-23.9 7.65m238.85 34.85l23.2-19.15q-40.1 23.55-73.95 49.45.35-.25 45.6-21.55l-29.6 27.1q36.25-18.65 65.6-44.3l-17.9 9.85 17-17.45-29.95 16.05m9.8-19.4l-22.5 9.4 19.45-20.55L1143 320.5q-.05.25 54.8-24.8l-18.3 19.6q31.45-18.9 58.4-38.9m27.8 19.05q5.5-7.45 6-8.35-22 15.85-45.35 42.55l19.9-15q13.9-11.65 19.45-19.2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;0.276;0.281;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1185.65 141.2l-41.8-23.85 32.65 9.8-17.8-12.8 55.1 16.45q-47-29.55-111.5-53.45 24.3 16.8 42.8 35.75l-73.05-15.65q19.35 8.8 34.45 21.5l-123.1-28 111.05 54.45-64.35-7.15 58.9 17.65-43.35-1.4 84 14.5q-16.6-9.5-31.35-15.1l46.45 3.8-53.8-23.3q50.2 13.75 100.6 25.05l-61.5-32.5q28.5 5.35 55.6 14.25m77.8 3.2l-17.65-31.55 55.9 55.95-33.75-55.6q16.3 12.1 31.5 28.9l-13.9-28.1 27.85 27.1-33-74.6 2.15 40.1-63.3-48.65 28.5 41.25-47-38 37.5 50.3-50.2-23.1 75.4 56m-251.5 25.1l38.5-3.15-118.8-2.15 56.75 7.65-134.75.15 130.45 17.5-59.5.75q72.85 17.85 156.75 7.8l-62.55-5.35 103.55-3.7-111.25-10.65 58.65-.4-57.8-8.45m54.25 39.85l24.3-7.55-78.35 8.95 57.6 3.6-65.1 16.4 75.4-3.9q-53.35 15.6-106.25 26.4 41.05.1 109.15-13.6l56.7-13.2-60.2 8.2q14.35-5.4 28.85-10.8 27.45-10.2 29.9-10.15-3.85-.15-62.4 7l44.55-12.5-54.15 1.15m170.15 50.35l24.75-21.15-78.4 42.9 46.1-13.45-57.35 37.9 81.55-37.45-39.6 36.05 27.7-14.55-24.5 24q58.25-17.45 96.2-65.1l-49.7 24.4 42.15-38.45-61.05 32.4 23.25-20.3-31.1 12.8m-63.8-27.45l-36.05 6.5 17.5-8.25-83.1 24.45 65.15-11.05-55.9 21.95 59.2-13.6-28.45 11.2 31-7.15q-49.9 21.9-105 39.65l118.8-30.8-27.2 15.5 69.05-21.05L1173 263l59.75-29.4-77.65 23.25 35.35-18.25-52.25 9.6 34.35-15.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.228;0.234;0.27;0.276;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1344.2 223.4l3.8-59.65-60.3-41.75 8.6 20.05-54.35-36.35 36.05 38.7-56.5-32.4 41.45 32.4-124.1-48.35 70.35 41.75-77.25-24.9 46.8 22.3-16.35-5.65 12.7 7.65-149.6-30.9q55.65 22.95 124.6 49.2l-73.35-6.75q28.65 10.55 58.7 18.35l-168.6-.7 62.65 9.8-129.4-1.7 138.5 19.35-62.15.6 126.45 7.6-69.55 7.2 110.1.8-88.5 16.7 86.95-4.65-127.75 25.75 127.7-14.95-35.75 8.1 88.35-10.1-61.7 20.45 66.1-10.3-100.25 38.55 82.05-18.8-31.35 11.25 130.55-30.2-72.15 47.35 106.3-55.5-64.6 55.3 94.8-65.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1349.65 167l-41.2-32.35 14 26.35-81.1-20.75 33.9 18.65-31.95-10.35 11.05 6.65-50.25-13.7 39.6 20.05-46.45-3.85 29.45 17.2-62.4 4.2 16.95 3.75-74.4 3.05L1218.4 210l-42.4 6.8 52 1.1-37.65 17.05 75.55-8.05-57.25 26.7 94.1-25.15-28.9 22.4 54.3-21.55 2.45 26.2 16.55-30.5 2.5-58"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1336.1 164.1l-35.1-15.35 14.35 14.65-13.8-7.85 4.65 5.2-21.7-10.25 16.7 15.7-20.4-2.2 12.35 13.5-27.8 4.7 7.4 2.75-33 4.05 48.4 17.5-19.1 6.45 22.95-.1-17.3 14.75 33.75-8.15-26.4 23.1L1324.7 220l-13.7 19 24.9-18.8.05 21.5 8.5-25.45 3.45-47.75-17-25.75 5.2 21.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1237.45 88.15l3.7 10.15-21.2-14.25q3.95 20.7 20.75 31.25l-9.7-20.05 20.9 13.25-14.45-20.35m-94.7 7.55q.7.45 2.45 1.8 3.2 2.45 30.35 14.45l4.7 1.2q-17.85-12.4-37.5-17.45m-157.5 100.7l12.8-1.15-40.55-1.85q-.15 0-.3.05-5.9-.2 1.55 1.5 7.6 1.65 26.5 1.45m-11.95-28.1q6.65.8 25.7 1.6 19 .85 9.35-.8-45.1-3.6-44.45-2.3 2.65.75 9.4 1.5m150.4-27.1q-42-18.25-66.75-24.05-24.75-5.75-12.95-.9 11.7 4.75 35.5 13.3 23.8 8.4 44.2 11.65m-16.3 140.45q11.4-1.9 22.15-5.8 16.05-5.6 23-11.65-19.7 5.1-32.75 10.5-8.95 3.65-12.4 6.95m-77.45-95.6q-53.5-8.4-103.15-8.75l50 7.9-28.1 1.85q43.65 3.8 81.25-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;0.276;0.281;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1303.35 123.8q-5.4-11.55-5.3-11.55l-.3-.3-11.6-20.75-2.15 17.85-43.4-28.45 11.1 23.25-26.15-16.45 16.6 26.9-20.25-6.2 35.95 30-12.1-25.15 43.4 39.6-27.05-46.45 30.05 25.75q-4.25-9.8-7.65-19.45l23.4 19.8q-1.8-2.65-4.55-8.4m-135.6-.45l-14.7-12.15q39.5 11.85 56.35 17.8-28.5-16.35-76.6-36.5l23.7 26.05-41.65-7.15 29.95 16.75-23.55-4.95 10.65 9-92.25-21.45 72.95 38.15-42-1.7 34.95 13.35-28.35-2.55 43 8.25-26.65-13.9 42.3 3.25-47.75-22.15 86.8 19.05-46.45-26.15 49.7 11.85-34.6-20.9 24.2 6.05m-158.15 65.9l-37.05 3.3q40.7 8.7 90.7 6.05-6.85.15-49.8-5.75l88.7-4.4q-45.85-2.35-93.1-10.45l37.6-1.4q-22.05-2.95-38.5-7.9l15.6-1.85-43.55.95 29.9 6q-40.9.1-77.85 4.3l77.35 11.15m48.9 21.4l23.1-7.55-41.8 7.55 36.5 3.15-32.05 12 46.2-2.4-47.4 19.75q38.8-3.8 72.05-11.6 4.35-1.6-37.7 3.55l47.5-18.8-60.05 6.45 42.65-12.6-49 .5m185.35 49.25l-19.75 17.5 39.85-15.6-21.55 24.05 35.95-14.6-34.15 27.35q34.6-18.05 56.45-40.95-10.75 5.65-44.9 20l36.15-34q-21.45 14.3-48.85 23.75l17.5-15.9-26.55 9.3 15.75-14.5-36.05 21.85 30.15-8.25m-89.8 10.75l27.2-7.7-15.2 2.65 40.35-21.1-54.55 13.85q15.7-9.15 28.4-16.15l-49.85 8.65 29.7-14.65-29.4 4.65 9.65-5.4-26.15 9.3 29.15-3.75-28.35 14.95 43.6-7.75-39.95 22.2 56.75-12.75-21.35 13"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.228;0.234;0.27;0.276;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1298.85 135.25l11.1 19.8-42.05-25.55 22.55 25.05-35.3-20.1 26.7 21.5-93.75-35.65 39.15 24.8-54.6-15.65 24.45 11.7-18.7-3.3 10.4 5.2-103.2-18.8 82.4 35.05-52.4-3.2 32.55 8.65-14.4-.25 39.35 5.55-151.15 1.4 60.3 7.35-104.5 2.65q53.3 9 134 14.15l-64.55 2.45q48.55 2.65 96.45 2.3l-38.2 5.15 57.95 2.3-53.35 13.8 57.95-3.65-85.2 20.1 89.5-11.2-23.15 6.15 60.1-6.1-38.3 14.8 43.45-5.65-72.4 30.1 81.55-20.05-29.45 12.35 106.8-27.7-12.1 11.05 33.85-16.2-12.1 15.7 34.15-23.2 1.5-52.7-47.35-30.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1322.25 150.55l9.65 18.15-68.1-19.35 30.35 16.8-26.65-6.8 18.45 9.1L1239 155.4l25.65 12.5-50.3-4.15 29.6 14.1-55.75 3.15 31.8 3.7-69.75 5.8 88.8 18.25-25.4 6.45 49.25-1.9-43.75 14 64.7-7.3-25.2 16.1 57.7-15.45-16.45 15.4 32.6-12.65 1.4 16.95 10.75-18.5 2.25-46.9-24.65-24.4"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1299.35 161.3l10.9 9.7-22.05-2.4 12.5 11-24.85 3.65 14 2.45-31.15 6.2 38.6 13.15-11.45 5.8 21.8-2.5-19.9 12.35 28.9-7.25-11.8 13.7 26.1-13.85-7.8 13.05 14.95-11.1-.1 13.95 5.45-15.45 2.9-38.65-9.95-19.5 3.55 14.65-29.4-14.55 12.8 13.3-11.5-5.05 7.8 7.05-20.3-9.7"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1321.75 164.45l-8.65-5.05-29.25-17.35 20.5 21.35-27.1-13.75 17.85 13.5-77.6-28.2 31.25 21.3-43.6-13.05 18.25 9.2-85.25-11.6 60.3 24.25-34.65-.9 42.65 9.15-104.05 2.25 68.2 5.6-87.7 6.5q52.1 8.05 107.1 10.3l-45.2 5.85 48.05 1.65-34.95 8.45 53-2.55-58.8 14.7 57.3-6.35-21.45 6.45 54.35-5.95-39.15 14.95 46.35-7.5-42.45 17.85 62.7-14.35-19.7 10.1 62.4-20.5-9.45 11.1 15.1-9.35-4.4 5.85 29.55-14 1.7-40-34.8-27 3.6 5.35 8 11.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1331.85 177.35l-30.4-10.55 13.55 9.95-40.8-8.25 16.4 9.85-44.1-6.05 31.5 12.1-46.8-.35 32.1 4.55-62.15 6.7 84.4 8.25-24.95 5.35 51.5-3.85-15.5 12.75 20.3-5.6-1.85 5.7 24.25-13.3q5.55-11.8 2.95-19.85l-16.45-16.95 6.05 9.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1332.2 177.3l-17.8-6.05 6.95 7.85-19.3-4.15 13.4 9.45-20.7.5 14.1 3.15-27.8 6.8 37.05 4.95-11.3 5 22.95-4.25-7.4 10.8 9.25-4.9-1 4.7 11.2-11.5q2.95-9.8 2.05-16.4l-6.55-13.55 2.3 7.7-13.05-8.1 5.65 8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1202.3 90.3q.45-.8.2-1.95-.35-1.15-1.25-1.95-1-.9-2.1-.9-1.05 0-1.55.8-.55.8-.15 2 .3 1.15 1.25 1.95 1.05.85 2.05.85 1.1.05 1.55-.8m7.65 11.7q-.95-1-1.85-.8-.95.15-1.25 1.25-.45 1.2-.05 2.65.4 1.6 1.4 2.45.9 1.05 1.8.9.9-.15 1.3-1.35.3-1.05 0-2.6-.5-1.5-1.35-2.5m2.15 11.35q.45-.3.35-.8-.05-.4-.5-.75-.35-.4-.85-.4t-.9.25q-.3.35-.25.8.1.45.45.8.4.35.9.4.45.05.8-.3m-20.3-12.6q.1-.8-.7-1.5-.8-.65-1.95-.7-1.2-.05-2.05.5-.85.6-1 1.4-.1.9.7 1.55.75.7 1.95.7 1.1.1 2.1-.55.9-.5.95-1.4m-3.25 2.95q-1.25-.05-2.35.7-1 .85-1.15 2-.1 1.25.7 2.05.9.95 2.2 1 1.35 0 2.4-.75 1-.8 1.1-1.95.15-1.2-.75-2.1-.85-.9-2.15-.95m-5.55 34.85q-.6-.5-1.4-.55-.8-.05-1.5.35-.65.45-.7 1.1-.05.6.4 1.1.15.05.3.15-.25.1-.5.25-1.45 1.05-1.9 2.5-.5 1.5.3 2.55.75 1.15 2.3 1.2 1.6.15 3-.95 1.45-.9 1.95-2.4.45-1.4-.25-2.6-.6-.9-1.75-1.1.15-.2.2-.5.05-.65-.45-1.1m-9.7 35.95q-.05 1.35 1 2.2 1.1 1.05 2.7 1.1 1.6.1 2.8-.85 1.25-.7 1.3-2 .05-1.35-.95-2.3-1.1-.9-2.65-1-1.7-.1-2.9.75-1.25.85-1.3 2.1m.25 20.85q.55-.4.65-1 0-.6-.5-1.05-.5-.5-1.25-.55-.7-.05-1.3.4-.5.4-.6 1 0 .65.45 1.1.55.5 1.25.55.75.05 1.3-.45m40.1-44.15q.05-1.25-.95-2.2-1.05-.85-2.7-.9-1.5-.1-2.8.65-1.2.85-1.3 2.05-.15 1.25.9 2.05.35.3.65.5-.3.7-.4 1.6-.05.65.05 1.2-.5.1-.95.4-1.15.8-1.25 2-.1 1.2.8 2 1 .95 2.5 1 1.4.1 2.55-.8 1.2-.6 1.3-1.8.1-1.2-.8-2.15-.2-.1-.3-.2.3-.65.35-1.4.05-.75-.05-1.45.45-.25 1-.6 1.25-.7 1.4-1.95m-4.7 16.25q1 0 1.6-.4.75-.45.8-1.15.05-.75-.6-1.15-.5-.55-1.45-.55-.95-.15-1.55.3-.75.5-.8 1.2-.05.7.5 1.15.65.55 1.5.6m-30.6-17.3q-.05.65.4 1.1.65.55 1.4.6.85 0 1.55-.4.6-.45.7-1.05.05-.65-.45-1.15-.6-.45-1.45-.45-.75 0-1.45.35-.65.35-.7 1m-1.65 15.75q-.6.35-.65.9-.15.65.25 1 .5.45 1.25.55.75 0 1.35-.35.65-.4.8-.95.1-.6-.4-1.05-.45-.4-1.15-.45-.8-.05-1.45.35m-94.9-95.6q.6 1.1 2.05 2.05 1.35.9 2.6 1 1.4.15 1.8-.55.55-.7-.05-1.9-.6-1.1-2-2-1.5-.9-2.6-.45-1.65-.65-2.1.1-.35.65.3 1.75m-19.95 23.25q-1.4 1.35-1.5 3.35-.1 2.05 1.25 3.4 1.25 1.45 3.3 1.45 1.9.05 3.3-1.35 1.5-1.35 1.6-3.3.1-2-1.3-3.45-.3-.4-.6-.6.15-.3.2-.75.05-.35-.05-.65.55-.1 1-.3.8-.35.9-.85.05-.6-.65-1.05-.75-.4-1.8-.4-1.05-.1-1.85.25-.75.3-.85.9 0 .55.6.95-.3.4-.4 1v.05q-1.8.05-3.15 1.35m28-13.2q.55 1.15 2.1 1.9t3.2.65q1.6-.15 2.35-.95.85-.95.25-2.05-.5-1.15-2.1-1.9-1.5-.7-3.1-.6-1.6.05-2.5.95-.75.95-.2 2m8.8 4.95q-.5-.05-.9.3-.35.35-.45.85 0 .55.35.9.3.4.75.4.45.05.85-.35.45-.3.45-.8.1-.55-.25-.9-.3-.4-.8-.4m.75 10.75q-1.2-.05-1.75.85-.5.85-.05 2.25.5 1.35 1.65 2.3 1.25 1.05 2.5 1.1 1.15.1 1.7-.85.55-.85 0-2.2-.4-1.45-1.65-2.4-1.15-.95-2.4-1.05m-48.25 39q-.15 1.35 1.05 2.25.4.3.8.55-.45.5-.6 1.2-.25 1 .15 1.65.4.75 1.25.85.85 0 1.7-.65.7-.6.95-1.6.05-.45.05-.8 1.2-.2 2.2-.85 1.45-.75 1.65-2.15.05-1.25-1.15-2.3-1.2-1-3.1-1.1-1.9-.1-3.35.75-1.45.9-1.6 2.2m-.15 26.3q-.25-.35-.7-.4-.5 0-.8.3-.4.25-.45.7 0 .4.3.75t.7.35q.5 0 .8-.2.5-.35.45-.8.1-.45-.3-.7m-.95 23.6q-.95-.65-2.1-.7-1.15-.1-1.95.5-.8.65-.75 1.55.1.95 1.1 1.55.05.1.15.2-.2.55-.25 1.3-.2 1.25.2 2.05.45.9 1.1 1 .8 0 1.3-.85.65-.75.8-2.05v-.95q.35-.15.8-.5.75-.45.6-1.45-.05-.9-1-1.65m56.25-75.5q-.55-.6-1.35-.65-.85 0-1.55.55-.65.55-.65 1.35-.15.75.35 1.35-.85.05-1.45.3-1.25.5-1.45 1.3-.15.85 1 1.55 1.1.65 2.85.75.05.55.2 1.1.2 1.2.95 1.9.7.85 1.45.7.75-.05 1.1-1.05.3-.9.1-2.05-.2-.65-.4-1.15 1.05-.5 1.2-1.15.05-.85-1.05-1.6-.6-.3-1.45-.5.5-.55.55-1.25.05-.8-.4-1.45m.8 45.25q.6-.6.55-1.55-.05-.9-.75-1.6-.7-.65-1.6-.65-1-.05-1.65.5-.55.65-.55 1.5.05 1 .65 1.65.7.7 1.7.7.95.05 1.65-.55m1.05 6.15q.35-1.25-.6-2.2-.9-.8-2.45-.9-1.45-.1-2.8.65-1.25.85-1.55 2.05-.25 1.25.65 2.05.9 1 2.4 1.05 1.5.1 2.8-.75 1.25-.75 1.55-1.95M1104 183.6q.05-.65-.3-1.25-.4-.45-1-.55-.55 0-.95.45-.5.55-.55 1.2-.1.75.25 1.25.15.15.3.25-1.45.15-2.6.85-1.4 1.05-1.55 2.55-.15 1.6 1.05 2.55 1.3 1.25 3.05 1.35 1.85.05 3.3-.95 1.45-.9 1.5-2.5.25-1.5-1-2.65-.95-.95-2.3-1.1.1-.1.2-.25.5-.45.6-1.2m-5.55 27.6q-.7-.6-1.65-.7-1 0-1.75.5-.65.6-.75 1.45-.1.9.5 1.45.7.65 1.65.7.95 0 1.7-.55.75-.45.9-1.4.05-.8-.6-1.45m-1.35 13.9q.1-.8-.6-1.45-.7-.6-1.75-.65-1-.05-1.9.4-.7.65-.8 1.35-.1.9.6 1.4.7.65 1.75.65 1.05.1 1.8-.5.75-.45.9-1.2m-2.95 19q1-.75 1.2-2.25.15-1.4-.7-2.45-.2-.3-.5-.55.5-1 .6-2.5.25-1.75-.25-3.1-.4-1.25-1.2-1.25-.8-.1-1.6 1.15-.65 1.15-.9 3-.15 1.55.25 2.6-.3.2-.55.45-.95.95-1.15 2.35-.15 1.45.7 2.35.75 1.1 1.95 1.2 1.25 0 2.15-1m-10.05 19.5q-.1 1.05.35 1.75-.3.8-.45 1.8-.25 1.7.05 2.8.35 1.4 1 1.6.65.1 1.25-1.05.6-.95.85-2.7.05-.75.1-1.4.35-.25.65-.6.8-.7.95-1.95.1-1.2-.55-2.1-.55-.85-1.5-.95-1.05-.05-1.85.8-.7.8-.85 2m-30.45 21.05v-.05q.7-.55.65-1.85 0-1.3-.65-2.5-.75-1.2-1.7-1.55-.9-.4-1.7.15-.6.75-.6 2 0 1.35.7 2.4.35.65.75 1.1-.25 0-.45.05-1.4.3-2.1 1.1-.6.85-.1 1.65.5.95 1.7 1.35 1.35.35 2.75.05 1.3-.15 2.05-1 .65-.8.15-1.75-.4-.7-1.45-1.15m-7.85-80.5q-.55 0-1 .35-.45.4-.5.95-.05.55.35.9.35.45.9.5.6 0 1.05-.4.55-.35.55-.9.1-.45-.3-.95-.45-.4-1.05-.45m2.6 46.65q.9-.45.95-1.4.1-.85-.7-1.55-.85-.65-2.05-.7-1.3-.05-2.2.45-.9.6-1 1.5-.1.9.75 1.45.85.65 2.1.7 1.2.1 2.15-.45m-1.65 4.85q.6.05 1-.25.55-.3.55-.75.1-.4-.35-.75-.4-.3-.95-.3-.65-.05-1.05.2t-.45.75q-.05.4.3.75.4.35.95.35m26.5 50.55q1.3.65 2.75.05 1.4-.4 2.15-1.55.8-1.25.45-2.55-.45-1.2-1.65-1.8-1.25-.6-2.7-.25-1.55.6-2.2 1.75-.8 1.25-.35 2.45.3 1.4 1.55 1.9m-6.85 1.9q-.85-.9-2.35-1.05-1.35-.15-2.45.5-1.05.85-1 2.05-.05 1.2.85 2.05 1.15 1.05 2.4 1.25h.05q-.05.3-.05.6-.1.95.5 1.7.6.8 1.5.85.9.2 1.45-.45.8-.6.8-1.6.1-.95-.6-1.75-.25-.35-.55-.55.35-.55.45-1.4 0-1.2-1-2.2m138.65-108.7q.35.3.85.3.5.05.9-.25.35-.15.4-.6 0-.35-.3-.6-.3-.35-.85-.35-.45-.05-.9.2-.35.25-.35.6-.1.45.25.7m2.95 5.7q.1-.7-.5-1.25-.55-.45-1.5-.5-.9-.05-1.6.4-.65.4-.7 1.1-.1.7.4 1.2.65.6 1.55.65.9.05 1.55-.5.7-.4.8-1.1m-32.75 16.4q.8-.55.9-1.6.05-1-.7-1.8-.65-.65-1.8-.75-1.1-.05-2 .55-.75.75-.85 1.75-.05 1 .6 1.7.75.75 1.85.85 1.1.05 2-.7m1.45-9.8q.15-2.05-.65-3.55-.8-1.45-2.25-1.55-1.45-.05-2.5 1.3-1.1 1.4-1.25 3.5-.15 2.05.65 3.45.9 1.55 2.35 1.65 1.25.05 2.4-1.45 1.1-1.25 1.25-3.35m21.7 19.8q.75.8 1.8.9 1.1.05 2.05-.7.85-.55.95-1.65.05-1-.6-1.85-.75-.75-1.85-.75-1.05-.1-2 .6-.9.7-.95 1.7-.1 1.1.6 1.75m4 9.75q-.75-1.05-2.05-1.15-1.4-.05-2.5.9-1.05 1.05-1.2 2.45-.1 1 .2 1.75 0 .05-.05.1-.7.85-.85 2.15-.2 1.3.4 2.15.6 1 1.4 1.05.9.05 1.7-.9.6-.8.8-2.1-.05-.25 0-.5.95-.2 1.65-1 1.1-.75 1.25-2.3.2-1.45-.75-2.6M1172.8 231q-.75-.05-1.3.3-.5.5-.55 1.05 0 .6.4.95.5.55 1.25.6.75 0 1.25-.4.6-.3.65-.95 0-.6-.45-1.05-.55-.45-1.25-.5m-1.95 22q-1.15.6-1.15 1.65-.15 1 .85 1.65 1 .75 2.45.85 1.45.1 2.45-.55 1.1-.65 1.2-1.6.1-1-.9-1.75-.9-.75-2.35-.8-1.45-.1-2.55.55m1.6 7.2q-1.65-.1-2.9 1.05-1.2 1.1-1.35 2.85-.15 1.75.85 2.85 1.15 1.4 2.8 1.5 1.6.05 2.85-1.2 1.3-1 1.45-2.75.15-1.75-.95-3-1.05-1.25-2.75-1.3m-1.1 30.5q0 1.25 1.25 2.85 1.25 1.5 3 2.2 1.95.9 3.3.5h.25q1 .25 2.15-.5 1.3-.65 1.95-2.05.6-1 .6-1.85.6 0 1.35-.35.9-.4 1.3-1.3t0-1.7q-.45-.65-1.4-.95-.95-.2-1.95.2-1 .45-1.3 1.35-.15.25-.15.45-.8 0-1.65.4-.75.55-1.35 1.3-1.15-1.05-2.6-1.75-1.85-.8-3.25-.45-1.3.35-1.5 1.65m17.55-20.5q.55.35.95.7.05.1 0 .3-.1 1.05-.15 1.9-.65.1-1.2.5-.85.5-1 1.3-.05.85.7 1.4.7.7 1.9.7.75.1 1.5-.2.15-.1.35-.25 0-.05.05-.05.85-.45.95-1.25-.05-.15-.05-.3.55-1.1.75-2.95.2-.65.2-1.35.15-.05.2-.15 1.2-.7 1.35-1.95.1-1.05-.95-2.05-.9-.85-2.5-.95-1.45-.05-2.65.7-1.15.8-1.25 1.95-.15 1.2.85 2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.281;0.292;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1199.2 83.75q-2.65-.05-4.4 1.2-1.85 1.35-1.65 3.35.25 2 2.2 3.5 2.05 1.55 4.6 1.75.05.7.35 1.65.65 1.95 2.1 3.1.15.15.3.25-.45.8-.3 1.85.1 1.7 1.45 2.95.2.2.45.4-.35 1.15.2 2.65.6 1.95 2.15 3.05.5.4 1.05.7-.9.75-.75 1.7.1 1.15 1.1 1.95.4.3.9.5.1.45.25.95.35 1.55 1.2 2.45.2.2.4.35-.05.05-.05.1-.65.45-.6 1.1.05.7.75 1.1.7.6 1.65.65.85 0 1.4-.45.65-.45.6-1.15-.1-.65-.85-1.1-.25-.25-.55-.35.15-.3.3-.7.25-1.15 0-2.7-.15-.3-.25-.65.7-.65.6-1.65-.1-1.05-1.15-1.85-.5-.4-1.15-.6.25-.35.5-.8.6-1.4-.05-3.35-.55-1.6-1.7-2.75.5-.85.4-2.05-.25-1.7-1.45-2.95-.75-.65-1.5-.95.2-1.15-.3-2.5-.55-1.85-1.7-3.05.65-1 .55-2.35-.2-2.05-2.15-3.65-2.15-1.45-4.9-1.65m11.35 60.1q-.85.2-1.7.85-1.35 1.05-1.55 2.75.05.15.05.35-.25.15-.55.35-1.75 1.65-2.1 3.95-.45 2.45.8 3.9.15.3.45.6-1.5 1.2-1.7 2.85-.15 1.9 1.25 3.1.1.15.3.35-1 1.65-1.25 3.9-.3 2.8.8 4.7.5.95 1.1 1.5-.5.85-.6 1.9-.2 1.55.4 2.45.6 1.1 1.65 1.1 1 .1 1.75-.95.85-.85 1.05-2.3.1-1.25-.3-2.15.5-.5 1.1-1.2 1.5-1.8 1.8-4.6.25-2.4-.6-4.2.05-.05.1-.05 1.65-1.15 1.85-3 .15-1.8-1.15-3.2-.35-.3-.6-.5 1.55-1.4 1.95-3.7.15-1.25-.05-2.35.95-.9 1.1-2.35.1-1.35-.6-2.5.2-1.7-.4-3-.65-1.2-1.7-1.25-.9-.05-1.8 1.1-.55.75-.85 1.6m-2.25 36.45q-.9-.05-1.55.35-.7.45-.8 1.1-.05.75.55 1.3.6.45 1.55.55.85.05 1.5-.45.75-.45.8-1.1.05-.7-.5-1.2-.65-.5-1.55-.55M1075.9 71.5q-.2 2.45 2.2 4.4 2.45 1.95 6.2 2.1 2.7.2 4.95-.75-1.2 1-1.3 2.35-.15 1.85 1.4 3.1 1.7 1.45 4.15 1.6 1.25.05 2.4-.25-.2.45-.25 1-.1 1.35.45 2.3.55 1.05 1.65 1.1.95.05 1.85-.9.7-.9.9-2.25.1-1.4-.45-2.35-.35-.55-.9-.8.7-.85.85-1.85.15-1.8-1.45-3.15-1.65-1.3-4.15-1.5-1.55-.05-2.9.35 2.25-1.55 2.5-3.9.3-2.65-2.15-4.7-2.5-2-6.2-2.2-3.75-.15-5.6 2.75-4.05 1.05-4.15 3.55m24.95 21.75q-3-.1-5.3 1.3-2.25 1.35-2.45 3.55-.25 2.15 1.65 3.8 1.6 1.3 3.9 1.65-.2.95-.05 2 .25 1.9 1.3 3.2-.15 0-.35.05-1.95 1.35-2.15 3.2-.25 1.9 1.45 3.25 1.65 1.35 3.95 1.6-.4 1.1-.25 2.45.25 2.2 1.75 3.4.15.25.35.45-.2.05-.35.2-1.4.8-1.55 2.05-.05 1.35 1.15 2.25.4.4.9.6v1.2q.15 1.85 1 2.85.2.3.4.45-.05.05-.15.1-.85.5-.9 1.3-.1.85.6 1.4.8.6 1.85.7 1.1 0 1.95-.5.85-.5.95-1.35.1-.75-.7-1.35-.25-.25-.65-.45.35-.3.55-.8.7-1.3.55-3.15 0-.45-.1-.85 1.1-.7 1.25-1.9.1-1.3-1-2.2-.5-.4-1.05-.65.4-.35.7-.9.9-1.5.7-3.65-.35-2.1-1.7-3.5-.05-.05-.05-.1.95-.95 1.05-2.25.25-1.85-1.5-3.35-.6-.5-1.45-.85.95-1.6.65-3.75-.25-2-1.3-3.35.95-1.05 1.15-2.45.15-2.15-1.8-3.85-2-1.6-4.95-1.8m9.15 52.55q-1.15-.9-2.85-1-1.75-.05-3.15.7-1.4.9-1.55 2.15-.05.55.15 1.05-.65.3-1.35.75-2.25 1.6-2.6 3.85-.45 2.4 1.2 4v.05q-1.75 1.25-2 3-.15 1.95 1.6 3.25.6.55 1.3.95-.25 1.7.95 2.85 1.2 1.3 2.85 1.4 1.85.1 3.15-1.1 1.45-1 1.6-2.75.05-.65-.05-1.25 1.35-1.1 1.55-2.7.15-1.85-1.55-3.4 1.85-1.35 2.3-3.6.4-2.3-1.1-4.15-.15-.05-.25-.1.75-.7.85-1.65.15-1.3-1.05-2.3m-2.05 30.85q.15-1.4-.9-2.45-1.15-1.1-2.8-1.15-1.65-.15-3 .85-1.3.9-1.4 2.35-.1.7.1 1.35-1.15 1.2-1.4 2.9-.2 1.2-.05 2.05-.2.15-.25.25-2.2 2.05-2.5 5.05-.3 3.05 1.4 5.05 1.4 1.75 3.25 2.35-.3.65-.4 1.35-.1 1.4.4 2.25.5 1.1 1.35 1.15.8 0 1.5-1 .75-.8.85-2.25.15-.85-.1-1.6 1.4-.5 2.6-1.75 2.2-1.8 2.55-4.85.3-2.95-1.45-5.25-.3-.35-.7-.7.35-.7.6-1.6.2-1.5-.25-2.7.5-.7.6-1.65M1098 205.1q-1.6-.05-2.95.85-1.3.95-1.4 2.4-.05.3 0 .6-.25 0-.4.2-1.55 1.1-1.7 2.8-.25 1.8 1.1 2.95 1.35 1.35 3.3 1.45 1.95.1 3.45-1.1 1.55-1 1.75-2.75.05-1-.25-1.85.8-.75.9-1.85.1-1.45-.95-2.55-1.1-1.05-2.85-1.15m.65 14.75q-1.05-1.05-2.75-1.1-1.65-.1-3 .8-1.3.95-1.45 2.4v.3q-.2.05-.3.25-2.15 1.6-2.75 4-.45 1.7-.15 3-1.1 2.7-1.5 6.15-.35 3.35.05 5.8-.7 1.3-.9 2.85-.3 2.55 1.15 4.25 1.55 2 3.9 2.15 2.3.15 4.2-1.7 1.8-1.5 2.05-4.1.15-1.35-.2-2.45 1.2-2.55 1.65-6.15.45-3.95-.45-6.9.7-1.05 1.1-2.3.5-1.9-.15-3.35.4-.65.5-1.35.2-1.45-1-2.55m-10.75 36.3q-1.65-.25-3.2 1.1-1.15 1-1.75 2.3-.85.35-1.65.9-1.8 1.45-2.05 3.55-.1 1.45.45 2.55-.8 1.45-1.2 3.3-.4 3.1.75 5.1.6.95 1.15 1.6-.7.3-1.35.85-1.35 1.4-1.7 3.65-.35 2.25.6 3.75.95 1.85 2.5 2.05 1.7.25 3.05-1.25 1.35-1.15 1.7-3.5.4-2.2-.55-3.85-.15-.35-.35-.6 1.3-.35 2.45-1.65 1.9-1.6 2.3-4.7.3-1.85-.1-3.5 1.45-1.25 1.6-3.25.2-1.2-.35-2.35 0-.15.05-.35.7-2.15-.05-3.85-.75-1.7-2.3-1.85m-16.25 39.45q-.3.4-.5.95-1.85.6-2.8 1.95-.65.9-.7 1.85-1.75.55-2.7 1.95-1 1.3-.6 2.6-.2.05-.35.05-.95.3-1.85.75v.05h-.05q-2 1.1-3.15 2.8-1.8 2.7-.75 5.2.85 3 3.75 4.2 3.1 1.35 6.55.25 3.25-.8 5.15-3.45 1.65-2.6.8-5.4-.5-1.2-1.35-2.15-.2-.1-.4-.15.1-.1.2-.1.1.15.2.25 1.65.4 3.45-.1 2.05-.4 3.15-1.95 1.05-1.45.55-3.05-.55-1.4-2.15-2.15-.1-.05-.35-.15h-.05q.2-.1.35-.2.85-.55 1.4-1.3.85-1.3.45-2.75-.6-1.25-2.15-1.9-1.6-.55-3.45-.05-1.75.65-2.65 2m1.25 11.35q.1.15.2.25-.2-.1-.4-.15.1-.1.2-.1m130.2-108.3q-1.4 1.45-1.6 3.7-.25 2.35.8 3.8 1.25 1.7 2.9 1.8 1.9.1 3.25-1.5 1.45-1.35 1.7-3.65.25-2.2-.9-3.85-1.05-1.65-2.9-1.65-1.7-.2-3.25 1.35m-2 25.9q-.8-.05-1.55.85-.65.8-.8 2.1v.1q-.7.8-1.4 2.3-1.25 3.15-1.75 7.65-.1 1.1-.2 2.05-1.35 1.7-1.55 4.25-.25 2.7.8 4.45 1.1 2.05 2.85 2.2 1.85.05 3.3-1.85.65-.6 1-1.45.8-.35 1.4-.9 1.3-1.1 1.55-2.9.15-1.8-.9-3.15-.75-.9-1.75-1.25.1-.5.1-1.1.55-4.5-.15-7.7-.05-.25-.05-.5.65-.8.75-2.05.1-1.2-.35-2.2-.5-.85-1.3-.9m-29.4 64.6q-1.55.5-1.6 2.2.05 1.65 1.6 3.5 1.7 1.95 3.65 2.8 2.35.9 3.9.4.8-.3 1.1-1 .9-.25 1.85-.85 2.5-1.15 3.95-3.95.15-.35.25-.55 1-.35 1.8-1.15 1.65-1.25 1.85-3.45.25-2.1-1.1-3.65-1.35-1.6-3.45-1.7-2.1-.1-3.8 1.25-.7.6-1.05 1.35-.5.1-.85.3-2.45 1.5-3.95 4.2-.2.35-.3.75-.15-.05-.2-.1-2.25-1-3.65-.35m26.05-20.55q.25-2.05-1.1-3.65-1.35-1.55-3.45-1.65-2.1-.1-3.75 1.25-1.7 1.4-1.95 3.5-.05.75.05 1.4-.45 1.05-.7 2.4-.4 2.5.6 4.25 1.05 2.1 2.85 2.3 1.85.3 3.35-1.4 1.5-1.35 1.9-3.9l.1-.7.25-.25q1.6-1.3 1.85-3.55m-.2-12.75q.1-.6-.4-1.15-.4-.5-1.15-.5-.75-.05-1.3.4-.55.4-.65 1.05-.05.65.4 1.05.5.55 1.2.55.7.05 1.25-.4.55-.35.65-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.276;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1202.3 90.3q.45-.8.2-1.95-.35-1.15-1.25-1.95-1-.9-2.1-.9-1.05 0-1.55.8-.55.8-.15 2 .3 1.15 1.25 1.95 1.05.85 2.05.85 1.1.05 1.55-.8m7.65 11.7q-.95-1-1.85-.8-.95.15-1.25 1.25-.45 1.2-.05 2.65.4 1.6 1.4 2.45.9 1.05 1.8.9.9-.15 1.3-1.35.3-1.05 0-2.6-.5-1.5-1.35-2.5m2.15 11.35q.45-.3.35-.8-.05-.4-.5-.75-.35-.4-.85-.4t-.9.25q-.3.35-.25.8.1.45.45.8.4.35.9.4.45.05.8-.3m-20.3-12.6q.1-.8-.7-1.5-.8-.65-1.95-.7-1.2-.05-2.05.5-.85.6-1 1.4-.1.9.7 1.55.75.7 1.95.7 1.1.1 2.1-.55.9-.5.95-1.4m-3.25 2.95q-1.25-.05-2.35.7-1 .85-1.15 2-.1 1.25.7 2.05.9.95 2.2 1 1.35 0 2.4-.75 1-.8 1.1-1.95.15-1.2-.75-2.1-.85-.9-2.15-.95m-5.55 34.85q-.6-.5-1.4-.55-.8-.05-1.5.35-.65.45-.7 1.1-.05.6.4 1.1.15.05.3.15-.25.1-.5.25-1.45 1.05-1.9 2.5-.5 1.5.3 2.55.75 1.15 2.3 1.2 1.6.15 3-.95 1.45-.9 1.95-2.4.45-1.4-.25-2.6-.6-.9-1.75-1.1.15-.2.2-.5.05-.65-.45-1.1m-9.7 35.95q-.05 1.35 1 2.2 1.1 1.05 2.7 1.1 1.6.1 2.8-.85 1.25-.7 1.3-2 .05-1.35-.95-2.3-1.1-.9-2.65-1-1.7-.1-2.9.75-1.25.85-1.3 2.1m.25 20.85q.55-.4.65-1 0-.6-.5-1.05-.5-.5-1.25-.55-.7-.05-1.3.4-.5.4-.6 1 0 .65.45 1.1.55.5 1.25.55.75.05 1.3-.45m40.1-44.15q.05-1.25-.95-2.2-1.05-.85-2.7-.9-1.5-.1-2.8.65-1.2.85-1.3 2.05-.15 1.25.9 2.05.35.3.65.5-.3.7-.4 1.6-.05.65.05 1.2-.5.1-.95.4-1.15.8-1.25 2-.1 1.2.8 2 1 .95 2.5 1 1.4.1 2.55-.8 1.2-.6 1.3-1.8.1-1.2-.8-2.15-.2-.1-.3-.2.3-.65.35-1.4.05-.75-.05-1.45.45-.25 1-.6 1.25-.7 1.4-1.95m-4.7 16.25q1 0 1.6-.4.75-.45.8-1.15.05-.75-.6-1.15-.5-.55-1.45-.55-.95-.15-1.55.3-.75.5-.8 1.2-.05.7.5 1.15.65.55 1.5.6m-30.6-17.3q-.05.65.4 1.1.65.55 1.4.6.85 0 1.55-.4.6-.45.7-1.05.05-.65-.45-1.15-.6-.45-1.45-.45-.75 0-1.45.35-.65.35-.7 1m-1.65 15.75q-.6.35-.65.9-.15.65.25 1 .5.45 1.25.55.75 0 1.35-.35.65-.4.8-.95.1-.6-.4-1.05-.45-.4-1.15-.45-.8-.05-1.45.35m-94.9-95.6q.6 1.1 2.05 2.05 1.35.9 2.6 1 1.4.15 1.8-.55.55-.7-.05-1.9-.6-1.1-2-2-1.5-.9-2.6-.45-1.65-.65-2.1.1-.35.65.3 1.75m-19.95 23.25q-1.4 1.35-1.5 3.35-.1 2.05 1.25 3.4 1.25 1.45 3.3 1.45 1.9.05 3.3-1.35 1.5-1.35 1.6-3.3.1-2-1.3-3.45-.3-.4-.6-.6.15-.3.2-.75.05-.35-.05-.65.55-.1 1-.3.8-.35.9-.85.05-.6-.65-1.05-.75-.4-1.8-.4-1.05-.1-1.85.25-.75.3-.85.9 0 .55.6.95-.3.4-.4 1v.05q-1.8.05-3.15 1.35m28-13.2q.55 1.15 2.1 1.9t3.2.65q1.6-.15 2.35-.95.85-.95.25-2.05-.5-1.15-2.1-1.9-1.5-.7-3.1-.6-1.6.05-2.5.95-.75.95-.2 2m8.8 4.95q-.5-.05-.9.3-.35.35-.45.85 0 .55.35.9.3.4.75.4.45.05.85-.35.45-.3.45-.8.1-.55-.25-.9-.3-.4-.8-.4m.75 10.75q-1.2-.05-1.75.85-.5.85-.05 2.25.5 1.35 1.65 2.3 1.25 1.05 2.5 1.1 1.15.1 1.7-.85.55-.85 0-2.2-.4-1.45-1.65-2.4-1.15-.95-2.4-1.05m-48.25 39q-.15 1.35 1.05 2.25.4.3.8.55-.45.5-.6 1.2-.25 1 .15 1.65.4.75 1.25.85.85 0 1.7-.65.7-.6.95-1.6.05-.45.05-.8 1.2-.2 2.2-.85 1.45-.75 1.65-2.15.05-1.25-1.15-2.3-1.2-1-3.1-1.1-1.9-.1-3.35.75-1.45.9-1.6 2.2m-1.65 26.2q-.4.25-.45.7 0 .4.3.75t.7.35q.5 0 .8-.2.5-.35.45-.8.1-.45-.3-.7-.25-.35-.7-.4-.5 0-.8.3m.55 23.7q-.95-.65-2.1-.7-1.15-.1-1.95.5-.8.65-.75 1.55.1.95 1.1 1.55.05.1.15.2-.2.55-.25 1.3-.2 1.25.2 2.05.45.9 1.1 1 .8 0 1.3-.85.65-.75.8-2.05v-.95q.35-.15.8-.5.75-.45.6-1.45-.05-.9-1-1.65m56.25-75.5q-.55-.6-1.35-.65-.85 0-1.55.55-.65.55-.65 1.35-.15.75.35 1.35-.85.05-1.45.3-1.25.5-1.45 1.3-.15.85 1 1.55 1.1.65 2.85.75.05.55.2 1.1.2 1.2.95 1.9.7.85 1.45.7.75-.05 1.1-1.05.3-.9.1-2.05-.2-.65-.4-1.15 1.05-.5 1.2-1.15.05-.85-1.05-1.6-.6-.3-1.45-.5.5-.55.55-1.25.05-.8-.4-1.45m.8 45.25q.6-.6.55-1.55-.05-.9-.75-1.6-.7-.65-1.6-.65-1-.05-1.65.5-.55.65-.55 1.5.05 1 .65 1.65.7.7 1.7.7.95.05 1.65-.55m1.05 6.15q.35-1.25-.6-2.2-.9-.8-2.45-.9-1.45-.1-2.8.65-1.25.85-1.55 2.05-.25 1.25.65 2.05.9 1 2.4 1.05 1.5.1 2.8-.75 1.25-.75 1.55-1.95M1104 183.6q.05-.65-.3-1.25-.4-.45-1-.55-.55 0-.95.45-.5.55-.55 1.2-.1.75.25 1.25.15.15.3.25-1.45.15-2.6.85-1.4 1.05-1.55 2.55-.15 1.6 1.05 2.55 1.3 1.25 3.05 1.35 1.85.05 3.3-.95 1.45-.9 1.5-2.5.25-1.5-1-2.65-.95-.95-2.3-1.1.1-.1.2-.25.5-.45.6-1.2m-5.55 27.6q-.7-.6-1.65-.7-1 0-1.75.5-.65.6-.75 1.45-.1.9.5 1.45.7.65 1.65.7.95 0 1.7-.55.75-.45.9-1.4.05-.8-.6-1.45m-1.35 13.9q.1-.8-.6-1.45-.7-.6-1.75-.65-1-.05-1.9.4-.7.65-.8 1.35-.1.9.6 1.4.7.65 1.75.65 1.05.1 1.8-.5.75-.45.9-1.2m-2.95 19q1-.75 1.2-2.25.15-1.4-.7-2.45-.2-.3-.5-.55.5-1 .6-2.5.25-1.75-.25-3.1-.4-1.25-1.2-1.25-.8-.1-1.6 1.15-.65 1.15-.9 3-.15 1.55.25 2.6-.3.2-.55.45-.95.95-1.15 2.35-.15 1.45.7 2.35.75 1.1 1.95 1.2 1.25 0 2.15-1m-10.05 19.5q-.1 1.05.35 1.75-.3.8-.45 1.8-.25 1.7.05 2.8.35 1.4 1 1.6.65.1 1.25-1.05.6-.95.85-2.7.05-.75.1-1.4.35-.25.65-.6.8-.7.95-1.95.1-1.2-.55-2.1-.55-.85-1.5-.95-1.05-.05-1.85.8-.7.8-.85 2m-30.45 21.05v-.05q.7-.55.65-1.85 0-1.3-.65-2.5-.75-1.2-1.7-1.55-.9-.4-1.7.15-.6.75-.6 2 0 1.35.7 2.4.35.65.75 1.1-.25 0-.45.05-1.4.3-2.1 1.1-.6.85-.1 1.65.5.95 1.7 1.35 1.35.35 2.75.05 1.3-.15 2.05-1 .65-.8.15-1.75-.4-.7-1.45-1.15m-7.85-80.5q-.55 0-1 .35-.45.4-.5.95-.05.55.35.9.35.45.9.5.6 0 1.05-.4.55-.35.55-.9.1-.45-.3-.95-.45-.4-1.05-.45m3.55 45.25q.1-.85-.7-1.55-.85-.65-2.05-.7-1.3-.05-2.2.45-.9.6-1 1.5-.1.9.75 1.45.85.65 2.1.7 1.2.1 2.15-.45.9-.45.95-1.4m-2.6 6.25q.6.05 1-.25.55-.3.55-.75.1-.4-.35-.75-.4-.3-.95-.3-.65-.05-1.05.2t-.45.75q-.05.4.3.75.4.35.95.35m26.5 50.55q1.3.65 2.75.05 1.4-.4 2.15-1.55.8-1.25.45-2.55-.45-1.2-1.65-1.8-1.25-.6-2.7-.25-1.55.6-2.2 1.75-.8 1.25-.35 2.45.3 1.4 1.55 1.9m-6.85 1.9q-.85-.9-2.35-1.05-1.35-.15-2.45.5-1.05.85-1 2.05-.05 1.2.85 2.05 1.15 1.05 2.4 1.25h.05q-.05.3-.05.6-.1.95.5 1.7.6.8 1.5.85.9.2 1.45-.45.8-.6.8-1.6.1-.95-.6-1.75-.25-.35-.55-.55.35-.55.45-1.4 0-1.2-1-2.2m138.65-108.7q.35.3.85.3.5.05.9-.25.35-.15.4-.6 0-.35-.3-.6-.3-.35-.85-.35-.45-.05-.9.2-.35.25-.35.6-.1.45.25.7m2.95 5.7q.1-.7-.5-1.25-.55-.45-1.5-.5-.9-.05-1.6.4-.65.4-.7 1.1-.1.7.4 1.2.65.6 1.55.65.9.05 1.55-.5.7-.4.8-1.1m-32.75 16.4q.8-.55.9-1.6.05-1-.7-1.8-.65-.65-1.8-.75-1.1-.05-2 .55-.75.75-.85 1.75-.05 1 .6 1.7.75.75 1.85.85 1.1.05 2-.7m1.45-9.8q.15-2.05-.65-3.55-.8-1.45-2.25-1.55-1.45-.05-2.5 1.3-1.1 1.4-1.25 3.5-.15 2.05.65 3.45.9 1.55 2.35 1.65 1.25.05 2.4-1.45 1.1-1.25 1.25-3.35m21.7 19.8q.75.8 1.8.9 1.1.05 2.05-.7.85-.55.95-1.65.05-1-.6-1.85-.75-.75-1.85-.75-1.05-.1-2 .6-.9.7-.95 1.7-.1 1.1.6 1.75m4 9.75q-.75-1.05-2.05-1.15-1.4-.05-2.5.9-1.05 1.05-1.2 2.45-.1 1 .2 1.75 0 .05-.05.1-.7.85-.85 2.15-.2 1.3.4 2.15.6 1 1.4 1.05.9.05 1.7-.9.6-.8.8-2.1-.05-.25 0-.5.95-.2 1.65-1 1.1-.75 1.25-2.3.2-1.45-.75-2.6M1172.8 231q-.75-.05-1.3.3-.5.5-.55 1.05 0 .6.4.95.5.55 1.25.6.75 0 1.25-.4.6-.3.65-.95 0-.6-.45-1.05-.55-.45-1.25-.5m-1.95 22q-1.15.6-1.15 1.65-.15 1 .85 1.65 1 .75 2.45.85 1.45.1 2.45-.55 1.1-.65 1.2-1.6.1-1-.9-1.75-.9-.75-2.35-.8-1.45-.1-2.55.55m1.6 7.2q-1.65-.1-2.9 1.05-1.2 1.1-1.35 2.85-.15 1.75.85 2.85 1.15 1.4 2.8 1.5 1.6.05 2.85-1.2 1.3-1 1.45-2.75.15-1.75-.95-3-1.05-1.25-2.75-1.3m-1.1 30.5q0 1.25 1.25 2.85 1.25 1.5 3 2.2 1.95.9 3.3.5h.25q1 .25 2.15-.5 1.3-.65 1.95-2.05.6-1 .6-1.85.6 0 1.35-.35.9-.4 1.3-1.3t0-1.7q-.45-.65-1.4-.95-.95-.2-1.95.2-1 .45-1.3 1.35-.15.25-.15.45-.8 0-1.65.4-.75.55-1.35 1.3-1.15-1.05-2.6-1.75-1.85-.8-3.25-.45-1.3.35-1.5 1.65m17.55-20.5q.55.35.95.7.05.1 0 .3-.1 1.05-.15 1.9-.65.1-1.2.5-.85.5-1 1.3-.05.85.7 1.4.7.7 1.9.7.75.1 1.5-.2.15-.1.35-.25 0-.05.05-.05.85-.45.95-1.25-.05-.15-.05-.3.55-1.1.75-2.95.2-.65.2-1.35.15-.05.2-.15 1.2-.7 1.35-1.95.1-1.05-.95-2.05-.9-.85-2.5-.95-1.45-.05-2.65.7-1.15.8-1.25 1.95-.15 1.2.85 2"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.24;0.245;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1199.2 83.75q-2.65-.05-4.4 1.2-1.85 1.35-1.65 3.35.25 2 2.2 3.5 2.05 1.55 4.6 1.75.05.7.35 1.65.65 1.95 2.1 3.1.15.15.3.25-.45.8-.3 1.85.1 1.7 1.45 2.95.2.2.45.4-.35 1.15.2 2.65.6 1.95 2.15 3.05.5.4 1.05.7-.9.75-.75 1.7.1 1.15 1.1 1.95.4.3.9.5.1.45.25.95.35 1.55 1.2 2.45.2.2.4.35-.05.05-.05.1-.65.45-.6 1.1.05.7.75 1.1.7.6 1.65.65.85 0 1.4-.45.65-.45.6-1.15-.1-.65-.85-1.1-.25-.25-.55-.35.15-.3.3-.7.25-1.15 0-2.7-.15-.3-.25-.65.7-.65.6-1.65-.1-1.05-1.15-1.85-.5-.4-1.15-.6.25-.35.5-.8.6-1.4-.05-3.35-.55-1.6-1.7-2.75.5-.85.4-2.05-.25-1.7-1.45-2.95-.75-.65-1.5-.95.2-1.15-.3-2.5-.55-1.85-1.7-3.05.65-1 .55-2.35-.2-2.05-2.15-3.65-2.15-1.45-4.9-1.65m11.35 60.1q-.85.2-1.7.85-1.35 1.05-1.55 2.75.05.15.05.35-.25.15-.55.35-1.75 1.65-2.1 3.95-.45 2.45.8 3.9.15.3.45.6-1.5 1.2-1.7 2.85-.15 1.9 1.25 3.1.1.15.3.35-1 1.65-1.25 3.9-.3 2.8.8 4.7.5.95 1.1 1.5-.5.85-.6 1.9-.2 1.55.4 2.45.6 1.1 1.65 1.1 1 .1 1.75-.95.85-.85 1.05-2.3.1-1.25-.3-2.15.5-.5 1.1-1.2 1.5-1.8 1.8-4.6.25-2.4-.6-4.2.05-.05.1-.05 1.65-1.15 1.85-3 .15-1.8-1.15-3.2-.35-.3-.6-.5 1.55-1.4 1.95-3.7.15-1.25-.05-2.35.95-.9 1.1-2.35.1-1.35-.6-2.5.2-1.7-.4-3-.65-1.2-1.7-1.25-.9-.05-1.8 1.1-.55.75-.85 1.6m-2.25 36.45q-.9-.05-1.55.35-.7.45-.8 1.1-.05.75.55 1.3.6.45 1.55.55.85.05 1.5-.45.75-.45.8-1.1.05-.7-.5-1.2-.65-.5-1.55-.55M1075.9 71.5q-.2 2.45 2.2 4.4 2.45 1.95 6.2 2.1 2.7.2 4.95-.75-1.2 1-1.3 2.35-.15 1.85 1.4 3.1 1.7 1.45 4.15 1.6 1.25.05 2.4-.25-.2.45-.25 1-.1 1.35.45 2.3.55 1.05 1.65 1.1.95.05 1.85-.9.7-.9.9-2.25.1-1.4-.45-2.35-.35-.55-.9-.8.7-.85.85-1.85.15-1.8-1.45-3.15-1.65-1.3-4.15-1.5-1.55-.05-2.9.35 2.25-1.55 2.5-3.9.3-2.65-2.15-4.7-2.5-2-6.2-2.2-3.75-.15-5.6 2.75-4.05 1.05-4.15 3.55m24.95 21.75q-3-.1-5.3 1.3-2.25 1.35-2.45 3.55-.25 2.15 1.65 3.8 1.6 1.3 3.9 1.65-.2.95-.05 2 .25 1.9 1.3 3.2-.15 0-.35.05-1.95 1.35-2.15 3.2-.25 1.9 1.45 3.25 1.65 1.35 3.95 1.6-.4 1.1-.25 2.45.25 2.2 1.75 3.4.15.25.35.45-.2.05-.35.2-1.4.8-1.55 2.05-.05 1.35 1.15 2.25.4.4.9.6v1.2q.15 1.85 1 2.85.2.3.4.45-.05.05-.15.1-.85.5-.9 1.3-.1.85.6 1.4.8.6 1.85.7 1.1 0 1.95-.5.85-.5.95-1.35.1-.75-.7-1.35-.25-.25-.65-.45.35-.3.55-.8.7-1.3.55-3.15 0-.45-.1-.85 1.1-.7 1.25-1.9.1-1.3-1-2.2-.5-.4-1.05-.65.4-.35.7-.9.9-1.5.7-3.65-.35-2.1-1.7-3.5-.05-.05-.05-.1.95-.95 1.05-2.25.25-1.85-1.5-3.35-.6-.5-1.45-.85.95-1.6.65-3.75-.25-2-1.3-3.35.95-1.05 1.15-2.45.15-2.15-1.8-3.85-2-1.6-4.95-1.8m9.15 52.55q-1.15-.9-2.85-1-1.75-.05-3.15.7-1.4.9-1.55 2.15-.05.55.15 1.05-.65.3-1.35.75-2.25 1.6-2.6 3.85-.45 2.4 1.2 4v.05q-1.75 1.25-2 3-.15 1.95 1.6 3.25.6.55 1.3.95-.25 1.7.95 2.85 1.2 1.3 2.85 1.4 1.85.1 3.15-1.1 1.45-1 1.6-2.75.05-.65-.05-1.25 1.35-1.1 1.55-2.7.15-1.85-1.55-3.4 1.85-1.35 2.3-3.6.4-2.3-1.1-4.15-.15-.05-.25-.1.75-.7.85-1.65.15-1.3-1.05-2.3m-2.05 30.85q.15-1.4-.9-2.45-1.15-1.1-2.8-1.15-1.65-.15-3 .85-1.3.9-1.4 2.35-.1.7.1 1.35-1.15 1.2-1.4 2.9-.2 1.2-.05 2.05-.2.15-.25.25-2.2 2.05-2.5 5.05-.3 3.05 1.4 5.05 1.4 1.75 3.25 2.35-.3.65-.4 1.35-.1 1.4.4 2.25.5 1.1 1.35 1.15.8 0 1.5-1 .75-.8.85-2.25.15-.85-.1-1.6 1.4-.5 2.6-1.75 2.2-1.8 2.55-4.85.3-2.95-1.45-5.25-.3-.35-.7-.7.35-.7.6-1.6.2-1.5-.25-2.7.5-.7.6-1.65M1098 205.1q-1.6-.05-2.95.85-1.3.95-1.4 2.4-.05.3 0 .6-.25 0-.4.2-1.55 1.1-1.7 2.8-.25 1.8 1.1 2.95 1.35 1.35 3.3 1.45 1.95.1 3.45-1.1 1.55-1 1.75-2.75.05-1-.25-1.85.8-.75.9-1.85.1-1.45-.95-2.55-1.1-1.05-2.85-1.15m.65 14.75q-1.05-1.05-2.75-1.1-1.65-.1-3 .8-1.3.95-1.45 2.4v.3q-.2.05-.3.25-2.15 1.6-2.75 4-.45 1.7-.15 3-1.1 2.7-1.5 6.15-.35 3.35.05 5.8-.7 1.3-.9 2.85-.3 2.55 1.15 4.25 1.55 2 3.9 2.15 2.3.15 4.2-1.7 1.8-1.5 2.05-4.1.15-1.35-.2-2.45 1.2-2.55 1.65-6.15.45-3.95-.45-6.9.7-1.05 1.1-2.3.5-1.9-.15-3.35.4-.65.5-1.35.2-1.45-1-2.55m-10.75 36.3q-1.65-.25-3.2 1.1-1.15 1-1.75 2.3-.85.35-1.65.9-1.8 1.45-2.05 3.55-.1 1.45.45 2.55-.8 1.45-1.2 3.3-.4 3.1.75 5.1.6.95 1.15 1.6-.7.3-1.35.85-1.35 1.4-1.7 3.65-.35 2.25.6 3.75.95 1.85 2.5 2.05 1.7.25 3.05-1.25 1.35-1.15 1.7-3.5.4-2.2-.55-3.85-.15-.35-.35-.6 1.3-.35 2.45-1.65 1.9-1.6 2.3-4.7.3-1.85-.1-3.5 1.45-1.25 1.6-3.25.2-1.2-.35-2.35 0-.15.05-.35.7-2.15-.05-3.85-.75-1.7-2.3-1.85m-16.25 39.45q-.3.4-.5.95-1.85.6-2.8 1.95-.65.9-.7 1.85-1.75.55-2.7 1.95-1 1.3-.6 2.6-.2.05-.35.05-.95.3-1.85.75v.05h-.05q-2 1.1-3.15 2.8-1.8 2.7-.75 5.2.85 3 3.75 4.2 3.1 1.35 6.55.25 3.25-.8 5.15-3.45 1.65-2.6.8-5.4-.5-1.2-1.35-2.15-.2-.1-.4-.15.1-.1.2-.1.1.15.2.25 1.65.4 3.45-.1 2.05-.4 3.15-1.95 1.05-1.45.55-3.05-.55-1.4-2.15-2.15-.1-.05-.35-.15h-.05q.2-.1.35-.2.85-.55 1.4-1.3.85-1.3.45-2.75-.6-1.25-2.15-1.9-1.6-.55-3.45-.05-1.75.65-2.65 2m131.45-96.95q-1.4 1.45-1.6 3.7-.25 2.35.8 3.8 1.25 1.7 2.9 1.8 1.9.1 3.25-1.5 1.45-1.35 1.7-3.65.25-2.2-.9-3.85-1.05-1.65-2.9-1.65-1.7-.2-3.25 1.35m-2 25.9q-.8-.05-1.55.85-.65.8-.8 2.1v.1q-.7.8-1.4 2.3-1.25 3.15-1.75 7.65-.1 1.1-.2 2.05-1.35 1.7-1.55 4.25-.25 2.7.8 4.45 1.1 2.05 2.85 2.2 1.85.05 3.3-1.85.65-.6 1-1.45.8-.35 1.4-.9 1.3-1.1 1.55-2.9.15-1.8-.9-3.15-.75-.9-1.75-1.25.1-.5.1-1.1.55-4.5-.15-7.7-.05-.25-.05-.5.65-.8.75-2.05.1-1.2-.35-2.2-.5-.85-1.3-.9m-29.4 64.6q-1.55.5-1.6 2.2.05 1.65 1.6 3.5 1.7 1.95 3.65 2.8 2.35.9 3.9.4.8-.3 1.1-1 .9-.25 1.85-.85 2.5-1.15 3.95-3.95.15-.35.25-.55 1-.35 1.8-1.15 1.65-1.25 1.85-3.45.25-2.1-1.1-3.65-1.35-1.6-3.45-1.7-2.1-.1-3.8 1.25-.7.6-1.05 1.35-.5.1-.85.3-2.45 1.5-3.95 4.2-.2.35-.3.75-.15-.05-.2-.1-2.25-1-3.65-.35m26.05-20.55q.25-2.05-1.1-3.65-1.35-1.55-3.45-1.65-2.1-.1-3.75 1.25-1.7 1.4-1.95 3.5-.05.75.05 1.4-.45 1.05-.7 2.4-.4 2.5.6 4.25 1.05 2.1 2.85 2.3 1.85.3 3.35-1.4 1.5-1.35 1.9-3.9l.1-.7.25-.25q1.6-1.3 1.85-3.55m-.2-12.75q.1-.6-.4-1.15-.4-.5-1.15-.5-.75-.05-1.3.4-.55.4-.65 1.05-.05.65.4 1.05.5.55 1.2.55.7.05 1.25-.4.55-.35.65-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.234;0.24;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1209.85 83.25q-5.65-1-8.8 3.45l2.25 12.95q.6-2.85.6-5.1.05 1.7 1.05 3.75 1 2.35 4.2 4.9-2.85 6.95 1.2 13-1.35 1.25-1.3 3.45.05 2.15 1.85 3.05-1.6 14 1.7 27.6-5.4 14.25-1.75 24.8-3.95 4.2-1.2 8.85-2.15 3.3-2.45 6.3-.3 2.95 1.9 6.05-1.95 3.55-.9 7.65-3.35 4.9-1.35 10.9-5.55 5.1-4.8 14.4-2.1 5.2-2 11.95-2.9 6.75-4.4 12.75-1.55 6-2.45 13.05-3.3 4.55-3.8 11.3-4.5-2.85-3.45-4.2.4-1.25.65-2.55l-8.65 10.1q.3 1.55.7 3.25 2.6 10.2 8.8 9.1 6.15-1.1 9.3-7.45.35-.3-1.1-.65 4.35-3.3 5.4-10.05 4.05-3.55 5.55-8.25.25-.7-1.1-1.45 5.3-12.8 5.35-25.45 4.4-6.15 4.4-12.45 2.8-6.2.85-12.65 4.35-2.8 2.6-8.9 1.35-3.55-.1-8 2.55-4.8 2.75-7.7.45-3.1-1.15-5.25 5.4-5.6.35-10.5 5.35-7.65 1.95-23.25 2.9-12.3 2.8-18.8-.2-6.45-2.7-9.3 1.5-6.25-1.75-8.4 1.85-10.5-.7-13 2.85-5.9-1.05-11.2-.4-6.5-9.25-8.05M1081.2 63.8l6.15 16.9q1.6-2.5 5.5-4l2.1-.15q.8-3.85 6.65.35-2.7 4.75 2.75 8.2-1.1 4.55-.15 8.85-2.15 1.75-2.1 3.1.3 4.3 3.35 8.95-4.25 4.8.9 11.3-4.1 6.45-.4 14.6-5.2 5.35.25 11.35-5.25 8.7-1.5 13.8-6.9 8.05-1.8 15.5-3.15 4-1.85 9.3-2.2 15.1-1.4 29.3-5.6 7.2-3.6 20.55-7.2 4.95-2.95 13.95-7.6 7.65-6.5 27.6-4.15 5.15-3.7 8.95-4.5 4.7-2.6 6.95-3.55 9.2-5.2 2-2.2 3.15-2.2 4.3-2.2-1.85-3.25-4.1l-12.15 8.25q.9 5.15 7.2 7.15 3.7 5.15 11.05 4.85 7.3-.35 10.3-9 8.55-4.2 9.7-17.05 3-2.2 3.9-4.9.8-2.7-.55-6.05 7.05-13.7 6.55-26.85 6.1-5.55 3.85-12.8 7.35-10.4 4.1-23.15 8.45-21.3 3.5-37.85 4.7-8.15 1.3-16.15 5.05-6.2 1.95-13.2 4.1-5.35-.2-11.65 3.05-4.3-.85-8.7 3.4-3.95-.25-8 6.85-6.7.95-13.7 5.75-4.65.05-9 2.4-2.3 2-4.75-.95-6.15-5.25-10.35.6-8-2.85-12.6-4.65-10.3-11.4-11.4-6.8-1.2-15.15 7.75-3.35-.7-6.2 1.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.228;0.234;0.27;0.276;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1211.9 103.75q1.35-1.3 2.6-1.2 1.4.05 2.5 1.85.95 1.4 1.7 4 1.75 6.15 2.4 19.15 1.35 24.8-2.35 59.5-3.65 34.75-10 59.1-3.3 12.7-6.3 18.7-1.65 3.15-3.15 4.5 0 .25.1.5-.9.4-1.8.35-2.3-.1-4-3.1 3.2 15.1 9.35 15.4 8.45.4 17.3-27 8.8-27.35 12.95-66.6 4.05-39.2 1-67.2-3.05-28.15-11.5-28.5-5.3-.35-10.8 10.55M1096.6 88.5q1.55 1.6 2.75 5.9 1.3 7.15 1.45 22.15.25 28.7-3.9 69.05-4.25 40.3-10.4 68.65-3.2 14.85-6.1 21.9-2.2 4.3-4.15 5.6-.9.6-1.8.6-2.15-.15-3.6-3.65 2.7 17.45 8.35 17.7 7.75.5 16.6-31.45 8.95-31.85 13.7-77.35 4.7-45.6 2.45-78.1-2.15-32.4-9.9-32.85-4.9-.2-10.15 12.35 1.4-1.45 2.8-1.35 1 .05 1.9.85"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.223;0.228;0.265;0.27;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1189.65 148.05q.9-.6 1.85-.6 1.95.05 3.4 2.95 1.4 3.1 2.35 9.5 1.7 12.2-.1 29.25-1.8 17-5.95 28.95-2.25 6.25-4.35 9.15-1.95 2.6-3.9 2.55-1.4-.1-2.5-1.6 2.2 7.45 5.9 7.65 5.2.25 10.25-13.15 5.1-13.4 7.15-32.65 1.95-19.2-.3-33.1-2.25-13.75-7.4-14-3.2-.25-6.4 5.1m70-13.4q2.4.15 4.25 4.05 1.85 4.35 2.85 13.25 2 17.05-.55 40.85-2.4 23.85-7.9 40.45-2.9 8.65-5.6 12.75-2.6 3.65-5.05 3.5-1.75-.05-3.15-2.1 2.7 10.4 7.45 10.65 6.6.3 13.15-18.45 6.65-18.7 9.45-45.65 2.8-26.85.2-46.1-2.75-19.2-9.3-19.55-4.15-.25-8.25 7.15 1.25-.85 2.45-.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.217;0.223;0.259;0.265;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1319.8 145.8q1.1-.75 2.4-.65 2.4.15 4.3 3.6 1.9 3.65 3.1 11.4 2.15 14.75.05 35.4-2.15 20.55-7.45 34.9-2.7 7.55-5.4 11-2.5 3.25-4.9 3.1-1.9-.1-3.25-1.95 2.8 9.05 7.6 9.3 6.6.35 12.95-15.85 6.4-16.2 8.8-39.45 2.4-23.25-.6-39.95-2.85-16.65-9.45-17-4.1-.2-8.15 6.15m-19.85 18.25q1.8 10.9.2 26.15-1.6 15.2-5.6 25.85-2.1 5.45-4.25 8.15-1.95 2.3-3.85 2.15-1.45-.05-2.6-1.4 2.3 6.65 6.05 6.9 5.2.25 10.15-11.7 4.85-11.95 6.65-29.15 1.85-17.1-.55-29.5-2.45-12.3-7.65-12.6-3.2-.1-6.3 4.55.9-.55 1.85-.5 1.95.15 3.45 2.65 1.5 2.75 2.45 8.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.212;0.217;0.253;0.259;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1300.6 49.15q-.5-.3-1.2-.5.05-.15.05-.35.1-.7-.65-1.35-.9-.75-2.1-.75-1.3-.05-2.3.6-1.05.5-1.15 1.3-.1.85.8 1.55.45.3 1.1.5-.05.1-.05.2-.15.85.7 1.55.9.65 2.1.7 1.3.05 2.35-.5.9-.6 1.05-1.45 0-.85-.7-1.5m11.15 3.4q-1.75-1.4-4.5-1.6-2.6-.15-4.75 1.15-2.25 1.15-2.35 2.9-.2 1.85 1.7 3.25 1.45 1.1 3.55 1.4-.1.3-.1.55-.15 1.55 1.35 2.6 1.4 1 3.45 1.15 2.25.1 3.75-.8 1.65-.95 1.85-2.35.15-1.45-1.3-2.4-.7-.7-1.85-.95.7-.75.8-1.85.15-1.65-1.6-3.05m-9.5 39.45q-1.8-1.4-4.7-1.55-2.8-.1-4.95 1.15-2.25 1.25-2.55 2.95-.15 2 1.75 3.45 1.9 1.35 4.7 1.45 1.35.2 2.7-.15.2 1.25 1.55 2.2 1.5 1.1 3.55 1.4.85 1.05 4.05 3.45 6.05 4.35 8.25 4.5 2.35.05 3.95-.85 1.75-.9 2-2.55.15-1.4-2.2-3.2-2.2-1.7-7.45-4-.4-.15-.8-.25.3-.55.3-1.15.1-1.7-1.6-3.1-1.75-1.45-4.55-1.6-1.25 0-2.55.3-.1-1.3-1.45-2.45m1.25 164.3q-1.65-1.15-3.85-1.15-2.25-.2-3.9.8-1 .55-1.45 1.15-1.7.35-3.7 1.25-3.1 1.4-5.35 3.75v.05q-1.45.1-2.75.9-1 .45-1.6 1.25-1-.45-2.25-.45-2.6-.1-4.55.9-2.05 1.2-2.15 2.85-.3 1.8 1.65 3.1 1.55 1.3 4.1 1.4 2.55.25 4.6-.95.95-.6 1.6-1.35.9.4 2.15.45 2.6.1 4.55-.95 2-1.15 2.15-2.95.2-.6-.05-1.05 4.85-1.45 6.15-2.2.6-.35.95-.6 1.65-.3 3.05-1.05 1.8-1 2-2.5.15-1.4-1.35-2.65M1274 48.75q-1.55-.4-2.95-.1-.05-.45-.45-.95-.7-.85-2.1-1.2-1.5-.35-2.9 0-1.45.45-1.9 1.4-.6 1.05 0 2.05.75.85 2.2 1.2.75.2 1.6.15-.3.95.4 1.9.8 1.2 2.8 1.55 1.95.45 3.6-.15 1.95-.55 2.55-1.7.65-1.35-.1-2.55-.95-1.2-2.75-1.6m8.15-11.4q-1.3.65-1.4 1.85-.2 1.1.95 2.05l.05.05q.05 1.2 1.35 2.1 1.5 1.1 3.75 1.2 2.2.15 3.85-.8 1.75-1 1.9-2.45.15-1.4-1.35-2.5-1.2-1.15-3.3-1.25-1-.85-2.8-.95-1.65-.05-3 .7m-61.05 7.45q-.8 1.45.15 2.8 1 1.45 3.35 1.9 1 .25 2.05.2.45.6 1.25 1.1 2.15 1.75 5.35 1.9 3.35.2 5.95-1.3 2.45-1.4 2.75-3.65.3-2.05-1.9-3.75-2.3-1.7-5.6-1.9-2.65-.15-4.75.85-.6-.25-1.5-.5-2.15-.5-4.3.15t-2.8 2.2m26.3 26q-.95-1.05-2.85-1.45-1.8-.6-3.65.05-1.8.55-2.4 1.8-.4.65-.45 1.25-.65.05-1.35.25 0-.05-.05-.1-.8-.95-2.3-1.35-1.6-.45-3.1.1-1.55.45-2 1.55-.6 1.05.15 2.05.65.95 2.35 1.35.45.1 1 .1-.2 1.2.5 2.3 1.25 1.5 3.9 2.15 2.55.55 4.85-.3 2.5-.7 3.5-2.35.75-1.6-.15-3.1 1.55-.6 2.15-1.8.65-1.25-.1-2.5m7.5 10.4q-.7-1.1-2.4-1.45-1.7-.45-3.35.05-1.6.4-2.05 1.6-.7 1.2 0 2.3.85 1.05 2.55 1.35 1.65.45 3.25-.1 1.5-.5 2.15-1.6.6-1.1-.15-2.15m25.85-7.35q.5-1.05-.3-2.05-.65-1.05-2.3-1.5-.45 0-1.05-.1-.15-.25-.35-.35-1-.85-2.5-.9-1.4-.15-2.5.55-1.2.65-1.35 1.65-.15.85 1 1.65.5.4 1.3.7 0 .3.25.65.8 1 2.55 1.45 1.55.3 3-.1 1.55-.55 2.25-1.65M1229.5 273.2q-2-.1-3.4.7-1.45.85-1.65 2.05-.15 1.3 1.15 2.25 1.2.9 3.15 1.1 1.8.15 3.45-.8 1.4-.8 1.55-2.1.2-1.2-1.1-2.25-1.4-.9-3.15-.95m-10.15 9.35q0-.4-.1-.75.55-.25.95-.5 1.55-.8 1.75-2.3.1-1.2-1.2-2.25-1.4-1-3.45-1.05-2-.1-3.45.7-.15.05-.3.15-1.7-.05-3.05.8-1.55.8-1.7 2.05-.05.7.3 1.3-1.45.05-2.45.65-1.3.8-1.4 1.75-.05 1.1.95 1.95 1.05.75 2.6.85 1.55.05 2.95-.7.65-.35 1-.85.8.45 2 .65-.15.15-.15.5-.1 1.25 1.2 2.2 1.15 1.05 3.15 1.15 1.8.05 3.4-.8 1.4-.9 1.55-2.2.05-1.15-1.15-2.05-1.25-1.05-3.2-1.15-.197-.049-.25-.05.05-.001.05-.05m28.05 8.15q1.4 1.1 3.45 1.25 2.15 0 3.8-.85 1.65-.95 1.7-2.4.2-1.3-1.15-2.4-1.5-1.15-3.5-1.2-2.2-.15-3.8.85-1.7.9-1.9 2.25-.1 1.4 1.4 2.5m-38.1 15.25q-.3-.75-1-1.25-1.25-.9-3.05-1.1-1.9-.1-3.3.75-.3.2-.65.55-.4-.15-.75-.1-1.8-.05-3.15.75-.85.45-1.3 1-.2.1-.25 0-1.85-.1-3.2.75-1.5.8-1.55 2-.2 1.25 1.05 2.25 1.2.85 3 .9 1.8.1 3.25-.65.9-.5 1.25-1.2h.55q.35.95 1.45 1.65 1.55 1.4 4.15 1.45 2.55.1 4.5-1.05 1.95-1.1 2.2-2.85.25-1.65-1.6-3-.6-.55-1.6-.85m79.4-2.6q.15-1.35-1.2-2.5-1.55-1.05-3.55-1.1-2.15-.2-3.7.8-1.75.95-1.85 2.3 0 .5.1.95-.4-.05-.75-.05-2.65-.2-4.7 1.1-2.1 1.15-2.4 2.85-.15 1.85 1.7 3.25 1.75 1.45 4.45 1.5 2.7.1 4.8-1.1 2.15-1.2 2.25-2.95.25-1.05-.4-1.85 2 0 3.5-.9 1.6-.85 1.75-2.3m-28.35 17.75q.15-1.35-1.2-2.5-1.45-1.15-3.5-1.15-2.15-.05-3.7.8-1.75.9-1.95 2.3-.15 1.45 1.35 2.55 1.45 1.15 3.5 1.15 2.05.1 3.75-.8 1.55-.9 1.75-2.35m4.4-8.1q-.9.5-1.05 1.15 0 .75.75 1.2.7.7 1.8.75 1.05 0 1.95-.45.65-.35.8-1.1 1.4.1 2.35-.45 1.05-.65 1.2-1.65.1-.8-.9-1.55-.9-.8-2.3-.8-1.4-.1-2.55.5-1 .7-1.1 1.55v.45q-.5.2-.95.4m-16.55-4.1q.2-1.2-1-2.15-1.35-1.05-3.15-1.15-2-.05-3.4.8-1.25.75-1.55 1.6-.2-.05-.45-.1-1.5-.05-2.75.75-1.3.7-1.35 1.75-.2 1.2.95 2 1 .85 2.55.9 1.55.15 2.7-.65.75-.4 1.15-1 .55.15 1.4.2 1.85.1 3.4-.8 1.4-.7 1.5-2.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.253;0.259;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1303.3 36.65q-1.95-1.55-4.8-1.6-2.7-.25-4.9 1.15-1.65.8-2.15 1.9-.1 0-.1-.1-3-.05-5.4 1.3-2.45 1.3-2.55 3.25-.3 2 1.75 3.6 2.15 1.5 5.15 1.65 3.05.1 5.25-1.25 1.85-.95 2.3-2.5 2.7.05 4.65-1.1 2.15-1.15 2.45-3.2.1-1.75-1.65-3.1m16.65 33.5q-.1-.6-.35-1.1-1.35-2.6-5.15-3.95-3.65-1.1-7.7-.15-4.1.8-5.85 3.25-1.95 2.5-.35 5.1.95 2.05 3.25 3.2-.15.25-.25.4-1.35 1.95-.35 3.9 1.05 1.9 3.7 2.85 1.9.65 3.75.6.85.5 2 .85 4.4 1.45 9 .35 4.45-1.15 6.75-4.1 2.15-2.9.7-5.9-1.45-3.15-5.75-4.55-1.65-.6-3.4-.75M1299.8 55.7q.25-1.15-1.1-2.2-1.2-.95-3.25-1.05-1.15-.05-2.2.25l-.1-.05q-1.45-1.2-3.85-1.3-2.05-.15-4 .9-1.8 1-1.9 2.4-.2 1.6 1.35 2.8 1.6.95 3.8 1.15 2.15.15 3.7-.6 1.15.45 2.55.5 2 .2 3.4-.65 1.45-.8 1.6-2.15m-1.75 4.35q-1 .5-1.05 1.35-.25.8.8 1.45.9.75 2.05.75 1.3 0 2.25-.45.95-.6 1.1-1.4.1-.9-.85-1.6-.8-.6-2.05-.75-1.15-.05-2.25.65m29.75 57.4q-5.65-3.35-7.8-8.6.6-.85.8-1.8.15-1.85-1.6-3.25-1.95-1.55-4.75-1.6-2.75-.1-4.95 1.15-2.25 1.15-2.45 3-.15.5 0 1.05-1.45.8-3.35-.45.15-.3.1-.65.25-1.7-1.5-3.2-1.4-1-3.6-1.35.1-1.35-1.3-2.5-1.65-1.25-4-1.4-2.35-.2-4.1.95-1.95 1-2.05 2.55-.25 1.65 1.45 2.75.9.7 2.05 1-.15.2-.2.45-.7-.2-1.8-.35-1.95 0-3.55.85-1.7.9-1.8 2.15-.15 1.45 1.25 2.5 1.3.95 3.4 1.15 1.95.1 3.3-.65 1.65 4.95 10.2 5.6 5.1 5.9 12.9 8.45 0 .25-.05.45-.2 1.6 1.45 2.9 1.6 1.1 4 1.25 2.3.1 4.1-.9 1.35-.85 1.8-1.9.05-.35.05-.7l2-8.9m-15.85 133.6q.1-1.45-1.25-2.5-1.35-1.2-3.6-1.25-2.1-.1-3.8.85-1.75.9-1.85 2.3-.1.55.1 1-5.35 3.25-14 6.3-8.85.25-15.95 5.2-1.05-.1-2.3.2-1.45.55-2.1 1.75-.65 1.05.15 2.2.75 1.05 2.5 1.35 1.55.5 3.25-.1h.15l.15.3q-1.9.05-3.25 1-1.9 1.05-2.05 2.45-.2 1.55 1.5 2.8 1.35 1.05 3.6 1.1 2.25.2 4.1-.75 1-.7 1.4-1.45 4.2-1.4 6.75-4.65 3.95-3.2 8.35-.85h-.1q-1.65.8-1.9 2.25-.05 1.45 1.45 2.65 1.5.9 3.5.95 2.35.25 3.85-.65 1.65-1.05 1.75-2.45.25-1.4-1.2-2.4-.05-.1-.15-.2 4.5-5.85 10.95-8l-.2-8.8q.2-.25.2-.6m-9.75 45.25q-.3-1.8-2.25-3.4-2.5-2-6.55-2.15-2.25-.05-4.3.5-.7-.05-1.25-.1-3.2-.15-5.45 1.25-2.55 1.4-2.7 3.4-.15.7.05 1.25-1.7.3-3.05 1.15-2.6 1.35-2.65 3.4-.25.7.05 1.4-.4.65-.4 1.4-.4 2.8 2.45 4.85 2.75 2.1 6.8 2.35 4.25.1 7.35-1.65 3.05-1.85 3.35-4.55.05-.55.05-1 1.05.3 2.1.35 3.15.1 5.65-1.25 2.25-1.3 2.55-3.45.25-2-1.8-3.65v-.1m-70.05-248.5q-3.45-.15-6.05 1.35-2.8 1.6-3.05 3.9-.3 2.35 2.2 4.1.75.6 1.75 1.15-.95 1.35-1.15 2.85-.4 3.3 3.15 5.9 3.15 2.45 8.2 2.8 4.3.25 7.7-1.4 2.5 1.5 5.95 1.7 4.35.15 7.65-1.6 3.15-1.9 3.4-4.75.4-2.85-2.4-4.95-2.75-2.1-7.05-2.4-2.55-.15-4.55.5-.3-.2-.55-.5-.45-.2-.75-.5.15-.4.2-.75.25-2.05-2.05-3.7-2-1.6-5.2-1.8-.8.05-1.6.05-2.3-1.7-5.8-1.95m-5.55 34.4q-3.25 1.7-3.6 4.4-.35 2.75 2.5 4.8 2.8 2.15 6.9 2.3 2.55.15 4.85-.55.6 1.8 2.45 3.2 3.15 2.3 7.55 2.5 4.65.35 8-1.65 3.45-2.1 3.8-5.15.25-2.9-2.6-5.1-1.6-1.3-3.6-1.9 1.5-1.3 1.8-2.95.2-2.05-1.8-3.6-2.1-1.65-5.3-1.75-3.05-.3-5.55 1.25-2.45 1.3-2.7 3.35 0 .3-.05.5-2.3-1.25-5.4-1.35-4.1-.3-7.25 1.7m55.45-20.35q-2.5-1.9-6.3-2.15h-.4l-.05-.05q-.85-1.05-2.45-1.4-1.8-.55-3.3-.1-1.65.65-2.2 1.8-.7 1 .1 2.15.05.1.15.35-1.3 1.2-1.45 2.8-.35 2.5 2.3 4.3 2.45 1.9 6 2.1 3.85.2 6.65-1.4 2.75-1.6 3.1-4.1.25-2.45-2.15-4.3m-14.6 18.35q-2.7 1.6-3.05 3.85-.25 2.3 2.15 4.05 1.7 1.3 4.1 1.75.35.75 1.35 1.35 1.8 1.4 4.45 1.6 2.9.1 4.9-1.15 1.95-1.2 2.2-3 .25-1.75-1.6-3.15-.4-.2-.75-.5v-.15q.3-.15.6-.35 2.45-1.4 2.65-3.45.15-2.1-1.85-3.55-1.9-1.65-5.15-1.75-3.05-.2-5.4 1.2-1.75 1.05-2.4 2.35-1.2.45-2.2.9m-35.75 207.85q.15-1.3-.45-2.4 2.3-.45 4.25-1.45 3.4-2.05 3.75-5.1.35-2.9-2.6-5.2-3.1-2.4-7.6-2.6-4.4-.15-8 1.85-1.75.95-2.85 2.2-2-1-4.95-1.25-4.05-.1-7.2 1.7-3.2 1.85-3.5 4.5-.3 2.75 2.45 4.8 2.65 2.1 6.75 2.3 1.75.1 3.35-.1-.15 2.2 2.05 3.9 2.25 1.75 5.65 1.95 3.4.1 6.05-1.25 2.6-1.6 2.85-3.85m18.1-7.4q-1.85.9-2.25 2.4-2 .3-3.55 1.25-2.55 1.3-2.85 3.35-.15 2.2 1.95 3.8 1.55 1 3.6 1.45.45 1.2 1.75 2.15 2.1 1.6 5.2 1.75 3.15.15 5.45-1.15 2.35-1.45 2.65-3.55.15-1.95-1.8-3.55-.85-.6-2-1.05.35-.1.55-.3 2.1-1.25 2.3-3 .15-1.8-1.55-3.1-1.9-1.5-4.6-1.65-2.75-.1-4.85 1.2m-50.05 24.45q-.2 1.7.55 3.15-1.75.3-3.4 1.3-2.7 1.45-3 3.7-.2 2.35 2.15 4.2 2.35 1.7 5.65 1.9 3.25.15 5.8-1.1 1.35.45 2.85.5 3 .15 5.25-1.2 2.25-1.35 2.5-3.3.05-.95-.25-1.65.75-.35 1.45-.75 2 1.05 4.7 1.2 4 .15 6.95-1.5 3.05-1.75 3.3-4.3t-2.4-4.55q-2.4-2.05-6.4-2.2-2.2-.1-4.15.45-.25-.2-.45-.4-3.2-2.6-8.35-2.7-4.8-.35-8.5 1.95-3.85 2.1-4.25 5.3m63.05 15.5q1.1.75 2.75.85 2 .1 3.65-.8 1.5-.85 1.7-2.25.1-1.3-1.25-2.3-1.4-1.15-3.4-1.2-1.9-.05-3.45.85-.45.3-.7.45-1.05-.45-2.25-.5-1.95-.05-3.2.85-1.6.7-1.65 1.95-.15 1.1 1.3 2.05 1.05 1 2.95 1.05 1.75.05 3.1-.65.2-.1.45-.35m12.2-7.15q0-.8-.85-1.3-.6-.6-1.8-.75-1.15-.05-1.95.55-.95.45-1.05 1.25-.1.8.7 1.25.85.65 1.9.8 1.1.05 2.05-.6.8-.45 1-1.2m-21.15-10q-1.95-1.7-4.95-1.75-3-.25-5.25 1.1-2.35 1.3-2.65 3.25-.1 1.15.5 2.1-.35.15-.55.35-1.3.75-1.4 1.85-.25 1.2 1 2.1 1.1.85 2.85.95 1.75.1 3.1-.6 1-.65 1.3-1.55 3.05.15 5.25-1.1 2.25-1.4 2.55-3.4.3-1.9-1.75-3.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.248;0.253;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1303.3 36.65q-1.95-1.55-4.8-1.6-2.7-.25-4.9 1.15-1.65.8-2.15 1.9-.1 0-.1-.1-3-.05-5.4 1.3-2.45 1.3-2.55 3.25-.3 2 1.75 3.6 2.15 1.5 5.15 1.65 2.05 0 3.8-.5.35.85 1.35 1.6 1.75 1.25 4.2 1.35 2.55.1 4.4-.95 2-1.1 2.2-2.8.15-1.55-1.4-2.95-.85-.6-1.8-.85 1.6-1.15 1.9-2.95.1-1.75-1.65-3.1m27.45 24.2q-.1 0-.25.05.25-.75.35-1.6.35-3.4-3.1-6.05-3.4-2.7-8.8-3-5.15-.3-9.2 2.15-4.2 2.2-4.6 5.7-.2 1.95.9 3.75-1.55.35-3 1.2-3.5 1.95-3.8 4.75-.35 2.9 2.65 5.1 2.8 2.2 7.15 2.45 3.4.15 6.2-1 .95 2 3.25 3.65 3.85 3.3 9.95 3.6 6.2.25 10.95-2.45 4.55-2.85 5.2-7.2.45-4.2-3.6-7.45-4.1-3.3-10.25-3.65M1312.9 85.7q.3-2.7-2.45-4.9t-7.1-2.35q-4.2-.3-7.45 1.65-3.45 1.9-3.75 4.75-.1 1.7 1.1 3.3-3.15-.05-5.55 1.35-.15.05-.35.15-2.75-2.05-6.9-2.2-3.85-.15-6.9 1.65-3.3 1.7-3.65 4.4-.25 2.7 2.55 4.7 2.7 2.2 6.65 2.35 4.15.15 7.35-1.55.9-.55 1.6-1.25 1.9.85 4.25.9 1.05.15 2.15 0 31.15 6.4 45.65 28.5l3.55-25.3q1.05-.2 1.85-.75 2.2-1.25 2.4-3.15.2-1.75-1.6-3.25-1.95-1.45-4.85-1.6-2.7-.2-4.95 1.05-.15.25-.3.3-1.05-.3-2.25-.35-.35 0-.7-.05v-.4q.35-2.85-2.5-5-2.8-2.3-7.2-2.45-3.85-.2-6.8 1.35l-.35-.35q-1.35-1.1-3.5-1.5m15.05 180.1q.1-1.9-1.65-3.25-.15-.25-.4-.4 4.1-12.65 1.5-25.7-11.65 11.3-28.85 17.65-1.1-.45-2.5-.5-2.9-.15-5.1 1.15-.85.4-1.35 1-5.45 2.8-18.45 2.75-.65-.8-1.7-1.5-2.85-2.25-7.15-2.45-4.2-.15-7.45 1.75-3.35 1.85-3.65 4.55-.35 3 2.6 5.1 2.8 2.2 8.35 3.05 5 .75 9.75.3-.55.2-.9 2.75t2.95 5q3.1 2.35 7.55 2.55 4.45.25 7.9-1.6 3.35-1.9 3.75-5 0-.85-.05-1.55.5.6 1.3 1.2 3.15 2.45 8.05 2.65 5 .3 8.7-1.95 3.8-2 4.2-5.3-.1-.05-.1-.15.25.3.7.5 1.85 1.4 4.6 1.6 2.85.1 5.05-1.15 2.05-1.2 2.35-3.05M1302 279.5q-1.75 1-2.2 2.3-1.95.55-3.65 1.6-3.1 1.65-4.35 3.9 0-.1-.05-.1-2.75-2.1-6.9-2.35-4-.2-7.1 1.7-3.3 1.75-3.65 4.45-.15 2.7 2.6 4.75 2.75 2 6.75 2.2 3.95.25 7-1.35 2.35 1.5 2.15 3.45-.25 2.2-3.05 3.55-2.9 1.3-6.6 1.15-3.6-.15-6.1-1.7.85 2.05 3.15 3.75 3.75 2.85 9.2 3.1 5.75.25 9.95-2.2 4.4-2.3 4.7-6 .15-.85 0-1.5.2-.05.4 0 6.1.35 10.6-2.3 4.65-2.55 5.05-6.6.45-3.9-3.45-6.8-1.35-1.15-3.05-1.9-.15-1.45-1.7-2.55-1.85-1.55-4.65-1.75-2.85-.1-5.05 1.2m-38.2-234.55q-1.3.75-2.15 1.55-.7-1.95-2.9-3.65-3.5-2.7-8.8-3-2.4-.15-4.5.4l-.05-.1q-3.5-2.65-8.8-3-5.3-.25-9.2 2.15-4.15 2.25-4.6 5.65-.05.4-.05.8-1.55 1.85-1.9 3.95-.35 4.05 3.75 7 2 1.55 4.6 2.4-1.8.55-3.5 1.6-4.95 2.9-5.4 6.85-.45 4.4 3.8 7.6 4.25 3.2 10.6 3.55 1.95.1 3.95-.1 4.1 2.35 9.85 2.6 7.6.4 13.35-2.9 3.1-1.7 4.65-3.95.5 1 1.75 1.8 2.5 1.9 6.15 2.05 3.8.25 6.75-1.4 2.75-1.7 3.1-4.2.05-.55.05-.95.55.1 1.15.15 4.15.2 7.2-1.55 3.1-1.8 3.45-4.5.1-1.9-1.15-3.4 1.6-1.4 1.75-3.05.3-2.25-1.9-3.9-2.2-1.8-5.7-2-2.65-.05-4.9.9.55-1.1.65-2.35.4-3.45-3.1-6.15-3.35-2.75-8.85-2.95-5.1-.25-9.1 2.1M1241.95 283q-.65-3.55-4.55-6.5-5-4.1-12.8-4.45-5.95-.2-10.8 1.85-.3-.15-.8-.15-6.35-.3-11.2 2.7-5 2.65-5.6 6.9-.45 4.3 3.95 7.55 2.1 1.6 4.7 2.45-4.55.55-8.25 2.75-5.3 2.85-5.85 7.25-.45 4.55 4.25 7.9 4.25 3.4 11 3.7 6.75.4 11.85-2.55.35-.2.7-.45.8.1 1.75.2 5.7.3 10.05-2.15 1.15-.7 2.05-1.5.8.85 1.75 1.8 3.6 2.7 9.2 2.95 5.7.35 10-2.1 4.45-2.5 4.8-6.3.1-.25.15-.5.7.1 1.45.05 3.95.3 6.9-1.6 3.05-1.8 3.4-4.7.2-2-1.1-3.7.7-.85 1.05-2 1-2.65-1.35-4.8-2.1-2.05-6.35-2.4-1-.05-1.85 0v-.1q.3-2.6-2.35-4.8-2.45-2.25-6.4-2.5-3.75-.15-6.8 1.8-2.25 1.45-2.95 3.4m16.75 36.05q.4.05.8.05 0 1.55 1.7 2.85 1.95 1.45 4.7 1.55 2.9.05 5.05-1.05 2.1-1.25 2.3-3.1.15-1.45-.85-2.75.95-.2 1.9-.75 2.15-1.2 2.4-3.05.15-1.9-1.7-3.3-1.8-1.5-4.7-1.6-2.75-.25-5 1.05-1.45.85-2.05 1.8-1.5-.7-3.55-.8-2.75-.15-4.95 1.1-2.25 1.35-2.5 3.05-.25 1.95 1.7 3.35 2 1.45 4.75 1.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.248;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1308.95 52.6q-2.65 1.45-4.4 3.25-.3-.25-.55-.35-6.45-4.35-16.45-4.85-9.55-.5-16.85 3.2-7.7 3.35-8.35 8.7-.6 5.1 5.25 9.1-2.85-.55-6.15-.75-10.35-.6-18.3 4.25-8.3 4.55-9 11.4-.75 7 6.4 12.3 6.8 5.3 17.2 5.85 1.2 1.35 2.9 2.7 5.6 4.35 14.15 4.85 2.85.1 5.55-.2-.6 1.25-.85 2.7-.45 4.75 4.65 8.2 4.7 3.55 12.1 3.9 2.85.2 5.3-.15 23.75 5.35 36.05 17.25 20.05-42.15 12.8-78.05 1.75-1.8 1.9-4.1.35-3.1-2.05-5.45-2.4-2.4-5.95-2.55-2.7-.05-4.95.9-.35-.3-.85-.7-5.7-4.5-14.4-4.95-8.6-.4-15.15 3.55m18.45 243.6q2.35-4.1.55-8.25-.2-.35-.45-.8 17-33 1.7-75.7-8.3 11.05-40.45 15.2-1.4-.2-2.9-.4-6.5-.6-12.3 1.55-5.7 2.05-7.05 5.45-1.1 2.6.7 4.85-12.45-1.1-25.9 5.2-9.5.1-16.95 4.4-8.85 4.5-9.5 11.45-.9 7.2 6.9 12.7 7.35 5.3 18.5 5.8 1.35.1 2.6.05-2.3 1.95-3.55 4.45-3.4 5.75.45 10.95 4 5.4 13.1 7.05 8.65 1.8 17.05-.9 3.4-1.1 5.95-2.6.15-.05.15.05 3 5.9 11.05 8.15 8.3 2.4 16.9-.15 3.3-.9 6-2.4.05 0 .15.05 4.95 1.55 9.95-.25 5.1-1.75 7.35-5.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1300.75 88.1q-.5-.15-1.1-.15-7.85-.4-14.7 2.05-5.15 3.3-5.25 7.3-.2 3.95 2.9 6.45 3.05 2.5 4.6 3.3-1.35-.2-2.85-.2-10.4-.55-18.2 3.75-8.35 4.05-8.95 10.3-.85 6.4 6.4 11.2 6.9 4.95 17.25 5.45 6 .25 11.05-.9.75 2.8 3.8 5.1 4.4 3.4 10.95 3.7 6.2.25 10.85-2 17.5 5.3 21.25 19.4 20.55-28.35 11.75-72.25-.25-2.05-.05-3.85.4-3.9-3.05-6.95-3.25-3-8.25-3.3-5-.2-8.75 2.65-.3.1-.6.35-.65-.7-1.5-1.5-4.05-3.85-10.65-4.1-6.5-.3-11.3 3-5.2 3.2-5.75 8-.15 1.65.15 3.2m4.65 117.25q-2.05-1.55-5.3-1.85-3.6-.4-6.5.75-2.8 1.15-3.25 3.1-.05.7-.15 1.25-25.15.1-33.45 2.75-9.25 2.85-11.85 8.7-3.1 5.85 2.2 10.9 5.25 5.15 15.9 6.75 4.85.7 9.35.5-4.45 1.9-6.55 5.3-3 4.35-.35 8.45 2.75 4.25 9.6 5.8 6.1 1.45 12.15.05-4.4 2.45-4.75 6.05-.55 4 3.5 6.95 3.95 2.95 9.75 3.25 5.9.3 10.35-2.2 1.3-.8 2.2-1.6.35.25.7.45 3.25 2.6 8.1 2.9 5.1.3 8.75-2.1 3.7-2.05 4.25-5.25 17.4-39.4 6.85-76.9-13.85 18.65-31.5 16"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FFAABD" d="M1345 102.15q-3.4-2.3-8.4-2.5-5.05-.3-8.75 1.7l-.5.3q-.7-.6-1.6-1.1-4.25-2.8-10.7-3.15-6.5-.25-11.25 2.2-5.05 2.15-5.45 5.6-.15 1.35.2 2.3-.45-.05-1-.1-7.9-.35-14.7 1.4-5.1 2.35-5.1 5.25 0 2.85 3.15 4.8 3.2 1.9 4.65 2.55-1.35-.25-2.75-.3-10.5-.55-18.1 2.45-8.3 2.95-8.7 7.45-.6 4.75 6.75 8.3 7.05 3.8 17.4 4.25 5.9.35 11-.45.9 2.05 4 3.75 4.4 2.55 11.05 2.85 6.2.3 10.75-1.35 17.7 4.1 21.8 14.5 19.65-20.55 9.45-52.85-.15-1.4-.1-2.75.25-2.9-3.1-5.1m-39.25 100.35q-2.1-1.3-5.3-1.55-3.7-.4-6.45.6-2.85.95-3.25 2.55-.15.55-.15 1.05-25.15-.2-33.4 2.05-9.15 2.2-11.65 7.15-3.05 4.85 2.35 9.1 5.45 4.4 16 5.85 4.8.55 9.4.45-4.4 1.6-6.4 4.35-3 3.7-.25 7.2 2.9 3.4 9.65 4.8 6.15 1.3 12.1.2-4.2 2-4.6 5.1-.35 3.25 3.7 5.75 3.9 2.5 9.7 2.85 6 .2 10.4-1.85 1.3-.6 2.2-1.3.35.25.65.4 3.35 2.2 8.2 2.45 5 .35 8.75-1.6 3.5-1.7 4.05-4.45 16.65-32.75 5.45-64.3-13.5 15.5-31.15 13.15"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A5262" d="M1135.75 65.25q.3-2.1-1.05-3.75-1.35-1.45-3.5-1.55-2.05-.2-3.8 1.25-1.6 1.4-1.95 3.45-.1 1.45.55 2.65-.5.9-.65 2.1-.25 2.4.95 4 1.4 1.95 3.5 2.05 2 .05 3.7-1.65 1.7-1.55 2-3.95.15-1.55-.3-2.7.55-.9.55-1.9M974.85 48.5q.15-1.25-1.5-2.25-1.65-.9-4.2-1-2.5-.1-4.3.7-1.75.65-1.9 1.9-.25.85.6 1.55-3.35-.05-5.85 2.75-2.75 3.05-2.9 7.5-.1 3.15 1.1 5.6-.8.5-1.3 1.3-1.45 2.1-1 4.7.35 2.7 1.95 4.25 1.9 1.85 3.75 1.65 2.15-.3 3.4-2.3 1.15-1.8.9-4.15 2.95-.25 5.3-2.9 2.55-2.9 2.8-7.25.1-4.55-2.25-7.75-.7-1-1.5-1.75.25 0 .5.1 2.6.05 4.4-.8 1.85-.6 2-1.85m150.5 59.3q.15-2.2-1.2-3.65-1.35-1.55-3.5-1.65-2.05-.05-3.75 1.25-1.65 1.45-1.95 3.6-.35 2.05 1.05 3.45.6.75 1.25 1.1-2.3 2.1-2.95 4.85-.8 2.15-.3 3.8-.25.55-.5 1.2-.95 3.35.4 5.5 1.35 2.6 4 2.7 2.75.15 5.45-2.15 2.55-2.2 3.5-5.45.25-.85.35-1.6 1.05-1.5 1.7-3.2.9-3.25-.45-5.85-1.2-1.9-3.6-2.3.3-.75.5-1.6m-3.35 37.6q-1.35-1.8-3.85-1.9-2.5-.05-4.65 1.55-2.1 1.5-2.6 3.9-.35 1.25 0 2.35-2.35 2.25-2.5 5.35-.3 3.5 1.6 5.75 2.1 2.55 5 2.8 3.05.05 5.6-2.35 2.3-2 2.65-5.4.15-3.05-1.5-5.45.75-1.1 1.05-2.5.55-2.3-.8-4.1m-9.75 37.4q.25-2.2-.85-3.95-.9-1.65-2.65-1.7-1.55-.05-2.8 1.5-1.25 1.55-1.55 3.75-.15 2.4.75 3.8.3.4.5.75-1.05.35-2.05 1.1-1.95 1.4-2.05 3.75-.25 2.35 1.4 3.8 1.15 1.2 2.75 1.7-.35 1.35-.4 2.75-.4 3.85 1.05 6.45-.7.35-1.25.9-1.85 2-2.15 4.95-.3 2.9 1.25 4.8 1.7 2.15 4.15 2.45 2.5.05 4.4-2.1 2-1.65 2.2-4.65.2-1.7-.35-3 1.3-.8 2.6-2.25 2.45-2.55 2.85-6.8.25-4.05-1.65-7.1-1.8-3-4.95-3.1h-.05q-.55-1.2-1.3-2.1-.85-.9-1.95-1.35.3-.3.6-.65 1.15-1.35 1.5-3.7m-7 49.45q1.2 1.75 2.95 1.8 1.8.05 3.25-1.4 1.4-1.45 1.65-3.6.15-2.2-.95-3.8-1.15-1.55-3-1.6-1.85-.1-3.25 1.3-1.45 1.5-1.6 3.7-.2 2.2.95 3.6m10 27.05q.25-2.4-1.1-4.35-1.3-1.7-3.55-1.85-2.1-.1-3.8 1.55-1.55 1.65-1.8 4.15-.2 1.65.3 2.9 0 .15-.15.25-2.2 2.7-2.55 6.6-.35 4.1 1.4 6.65 1.75 3.05 4.7 3.2 3 .1 5.3-2.7 2.3-2.4 2.65-6.55.5-3.85-1.4-6.65-.35-.4-.5-.8.45-1.05.5-2.4M957.5 114.35q.4-1.95-.4-3.55 2.35-1.5 2.5-3.75.3-2.35-2.05-4.2-2.25-1.85-5.85-1.95-3.55-.25-6.4 1.35-2.75 1.55-3.15 3.95-.1 1.6.9 2.9-2.45 1.8-2.95 4.45-.45 2.95 1.5 4.9 1.25 1.3 2.85 1.9-1.05 1.05-1.25 2.35-.25 1.6 1 2.75 1.3 1.25 3.1 1.3 2 .1 3.4-.95t1.7-2.6q.2-1.5-1-2.7 1.4-.5 2.65-1.4 2.95-1.75 3.45-4.75m-17.15 25.8q-.1 1.25.85 2.1.9.95 2.35 1 1.35.15 2.45-.7 1.15-.7 1.25-2.05.1-1.25-.75-2.15-.95-.95-2.35-1.05-1.3 0-2.55.75-1.05.85-1.25 2.1m5.25 30.05q.5-.8.65-1.8.2-1.7-1.15-3.15-1.35-1.3-3.5-1.35-2.05-.15-3.75 1-1.6 1.25-1.8 3.05-.1.7.2 1.4-1.95 1.55-2.2 3.95-.15 2.25 1.2 3.8-.65.85-.85 2.05-.1 1.95 1 3.25 1.55 1.5 3.45 1.6 2.15.1 3.7-1.3 1.65-1.05 1.75-3.1.2-.95-.05-1.9 2-1.4 2.25-3.85.2-2.05-.9-3.65m-4.9 21.45q-.95-1.15-2.3-1.2-1.45-.2-2.6.9-1 1-1.2 2.25-.55.15-.85.5-1 .5-1.1 1.4-.1.9.75 1.55.8.75 2.05.85.65 0 1.15-.1.4.15 1 .15 1.25.05 2.45-1 1.1-1 1.35-2.65.1-1.5-.7-2.65m-3.1 9q-1.35-.1-2.25.55-1 .65-1.05 1.45-.25.95.65 1.7.8.65 2.15.7 1.3.1 2.3-.55.95-.6 1.15-1.5.05-.85-.8-1.65-.95-.6-2.15-.7m2.1 40.25q-.85-.7-2.1-.8-1.3-.05-2.3.45-1 .75-1.1 1.6-.15.9.7 1.55.75.55 1.7.8-.7.3-1.35.85-2.2 1.65-2.4 4.1-.3 2.6 1.5 4.3.45.5.95.9-.65 1.1-.55 2.6-.15 2.4 1.55 3.95 1.5 1.7 3.9 1.85 2.35.05 4.1-1.55 1.55-1.35 1.6-3.75 0-2.25-1.6-3.85-.05 0-.05-.05 1.6-1.5 1.85-3.7.2-2.4-1.55-4.35-1.8-1.8-4.5-1.9-.25-.05-.4 0 .7-.55.85-1.45.05-.9-.8-1.55m8.6 40.85q-1.15-1.45-3.4-1.7-2.1-.45-4.1.45-1.75.95-2.1 2.7-.35 1.8.85 3.05.7.95 1.85 1.4-.2.05-.2.35-1.3 2.3-.45 4.5-1.55 2.15-1 5.1.7 3.1 3 4.95.15.15.3.45-.2.8-.1 1.75.35 2.4 2.6 3.9.25.15.35.15-.25.5-.3 1-.4 1.75.9 3 1.2 1.65 3.35 1.9 2.2.3 4.1-.6 1.75-.9 2.2-2.55.35-1.65-.8-3.1 1.9-1.65 1.65-4.05-.45-2.3-2.65-4-.15-.15-.35-.25.45-1.45.05-3.2-.3-1.9-1.45-3.3 1.15-2.55.4-5.1-.85-2.6-3.1-3.7-.35-.15-.6-.15.2-1.55-1-2.95m11.45 38.6v-.05l-.05.05h.05"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.248;0.253;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1A5262" d="M1143.85 54q-5.9 4.6-8.7 22.25-3.4 4.1-4.85 9.3-1.4 5.2-.35 9.8-5.1 5.95-2.25 13.8-5 7.95-2.95 16.3-6.9 19.2-10.2 48.2-6.25 56.35-1.95 96.75.25 3.9 3.05 8.6-.5 5.25.65 11.1l11.75-12.65q.9-4.8-.65-9.3-2.25-6-3-6.1-3.95-9.4.3-16.1-1.8-27.9 1.5-76.4 3.55-48.6 10.2-64.85 6.5-16.25 5.95-22.05 6.4-12.5 8.25-20.8l-3.05-16.2q-2.35 3.05-3.7 8.35m-163.5-21.45q-6.1 1.9-2.9 11-3.65.5-6.65 6.6-3 6.1-2.4 18.55-10.7 42.75-18.15 104.15-7.55 61.5-3.4 92.2 4.1 30.7 6.95 40.55-.9 3.95-.35 7l16.45-10.3q-1.6-3.35-1.35-7.4 5.25-9.25-2.3-15.3 2.2-2.8 2.7-5.8.45-3-3.3-4.8 3.7-8.05-3.3-11.1 3.75-11.65-2.15-15.05 3.7-33.85 7.15-79.7 3.6-46.05 17.25-84.7 5.1-2.95 2-13.4 8.7-6.15 9.05-11.1.25-4.9-1.05-3.3-4.15-7.8-.75-12.55l-8.3-21.15q-1.55 1.05-2.9 2.7-5.2 5.9-2.3 12.9"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.248;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1162.2 67q-4.4 7.95-8.65 20.6-11.9 34.3-17.5 83.5-5.4 49.2-1.35 84.25.95 9.65 2.75 16.55 2.3 3.75 5.45 3.85 1.2.05 2.45-.45-.15-.3-.15-.6-2.7-8.35-4-23.55-2.65-33.15 2.6-79.7 5.1-46.5 15.25-79.1 5.15-16.65 10.1-24.55-1.5-2.25-3.4-2.3-1.7-.1-3.55 1.5m-158.45-20.15q-1.85-.2-3.75 1.65-4.2 9.35-8.55 24.1-11.75 39.9-18.15 97.05-6.55 57.05-3.7 97.85.7 10.9 1.9 18.9 1.95 4.4 4.9 4.6 1.2 0 2.45-.75-2.8-9.75-3.45-29.7-1.6-38.15 4.4-91.9 5.9-53.5 16.1-91.1 5.15-19.8 10.45-29.7-1.25-.95-2.6-1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1139.25 125.5q-1.95-3.65-4.6-3.7-1.3 0-2.5.8-2.65 3.9-5.05 10-6.85 16.9-9.7 41.05-2.6 24.15.4 41.35.75 4.7 1.9 8.05 1.5 1.9 3.4 2 2.65.15 5.3-3.15-2.1-3.95-3.3-12-2.3-15.2.2-36.6 2.4-21.35 8.05-36.3 2.9-7.9 5.9-11.5m84.2-18.75q-3.25 5.5-6.6 14.15-8.9 23.45-12.75 57.15-3.75 33.75-.1 57.85.9 6.5 2.3 11.25 1.95 2.6 4.25 2.65 3.3.2 6.8-4.4-2.6-5.45-3.95-16.65-2.7-21.3.7-51.15 3.45-29.85 10.7-50.75 3.9-10.9 7.75-16-2.5-4.9-5.75-5.05-1.65-.1-3.35.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D36" d="M1308.1 119.75q-3.15 4.6-6.3 12.2-8.65 20.25-11.85 49.45-3.35 29.1.6 50.1 1.05 5.6 2.5 9.65 1.8 2.3 4.4 2.45 3.2.2 6.6-3.9-2.7-4.6-4.25-14.35-2.9-18.5 0-44.45 2.85-25.75 9.8-43.65 3.8-9.45 7.6-13.8-2.6-4.35-5.85-4.5-1.75-.1-3.25.8m-36.05 22.45q2.95-6.95 5.95-10.15-2.05-3.15-4.7-3.35-1.3-.05-2.55.6-2.5 3.45-4.9 9-6.7 15-9.1 36.5-2.4 21.6.9 37 .7 4.2 1.85 7.25 1.55 1.65 3.55 1.75 2.55.15 5.2-2.75-2.1-3.6-3.4-10.7-2.45-13.65-.3-32.8 2.1-19.1 7.5-32.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1251.9 32.55q-4.2-10.6-10.95-19.8 2.2 14.45 7.9 26.9t10.4 18.8q-3.15-15.3-7.35-25.9m-61.5 3.25q11.2 6.9 11.85 7.45Q1185.3 23.05 1158 4.4q16.6 26.35 43.65 48.7l-11.25-17.3m-47.65 19.35q7.25 2.95 8.8 3.2L1125 40.85q-22.35-12.9-38.4-19.8 12.95 11.55 30.95 21.3 18.1 9.75 25.2 12.8m47.3 20.75q10.65 6.95 22.4 12.85-20.05-18.6-41.95-30.5 9.1 10.75 19.55 17.65m-31.9-39.85q18.95 13.25 31.15 17.9l-29.5-24.45q-17.65-13.95-26.25-17.2 5.85 9.05 24.6 23.75m-101.05 28q6.85 2.6 10.75 3.65 3.9.95 4.85 1.05.9.15.7-.1 0-.35-3.65-2.2-3.75-1.95-10.85-4.25-7.05-2.2-11.45-3.4-4.4-1.2-4.65-1.05-.4.25 3.6 1.95 3.8 1.8 10.7 4.35m-56.9-1.6q-7.35-1.9-7.85-1.7-.55.2 6.05 3 6.55 2.7 18.2 6.55 11.65 3.95 18.95 6 7.3 1.9 7.55 1.7.3-.4-5.95-3.25-6.2-2.9-17.9-6.65-11.75-3.8-19.05-5.65m72.45-1.1q-30.45-19.05-76.9-31.95 29 18.25 76.9 31.95m6.3 206.45q6.65-3.1 11.7-5.75-1.4.15-9.45 2.65-8.15 2.5-28.45 10.45-20.1 7.9-31.3 13.65 8.2-1.95 24.1-7.45 11.2-3.95 14.65-5.45 12.05-5 18.75-8.1m-94.35-13.15q7.25-1.75 15.5-7.05-13.95 1.4-21.5 7.75-1.2 1.05 6-.7m20.15 30.05q-1.5.3-15.75 4.75-15.55 5.05-32.85 11.1-48.45 16.95-66.1 26.75 14.25-2.75 30.65-7.9 10.6-3.3 29.15-9.95 39.45-16.7 54.9-24.75m114.45 30q-1.3.2-8.45 3.35-7.35 3.1-25.8 12.9-18.3 9.7-29.2 16.7 3.5-.95 18.6-8.1 6.2-3 18.1-9.6 12.25-6.85 15.4-8.6 9.35-5.15 11.35-6.65m13.4 19.05q-19.45 10.6-30.1 18.35 7.7-2.6 22.95-10.1 10.9-5.4 14.05-7.35 11.7-6.7 18.15-10.95 6.5-4.1 11.3-7.6-1.45.15-9.15 3.65-7.75 3.4-27.2 14m-80.2-44.85q-14.8 4.3-44.9 14.45-30.1 10.05-44.4 16.45 15.1-3.3 48-14.65 32.75-11.15 41.3-16.25m136.4 31q-1.1.1-7.35 3.55-6.45 3.25-22.35 13.35-16 10.25-24.8 17.5 6.35-2.4 18.8-9.6 8.95-5.15 11.65-7.15 9.4-6.3 14.8-10.3 5.3-4 9.25-7.35m-.6 25.85l7.95-5.15q11.85-8.35 20.25-18.7-17.85 11.6-28.2 23.85m-23.3-20.5q-1.15 1.1 8.5-3.6 9.45-4.8 20.4-14.8-17.5 6.05-28.9 18.4m-268.05-250q23.65 7.3 35 8.65-7.95-3.95-29.6-10.6-23-6.85-36.9-8.9 10.25 4.35 31.5 10.85m-44.5 38.9q9.2 3.25 31.35 7.35 22.2 4.05 32.6 4-6-3-28.2-6.9-22.15-3.75-35.75-4.45m37.05 49.35q-14.45-2.1-44.55-2.85-30-.85-46.3.55 13.75 1.85 46.8 2.5 33.1.75 44.05-.2m41.55-51.4q-7.85-4.25-37.55-10.35-29.85-6.15-48.35-7.7 12.1 4.75 41.95 11.15 29.75 6.45 43.95 6.9M811.8 37.25q55 22.3 124.1 38.8-49.85-22.65-124.1-38.8M767.65 137.5q-24.1-1.35-37.1.3 11 2.35 37.45 3.6 26.25 1.25 35.1.15-11.45-2.9-35.45-4.05m-22.15 41.85q36.25-1.45 48.1-3.55-16.1-2-49.25-.9-33.2 1.2-50.75 4.25 15.55 1.45 51.9.2m57.95 5.85q-24.7 1.75-37.8 5.3 11.6 1.15 38.55-.9 27.05-2.15 35.85-4.45-11.9-1.65-36.6.05m-14.85-26.3q-17.7-4.75-55.3-6.65-37.65-1.95-58.15.65 17.15 3.8 58.55 5.85 41.2 1.85 54.9.15m120.25 71.9q1-.15 1.95-.4 17.1-3.4 32.45-8.8-11.5 1.4-29 4.55-17.6 3.05-41.7 9.55 19.05-1.45 36.3-4.9m18.1 6.2q-13.7 3.15-32.7 9.6 14.9-1.55 28.55-5.05.65-.15 1.4-.35 13.4-3.5 25.65-8.9-9.1 1.55-22.9 4.7m20.1 27.55q1.1.65 10.5-1.6 9.5-2.3 15-6.9-12.95-.45-25.5 8.5M967.7 275q-14.55 4.3-31.95 13.9 13.55-2.6 25.75-7.1.65-.1 1.45-.45 12.05-4.55 21.95-10.8-2.65.3-17.2 4.45m-25.15-66q-5.35-.2-23.6 1.9-18.4 1.95-39.05 6.3 16.1-.85 34.85-3.2 18.9-2.45 27.8-5M814.6 262.2q1.15-.05 2.45-.3 20.05-3.45 38.35-8.8-13.65 1.4-34.4 4.45-20.95 3-49.3 9.45 22.55-1.4 42.9-4.8m.4-26.95q12.25.65 55.9-6.25l52.55-11.05q-19.1.55-52.55 5.5-33.4 4.85-55.9 11.8m130.8-154q42.55 17.2 85.3 29.55-36.25-17.2-85.3-29.55m73.9-1.1q-32.3-17.5-83.2-30.45 33.75 16.5 83.2 30.45"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.253;0.259;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1274.05 87.5q-7.1-51.55-27.9-82.7 4.05 41.75 27.9 82.7m-63.5 1.3l-17.25-27.1 28 16.5q4.3-14.25-18.65-41.05Q1179.6 10.4 1159.5 3q14.9 19.25 25.65 39.55l-44.85-25.9 34.65 44.85q-37.6-19.9-77.4-32.6l93.2 61.9-19.45-22 39.25 20m-108.7-8L1090.2 70l44.85 14.35q-51.2-33.6-126.55-49.8l62.4 30.3-20.15-4.75 51.1 20.7m-91.05-21.55l19.35 13.2-66.55-15 99.6 39.75-26.3-14.3 39.2 2.75-65.3-26.4m-21.75 29.5l37.45 5.8q-95.65-30.85-202.3-54.4l75.9 28.9-27.25-5.4 40 14.35-29.1-7.25 38.65 13.7 84 28.6-18.9-8.75 84.25 19.85-82.7-35.4m10.8 53.5q-3.35-.85-24.75-8.55l24.75.5q-27.85-8.3-57.8-11.7l12.65 4.25-65.8-7q58.8 18 110.95 22.5m24-7.15l-40.9-13.25 32.05 2.35-60.15-13-70.8-8.3 55.6 11.15-26.45-2 110.65 23.05m-37.5 138.15q27.9-8.1 47.55-16.85-41.35 8.95-78.7 24.35 3.2.5 31.15-7.5m52.15 18.65l74.05-34.6-83.1 22.15 45.7-24.6L909.2 318.2l103.35-28.55-26.85 13.5 31.4-8.55-38.5 20.8q52.85-15.15 102.9-32.4l-43 8.9m158.9-8.35l-30.45 11.8 26.35-25.8-124.25 69.3q-.05.3 74.1-31.15l-24.75 24.6q42.5-23.65 79-48.75m-15.6 66.75l26.9-18.8q18.75-14.6 26.25-24.05 7.45-9.35 8.15-10.5-29.75 19.9-61.3 53.35m-4.65-31.45l-40.05 34q49.1-23.45 88.75-55.55l-24.2 12.35 23-21.95-40.5 20.2 31.35-24.05q-54.25 29.55-100 62.05.5-.35 61.65-27.05m-254-168q-45-5.7-85.85-8.3-45.35-4.35-89.6-2.8l68.65 9.2-138.5 3.65 103.25 16.15-30.85 2.45q31.45 2.1 43.95 5.05l-66.95 1.65 93.15 6.75-35.1 6.2q56.1 2.2 108.85-1l-39.95-3.55 43.65-4.05-42.25-3.3 103.6-9.7-107.4-8.6 50-3.6-53.7-3.95 75.05-2.25m-31.05 65.8l30-.6-94.9 16.4 86.45-7.65-31.25 9.45 99.65-15.95-29.9 1.65 49.8-12.55-50.15 5.8 23.6-8.3-83.3 11.75m7.55 42.35l48.75-9.5-39.15 2.05 49.45-16.45q-93.8 11.15-181.35 31.1-.05.2 58.05-5.65 29-2.95 58.1-6l-32.3 9.6 38.45-5.15m144.25-20.6q-45 7.95-88.7 24.3 27.2-5.7 88.7-24.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.248;0.253;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1254.85 20.3l2.9 50.3-85.55-61 38.5 51.7-63.55-47.65 50.7 63.1-67.9-29L1231.9 118l-23.85-39.55 75.6 70.1-45.65-69.7q22.05 15.2 42.6 36.3l-18.8-35.3 37.65 33.95-44.6-93.5m-184.6 63.8l44.15 12.25-24.1-16 74.5 20.6q-63.55-37.1-150.8-67.05 32.9 21.1 57.95 44.85l-98.8-19.65q26.15 11.05 46.55 27L853.3 50.95l150.1 68.3-87-8.95 79.7 22.1-58.65-1.7L1051 148.85q-22.45-11.9-42.4-18.95l62.85 4.75-72.75-29.2q67.85 17.25 136 31.45l-83.15-40.8q38.55 6.75 75.2 17.9l-56.5-29.9m-10 152.25l23.7-10.35-112.35 30.6 88.1-13.8-75.6 27.5 80.05-17.05-38.45 14.05 41.9-8.95q-67.5 27.45-142 49.7l160.65-38.6-36.75 19.4 93.3-26.35-33.15 4.2 80.75-36.85-105 29.15 47.85-22.9-70.7 12.1 46.5-20.05-48.8 8.2m-82.05-22.7l60.25-15.65-73.2 1.45 32.8-9.45-105.9 11.2 77.9 4.5L882 226.25l101.95-4.85q-72.1 19.55-143.65 33.1 55.5.15 147.55-17.05l76.7-16.55-81.45 10.25 39.05-13.55q37-12.7 40.4-12.7-5.35-.15-84.35 8.75m253.25 65.95l56.95-48.2-82.5 40.6 31.45-25.45-42.1 16.05 33.5-26.55-106 53.85 62.3-16.9-77.55 47.55 110.3-46.95-53.55 45.15 37.45-18.2-33.1 30.05q78.75-21.85 130.1-81.6l-67.25 30.6m-339.6-130.1l52.05-4-160.6-2.7 76.7 9.65-182.15.15 176.35 21.95-80.4.95q98.45 22.4 211.9 9.75l-84.6-6.65 140.05-4.7-150.4-13.3 79.3-.55-78.2-10.55"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.248;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1341.1 217.1l5.2-74.85-81.55-52.35 11.6 25.1-73.5-45.55L1251.6 118l-76.4-40.65 56.05 40.65-167.8-60.65 95.15 52.35-104.5-31.2 63.3 27.95-22.1-7.1 17.2 9.65-202.3-38.8q75.25 28.8 168.5 61.75l-99.2-8.5q38.75 13.2 79.35 23l-227.95-.85 84.7 12.25-174.95-2.1L927.9 180l-84 .75 170.95 9.5-94.05 9.05 148.9 1.05-119.7 20.9 117.6-5.8-172.75 32.3 172.7-18.75-48.35 10.15 119.45-12.65-83.4 25.6 89.3-12.9-135.5 48.35 110.95-23.6-42.45 14.15 176.6-37.9-97.65 59.35 143.75-69.6-87.35 69.4 128.2-82.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1322.7 257.3l22.4-38.2 3.4-72.75-55.75-40.55 18.95 33-109.65-26 45.85 23.35-43.2-12.95 14.9 8.35-67.95-17.2 53.6 25.15-62.85-4.85 39.85 21.6-84.4 5.25 22.9 4.7-100.6 3.85L1171 200.3l-57.35 8.5 70.35 1.4-50.9 21.35 102.15-10.1-77.45 33.5 127.3-31.55-39.1 28.1 73.45-27 3.25 32.8"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#71B6D0" d="M1323.1 115.95l7.05 26.75-47.5-19.25 19.45 18.4-18.65-9.85 6.25 6.5-29.3-12.9 22.55 19.7-27.55-2.7 16.65 16.9-37.55 5.85 10 3.5-44.6 5.05 65.4 21.95-25.75 8.15 31-.2-23.4 18.55 45.6-10.2-35.7 28.9 57.7-28.25-18.55 23.85 33.65-23.6.15 27 11.45-31.95 4.65-59.9-23-32.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1201.2 81.45l-13.15-25.1L1216.3 73l-19.5-25.55 5 12.7-28.7-17.85q5.35 25.95 28.1 39.15M1068.7 56.9q1 .6 3.35 2.3 4.35 3 41.05 18.1l6.3 1.5q-24.1-15.55-50.7-21.9m-85.45 42.45q32.1 10.55 59.75 14.65-56.85-22.9-90.3-30.2-33.4-7.2-17.45-1.15 15.8 6 48 16.7m37.7 190.75q15.4-2.4 29.95-7.25 21.7-7.05 31.05-14.6-26.6 6.35-44.25 13.15-12.1 4.55-16.75 8.7M826.9 146.05q3.6 1 12.7 1.9 9 1 34.8 2.05 25.65 1 12.6-1.05-61-4.5-60.1-2.9m-9.05 33.45q-7.95-.25 2.1 1.9 10.3 2.1 35.85 1.8l17.3-1.45-54.8-2.3q-.25 0-.45.05m-11.45-8.05q58.95 4.8 109.85-1.25-72.35-10.5-139.55-10.95l67.65 9.95-37.95 2.25"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.248;0.253;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1262.65 51.3l-2.95 22.35-58.7-35.7 15 29.15-35.3-20.6 22.45 33.7-27.4-7.75 48.6 37.6-16.35-31.5 58.65 49.7-36.55-58.3 40.6 32.3q-5.75-12.3-10.3-24.35l31.65 24.8q-2.45-3.35-6.15-10.55-7.35-14.5-7.2-14.5l-.4-.35-15.65-26m-207.35 1.6l32.05 32.65L1031 76.6l40.5 21-31.85-6.2 14.4 11.3L929.3 75.75l98.65 47.85-56.8-2.1 47.25 16.75-38.3-3.2 58.15 10.35-36-17.45 57.15 4.1-64.55-27.8 117.35 23.85-62.8-32.75 67.2 14.9-46.8-26.2 32.75 7.55-19.9-15.25q53.4 14.85 76.2 22.3-38.55-20.5-103.55-45.75m65.45 213.75l-20.5 3.35 54.5-26.5-73.75 17.4q21.25-11.45 38.4-20.3l-67.35 10.9 40.15-18.4-39.8 5.85 13.1-6.75-35.35 11.65 39.4-4.7-38.35 18.75 58.95-9.7-53.95 27.8 76.65-15.95-28.85 16.3 36.75-9.7m-89.4-39.35q5.9-2-51 4.45l64.25-23.6-81.15 8.1 57.6-15.8-66.25.65 31.25-9.45-56.5 9.45 49.35 3.9-43.4 15.05 62.5-2.95-64.05 24.7q52.45-4.7 97.4-14.5m190.2 57.8l48.85-42.65q-29 17.95-66.05 29.8L1228 252.3l-35.9 11.65 21.3-18.15-48.75 27.4 40.75-10.35-26.65 21.95 53.85-19.6-29.1 30.2 48.6-18.35-46.2 34.3q46.75-22.6 76.3-51.3-14.55 7.05-60.65 25.05M888.7 174.25l-50.05 4.1q54.95 10.95 122.6 7.65-9.25.15-67.35-7.25l119.95-5.5q-62.05-3-125.85-13.1l50.8-1.8q-29.85-3.7-52.05-9.9l21.1-2.35-58.9 1.2 40.45 7.6q-55.35.1-105.3 5.35l104.6 14"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.248;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1341.75 210.45l2.05-66.1-64-37.8 15 24.8-56.85-32.05 30.5 31.45-47.75-25.25 36.1 26.95-126.75-44.65 52.9 31.1-73.8-19.65 33.05 14.7-25.25-4.15 14.05 6.45-139.55-23.5 111.45 43.9-70.9-4 44.05 10.85-19.45-.3 53.15 6.95-204.35 1.8 81.55 9.2-141.3 3.3q72.05 11.3 181.15 17.8l-87.25 3q65.6 3.35 130.4 2.9l-51.65 6.45 78.35 2.9-72.15 17.3 78.4-4.55-115.2 25.2 121-14.05-31.3 7.7 81.25-7.65-51.8 18.6 58.75-7.1-97.9 37.75 110.3-25.2-39.8 15.5 144.35-34.75-16.35 13.9 45.8-20.3-16.35 19.7 46.1-29.1"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1311.45 125.7l13 22.75-92.05-24.25 41 21.05-36-8.55 24.95 11.45-63.5-16.4 34.7 15.75-68-5.25 40.05 17.7-75.4 3.95 42.95 4.6-94.3 7.3 120.1 22.9-34.35 8.1 66.6-2.4-59.15 17.55 87.45-9.15-34.05 20.2 78.05-19.4-22.3 19.35 44.1-15.85 1.85 21.25 14.55-23.25 3.05-58.8-33.3-30.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#1F647A" d="M1297.4 142.55l10.55 8.8-27.5-12.2 14.75 12.2-29.8-3 16.9 13.8-33.6 4.6 18.9 3-42.1 7.8 52.2 16.55-15.5 7.2 29.5-3.1-26.9 15.45 39.05-9.1-15.95 17.2 35.3-17.35-10.55 16.4 20.2-13.95-.1 17.5 7.35-19.4 3.9-48.45-13.45-24.45 4.8 18.35-39.7-18.25 17.25 16.7-15.5-6.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1310.75 143.15l-11.65-6.35-39.6-21.8 27.75 26.85-36.65-17.25 24.1 16.9-104.85-35.35 42.2 26.7-58.95-16.35 24.7 11.5-115.3-14.5 81.55 30.4-46.85-1.15 57.7 11.45-140.7 2.85 92.2 7-118.6 8.15q70.5 10.15 144.8 12.95l-61.1 7.35 65 2.05-47.25 10.6 71.6-3.2-79.5 18.45 77.5-8-29 8.1 73.5-7.45-52.9 18.75 62.65-9.4-57.45 22.4 84.8-18-26.65 12.65 84.4-25.7-12.75 13.95 20.4-11.75-6 7.35 40-17.6 2.25-50.15-47-33.85 4.85 6.7 10.8 14.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1316.2 147.3l8.2 12.05-41.1-13.3 18.3 12.5-55.15-10.35 22.2 12.4-59.65-7.65 42.6 15.2-63.25-.45 43.4 5.7-84.1 8.45 114.15 10.35-33.7 6.65 69.6-4.75-20.95 15.95 27.45-7.05-2.45 7.2 32.75-16.7q7.5-14.8 4-24.9l-22.3-21.3"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0D2B35" d="M1300.85 151.65l9.4 9.85-26.1-5.2 18.1 11.85-28 .65 19.1 3.9-37.65 8.55 50.15 6.2-15.3 6.3 31.05-5.3-10.05 13.5 12.5-6.15-1.35 5.9 15.2-14.4q4-12.3 2.75-20.55l-8.85-17.05 3.1 9.7-17.65-10.2 7.65 10.05-24.05-7.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1142.9 45.15q-.75 1-.2 2.5.4 1.4 1.7 2.45 1.4 1.05 2.75 1.05 1.5.05 2.1-1 .6-1.05.3-2.45-.55-1.45-1.7-2.45-1.35-1.15-2.85-1.15-1.45 0-2.1 1.05m18.55 22.8q-.7-1.85-1.9-3.1-1.25-1.25-2.45-1.05-1.3.2-1.7 1.6-.65 1.5-.05 3.3.55 2 1.9 3.1 1.2 1.3 2.45 1.1 1.15-.2 1.75-1.7.35-1.3 0-3.25m-26.4-4.7q.15-1.05-.9-1.9-1.15-.8-2.65-.85-1.65-.05-2.8.65-1.15.7-1.35 1.7-.15 1.15.9 2 1.05.85 2.65.85 1.55.1 2.9-.7 1.2-.6 1.25-1.75m24.5 14.7q.2.55.65.95.55.45 1.25.5.6.1 1.05-.4.6-.3.45-.95-.05-.5-.6-.95-.55-.5-1.2-.5-.7 0-1.25.3-.4.45-.35 1.05m.15 44.7q-2.05-.15-3.8.8-1.65 1.1-1.8 2.55-.2 1.6 1.25 2.6.45.35.9.6-.45.9-.6 2-.05.85.1 1.55-.7.1-1.3.5-1.55.95-1.7 2.5-.1 1.5 1.1 2.5 1.35 1.2 3.4 1.25 1.85.1 3.45-1 1.65-.75 1.75-2.25.1-1.5-1.1-2.7-.25-.15-.45-.25.45-.85.55-1.75.05-1-.1-1.85.65-.25 1.35-.75 1.7-.9 1.9-2.45.05-1.55-1.3-2.75-1.4-1.05-3.6-1.1m-3.05 20.55q-1.05.65-1.1 1.5-.1.9.7 1.4.85.75 1.95.8 1.35 0 2.2-.5 1.05-.55 1.1-1.4.05-1-.8-1.5-.7-.7-2-.7-1.3-.15-2.05.4m-5.5 50.6q-.15.9.5 1.55.9.7 2.1.8 1.25.05 2.15-.65.9-.5 1.05-1.35.15-.9-.65-1.6-.75-.6-2.05-.65-1.2-.05-2.2.55-.85.5-.9 1.35m1.95-8.45q-.45.3-.45.75-.15.55.3.85.45.4 1.15.4.65.05 1.25-.35.45-.15.55-.7 0-.5-.45-.75-.4-.45-1.15-.45-.6-.1-1.2.25M1125.9 70.3q-.1 1.6.95 2.6 1.25 1.2 3 1.25 1.8 0 3.25-.95 1.3-.95 1.5-2.45.2-1.45-1.05-2.6-1.1-1.15-2.9-1.2-1.7-.05-3.15.85-1.35 1.1-1.6 2.5M988.75 22.75q-2.25-.8-2.8.1-.5.8.4 2.2.75 1.4 2.75 2.6 1.8 1.15 3.5 1.25 1.9.15 2.4-.7.8-.9-.05-2.4-.8-1.35-2.7-2.5-2.05-1.15-3.5-.55m19.1 14.35q-.65-1.45-2.8-2.4-2.05-.85-4.15-.75-2.2.05-3.4 1.2-1 1.2-.3 2.5.75 1.45 2.85 2.4 2.05.9 4.3.8 2.15-.15 3.2-1.2 1.15-1.2.3-2.55m2.05 9.4q.6-.35.6-1.05.2-.65-.3-1.05-.4-.55-1.1-.55-.65-.05-1.25.35-.45.45-.55 1.1 0 .7.45 1.15.4.5 1 .5.65.05 1.15-.45m-2.2 14.75q.7 1.7 2.2 2.85 1.7 1.35 3.4 1.4 1.55.15 2.3-1.05.75-1.1 0-2.75-.55-1.8-2.25-3-1.55-1.2-3.2-1.35-1.65-.1-2.4 1.05-.65 1.1-.05 2.85m11.75 12.9q-.75-.75-1.8-.85-1.15 0-2.1.7-.9.75-.9 1.7-.2 1 .5 1.7-1.2.1-2 .35-1.65.7-1.95 1.65-.15 1.1 1.35 1.95 1.45.85 3.85.95.1.7.25 1.4.3 1.45 1.3 2.4.95 1.05 2 .85 1-.05 1.45-1.3.4-1.15.1-2.6-.2-.8-.5-1.4 1.4-.65 1.65-1.5.05-1-1.4-2-.85-.4-2-.6.7-.7.75-1.55.05-1.05-.55-1.85m1.85 54.8q-.05-1.1-1-1.95-1-.85-2.2-.85-1.35-.1-2.2.6-.75.85-.75 1.9.05 1.25.85 2.1.95.85 2.3.85 1.3.05 2.2-.7.85-.75.8-1.95m-.2 6.9q-1.15-1-3.25-1.1-1.95-.15-3.85.8-1.6 1.05-2.05 2.6-.35 1.55.9 2.55 1.15 1.25 3.2 1.3 2.05.15 3.85-.95 1.6-.9 2.05-2.45.45-1.55-.85-2.75m-13.4 37.25q-.2 2 1.4 3.2 1.75 1.6 4.15 1.7 2.45.05 4.45-1.2 1.95-1.1 2-3.1.35-1.9-1.35-3.35-1.3-1.15-3.1-1.4l.3-.3q.65-.55.8-1.5.05-.8-.4-1.55-.6-.55-1.35-.7-.75 0-1.3.6-.7.65-.75 1.45-.1 1 .35 1.55.2.25.4.35-2 .15-3.5 1.1-1.95 1.3-2.1 3.15m113.55-63.15q-1.05-.05-2 .45-.9.55-.95 1.35-.05.75.55 1.4.15.05.4.2l-.7.3q-1.95 1.3-2.55 3.15-.7 1.85.35 3.2 1.05 1.45 3.15 1.5 2.15.2 4.1-1.2 1.9-1.1 2.6-3 .6-1.75-.35-3.25-.8-1.15-2.35-1.35.2-.3.25-.65.05-.85-.6-1.4-.8-.65-1.9-.7m-3.4 14q-.9.4-.95 1.25-.1.8.5 1.4.9.65 1.9.7 1.15 0 2.1-.5.85-.55.95-1.3.05-.8-.6-1.45-.8-.55-2-.55-1 0-1.9.45m-1.25 20.55q-1.1-.05-2 .5-.75.4-.85 1.05-.2.85.35 1.25.7.6 1.7.7 1 0 1.8-.4.9-.5 1.1-1.2.15-.75-.55-1.3-.6-.5-1.55-.6m4 11.8q.05-1.7-1.3-2.9-1.45-1.15-3.6-1.25-2.25-.1-3.9.95-1.7 1.05-1.75 2.65-.05 1.7 1.35 2.75 1.45 1.3 3.6 1.4 2.2.1 3.85-1.1 1.7-.9 1.75-2.5m-10.2 25.6q.7-.5.85-1.25 0-.75-.7-1.3-.65-.65-1.7-.7-.9-.05-1.75.5-.65.45-.75 1.25 0 .8.6 1.35.75.65 1.7.7 1 .05 1.75-.55m.35 14.1q-2-.05-3.4 1.6-1.45 1.8-1.7 4.4-.2 2.55.85 4.35 1.25 1.9 3.2 2.1 1.7.05 3.25-1.85 1.5-1.6 1.65-4.2.25-2.55-.85-4.45-1.05-1.8-3-1.95m-.25 13.45q-1.45-.05-2.7.75-1 .9-1.15 2.15-.05 1.25.8 2.1 1.05 1 2.55 1.1 1.45.05 2.7-.85 1.05-.7 1.2-2 .05-1.25-.95-2.25-.85-.8-2.45-1m-1.4 20.8q1 0 1.7-.5.8-.4.9-1.2 0-.75-.65-1.3-.7-.6-1.7-.65-1-.05-1.7.4-.7.65-.8 1.3 0 .75.55 1.2.7.7 1.7.75m-2.75 28.1q1.35.95 3.3 1.05 1.95.15 3.3-.65 1.5-.85 1.6-2.05.2-1.25-1.15-2.2-1.25-.95-3.25-1-1.95-.15-3.4.65-1.6.8-1.6 2.15-.15 1.25 1.2 2.05m2.5 4.9q-2.2-.15-3.85 1.3-1.65 1.35-1.9 3.6-.15 2.15 1.2 3.5 1.6 1.8 3.8 1.95 2.1.05 3.8-1.55 1.75-1.25 2-3.4.2-2.25-1.3-3.75-1.4-1.6-3.75-1.65m23.6 13.75q-.2 1.3-.25 2.4-.9.1-1.6.65-1.15.6-1.35 1.65-.1 1 .95 1.7.95.9 2.6.9 1 .1 2-.3.2-.1.45-.25 0-.05.05-.05 1.2-.6 1.3-1.6-.05-.2-.05-.35.75-1.45 1-3.7.25-.85.25-1.7.2-.1.3-.2 1.6-.9 1.85-2.45.1-1.3-1.3-2.55-1.25-1.1-3.4-1.2-1.95-.05-3.6.85-1.5 1.05-1.7 2.45-.15 1.5 1.2 2.5.75.45 1.3.85.05.2 0 .4m-123.6-75.25q-1-.7-2.2-.85-1.45 0-2.4.65-.9.75-1 1.75-.15 1.15.65 1.85.95.85 2.2.9 1.3 0 2.35-.7 1-.55 1.15-1.75.15-1.05-.75-1.85m-8.65 17q-.15 1.15.8 1.75.95.8 2.35.8 1.4.15 2.45-.6 1-.55 1.2-1.5.15-1-.8-1.8-1-.75-2.4-.8-1.35-.1-2.55.5-.95.8-1.05 1.65m3.6 14.55q.35-2.2-.35-3.9-.5-1.55-1.55-1.55-1.15-.1-2.2 1.45-.85 1.45-1.2 3.75-.2 1.95.35 3.3-.45.2-.8.5-1.25 1.2-1.5 2.95-.25 1.85.95 3 1 1.35 2.6 1.45 1.7 0 2.9-1.25 1.35-.9 1.65-2.8.2-1.75-.95-3.05-.3-.4-.7-.7.7-1.25.8-3.15m-7.95 34.5q.1-1.5-.75-2.65-.7-1.05-2-1.2-1.4-.05-2.55 1.05-.9.95-1.1 2.5-.15 1.3.45 2.15-.4 1.05-.6 2.3-.3 2.1.05 3.45.5 1.8 1.4 2.05.85.15 1.65-1.3.8-1.2 1.15-3.4.05-.9.15-1.75.45-.3.85-.75 1.1-.85 1.3-2.45m-16.05 45.8q-1.7-.75-3.7-.35-2.05.8-2.95 2.2-1.1 1.55-.45 3.1.4 1.75 2.05 2.4 1.75.8 3.75.05 1.85-.55 2.85-1.95 1.15-1.6.65-3.2-.65-1.55-2.2-2.25m148.05-14.9q-.6-.8-1.85-1.2-1.3-.2-2.65.25-1.35.55-1.75 1.7-.2.35-.2.6-1.1 0-2.2.5-1.05.65-1.85 1.65-1.55-1.35-3.5-2.25-2.5-1-4.4-.55-1.75.45-2.05 2.05 0 1.6 1.7 3.6 1.7 1.85 4.05 2.8 2.65 1.05 4.45.6h.35q1.35.3 2.95-.6 1.75-.85 2.6-2.65.8-1.25.8-2.25.8 0 1.85-.45 1.2-.55 1.7-1.65.6-1.1 0-2.15m18.55-70.35q1.5.1 2.8-.9 1.1-.65 1.3-2.05.05-1.25-.85-2.35-1-.9-2.5-.9-1.4-.1-2.7.75-1.25.85-1.3 2.1-.1 1.45.85 2.25 1 1 2.4 1.1m-4.75 13.85q-.2 1.25.2 2.25 0 .05-.05.1-.95 1-1.15 2.65-.25 1.65.55 2.7.85 1.25 1.9 1.35 1.25.05 2.3-1.1.8-1.05 1.1-2.65-.1-.35 0-.6 1.3-.3 2.25-1.35 1.45-.9 1.7-2.85.2-1.8-1.1-3.25-.95-1.35-2.75-1.45-1.85-.05-3.4 1.15-1.4 1.3-1.55 3.05M967 48.55q-1.4-.1-2.5.35-1 .4-1.2 1.1 0 .7.85 1.2-.45.55-.55 1.25v.1q-2.4.05-4.3 1.7-1.85 1.65-1.95 4.15-.15 2.55 1.7 4.25 1.6 1.85 4.45 1.85 2.55.05 4.45-1.7 2-1.65 2.15-4.1.15-2.55-1.75-4.35-.4-.5-.8-.75.15-.4.25-.95.1-.45-.1-.8.75-.1 1.35-.4 1.1-.45 1.25-1.1.05-.7-.9-1.3-1-.5-2.4-.5m-14.9 62.05q1.65-.25 3-1.05 1.95-.95 2.25-2.75.05-1.5-1.6-2.85-1.6-1.25-4.15-1.4-2.6-.1-4.55.95-1.95 1.15-2.15 2.75-.25 1.7 1.4 2.85.55.35 1.05.7-.55.6-.8 1.45-.3 1.25.25 2.1.5.95 1.7 1.05 1.1 0 2.25-.8.95-.75 1.3-2 .05-.55.05-1m-7.6 30.5q.65-.4.6-.95.1-.6-.45-.9-.35-.45-.9-.5-.7 0-1.05.35-.6.35-.65.9 0 .5.4.95.4.45.95.45.7 0 1.1-.3m.25 29.8q-.1-1.15-1.35-2.05-1.3-.8-2.85-.85-1.55-.2-2.6.6-1.15.8-1 1.95.1 1.2 1.45 1.95.05.1.15.2-.2.7-.25 1.65-.3 1.55.2 2.6.65 1.1 1.55 1.25 1.05 0 1.75-1.1.9-.9 1.05-2.55v-1.2q.45-.2 1.05-.65 1.05-.55.85-1.8m-8.45 22.45q-.6.5-.65 1.2-.15.65.45 1.15.5.55 1.2.6.8 0 1.45-.5.7-.4.7-1.1.2-.55-.4-1.2-.6-.5-1.4-.55-.7 0-1.35.4m2.45 53.55q-1.75-.15-3 .5-1.2.8-1.35 1.9-.1 1.1 1 1.8 1.2.85 2.9.9 1.55.1 2.85-.55 1.25-.6 1.3-1.8.1-1.05-.95-1.9-1.15-.8-2.75-.85m1.5 10.3q.8-.35.8-.9.1-.55-.5-1-.5-.35-1.25-.35-.9-.1-1.45.25-.55.3-.65.9-.05.5.45 1 .5.45 1.25.45.85.05 1.35-.35m3.4 29.45q-.8.9-.8 2.5 0 1.65.95 2.95.45.85 1 1.45-.3 0-.6.05-1.9.35-2.8 1.35-.85 1.1-.2 2.05.7 1.2 2.35 1.7 1.8.45 3.7.05 1.75-.15 2.75-1.25.9-1 .25-2.15-.6-.9-2-1.45v-.1q.95-.65.85-2.3 0-1.6-.85-3.15-1-1.5-2.3-1.95-1.2-.5-2.3.25m23.2 39.4q0-1.5-1.35-2.8-1.15-1.05-3.2-1.3-1.8-.15-3.25.65-1.5 1.05-1.35 2.6-.15 1.5 1.1 2.55 1.6 1.3 3.3 1.55h.05q-.05.4-.05.75-.2 1.2.6 2.15.85 1 2.1 1.1 1.15.2 1.9-.6 1.1-.75 1.1-2.05.15-1.1-.8-2.15-.35-.45-.75-.7.45-.65.6-1.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.253;0.259;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1139.1 43.4q-2.5 1.75-2.2 4.25.35 2.5 3 4.35 2.75 1.95 6.2 2.25.05.85.45 2.05.9 2.45 2.8 3.85.25.2.45.35-.6 1-.45 2.3.2 2.15 2 3.7.25.25.6.5-.45 1.45.3 3.3.8 2.45 2.85 3.85.7.5 1.4.9-1.15.95-.95 2.1.1 1.45 1.5 2.45.55.4 1.15.6l.4 1.2q.45 1.95 1.6 3.1.25.25.55.45-.05.05-.05.1-.9.6-.85 1.4.05.9 1 1.4.95.75 2.25.8 1.15 0 1.9-.55.9-.6.8-1.45-.15-.85-1.15-1.35-.35-.35-.75-.45.25-.4.4-.95.35-1.4 0-3.35-.15-.4-.35-.8.95-.85.85-2.1-.15-1.3-1.55-2.3-.7-.5-1.55-.75.35-.45.7-1 .75-1.75-.05-4.2-.8-2-2.35-3.5.7-1 .55-2.55-.35-2.1-1.95-3.7-1-.8-2.1-1.2.3-1.4-.35-3.1-.75-2.3-2.3-3.85.85-1.25.75-2.95-.3-2.55-2.95-4.55-2.85-1.85-6.6-2.05-3.6-.05-5.95 1.45m16.95 78.85q-.3.15-.7.45-2.4 2.05-2.85 4.95-.6 3.1 1.1 4.9.15.35.6.75-2 1.5-2.3 3.6-.25 2.35 1.7 3.85.1.2.4.4-1.35 2.1-1.7 4.9-.4 3.55 1.05 5.95.7 1.2 1.55 1.85-.7 1.1-.85 2.4-.3 1.95.55 3.1.8 1.35 2.2 1.35 1.35.1 2.35-1.2 1.2-1.1 1.5-2.9.1-1.55-.45-2.7.65-.6 1.5-1.45 2.05-2.3 2.45-5.8.3-3.05-.85-5.25.1-.05.15-.05 2.2-1.5 2.5-3.8.2-2.25-1.55-4-.5-.35-.85-.65 2.1-1.75 2.65-4.6.25-1.6-.05-2.95 1.3-1.15 1.5-3 .15-1.7-.8-3.1.25-2.15-.55-3.8-.85-1.45-2.35-1.5-1.15-.15-2.4 1.35-.75.9-1.15 2-1.1.25-2.3 1.1-1.8 1.3-2.1 3.4.05.2.05.45m1.3 40.8q-1.2-.15-2.05.4-1 .55-1.1 1.4-.1.9.75 1.6.8.55 2.1.7 1.1.05 2-.6 1-.55 1.1-1.35.05-.85-.7-1.5-.85-.6-2.1-.65m-7.05 23q-1.85 1.8-2.15 4.6-.3 2.95 1.1 4.8 1.7 2.1 3.95 2.2 2.55.2 4.4-1.85 1.9-1.65 2.25-4.55.35-2.75-1.2-4.85-1.4-2.05-3.95-2.05-2.3-.25-4.4 1.7M991.5 18.65q-5.05-.2-7.55 3.45-5.45 1.3-5.65 4.45-.2 3.1 3 5.55 3.35 2.45 8.4 2.6 3.7.3 6.65-.9-1.55 1.25-1.75 2.9-.15 2.35 1.95 3.9 2.3 1.85 5.55 2 1.7.1 3.3-.3-.3.55-.35 1.25-.1 1.7.6 2.9.75 1.3 2.2 1.35 1.3.05 2.55-1.15.9-1.05 1.2-2.8.15-1.75-.55-2.95-.55-.65-1.25-.95.95-1.1 1.1-2.35.25-2.25-1.9-4-2.25-1.6-5.65-1.85-2.1-.05-3.95.45 3.05-1.95 3.4-4.9.45-3.3-2.9-5.85t-8.4-2.8m17.6 48.1q-.25 1.2-.05 2.55.35 2.35 1.75 3.95-.2 0-.5.05-2.6 1.75-2.9 4.05-.3 2.4 2 4.05 2.2 1.7 5.3 2.05-.5 1.4-.35 3.1.35 2.7 2.4 4.2.2.35.5.55-.3.1-.5.3-1.9 1-2.1 2.55-.05 1.75 1.55 2.8.55.5 1.2.8v1.5q.25 2.3 1.35 3.6l.55.55q-.05.05-.2.1-1.15.65-1.2 1.6-.15 1.1.8 1.75 1.05.75 2.55.95 1.45 0 2.6-.65 1.15-.6 1.3-1.7.1-.95-1-1.7-.3-.3-.85-.6.45-.3.75-.95.95-1.65.75-4 0-.55-.15-1 1.5-.9 1.7-2.4.15-1.65-1.35-2.8-.65-.45-1.45-.8.55-.45.95-1.15 1.25-1.85.95-4.55-.45-2.6-2.3-4.4-.05-.05-.05-.1 1.3-1.2 1.4-2.85.35-2.3-2-4.2-.8-.65-2-1.05 1.3-2 .9-4.7-.35-2.5-1.75-4.2 1.3-1.35 1.6-3.1.15-2.65-2.5-4.8-2.7-2.05-6.65-2.25-4.05-.1-7.15 1.65-3.05 1.65-3.35 4.45-.35 2.65 2.2 4.7 2.2 1.65 5.3 2.1m11.5 51.75q-2.35-.05-4.25.85-1.9 1.15-2.1 2.75-.05.65.2 1.3-.9.35-1.85.9-3.05 2.05-3.5 4.85-.6 3 1.65 5v.05q-2.35 1.6-2.7 3.8-.25 2.4 2.15 4.05.85.7 1.75 1.2-.35 2.15 1.3 3.6 1.6 1.6 3.8 1.7 2.55.2 4.3-1.35 1.95-1.25 2.15-3.4.05-.85-.05-1.6 1.8-1.4 2.05-3.4.25-2.3-2.05-4.25 2.45-1.7 3.1-4.5.55-2.9-1.5-5.25-.2-.05-.3-.1 1-.85 1.1-2.05.25-1.65-1.4-2.9-1.6-1.15-3.85-1.25m-11.7 47.35q-.3.15-.35.3-2.95 2.6-3.4 6.35-.4 3.8 1.95 6.3 1.9 2.25 4.4 2.95-.4.8-.6 1.75-.1 1.7.6 2.8.65 1.35 1.8 1.4 1.05 0 2-1.25 1.05-.95 1.2-2.8.15-1.1-.15-2 1.9-.6 3.55-2.2 2.9-2.3 3.4-6.1.4-3.7-1.95-6.55-.4-.45-.95-.9.5-.85.85-2 .2-1.9-.35-3.35.6-.95.8-2.15.15-1.75-1.25-3.05-1.55-1.35-3.8-1.45-2.2-.15-4.05 1.1-1.75 1.15-1.85 2.9-.15.9.1 1.7-1.5 1.55-1.85 3.65-.3 1.5-.1 2.6m3.2 29.7q-1.5-1.3-3.9-1.4-2.15-.05-3.95 1-1.8 1.2-1.9 3.05-.05.4 0 .7-.35 0-.55.3-2.1 1.35-2.3 3.55-.3 2.2 1.5 3.65 1.8 1.7 4.45 1.8 2.65.15 4.7-1.35 2.05-1.25 2.35-3.45.05-1.25-.35-2.3 1.1-1 1.2-2.35.15-1.8-1.25-3.2m116.3 82.25q-.6 3.15.75 5.35 1.45 2.65 3.85 2.9 2.55.35 4.55-1.75 2.05-1.7 2.55-4.9.05-.45.2-.9.15-.2.3-.3 2.15-1.65 2.5-4.45.35-2.55-1.45-4.6-1.9-1.95-4.7-2.05-2.8-.1-5.05 1.6-2.35 1.7-2.65 4.4-.1.9.05 1.75-.6 1.3-.9 2.95m-7 14q-.95.75-1.4 1.75-.7.1-1.15.35-3.35 1.85-5.35 5.25-.3.4-.4.95-.25-.05-.3-.15-3.05-1.25-4.95-.45-2.1.65-2.15 2.8.05 2.05 2.15 4.4 2.3 2.45 4.95 3.45 3.2 1.15 5.25.55 1.15-.35 1.55-1.25 1.15-.3 2.45-1.05 3.4-1.5 5.35-4.95.2-.45.35-.75 1.35-.4 2.45-1.4 2.25-1.55 2.45-4.35.35-2.6-1.45-4.55-1.8-2-4.7-2.15-2.8-.15-5.1 1.55m-122.45-75.85q-2.85 2-3.7 5-.65 2.1-.25 3.75-1.45 3.4-1.95 7.7-.5 4.25.05 7.3-.95 1.65-1.25 3.6-.4 3.2 1.6 5.3 2.05 2.5 5.25 2.7 3.1.2 5.65-2.15 2.45-1.85 2.8-5.1.2-1.7-.3-3.1 1.65-3.2 2.25-7.7.65-4.95-.6-8.65.95-1.3 1.45-2.9.75-2.4-.15-4.2.5-.8.65-1.65.3-1.85-1.35-3.25-1.4-1.3-3.7-1.35-2.25-.15-4.05 1-1.75 1.2-2 3v.35q-.2.05-.4.35m-1.3 49.8q0-.2.05-.45 1-2.7-.05-4.85-1-2.1-3.1-2.3-2.2-.35-4.35 1.4-1.5 1.25-2.35 2.9-1.15.4-2.2 1.05-2.4 1.85-2.75 4.5-.2 1.8.6 3.2-1.1 1.8-1.65 4.1-.55 3.95 1.05 6.45.8 1.2 1.5 2-.9.35-1.8 1.05-1.8 1.75-2.3 4.55-.45 2.8.85 4.75 1.25 2.3 3.3 2.55 2.35.3 4.2-1.6 1.8-1.4 2.25-4.35.55-2.75-.75-4.85-.15-.4-.45-.75 1.75-.45 3.35-2.05 2.55-2 3.1-5.9.4-2.3-.2-4.4 2-1.55 2.2-4.05.25-1.55-.5-2.95m-16.8 39.4q-2.2-.7-4.65-.05-2.4.85-3.65 2.5-.35.5-.6 1.2-2.55.75-3.85 2.45-.85 1.15-.9 2.35-2.35.65-3.65 2.45-1.35 1.6-.85 3.25-.25.05-.45.05-1.3.4-2.5.95v.05h-.05q-2.7 1.4-4.25 3.5-2.45 3.4-1.05 6.55 1.15 3.75 5.1 5.25 4.15 1.7 8.85.3 4.4-1 7-4.3 2.2-3.25 1.05-6.8-.65-1.45-1.85-2.65-.3-.2-.5-.25.1-.1.2-.1.2.15.3.35 2.25.5 4.65-.2 2.8-.45 4.3-2.4 1.4-1.8.75-3.85-.75-1.7-2.95-2.7-.1-.05-.45-.15h-.05q.25-.1.45-.3 1.15-.65 1.85-1.6 1.2-1.65.65-3.45-.8-1.55-2.9-2.4m-6.6 16.7q.2.15.3.35-.3-.2-.5-.25.1-.1.2-.1m175.6-99.45q.15-1.5-.5-2.75-.6-1.1-1.75-1.15-1.05-.05-2.1 1.1-.9.95-1.05 2.6v.15q-.95 1-1.9 2.9-1.7 3.9-2.4 9.55-.1 1.4-.2 2.55-1.85 2.2-2.15 5.35-.35 3.4 1.1 5.6 1.5 2.55 3.85 2.75 2.5.05 4.45-2.3.9-.8 1.35-1.8 1.1-.45 1.95-1.15 1.75-1.35 2.05-3.65.2-2.25-1.2-3.95-1.05-1.1-2.4-1.55.2-.65.2-1.4.7-5.65-.25-9.65-.05-.3-.05-.65.85-.95 1-2.55m-11.75 35.15q-.1.8.55 1.3.65.7 1.65.7.9.05 1.65-.55.75-.45.85-1.25.2-.75-.5-1.4-.55-.65-1.55-.65-1.05-.05-1.75.5-.75.5-.9 1.35"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.248;0.253;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M1159.45 41.3q-7.6-1.25-11.9 4.35l3.05 16.2q.8-3.55.8-6.35.1 2.1 1.45 4.65 1.35 3 5.65 6.15-3.85 8.75 1.65 16.3-1.85 1.6-1.75 4.35.05 2.7 2.45 3.8-2.15 17.6 2.3 34.65-7.25 17.85-2.35 31.1-5.35 5.3-1.65 11.1-2.85 4.15-3.25 7.9-.45 3.7 2.55 7.6-2.65 4.45-1.2 9.55-4.55 6.15-1.85 13.7-7.5 6.4-6.5 18.05-2.8 6.55-2.7 14.95-3.9 8.5-5.9 16-2.1 7.55-3.35 16.4-4.45 5.7-5.15 14.15-6.05-3.55-4.65-5.25.55-1.6.9-3.2l-11.75 12.65q.4 1.95.95 4.1 3.5 12.8 11.9 11.4 8.3-1.35 12.6-9.35.45-.4-1.45-.8 5.85-4.15 7.25-12.6 5.5-4.45 7.5-10.35.35-.9-1.45-1.8 7.15-16.05 7.2-31.9 6-7.75 6-15.65 3.75-7.75 1.1-15.85 5.9-3.55 3.5-11.15 1.85-4.45-.1-10.05 3.45-6.05 3.7-9.7.65-3.85-1.55-6.55 7.3-7.05.5-13.2 7.2-9.55 2.6-29.1 3.95-15.45 3.75-23.6-.2-8.05-3.6-11.65 2.05-7.85-2.35-10.55 2.45-13.15-.95-16.3 3.8-7.4-1.45-14.05-.55-8.15-12.5-10.1M1029.8 19.5q-6.3-12.95-15.45-14.3-9.2-1.55-20.45 9.7-4.55-.85-8.35 2.05l8.3 21.15q2.1-3.1 7.4-5l2.85-.2q1.05-4.85 9 .45-3.65 5.95 3.75 10.3-1.55 5.7-.25 11.05-2.9 2.2-2.8 3.9.4 5.4 4.5 11.25-5.75 6 1.25 14.2-5.6 8-.55 18.25-7.05 6.75.3 14.25-7.1 10.9-2 17.3-9.3 10.1-2.45 19.45-4.25 5-2.45 11.65-3 18.95-1.95 36.75-7.55 9-4.85 25.75-9.75 6.2-4 17.5-10.25 9.6-8.8 34.65-5.55 6.45-5 11.2-6.1 5.9-3.5 8.7-4.8 11.55-7.05 2.5-3 4-3 5.45-2.9-2.35-4.35-5.15l-16.45 10.3q1.25 6.5 9.75 9 5 6.45 14.95 6.1 9.85-.45 13.95-11.3 11.55-5.25 13.05-21.4 4.1-2.7 5.3-6.15 1.1-3.35-.7-7.55 9.5-17.2 8.85-33.7 8.2-7 5.15-16.05 9.95-13.05 5.55-29.05 11.45-26.7 4.75-47.45 6.35-10.25 1.75-20.25 6.8-7.75 2.65-16.55 5.5-6.7-.3-14.6 4.1-5.45-1.1-10.9 4.6-4.95-.35-10.1 9.25-8.35 1.3-17.15 7.75-5.85.05-11.25 3.25-2.9 2.7-6-1.3-7.7-7.1-13 .85-10-3.85-15.75"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.242;0.248;1" values="none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1169.15 67.8q1.25 1.75 2.25 5 2.4 7.75 3.3 24.05 1.8 31.1-3.25 74.6-4.9 43.6-13.45 74.1-4.45 15.95-8.55 23.5-2.25 3.95-4.25 5.65 0 .3.15.6-1.25.5-2.45.45-3.15-.1-5.45-3.85 4.35 18.9 12.7 19.3 11.4.5 23.35-33.9 11.9-34.3 17.55-83.5 5.45-49.15 1.35-84.3-4.15-35.25-15.6-35.7-7.15-.45-14.6 13.2 1.85-1.6 3.55-1.5 1.9.05 3.4 2.3M1000 48.5q1.9-1.85 3.75-1.65 1.35.05 2.6 1 2.1 2.05 3.7 7.4 1.75 9 1.95 27.8.4 36-5.25 86.6-5.75 50.55-14.05 86.1-4.35 18.65-8.3 27.45-2.9 5.45-5.55 7.05-1.25.75-2.45.75-2.95-.2-4.9-4.6 3.65 21.9 11.35 22.25 10.4.6 22.35-39.5 12.15-39.95 18.55-97 6.4-57.2 3.35-97.9-2.95-40.7-13.4-41.25-6.6-.25-13.7 15.5"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.237;0.242;1" values="none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1134.65 121.8q2.65.05 4.6 3.7 1.9 3.95 3.15 11.9 2.35 15.35-.1 36.7-2.4 21.35-8.05 36.35-3.05 7.85-5.85 11.45-2.65 3.3-5.3 3.15-1.9-.1-3.4-2 3 9.35 8 9.65 7 .3 13.8-16.5 6.95-16.8 9.7-40.95 2.65-24.05-.4-41.55-3-17.2-10-17.55-4.3-.3-8.65 6.45 1.2-.8 2.5-.8m92.15-16q3.25.15 5.75 5.05 2.45 5.4 3.8 16.6 2.75 21.4-.7 51.25-3.25 29.9-10.65 50.7-3.95 10.85-7.65 16-3.5 4.6-6.8 4.4-2.3-.05-4.25-2.65 3.7 13.05 10.1 13.4 8.9.35 17.75-23.2 9-23.4 12.75-57.25 3.85-33.65.3-57.8-3.7-24.1-12.6-24.5-5.55-.35-11.15 8.95 1.7-1.05 3.35-.95"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.231;0.237;1" values="none;inline;none;none"/></g><g display="none"><path fill="#154555" d="M1331.9 133.35q-3.85-20.9-12.75-21.3-5.6-.3-11.05 7.7 1.5-.9 3.25-.8 3.25.15 5.85 4.5 2.5 4.55 4.15 14.3 2.95 18.5.05 44.35-2.85 25.8-10.05 43.8-3.65 9.5-7.3 13.8-3.4 4.1-6.6 3.9-2.6-.15-4.4-2.45 3.75 11.35 10.25 11.65 8.9.45 17.55-19.85 8.65-20.35 11.9-49.45 3.2-29.2-.85-50.15m-58.6-4.65q2.65.2 4.7 3.35 2 3.4 3.25 10.6 2.5 13.65.3 32.8-2.15 19.05-7.55 32.4-2.85 6.85-5.75 10.2-2.65 2.9-5.2 2.75-2-.1-3.55-1.75 3.15 8.3 8.15 8.65 7.05.25 13.8-14.7 6.5-15 8.95-36.6 2.55-21.4-.75-36.95-3.3-15.45-10.3-15.85-4.35-.1-8.6 5.7 1.25-.65 2.55-.6"/><animate attributeName="display" repeatCount="indefinite" dur="14.958s" keyTimes="0;0.226;0.231;1" values="none;inline;none;none"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="basic" width="176" height="129" xmlns="http://www.w3.org/2000/svg"><defs><symbol id="a" overflow="visible"><path fill="#FF5B80" d="M57.2 29.25L45.35 13.3q-4.8-5.6-8.4.6L26.9 31.5l30.3-2.25"/><path fill="#317C99" d="M10.8 59.8l-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75L34.7 70l39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7L57.2 29.25 26.9 31.5 10.8 59.8"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M41 9.75l.15-.35-.6-7.75m.6 7.75l4.05-6.85M41 9.75l-5.05-6.5"/></symbol></defs><path fill="#FFF" d="M-.05-.15V129.2h176.1V-.15H-.05"/><path fill="#317C99" d="M100.7 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M110.1 141.55H98.4l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6"/><path fill="#317C99" d="M75.5 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M73.5 160.7q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6H73.2l.3 19.15"/><g display="none"><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3m25 16.75q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.599;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M128.1 59.85q9.5-2.9 14.7-1.35 5.7 1.75 3.2 8.1-2.9 7.3-16.3 18.9m-1.6-25.65q-9.7 2.95-18.05 9.05"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M128.1 59.85q9.5-2.9 14.7-1.35 5.7 1.75 3.2 8.1-2.9 7.3-16.3 18.9m-1.6-25.65q-9.7 2.95-18.05 9.05"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M128.1 59.85q9.5-2.9 14.7-1.35 5.7 1.75 3.2 8.1-2.9 7.3-16.3 18.9m-1.6-25.65q-9.7 2.95-18.05 9.05m25.15 16.45q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.587;0.599;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.8 107.55q1.85 14.55.8 23.65m-.8-23.65q-1.95-15.6-6.3-29.55m7.1 54.05q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.575;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.9 105.4q1.85 15 .8 24.35m-.8-24.35q-1.95-16.05-6.25-30.4m6.95 55.85q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.563;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M123.25 111.05q1.85 14.35.8 23.35m-.8-23.35q-2-15.45-6.4-29.2m7.05 52.6q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.8 110.05q1.85 14.55.8 23.65m-.8-23.65q-1.95-15.6-6.3-29.55m6.8 53.35q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.551;0.557;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.8 108.6q1.85 14.55.8 23.65m-.8-23.65q-1.95-15.6-6.3-29.55m6.8 53.9q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.299;0.551;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.8 109.05q1.85 14.55.8 23.65m-.8-23.65q-1.95-15.6-6.3-29.55m6.8 53.8q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.293;0.299;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.8 111.7q1.85 15.6.8 25.35m-.8-25.35q-1.95-16.7-6.3-31.65m6.8 57.45q3.2 1.45 5 4.75m-5-4.75q1.35 3.25.6 6.5m-.6-6.5q-1.45 3.15-3.25 4.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.287;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M121.1 112.7q3.2 15.9 5.9 24.9m-5.9-24.9q-3.25-15.9-4.65-31.55m8.4 62.05q1.55-1.75 2.3-5.1 3.45.8 5.85 3.65m-5.85-3.65q1.95 2.9 1.9 6.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 64.25q9.3-.6 14.4 3.75 5.6 4.85 3.15 13.3-2.85 9.65-16 21.55m-1.55-38.6q-9.5.45-17.7 6.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 59.95q9.3-1.35 14.4 1.6 5.6 3.25 3.15 10.2-2.85 7.85-16 18.5m-1.55-30.3q-9.5 1.3-17.7 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.263;0.275;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 53.1q9.3-3.8 14.4-2.65 5.6 1.3 3.15 8.1-2.85 7.75-16 20.8M122.6 53.1q-9.5 3.8-17.7 10.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 54.35Q131.9 51 137 52.4q5.6 1.6 3.15 8.25-2.85 7.6-16 20.05m-1.55-26.35q-9.5 3.35-17.7 9.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 55.8q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 56.65q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 56.8q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.06;0.114;0.15;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 57.15q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;0.06;0.066;0.108;0.114;0.15;0.156;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 57.55q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;0.066;0.072;0.102;0.108;0.156;0.162;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.6 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.072;0.102;0.162;0.204;1" values="inline;none;inline;none;inline;none;none"/></g><g display="none"><use xlink:href="#a" transform="translate(42.55 23.3)"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.964;1" values="none;inline;inline"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M99.95 52.45L88.15 36.5q-4.8-5.6-8.4.55l-10.1 17.6 30.3-2.2"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M81.65 25.4l2.2 7.95.25-.3 2.45-7.4m-2.45 7.4l6.4-4.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.958;0.964;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M99.95 52.5L88 38.95q-4.85-4.7-8.4.65l-9.9 15.1 30.25-2.2"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M91.9 33.6l-7.1 4.05.3.2 7.75.5m-7.75-.5l6.2 5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.946;0.958;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M77.2 29.9q-6.85-2.7-7.15 4.45l-.55 20.3L95.15 38.4 77.2 29.9"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M67.35 37.55l3.95-7.2h-.35L64 33.95m6.95-3.6l-7.9-1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.94;0.946;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M51.55 30.25l-7.2 18.55q-2.1 7.05 5.05 6.8l20.2-.9-18.05-24.45"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M52.55 57.55l-7.35-3.8.05.45 3.8 6.75m-3.8-6.75l-.85 7.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.934;0.94;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M46.3 65.85q2.7 6.85 8.1 2.2l15.3-13.3-29.35-7.85 5.95 18.95"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M47.15 78l2-7.5-6.1 5.1m6.1-5.1l.25-.3 2.65 7.85"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.695;0.934;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M46.3 65.85q2.7 6.85 8.1 2.2l15.3-13.3-29.35-7.85 5.95 18.95"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.45 74.5l-6.8-4.6v.4l2.95 7.15m-2.95-7.15l-1.7 7.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.683;0.695;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M46.3 65.85q2.7 6.85 8.1 2.2l15.3-13.3-29.35-7.85 5.95 18.95"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M41.95 68.8l7.75.45-6.2-4.95m6.2 4.95l.35.15-7.15 4.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.677;0.683;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M52.1 29.95l-7.6 18.4q-2.25 7 4.9 6.85l20.25-.45-17.55-24.8"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M45.15 53.6v-.4l-3.7-6.85m3.7 6.85l.95-7.85m-.95 8.25l-7.3-3.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.659;0.677;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M68.25 28.75q-7.45-.1-5.1 6.7L69.7 54.6 88 30.35l-19.75-1.6"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M61.8 22.85L63 31l.3-.25 3.3-7m-3.3 7l6.9-3.95"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.647;0.659;1" values="none;inline;none;none"/></g><g display="none"><path fill="#317C99" d="M119.2 78.35L99.95 52.4l-30.3 2.25-16.1 28.3-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75l22.05-1.6 39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7"/><path fill="#FF5B80" d="M99.95 52.4L88.1 36.45q-4.8-5.6-8.4.6l-10.05 17.6 30.3-2.25"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M84 32.8l.25-.3 1.5-7.6m-1.5 7.6L90 27m-6 5.8l-3.1-7.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.623;0.647;1" values="none;inline;none;none"/></g><g><use xlink:href="#a" transform="translate(42.55 23.3)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="6.958s" keyTimes="0;1" values="0,0;0,0" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.013000000000000001;0.018;0.019;0.024;0.025;0.06;0.061;0.066;0.067;0.072;0.073;0.102;0.103;0.108;0.109;0.114;0.115;0.15;0.151;0.156;0.157;0.162;0.163;0.203;0.204;0.213;0.215;0.216;1" values="87.319,58.774;87.319,58.774;87.318,58.024;87.318,58.024;87.376,57.624;87.376,57.624;87.371,57.274;87.371,57.274;87.376,57.624;87.376,57.624;87.318,58.024;87.318,58.024;87.319,58.774;87.319,58.774;87.318,58.024;87.318,58.024;87.376,57.624;87.376,57.624;87.371,57.274;87.371,57.274;87.376,57.624;87.376,57.624;87.318,58.024;87.318,58.024;87.319,58.774;87.319,58.774;87.318,57.124;87.318,57.124;87.376,56.274;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.221;0.222;0.227;0.228;0.263;0.264;0.275;0.276;0.281;0.28200000000000003;0.293;0.294;0.551;0.552;0.557;0.558;0.563;0.564;0.575;0.576;0.587;0.588;0.599;0.6;1" values="0;87.376,56.274;87.376,56.274;87.371,55.474;87.371,55.474;87.371,55.074;87.371,55.074;87.376,56.274;87.376,56.274;87.319,58.774;87.319,58.774;87.319,59.174;87.319,59.174;87.319,58.774;87.319,58.774;87.319,59.774;87.319,59.774;87.362,61.323;87.362,61.323;87.692,53.678;87.692,53.678;87.319,57.274;87.319,57.274;87.219,60.295;87.219,60.295;87.319,58.774;87.319,58.774" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.025;0.06;0.061;0.114;0.115;0.15;0.151;0.215;0.216;1" values="-0.128,0,0;-0.128,0,0;-0.127,0,0;-0.127,0,0;-0.128,0,0;-0.128,0,0;-0.127,0,0;-0.127,0,0;-0.128,0,0;-0.128,0,0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="rotate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.221;0.222;0.263;0.264;0.557;0.558;0.563;0.564;0.575;0.576;0.587;0.588;0.599;0.6;1" values="0;-0.128,0,0;-0.128,0,0;-0.127,0,0;-0.127,0,0;-0.128,0,0;-0.128,0,0;-0.13,0,0;-0.13,0,0;-0.122,0,0;-0.122,0,0;-0.128,0,0;-0.128,0,0;-0.134,0,0;-0.134,0,0;-0.128,0,0;-0.128,0,0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewX" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.025;0.06;0.061;0.114;0.115;0.15;0.151;0.215;0.216;1" values="0;0;0.001;0.001;0;0;0.001;0.001;0;0;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewX" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.221;0.222;0.263;0.264;0.281;0.28200000000000003;0.293;0.294;1" values="0;0;0.001;0.001;0;0;-0.001;-0.001;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="skewY" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.558;0.563;0.564;0.575;0.576;0.587;0.588;0.599;0.6;1" values="0;0;0.006;0.006;-0.01;-0.01;0;0;0.012;0.012;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.013000000000000001;0.018;0.019;0.024;0.025;0.06;0.061;0.066;0.067;0.072;0.073;0.102;0.103;0.108;0.109;0.114;0.115;0.15;0.151;0.156;0.157;0.162;0.163;0.203;0.204;0.213;0.215;0.216;1" values="1,1;1,1;1.018,1;1.018,1;1.026,1;1.026,1;1.037,1;1.037,1;1.026,1;1.026,1;1.018,1;1.018,1;1,1;1,1;1.018,1;1.018,1;1.026,1;1.026,1;1.037,1;1.037,1;1.026,1;1.026,1;1.018,1;1.018,1;1,1;1,1;1.018,1;1.018,1;1.026,1;1;1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="scale" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.221;0.222;0.263;0.264;0.275;0.276;0.281;0.28200000000000003;0.293;0.294;0.557;0.558;0.563;0.564;0.575;0.576;0.587;0.588;0.599;0.6;1" values="1;1.026,1;1.026,1;1.037,1;1.037,1;1.026,1;1.026,1;1,1;1,1;1,0.989;1,0.989;1,1;1,1;1.013,0.988;1.013,0.988;0.992,1.029;0.992,1.029;1,1;1,1;1.02,0.972;1.02,0.972;1,1;1,1" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.019;0.066;0.067;0.108;0.109;0.156;0.157;0.213;0.215;0.216;1" values="-44.7,-35.6;-44.7,-35.6;-44.75,-35.6;-44.75,-35.6;-44.7,-35.6;-44.7,-35.6;-44.75,-35.6;-44.75,-35.6;-44.7,-35.6;-44.7,-35.6;-44.75,-35.6;0;0" calcMode="discrete"/><animateTransform attributeName="transform" additive="sum" type="translate" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.275;0.276;0.557;0.558;0.563;0.564;0.575;0.576;0.587;0.588;0.599;0.6;1" values="0;-44.75,-35.6;-44.75,-35.6;-44.7,-35.6;-44.7,-35.6;-44.75,-35.55;-44.75,-35.55;-44.7,-35.55;-44.7,-35.55;-44.7,-35.6;-44.7,-35.6;-44.65,-35.55;-44.65,-35.55;-44.7,-35.6;-44.7,-35.6" calcMode="discrete"/></use><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.623;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M62.9 43.55l-.65-.1M67.6 32.4l-.4-.5m36.9 5.2l.55-.35m-10.05-7.1l.1-.6m-11.8-.85l-.1-.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.701;0.707;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M65.7 44.5l-2.4-.3m6.5-9.8l-1.4-1.95m33.7 6.85l1.95-1.4m-10.4-5.4l.25-2.4m-11.1 1.1l-.45-2.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.695;0.701;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M63.35 44.25l4.2.8m.85-12.6l2.75 3.25m29.65 4.95l3.2-2.7M93.9 30.1l-.85 4.15m-10.7-5.4l.4 4.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.689;0.695;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M64.75 44.6l4.6.95m.1-12.05L72.5 37m26.95 5l3.5-3.05M93.5 31.5l-1 4.55m-10.15-5.8l.4 4.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.683;0.689;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#FF5B80" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M69.35 45.55l-1.85-.25m5-8.3l-1.1-1.4M99.45 42l1.45-1.15m-8.4-4.8l.25-1.8m-10 .7l-.3-1.85"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.677;0.683;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M127.25 118.9l6.3-16.35-3.05-3.15-6.25 16.4 3 3.1"/><path fill="#999" d="M132.9 92.15q-.95-.4-1.7-.35-1.85.15-2.65 2.4-.9 1.95-.15 4.95.65 2.7 2.45 4.6 1.75 1.85 3.6 1.65 1.8-.15 2.6-2.3.9-2.15.05-4.95-.15-.95-.45-1.7l-1.15 3.3-4-4.2 1.4-3.4m-10.25 25.35l3.9 4.3-1.25 3.15q.55 0 1.1-.05 1.9 0 2.7-2.25.8-2.2.1-5.05-.65-2.7-2.4-4.5-1.9-1.95-3.65-1.8-1.75.15-2.65 2.4-.75 2.15-.05 4.95.3 1.05.85 2.3l1.35-3.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M126.15 109.85q-2.9-3.15-2.1-6.25 3.55.9 5.7.4m-5.7-.4q1.7 3.2 5 4.05"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M133.55 89.4l-3.05-2.3-6.25 13.9 3 2.15 6.3-13.75"/><path fill="#999" d="M137.1 85.95q-.15-.7-.45-1.3l-1.15 2.75-4-2.95 1.4-2.85q-.95-.2-1.7-.15-1.85.35-2.65 2.25-.9 1.65-.15 3.95.65 2.15 2.45 3.5 1.75 1.3 3.6 1 1.8-.35 2.6-2.2.9-1.75.05-4m-14.45 17.15l3.9 3-1.25 2.65q.55-.05 1.1-.15 1.9-.2 2.7-2.1.8-1.8.1-4-.65-2.15-2.4-3.45-1.9-1.35-3.65-1.05-1.75.3-2.65 2.2-.75 1.85-.05 3.95.3.85.85 1.8l1.35-2.85"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M126.95 96.45q-3.35-2.75-3-5.95 3.65.4 5.7-.35m-5.7.35q2.15 2.95 5.55 3.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.263;0.275;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M124.25 88l3 1.05 6.3-13.9L130.5 74l-6.25 14"/><path fill="#999" d="M137.1 71.15q-.15-.6-.45-1.05l-1.15 2.75-4-1.5 1.4-2.9q-.95.1-1.7.4-1.85.8-2.65 2.65-.9 1.75-.15 3.6.65 1.7 2.45 2.35 1.75.65 3.6-.15 1.8-.8 2.6-2.6.9-1.85.05-3.55m-16.6 17.2q-.75 1.85-.05 3.5.3.7.85 1.35l1.35-2.9 3.9 1.55-1.25 2.7q.55-.2 1.1-.45 1.9-.7 2.7-2.6.8-1.85.1-3.6-.65-1.7-2.4-2.35-1.9-.65-3.65.15-1.75.75-2.65 2.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.8 85.2q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M133.55 77.1l-3.05-1.3-6.25 13.7 3 1.15 6.3-13.55"/><path fill="#999" d="M137.1 73.25q-.15-.6-.45-1.05l-1.15 2.7-4-1.7 1.4-2.85q-.95.05-1.7.3-1.85.75-2.65 2.55-.9 1.7-.15 3.6.65 1.7 2.45 2.5 1.75.7 3.6 0 1.8-.7 2.6-2.5.9-1.8.05-3.55m-16.6 16.4q-.75 1.8-.05 3.5.3.7.85 1.4l1.35-2.85 3.9 1.75-1.25 2.65 1.1-.4q1.9-.6 2.7-2.45.8-1.85.1-3.6-.65-1.75-2.4-2.45-1.9-.8-3.65-.1-1.75.7-2.65 2.55"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.8 86.65q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 77.65l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 72.3q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8m-12.4 18.85q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.8 87.95q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 78.5l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.15q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8M120.5 92q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.8 88.7q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 79l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.65q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8M120.5 92.5q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.35q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.15;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 78.65l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.3q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8m-12.4 18.85q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 88.8q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.114;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 79l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.65q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8M120.5 92.5q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.2q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.108;0.114;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 79.4l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M136.65 76.05l-1.15 2.65-4-1.85 1.4-2.8q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05M120.5 92.9q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.65q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.102;0.108;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 80.15l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M137.1 77.85q-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55m-16.6 15.8q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 90.6q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.072;0.102;0.162;0.204;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 78.65l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.3q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8m-12.4 18.85q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.25q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.06;1" values="none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 79l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M132.9 73.65q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8M120.5 92.5q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.65q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;0.06;0.066;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#999" d="M130.5 79.4l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M136.65 76.05l-1.15 2.65-4-1.85 1.4-2.8q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55-.15-.6-.45-1.05M120.5 92.9q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 89.95q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;0.066;0.072;0.156;0.162;1" values="none;inline;none;inline;none;inline;none;none"/></g><g><path fill="#999" d="M130.5 80.15l-6.25 13.45 3 1.3 6.3-13.35-3.05-1.4"/><path fill="#999" d="M137.1 77.85q-.15-.6-.45-1.05l-1.15 2.65-4-1.85 1.4-2.8q-.95 0-1.7.25-1.85.65-2.65 2.45-.9 1.65-.15 3.55.65 1.75 2.45 2.6 1.75.8 3.6.15 1.8-.65 2.6-2.4.9-1.75.05-3.55m-16.6 15.8q-.75 1.75-.05 3.5.3.7.85 1.4l1.35-2.8 3.9 1.9-1.25 2.6q.55-.15 1.1-.35 1.9-.55 2.7-2.35.8-1.8.1-3.6-.65-1.75-2.4-2.55-1.9-.85-3.65-.2-1.75.6-2.65 2.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M127.6 90.45q-3.65-2.3-3.7-5.55 3.7-.05 5.6-1m-5.6 1q2.5 2.7 5.9 2.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;1" values="inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M70.9 81.85l8.2 5.45q.3-.25.55-.65 1.35-2.1 1.1-4.35-.3-2.3-1.9-3.4-1.75-1.15-3.95-.5-2.2.65-3.55 2.75-.25.4-.45.7"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M86.85 87.05q-2.15.7-4.7.7-5.1 0-8.7-2.8-3.6-2.75-3.6-6.7 0-.6.1-1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.599;1" values="none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M70.5 82.75l8.35 5.3q.3-.25.55-.65 1.4-2.05 1.1-4.2-.3-2.25-1.9-3.3-1.8-1.15-4.05-.5-2.25.65-3.6 2.65-.25.4-.45.7"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M86.75 87.8q-2.2.7-4.8.7-5.2 0-8.85-2.75-3.7-2.65-3.7-6.5 0-.6.1-1.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.587;0.599;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M86 83.45q-.55-2-2.15-2.75-1.8-.8-3.75.1-1.95.85-2.95 2.85l-.3.7 8.25 3.8q.25-.3.4-.7 1.05-2.05.5-4"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M91.35 86.3q-2 .55-4.3.55-5.2 0-8.85-2.75-1.45-1.05-2.3-2.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.575;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M93.5 82.2q-2.2.7-4.8.7-2 0-3.8-.4-.9-.25-1.7-.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.563;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.7 87.85q-1.95.5-4.15.5-2 0-3.8-.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.45 85.3l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.551;0.557;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.45 84.3l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.293;0.551;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.45 84.65l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.45 84.25l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" d="M94.1 79.3l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="7" stroke-linecap="round" stroke-linejoin="round" d="M94.1 79.7l.55 3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round" d="M94.25 81.2l.4 2.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;0.263;0.275;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" d="M94.4 82.65l.25 1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.4 82.8l.25 1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.06;0.114;0.15;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.4 83.15l.25 1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;0.06;0.066;0.108;0.114;0.15;0.156;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.4 83.55l.25 1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;0.066;0.072;0.102;0.108;0.156;0.162;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.4 84.3l.25 1.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.072;0.102;0.162;0.204;1" values="inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M121.5 90.7q.2.2.45.2.3 0 .45-.2.2-.2.2-.5 0-.25-.2-.45-.15-.2-.45-.2-.25 0-.45.2t-.2.45q0 .3.2.5m-3.3 16.6q-.35-.25-.75-.25t-.7.25q-.35.35-.35.75 0 .45.35.7.3.35.7.35.4 0 .75-.35.3-.25.3-.7 0-.4-.3-.75m9.55-6.55q-.15-.15-.35-.15-.2 0-.35.15-.15.15-.15.35 0 .15.15.3t.35.15q.2 0 .35-.15.15-.15.15-.3 0-.2-.15-.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.329;0.341;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M119.55 92.2q0 .5.35.9.4.35.9.35.55 0 .9-.35.4-.4.4-.9 0-.55-.4-.9-.35-.4-.9-.4-.5 0-.9.4-.35.35-.35.9m-3.85 13.95q.65.65 1.55.65.85 0 1.5-.65.65-.6.65-1.5t-.65-1.55q-.65-.6-1.5-.6-.9 0-1.55.6-.6.65-.6 1.55t.6 1.5m10-7.7q-.5-.45-1.15-.45-.65 0-1.15.45-.45.45-.45 1.15 0 .65.45 1.1.5.5 1.15.5.65 0 1.15-.5.45-.45.45-1.1 0-.7-.45-1.15m-11.95-1.55q.3.3.7.3.45 0 .7-.3.35-.25.35-.7 0-.4-.35-.7-.25-.3-.7-.3-.4 0-.7.3-.3.3-.3.7 0 .45.3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.317;0.329;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M119.3 91.2q-.55-.6-1.4-.6-.8 0-1.4.6-.6.6-.6 1.4 0 .85.6 1.4.6.6 1.4.6.85 0 1.4-.6.6-.55.6-1.4 0-.8-.6-1.4m-1.6 7.75q-1-.95-2.4-.95t-2.4.95q-1 1-1 2.45 0 1.4 1 2.35 1 1.05 2.4 1.05t2.4-1.05q1-.95 1-2.35 0-1.45-1-2.45m1.75-3.85q-.7.75-.7 1.8 0 1 .7 1.7.75.8 1.8.8 1 0 1.75-.8.75-.7.75-1.7 0-1.05-.75-1.8-.75-.7-1.75-.7-1.05 0-1.8.7m-4.55 0q0-.6-.5-1.1-.4-.45-1.1-.45-.6 0-1.1.45-.45.5-.45 1.1 0 .7.45 1.1.5.5 1.1.5.7 0 1.1-.5.5-.4.5-1.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.305;0.317;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M114.45 92.95q0 1.3.9 2.2.95.95 2.25.95t2.2-.95q.95-.9.95-2.2 0-1.3-.95-2.25-.9-.9-2.2-.9-1.3 0-2.25.9-.9.95-.9 2.25m3.85 4.8q-.9-.9-2.2-.9-1.3 0-2.25.9-.9.95-.9 2.25t.9 2.2q.95.95 2.25.95t2.2-.95q.95-.9.95-2.2 0-1.3-.95-2.25"/><path fill="#FF5B80" fill-opacity=".498" d="M119.3 93.55q-1.3 0-2.25.9-.9.95-.9 2.25t.9 2.2q.95.95 2.25.95t2.2-.95q.95-.9.95-2.2 0-1.3-.95-2.25-.9-.9-2.2-.9"/><path fill="#FF5B80" fill-opacity=".498" d="M116.1 91.35q-.9-.9-2.2-.9-1.3 0-2.25.9-.9.95-.9 2.25t.9 2.2q.95.95 2.25.95t2.2-.95q.95-.9.95-2.2 0-1.3-.95-2.25"/><path fill="#FF5B80" fill-opacity=".498" d="M112.35 94.55q-1.3 0-2.25.9-.9.95-.9 2.25t.9 2.2q.95.95 2.25.95t2.2-.95q.95-.9.95-2.2 0-1.3-.95-2.25-.9-.9-2.2-.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.293;0.305;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FC5A7E" fill-opacity=".498" d="M107.55 93.25q-1.1.85-1.2 2.15-.15 1.3.8 2.25.9 1.05 2.3 1.2.3.05.65 0 .15.7.7 1.3.85 1 2.25 1.1 1.4.15 2.5-.65 1.05-.85 1.2-2.1.05-.4 0-.7 1-.1 1.9-.75 1.1-.8 1.2-2.1.15-1.3-.8-2.35-.5-.55-1.1-.8l.1-.6q.1-1.3-.8-2.35-.9-1-2.3-1.15-1.4-.1-2.5.7l-.15.15q-.3-.05-.65-.1-1.4-.1-2.5.7-1.1.85-1.2 2.15-.1.8.3 1.55-.35.15-.7.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FC5A7E" fill-opacity=".498" d="M103.7 95.75q.9 1.05 2.3 1.2.3.05.65 0 .15.7.7 1.3.85 1 2.25 1.1 1.4.15 2.5-.65 1.05-.85 1.2-2.1.05-.4 0-.7 1-.1 1.9-.75 1.1-.8 1.2-2.1.15-1.3-.8-2.35-.5-.55-1.1-.8l.1-.6q.1-1.3-.8-2.35-.9-1-2.3-1.15-1.4-.1-2.5.7l-.15.15q-.3-.05-.65-.1-1.4-.1-2.5.7-1.1.85-1.2 2.15-.1.8.3 1.55-.35.15-.7.4-1.1.85-1.2 2.15-.15 1.3.8 2.25"/><path fill="#FC5A7E" fill-opacity=".498" d="M98.4 87.85l5.8 5 2.1-4-7.9-1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FC5A7E" fill-opacity=".498" d="M97.65 86.8q-.1.95.6 1.6.65.8 1.65.9.2.05.5 0 .1.5.5.95.6.7 1.6.8 1.05.1 1.85-.5.75-.6.85-1.5.05-.3 0-.5.75-.1 1.4-.55.8-.6.85-1.55.1-.95-.55-1.7-.4-.4-.8-.6 0-.2.05-.4.1-.95-.55-1.7-.7-.75-1.7-.85-1-.1-1.8.5-.1.05-.1.1-.25-.05-.5-.05-1-.1-1.8.5t-.9 1.55q-.05.6.25 1.15-.25.1-.55.25-.8.65-.85 1.6"/><path fill="#FC5A7E" fill-opacity=".498" d="M100.1 83.4l-5.7-.7 4.2 3.6 1.5-2.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.269;0.275;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M100.3 60l-8.6 1.35m-16.4 2.7l9.85-1.55"/><path fill="#0E2D38" d="M94.35 64.55q.75 1.05 1.95 1.2 1.2.2 2.15-.6 1-.6 1.2-1.85.15-1.2-.6-2.25-.7-.9-1.9-1.1-1.2-.15-2.2.5-.95.8-1.1 2-.2 1.25.5 2.1m-12.6 3.3q1.05-.6 1.3-1.85.25-1.1-.4-2.2-.6-1-1.7-1.35-1.25-.2-2.25.45-1.1.65-1.3 1.75-.35 1.2.3 2.15.65 1.15 1.85 1.35 1.15.35 2.2-.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.97;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M100.3 61.5l-8.6 1.35m-16.4 2.7L85.15 64"/><path fill="#0E2D38" d="M98.45 65.15q1-.6 1.2-1.85.1-.85-.25-1.65l-5.55.9q-.2 1.15.5 2 .75 1.05 1.95 1.2 1.2.2 2.15-.6m-16.7 2.7q1.05-.6 1.3-1.85.2-.85-.1-1.65l-5.65.9q-.1.85.4 1.55.65 1.15 1.85 1.35 1.15.35 2.2-.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.958;0.97;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M101.2 59.3q.05.25.15.45.85 1.85.05 3.35-.6 1.3-2.6 1.45-2 .05-4.05-1.3-2.1-1.35-2.85-3.2m-8.65.45l.1.3q.7 1.95-.25 3.3-.85 1.4-2.75 1.4-1.95 0-4-1.4-1.9-1.4-2.6-3.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.952;0.958;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.65 58.8q.05.35.15.65.7 2.65-.05 4.65-.6 1.8-2.35 1.9-1.8 0-3.6-1.95-1.8-1.9-2.45-4.5-.1-.15-.1-.25m-7.6.6q0 .2.05.4.6 2.7-.25 4.55-.8 1.85-2.5 1.8-1.75-.1-3.5-2.1-1.65-2-2.25-4.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.599;0.952;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.8 60.35q.05.35.15.65.7 2.55-.05 4.5-.6 1.75-2.4 1.85-1.85 0-3.65-1.9-1.85-1.85-2.5-4.35-.1-.15-.1-.25m-7.75.55q0 .2.05.4.6 2.65-.25 4.45-.85 1.8-2.55 1.75-1.8-.1-3.6-2.05-1.65-1.95-2.3-4.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.587;0.599;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.8 57.95q.05.35.15.65.7 2.55-.05 4.5-.6 1.75-2.4 1.85-1.85 0-3.65-1.9-1.85-1.85-2.5-4.35-.1-.15-.1-.25M83.5 59q0 .2.05.4.6 2.65-.25 4.45-.85 1.8-2.55 1.75-1.8-.1-3.6-2.05-1.65-1.95-2.3-4.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.575;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M100.1 54.35q.05.35.15.65.7 2.55-.05 4.5-.6 1.75-2.4 1.85-1.85 0-3.65-1.9-1.85-1.85-2.5-4.35-.1-.15-.1-.25m-7.75.55q0 .2.05.4.6 2.65-.25 4.45-.85 1.8-2.55 1.75-1.8-.1-3.6-2.05-1.65-1.95-2.3-4.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.563;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.3 68q.9-.75.95-1.85l-5.6-1.55q-.35.6-.35 1.4 0 1.2.8 2 .95.9 2.15.9 1.25 0 2.05-.9m-15.15 1.05q.95-.8.95-2.05 0-.85-.5-1.6l-5.5 1.5v.1q0 1.25.85 2.05.95.9 2.15.9 1.25 0 2.05-.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.248 67.219l7.243-2.025m15.752 1.235l-7.344-2.026"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M94.05 66.5q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-9.9-1q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 65.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.551;0.557;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 66.4q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9m-12-1.9q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.437;0.443;0.455;0.479;0.497;0.551;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 66.4q1.25 0 2.05-.9.9-.8.9-2.05v-.35l-5.2-1.55q-.65.8-.65 1.9 0 1.25.8 2.05.9.9 2.1.9M81.2 67.45q1.25 0 2.05-.9.9-.8.9-2.05 0-.85-.45-1.55l-5.45 1.7q.05 1.15.85 1.9.9.9 2.1.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.127 64.88l7.079-2.384m16.05.896l-7.23-1.88"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.407;0.419;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.13 64.665l7.461-.373m15.719-.765l-7.468.147"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.401;0.407;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 65.5q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9m-14.05-1q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.383;0.401;0.479;0.497;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M99.1 63.45q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05M84.15 64.5q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.293;0.383;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 61.75q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1M84.15 64.9q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 65.254l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 61.35q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1M84.15 64.5q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.15 55.9q.05.35.15.65.75 2.65.05 4.65-.55 1.8-2.3 1.95-1.8.05-3.65-1.9-1.85-1.85-2.55-4.45-.1-.15-.1-.25m-7.6.8q0 .2.05.4.7 2.65-.15 4.55-.75 1.85-2.45 1.85-1.75-.1-3.55-2.05-1.7-1.95-2.35-4.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.15 56.3q.05.35.15.65.75 2.65.05 4.65-.55 1.8-2.3 1.95-1.8.05-3.65-1.9-1.85-1.85-2.55-4.45-.1-.15-.1-.25m-7.6.8q0 .2.05.4.7 2.65-.15 4.55-.75 1.85-2.45 1.85-1.75-.1-3.55-2.05-1.7-1.95-2.35-4.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.15 59.05q.05.2.15.4.75 1.55.05 2.75-.55 1.05-2.3 1.15-1.8 0-3.65-1.15-1.85-1.1-2.55-2.65m-7.65.55q.7 1.6-.15 2.75-.75 1.05-2.45 1.05-1.75 0-3.55-1.2-1.7-1.15-2.35-2.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;0.263;0.275;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M99.1 61.9q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-14.95 1.05q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M76.498 61.258l7.466-.244m16.739-1.183l-7.46.383"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 60.55q-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8m-12.9 1.85q-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.162;0.204;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M99.1 62.7q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-15.85 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.104l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.156;0.162;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M99.1 62.3q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05m-15.85 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.704l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.15;0.156;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 59.85q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1m-17 6.1q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.354l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.144;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 59.4q-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8m-12 3.95q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.704l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.108;0.114;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 59.8q-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8m-12 3.95q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.104l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.102;0.108;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M93.25 63.45q0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1m-10 3.1q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.09;0.102;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M94.05 61.35q-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8m-12.85 6.1q1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.072;0.09;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 60.6q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1m-14.05 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.104l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.066;0.072;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M98.2 60.2q-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1m-14.05 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.704l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.06;0.066;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M96.15 59.05q-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8m-12.9 6q.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.354l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.054;0.06;0.114;0.144;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M94.05 59.85q-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8M84.15 63q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.354l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.054;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M94.05 60.2q-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8m-9.9 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 63.704l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" d="M94.05 60.6q-.8.9-.8 2.1 0 1.25.8 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8m-9.9 3.15q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.104l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;1" values="none;inline;none;none"/></g><g><path fill="#0E2D38" d="M94.05 65.5q.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05 0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.8.9-.8 2.1 0 1.25.8 2.05m-9.9-1q0-1.2-.9-2.1-.8-.8-2.05-.8-1.2 0-2.1.8-.85.9-.85 2.1 0 1.25.85 2.05.9.9 2.1.9 1.25 0 2.05-.9.9-.8.9-2.05"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M77.089 64.854l6.188-4.184m16.982 2.817l-6.53-3.627"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.419;0.437;0.443;0.455;1" values="inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M113.45 86.15q2.5-3.8 2.25-8.7L94 79.9q.8 4.85 4.1 7.95 3.65 3.65 8.2 3.15 4.45-.5 7.15-4.85"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 77.45L94 79.9"/><path fill="#5CB8D6" d="M114.5 93.45q-3.65-3.55-8.1-3.1-4.55.55-7.25 4.85-2.55 3.8-2.2 8.65l21.65-2.45q-.85-4.85-4.1-7.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 103.85l21.65-2.45"/><path fill="#FF5B80" d="M113.15 97.2q-2.75-1.9-6.2-1.5-3.55.35-5.8 2.85-1.4 1.5-1.8 3.25l16.25-1.85q-.8-1.6-2.45-2.75m-13-10.25q2.55 1.95 5.8 1.55 3.25-.35 5.2-2.8.95-1.1 1.4-2.3L98.25 85q.75 1.1 1.9 1.95"/><path fill="#FF5B80" d="M105.4 89.45q.3.2.7.2.4-.1.6-.35.25-.3.2-.65-.05-.4-.35-.65-.25-.25-.65-.15-.4 0-.65.3-.2.25-.15.65.05.35.3.65m.05 1.8q0 .35.25.6.3.25.7.2.35-.05.6-.35t.25-.65q-.1-.4-.4-.6-.25-.25-.6-.2-.4.05-.7.35-.2.25-.1.65m.2 2.3q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65m.35 2.4q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;1;1" values="none;inline;inline"/></g><g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.9 104.95q2.45 7.35 6.6 11.65 4.7 4.7 11.45 3.2 8.8-1.9 17.65-14.4m-35.7-.45q-3.2-10.2-2.3-24.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.8 112q-2.3-2.9-2.6-6.1 3.65-.4 5.5-1.5m-5.5 1.5q2.65 2.45 5.95 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;1;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.9 104.95q2.45 7.35 6.6 11.65 4.7 4.7 11.45 3.2 8.8-1.9 17.65-14.4m-35.7-.45q-3.2-10.2-2.3-24.75"/><path fill="#5CB8D6" d="M113.45 86.15q2.5-3.8 2.25-8.7L94 79.9q.8 4.85 4.1 7.95 3.65 3.65 8.2 3.15 4.45-.5 7.15-4.85"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 77.45L94 79.9"/><path fill="#5CB8D6" d="M114.5 93.45q-3.65-3.55-8.1-3.1-4.55.55-7.25 4.85-2.55 3.8-2.2 8.65l21.65-2.45q-.85-4.85-4.1-7.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 103.85l21.65-2.45"/><path fill="#FF5B80" d="M113.15 97.2q-2.75-1.9-6.2-1.5-3.55.35-5.8 2.85-1.4 1.5-1.8 3.25l16.25-1.85q-.8-1.6-2.45-2.75m-13-10.25q2.55 1.95 5.8 1.55 3.25-.35 5.2-2.8.95-1.1 1.4-2.3L98.25 85q.75 1.1 1.9 1.95"/><path fill="#FF5B80" d="M105.4 89.45q.3.2.7.2.4-.1.6-.35.25-.3.2-.65-.05-.4-.35-.65-.25-.25-.65-.15-.4 0-.65.3-.2.25-.15.65.05.35.3.65m.05 1.8q0 .35.25.6.3.25.7.2.35-.05.6-.35t.25-.65q-.1-.4-.4-.6-.25-.25-.6-.2-.4.05-.7.35-.2.25-.1.65m.2 2.3q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.8 112q-2.3-2.9-2.6-6.1 3.65-.4 5.5-1.5m-5.5 1.5q2.65 2.45 5.95 2.85"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.994;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.9 104.85q2.45 7.25 6.6 11.4 4.7 4.5 11.45 2.75 8.8-2.25 17.65-15.1m-35.7.95Q59.7 94.8 60.6 80.2"/><path fill="#5CB8D6" d="M113.45 84.1q2.5-3.9 2.25-8.8L94 78.6q.8 4.85 4.1 7.8 3.65 3.5 8.2 2.85 4.45-.7 7.15-5.15"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 75.3L94 78.6"/><path fill="#5CB8D6" d="M114.5 91.35q-3.65-3.4-8.1-2.75-4.55.7-7.25 5.1-2.55 3.9-2.2 8.75l21.65-3.3q-.85-4.8-4.1-7.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 102.45l21.65-3.3"/><path fill="#FF5B80" d="M115.6 97.8q-.8-1.55-2.45-2.65-2.75-1.75-6.2-1.25-3.55.5-5.8 3.1-1.4 1.55-1.8 3.3l16.25-2.5m-15.45-12.4q2.55 1.85 5.8 1.35t5.2-3q.95-1.15 1.4-2.35l-14.3 2.15q.75 1.05 1.9 1.85"/><path fill="#FF5B80" d="M105.4 87.7q.3.2.7.2.4-.1.6-.4.25-.3.2-.65-.05-.4-.35-.65-.25-.2-.65-.1-.4 0-.65.3-.2.3-.15.7.05.35.3.6m.05 1.8q0 .35.25.6.3.25.7.2.35-.1.6-.4.25-.3.25-.65-.1-.4-.4-.6-.25-.25-.6-.15-.4.05-.7.35-.2.25-.1.65m.2 2.3q.1.35.3.55.35.3.75.15.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.15-.4.05-.7.35-.15.25-.15.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M101.5 110.3q-2.55-2.65-3.2-5.8 3.6-.75 5.35-2m-5.35 2q2.9 2.15 6.25 2.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.982;0.994;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M61.35 104.9q1.9 7.5 5.7 12.1 4.3 5.05 11.2 4.05 8.9-1.25 18.65-13.1m-35.55-3.05q-2.45-10.4-.5-24.9"/><path fill="#5CB8D6" d="M113.5 90.9q2.6-3.7 2.25-8.2l-23.1 3.15q1 4.5 4.5 7.35 4 3.2 8.8 2.5 4.75-.65 7.55-4.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.75 82.7l-23.1 3.15"/><path fill="#5CB8D6" d="M114.8 97.65q-4-3.2-8.75-2.55-4.8.75-7.6 4.8-2.6 3.75-2.2 8.25l23.1-3.2q-1.05-4.45-4.55-7.3"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.25 108.15l23.1-3.2"/><path fill="#FF5B80" d="M100.65 103q-1.45 1.5-1.9 3.15l17.35-2.45q-.9-1.45-2.65-2.45-3-1.65-6.75-1.1-3.75.5-6.05 2.85m-1.3-10.75q2.75 1.6 6.2 1.1 3.45-.4 5.55-2.8 1-1 1.45-2.25l-15.3 2.15q.8 1 2.1 1.8"/><path fill="#FF5B80" d="M105 94.25q.25.25.7.2.4-.1.65-.35.25-.3.2-.65-.1-.3-.35-.5-.35-.25-.7-.15-.45.05-.7.35-.3.2-.15.55.05.35.35.55m.3 2.25q.35.3.8.2.35-.05.6-.4.3-.25.25-.55-.1-.4-.4-.6-.35-.2-.7-.15-.45.1-.7.35-.2.25-.1.65.05.3.25.5m.05 1.65q.05.25.3.5.35.25.75.15.4 0 .65-.35.25-.3.2-.55-.05-.4-.4-.6-.25-.2-.65-.15-.4.05-.75.35-.15.25-.1.65"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M98.55 114.95q-2.2-2.95-2.4-6.2 3.7-.2 5.55-1.25m-5.55 1.25q2.6 2.5 5.85 3.05"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.97;0.982;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M57 104.5q.5 7.7 3.45 12.95 3.25 5.75 10.2 6.05 9 .4 20.8-9.5M57 104.5q-.45-10.65 4.1-24.55"/><path fill="#5CB8D6" d="M111.8 86.35L90.15 89.3q.95 4.75 4.25 7.85 3.7 3.55 8.25 2.95 4.45-.55 7.05-5 2.45-3.8 2.1-8.75"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M111.8 86.35L90.15 89.3"/><path fill="#5CB8D6" d="M115.1 110.25q-.9-4.8-4.2-7.9-3.7-3.45-8.15-2.9-4.55.65-7.2 4.95-2.4 3.9-2 8.75l21.55-2.9"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M93.55 113.15l21.55-2.9"/><path fill="#FF5B80" d="M103.35 104.8q-3.5.4-5.7 3-1.35 1.5-1.8 3.3l16.3-2.2q-.8-1.6-2.55-2.75-2.75-1.85-6.25-1.35m-6.95-8.65q2.6 1.9 5.85 1.45 3.2-.4 5.15-2.9.95-1.1 1.35-2.4L94.5 94.25q.75 1.05 1.9 1.9"/><path fill="#FF5B80" d="M102.9 97.1q-.3-.25-.7-.15-.4.05-.7.3-.15.3-.05.7 0 .35.25.6t.7.25q.35-.15.65-.4.25-.35.15-.7-.05-.4-.3-.6m-1.1 3.25q.1.35.3.65.3.25.7.15.35 0 .55-.35.3-.3.25-.65-.1-.4-.4-.65-.3-.2-.65-.15-.4.05-.65.3-.15.3-.1.7m.45 1.65q-.2.25-.15.6.05.35.3.6t.65.2q.4-.05.6-.4.25-.25.2-.55-.05-.4-.35-.65-.25-.2-.6-.2-.4.1-.65.4"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M90.45 121q-.8-3.6.45-6.6 3.4 1.35 5.55 1.2m-5.55-1.2q1.25 3.35 4 5.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.952;0.97;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.95 104.9q1.9 7.5 5.7 12.1 4.3 5.05 11.2 4.05 8.9-1.25 18.65-13.1m-35.55-3.05q-2.45-10.4-.5-24.9"/><path fill="#5CB8D6" d="M107.65 75.2q2.15-4 1.55-8.8l-21.4 4q1.15 4.7 4.6 7.6 3.9 3.4 8.4 2.55 4.45-.8 6.85-5.35"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M109.2 66.4l-21.4 4"/><path fill="#5CB8D6" d="M113.85 90q-1.2-4.7-4.65-7.6-3.9-3.3-8.4-2.5-4.45.85-6.85 5.3-2.2 4-1.55 8.8l21.45-4"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M92.4 94l21.45-4"/><path fill="#FF5B80" d="M101.75 85.25q-3.5.6-5.5 3.2-1.3 1.6-1.6 3.4l16.1-3q-.9-1.55-2.7-2.6-2.85-1.65-6.3-1m3.55-10.35q.85-1.1 1.2-2.4l-14.15 2.65q.8 1.05 2.05 1.8 2.65 1.75 5.9 1.1 3.15-.55 5-3.15"/><path fill="#FF5B80" d="M100.8 77.5q-.25-.2-.6-.1-.4.05-.6.35-.25.3-.15.7.05.35.35.6.3.2.7.15.35-.1.55-.4.2-.35.15-.7-.1-.35-.4-.6m-.8 3.35q.05.35.25.6.35.2.75.1.3-.05.5-.35.25-.3.2-.65-.1-.4-.45-.6-.25-.2-.55-.15-.4.1-.65.4-.2.25-.05.65m.45 1.55q-.15.3-.1.7.1.35.35.55.35.25.7.15.35-.05.55-.35.25-.3.15-.65-.05-.4-.4-.6-.3-.25-.6-.2-.35.15-.65.4"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M98.45 114.3q-2.1-3.1-2.05-6.3 3.65 0 5.6-1m-5.6 1q2.35 2.6 5.65 3.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.946;0.952;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.95 104.9q1.9 7.5 5.7 12.1 4.3 5.05 11.2 4.05 8.9-1.25 18.65-13.1m-35.55-3.05q-2.45-10.4-.5-24.9"/><path fill="#5CB8D6" d="M100.45 71.8q-1.1-4.35-4.9-7.45L82.8 82q4.1 2.65 8.65 2.3 5.1-.25 7.75-3.9 2.65-3.65 1.25-8.6"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.55 64.35L82.8 82"/><path fill="#5CB8D6" d="M115.2 78.25q-4.1-2.6-8.65-2.35-5.1.4-7.7 3.95-2.65 3.75-1.3 8.6 1.1 4.45 4.9 7.5l12.75-17.7"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M102.45 95.95l12.75-17.7"/><path fill="#FF5B80" d="M103.2 83.1q-2.15 2.85-1.85 6.2.25 2 1.2 3.5l9.55-13.25q-1.7-.55-3.65-.05-3.25.75-5.25 3.6m-11.1-.9q3.15-.6 5.05-3.25 1.9-2.6 1.45-5.8-.2-1.35-.8-2.55l-8.4 11.7q1.3.15 2.7-.1"/><path fill="#FF5B80" d="M97.2 78.15q-.35.05-.6.4-.25.3-.2.65.05.35.45.6.25.2.65.2.35-.05.6-.4.2-.3.15-.65-.1-.4-.35-.6-.35-.2-.7-.2m1.6 3q.3.25.65.25.4-.1.6-.4.25-.25.15-.65 0-.4-.3-.6-.35-.2-.75-.15-.35.05-.55.35-.2.3-.2.7.1.3.4.5m1.45.85q.1.3.4.55.35.2.65.15.45 0 .65-.4.2-.25.1-.65 0-.4-.3-.55-.35-.25-.75-.15-.35.05-.55.3-.2.4-.2.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M98.45 114.3q-2.1-3.1-2.05-6.3 3.65 0 5.6-1m-5.6 1q2.35 2.6 5.65 3.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.94;0.946;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M84.95 43.8q.65-4.4-2.9-8.15-3-3.3-7.75-4.3L71.25 52.8q4.85.5 8.65-1.9 4.45-2.55 5.05-7.1"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M74.3 31.35L71.25 52.8"/><path fill="#5CB8D6" d="M98.05 34.55q-4.8-.35-8.65 1.9-4.35 2.7-5.05 7.15-.55 4.45 2.8 8.1 3.15 3.45 7.8 4.4l3.1-21.55"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.95 56.1l3.1-21.55"/><path fill="#FF5B80" d="M92.7 38.75q-2.45 2.2-2.95 5.65-.6 3.5 1.25 6.25 1.05 1.75 2.65 2.55L96 37.1q-1.75.4-3.3 1.65M82.45 43.5q.5-3.2-1.4-5.75-.75-1.15-1.8-1.85l-2.1 14.15q1.3-.45 2.4-1.3 2.45-2 2.9-5.25"/><path fill="#FF5B80" d="M83.25 44.25q.3-.2.35-.55.05-.4-.2-.7-.25-.3-.55-.35-.45-.05-.7.2-.3.2-.25.55-.1.4.05.7.2.3.65.3.3.1.65-.15m1.3-1.05q-.3.2-.35.55 0 .35.2.65.2.25.6.3.3.1.55-.1.4-.2.45-.65.1-.3-.15-.6-.25-.35-.6-.4-.35 0-.7.25m3 .1q-.4-.1-.7.2-.3.2-.35.55-.05.35.15.7.2.25.6.3.35.05.65-.15.3-.2.4-.6 0-.35-.25-.7-.2-.25-.5-.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M85.45 96.8q6.9.3 11-4.85Q102 85 100.4 69.55M85.45 96.8q-4.7-.3-10.55-5-6.45-4.95-13.45-14.35M98 63.35q.4 3.75 2.45 6.2.15-3.5 2.25-6.2m-2.25 6.2q2.8-2.35 4.95-2.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.934;0.94;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M85.6 52.35q1.75-4.75-.55-8.65-2.3-3.85-7.4-4.5-4.4-.7-8.75 1.5l11.15 18.6q4.1-2.65 5.55-6.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M68.9 40.7l11.15 18.6"/><path fill="#5CB8D6" d="M89.45 28.2q-4 2.75-5.6 7-1.7 4.85.6 8.7 2.35 3.85 7.25 4.55 4.6.75 8.8-1.55L89.45 28.2"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.5 46.9L89.45 28.2"/><path fill="#FF5B80" d="M94.05 45.25q1.95.6 3.7.3l-8.4-14.05q-1.1 1.45-1.45 3.4-.6 3.25 1.2 6.25 1.75 3.1 4.95 4.1m-11.15 8.2q.75-1.15 1-2.5.7-3.15-1-5.9-1.6-2.8-4.7-3.6-1.3-.4-2.6-.3l7.3 12.3"/><path fill="#FF5B80" d="M84 45.15q.1-.35-.1-.7t-.55-.4q-.4-.05-.7.1-.35.2-.45.55-.05.3.2.65.15.35.45.45.4.15.65-.15.35-.15.5-.5m.3-1.7q-.1.35.1.65.25.3.55.45.35.05.7-.2.35-.15.4-.45.1-.35-.1-.75-.15-.3-.55-.35-.4-.1-.7.05-.3.2-.4.6m2.4-1.8q-.3.2-.35.6-.15.35 0 .65.2.3.6.5.3.05.65-.2.3-.2.45-.45.1-.4-.15-.8-.15-.3-.55-.3-.35-.15-.65 0"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M85.45 96.8q6.9.3 11-4.85Q102 85 100.4 69.55M85.45 96.8q-4.7-.3-10.55-5-6.45-4.95-13.45-14.35M98 63.35q.4 3.75 2.45 6.2.15-3.5 2.25-6.2m-2.25 6.2q2.8-2.35 4.95-2.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.928;0.934;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M85.25 59.9q3.05-3.85 3.05-8.35.1-5.15-3.35-8.05-3.4-2.85-8.5-1.9-4.35.75-7.75 4.3l16.55 14"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M68.7 45.9l16.55 14"/><path fill="#5CB8D6" d="M84.05 27.45q-2.9 3.9-3 8.35 0 5.15 3.4 8.1 3.45 2.8 8.35 1.9 4.6-.8 7.85-4.3l-16.6-14.05"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.65 41.5l-16.6-14.05"/><path fill="#FF5B80" d="M93.9 42q2.05 0 3.65-.9L85.1 30.55q-.65 1.7-.35 3.7.55 3.25 3.2 5.5Q90.6 42.1 93.9 42m-7.85 11.35q.35-1.25.15-2.65-.3-3.2-2.85-5.2-2.45-2.15-5.6-1.95-1.4.1-2.55.55l10.85 9.25"/><path fill="#FF5B80" d="M84.45 45.2q-.05-.35-.35-.6-.35-.3-.65-.2-.4.05-.65.3-.25.3-.2.65 0 .35.35.6.3.25.6.25.4 0 .6-.35.3-.25.3-.65m-.25-1.7q-.05.35.25.6.35.2.7.2.35-.05.55-.35.3-.25.25-.55 0-.45-.35-.7-.2-.25-.6-.2-.4.05-.65.3-.2.25-.15.7m3.25-1.9q0-.4-.35-.65-.25-.3-.65-.2-.35 0-.6.3-.25.25-.15.65 0 .35.25.6.3.2.7.25.3-.05.55-.35.25-.3.25-.6"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M85.45 96.8q6.9.3 11-4.85Q102 85 100.4 69.55M85.45 96.8q-4.7-.3-10.55-5-6.45-4.95-13.45-14.35M98 63.35q.4 3.75 2.45 6.2.15-3.5 2.25-6.2m-2.25 6.2q2.8-2.35 4.95-2.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.922;0.928;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M33.95 7.8Q31.5 4 27.05 2.15l-7 20.7q4.75 1.3 8.95-.4 4.85-1.75 6.25-6 1.45-4.3-1.3-8.65"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M27.05 2.15l-7 20.7"/><path fill="#5CB8D6" d="M42.95 30.3l7-20.7q-4.8-1.25-9.05.35-4.65 1.85-6.15 6.1-1.45 4.35 1.3 8.55 2.4 3.9 6.9 5.7"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M42.95 30.3l7-20.7"/><path fill="#FF5B80" d="M47.35 11.75q-1.8 0-3.5 1.05-2.9 1.7-4 5-1.15 3.4.1 6.45.8 1.9 2.25 3l5.15-15.5m-20.9 9.35q1.3-.1 2.65-.85 2.75-1.55 3.75-4.6 1.05-3.05-.3-6Q31.95 8.4 31 7.5l-4.55 13.6"/><path fill="#FF5B80" d="M33.4 14.8q-.4-.05-.7.1-.4.2-.45.5-.1.4 0 .7.15.35.5.45.4.05.7-.05.35-.1.5-.45.1-.4-.1-.7-.15-.4-.45-.55m1.2 2.1q.15.3.55.35.3.15.6.05.35-.2.55-.55.05-.4-.1-.7-.15-.4-.45-.5-.4-.05-.8.15-.25.15-.4.45-.1.35.05.75m2.15-.05q-.1.4.05.7.1.3.45.5.35 0 .7-.05.4-.2.5-.55.1-.35-.15-.65-.05-.35-.4-.5-.4-.1-.7.1-.35.15-.45.45"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.6 72.9q-11.95-5.65-23.25-19.35-11.35-13.7-12.3-33.3m-2.6-6q.65 3.7 2.9 6-.1-3.5 1.85-6.35m-1.85 6.35Q30 17.7 32.1 17.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.904;0.922;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M47.5 26.6q-.9-4.45-4.45-7.75l-13.9 16.8q3.95 2.95 8.5 2.85 5.15.1 8-3.4 2.9-3.45 1.85-8.5"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M43.05 18.85l-13.9 16.8"/><path fill="#5CB8D6" d="M61.8 34q-4-2.9-8.55-2.9-5.05.05-7.95 3.5-2.85 3.5-1.85 8.45.85 4.5 4.45 7.75L61.8 34"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M47.9 50.8L61.8 34"/><path fill="#FF5B80" d="M47.25 44.1q.05 2.05 1 3.6L58.6 35.05q-1.65-.6-3.65-.25-3.3.55-5.5 3.25-2.3 2.75-2.2 6.05M43.7 33.5q2.05-2.45 1.85-5.65-.1-1.4-.65-2.6l-9.15 11.1q1.25.3 2.75.1 3.15-.4 5.2-2.95"/><path fill="#FF5B80" d="M44.5 32.95q-.35-.2-.7-.2-.4.05-.6.35-.25.3-.25.65 0 .35.35.6.3.2.65.2.35.05.65-.25.2-.35.15-.7 0-.4-.25-.65m.35 2.4q.05.3.4.5.25.25.55.25.4-.05.7-.35.2-.3.15-.65 0-.4-.25-.6-.35-.25-.75-.2-.3.05-.55.3-.2.3-.25.75m2.75 2.2q.45 0 .65-.35.25-.25.15-.65.05-.35-.25-.6t-.7-.2q-.35.05-.6.3-.2.35-.2.7 0 .3.3.6.3.15.65.2"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M39.15 74.6q-8.6-.85-12.65-4-5.85-4.65-4.95-11.2 1.2-8.85 15.1-18.6m2.5 33.8q9.3 1.05 22.65-.6M37.2 40.2q-2.25-2.3-2.9-6m2.9 6q-.1-3.5 1.85-6.35M37.2 40.2q2.65-2.55 4.75-3.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.892;0.904;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.75 39.25q3.2-5.85 10-5 9.1 1.1 22.45 14.85m-32.45-9.85q-2.1 4.05-.7 12.6 1.4 9.35 6.45 22.65m24.75-19.6q1.3-1.75 1.95-5.35 3.15.5 5.9 3.05m-5.9-3.05q2.15 2.75 2.3 6.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.88;0.892;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M81.05 36.4Q89.7 38.7 98 53.75M81.05 36.4q-6.4-1.75-11.65 3.4-3.55 3.6-5.25 12-1.85 9.15-1.6 22.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.802;0.82;0.832;0.85;0.868;0.88;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M82.4 38.1q9.3 3.05 18.2 18.9M82.4 38.1q-6.9-2.35-12.5 2.35-3.8 3.25-5.6 11.5-2.05 9-1.8 22.5m34-12.95q1.9-1.15 3.85-4.25 2.75 1.7 4.3 5.05m-4.3-5.05q.95 3.35-.2 6.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.784;0.802;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M81.05 36.4Q89.7 38.7 98 53.75M81.05 36.4q-6.4-1.75-11.65 3.4-3.55 3.6-5.25 12-1.85 9.15-1.6 22.65m30.9-16.4q1.95-1 4-4 2.75 1.85 4.1 5.25m-4.1-5.25q.8 3.4-.5 6.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.766;0.784;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M64.5 39.25q4.45-5.85 11.05-5 8.9 1.1 19.2 14.85M64.5 39.25q-3 4.05-3.5 12.6-.65 9.35 1.5 22.65M92 54.4q1.7-1.35 3.3-4.6 2.95 1.35 4.85 4.5m-4.85-4.5q1.3 3.2.55 6.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.754;0.766;0.82;0.832;0.85;0.868;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M83.6 43.65Q92.1 46 99.25 58.9M83.6 43.65q-6.25-1.75-11.85 2.3-3.8 2.85-6.1 9.75-2.55 7.55-3.25 18.75M95.7 63.6q1.7-1.35 3.3-4.6 2.95 1.35 4.85 4.5M99 59q1.3 3.2.55 6.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.743;0.754;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M44.75 45.85q-1-7.25 4.25-12.4 6.95-6.75 22.55-5.35m-26.8 17.75q.7 5.1 5.25 11.95 5.25 7.85 14.8 16.65m8.6-52.3q-1.25 1.75-1.85 5.3Q68.3 27 65.6 24.5m5.95 2.95q-2.15-2.7-2.35-6.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.731;0.743;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M28.8 71.85q-5.9-4.4-5.1-10.8 1.05-8.7 14.8-18.7m-9.7 29.5q4.1 2.9 12.7 3.5 9.35.75 22.65-1.3M38.8 36.85q-.85 2-.8 5.55-3.3.2-6.4-1.7m6.4 1.7q-2.6-2.2-3.5-5.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.719;0.731;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M28.9 70.6q-5.85-4.65-4.95-11.2 1.2-8.85 15.1-18.6M28.9 70.6q4.05 3.15 12.65 4 9.3 1.05 22.65-.6M39.7 35.4q-.95 1.95-1.05 5.5-3.3.1-6.35-1.95m6.35 1.95q-2.5-2.3-3.25-5.6"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.695;0.719;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M28.9 70.6q-5.85-4.65-4.95-11.2 1.2-8.85 15.1-18.6M28.9 70.6q4.05 3.15 12.65 4 9.3 1.05 22.65-.6M39.1 40.65q-3.25-.6-5.8-3.3m5.8 3.3q-1.95-2.8-1.95-6.2m1.95 6.2q.85-3.5 2.2-5.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.683;0.695;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M28.9 70.6q-5.85-4.65-4.95-11.2 1.2-8.85 15.1-18.6M28.9 70.6q4.05 3.15 12.65 4 9.3 1.05 22.65-.6M39.45 40.5q-3.15-1.05-5.2-4.15m5.2 4.15q-1.5-3-.95-6.4m.95 6.4q1.35-3.25 2.95-4.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.677;0.683;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M28.75 73.7q-6.05-4.15-5.55-10.8.75-8.95 13.95-19.95m-8.4 30.75q4.2 2.8 12.75 2.9 9.4.2 22.6-2.55M43.05 44.8q-1.75-1.25-5.2-2 .4-3.25 3.05-5.9m-3.05 5.9q2.65-2 6.05-2.2"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.659;0.677;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M29.3 68.45q-5.4-5-3.9-11.5 2-8.75 16.75-17.65M29.3 68.45q3.75 3.4 12.2 4.75 9.25 1.6 22.65.8m-16.6-32.15q-1.5-1.55-4.75-2.9 1-3.15 4.05-5.25m-4.05 5.25q2.95-1.5 6.35-1.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.647;0.659;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M51.15 39.4q2.25-4.75 11.55-2.75 10.7 2.5 28.45 13.8m-40-11.05q-1.8 3.8 1.25 12.25 3 9.05 11.15 22.1m32.05-19.7q-1.25-1.75-4.25-3.6 1.5-2.95 4.8-4.55m-4.8 4.55q3.15-1.05 6.45-.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.623;0.647;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M54.15 39.4q2.65-4.75 11.8-2.75 10.45 2.5 27.25 13.8M54.15 39.4q-2.15 3.8.15 12.25 2.25 9.05 9.25 22.1"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M97.4 54.05q-1.25-1.75-4.25-3.6 1.5-2.95 4.8-4.55m-4.8 4.55q3.15-1.05 6.45-.1"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.617;0.623;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M82.7 36.75q9.65 2.9 21.75 14.85M82.7 36.75q-8.35-2.4-13.2 2.25-3.85 3.75-5.2 12.3-1.7 9.2-.3 22.55m46.1-24.55q-2.1.4-5.05 2.4-2.05-2.6-2.1-6.3m2.1 6.3q.4-3.3 2.65-5.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.605;0.617;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M67.05 38.55q3.9-4.85 11.05-2.8Q86.35 38.2 97 49.6M67.05 38.55q-3.1 3.95-3.95 12.55-1.1 9.25.6 22.55m39.2-24.5q-2.1-.35-5.55.55-1.05-3.15.15-6.65m-.15 6.65q1.5-3 4.5-4.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.599;0.605;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M51.15 42.7q1.5-5.9 9-7Q68.8 34.35 83.6 40m-32.45 2.7Q50 47.45 52.9 55.35q3.05 8.6 10.4 19.6M89.65 41.7q-1.85-1.15-5.35-1.6.2-3.3 2.65-6.1m-2.65 6.1q2.55-2.25 5.95-2.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.587;0.599;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M59.65 80.7q-10.2-6.8-17.8-19.7-7.6-12.9-3.75-28.4m1.3-6.3q-1 1.95-1.15 5.45-3.35.05-6.35-2.15m6.35 2.15q-2.5-2.35-3.15-5.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.575;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.1 78.25q-3.6-18.8-19.1-21.2-15.55-2.6-28.35 8.1m-4.95 4.1q2.05-.85 4.35-3.45 2.6 2.1 3.55 5.7m-3.55-5.7q.45 3.35-1.15 6.4"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.563;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.5 84.85Q47.2 74.15 33.95 83t-15.6 25.05m-.65 6.4q.85-2.1.6-5.55 3.4-.3 6.6 1.6m-6.6-1.6q2.75 2.1 3.7 5.35"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M63.05 83.05q-18.9-.35-25.75 13.8-6.9 14.15-3.6 30.05m1.9 5.65q-.1-2.25-1.8-5.25 3-1.75 6.7-1.35m-6.7 1.35q3.4.75 5.65 3.25"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.551;0.557;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M54.75 112.5q-1.3 14.35.1 23.25m-.1-23.25q1.35-15.45 5.2-29.25m-8.2 57.85q1.8-1.4 3.3-4.5 3.2 1.45 4.95 4.75m-4.95-4.75q1.35 3.25.55 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.503;0.551;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M52.8 112.15q-2.45 14.2-1.8 23.15m1.8-23.15q2.6-15.3 7.6-28.7m-11.6 57.7q1.4-1.8 2.15-5.2 3.4.65 5.9 3.4m-5.9-3.4q2.05 2.8 2.1 6.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.497;0.503;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M55.15 109.6q2.2 14.8 14.95 24.5m-14.95-24.5q-2.2-14.8 1.5-26.5m18.5 54.4q-1.4-1.8-4.6-3.15 1.4-3.25 4.65-5.15m-4.65 5.15q3.2-1.45 6.5-.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.491;0.497;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.2 83.2q1.4 12.2 9.4 24.85 8 12.65 23.6 16.3m6.3 1.6q-1.95-1.2-5.4-1.45.2-3.5 2.6-6.35m-2.6 6.35q2.5-2.45 5.85-2.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.479;0.491;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.65 87.05Q50.1 74.65 55 62.15q2.6-6.65 9.95-11.35 7.95-5.1 17.1-4.95m.8.05q3.45-1.05 6.9.25m-6.9-.25q3.25 1.55 4.8 4.4m-4.8-4.4q.95 3.35.65 5.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.377;0.383;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.6 87.05q-6-12.65-.45-24.9 2.9-6.5 10.45-10.85 8.15-4.7 17.3-4.15m.55-.05q3.45-1.05 6.9.25m-6.9-.25q3.25 1.55 4.8 4.4m-4.8-4.4q.95 3.35.65 5.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.371;0.377;0.383;0.401;0.443;0.455;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.25 86.9q-1.75-14.4 7.7-25.45 9.4-11.1 28.7-12.85m1.05 5.65q.55-2.15-.05-5.6 3.55-.65 6.85 1m-6.85-1q3.05 1.9 4.3 4.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.365;0.371;0.401;0.419;0.437;0.443;0.455;0.467;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56 86.8q4.75-12.7 17.05-21.2t26.55-8.5m4 4.8q-.45-2.2-2.5-5.05 2.85-2.1 6.55-2.1m-6.55 2.1q3.55.35 6 2.55"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.359;0.365;0.419;0.437;0.467;0.479;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.2 83.2q13 3.75 22.45 15.35t10.55 25.8m-4.5 4.45q2.05-.95 4.2-3.7 2.8 2.15 3.8 5.75m-3.8-5.75q.65 3.5-.85 6.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.347;0.359;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M54.75 112.05q-1.3 14.35.1 23.25m-.1-23.25q1.35-15.45 5.2-29.25m-8.45 57.45q1.9-1.2 3.7-4.15 3.05 1.75 4.5 5.2m-4.5-5.2q1.05 3.35-.05 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.299;0.347;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M54.75 112.5q-1.3 14.35.1 23.25m-.1-23.25q1.35-15.45 5.2-29.25m-8.45 57.6q1.9-1.2 3.7-4.15 3.05 1.75 4.5 5.2m-4.5-5.2q1.05 3.35-.05 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.293;0.299;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M54.75 115.7q-1.3 15.65.1 25.35m-.1-25.35q1.35-16.8 5.2-31.85m-8.45 62.2q1.9-1.2 3.7-4.15 3.05 1.75 4.5 5.2m-4.5-5.2q1.05 3.35-.05 6.5"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.287;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M56.1 116.3q-2.8 16.05-4.65 25.4m4.65-25.4q2.75-16.1 4.1-31.35m-13.3 60.9q2.05-.95 4.2-3.6 2.85 2.1 3.75 5.8m-3.75-5.8q.6 3.5-.9 6.45"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.287;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 72.35q-5.6 3.95-3.15 11.25 2.85 8.35 16 18.9M36.1 72.35q5.1-3.6 14.4-2.85 8.2.6 15.45 4.6m-22.4 29.3q2.2.35 5.5-.6 1.15 3.35-.2 6.9m.2-6.9q-1.5 3.25-4.4 4.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.275;0.281;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 67.9q-5.6 3.3-3.15 9.1 2.85 6.6 16 14.9m-12.85-24q5.1-3 14.4-2.5 8.2.3 15.45 3.35m-21.9 24.9q2.2.05 5.35-1.25 1.55 3.15.65 6.9m-.65-6.9q-1.1 3.4-3.8 5.3"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.263;0.275;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 55.05q-5.6 1.15-3.15 8 2.85 7.8 16 21.3M36.1 55.05q5.1-1 14.4 3.1 8.2 3.55 15.45 9.45M43.5 84.1q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 56.6q-5.6 1.35-3.15 8.1 2.85 7.7 16 20.7M36.1 56.6q5.1-1.2 14.4 2.5 8.2 3.25 15.45 8.9M43.5 85.2q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 59.75q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 59.75q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 87.25q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 60.6q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 60.6Q41.2 59 50.5 62q8.2 2.6 15.45 7.65M43.5 88.15q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 60.75q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 60.75q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 88.35q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.114;0.15;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 61.1q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 61.1q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 88.65q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65Q46.8 92.1 43.6 93"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.108;0.114;0.15;0.156;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 60.75q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 60.75q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 88.15q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.06;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 61.1q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 61.1q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 88.45q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;0.06;0.066;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 61.5q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 61.5q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 88.95q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;0.066;0.072;0.102;0.108;0.156;0.162;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M36.1 62.25q-5.6 1.8-3.15 8.35 2.85 7.5 16 19.45M36.1 62.25q5.1-1.6 14.4 1.4 8.2 2.6 15.45 7.65M43.5 89.75q2.05.8 5.45.65.35 3.45-1.7 6.65m1.7-6.65q-2.15 2.8-5.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.072;0.102;0.162;0.204;1" values="inline;none;inline;none;inline;none;none"/></g><animate attributeName="mask" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.743;0.892;1" values="none;url(#mask_);none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".098" d="M74.55 78.25q2.35-.2 3.9-1.9 1.5-1.7 1.3-3.85-.2-2.2-2-3.55-1.75-1.35-4.1-1.15-2.3.25-3.9 1.9-1.5 1.7-1.3 3.85.2 2.15 2 3.55t4.1 1.15m27.95-7.55q.2 2.15 2 3.55 1.75 1.35 4.1 1.1 2.35-.2 3.85-1.9 1.55-1.7 1.35-3.85-.2-2.15-2-3.55-1.75-1.35-4.1-1.15-2.35.25-3.9 1.9-1.5 1.7-1.3 3.9"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.563;0.575;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".2" d="M77.85 83.1q1.6-1.6 1.35-3.7-.2-2.05-2.05-3.4-1.8-1.25-4.15-1.1-2.4.25-4 1.85-1.55 1.65-1.3 3.7.2 2.1 2 3.4 1.8 1.35 4.2 1.1 2.4-.2 3.95-1.85m24.55-5.4q.2 2.05 2.05 3.4 1.8 1.35 4.2 1.1 2.4-.2 3.95-1.85 1.55-1.6 1.35-3.7-.2-2.05-2.05-3.4-1.8-1.3-4.15-1.1-2.4.25-4 1.85-1.55 1.6-1.35 3.7"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.557;0.563;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".298" d="M78 81.8q1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85m24.25-5.5q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.551;0.557;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M78 81.2q1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85m24.25-5.5q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.281;0.293;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 78.95q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1m28.15-7.35q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.228;0.263;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 79.35q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1M102.25 72q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.222;0.228;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 80.15q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1m28.15-7.35q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.216;0.222;0.263;0.275;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 81q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45T74.1 81m28.15-7.35q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.204;0.216;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 81.15q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1m28.15-7.35q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.024;0.06;0.114;0.15;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M74.1 81.5q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1m28.15-7.35q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.024;0.06;0.066;0.108;0.114;0.15;0.156;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" fill-opacity=".498" d="M78 80.05q1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85m24.25-5.5q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.018;0.066;0.072;0.102;0.108;0.156;0.162;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="#FF5B80" fill-opacity=".498" d="M78 80.8q1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85m24.25-5.5q.2 2.1 2 3.45t4.15 1.1q2.35-.2 3.9-1.85 1.55-1.65 1.35-3.75-.2-2.1-2.05-3.45-1.75-1.3-4.1-1.1-2.35.25-3.95 1.85-1.5 1.65-1.3 3.75"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.012;0.072;0.102;0.162;0.204;0.275;0.281;0.293;0.551;1" values="inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M70.85 74.55l.05.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.06;0.072;0.21;0.222;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M70.35 65.55l.05.8m.45 8.2l.05.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.048;0.06;0.198;0.21;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M69.95 57.25l.1 2.15m.8 15.15l.05.65m-.55-9.65l.05.8"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.036;0.048;0.186;0.198;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M70.35 65.65l.05.8m-.45-9.2l.1 2.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;0.036;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M69.95 57.25l.1 2.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.018;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M116.45 94.35l.05.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.12;0.132;0.263;0.275;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.95 85.35l.05.8m.45 8.2l.05.65"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.108;0.12;0.251;0.263;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.95 85.35l.05.8m.45 8.2l.05.65m-.95-17.95l.1 2.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.096;0.108;0.24;0.251;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.95 85.45l.05.8m-.45-9.2l.1 2.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.078;0.096;0.222;0.24;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.55 77.05l.1 2.15"/><animate attributeName="display" repeatCount="indefinite" dur="6.958s" keyTimes="0;0.06;0.078;0.204;0.222;1" values="none;inline;none;inline;none;none"/></g></svg>
@@ -1 +0,0 @@
1
- <svg baseProfile="basic" width="176" height="129" xmlns="http://www.w3.org/2000/svg"><path fill="#FFF" d="M-.05-.15V129.2h176.1V-.15H-.05"/><path fill="#317C99" d="M100.7 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M110.1 141.55H98.4l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6"/><path fill="#317C99" d="M75.5 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M73.5 160.7q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6H73.2l.3 19.15"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3m25 16.75q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><path fill="#FF5B80" d="M99.809 52.436L87.927 36.509q-4.812-5.59-8.4.617l-10.014 17.62 30.296-2.31"/><path fill="#317C99" d="M53.47 83.078l-2.591 4.606q-1.894 3.303-.24 5.45 1.555 1.997 4.704 1.74l22.047-1.643 39.495-2.83q4.6-.059 6.144-2.512 1.546-2.453-1.111-5.847l-2.808-3.695-19.302-25.911-30.295 2.31L53.47 83.078"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M83.57 32.968l.149-.35-.616-7.75m.616 7.75l4.036-6.858m-4.185 7.208l-5.063-6.49"/><path fill="#FF5B80" d="M70.9 81.85l8.2 5.45q.3-.25.55-.65 1.35-2.1 1.1-4.35-.3-2.3-1.9-3.4-1.75-1.15-3.95-.5-2.2.65-3.55 2.75-.25.4-.45.7"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M86.85 87.05q-2.15.7-4.7.7-5.1 0-8.7-2.8-3.6-2.75-3.6-6.7 0-.6.1-1.2"/><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M100.3 60l-8.6 1.35m-16.4 2.7l9.85-1.55"/><path fill="#0E2D38" d="M94.35 64.55q.75 1.05 1.95 1.2 1.2.2 2.15-.6 1-.6 1.2-1.85.15-1.2-.6-2.25-.7-.9-1.9-1.1-1.2-.15-2.2.5-.95.8-1.1 2-.2 1.25.5 2.1m-12.6 3.3q1.05-.6 1.3-1.85.25-1.1-.4-2.2-.6-1-1.7-1.35-1.25-.2-2.25.45-1.1.65-1.3 1.75-.35 1.2.3 2.15.65 1.15 1.85 1.35 1.15.35 2.2-.3"/><g display="none"><path fill="#5CB8D6" d="M113.45 86.15q2.5-3.8 2.25-8.7L94 79.9q.8 4.85 4.1 7.95 3.65 3.65 8.2 3.15 4.45-.5 7.15-4.85"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 77.45L94 79.9"/><path fill="#5CB8D6" d="M114.5 93.45q-3.65-3.55-8.1-3.1-4.55.55-7.25 4.85-2.55 3.8-2.2 8.65l21.65-2.45q-.85-4.85-4.1-7.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 103.85l21.65-2.45"/><path fill="#FF5B80" d="M113.15 97.2q-2.75-1.9-6.2-1.5-3.55.35-5.8 2.85-1.4 1.5-1.8 3.25l16.25-1.85q-.8-1.6-2.45-2.75m-13-10.25q2.55 1.95 5.8 1.55 3.25-.35 5.2-2.8.95-1.1 1.4-2.3L98.25 85q.75 1.1 1.9 1.95"/><path fill="#FF5B80" d="M105.4 89.45q.3.2.7.2.4-.1.6-.35.25-.3.2-.65-.05-.4-.35-.65-.25-.25-.65-.15-.4 0-.65.3-.2.25-.15.65.05.35.3.65m.25 4.1q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65m.35 2.4q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65"/><animate attributeName="display" repeatCount="indefinite" dur="1.708s" keyTimes="0;0.049;0.098;0.146;0.195;0.244;0.293;0.341;0.39;0.439;0.488;0.537;0.585;0.634;0.683;0.732;0.78;0.829;0.878;0.927;0.976;1" values="none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;none"/></g><g><path fill="#5CB8D6" d="M113.45 86.15q2.5-3.8 2.25-8.7L94 79.9q.8 4.85 4.1 7.95 3.65 3.65 8.2 3.15 4.45-.5 7.15-4.85"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 77.45L94 79.9"/><path fill="#5CB8D6" d="M114.5 93.45q-3.65-3.55-8.1-3.1-4.55.55-7.25 4.85-2.55 3.8-2.2 8.65l21.65-2.45q-.85-4.85-4.1-7.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 103.85l21.65-2.45"/><path fill="#FF5B80" d="M113.15 97.2q-2.75-1.9-6.2-1.5-3.55.35-5.8 2.85-1.4 1.5-1.8 3.25l16.25-1.85q-.8-1.6-2.45-2.75m-13-10.25q2.55 1.95 5.8 1.55 3.25-.35 5.2-2.8.95-1.1 1.4-2.3L98.25 85q.75 1.1 1.9 1.95m5.4 4.05q.3.2.7.2.4-.1.6-.35.25-.3.2-.65-.05-.4-.35-.65-.25-.25-.65-.15-.4 0-.65.3-.2.25-.15.65.05.35.3.65"/><path fill="#FF5B80" d="M105.8 95.1q.1.35.3.55.35.3.75.2.35 0 .55-.3.3-.3.2-.65 0-.4-.35-.6-.25-.25-.6-.2-.4.05-.7.35-.15.25-.15.65"/><animate attributeName="display" repeatCount="indefinite" dur="1.708s" keyTimes="0;0.049;0.098;0.146;0.195;0.244;0.293;0.341;0.39;0.439;0.488;0.537;0.585;0.634;0.683;0.732;0.78;0.829;0.878;0.927;0.976;1" values="inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;none;inline;inline"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.9 104.95q2.45 7.35 6.6 11.65 4.7 4.7 11.45 3.2 8.8-1.9 17.65-14.4m-35.7-.45q-3.2-10.2-2.3-24.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.8 112q-2.3-2.9-2.6-6.1 3.65-.4 5.5-1.5m-5.5 1.5q2.65 2.45 5.95 2.85"/><animate attributeName="mask" repeatCount="indefinite" dur="1.708s" keyTimes="0;0;1" values="null;none;none"/></g></svg>
@@ -1 +0,0 @@
1
- <svg baseProfile="basic" width="176" height="129" xmlns="http://www.w3.org/2000/svg"><path fill="#FFF" d="M176.05-.15H-.05V129.2h176.1V-.15"/><path fill="#317C99" d="M100.7 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M110.1 141.55H98.4l.3 19.15q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6"/><path fill="#317C99" d="M75.5 78.25h-3.35l1.05 63.3h11.7l-9.4-63.3"/><path fill="#FF5B80" d="M73.5 160.7q-.1 5 4.15 5.45h6.3q4.2-.25 3.85-5l-2.9-19.6H73.2l.3 19.15"/><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M123.45 65.15q16.85-4.3 37.95-10.05m-37.95 10.05q-16.85 4.3-16.9 4.3m55.3-14.5l.05.05q3.7-.5 2.65 2.25m-2.7-2.3q-.4-6.1-4.3-7.45m4.3 7.45q2.7-4.4 4.3-2.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M106.65 70l4-1.95q5.1-2.4 11.6-4.6 18.8-6.5 41.7-9.2m4.75-2.05q-1.45-2.2-4.45 1.95l.05.05q3.75-.2 2.5 2.45m-2.55-2.5q.05-6.1-3.75-7.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M104.75 66.8l4.45.25q5.65.05 11.3-.85 18.2-2.8 30.15-14.05m.3-.65h.05q1.6-2.25 3.95-1.55m-4 1.55q-4.4-1.55-4.35-5.85m4.35 5.85q-1.7-4.8 1.4-5.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.127;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M123.7 61.8q9.6-3 14.9-1.4 5.8 1.8 3.25 8.35-2.95 7.5-16.55 19.45m-1.6-26.4q-9.85 3-18.3 9.3"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M123.7 61.8q9.6-3 14.9-1.4 5.8 1.8 3.25 8.35-2.95 7.5-16.55 19.45m-1.6-26.4q-9.85 3-18.3 9.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M123.7 61.8q9.6-3 14.9-1.4 5.8 1.8 3.25 8.35-2.95 7.5-16.55 19.45m-1.6-26.4q-9.85 3-18.3 9.3m25.4 16.7q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.079;0.127;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 59.7q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 59.7q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.2 59.7q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3m25 16.35q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.048;0.079;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#0D2B35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M122.2 58.3q9.3-3 14.4-1.4 5.6 1.8 3.15 8.35-2.85 7.5-16 19.45m-1.55-26.4q-9.5 3-17.7 9.3m25 16.75q-2.05 1.05-5.5 1.1 2.45 2.55 5.7 3.15m-5.7-3.15q.05 3.55 2.3 6.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.048;1" values="inline;none;none"/></g><g transform="translate(42.55 23.3)"><animateTransform attributeName="transform" additive="replace" type="translate" dur="2.625s" keyTimes="0;0.047;0.048;0.079;0.08;0.127;0.128;0.174;0.175;0.238;0.239;1" values="87.319,58.774;87.319,58.774;87.319,60.174;87.319,60.174;87.39,62.251;87.39,62.251;86.526,55.899;86.526,55.899;87.319,59.474;87.319,59.474;87.319,58.774;87.319,58.774" calcMode="discrete" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="rotate" dur="2.625s" keyTimes="0;0.079;0.08;0.127;0.128;0.174;0.175;1" values="-0.128,0,0;-0.128,0,0;-0.132,0,0;-0.132,0,0;-0.121,0,0;-0.121,0,0;-0.128,0,0;-0.128,0,0" calcMode="discrete" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="skewY" dur="2.625s" keyTimes="0;0.079;0.08;0.127;0.128;0.174;0.175;1" values="0;0;0.009;0.009;-0.014;-0.014;0;0" calcMode="discrete" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="scale" dur="2.625s" keyTimes="0;0.079;0.08;0.127;0.128;0.174;0.175;1" values="1,1;1,1;1.035,1;1.035,1;0.965,1.02;0.965,1.02;1,1;1,1" calcMode="discrete" fill="freeze"/><animateTransform attributeName="transform" additive="sum" type="translate" dur="2.625s" keyTimes="0;0.079;0.08;0.127;0.128;0.174;0.175;1" values="-44.7,-35.6;-44.7,-35.6;-44.65,-35.55;-44.65,-35.55;-44.75,-35.55;-44.75,-35.55;-44.7,-35.6;-44.7,-35.6" calcMode="discrete" fill="freeze"/><path fill="#FF5B80" d="M57.2 29.25L45.35 13.3q-4.8-5.6-8.4.6L26.9 31.5l30.3-2.25"/><path fill="#317C99" d="M10.8 59.8l-2.6 4.6q-1.9 3.3-.25 5.45 1.55 2 4.7 1.75L34.7 70l39.5-2.75q4.6-.05 6.15-2.5 1.55-2.45-1.1-5.85l-2.8-3.7L57.2 29.25 26.9 31.5 10.8 59.8"/><path fill="none" stroke="#317C99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M41 9.75l.15-.35-.6-7.75m.6 7.75l4.05-6.85M41 9.75l-5.05-6.5"/></g><g display="none"><path fill="#0E2D38" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M85.15 83.65q2.7 2.5 6.2 2.25t5.8-3.15q2.25-2.85 2-6.55L82.2 77.55q.35 3.65 2.95 6.1"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.254;1" values="none;inline;inline"/></g><g display="none"><path fill="#0E2D38" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M91.4 86.15q3.65-.25 6.1-3.3 2.35-3 2.1-6.9L81.8 77.4q.35 3.8 3.1 6.4 2.8 2.6 6.5 2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.254;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M99.15 76.9L82.2 78.25q.35 3.65 2.95 6.1 2.7 2.5 6.2 2.25t5.8-3.15q2.25-2.85 2-6.55"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.238;1" values="none;inline;none;none"/></g><g display="none"><path fill="#0E2D38" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M86.2 85q2.05-.75 2.35-2.5L75.8 78.7q-.2 1.8 1.25 3.6 1.75 1.9 4.35 2.7 2.6.75 4.8 0"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.127;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M87.95 89.25q-1.5.7-3.3.95-3.6.45-6.4-1.15-2.85-1.6-3.25-4.3-.05-.4 0-.8"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.079;0.127;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M81.55 88.65q.15-.2.3-.55.85-1.75.5-3.5-.45-1.75-1.8-2.45-1.5-.75-3.15-.05t-2.55 2.5q-.15.3-.3.55l7 3.5"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M87.55 87.75q-1.65.75-3.65 1-3.95.45-7.05-1.35-3.05-1.9-3.4-4.95-.05-.5-.05-.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.048;0.079;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M81.55 87.25q.15-.2.3-.55.85-1.75.5-3.5-.45-1.75-1.8-2.45-1.5-.75-3.15-.05t-2.55 2.5q-.15.3-.3.55l7 3.5"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M87.55 86.35q-1.65.75-3.65 1-3.95.45-7.05-1.35-3.05-1.9-3.4-4.95-.05-.5-.05-.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;0.048;1" values="none;inline;none;none"/></g><g><path fill="#FF5B80" d="M71.35 81.15q-.25.4-.45.7l8.2 5.45q.3-.25.55-.65 1.35-2.1 1.1-4.35-.3-2.3-1.9-3.4-1.75-1.15-3.95-.5-2.2.65-3.55 2.75"/><path fill="none" stroke="#0E2D38" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M86.85 87.05q-2.15.7-4.7.7-5.1 0-8.7-2.8-3.6-2.75-3.6-6.7 0-.6.1-1.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;1" values="inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M101.35 59.1Q98.9 56 93.5 55.8m-18.8 5.65q1.9-3.15 7.55-4.45"/><path fill="#0E2D38" d="M98.45 65.15q1-.6 1.2-1.85.15-1.2-.6-2.25-.7-.9-1.9-1.1-1.2-.15-2.2.5-.95.8-1.1 2-.2 1.25.5 2.1.75 1.05 1.95 1.2 1.2.2 2.15-.6M82.1 67.1q.95-.75 1.05-2 .1-1.15-.75-2.1-.7-.95-1.85-1.1-1.3-.05-2.15.75-1 .8-1.05 1.9-.2 1.25.6 2.1.8 1.05 2 1.1 1.2.15 2.15-.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;1" values="none;inline;inline"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M101.35 58.9q-2.45-3.1-7.85-3.3m-18.8 5.65q1.9-3.15 7.55-4.45"/><path fill="#0E2D38" d="M99.8 63.3q.15-1.25-.6-2.35-.75-.95-2-1.15-1.3-.15-2.35.5-1 .85-1.15 2.1-.2 1.35.55 2.25.8 1.1 2.05 1.25 1.25.2 2.25-.65 1.05-.6 1.25-1.95m-17.6 3.9q1-.8 1.1-2.1.1-1.2-.8-2.2-.75-1-1.95-1.15-1.35-.05-2.25.8-1.05.8-1.1 2-.2 1.3.6 2.2.85 1.1 2.1 1.15 1.3.15 2.3-.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.238;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M101.35 58.85q-2.25-3.6-7.85-3.3M74.7 61.2q1.9-3.95 7.55-4.45"/><path fill="#0E2D38" d="M94.45 65.15q.7 1 1.85 1.15 1.15.2 2.05-.55.95-.6 1.15-1.75.15-1.15-.6-2.15-.65-.85-1.8-1.05-1.15-.15-2.1.5-.9.75-1.05 1.9-.15 1.15.5 1.95M82 67.7q.9-.7 1-1.9.1-1.1-.7-2-.65-.9-1.75-1.05-1.25-.05-2.05.7-.95.8-1 1.8-.2 1.2.55 2 .8 1 1.9 1.05 1.15.15 2.05-.6"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M90.288 61.685l8.936-1.688m-8.936 1.688l5.901 3.499m-10.897-2.633l-5.946 3.619m5.946-3.619l-9.6-1.343"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.127;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M90.789 69.101l8.072-5m-8.072 5l7.296.85m-11.185-.04l-7.236 1.667m7.236-1.667l-9.406-4.041"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.079;0.127;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M91.001 67.001l7.8-5m-7.8 5l7.05.85m-11.591-.04l-6.992 1.667m6.992-1.667l-9.089-4.041"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.048;0.079;1" values="none;inline;none;none"/></g><g display="none"><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M91.451 65.601l7.8-5m-7.8 5l7.05.85m-12.491-.04l-6.992 1.667m6.992-1.667l-9.089-4.041"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;0.048;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#0E2D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M100.3 60l-8.6 1.35m-16.4 2.7l9.85-1.55"/><path fill="#0E2D38" d="M93.85 62.45q-.2 1.25.5 2.1.75 1.05 1.95 1.2 1.2.2 2.15-.6 1-.6 1.2-1.85.15-1.2-.6-2.25-.7-.9-1.9-1.1-1.2-.15-2.2.5-.95.8-1.1 2M83.05 66q.25-1.1-.4-2.2-.6-1-1.7-1.35-1.25-.2-2.25.45-1.1.65-1.3 1.75-.35 1.2.3 2.15.65 1.15 1.85 1.35 1.15.35 2.2-.3 1.05-.6 1.3-1.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;1" values="inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 64.6q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3m-2.2 2.1q.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2m-1-2.1q.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.905;1" values="none;inline;inline"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.05 2.95q.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2m-.95-1.75q.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.873;0.905;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 64.6q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3m-1.75 1.9q.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2m-1.15-1.75q.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.651;0.683;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-1.8 2.45q0-.3-.25-.45-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5m-.9-1.4q.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.619;0.651;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 64.6q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3m-1.75.95q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45m-.65-1.35q0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.587;0.619;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.5 1.8q-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2m-.2-1.5q-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.556;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M82.05 63.85q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-3 1.7q-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2m-.25-1.85q-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.524;0.556;0.714;0.746;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.55 64.4q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3m-2.85 1.7q0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45m-.1-2.15q-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.492;0.524;0.683;0.714;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 64.6q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3M80.2 66q0-.3-.25-.45-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5m-1.1-1.4q.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.397;0.429;0.841;0.873;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.05 2q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45m-.45-1.35q0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.365;0.397;0.81;0.841;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 64.6q.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3m-2.2.75q-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2m-.4-1.5q-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.333;0.365;0.778;0.81;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.95 2q-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2m-.05-1.85q-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.302;0.333;0.746;0.778;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.7 63.2q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65M78.8 66q0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45m-.3-2.15q-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;0.302;0.46;0.492;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 63.65q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.95 2.95q.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5m-.55-2.3q0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.27;0.429;0.46;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81 64.9q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.95 1.6q.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5m-.75-2.3q0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.238;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M81.9 64.35q0-.45-.35-.65-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75m-2.5 3.15q.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2m-.8-2.1q.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.4 62.85q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.95 1.6q.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5m-.75-2.3q0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.905;1" values="none;inline;inline"/></g><g display="none"><path fill="#70B7D1" d="M97.25 62.65q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.45 2.1q.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2m-.8-2.1q.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.873;0.905;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.4 62.85q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.5 1.8q.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2m-1-2.1q.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.651;0.683;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.25 62.65q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1 1.9q.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2m-.95-1.75q.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.619;0.651;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.4 62.85q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-.8 1.1q0-.3-.25-.45-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5m-1.1-1.4q.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.587;0.619;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.25 62.65q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1 .95q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45m-.45-1.35q0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.556;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.75 61.15q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-.85 2.15q-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2m-.4-1.5q-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.524;0.556;0.714;0.746;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.6 60.95q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-1.25 2.65q-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2m-.05-1.85q-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.492;0.524;0.683;0.714;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.4 62.85q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.05 1.6q.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2M95.2 62.7q.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.397;0.429;0.841;0.873;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.25 62.65q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-.75 1.4q0-.3-.25-.45-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5m-.9-1.4q.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.365;0.397;0.81;0.841;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.4 62.85q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.05.65q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45m-.65-1.35q0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.333;0.365;0.778;0.81;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.6 60.95q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-.8 2.45q-.3 0-.45.2-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2m-.2-1.5q-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.302;0.333;0.746;0.778;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.75 61.15q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-1.3 2.35q-.25.15-.25.45 0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2m-.25-1.85q-.2 0-.3.15-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;0.302;0.46;0.492;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.6 60.95q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-1.5 3.1q0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45M95 61.9q-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.27;0.429;0.46;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M96.75 61.15q-.35.2-.35.65t.35.75q.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3m-1.55 2.8q0 .3.25.5.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45m-.3-2.15q-.2.15-.2.35 0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.238;1" values="none;inline;none;none"/></g><g display="none"><path fill="#70B7D1" d="M97.25 63.35q.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65t.35.75q.25.3.65.3m-1.9 1.9q.15.2.45.2.3 0 .45-.2.25-.2.25-.5t-.25-.45q-.15-.2-.45-.2-.3 0-.45.2-.25.15-.25.45 0 .3.25.5m-.55-2.3q0 .25.2.4.1.15.3.15.2 0 .3-.15.2-.15.2-.4 0-.2-.2-.35-.1-.15-.3-.15-.2 0-.3.15-.2.15-.2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.206;1" values="none;inline;none;none"/></g><g><path fill="#5CB8D6" d="M113.45 86.15q2.5-3.8 2.25-8.7L94 79.9q.8 4.85 4.1 7.95 3.65 3.65 8.2 3.15 4.45-.5 7.15-4.85"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M115.7 77.45L94 79.9"/><path fill="#5CB8D6" d="M114.5 93.45q-3.65-3.55-8.1-3.1-4.55.55-7.25 4.85-2.55 3.8-2.2 8.65l21.65-2.45q-.85-4.85-4.1-7.95"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M96.95 103.85l21.65-2.45"/><path fill="#FF5B80" d="M112.8 96.2q-2.75-2.05-6.05-1.7-2.05.25-3.35.9-1.3.65-2.35 2.05-1.05 1.35-1.7 4.35l16.25-1.75q-1.3-2.7-2.8-3.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;1" values="inline;none;none"/></g><g><g display="none"><path fill="#5CB8D6" d="M116.2 95.1l-21.8.7q.4 4.95 3.45 8.3 3.35 3.9 7.95 3.75 4.45-.15 7.5-4.3 2.75-3.6 2.9-8.45"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M116.2 95.1l-21.8.7"/><path fill="#5CB8D6" d="M117.25 119.15q-.5-4.9-3.5-8.2-3.35-3.85-7.8-3.7-4.6.15-7.65 4.2-2.8 3.6-2.8 8.5l21.75-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.5 119.95l21.75-.8"/><path fill="#FF5B80" d="M102.55 112q-1.35.55-2.5 1.85T98 118.1l16.35-.5q-1.1-2.8-2.45-4.1-2.6-2.2-5.95-2.1-2.05.1-3.4.6"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.85 76.8q-2.65 18.5 4.8 31.3 9.2 15.6 30.25 12.5m2.9 5.5q-2.35-2.6-2.7-5.6 3.6-.45 5.45-1.45m-5.45 1.45q2.75 2.25 6 2.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;1" values="none;inline;inline"/></g><g display="none"><path fill="#5CB8D6" d="M116.2 96.3l-21.8.7q.4 4.95 3.45 8.3 3.35 3.9 7.95 3.75 4.45-.15 7.5-4.3 2.75-3.6 2.9-8.45"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M116.2 96.3l-21.8.7"/><path fill="#5CB8D6" d="M117.25 120.35q-.5-4.9-3.5-8.2-3.35-3.85-7.8-3.7-4.6.15-7.65 4.2-2.8 3.6-2.8 8.5l21.75-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.5 121.15l21.75-.8"/><path fill="#FF5B80" d="M102.55 113.2q-1.35.55-2.5 1.85T98 119.3l16.35-.5q-1.1-2.8-2.45-4.1-2.6-2.2-5.95-2.1-2.05.1-3.4.6"/><path fill="none" stroke="#1A404F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M60.85 76.8q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.85 76.8q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3m2.9 5.9q-2.35-2.8-2.7-6 3.6-.45 5.45-1.55m-5.45 1.55q2.75 2.4 6 2.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M114.45 93.85l-21.05.75q.35 5.05 3.3 8.45 3.25 3.95 7.7 3.8 4.3-.15 7.25-4.35 2.65-3.7 2.8-8.65"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M114.45 93.85l-21.05.75"/><path fill="#5CB8D6" d="M115.45 118.4q-.5-5-3.4-8.35-3.2-3.95-7.5-3.8-4.45.15-7.4 4.3-2.7 3.65-2.7 8.65l21-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M94.45 119.2l21-.8"/><path fill="#FF5B80" d="M101.25 111.1q-1.3.55-2.4 1.9-1.1 1.3-2 4.3l15.8-.5q-1.05-2.85-2.35-4.15-2.55-2.25-5.75-2.15-2 .1-3.3.6"/><path fill="none" stroke="#1A404F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M61 74q-2.55 20.05 4.65 33.95 8.85 16.9 29.2 13.55"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M61 74q-2.55 20.05 4.65 33.95 8.85 16.9 29.2 13.55m4.25 5.55q-2.45-2.7-2.95-5.9 3.6-.6 5.4-1.8m-5.4 1.8q2.85 2.3 6.1 2.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.127;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M114.2 110.05q2.85-3.6 3-8.45l-22.55.7q.4 4.95 3.55 8.3 3.45 3.9 8.2 3.75 4.65-.15 7.8-4.3"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M117.2 101.6l-22.55.7"/><path fill="#5CB8D6" d="M118.25 125.65q-.5-4.9-3.6-8.2-3.45-3.85-8.05-3.7-4.8.15-7.95 4.2-2.9 3.6-2.9 8.5l22.5-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.75 126.45l22.5-.8"/><path fill="#FF5B80" d="M100.45 120.35q-1.15 1.3-2.1 4.25l16.9-.5q-1.1-2.8-2.5-4.1-2.7-2.2-6.15-2.1-2.15.1-3.55.6-1.4.55-2.6 1.85"/><path fill="none" stroke="#1A404F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M59.95 82.1q-2.75 19.7 4.95 33.3 9.55 16.6 31.35 13.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M59.95 82.1q-2.75 19.7 4.95 33.3 9.55 16.6 31.35 13.3m3.1 5.65q-1.85-3.2-1.7-6.4 3.65.15 5.7-.65m-5.7.65q2.3 2.8 5.5 3.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.079;0.127;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M113.3 109.35q2.75-3.6 2.9-8.45l-21.8.7q.4 4.95 3.45 8.3 3.35 3.9 7.95 3.75 4.45-.15 7.5-4.3"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M116.2 100.9l-21.8.7"/><path fill="#5CB8D6" d="M117.25 124.95q-.5-4.9-3.5-8.2-3.35-3.85-7.8-3.7-4.6.15-7.65 4.2-2.8 3.6-2.8 8.5l21.75-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.5 125.75l21.75-.8"/><path fill="#FF5B80" d="M102.55 117.8q-1.35.55-2.5 1.85T98 123.9l16.35-.5q-1.1-2.8-2.45-4.1-2.6-2.2-5.95-2.1-2.05.1-3.4.6"/><path fill="none" stroke="#1A404F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M60.85 81.4q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.85 81.4q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3m2.95 5.85q-1.85-3.2-1.7-6.4 3.65.15 5.7-.65m-5.7.65q2.3 2.8 5.5 3.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.048;0.079;1" values="none;inline;none;none"/></g><g display="none"><path fill="#5CB8D6" d="M113.3 107.95q2.75-3.6 2.9-8.45l-21.8.7q.4 4.95 3.45 8.3 3.35 3.9 7.95 3.75 4.45-.15 7.5-4.3"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M116.2 99.5l-21.8.7"/><path fill="#5CB8D6" d="M117.25 123.55q-.5-4.9-3.5-8.2-3.35-3.85-7.8-3.7-4.6.15-7.65 4.2-2.8 3.6-2.8 8.5l21.75-.8"/><path fill="none" stroke="#5CB8D6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M95.5 124.35l21.75-.8"/><path fill="#FF5B80" d="M102.55 116.4q-1.35.55-2.5 1.85T98 122.5l16.35-.5q-1.1-2.8-2.45-4.1-2.6-2.2-5.95-2.1-2.05.1-3.4.6"/><path fill="none" stroke="#1A404F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M60.85 80q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M60.85 80q-2.65 19.7 4.8 33.3 9.2 16.6 30.25 13.3m2.7 6q-1.85-3.2-1.7-6.4 3.65.15 5.7-.65m-5.7.65q2.3 2.8 5.5 3.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;0.048;1" values="none;inline;none;none"/></g><g><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M62.9 104.95q2.45 7.35 6.6 11.65 4.7 4.7 11.45 3.2 8.8-1.9 17.65-14.4m-35.7-.45q-3.2-10.2-2.3-24.75"/><path fill="none" stroke="#1A3F4E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M100.8 112q-2.3-2.9-2.6-6.1 3.65-.4 5.5-1.5m-5.5 1.5q2.65 2.45 5.95 2.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.016;1" values="inline;none;none"/></g><animate attributeName="mask" repeatCount="1" dur="2.625s" keyTimes="0;0;1" values="null;none;none" fill="freeze"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.55l-2 2.7 2 2.7 2-2.7-2-2.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.984;1" values="none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.6l-1.95 2.65 1.95 2.65 1.95-2.65-1.95-2.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.968;0.984;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.7L52 41.25l1.9 2.55 1.9-2.55-1.9-2.55"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.952;0.968;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.8l-1.85 2.45 1.85 2.45 1.8-2.45-1.8-2.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.937;0.952;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.9l-1.75 2.35 1.75 2.3 1.7-2.3-1.7-2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.921;0.937;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.05l-1.6 2.2 1.6 2.15 1.6-2.15-1.6-2.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.905;0.921;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.25l-1.45 1.95 1.45 2.05 1.45-2.05-1.45-1.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.889;0.905;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.45l-1.3 1.75 1.3 1.85 1.3-1.85-1.3-1.75"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.873;0.889;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.55l-1.2 1.65 1.2 1.7 1.15-1.7-1.15-1.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.365;0.381;0.587;0.603;0.81;0.825;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.4l-1.35 1.8 1.35 1.85 1.3-1.85-1.3-1.8"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.349;0.365;0.571;0.587;0.794;0.81;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.2l-1.5 2 1.5 2.1 1.5-2.1-1.5-2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.333;0.349;0.556;0.571;0.778;0.794;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.9l-1.75 2.35 1.75 2.35 1.75-2.35-1.75-2.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.317;0.333;0.54;0.556;0.762;0.778;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M51.85 41.25L53.9 44l2.05-2.75-2.05-2.75-2.05 2.75"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;0.317;0.492;0.54;0.714;0.762;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.6l-2 2.65 2 2.65 2-2.65-2-2.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.254;0.27;0.476;0.492;0.698;0.714;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.75l-1.85 2.5 1.85 2.5 1.85-2.5-1.85-2.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.254;0.46;0.476;0.683;0.698;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 38.95l-1.7 2.3 1.7 2.25 1.65-2.25-1.65-2.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.222;0.238;0.444;0.46;0.667;0.683;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.25l-1.45 1.95 1.45 2 1.4-2-1.4-1.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.222;0.429;0.444;0.651;0.667;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M52.75 41.2l1.15 1.6 1.1-1.6-1.1-1.55-1.15 1.55"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.19;0.206;0.381;0.429;0.603;0.651;0.825;0.873;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.9 39.9l-.95 1.3.95 1.35.95-1.35-.95-1.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.19;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M53.35 41.2l.55.8.55-.8-.55-.75-.55.75"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.159;0.175;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.2l-2.9 3.95L58 37.1l2.95-3.95L58 29.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.984;1" values="none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M58 29.5l-2.7 3.65L58 36.8l2.7-3.65L58 29.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.968;0.984;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.95l-2.35 3.2 2.35 3.2 2.4-3.2-2.4-3.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.952;0.968;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.55l-1.85 2.6 1.85 2.6 1.95-2.6-1.95-2.6"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.937;0.952;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.2l-2.95 3.95L58 37.1l2.95-3.95L58 29.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.524;0.54;0.778;0.794;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.4l-2.8 3.75L58 36.9l2.8-3.75L58 29.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.508;0.524;0.762;0.778;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.15l-2.2 3 2.2 3 2.25-3-2.25-3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.476;0.492;0.73;0.746;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.7l-1.8 2.45L58 35.6l1.85-2.45L58 30.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.46;0.476;0.714;0.73;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 31.15l-1.4 2 1.4 2 1.5-2-1.5-2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.397;0.413;0.651;0.667;0.905;0.921;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.95l-1.55 2.2 1.55 2.2 1.65-2.2-1.65-2.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.381;0.397;0.635;0.651;0.889;0.905;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.65l-1.8 2.5 1.8 2.5 1.9-2.5-1.9-2.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.365;0.381;0.619;0.635;0.873;0.889;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.2l-2.15 2.95L58 36.1l2.2-2.95L58 30.2"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.349;0.365;0.603;0.619;0.857;0.873;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.65l-2.55 3.5 2.55 3.5 2.6-3.5-2.6-3.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.333;0.349;0.587;0.603;0.841;0.857;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 37.25l3.05-4.1-3.05-4.1-3.05 4.1 3.05 4.1"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.286;0.333;0.54;0.587;0.794;0.841;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.25l-2.9 3.9 2.9 3.9 2.9-3.9-2.9-3.9"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;0.286;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 29.7l-2.55 3.45L58 36.6l2.55-3.45L58 29.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.254;0.27;0.492;0.508;0.746;0.762;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 30.4l-2 2.75 2 2.75 2.05-2.75L58 30.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.254;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M59.4 33.15L58 31.3l-1.3 1.85L58 35l1.4-1.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.222;0.238;0.413;0.46;0.667;0.714;0.921;0.937;1" values="none;inline;none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58 31.6l-1.1 1.55 1.1 1.6 1.2-1.6L58 31.6"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.222;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M58.7 33.15l-.7-.9-.65.9.65.95.7-.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.19;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M66 44.45l-3.95-5.35-3.9 5.35 3.9 5.35L66 44.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.984;1" values="none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M65.95 44.45l-3.9-5.25-3.85 5.25 3.85 5.25 3.9-5.25"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.968;0.984;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M65.85 44.45l-3.8-5.15-3.75 5.15 3.75 5.15 3.8-5.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.952;0.968;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.45l-3.65 5 3.65 4.95 3.7-4.95-3.7-5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.937;0.952;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.65l-3.5 4.8 3.5 4.8 3.55-4.8-3.55-4.8"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.921;0.937;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.85l-3.35 4.6L62.05 49l3.4-4.55-3.4-4.6"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.905;0.921;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.1l-3.15 4.35 3.15 4.3 3.2-4.3-3.2-4.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.889;0.905;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.4l-2.95 4.05 2.95 4.05 3-4.05-3-4.05"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.873;0.889;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.7l-2.75 3.75 2.75 3.7 2.75-3.7-2.75-3.75"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.857;0.873;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 41.05l-2.45 3.4 2.45 3.4 2.5-3.4-2.5-3.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.841;0.857;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M66 44.45l-3.95-5.3-3.9 5.3 3.9 5.3 3.95-5.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.619;0.635;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M65.85 44.45l-3.8-5.15-3.8 5.15 3.8 5.15 3.8-5.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.603;0.619;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.5l-3.6 4.95 3.6 4.95 3.65-4.95-3.65-4.95"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.587;0.603;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.75l-3.45 4.7 3.45 4.7 3.45-4.7-3.45-4.7"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.571;0.587;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.1l-3.2 4.35 3.2 4.35 3.2-4.35-3.2-4.35"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.556;0.571;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.45l-2.9 4 2.9 3.95 2.9-3.95-2.9-4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.54;0.556;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.9l-2.55 3.55 2.55 3.5 2.6-3.5-2.6-3.55"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.524;0.54;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 41.3l-2.25 3.15 2.25 3.1 2.25-3.1-2.25-3.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.46;0.476;0.778;0.794;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 41.15l-2.35 3.3 2.35 3.25 2.4-3.25-2.4-3.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.444;0.46;0.762;0.778;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.95l-2.55 3.5 2.55 3.45 2.55-3.45-2.55-3.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.429;0.444;0.746;0.762;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.7l-2.7 3.75 2.7 3.7 2.75-3.7-2.75-3.75"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.413;0.429;0.73;0.746;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.35l-2.95 4.1 2.95 4.05 3-4.05-3-4.1"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.397;0.413;0.714;0.73;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40l-3.25 4.45 3.25 4.45 3.3-4.45-3.3-4.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.381;0.397;0.698;0.714;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.55l-3.6 4.9 3.6 4.9 3.6-4.9-3.6-4.9"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.365;0.381;0.683;0.698;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M66.05 44.45l-4-5.4-3.95 5.4 3.95 5.4 4-5.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.317;0.365;0.635;0.683;1" values="none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M65.95 44.45l-3.9-5.3-3.85 5.3 3.85 5.3 3.9-5.3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.302;0.317;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M65.85 44.45l-3.8-5.1-3.75 5.1 3.75 5.1 3.8-5.1"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.286;0.302;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.6l-3.55 4.85 3.55 4.85 3.6-4.85-3.6-4.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.27;0.286;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 39.95l-3.3 4.5 3.3 4.5 3.3-4.5-3.3-4.5"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.254;0.27;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.35l-3 4.1 3 4.1 3-4.1-3-4.1"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.238;0.254;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 40.85l-2.6 3.6 2.6 3.6 2.65-3.6-2.65-3.6"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.222;0.238;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 47.45l2.2-3-2.2-3.05-2.2 3.05 2.2 3"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.206;0.222;0.476;0.524;0.794;0.841;1" values="none;inline;none;inline;none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 42.05l-1.75 2.4 1.75 2.35 1.75-2.35-1.75-2.4"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.19;0.206;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M62.05 45.3l.65-.85-.65-.95-.65.95.65.85"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.175;0.19;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M56.1 51.25q0 .45.35.75.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65m9.85-14.2q.5-.45.5-1.15 0-.65-.5-.95-.4-.45-1.05-.45-.6 0-1 .45-.5.3-.5.95 0 .7.5 1.15.4.45 1 .45.65 0 1.05-.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.54;0.635;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M56.1 51.25q0 .45.35.75.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.46;0.54;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M51.35 34.9q-.2.15-.2.4 0 .3.2.45.15.2.4.2t.4-.2q.2-.15.2-.45 0-.25-.2-.4-.15-.15-.4-.15t-.4.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.381;0.46;0.714;1" values="none;inline;none;inline;inline"/></g><g display="none"><path fill="#FF5B80" d="M65.95 37.05q.5-.45.5-1.15 0-.65-.5-.95-.4-.45-1.05-.45-.6 0-1 .45-.5.3-.5.95 0 .7.5 1.15.4.45 1 .45.65 0 1.05-.45"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.317;0.381;1" values="none;inline;none;none"/></g><g display="none"><path fill="#FF5B80" d="M56.1 51.25q0 .45.35.75.25.3.65.3.45 0 .7-.3.35-.3.35-.75t-.35-.65q-.25-.3-.7-.3-.4 0-.65.3-.35.2-.35.65M51.35 34.9q-.2.15-.2.4 0 .3.2.45.15.2.4.2t.4-.2q.2-.15.2-.45 0-.25-.2-.4-.15-.15-.4-.15t-.4.15"/><animate attributeName="display" fill="freeze" repeatCount="1" dur="2.625s" keyTimes="0;0.254;0.317;0.635;0.714;1" values="none;inline;none;inline;none;none"/></g></svg>