asir 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. data/.gitignore +11 -0
  2. data/Gemfile +16 -0
  3. data/README.textile +50 -0
  4. data/Rakefile +83 -0
  5. data/VERSION +1 -0
  6. data/asir.gemspec +36 -0
  7. data/asir.riterate.yml +114 -0
  8. data/bin/asir +6 -0
  9. data/doc/Rakefile +8 -0
  10. data/doc/asir-sequence.pic +84 -0
  11. data/doc/asir-sequence.svg +1559 -0
  12. data/doc/sequence.pic +430 -0
  13. data/example/asir_control.sh +24 -0
  14. data/example/asir_control_client_http.rb +14 -0
  15. data/example/asir_control_client_zmq.rb +15 -0
  16. data/example/config/asir_config.rb +63 -0
  17. data/example/delayed_service.rb +15 -0
  18. data/example/ex01.rb +12 -0
  19. data/example/ex02.rb +12 -0
  20. data/example/ex03.rb +19 -0
  21. data/example/ex04.rb +33 -0
  22. data/example/ex05.rb +16 -0
  23. data/example/ex06.rb +26 -0
  24. data/example/ex07.rb +28 -0
  25. data/example/ex08.rb +30 -0
  26. data/example/ex09.rb +25 -0
  27. data/example/ex10.rb +24 -0
  28. data/example/ex11.rb +48 -0
  29. data/example/ex12.rb +34 -0
  30. data/example/ex13.rb +35 -0
  31. data/example/ex14.rb +30 -0
  32. data/example/ex15.rb +13 -0
  33. data/example/ex16.rb +33 -0
  34. data/example/ex17.rb +41 -0
  35. data/example/ex18.rb +62 -0
  36. data/example/ex19.rb +32 -0
  37. data/example/ex20.rb +28 -0
  38. data/example/ex21.rb +28 -0
  39. data/example/ex22.rb +15 -0
  40. data/example/ex23.rb +20 -0
  41. data/example/ex24.rb +35 -0
  42. data/example/example_helper.rb +51 -0
  43. data/example/sample_service.rb +162 -0
  44. data/example/unsafe_service.rb +12 -0
  45. data/hack_night/README.txt +18 -0
  46. data/hack_night/exercise/prob-1.rb +18 -0
  47. data/hack_night/exercise/prob-2.rb +21 -0
  48. data/hack_night/exercise/prob-3.rb +16 -0
  49. data/hack_night/exercise/prob-4.rb +36 -0
  50. data/hack_night/exercise/prob-5.rb +36 -0
  51. data/hack_night/exercise/prob-6.rb +95 -0
  52. data/hack_night/exercise/prob-7.rb +34 -0
  53. data/hack_night/solution/math_service.rb +11 -0
  54. data/hack_night/solution/prob-1.rb +12 -0
  55. data/hack_night/solution/prob-2.rb +15 -0
  56. data/hack_night/solution/prob-3.rb +17 -0
  57. data/hack_night/solution/prob-4.rb +37 -0
  58. data/hack_night/solution/prob-5.rb +21 -0
  59. data/hack_night/solution/prob-6.rb +33 -0
  60. data/hack_night/solution/prob-7.rb +36 -0
  61. data/lab/phony_proc.rb +31 -0
  62. data/lib/asir.rb +253 -0
  63. data/lib/asir/additional_data.rb +25 -0
  64. data/lib/asir/channel.rb +130 -0
  65. data/lib/asir/client.rb +111 -0
  66. data/lib/asir/code_block.rb +57 -0
  67. data/lib/asir/code_more.rb +50 -0
  68. data/lib/asir/coder.rb +26 -0
  69. data/lib/asir/coder/base64.rb +19 -0
  70. data/lib/asir/coder/chain.rb +30 -0
  71. data/lib/asir/coder/identity.rb +23 -0
  72. data/lib/asir/coder/json.rb +30 -0
  73. data/lib/asir/coder/marshal.rb +17 -0
  74. data/lib/asir/coder/null.rb +23 -0
  75. data/lib/asir/coder/proc.rb +22 -0
  76. data/lib/asir/coder/sign.rb +48 -0
  77. data/lib/asir/coder/xml.rb +213 -0
  78. data/lib/asir/coder/yaml.rb +33 -0
  79. data/lib/asir/coder/zlib.rb +21 -0
  80. data/lib/asir/configuration.rb +32 -0
  81. data/lib/asir/error.rb +34 -0
  82. data/lib/asir/identity.rb +36 -0
  83. data/lib/asir/initialization.rb +23 -0
  84. data/lib/asir/log.rb +82 -0
  85. data/lib/asir/main.rb +396 -0
  86. data/lib/asir/message.rb +31 -0
  87. data/lib/asir/message/delay.rb +35 -0
  88. data/lib/asir/object_resolving.rb +15 -0
  89. data/lib/asir/result.rb +39 -0
  90. data/lib/asir/retry_behavior.rb +54 -0
  91. data/lib/asir/transport.rb +241 -0
  92. data/lib/asir/transport/beanstalk.rb +217 -0
  93. data/lib/asir/transport/broadcast.rb +34 -0
  94. data/lib/asir/transport/buffer.rb +115 -0
  95. data/lib/asir/transport/composite.rb +19 -0
  96. data/lib/asir/transport/connection_oriented.rb +180 -0
  97. data/lib/asir/transport/delay.rb +38 -0
  98. data/lib/asir/transport/delegation.rb +53 -0
  99. data/lib/asir/transport/fallback.rb +36 -0
  100. data/lib/asir/transport/file.rb +88 -0
  101. data/lib/asir/transport/http.rb +54 -0
  102. data/lib/asir/transport/local.rb +21 -0
  103. data/lib/asir/transport/null.rb +14 -0
  104. data/lib/asir/transport/payload_io.rb +52 -0
  105. data/lib/asir/transport/rack.rb +73 -0
  106. data/lib/asir/transport/retry.rb +41 -0
  107. data/lib/asir/transport/stream.rb +35 -0
  108. data/lib/asir/transport/subprocess.rb +30 -0
  109. data/lib/asir/transport/tcp_socket.rb +34 -0
  110. data/lib/asir/transport/webrick.rb +50 -0
  111. data/lib/asir/transport/zmq.rb +110 -0
  112. data/lib/asir/uuid.rb +32 -0
  113. data/lib/asir/version.rb +3 -0
  114. data/spec/const_get_speed_spec.rb +33 -0
  115. data/spec/debug_helper.rb +20 -0
  116. data/spec/example_spec.rb +88 -0
  117. data/spec/json_spec.rb +128 -0
  118. data/spec/spec_helper.rb +3 -0
  119. data/spec/xml_spec.rb +144 -0
  120. data/stylesheets/slides.css +105 -0
  121. metadata +173 -0
@@ -0,0 +1,11 @@
1
+ .DS_Store
2
+ *.slides*
3
+ .riterate
4
+ service.fifo
5
+ service.log
6
+ example/*service.log
7
+ example/*.out
8
+ coverage
9
+ tmp.*
10
+ cabar.yml
11
+
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ # -*- ruby -*-
2
+ source "http://rubygems.org"
3
+ gem 'uuid', '~> 2.3.5'
4
+ # gem 'json', '~> 1.6.5' # Fails to load under jruby 1.6.6
5
+ gem 'libxml-ruby', '~> 2.2.2'
6
+ gem 'httpclient', '~> 2.2.4'
7
+ gem 'zmq', '~> 2.1.4'
8
+
9
+ group :development do
10
+ # gem "bundler", "~> 1.0.0"
11
+ gem 'jeweler'
12
+ gem "rspec", "~> 2.0"
13
+
14
+ require File.expand_path('../spec/debug_helper', __FILE__)
15
+ end
16
+
@@ -0,0 +1,50 @@
1
+ h1. Abstracting Services in Ruby
2
+
3
+ * Kurt Stephens
4
+ * 2010/08/19
5
+ * Slides -- "http://kurtstephens.com/pub/abstracting_services_in_ruby/asir.slides/":http://kurtstephens.com/pub/abstracting_services_in_ruby/asir.slides/
6
+ * Code -- "http://kurtstephens.com/pub/abstracting_services_in_ruby/":http://kurtstephens.com/pub/abstracting_services_in_ruby/
7
+ * Git -- "http://github.com/kstephens/abstractiing_services_in_ruby":http://github.com/kstephens/abstractiing_services_in_ruby
8
+
9
+ h2. Objectives
10
+
11
+ * Simplify service/client definitions.
12
+ * Anticipate new encoding, delivery and security requirements.
13
+ * Separate request/response encoding and delivery for composition.
14
+ * Elide deployment decisions.
15
+ * Integrate diagnostics and logging.
16
+ * Simplify integration testing.
17
+
18
+ h3. Features
19
+
20
+ * One-way and two-way requests as Module or instance methods.
21
+ * Request support:
22
+ ** Delayed requests.
23
+ ** Request meta-data: UUID, Timestamp.
24
+ * Support for multiple request/response transports:
25
+ ** File.
26
+ ** Named Pipe.
27
+ ** TCP.
28
+ ** HTTP under WEBrick or as Rack application.
29
+ ** Beanstalkd.
30
+ ** ZeroMQ.
31
+ ** Buffered transports.
32
+ ** Broadcast transports.
33
+ ** Fallback transports.
34
+ ** Time-decaying retry logic.
35
+ * Support for multiple encodings:
36
+ ** Marshal.
37
+ ** XML.
38
+ ** JSON.
39
+ ** YAML.
40
+ ** Base64.
41
+ ** ZLib.
42
+ ** Chained encodings.
43
+ ** Signed payloads.
44
+
45
+ h2. Platform support.
46
+ * CRuby 1.8.7
47
+ * CRuby 1.9.3-head
48
+ * CRuby 2.0-head
49
+ * JRuby 1.6.x (with JRUBY_OPTS=--1.9) IN-PROGRESS
50
+
@@ -0,0 +1,83 @@
1
+
2
+ # YUCK! http://stackoverflow.com/questions/4755900/how-to-make-jruby-1-6-default-to-ruby-1-9
3
+ ENV['JRUBY_OPTS'] ||= '--1.9'
4
+
5
+ require "bundler/gem_tasks"
6
+
7
+ gem 'rspec'
8
+ require 'rspec/core/rake_task'
9
+
10
+ desc "Run specs"
11
+ RSpec::Core::RakeTask.new(:spec) do |t|
12
+ t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
13
+ # Put spec opts in a file named .rspec in root
14
+ end
15
+
16
+ desc "Generate code coverage"
17
+ RSpec::Core::RakeTask.new(:coverage) do |t|
18
+ t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
19
+ t.rcov = true
20
+ t.rcov_opts = ['--exclude', 'spec']
21
+ end
22
+
23
+ ######################################################################
24
+
25
+ desc "Default => :test"
26
+ task :default => :test
27
+
28
+ desc "Run all tests"
29
+ task :test => [ :spec, :hack_night ]
30
+
31
+ desc "Run examples."
32
+ task :example do
33
+ ENV["ASIR_EXAMPLE_SILENT"]="1"
34
+ Dir["example/ex[0-9]*.rb"].each do | rb |
35
+ sh %Q{ruby -I example -I lib #{rb}}
36
+ end
37
+ ENV.delete("ASIR_EXAMPLE_SILENT")
38
+ end
39
+
40
+ desc "Run hack_night solutions."
41
+ task :hack_night do
42
+ Dir["hack_night/solution/prob-*.rb"].each do | rb |
43
+ sh "ruby -I hack_night/solution #{rb}"
44
+ end
45
+ end
46
+
47
+ desc "Start IRB with ASIR loaded."
48
+ task :irb do
49
+ sh "irb -Ilib -rasir"
50
+ end
51
+
52
+ desc "Create slides."
53
+ task :slides =>
54
+ [
55
+ 'asir.slides/index.html',
56
+ ]
57
+
58
+ ENV['SCARLET'] ||= File.expand_path("../../scarlet/bin/scarlet", __FILE__)
59
+ ENV['RITERATE'] ||= File.expand_path("../../riterate/bin/riterate", __FILE__)
60
+
61
+ SLIDE_RB =
62
+ Dir['lib/**/*.rb'] +
63
+ Dir['example/**/*.rb']
64
+
65
+ file 'asir.slides/index.html' =>
66
+ SLIDE_RB +
67
+ Dir['../riterate/bin/riterate'] +
68
+ [ 'Rakefile' ] +
69
+ Dir["stylesheets/*.*"] +
70
+ Dir["asir.riterate.yml"] do
71
+ sh "$RITERATE --slides_basename=asir --ruby_opts='-I lib -I example' #{SLIDE_RB * " "}"
72
+ end
73
+
74
+ desc "Publish slides."
75
+ task :publish => [ :slides ] do
76
+ sh "rsync $RSYNC_OPTS -aruzv --delete-excluded --delete --exclude='.git' --exclude='.riterate' ./ kscom:kurtstephens.com/pub/ruby/#{File.basename(File.dirname(__FILE__))}/"
77
+ end
78
+
79
+ desc "Clean garbage."
80
+ task :clean do
81
+ sh "rm -rf *.slides* .riterate"
82
+ end
83
+
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.0
@@ -0,0 +1,36 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{asir}
8
+ s.version = "0.2.0"
9
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
10
+ s.authors = ["Kurt Stephens"]
11
+ s.date = %q{2012-04-03}
12
+ s.description = %q{Abstracting Services in Ruby}
13
+ s.email = %q{ks.ruby@kurtstephens.com}
14
+ s.extra_rdoc_files = [
15
+ "README.textile"
16
+ ]
17
+ s.files = `git ls-files`.split("\n")
18
+ s.executables.push(*`git ls-files bin`.split("\n").map{|f| f.gsub('bin/', '')})
19
+ s.homepage = %q{http://github.com/kstephens/abstracting_services_in_ruby}
20
+ s.rdoc_options = ["--charset=UTF-8"]
21
+ s.require_paths = ["lib"]
22
+ s.rubygems_version = %q{1.3.7}
23
+ s.summary = %q{Abstracting Services in Ruby}
24
+ s.test_files = `git ls-files spec`.split("\n")
25
+
26
+ if s.respond_to? :specification_version then
27
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
28
+ s.specification_version = 3
29
+
30
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
31
+ else
32
+ end
33
+ else
34
+ end
35
+ end
36
+
@@ -0,0 +1,114 @@
1
+ ---
2
+ riterate:
3
+ version: "1.0"
4
+ do_not_update: true
5
+ ordered_slides:
6
+ - Abstracting Services in Ruby
7
+ - Stuff Gets Complicated
8
+ - "Back when things were simple..."
9
+ - "Trying to improve user's experience..."
10
+ - "Use other machines to poll a work table..."
11
+ - "Use queue infrastructure"
12
+ - "Issues"
13
+ - "Problem Domain, Solution Domain"
14
+ - "Service Middleware Semantics"
15
+ - "Testing, Debugging, Diagnostics"
16
+ - Objectives
17
+ - Foundations of Objects
18
+ - Messaging
19
+ - REST
20
+ - "Design"
21
+ - "Design: Nouns"
22
+ - "Design: Verbs"
23
+ - "Simple"
24
+ - "Client-Side Message"
25
+ - "Server-Side"
26
+ - "Client-Side Result"
27
+ - Sample Service
28
+ - Using a Client Proxy
29
+ - Example Message
30
+ - Client support for any Module
31
+ - Client Proxy
32
+ - Message
33
+ - Result
34
+ - Coder
35
+ - Identity Coder
36
+ - Transport
37
+ - Client Transport
38
+ - Call service directly
39
+ - "Call service directly - Output"
40
+ - In-core, in-process service
41
+ - Sample Service with Client Support
42
+ - "In-core, in-process service - Output"
43
+ - One-way, asynchronous subprocess service
44
+ - Subprocess Transport
45
+ - "One-way, asynchronous subprocess service - Output"
46
+ - "Subprocess service with continuation"
47
+ - One-way, file log service
48
+ - "One-way, file log service - Output"
49
+ - Replay file log
50
+ - "Replay file log - Output"
51
+ - One-way, named pipe service
52
+ - Named Pipe Server
53
+ - "One-way, named pipe service - Output"
54
+ - Chain Coder
55
+ - One-way, named pipe service with signature
56
+ - "One-way, named pipe service with signature - Output"
57
+ - One-way, named pipe service with invalid signature
58
+ - "One-way, named pipe service with invalid signature - Output"
59
+ - Socket service
60
+ - "Socket service - Output"
61
+ - Socket service with forwarded exception.
62
+ - "Socket service with forwarded exception. - Output"
63
+ - Example Exception
64
+ - Encapsulated Exception
65
+ - "Socket service with local fallback."
66
+ - "Socket service with local fallback. - Output"
67
+ - Implementation
68
+ - Transport
69
+ - Transport#send_message
70
+ - Local Transport
71
+ - Null Transport
72
+ - YAML Coder
73
+ - File Transport
74
+ - File Transport Support
75
+ - Payload IO for Transport
76
+ - Transport#receive_message
77
+ - Process (receive) messages from a file.
78
+ - Stream Transport
79
+ - Serve all Messages from a stream.
80
+ - Serve a Message from a stream.
81
+ - Marshal Coder
82
+ - Sign Coder
83
+ - TCP Socket Transport
84
+ - TCP Socket Server
85
+ - TCP Socket Client
86
+ - "Transport#send_result"
87
+ - "Transport#receive_result"
88
+ - "Sends the encoded Message payload String."
89
+ - "Receives the encoded Message payload String."
90
+ - "Sends the encoded Result payload String."
91
+ - "Receives the encoded Result payload String."
92
+ - Fallback Transport
93
+ - Buffer Transport
94
+ - Synopsis
95
+ - Slide Tools
96
+ - Appendix
97
+ - Modules and Classes
98
+ - Object Initialization
99
+ - Diagnostic Logging
100
+ - Null Coder
101
+ - Sign Coder Support
102
+ - Broadcast Transport
103
+ - HTTP Transport
104
+ - Transport Support
105
+ - Message Identity
106
+ - Message Delay Support
107
+ - Code More
108
+ - Client Mixin
109
+ - Proxy Configuration
110
+
111
+ unknown_slides: []
112
+
113
+ unordered_slides: []
114
+
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- ruby -*-
3
+ $: << File.expand_path('../../lib', __FILE__)
4
+ require 'asir/main'
5
+ exit ASIR::Main.new.parse_args!.run!.exit_code
6
+
@@ -0,0 +1,8 @@
1
+ task :default => 'asir-sequence.svg'
2
+
3
+ file 'asir-sequence.svg' => [ 'asir-sequence.pic', 'sequence.pic' ] do
4
+ sh "pic2plot -Tsvg --font-name HersheySans-Bold --font-size 0.01 asir-sequence.pic > asir-sequence.svg"
5
+ sh "open asir-sequence.svg"
6
+ end
7
+
8
+
@@ -0,0 +1,84 @@
1
+ .PS 8.0 6.0
2
+ copy "sequence.pic";
3
+
4
+ #scale = 2.0
5
+ # boxwid = 2.5;
6
+ movewid = boxwid * 1.5;
7
+ boxht = boxwid / 0.75 * 0.3;
8
+ moveht = boxht * 1.5;
9
+ spacing = boxwid / 0.75 * 0.33;
10
+ awid = boxwid / 0.75 * .10;
11
+
12
+ # Object definition
13
+ object(X, "x:Client");
14
+ object(P, "p:Proxy");
15
+ object(CRQ, "crq:Request")
16
+ object(CT, "ct:Transport");
17
+ object(CC, "cc:Coder");
18
+ object(CRS, "crs:Response");
19
+ object(S, "s:Stream");
20
+ object(ST, "st:Transport");
21
+ object(SC, "sc:Coder");
22
+ object(SRQ, "srq:Request");
23
+ object(SRS, "srs:Response")
24
+ object(Y, "y:Service");
25
+
26
+ # Message exchange
27
+ s_message(X,Y,"client()");
28
+ r_message(X,Y,"p = ");
29
+ s_message(X,P,"method(...)");
30
+ s_message(P,P,"method_missing(:method, [...])");
31
+ c_message(P,CRQ,"");
32
+ r_message(P,CRQ,"crq =");
33
+ s_message(P,CT,"send_request(crq)");
34
+ s_message(CT,CC,"encode(crq)");
35
+ r_message(CT,CC,"b =");
36
+ s_message(CT,S,"_write(b)");
37
+ r_message(CT,S,"");
38
+
39
+ active(ST);
40
+ s_message(ST,S,"_read()");
41
+ r_message(ST,S,"b = ");
42
+ s_message(ST,SC,"decode(b)");
43
+ c_message(SC,SRQ,"");
44
+ r_message(SC,SRQ,"");
45
+ r_message(ST,SC,"srq = ");
46
+ s_message(ST,SRQ, "srq.invoke!");
47
+ s_message(SRQ,Y, "message(...)");
48
+ r_message(SRQ,Y, "result = :ok");
49
+ c_message(SRQ,SRS,"");
50
+ r_message(SRQ,SRS,"");
51
+ r_message(ST,SRQ, "srs =");
52
+ delete(SRQ);
53
+ s_message(ST,SC,"encode(srs)");
54
+ r_message(ST,SC,"b =");
55
+ delete(SRS);
56
+ s_message(ST,S,"_write(b)");
57
+ r_message(ST,S,"");
58
+ inactive(ST);
59
+
60
+ s_message(CT,S,"_read()");
61
+ r_message(CT,S,"b = ");
62
+ s_message(CT,CC,"decode(b)");
63
+ c_message(CC,CRS,"");
64
+ r_message(CC,CRS,"");
65
+ r_message(CT,CC,"crs = ");
66
+ s_message(CT,CRS,"result");
67
+ r_message(CT,CRS,":ok");
68
+ delete(CRS);
69
+ r_message(P,CT,":ok");
70
+ delete(CRQ);
71
+ r_message(P,P,":ok");
72
+ r_message(X,P,":ok");
73
+
74
+ # Object lifeline completion
75
+ complete(X);
76
+ complete(P);
77
+ complete(CT);
78
+ complete(CC);
79
+ complete(S);
80
+ complete(ST);
81
+ complete(SC);
82
+ complete(Y);
83
+
84
+ .PE
@@ -0,0 +1,1559 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" baseProfile="full" id="body" width="8in" height="8in" viewBox="0 0 1 1" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events">
4
+ <title>SVG drawing</title>
5
+ <desc>This was produced by version 4.4 of GNU libplot, a free library for exporting 2-D vector graphics.</desc>
6
+ <rect id="background" x="0" y="0" width="1" height="1" stroke="none" fill="white"/>
7
+ <g id="content" transform="translate(0.0039841,0.18681) scale(1,-1) scale(0.044267) " xml:space="preserve" stroke="black" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10.433" stroke-dasharray="none" stroke-dashoffset="0" stroke-opacity="1" fill="none" fill-rule="evenodd" fill-opacity="1" font-style="normal" font-variant="normal" font-weight="normal" font-stretch="normal" font-size-adjust="none" letter-spacing="normal" word-spacing="normal" text-anchor="start">
8
+ <polyline points="-0.0049227,0.034227 0.070377,-0.061609 0.077223,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
9
+ <polyline points="-0.0049227,0.034227 0.0019227,0.034227 0.077223,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
10
+ <polyline points="0.077223,0.034227 0.070377,0.034227 -0.0049227,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
11
+ <polyline points="0.077223,0.034227 0.0019227,-0.061609 -0.0049227,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
12
+ <polygon points="0.13199,0.034227 0.12514,0.027382 0.12514,0.020536 0.13199,0.013691 0.13883,0.013691 0.14568,0.020536 0.14568,0.027382 0.13883,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
13
+ <polygon points="0.13199,0.027382 0.13199,0.020536 0.13883,0.020536 0.13883,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
14
+ <polygon points="0.13199,-0.041073 0.12514,-0.047918 0.12514,-0.054764 0.13199,-0.061609 0.13883,-0.061609 0.14568,-0.054764 0.14568,-0.047918 0.13883,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
15
+ <polygon points="0.13199,-0.047918 0.13199,-0.054764 0.13883,-0.054764 0.13883,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
16
+ <polyline points="0.29628,0.047918 0.28943,0.061609 0.27574,0.0753 0.26205,0.082145 0.23467,0.082145 0.22098,0.0753 0.20729,0.061609 0.20044,0.047918 0.1936,0.027382 0.1936,-0.0068455 0.20044,-0.027382 0.20729,-0.041073 0.22098,-0.054764 0.23467,-0.061609 0.26205,-0.061609 0.27574,-0.054764 0.28943,-0.041073 0.29628,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
17
+ <polyline points="0.29628,0.047918 0.28943,0.047918 0.28259,0.061609 0.27574,0.068455 0.26205,0.0753 0.23467,0.0753 0.22098,0.068455 0.20729,0.047918 0.20044,0.027382 0.20044,-0.0068455 0.20729,-0.027382 0.22098,-0.047918 0.23467,-0.054764 0.26205,-0.054764 0.27574,-0.047918 0.28259,-0.041073 0.28943,-0.027382 0.29628,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
18
+ <polyline points="0.3442,0.082145 0.3442,-0.061609 0.35104,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
19
+ <polyline points="0.3442,0.082145 0.35104,0.082145 0.35104,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
20
+ <polygon points="0.4058,0.082145 0.39896,0.0753 0.39896,0.068455 0.4058,0.061609 0.41265,0.061609 0.4195,0.068455 0.4195,0.0753 0.41265,0.082145 " stroke-width="0.0097205" stroke-linejoin="round" />
21
+ <polygon points="0.4058,0.0753 0.4058,0.068455 0.41265,0.068455 0.41265,0.0753 " stroke-width="0.0097205" stroke-linejoin="round" />
22
+ <polyline points="0.4058,0.034227 0.4058,-0.061609 0.41265,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
23
+ <polyline points="0.4058,0.034227 0.41265,0.034227 0.41265,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
24
+ <polyline points="0.46741,-0.013691 0.54271,-0.013691 0.54271,0.0068455 0.53587,0.020536 0.52902,0.027382 0.51533,0.034227 0.4948,0.034227 0.4811,0.027382 0.46741,0.013691 0.46057,-0.0068455 0.46057,-0.020536 0.46741,-0.041073 0.4811,-0.054764 0.4948,-0.061609 0.51533,-0.061609 0.52902,-0.054764 0.54271,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
25
+ <polyline points="0.46741,-0.0068455 0.53587,-0.0068455 0.53587,0.0068455 0.52902,0.020536 0.51533,0.027382 0.4948,0.027382 0.4811,0.020536 0.47426,0.013691 0.46741,-0.0068455 0.46741,-0.020536 0.47426,-0.041073 0.4811,-0.047918 0.4948,-0.054764 0.51533,-0.054764 0.52902,-0.047918 0.53587,-0.034227 0.54271,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
26
+ <polyline points="0.59063,0.034227 0.59063,-0.061609 0.59748,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
27
+ <polyline points="0.59063,0.034227 0.59748,0.034227 0.59748,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
28
+ <polyline points="0.59748,0.0068455 0.61801,0.027382 0.6317,0.034227 0.65224,0.034227 0.66593,0.027382 0.67278,0.0068455 0.67278,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
29
+ <polyline points="0.59748,0.0068455 0.61801,0.020536 0.6317,0.027382 0.6454,0.027382 0.65909,0.020536 0.66593,0.0068455 0.66593,-0.061609 0.67278,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
30
+ <polyline points="0.73439,0.082145 0.73439,-0.061609 0.74123,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
31
+ <polyline points="0.73439,0.082145 0.74123,0.082145 0.74123,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
32
+ <polyline points="0.71385,0.034227 0.76177,0.034227 0.76177,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
33
+ <polyline points="0.71385,0.034227 0.71385,0.027382 0.76177,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
34
+ <line x1="-0.09" y1="-0.15" x2="0.84" y2="-0.15" stroke-width="0.026576" />
35
+ <polyline points="1.8735,0.034227 1.8735,-0.10953 1.8803,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
36
+ <polyline points="1.8735,0.034227 1.8803,0.034227 1.8803,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
37
+ <polyline points="1.8803,0.013691 1.894,0.027382 1.9077,0.034227 1.9283,0.034227 1.942,0.027382 1.9556,0.013691 1.9625,-0.0068455 1.9625,-0.020536 1.9556,-0.041073 1.942,-0.054764 1.9283,-0.061609 1.9077,-0.061609 1.894,-0.054764 1.8803,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
38
+ <polyline points="1.8803,0.013691 1.9077,0.027382 1.9283,0.027382 1.942,0.020536 1.9488,0.013691 1.9556,-0.0068455 1.9556,-0.020536 1.9488,-0.041073 1.942,-0.047918 1.9283,-0.054764 1.9077,-0.054764 1.8803,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
39
+ <polygon points="2.0173,0.034227 2.0104,0.027382 2.0104,0.020536 2.0173,0.013691 2.0241,0.013691 2.0309,0.020536 2.0309,0.027382 2.0241,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
40
+ <polygon points="2.0173,0.027382 2.0173,0.020536 2.0241,0.020536 2.0241,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
41
+ <polygon points="2.0173,-0.041073 2.0104,-0.047918 2.0104,-0.054764 2.0173,-0.061609 2.0241,-0.061609 2.0309,-0.054764 2.0309,-0.047918 2.0241,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
42
+ <polygon points="2.0173,-0.047918 2.0173,-0.054764 2.0241,-0.054764 2.0241,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
43
+ <line x1="2.0857" y1="0.082145" x2="2.0857" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
44
+ <polyline points="2.0926,0.0753 2.0926,-0.061609 2.0857,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
45
+ <polyline points="2.0857,0.082145 2.1473,0.082145 2.161,0.0753 2.1679,0.068455 2.1747,0.054764 2.1747,0.034227 2.1679,0.020536 2.161,0.013691 2.1473,0.0068455 2.0926,0.0068455 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
46
+ <polyline points="2.0926,0.0753 2.1473,0.0753 2.161,0.068455 2.1679,0.054764 2.1679,0.034227 2.161,0.020536 2.1473,0.013691 2.0926,0.013691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
47
+ <polyline points="2.2226,0.034227 2.2226,-0.061609 2.2295,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
48
+ <polyline points="2.2226,0.034227 2.2295,0.034227 2.2295,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
49
+ <polyline points="2.2295,-0.0068455 2.2363,0.013691 2.25,0.027382 2.2637,0.034227 2.2842,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
50
+ <polyline points="2.2295,-0.0068455 2.2363,0.0068455 2.25,0.020536 2.2637,0.027382 2.2842,0.027382 2.2842,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
51
+ <polygon points="2.3458,0.034227 2.3321,0.027382 2.3185,0.013691 2.3116,-0.0068455 2.3116,-0.020536 2.3185,-0.041073 2.3321,-0.054764 2.3458,-0.061609 2.3664,-0.061609 2.3801,-0.054764 2.3938,-0.041073 2.4006,-0.020536 2.4006,-0.0068455 2.3938,0.013691 2.3801,0.027382 2.3664,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
52
+ <polygon points="2.3458,0.027382 2.3321,0.020536 2.3253,0.013691 2.3185,-0.0068455 2.3185,-0.020536 2.3253,-0.041073 2.3321,-0.047918 2.3458,-0.054764 2.3664,-0.054764 2.3801,-0.047918 2.3869,-0.041073 2.3938,-0.020536 2.3938,-0.0068455 2.3869,0.013691 2.3801,0.020536 2.3664,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
53
+ <polyline points="2.4417,0.034227 2.517,-0.061609 2.5238,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
54
+ <polyline points="2.4417,0.034227 2.4485,0.034227 2.5238,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
55
+ <polyline points="2.5238,0.034227 2.517,0.034227 2.4417,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
56
+ <polyline points="2.5238,0.034227 2.4485,-0.061609 2.4417,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
57
+ <line x1="2.558" y1="0.034227" x2="2.5991" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
58
+ <polyline points="2.558,0.034227 2.5649,0.034227 2.5991,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
59
+ <polyline points="2.6402,0.034227 2.6333,0.034227 2.5991,-0.047918 2.5717,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
60
+ <polyline points="2.6402,0.034227 2.5991,-0.061609 2.5786,-0.10953 2.5717,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
61
+ <line x1="1.785" y1="-0.15" x2="2.715" y2="-0.15" stroke-width="0.026576" />
62
+ <polyline points="3.5876,0.013691 3.5739,0.027382 3.5602,0.034227 3.5397,0.034227 3.526,0.027382 3.5123,0.013691 3.5055,-0.0068455 3.5055,-0.020536 3.5123,-0.041073 3.526,-0.054764 3.5397,-0.061609 3.5602,-0.061609 3.5739,-0.054764 3.5876,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
63
+ <polyline points="3.5876,0.013691 3.5808,0.0068455 3.5739,0.020536 3.5603,0.027382 3.5397,0.027382 3.526,0.020536 3.5192,0.013691 3.5123,-0.0068455 3.5123,-0.020536 3.5192,-0.041073 3.526,-0.047918 3.5397,-0.054764 3.5603,-0.054764 3.5739,-0.047918 3.5808,-0.034227 3.5876,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
64
+ <polyline points="3.6356,0.034227 3.6356,-0.061609 3.6424,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
65
+ <polyline points="3.6356,0.034227 3.6424,0.034227 3.6424,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
66
+ <polyline points="3.6424,-0.0068455 3.6492,0.013691 3.6629,0.027382 3.6766,0.034227 3.6972,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
67
+ <polyline points="3.6424,-0.0068455 3.6492,0.0068455 3.6629,0.020536 3.6766,0.027382 3.6972,0.027382 3.6972,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
68
+ <polyline points="3.8067,0.034227 3.8067,-0.10953 3.8135,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
69
+ <polyline points="3.8067,0.034227 3.8135,0.034227 3.8135,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
70
+ <polyline points="3.8067,0.013691 3.793,0.027382 3.7793,0.034227 3.7588,0.034227 3.7451,0.027382 3.7314,0.013691 3.7245,-0.0068455 3.7245,-0.020536 3.7314,-0.041073 3.7451,-0.054764 3.7588,-0.061609 3.7793,-0.061609 3.793,-0.054764 3.8067,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
71
+ <polyline points="3.8067,0.013691 3.7793,0.027382 3.7588,0.027382 3.7451,0.020536 3.7382,0.013691 3.7314,-0.0068455 3.7314,-0.020536 3.7382,-0.041073 3.7451,-0.047918 3.7588,-0.054764 3.7793,-0.054764 3.8067,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
72
+ <polygon points="3.8751,0.034227 3.8683,0.027382 3.8683,0.020536 3.8751,0.013691 3.882,0.013691 3.8888,0.020536 3.8888,0.027382 3.882,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
73
+ <polygon points="3.8751,0.027382 3.8751,0.020536 3.882,0.020536 3.882,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
74
+ <polygon points="3.8751,-0.041073 3.8683,-0.047918 3.8683,-0.054764 3.8751,-0.061609 3.882,-0.061609 3.8888,-0.054764 3.8888,-0.047918 3.882,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
75
+ <polygon points="3.8751,-0.047918 3.8751,-0.054764 3.882,-0.054764 3.882,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
76
+ <line x1="3.9436" y1="0.082145" x2="3.9436" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
77
+ <polyline points="3.9504,0.0753 3.9504,-0.061609 3.9436,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
78
+ <polyline points="3.9436,0.082145 3.9984,0.082145 4.0189,0.0753 4.0257,0.068455 4.0326,0.054764 4.0326,0.034227 4.0257,0.020536 4.0189,0.013691 3.9984,0.0068455 3.9504,0.0068455 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
79
+ <polyline points="3.9504,0.0753 3.9984,0.0753 4.0189,0.068455 4.0257,0.054764 4.0257,0.034227 4.0189,0.020536 3.9984,0.013691 3.9504,0.013691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
80
+ <polyline points="3.9847,0.0068455 4.0257,-0.061609 4.0326,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
81
+ <line x1="3.9915" y1="0.0068455" x2="4.0326" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
82
+ <polyline points="4.0805,-0.013691 4.1558,-0.013691 4.1558,0.0068455 4.149,0.020536 4.1421,0.027382 4.1284,0.034227 4.1079,0.034227 4.0942,0.027382 4.0805,0.013691 4.0737,-0.0068455 4.0737,-0.020536 4.0805,-0.041073 4.0942,-0.054764 4.1079,-0.061609 4.1284,-0.061609 4.1421,-0.054764 4.1558,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
83
+ <polyline points="4.0805,-0.0068455 4.149,-0.0068455 4.149,0.0068455 4.1421,0.020536 4.1284,0.027382 4.1079,0.027382 4.0942,0.020536 4.0874,0.013691 4.0805,-0.0068455 4.0805,-0.020536 4.0874,-0.041073 4.0942,-0.047918 4.1079,-0.054764 4.1284,-0.054764 4.1421,-0.047918 4.149,-0.034227 4.1558,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
84
+ <polyline points="4.279,0.034227 4.279,-0.10953 4.2859,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
85
+ <polyline points="4.279,0.034227 4.2859,0.034227 4.2859,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
86
+ <polyline points="4.279,0.013691 4.2653,0.027382 4.2516,0.034227 4.2311,0.034227 4.2174,0.027382 4.2037,0.013691 4.1969,-0.0068455 4.1969,-0.020536 4.2037,-0.041073 4.2174,-0.054764 4.2311,-0.061609 4.2516,-0.061609 4.2653,-0.054764 4.279,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
87
+ <polyline points="4.279,0.013691 4.2516,0.027382 4.2311,0.027382 4.2174,0.020536 4.2106,0.013691 4.2037,-0.0068455 4.2037,-0.020536 4.2106,-0.041073 4.2174,-0.047918 4.2311,-0.054764 4.2516,-0.054764 4.279,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
88
+ <polyline points="4.3406,0.034227 4.3406,-0.034227 4.3475,-0.054764 4.3612,-0.061609 4.3817,-0.061609 4.3954,-0.054764 4.4159,-0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
89
+ <polyline points="4.3406,0.034227 4.3475,0.034227 4.3475,-0.034227 4.3543,-0.047918 4.368,-0.054764 4.3817,-0.054764 4.3954,-0.047918 4.4159,-0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
90
+ <polyline points="4.4159,0.034227 4.4159,-0.061609 4.4228,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
91
+ <polyline points="4.4159,0.034227 4.4228,0.034227 4.4228,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
92
+ <polyline points="4.4775,-0.013691 4.5528,-0.013691 4.5528,0.0068455 4.546,0.020536 4.5391,0.027382 4.5255,0.034227 4.5049,0.034227 4.4912,0.027382 4.4775,0.013691 4.4707,-0.0068455 4.4707,-0.020536 4.4775,-0.041073 4.4912,-0.054764 4.5049,-0.061609 4.5255,-0.061609 4.5391,-0.054764 4.5528,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
93
+ <polyline points="4.4775,-0.0068455 4.546,-0.0068455 4.546,0.0068455 4.5391,0.020536 4.5255,0.027382 4.5049,0.027382 4.4912,0.020536 4.4844,0.013691 4.4775,-0.0068455 4.4775,-0.020536 4.4844,-0.041073 4.4912,-0.047918 4.5049,-0.054764 4.5255,-0.054764 4.5391,-0.047918 4.546,-0.034227 4.5528,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
94
+ <polyline points="4.6692,0.013691 4.6624,0.027382 4.6418,0.034227 4.6213,0.034227 4.6008,0.027382 4.5939,0.013691 4.6008,1.3878e-17 4.6144,-0.0068455 4.6487,-0.020536 4.6624,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
95
+ <polyline points="4.6555,-0.020536 4.6624,-0.034227 4.6624,-0.041073 4.6555,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
96
+ <polyline points="4.6624,-0.047918 4.6418,-0.054764 4.6213,-0.054764 4.6008,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
97
+ <polyline points="4.6076,-0.054764 4.6008,-0.041073 4.5939,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
98
+ <polyline points="4.6692,0.013691 4.6624,0.013691 4.6555,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
99
+ <polyline points="4.6624,0.020536 4.6418,0.027382 4.6213,0.027382 4.6008,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
100
+ <polyline points="4.6076,0.027382 4.6008,0.013691 4.6076,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
101
+ <polyline points="4.6008,0.0068455 4.6144,6.9389e-18 4.6487,-0.013691 4.6624,-0.020536 4.6692,-0.034227 4.6692,-0.041073 4.6624,-0.054764 4.6418,-0.061609 4.6213,-0.061609 4.6008,-0.054764 4.5939,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
102
+ <polyline points="4.724,0.082145 4.724,-0.061609 4.7308,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
103
+ <polyline points="4.724,0.082145 4.7308,0.082145 4.7308,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
104
+ <polyline points="4.7034,0.034227 4.7514,0.034227 4.7514,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
105
+ <polyline points="4.7034,0.034227 4.7034,0.027382 4.7514,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
106
+ <line x1="3.66" y1="-0.15" x2="4.59" y2="-0.15" stroke-width="0.026576" />
107
+ <polyline points="5.4455,0.013691 5.4318,0.027382 5.4181,0.034227 5.3976,0.034227 5.3839,0.027382 5.3702,0.013691 5.3634,-0.0068455 5.3634,-0.020536 5.3702,-0.041073 5.3839,-0.054764 5.3976,-0.061609 5.4181,-0.061609 5.4318,-0.054764 5.4455,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
108
+ <polyline points="5.4455,0.013691 5.4387,0.0068455 5.4318,0.020536 5.4181,0.027382 5.3976,0.027382 5.3839,0.020536 5.3771,0.013691 5.3702,-0.0068455 5.3702,-0.020536 5.3771,-0.041073 5.3839,-0.047918 5.3976,-0.054764 5.4181,-0.054764 5.4318,-0.047918 5.4387,-0.034227 5.4455,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
109
+ <polyline points="5.5003,0.082145 5.5003,-0.061609 5.5071,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
110
+ <polyline points="5.5003,0.082145 5.5071,0.082145 5.5071,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
111
+ <polyline points="5.4797,0.034227 5.5277,0.034227 5.5277,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
112
+ <polyline points="5.4797,0.034227 5.4797,0.027382 5.5277,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
113
+ <polygon points="5.5756,0.034227 5.5687,0.027382 5.5687,0.020536 5.5756,0.013691 5.5824,0.013691 5.5893,0.020536 5.5893,0.027382 5.5824,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
114
+ <polygon points="5.5756,0.027382 5.5756,0.020536 5.5824,0.020536 5.5824,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
115
+ <polygon points="5.5756,-0.041073 5.5687,-0.047918 5.5687,-0.054764 5.5756,-0.061609 5.5824,-0.061609 5.5893,-0.054764 5.5893,-0.047918 5.5824,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
116
+ <polygon points="5.5756,-0.047918 5.5756,-0.054764 5.5824,-0.054764 5.5824,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
117
+ <line x1="5.6714" y1="0.0753" x2="5.6714" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
118
+ <polyline points="5.6783,0.0753 5.6783,-0.061609 5.6714,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
119
+ <polyline points="5.6303,0.082145 5.7193,0.082145 5.7193,0.0753 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
120
+ <polyline points="5.6303,0.082145 5.6303,0.0753 5.7193,0.0753 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
121
+ <polyline points="5.7604,0.034227 5.7604,-0.061609 5.7673,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
122
+ <polyline points="5.7604,0.034227 5.7673,0.034227 5.7673,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
123
+ <polyline points="5.7673,-0.0068455 5.7741,0.013691 5.7878,0.027382 5.8015,0.034227 5.822,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
124
+ <polyline points="5.7673,-0.0068455 5.7741,0.0068455 5.7878,0.020536 5.8015,0.027382 5.822,0.027382 5.822,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
125
+ <polyline points="5.9315,0.034227 5.9315,-0.061609 5.9384,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
126
+ <polyline points="5.9315,0.034227 5.9384,0.034227 5.9384,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
127
+ <polyline points="5.9315,0.013691 5.9179,0.027382 5.9042,0.034227 5.8836,0.034227 5.8699,0.027382 5.8562,0.013691 5.8494,-0.0068455 5.8494,-0.020536 5.8562,-0.041073 5.8699,-0.054764 5.8836,-0.061609 5.9042,-0.061609 5.9179,-0.054764 5.9315,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
128
+ <polyline points="5.9315,0.013691 5.9042,0.027382 5.8836,0.027382 5.8699,0.020536 5.8631,0.013691 5.8562,-0.0068455 5.8562,-0.020536 5.8631,-0.041073 5.8699,-0.047918 5.8836,-0.054764 5.9042,-0.054764 5.9315,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
129
+ <polyline points="5.9932,0.034227 5.9932,-0.061609 6,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
130
+ <polyline points="5.9932,0.034227 6,0.034227 6,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
131
+ <polyline points="6,0.0068455 6.0205,0.027382 6.0342,0.034227 6.0548,0.034227 6.0685,0.027382 6.0753,0.0068455 6.0753,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
132
+ <polyline points="6,0.0068455 6.0205,0.020536 6.0342,0.027382 6.0479,0.027382 6.0616,0.020536 6.0685,0.0068455 6.0685,-0.061609 6.0753,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
133
+ <polyline points="6.1985,0.013691 6.1917,0.027382 6.1711,0.034227 6.1506,0.034227 6.1301,0.027382 6.1232,0.013691 6.1301,1.3878e-17 6.1438,-0.0068455 6.178,-0.020536 6.1917,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
134
+ <polyline points="6.1848,-0.020536 6.1917,-0.034227 6.1917,-0.041073 6.1848,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
135
+ <polyline points="6.1917,-0.047918 6.1711,-0.054764 6.1506,-0.054764 6.1301,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
136
+ <polyline points="6.1369,-0.054764 6.1301,-0.041073 6.1232,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
137
+ <polyline points="6.1985,0.013691 6.1917,0.013691 6.1848,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
138
+ <polyline points="6.1917,0.020536 6.1711,0.027382 6.1506,0.027382 6.1301,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
139
+ <polyline points="6.1369,0.027382 6.1301,0.013691 6.1369,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
140
+ <polyline points="6.1301,0.0068455 6.1438,6.9389e-18 6.178,-0.013691 6.1917,-0.020536 6.1985,-0.034227 6.1985,-0.041073 6.1917,-0.054764 6.1711,-0.061609 6.1506,-0.061609 6.1301,-0.054764 6.1232,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
141
+ <polyline points="6.2464,0.034227 6.2464,-0.10953 6.2533,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
142
+ <polyline points="6.2464,0.034227 6.2533,0.034227 6.2533,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
143
+ <polyline points="6.2533,0.013691 6.267,0.027382 6.2807,0.034227 6.3012,0.034227 6.3149,0.027382 6.3286,0.013691 6.3354,-0.0068455 6.3354,-0.020536 6.3286,-0.041073 6.3149,-0.054764 6.3012,-0.061609 6.2807,-0.061609 6.267,-0.054764 6.2533,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
144
+ <polyline points="6.2533,0.013691 6.2807,0.027382 6.3012,0.027382 6.3149,0.020536 6.3217,0.013691 6.3286,-0.0068455 6.3286,-0.020536 6.3217,-0.041073 6.3149,-0.047918 6.3012,-0.054764 6.2807,-0.054764 6.2533,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
145
+ <polygon points="6.4107,0.034227 6.397,0.027382 6.3833,0.013691 6.3765,-0.0068455 6.3765,-0.020536 6.3833,-0.041073 6.397,-0.054764 6.4107,-0.061609 6.4313,-0.061609 6.445,-0.054764 6.4586,-0.041073 6.4655,-0.020536 6.4655,-0.0068455 6.4586,0.013691 6.445,0.027382 6.4313,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
146
+ <polygon points="6.4107,0.027382 6.397,0.020536 6.3902,0.013691 6.3833,-0.0068455 6.3833,-0.020536 6.3902,-0.041073 6.397,-0.047918 6.4107,-0.054764 6.4313,-0.054764 6.445,-0.047918 6.4518,-0.041073 6.4586,-0.020536 6.4586,-0.0068455 6.4518,0.013691 6.445,0.020536 6.4313,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
147
+ <polyline points="6.5134,0.034227 6.5134,-0.061609 6.5203,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
148
+ <polyline points="6.5134,0.034227 6.5203,0.034227 6.5203,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
149
+ <polyline points="6.5203,-0.0068455 6.5271,0.013691 6.5408,0.027382 6.5545,0.034227 6.575,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
150
+ <polyline points="6.5203,-0.0068455 6.5271,0.0068455 6.5408,0.020536 6.5545,0.027382 6.575,0.027382 6.575,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
151
+ <polyline points="6.6161,0.082145 6.6161,-0.061609 6.6229,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
152
+ <polyline points="6.6161,0.082145 6.6229,0.082145 6.6229,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
153
+ <polyline points="6.5956,0.034227 6.6435,0.034227 6.6435,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
154
+ <polyline points="6.5956,0.034227 6.5956,0.027382 6.6435,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
155
+ <line x1="5.535" y1="-0.15" x2="6.465" y2="-0.15" stroke-width="0.026576" />
156
+ <polyline points="7.5019,0.013691 7.4882,0.027382 7.4745,0.034227 7.454,0.034227 7.4403,0.027382 7.4266,0.013691 7.4198,-0.0068455 7.4198,-0.020536 7.4266,-0.041073 7.4403,-0.054764 7.454,-0.061609 7.4745,-0.061609 7.4882,-0.054764 7.5019,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
157
+ <polyline points="7.5019,0.013691 7.4951,0.0068455 7.4882,0.020536 7.4745,0.027382 7.454,0.027382 7.4403,0.020536 7.4335,0.013691 7.4266,-0.0068455 7.4266,-0.020536 7.4335,-0.041073 7.4403,-0.047918 7.454,-0.054764 7.4745,-0.054764 7.4882,-0.047918 7.4951,-0.034227 7.5019,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
158
+ <polyline points="7.6251,0.013691 7.6114,0.027382 7.5978,0.034227 7.5772,0.034227 7.5635,0.027382 7.5498,0.013691 7.543,-0.0068455 7.543,-0.020536 7.5498,-0.041073 7.5635,-0.054764 7.5772,-0.061609 7.5978,-0.061609 7.6114,-0.054764 7.6251,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
159
+ <polyline points="7.6251,0.013691 7.6183,0.0068455 7.6114,0.020536 7.5978,0.027382 7.5772,0.027382 7.5635,0.020536 7.5567,0.013691 7.5498,-0.0068455 7.5498,-0.020536 7.5567,-0.041073 7.5635,-0.047918 7.5772,-0.054764 7.5978,-0.054764 7.6114,-0.047918 7.6183,-0.034227 7.6251,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
160
+ <polygon points="7.6799,0.034227 7.6731,0.027382 7.6731,0.020536 7.6799,0.013691 7.6867,0.013691 7.6936,0.020536 7.6936,0.027382 7.6867,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
161
+ <polygon points="7.6799,0.027382 7.6799,0.020536 7.6867,0.020536 7.6867,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
162
+ <polygon points="7.6799,-0.041073 7.6731,-0.047918 7.6731,-0.054764 7.6799,-0.061609 7.6867,-0.061609 7.6936,-0.054764 7.6936,-0.047918 7.6867,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
163
+ <polygon points="7.6799,-0.047918 7.6799,-0.054764 7.6867,-0.054764 7.6867,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
164
+ <polyline points="7.8442,0.047918 7.8373,0.061609 7.8237,0.0753 7.81,0.082145 7.7826,0.082145 7.7689,0.0753 7.7552,0.061609 7.7484,0.047918 7.7415,0.027382 7.7415,-0.0068455 7.7484,-0.027382 7.7552,-0.041073 7.7689,-0.054764 7.7826,-0.061609 7.81,-0.061609 7.8237,-0.054764 7.8373,-0.041073 7.8442,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
165
+ <polyline points="7.8442,0.047918 7.8373,0.047918 7.8305,0.061609 7.8237,0.068455 7.81,0.0753 7.7826,0.0753 7.7689,0.068455 7.7552,0.047918 7.7484,0.027382 7.7484,-0.0068455 7.7552,-0.027382 7.7689,-0.047918 7.7826,-0.054764 7.81,-0.054764 7.8237,-0.047918 7.8305,-0.041073 7.8373,-0.027382 7.8442,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
166
+ <polygon points="7.9195,0.034227 7.9058,0.027382 7.8921,0.013691 7.8853,-0.0068455 7.8853,-0.020536 7.8921,-0.041073 7.9058,-0.054764 7.9195,-0.061609 7.94,-0.061609 7.9537,-0.054764 7.9674,-0.041073 7.9743,-0.020536 7.9743,-0.0068455 7.9674,0.013691 7.9537,0.027382 7.94,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
167
+ <polygon points="7.9195,0.027382 7.9058,0.020536 7.899,0.013691 7.8921,-0.0068455 7.8921,-0.020536 7.899,-0.041073 7.9058,-0.047918 7.9195,-0.054764 7.94,-0.054764 7.9537,-0.047918 7.9606,-0.041073 7.9674,-0.020536 7.9674,-0.0068455 7.9606,0.013691 7.9537,0.020536 7.94,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
168
+ <polyline points="8.0975,0.082145 8.0975,-0.061609 8.1043,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
169
+ <polyline points="8.0975,0.082145 8.1043,0.082145 8.1043,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
170
+ <polyline points="8.0975,0.013691 8.0838,0.027382 8.0701,0.034227 8.0496,0.034227 8.0359,0.027382 8.0222,0.013691 8.0153,-0.0068455 8.0153,-0.020536 8.0222,-0.041073 8.0359,-0.054764 8.0496,-0.061609 8.0701,-0.061609 8.0838,-0.054764 8.0975,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
171
+ <polyline points="8.0975,0.013691 8.0701,0.027382 8.0496,0.027382 8.0359,0.020536 8.029,0.013691 8.0222,-0.0068455 8.0222,-0.020536 8.029,-0.041073 8.0359,-0.047918 8.0496,-0.054764 8.0701,-0.054764 8.0975,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
172
+ <polyline points="8.1591,-0.013691 8.2344,-0.013691 8.2344,0.0068455 8.2275,0.020536 8.2207,0.027382 8.207,0.034227 8.1865,0.034227 8.1728,0.027382 8.1591,0.013691 8.1522,-0.0068455 8.1522,-0.020536 8.1591,-0.041073 8.1728,-0.054764 8.1865,-0.061609 8.207,-0.061609 8.2207,-0.054764 8.2344,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
173
+ <polyline points="8.1591,-0.0068455 8.2275,-0.0068455 8.2275,0.0068455 8.2207,0.020536 8.207,0.027382 8.1865,0.027382 8.1728,0.020536 8.1659,0.013691 8.1591,-0.0068455 8.1591,-0.020536 8.1659,-0.041073 8.1728,-0.047918 8.1865,-0.054764 8.207,-0.054764 8.2207,-0.047918 8.2275,-0.034227 8.2344,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
174
+ <polyline points="8.2823,0.034227 8.2823,-0.061609 8.2891,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
175
+ <polyline points="8.2823,0.034227 8.2891,0.034227 8.2891,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
176
+ <polyline points="8.2891,-0.0068455 8.296,0.013691 8.3097,0.027382 8.3234,0.034227 8.3439,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
177
+ <polyline points="8.2891,-0.0068455 8.296,0.0068455 8.3097,0.020536 8.3234,0.027382 8.3439,0.027382 8.3439,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
178
+ <line x1="7.41" y1="-0.15" x2="8.34" y2="-0.15" stroke-width="0.026576" />
179
+ <polyline points="9.1373,0.013691 9.1236,0.027382 9.1099,0.034227 9.0894,0.034227 9.0757,0.027382 9.062,0.013691 9.0552,-0.0068455 9.0552,-0.020536 9.062,-0.041073 9.0757,-0.054764 9.0894,-0.061609 9.1099,-0.061609 9.1236,-0.054764 9.1373,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
180
+ <polyline points="9.1373,0.013691 9.1305,0.0068455 9.1236,0.020536 9.1099,0.027382 9.0894,0.027382 9.0757,0.020536 9.0689,0.013691 9.062,-0.0068455 9.062,-0.020536 9.0689,-0.041073 9.0757,-0.047918 9.0894,-0.054764 9.1099,-0.054764 9.1236,-0.047918 9.1305,-0.034227 9.1373,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
181
+ <polyline points="9.1852,0.034227 9.1852,-0.061609 9.1921,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
182
+ <polyline points="9.1852,0.034227 9.1921,0.034227 9.1921,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
183
+ <polyline points="9.1921,-0.0068455 9.1989,0.013691 9.2126,0.027382 9.2263,0.034227 9.2469,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
184
+ <polyline points="9.1921,-0.0068455 9.1989,0.0068455 9.2126,0.020536 9.2263,0.027382 9.2469,0.027382 9.2469,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
185
+ <polyline points="9.3495,0.013691 9.3427,0.027382 9.3222,0.034227 9.3016,0.034227 9.2811,0.027382 9.2742,0.013691 9.2811,-1.3878e-17 9.2948,-0.0068455 9.329,-0.020536 9.3427,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
186
+ <polyline points="9.3359,-0.020536 9.3427,-0.034227 9.3427,-0.041073 9.3359,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
187
+ <polyline points="9.3427,-0.047918 9.3222,-0.054764 9.3016,-0.054764 9.2811,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
188
+ <polyline points="9.2879,-0.054764 9.2811,-0.041073 9.2742,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
189
+ <polyline points="9.3495,0.013691 9.3427,0.013691 9.3359,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
190
+ <polyline points="9.3427,0.020536 9.3222,0.027382 9.3016,0.027382 9.2811,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
191
+ <polyline points="9.2879,0.027382 9.2811,0.013691 9.2879,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
192
+ <polyline points="9.2811,0.0068455 9.2948,-2.0817e-17 9.329,-0.013691 9.3427,-0.020536 9.3495,-0.034227 9.3495,-0.041073 9.3427,-0.054764 9.3222,-0.061609 9.3016,-0.061609 9.2811,-0.054764 9.2742,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
193
+ <polygon points="9.4043,0.034227 9.3975,0.027382 9.3975,0.020536 9.4043,0.013691 9.4112,0.013691 9.418,0.020536 9.418,0.027382 9.4112,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
194
+ <polygon points="9.4043,0.027382 9.4043,0.020536 9.4112,0.020536 9.4112,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
195
+ <polygon points="9.4043,-0.041073 9.3975,-0.047918 9.3975,-0.054764 9.4043,-0.061609 9.4112,-0.061609 9.418,-0.054764 9.418,-0.047918 9.4112,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
196
+ <polygon points="9.4043,-0.047918 9.4043,-0.054764 9.4112,-0.054764 9.4112,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
197
+ <line x1="9.4728" y1="0.082145" x2="9.4728" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
198
+ <polyline points="9.4796,0.0753 9.4796,-0.061609 9.4728,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
199
+ <polyline points="9.4728,0.082145 9.5275,0.082145 9.5481,0.0753 9.5549,0.068455 9.5618,0.054764 9.5618,0.034227 9.5549,0.020536 9.5481,0.013691 9.5275,0.0068455 9.4796,0.0068455 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
200
+ <polyline points="9.4796,0.0753 9.5275,0.0753 9.5481,0.068455 9.5549,0.054764 9.5549,0.034227 9.5481,0.020536 9.5275,0.013691 9.4796,0.013691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
201
+ <polyline points="9.5138,0.0068455 9.5549,-0.061609 9.5618,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
202
+ <line x1="9.5207" y1="0.0068455" x2="9.5618" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
203
+ <polyline points="9.6097,-0.013691 9.685,-0.013691 9.685,0.0068455 9.6781,0.020536 9.6713,0.027382 9.6576,0.034227 9.6371,0.034227 9.6234,0.027382 9.6097,0.013691 9.6028,-0.0068455 9.6028,-0.020536 9.6097,-0.041073 9.6234,-0.054764 9.6371,-0.061609 9.6576,-0.061609 9.6713,-0.054764 9.685,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
204
+ <polyline points="9.6097,-0.0068455 9.6781,-0.0068455 9.6781,0.0068455 9.6713,0.020536 9.6576,0.027382 9.6371,0.027382 9.6234,0.020536 9.6165,0.013691 9.6097,-0.0068455 9.6097,-0.020536 9.6165,-0.041073 9.6234,-0.047918 9.6371,-0.054764 9.6576,-0.054764 9.6713,-0.047918 9.6781,-0.034227 9.685,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
205
+ <polyline points="9.8013,0.013691 9.7945,0.027382 9.774,0.034227 9.7534,0.034227 9.7329,0.027382 9.726,0.013691 9.7329,1.3878e-17 9.7466,-0.0068455 9.7808,-0.020536 9.7945,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
206
+ <polyline points="9.7877,-0.020536 9.7945,-0.034227 9.7945,-0.041073 9.7877,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
207
+ <polyline points="9.7945,-0.047918 9.774,-0.054764 9.7534,-0.054764 9.7329,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
208
+ <polyline points="9.7397,-0.054764 9.7329,-0.041073 9.726,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
209
+ <polyline points="9.8013,0.013691 9.7945,0.013691 9.7877,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
210
+ <polyline points="9.7945,0.020536 9.774,0.027382 9.7534,0.027382 9.7329,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
211
+ <polyline points="9.7397,0.027382 9.7329,0.013691 9.7397,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
212
+ <polyline points="9.7329,0.0068455 9.7466,6.9389e-18 9.7808,-0.013691 9.7945,-0.020536 9.8013,-0.034227 9.8013,-0.041073 9.7945,-0.054764 9.774,-0.061609 9.7534,-0.061609 9.7329,-0.054764 9.726,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
213
+ <polyline points="9.8493,0.034227 9.8493,-0.10953 9.8561,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
214
+ <polyline points="9.8493,0.034227 9.8561,0.034227 9.8561,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
215
+ <polyline points="9.8561,0.013691 9.8698,0.027382 9.8835,0.034227 9.904,0.034227 9.9177,0.027382 9.9314,0.013691 9.9383,-0.0068455 9.9383,-0.020536 9.9314,-0.041073 9.9177,-0.054764 9.904,-0.061609 9.8835,-0.061609 9.8698,-0.054764 9.8561,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
216
+ <polyline points="9.8561,0.013691 9.8835,0.027382 9.904,0.027382 9.9177,0.020536 9.9246,0.013691 9.9314,-0.0068455 9.9314,-0.020536 9.9246,-0.041073 9.9177,-0.047918 9.904,-0.054764 9.8835,-0.054764 9.8561,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
217
+ <polygon points="10.014,0.034227 9.9999,0.027382 9.9862,0.013691 9.9793,-0.0068455 9.9793,-0.020536 9.9862,-0.041073 9.9999,-0.054764 10.014,-0.061609 10.034,-0.061609 10.048,-0.054764 10.061,-0.041073 10.068,-0.020536 10.068,-0.0068455 10.061,0.013691 10.048,0.027382 10.034,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
218
+ <polygon points="10.014,0.027382 9.9999,0.020536 9.993,0.013691 9.9862,-0.0068455 9.9862,-0.020536 9.993,-0.041073 9.9999,-0.047918 10.014,-0.054764 10.034,-0.054764 10.048,-0.047918 10.055,-0.041073 10.061,-0.020536 10.061,-0.0068455 10.055,0.013691 10.048,0.020536 10.034,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
219
+ <polyline points="10.116,0.034227 10.116,-0.061609 10.123,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
220
+ <polyline points="10.116,0.034227 10.123,0.034227 10.123,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
221
+ <polyline points="10.123,0.0068455 10.144,0.027382 10.157,0.034227 10.178,0.034227 10.192,0.027382 10.198,0.0068455 10.198,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
222
+ <polyline points="10.123,0.0068455 10.144,0.020536 10.157,0.027382 10.171,0.027382 10.185,0.020536 10.192,0.0068455 10.192,-0.061609 10.198,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
223
+ <polyline points="10.322,0.013691 10.315,0.027382 10.294,0.034227 10.274,0.034227 10.253,0.027382 10.246,0.013691 10.253,2.7756e-17 10.267,-0.0068455 10.301,-0.020536 10.315,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
224
+ <polyline points="10.308,-0.020536 10.315,-0.034227 10.315,-0.041073 10.308,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
225
+ <polyline points="10.315,-0.047918 10.294,-0.054764 10.274,-0.054764 10.253,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
226
+ <polyline points="10.26,-0.054764 10.253,-0.041073 10.246,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
227
+ <polyline points="10.322,0.013691 10.315,0.013691 10.308,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
228
+ <polyline points="10.315,0.020536 10.294,0.027382 10.274,0.027382 10.253,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
229
+ <polyline points="10.26,0.027382 10.253,0.013691 10.26,2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
230
+ <polyline points="10.253,0.0068455 10.267,2.0817e-17 10.301,-0.013691 10.315,-0.020536 10.322,-0.034227 10.322,-0.041073 10.315,-0.054764 10.294,-0.061609 10.274,-0.061609 10.253,-0.054764 10.246,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
231
+ <polyline points="10.37,-0.013691 10.445,-0.013691 10.445,0.0068455 10.438,0.020536 10.431,0.027382 10.417,0.034227 10.397,0.034227 10.383,0.027382 10.37,0.013691 10.363,-0.0068455 10.363,-0.020536 10.37,-0.041073 10.383,-0.054764 10.397,-0.061609 10.417,-0.061609 10.431,-0.054764 10.445,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
232
+ <polyline points="10.37,-0.0068455 10.438,-0.0068455 10.438,0.0068455 10.431,0.020536 10.417,0.027382 10.397,0.027382 10.383,0.020536 10.376,0.013691 10.37,-0.0068455 10.37,-0.020536 10.376,-0.041073 10.383,-0.047918 10.397,-0.054764 10.417,-0.054764 10.431,-0.047918 10.438,-0.034227 10.445,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
233
+ <line x1="9.285" y1="-0.15" x2="10.215" y2="-0.15" stroke-width="0.026576" />
234
+ <polyline points="11.235,0.013691 11.228,0.027382 11.207,0.034227 11.187,0.034227 11.166,0.027382 11.16,0.013691 11.166,-1.3878e-17 11.18,-0.0068455 11.214,-0.020536 11.228,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
235
+ <polyline points="11.221,-0.020536 11.228,-0.034227 11.228,-0.041073 11.221,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
236
+ <polyline points="11.228,-0.047918 11.207,-0.054764 11.187,-0.054764 11.166,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
237
+ <polyline points="11.173,-0.054764 11.166,-0.041073 11.16,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
238
+ <polyline points="11.235,0.013691 11.228,0.013691 11.221,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
239
+ <polyline points="11.228,0.020536 11.207,0.027382 11.187,0.027382 11.166,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
240
+ <polyline points="11.173,0.027382 11.166,0.013691 11.173,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
241
+ <polyline points="11.166,0.0068455 11.18,-2.0817e-17 11.214,-0.013691 11.228,-0.020536 11.235,-0.034227 11.235,-0.041073 11.228,-0.054764 11.207,-0.061609 11.187,-0.061609 11.166,-0.054764 11.16,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
242
+ <polygon points="11.29,0.034227 11.283,0.027382 11.283,0.020536 11.29,0.013691 11.296,0.013691 11.303,0.020536 11.303,0.027382 11.296,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
243
+ <polygon points="11.29,0.027382 11.29,0.020536 11.296,0.020536 11.296,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
244
+ <polygon points="11.29,-0.041073 11.283,-0.047918 11.283,-0.054764 11.29,-0.061609 11.296,-0.061609 11.303,-0.054764 11.303,-0.047918 11.296,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
245
+ <polygon points="11.29,-0.047918 11.29,-0.054764 11.296,-0.054764 11.296,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
246
+ <polyline points="11.447,0.061609 11.433,0.0753 11.413,0.082145 11.385,0.082145 11.365,0.0753 11.351,0.061609 11.351,0.047918 11.358,0.034227 11.365,0.027382 11.379,0.020536 11.413,0.0068455 11.426,8.6736e-18 11.433,-0.0068455 11.44,-0.020536 11.44,-0.041073 11.433,-0.047918 11.413,-0.054764 11.385,-0.054764 11.372,-0.047918 11.365,-0.041073 11.351,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
247
+ <polyline points="11.447,0.061609 11.433,0.061609 11.426,0.068455 11.413,0.0753 11.385,0.0753 11.365,0.068455 11.358,0.061609 11.358,0.047918 11.365,0.034227 11.379,0.027382 11.413,0.013691 11.426,0.0068455 11.44,-0.0068455 11.447,-0.020536 11.447,-0.041073 11.433,-0.054764 11.413,-0.061609 11.385,-0.061609 11.365,-0.054764 11.351,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
248
+ <polyline points="11.502,0.082145 11.502,-0.061609 11.509,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
249
+ <polyline points="11.502,0.082145 11.509,0.082145 11.509,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
250
+ <polyline points="11.481,0.034227 11.529,0.034227 11.529,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
251
+ <polyline points="11.481,0.034227 11.481,0.027382 11.529,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
252
+ <polyline points="11.57,0.034227 11.57,-0.061609 11.577,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
253
+ <polyline points="11.57,0.034227 11.577,0.034227 11.577,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
254
+ <polyline points="11.577,-0.0068455 11.584,0.013691 11.598,0.027382 11.611,0.034227 11.632,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
255
+ <polyline points="11.577,-0.0068455 11.584,0.0068455 11.598,0.020536 11.611,0.027382 11.632,0.027382 11.632,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
256
+ <polyline points="11.666,-0.013691 11.741,-0.013691 11.741,0.0068455 11.735,0.020536 11.728,0.027382 11.714,0.034227 11.693,0.034227 11.68,0.027382 11.666,0.013691 11.659,-0.0068455 11.659,-0.020536 11.666,-0.041073 11.68,-0.054764 11.693,-0.061609 11.714,-0.061609 11.728,-0.054764 11.741,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
257
+ <polyline points="11.666,-0.0068455 11.735,-0.0068455 11.735,0.0068455 11.728,0.020536 11.714,0.027382 11.693,0.027382 11.68,0.020536 11.673,0.013691 11.666,-0.0068455 11.666,-0.020536 11.673,-0.041073 11.68,-0.047918 11.693,-0.054764 11.714,-0.054764 11.728,-0.047918 11.735,-0.034227 11.741,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
258
+ <polyline points="11.865,0.034227 11.865,-0.061609 11.871,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
259
+ <polyline points="11.865,0.034227 11.871,0.034227 11.871,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
260
+ <polyline points="11.865,0.013691 11.851,0.027382 11.837,0.034227 11.817,0.034227 11.803,0.027382 11.789,0.013691 11.782,-0.0068455 11.782,-0.020536 11.789,-0.041073 11.803,-0.054764 11.817,-0.061609 11.837,-0.061609 11.851,-0.054764 11.865,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
261
+ <polyline points="11.865,0.013691 11.837,0.027382 11.817,0.027382 11.803,0.020536 11.796,0.013691 11.789,-0.0068455 11.789,-0.020536 11.796,-0.041073 11.803,-0.047918 11.817,-0.054764 11.837,-0.054764 11.865,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
262
+ <polyline points="11.926,0.034227 11.926,-0.061609 11.933,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
263
+ <polyline points="11.926,0.034227 11.933,0.034227 11.933,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
264
+ <polyline points="11.933,0.0068455 11.954,0.027382 11.967,0.034227 11.988,0.034227 12.002,0.027382 12.008,0.0068455 12.008,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
265
+ <polyline points="11.933,0.0068455 11.954,0.020536 11.967,0.027382 11.981,0.027382 11.995,0.020536 12.002,0.0068455 12.002,-0.061609 12.008,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
266
+ <polyline points="12.008,0.0068455 12.029,0.027382 12.043,0.034227 12.063,0.034227 12.077,0.027382 12.084,0.0068455 12.084,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
267
+ <polyline points="12.008,0.0068455 12.029,0.020536 12.043,0.027382 12.056,0.027382 12.07,0.020536 12.077,0.0068455 12.077,-0.061609 12.084,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
268
+ <line x1="11.16" y1="-0.15" x2="12.09" y2="-0.15" stroke-width="0.026576" />
269
+ <polyline points="12.942,0.013691 12.935,0.027382 12.915,0.034227 12.894,0.034227 12.874,0.027382 12.867,0.013691 12.874,-1.3878e-17 12.887,-0.0068455 12.922,-0.020536 12.935,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
270
+ <polyline points="12.928,-0.020536 12.935,-0.034227 12.935,-0.041073 12.928,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
271
+ <polyline points="12.935,-0.047918 12.915,-0.054764 12.894,-0.054764 12.874,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
272
+ <polyline points="12.88,-0.054764 12.874,-0.041073 12.867,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
273
+ <polyline points="12.942,0.013691 12.935,0.013691 12.928,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
274
+ <polyline points="12.935,0.020536 12.915,0.027382 12.894,0.027382 12.874,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
275
+ <polyline points="12.88,0.027382 12.874,0.013691 12.88,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
276
+ <polyline points="12.874,0.0068455 12.887,-2.0817e-17 12.922,-0.013691 12.935,-0.020536 12.942,-0.034227 12.942,-0.041073 12.935,-0.054764 12.915,-0.061609 12.894,-0.061609 12.874,-0.054764 12.867,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
277
+ <polyline points="12.997,0.082145 12.997,-0.061609 13.004,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
278
+ <polyline points="12.997,0.082145 13.004,0.082145 13.004,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
279
+ <polyline points="12.976,0.034227 13.024,0.034227 13.024,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
280
+ <polyline points="12.976,0.034227 12.976,0.027382 13.024,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
281
+ <polygon points="13.072,0.034227 13.065,0.027382 13.065,0.020536 13.072,0.013691 13.079,0.013691 13.086,0.020536 13.086,0.027382 13.079,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
282
+ <polygon points="13.072,0.027382 13.072,0.020536 13.079,0.020536 13.079,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
283
+ <polygon points="13.072,-0.041073 13.065,-0.047918 13.065,-0.054764 13.072,-0.061609 13.079,-0.061609 13.086,-0.054764 13.086,-0.047918 13.079,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
284
+ <polygon points="13.072,-0.047918 13.072,-0.054764 13.079,-0.054764 13.079,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
285
+ <line x1="13.168" y1="0.0753" x2="13.168" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
286
+ <polyline points="13.175,0.0753 13.175,-0.061609 13.168,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
287
+ <polyline points="13.127,0.082145 13.216,0.082145 13.216,0.0753 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
288
+ <polyline points="13.127,0.082145 13.127,0.0753 13.216,0.0753 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
289
+ <polyline points="13.257,0.034227 13.257,-0.061609 13.264,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
290
+ <polyline points="13.257,0.034227 13.264,0.034227 13.264,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
291
+ <polyline points="13.264,-0.0068455 13.271,0.013691 13.284,0.027382 13.298,0.034227 13.319,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
292
+ <polyline points="13.264,-0.0068455 13.271,0.0068455 13.284,0.020536 13.298,0.027382 13.319,0.027382 13.319,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
293
+ <polyline points="13.428,0.034227 13.428,-0.061609 13.435,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
294
+ <polyline points="13.428,0.034227 13.435,0.034227 13.435,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
295
+ <polyline points="13.428,0.013691 13.414,0.027382 13.401,0.034227 13.38,0.034227 13.367,0.027382 13.353,0.013691 13.346,-0.0068455 13.346,-0.020536 13.353,-0.041073 13.367,-0.054764 13.38,-0.061609 13.401,-0.061609 13.414,-0.054764 13.428,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
296
+ <polyline points="13.428,0.013691 13.401,0.027382 13.38,0.027382 13.367,0.020536 13.36,0.013691 13.353,-0.0068455 13.353,-0.020536 13.36,-0.041073 13.367,-0.047918 13.38,-0.054764 13.401,-0.054764 13.428,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
297
+ <polyline points="13.49,0.034227 13.49,-0.061609 13.497,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
298
+ <polyline points="13.49,0.034227 13.497,0.034227 13.497,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
299
+ <polyline points="13.497,0.0068455 13.517,0.027382 13.531,0.034227 13.551,0.034227 13.565,0.027382 13.572,0.0068455 13.572,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
300
+ <polyline points="13.497,0.0068455 13.517,0.020536 13.531,0.027382 13.544,0.027382 13.558,0.020536 13.565,0.0068455 13.565,-0.061609 13.572,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
301
+ <polyline points="13.695,0.013691 13.688,0.027382 13.668,0.034227 13.647,0.034227 13.627,0.027382 13.62,0.013691 13.627,1.3878e-17 13.64,-0.0068455 13.675,-0.020536 13.688,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
302
+ <polyline points="13.681,-0.020536 13.688,-0.034227 13.688,-0.041073 13.681,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
303
+ <polyline points="13.688,-0.047918 13.668,-0.054764 13.647,-0.054764 13.627,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
304
+ <polyline points="13.633,-0.054764 13.627,-0.041073 13.62,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
305
+ <polyline points="13.695,0.013691 13.688,0.013691 13.681,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
306
+ <polyline points="13.688,0.020536 13.668,0.027382 13.647,0.027382 13.627,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
307
+ <polyline points="13.633,0.027382 13.627,0.013691 13.633,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
308
+ <polyline points="13.627,0.0068455 13.64,6.9389e-18 13.675,-0.013691 13.688,-0.020536 13.695,-0.034227 13.695,-0.041073 13.688,-0.054764 13.668,-0.061609 13.647,-0.061609 13.627,-0.054764 13.62,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
309
+ <polyline points="13.743,0.034227 13.743,-0.10953 13.75,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
310
+ <polyline points="13.743,0.034227 13.75,0.034227 13.75,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
311
+ <polyline points="13.75,0.013691 13.764,0.027382 13.777,0.034227 13.798,0.034227 13.811,0.027382 13.825,0.013691 13.832,-0.0068455 13.832,-0.020536 13.825,-0.041073 13.811,-0.054764 13.798,-0.061609 13.777,-0.061609 13.764,-0.054764 13.75,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
312
+ <polyline points="13.75,0.013691 13.777,0.027382 13.798,0.027382 13.811,0.020536 13.818,0.013691 13.825,-0.0068455 13.825,-0.020536 13.818,-0.041073 13.811,-0.047918 13.798,-0.054764 13.777,-0.054764 13.75,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
313
+ <polygon points="13.907,0.034227 13.894,0.027382 13.88,0.013691 13.873,-0.0068455 13.873,-0.020536 13.88,-0.041073 13.894,-0.054764 13.907,-0.061609 13.928,-0.061609 13.942,-0.054764 13.955,-0.041073 13.962,-0.020536 13.962,-0.0068455 13.955,0.013691 13.942,0.027382 13.928,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
314
+ <polygon points="13.907,0.027382 13.894,0.020536 13.887,0.013691 13.88,-0.0068455 13.88,-0.020536 13.887,-0.041073 13.894,-0.047918 13.907,-0.054764 13.928,-0.054764 13.942,-0.047918 13.948,-0.041073 13.955,-0.020536 13.955,-0.0068455 13.948,0.013691 13.942,0.020536 13.928,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
315
+ <polyline points="14.01,0.034227 14.01,-0.061609 14.017,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
316
+ <polyline points="14.01,0.034227 14.017,0.034227 14.017,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
317
+ <polyline points="14.017,-0.0068455 14.024,0.013691 14.037,0.027382 14.051,0.034227 14.072,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
318
+ <polyline points="14.017,-0.0068455 14.024,0.0068455 14.037,0.020536 14.051,0.027382 14.072,0.027382 14.072,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
319
+ <polyline points="14.113,0.082145 14.113,-0.061609 14.12,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
320
+ <polyline points="14.113,0.082145 14.12,0.082145 14.12,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
321
+ <polyline points="14.092,0.034227 14.14,0.034227 14.14,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
322
+ <polyline points="14.092,0.034227 14.092,0.027382 14.14,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
323
+ <line x1="13.035" y1="-0.15" x2="13.965" y2="-0.15" stroke-width="0.026576" />
324
+ <polyline points="14.998,0.013691 14.992,0.027382 14.971,0.034227 14.951,0.034227 14.93,0.027382 14.923,0.013691 14.93,-1.3878e-17 14.944,-0.0068455 14.978,-0.020536 14.992,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
325
+ <polyline points="14.985,-0.020536 14.992,-0.034227 14.992,-0.041073 14.985,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
326
+ <polyline points="14.992,-0.047918 14.971,-0.054764 14.951,-0.054764 14.93,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
327
+ <polyline points="14.937,-0.054764 14.93,-0.041073 14.923,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
328
+ <polyline points="14.999,0.013691 14.992,0.013691 14.985,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
329
+ <polyline points="14.992,0.020536 14.971,0.027382 14.951,0.027382 14.93,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
330
+ <polyline points="14.937,0.027382 14.93,0.013691 14.937,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
331
+ <polyline points="14.93,0.0068455 14.944,-2.0817e-17 14.978,-0.013691 14.992,-0.020536 14.999,-0.034227 14.999,-0.041073 14.992,-0.054764 14.971,-0.061609 14.951,-0.061609 14.93,-0.054764 14.923,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
332
+ <polyline points="15.122,0.013691 15.108,0.027382 15.094,0.034227 15.074,0.034227 15.06,0.027382 15.046,0.013691 15.04,-0.0068455 15.04,-0.020536 15.046,-0.041073 15.06,-0.054764 15.074,-0.061609 15.094,-0.061609 15.108,-0.054764 15.122,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
333
+ <polyline points="15.122,0.013691 15.115,0.0068455 15.108,0.020536 15.094,0.027382 15.074,0.027382 15.06,0.020536 15.053,0.013691 15.046,-0.0068455 15.046,-0.020536 15.053,-0.041073 15.06,-0.047918 15.074,-0.054764 15.094,-0.054764 15.108,-0.047918 15.115,-0.034227 15.122,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
334
+ <polygon points="15.176,0.034227 15.17,0.027382 15.17,0.020536 15.176,0.013691 15.183,0.013691 15.19,0.020536 15.19,0.027382 15.183,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
335
+ <polygon points="15.176,0.027382 15.176,0.020536 15.183,0.020536 15.183,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
336
+ <polygon points="15.176,-0.041073 15.17,-0.047918 15.17,-0.054764 15.176,-0.061609 15.183,-0.061609 15.19,-0.054764 15.19,-0.047918 15.183,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
337
+ <polygon points="15.176,-0.047918 15.176,-0.054764 15.183,-0.054764 15.183,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
338
+ <polyline points="15.341,0.047918 15.334,0.061609 15.32,0.0753 15.307,0.082145 15.279,0.082145 15.265,0.0753 15.252,0.061609 15.245,0.047918 15.238,0.027382 15.238,-0.0068455 15.245,-0.027382 15.252,-0.041073 15.265,-0.054764 15.279,-0.061609 15.307,-0.061609 15.32,-0.054764 15.334,-0.041073 15.341,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
339
+ <polyline points="15.341,0.047918 15.334,0.047918 15.327,0.061609 15.32,0.068455 15.307,0.0753 15.279,0.0753 15.265,0.068455 15.252,0.047918 15.245,0.027382 15.245,-0.0068455 15.252,-0.027382 15.265,-0.047918 15.279,-0.054764 15.307,-0.054764 15.32,-0.047918 15.327,-0.041073 15.334,-0.027382 15.341,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
340
+ <polygon points="15.416,0.034227 15.402,0.027382 15.389,0.013691 15.382,-0.0068455 15.382,-0.020536 15.389,-0.041073 15.402,-0.054764 15.416,-0.061609 15.437,-0.061609 15.45,-0.054764 15.464,-0.041073 15.471,-0.020536 15.471,-0.0068455 15.464,0.013691 15.45,0.027382 15.437,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
341
+ <polygon points="15.416,0.027382 15.402,0.020536 15.396,0.013691 15.389,-0.0068455 15.389,-0.020536 15.396,-0.041073 15.402,-0.047918 15.416,-0.054764 15.437,-0.054764 15.45,-0.047918 15.457,-0.041073 15.464,-0.020536 15.464,-0.0068455 15.457,0.013691 15.45,0.020536 15.437,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
342
+ <polyline points="15.594,0.082145 15.594,-0.061609 15.601,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
343
+ <polyline points="15.594,0.082145 15.601,0.082145 15.601,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
344
+ <polyline points="15.594,0.013691 15.58,0.027382 15.567,0.034227 15.546,0.034227 15.532,0.027382 15.519,0.013691 15.512,-0.0068455 15.512,-0.020536 15.519,-0.041073 15.532,-0.054764 15.546,-0.061609 15.567,-0.061609 15.58,-0.054764 15.594,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
345
+ <polyline points="15.594,0.013691 15.567,0.027382 15.546,0.027382 15.532,0.020536 15.526,0.013691 15.519,-0.0068455 15.519,-0.020536 15.526,-0.041073 15.532,-0.047918 15.546,-0.054764 15.567,-0.054764 15.594,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
346
+ <polyline points="15.656,-0.013691 15.731,-0.013691 15.731,0.0068455 15.724,0.020536 15.717,0.027382 15.704,0.034227 15.683,0.034227 15.669,0.027382 15.656,0.013691 15.649,-0.0068455 15.649,-0.020536 15.656,-0.041073 15.669,-0.054764 15.683,-0.061609 15.704,-0.061609 15.717,-0.054764 15.731,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
347
+ <polyline points="15.656,-0.0068455 15.724,-0.0068455 15.724,0.0068455 15.717,0.020536 15.704,0.027382 15.683,0.027382 15.669,0.020536 15.663,0.013691 15.656,-0.0068455 15.656,-0.020536 15.663,-0.041073 15.669,-0.047918 15.683,-0.054764 15.704,-0.054764 15.717,-0.047918 15.724,-0.034227 15.731,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
348
+ <polyline points="15.779,0.034227 15.779,-0.061609 15.786,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
349
+ <polyline points="15.779,0.034227 15.786,0.034227 15.786,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
350
+ <polyline points="15.786,-0.0068455 15.793,0.013691 15.806,0.027382 15.82,0.034227 15.84,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
351
+ <polyline points="15.786,-0.0068455 15.793,0.0068455 15.806,0.020536 15.82,0.027382 15.84,0.027382 15.84,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
352
+ <line x1="14.91" y1="-0.15" x2="15.84" y2="-0.15" stroke-width="0.026576" />
353
+ <polyline points="16.709,0.013691 16.702,0.027382 16.682,0.034227 16.661,0.034227 16.641,0.027382 16.634,0.013691 16.641,-1.3878e-17 16.654,-0.0068455 16.689,-0.020536 16.702,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
354
+ <polyline points="16.696,-0.020536 16.702,-0.034227 16.702,-0.041073 16.696,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
355
+ <polyline points="16.702,-0.047918 16.682,-0.054764 16.661,-0.054764 16.641,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
356
+ <polyline points="16.648,-0.054764 16.641,-0.041073 16.634,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
357
+ <polyline points="16.709,0.013691 16.702,0.013691 16.696,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
358
+ <polyline points="16.702,0.020536 16.682,0.027382 16.661,0.027382 16.641,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
359
+ <polyline points="16.648,0.027382 16.641,0.013691 16.648,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
360
+ <polyline points="16.641,0.0068455 16.654,-2.0817e-17 16.689,-0.013691 16.702,-0.020536 16.709,-0.034227 16.709,-0.041073 16.702,-0.054764 16.682,-0.061609 16.661,-0.061609 16.641,-0.054764 16.634,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
361
+ <polyline points="16.757,0.034227 16.757,-0.061609 16.764,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
362
+ <polyline points="16.757,0.034227 16.764,0.034227 16.764,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
363
+ <polyline points="16.764,-0.0068455 16.771,0.013691 16.785,0.027382 16.798,0.034227 16.819,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
364
+ <polyline points="16.764,-0.0068455 16.771,0.0068455 16.785,0.020536 16.798,0.027382 16.819,0.027382 16.819,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
365
+ <polyline points="16.928,0.034227 16.928,-0.10953 16.935,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
366
+ <polyline points="16.928,0.034227 16.935,0.034227 16.935,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
367
+ <polyline points="16.928,0.013691 16.915,0.027382 16.901,0.034227 16.88,0.034227 16.867,0.027382 16.853,0.013691 16.846,-0.0068455 16.846,-0.020536 16.853,-0.041073 16.867,-0.054764 16.88,-0.061609 16.901,-0.061609 16.915,-0.054764 16.928,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
368
+ <polyline points="16.928,0.013691 16.901,0.027382 16.88,0.027382 16.867,0.020536 16.86,0.013691 16.853,-0.0068455 16.853,-0.020536 16.86,-0.041073 16.867,-0.047918 16.88,-0.054764 16.901,-0.054764 16.928,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
369
+ <polygon points="16.997,0.034227 16.99,0.027382 16.99,0.020536 16.997,0.013691 17.004,0.013691 17.01,0.020536 17.01,0.027382 17.004,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
370
+ <polygon points="16.997,0.027382 16.997,0.020536 17.004,0.020536 17.004,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
371
+ <polygon points="16.997,-0.041073 16.99,-0.047918 16.99,-0.054764 16.997,-0.061609 17.004,-0.061609 17.01,-0.054764 17.01,-0.047918 17.004,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
372
+ <polygon points="16.997,-0.047918 16.997,-0.054764 17.004,-0.054764 17.004,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
373
+ <line x1="17.065" y1="0.082145" x2="17.065" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
374
+ <polyline points="17.072,0.0753 17.072,-0.061609 17.065,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
375
+ <polyline points="17.065,0.082145 17.12,0.082145 17.14,0.0753 17.147,0.068455 17.154,0.054764 17.154,0.034227 17.147,0.020536 17.14,0.013691 17.12,0.0068455 17.072,0.0068455 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
376
+ <polyline points="17.072,0.0753 17.12,0.0753 17.14,0.068455 17.147,0.054764 17.147,0.034227 17.14,0.020536 17.12,0.013691 17.072,0.013691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
377
+ <polyline points="17.106,0.0068455 17.147,-0.061609 17.154,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
378
+ <line x1="17.113" y1="0.0068455" x2="17.154" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
379
+ <polyline points="17.202,-0.013691 17.277,-0.013691 17.277,0.0068455 17.271,0.020536 17.264,0.027382 17.25,0.034227 17.229,0.034227 17.216,0.027382 17.202,0.013691 17.195,-0.0068455 17.195,-0.020536 17.202,-0.041073 17.216,-0.054764 17.229,-0.061609 17.25,-0.061609 17.264,-0.054764 17.277,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
380
+ <polyline points="17.202,-0.0068455 17.271,-0.0068455 17.271,0.0068455 17.264,0.020536 17.25,0.027382 17.229,0.027382 17.216,0.020536 17.209,0.013691 17.202,-0.0068455 17.202,-0.020536 17.209,-0.041073 17.216,-0.047918 17.229,-0.054764 17.25,-0.054764 17.264,-0.047918 17.271,-0.034227 17.277,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
381
+ <polyline points="17.401,0.034227 17.401,-0.10953 17.407,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
382
+ <polyline points="17.401,0.034227 17.407,0.034227 17.407,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
383
+ <polyline points="17.401,0.013691 17.387,0.027382 17.373,0.034227 17.353,0.034227 17.339,0.027382 17.325,0.013691 17.318,-0.0068455 17.318,-0.020536 17.325,-0.041073 17.339,-0.054764 17.353,-0.061609 17.373,-0.061609 17.387,-0.054764 17.401,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
384
+ <polyline points="17.401,0.013691 17.373,0.027382 17.353,0.027382 17.339,0.020536 17.332,0.013691 17.325,-0.0068455 17.325,-0.020536 17.332,-0.041073 17.339,-0.047918 17.353,-0.054764 17.373,-0.054764 17.401,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
385
+ <polyline points="17.462,0.034227 17.462,-0.034227 17.469,-0.054764 17.483,-0.061609 17.503,-0.061609 17.517,-0.054764 17.538,-0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
386
+ <polyline points="17.462,0.034227 17.469,0.034227 17.469,-0.034227 17.476,-0.047918 17.49,-0.054764 17.503,-0.054764 17.517,-0.047918 17.538,-0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
387
+ <polyline points="17.538,0.034227 17.538,-0.061609 17.544,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
388
+ <polyline points="17.538,0.034227 17.544,0.034227 17.544,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
389
+ <polyline points="17.599,-0.013691 17.674,-0.013691 17.674,0.0068455 17.668,0.020536 17.661,0.027382 17.647,0.034227 17.626,0.034227 17.613,0.027382 17.599,0.013691 17.592,-0.0068455 17.592,-0.020536 17.599,-0.041073 17.613,-0.054764 17.626,-0.061609 17.647,-0.061609 17.661,-0.054764 17.674,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
390
+ <polyline points="17.599,-0.0068455 17.668,-0.0068455 17.668,0.0068455 17.661,0.020536 17.647,0.027382 17.626,0.027382 17.613,0.020536 17.606,0.013691 17.599,-0.0068455 17.599,-0.020536 17.606,-0.041073 17.613,-0.047918 17.626,-0.054764 17.647,-0.054764 17.661,-0.047918 17.668,-0.034227 17.674,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
391
+ <polyline points="17.791,0.013691 17.784,0.027382 17.763,0.034227 17.743,0.034227 17.722,0.027382 17.715,0.013691 17.722,1.3878e-17 17.736,-0.0068455 17.77,-0.020536 17.784,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
392
+ <polyline points="17.777,-0.020536 17.784,-0.034227 17.784,-0.041073 17.777,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
393
+ <polyline points="17.784,-0.047918 17.763,-0.054764 17.743,-0.054764 17.722,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
394
+ <polyline points="17.729,-0.054764 17.722,-0.041073 17.715,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
395
+ <polyline points="17.791,0.013691 17.784,0.013691 17.777,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
396
+ <polyline points="17.784,0.020536 17.763,0.027382 17.743,0.027382 17.722,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
397
+ <polyline points="17.729,0.027382 17.722,0.013691 17.729,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
398
+ <polyline points="17.722,0.0068455 17.736,6.9389e-18 17.77,-0.013691 17.784,-0.020536 17.791,-0.034227 17.791,-0.041073 17.784,-0.054764 17.763,-0.061609 17.743,-0.061609 17.722,-0.054764 17.715,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
399
+ <polyline points="17.846,0.082145 17.846,-0.061609 17.852,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
400
+ <polyline points="17.846,0.082145 17.852,0.082145 17.852,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
401
+ <polyline points="17.825,0.034227 17.873,0.034227 17.873,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
402
+ <polyline points="17.825,0.034227 17.825,0.027382 17.873,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
403
+ <line x1="16.785" y1="-0.15" x2="17.715" y2="-0.15" stroke-width="0.026576" />
404
+ <polyline points="18.509,0.013691 18.502,0.027382 18.482,0.034227 18.461,0.034227 18.44,0.027382 18.434,0.013691 18.44,-1.3878e-17 18.454,-0.0068455 18.488,-0.020536 18.502,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
405
+ <polyline points="18.495,-0.020536 18.502,-0.034227 18.502,-0.041073 18.495,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
406
+ <polyline points="18.502,-0.047918 18.482,-0.054764 18.461,-0.054764 18.44,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
407
+ <polyline points="18.447,-0.054764 18.44,-0.041073 18.434,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
408
+ <polyline points="18.509,0.013691 18.502,0.013691 18.495,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
409
+ <polyline points="18.502,0.020536 18.482,0.027382 18.461,0.027382 18.44,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
410
+ <polyline points="18.447,0.027382 18.44,0.013691 18.447,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
411
+ <polyline points="18.44,0.0068455 18.454,-2.0817e-17 18.488,-0.013691 18.502,-0.020536 18.509,-0.034227 18.509,-0.041073 18.502,-0.054764 18.482,-0.061609 18.461,-0.061609 18.44,-0.054764 18.434,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
412
+ <polyline points="18.557,0.034227 18.557,-0.061609 18.564,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
413
+ <polyline points="18.557,0.034227 18.564,0.034227 18.564,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
414
+ <polyline points="18.564,-0.0068455 18.571,0.013691 18.584,0.027382 18.598,0.034227 18.618,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
415
+ <polyline points="18.564,-0.0068455 18.571,0.0068455 18.584,0.020536 18.598,0.027382 18.618,0.027382 18.618,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
416
+ <polyline points="18.721,0.013691 18.714,0.027382 18.694,0.034227 18.673,0.034227 18.653,0.027382 18.646,0.013691 18.653,-1.3878e-17 18.666,-0.0068455 18.701,-0.020536 18.714,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
417
+ <polyline points="18.707,-0.020536 18.714,-0.034227 18.714,-0.041073 18.707,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
418
+ <polyline points="18.714,-0.047918 18.694,-0.054764 18.673,-0.054764 18.653,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
419
+ <polyline points="18.66,-0.054764 18.653,-0.041073 18.646,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
420
+ <polyline points="18.721,0.013691 18.714,0.013691 18.707,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
421
+ <polyline points="18.714,0.020536 18.694,0.027382 18.673,0.027382 18.653,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
422
+ <polyline points="18.66,0.027382 18.653,0.013691 18.66,-2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
423
+ <polyline points="18.653,0.0068455 18.666,-2.0817e-17 18.701,-0.013691 18.714,-0.020536 18.721,-0.034227 18.721,-0.041073 18.714,-0.054764 18.694,-0.061609 18.673,-0.061609 18.653,-0.054764 18.646,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
424
+ <polygon points="18.776,0.034227 18.769,0.027382 18.769,0.020536 18.776,0.013691 18.783,0.013691 18.79,0.020536 18.79,0.027382 18.783,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
425
+ <polygon points="18.776,0.027382 18.776,0.020536 18.783,0.020536 18.783,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
426
+ <polygon points="18.776,-0.041073 18.769,-0.047918 18.769,-0.054764 18.776,-0.061609 18.783,-0.061609 18.79,-0.054764 18.79,-0.047918 18.783,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
427
+ <polygon points="18.776,-0.047918 18.776,-0.054764 18.783,-0.054764 18.783,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
428
+ <line x1="18.844" y1="0.082145" x2="18.844" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
429
+ <polyline points="18.851,0.0753 18.851,-0.061609 18.844,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
430
+ <polyline points="18.844,0.082145 18.899,0.082145 18.92,0.0753 18.926,0.068455 18.933,0.054764 18.933,0.034227 18.926,0.020536 18.92,0.013691 18.899,0.0068455 18.851,0.0068455 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
431
+ <polyline points="18.851,0.0753 18.899,0.0753 18.92,0.068455 18.926,0.054764 18.926,0.034227 18.92,0.020536 18.899,0.013691 18.851,0.013691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
432
+ <polyline points="18.885,0.0068455 18.926,-0.061609 18.933,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
433
+ <line x1="18.892" y1="0.0068455" x2="18.933" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
434
+ <polyline points="18.981,-0.013691 19.057,-0.013691 19.057,0.0068455 19.05,0.020536 19.043,0.027382 19.029,0.034227 19.009,0.034227 18.995,0.027382 18.981,0.013691 18.974,-0.0068455 18.974,-0.020536 18.981,-0.041073 18.995,-0.054764 19.009,-0.061609 19.029,-0.061609 19.043,-0.054764 19.057,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
435
+ <polyline points="18.981,-0.0068455 19.05,-0.0068455 19.05,0.0068455 19.043,0.020536 19.029,0.027382 19.009,0.027382 18.995,0.020536 18.988,0.013691 18.981,-0.0068455 18.981,-0.020536 18.988,-0.041073 18.995,-0.047918 19.009,-0.054764 19.029,-0.054764 19.043,-0.047918 19.05,-0.034227 19.057,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
436
+ <polyline points="19.173,0.013691 19.166,0.027382 19.146,0.034227 19.125,0.034227 19.104,0.027382 19.098,0.013691 19.104,1.3878e-17 19.118,-0.0068455 19.152,-0.020536 19.166,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
437
+ <polyline points="19.159,-0.020536 19.166,-0.034227 19.166,-0.041073 19.159,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
438
+ <polyline points="19.166,-0.047918 19.146,-0.054764 19.125,-0.054764 19.104,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
439
+ <polyline points="19.111,-0.054764 19.104,-0.041073 19.098,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
440
+ <polyline points="19.173,0.013691 19.166,0.013691 19.159,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
441
+ <polyline points="19.166,0.020536 19.146,0.027382 19.125,0.027382 19.104,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
442
+ <polyline points="19.111,0.027382 19.104,0.013691 19.111,6.9389e-18 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
443
+ <polyline points="19.104,0.0068455 19.118,6.9389e-18 19.152,-0.013691 19.166,-0.020536 19.173,-0.034227 19.173,-0.041073 19.166,-0.054764 19.146,-0.061609 19.125,-0.061609 19.104,-0.054764 19.098,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
444
+ <polyline points="19.221,0.034227 19.221,-0.10953 19.228,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
445
+ <polyline points="19.221,0.034227 19.228,0.034227 19.228,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
446
+ <polyline points="19.228,0.013691 19.241,0.027382 19.255,0.034227 19.276,0.034227 19.289,0.027382 19.303,0.013691 19.31,-0.0068455 19.31,-0.020536 19.303,-0.041073 19.289,-0.054764 19.276,-0.061609 19.255,-0.061609 19.241,-0.054764 19.228,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
447
+ <polyline points="19.228,0.013691 19.255,0.027382 19.276,0.027382 19.289,0.020536 19.296,0.013691 19.303,-0.0068455 19.303,-0.020536 19.296,-0.041073 19.289,-0.047918 19.276,-0.054764 19.255,-0.054764 19.228,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
448
+ <polygon points="19.385,0.034227 19.371,0.027382 19.358,0.013691 19.351,-0.0068455 19.351,-0.020536 19.358,-0.041073 19.371,-0.054764 19.385,-0.061609 19.406,-0.061609 19.419,-0.054764 19.433,-0.041073 19.44,-0.020536 19.44,-0.0068455 19.433,0.013691 19.419,0.027382 19.406,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
449
+ <polygon points="19.385,0.027382 19.371,0.020536 19.365,0.013691 19.358,-0.0068455 19.358,-0.020536 19.365,-0.041073 19.371,-0.047918 19.385,-0.054764 19.406,-0.054764 19.419,-0.047918 19.426,-0.041073 19.433,-0.020536 19.433,-0.0068455 19.426,0.013691 19.419,0.020536 19.406,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
450
+ <polyline points="19.488,0.034227 19.488,-0.061609 19.495,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
451
+ <polyline points="19.488,0.034227 19.495,0.034227 19.495,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
452
+ <polyline points="19.495,0.0068455 19.515,0.027382 19.529,0.034227 19.549,0.034227 19.563,0.027382 19.57,0.0068455 19.57,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
453
+ <polyline points="19.495,0.0068455 19.515,0.020536 19.529,0.027382 19.543,0.027382 19.556,0.020536 19.563,0.0068455 19.563,-0.061609 19.57,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
454
+ <polyline points="19.693,0.013691 19.686,0.027382 19.666,0.034227 19.645,0.034227 19.625,0.027382 19.618,0.013691 19.625,2.7756e-17 19.638,-0.0068455 19.673,-0.020536 19.686,-0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
455
+ <polyline points="19.679,-0.020536 19.686,-0.034227 19.686,-0.041073 19.679,-0.054764 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
456
+ <polyline points="19.686,-0.047918 19.666,-0.054764 19.645,-0.054764 19.625,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
457
+ <polyline points="19.632,-0.054764 19.625,-0.041073 19.618,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
458
+ <polyline points="19.693,0.013691 19.686,0.013691 19.679,0.027382 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
459
+ <polyline points="19.686,0.020536 19.666,0.027382 19.645,0.027382 19.625,0.020536 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
460
+ <polyline points="19.632,0.027382 19.625,0.013691 19.632,2.0817e-17 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
461
+ <polyline points="19.625,0.0068455 19.638,2.0817e-17 19.673,-0.013691 19.686,-0.020536 19.693,-0.034227 19.693,-0.041073 19.686,-0.054764 19.666,-0.061609 19.645,-0.061609 19.625,-0.054764 19.618,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
462
+ <polyline points="19.741,-0.013691 19.816,-0.013691 19.816,0.0068455 19.81,0.020536 19.803,0.027382 19.789,0.034227 19.768,0.034227 19.755,0.027382 19.741,0.013691 19.734,-0.0068455 19.734,-0.020536 19.741,-0.041073 19.755,-0.054764 19.768,-0.061609 19.789,-0.061609 19.803,-0.054764 19.816,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
463
+ <polyline points="19.741,-0.0068455 19.81,-0.0068455 19.81,0.0068455 19.803,0.020536 19.789,0.027382 19.768,0.027382 19.755,0.020536 19.748,0.013691 19.741,-0.0068455 19.741,-0.020536 19.748,-0.041073 19.755,-0.047918 19.768,-0.054764 19.789,-0.054764 19.803,-0.047918 19.81,-0.034227 19.816,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
464
+ <line x1="18.66" y1="-0.15" x2="19.59" y2="-0.15" stroke-width="0.026576" />
465
+ <line x1="20.535" y1="0.034227" x2="20.576" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
466
+ <polyline points="20.535,0.034227 20.541,0.034227 20.576,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
467
+ <polyline points="20.617,0.034227 20.61,0.034227 20.576,-0.047918 20.548,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
468
+ <polyline points="20.617,0.034227 20.576,-0.061609 20.555,-0.10953 20.548,-0.10953 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
469
+ <polygon points="20.665,0.034227 20.658,0.027382 20.658,0.020536 20.665,0.013691 20.671,0.013691 20.678,0.020536 20.678,0.027382 20.671,0.034227 " stroke-width="0.0097205" stroke-linejoin="round" />
470
+ <polygon points="20.665,0.027382 20.665,0.020536 20.671,0.020536 20.671,0.027382 " stroke-width="0.0097205" stroke-linejoin="round" />
471
+ <polygon points="20.665,-0.041073 20.658,-0.047918 20.658,-0.054764 20.665,-0.061609 20.671,-0.061609 20.678,-0.054764 20.678,-0.047918 20.671,-0.041073 " stroke-width="0.0097205" stroke-linejoin="round" />
472
+ <polygon points="20.665,-0.047918 20.665,-0.054764 20.671,-0.054764 20.671,-0.047918 " stroke-width="0.0097205" stroke-linejoin="round" />
473
+ <polyline points="20.822,0.061609 20.808,0.0753 20.788,0.082145 20.76,0.082145 20.74,0.0753 20.726,0.061609 20.726,0.047918 20.733,0.034227 20.74,0.027382 20.754,0.020536 20.788,0.0068455 20.801,3.6429e-17 20.808,-0.0068455 20.815,-0.020536 20.815,-0.041073 20.808,-0.047918 20.788,-0.054764 20.76,-0.054764 20.747,-0.047918 20.74,-0.041073 20.726,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
474
+ <polyline points="20.822,0.061609 20.808,0.061609 20.801,0.068455 20.788,0.0753 20.76,0.0753 20.74,0.068455 20.733,0.061609 20.733,0.047918 20.74,0.034227 20.754,0.027382 20.788,0.013691 20.801,0.0068455 20.815,-0.0068455 20.822,-0.020536 20.822,-0.041073 20.808,-0.054764 20.788,-0.061609 20.76,-0.061609 20.74,-0.054764 20.726,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
475
+ <polyline points="20.87,-0.013691 20.945,-0.013691 20.945,0.0068455 20.938,0.020536 20.932,0.027382 20.918,0.034227 20.897,0.034227 20.884,0.027382 20.87,0.013691 20.863,-0.0068455 20.863,-0.020536 20.87,-0.041073 20.884,-0.054764 20.897,-0.061609 20.918,-0.061609 20.932,-0.054764 20.945,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
476
+ <polyline points="20.87,-0.0068455 20.938,-0.0068455 20.938,0.0068455 20.932,0.020536 20.918,0.027382 20.897,0.027382 20.884,0.020536 20.877,0.013691 20.87,-0.0068455 20.87,-0.020536 20.877,-0.041073 20.884,-0.047918 20.897,-0.054764 20.918,-0.054764 20.932,-0.047918 20.938,-0.034227 20.945,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
477
+ <polyline points="20.993,0.034227 20.993,-0.061609 21,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
478
+ <polyline points="20.993,0.034227 21,0.034227 21,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
479
+ <polyline points="21,-0.0068455 21.007,0.013691 21.021,0.027382 21.034,0.034227 21.055,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
480
+ <polyline points="21,-0.0068455 21.007,0.0068455 21.021,0.020536 21.034,0.027382 21.055,0.027382 21.055,0.034227 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
481
+ <line x1="21.075" y1="0.034227" x2="21.116" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
482
+ <polyline points="21.075,0.034227 21.082,0.034227 21.116,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
483
+ <polyline points="21.157,0.034227 21.151,0.034227 21.116,-0.047918 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
484
+ <line x1="21.157" y1="0.034227" x2="21.116" y2="-0.061609" stroke-width="0.0097205" stroke-linecap="round" />
485
+ <polygon points="21.199,0.082145 21.192,0.0753 21.192,0.068455 21.199,0.061609 21.205,0.061609 21.212,0.068455 21.212,0.0753 21.205,0.082145 " stroke-width="0.0097205" stroke-linejoin="round" />
486
+ <polygon points="21.199,0.0753 21.199,0.068455 21.205,0.068455 21.205,0.0753 " stroke-width="0.0097205" stroke-linejoin="round" />
487
+ <polyline points="21.199,0.034227 21.199,-0.061609 21.205,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
488
+ <polyline points="21.199,0.034227 21.205,0.034227 21.205,-0.061609 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
489
+ <polyline points="21.335,0.013691 21.322,0.027382 21.308,0.034227 21.288,0.034227 21.274,0.027382 21.26,0.013691 21.253,-0.0068455 21.253,-0.020536 21.26,-0.041073 21.274,-0.054764 21.288,-0.061609 21.308,-0.061609 21.322,-0.054764 21.335,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
490
+ <polyline points="21.335,0.013691 21.329,0.0068455 21.322,0.020536 21.308,0.027382 21.288,0.027382 21.274,0.020536 21.267,0.013691 21.26,-0.0068455 21.26,-0.020536 21.267,-0.041073 21.274,-0.047918 21.288,-0.054764 21.308,-0.054764 21.322,-0.047918 21.329,-0.034227 21.335,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
491
+ <polyline points="21.383,-0.013691 21.459,-0.013691 21.459,0.0068455 21.452,0.020536 21.445,0.027382 21.431,0.034227 21.411,0.034227 21.397,0.027382 21.383,0.013691 21.376,-0.0068455 21.376,-0.020536 21.383,-0.041073 21.397,-0.054764 21.411,-0.061609 21.431,-0.061609 21.445,-0.054764 21.459,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
492
+ <polyline points="21.383,-0.0068455 21.452,-0.0068455 21.452,0.0068455 21.445,0.020536 21.431,0.027382 21.411,0.027382 21.397,0.020536 21.39,0.013691 21.383,-0.0068455 21.383,-0.020536 21.39,-0.041073 21.397,-0.047918 21.411,-0.054764 21.431,-0.054764 21.445,-0.047918 21.452,-0.034227 21.459,-0.041073 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
493
+ <line x1="20.535" y1="-0.15" x2="21.465" y2="-0.15" stroke-width="0.026576" />
494
+ <line x1="0.435" y1="-0.33" x2="20.94" y2="-0.33" stroke-width="0.026576" />
495
+ <polygon points="20.84,-0.305 20.94,-0.33 20.84,-0.355 " stroke-width="0.026576" fill="black" />
496
+ <polyline points="10.403,-0.18077 10.39,-0.16708 10.376,-0.16023 10.355,-0.16023 10.342,-0.16708 10.328,-0.18077 10.321,-0.20131 10.321,-0.215 10.328,-0.23553 10.342,-0.24922 10.355,-0.25607 10.376,-0.25607 10.39,-0.24922 10.403,-0.23553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
497
+ <polyline points="10.403,-0.18077 10.397,-0.18761 10.39,-0.17392 10.376,-0.16708 10.355,-0.16708 10.342,-0.17392 10.335,-0.18077 10.328,-0.20131 10.328,-0.215 10.335,-0.23553 10.342,-0.24238 10.355,-0.24922 10.376,-0.24922 10.39,-0.24238 10.397,-0.22869 10.403,-0.23553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
498
+ <polyline points="10.451,-0.11231 10.451,-0.25607 10.458,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
499
+ <polyline points="10.451,-0.11231 10.458,-0.11231 10.458,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
500
+ <polygon points="10.513,-0.11231 10.506,-0.11916 10.506,-0.12601 10.513,-0.13285 10.52,-0.13285 10.527,-0.12601 10.527,-0.11916 10.52,-0.11231 " stroke-width="0.0097205" stroke-linejoin="round" />
501
+ <polygon points="10.513,-0.11916 10.513,-0.12601 10.52,-0.12601 10.52,-0.11916 " stroke-width="0.0097205" stroke-linejoin="round" />
502
+ <polyline points="10.513,-0.16023 10.513,-0.25607 10.52,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
503
+ <polyline points="10.513,-0.16023 10.52,-0.16023 10.52,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
504
+ <polyline points="10.575,-0.20815 10.65,-0.20815 10.65,-0.18761 10.643,-0.17392 10.636,-0.16708 10.622,-0.16023 10.602,-0.16023 10.588,-0.16708 10.575,-0.18077 10.568,-0.20131 10.568,-0.215 10.575,-0.23553 10.588,-0.24922 10.602,-0.25607 10.622,-0.25607 10.636,-0.24922 10.65,-0.23553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
505
+ <polyline points="10.575,-0.20131 10.643,-0.20131 10.643,-0.18761 10.636,-0.17392 10.622,-0.16708 10.602,-0.16708 10.588,-0.17392 10.581,-0.18077 10.575,-0.20131 10.575,-0.215 10.581,-0.23553 10.588,-0.24238 10.602,-0.24922 10.622,-0.24922 10.636,-0.24238 10.643,-0.22869 10.65,-0.23553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
506
+ <polyline points="10.698,-0.16023 10.698,-0.25607 10.705,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
507
+ <polyline points="10.698,-0.16023 10.705,-0.16023 10.705,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
508
+ <polyline points="10.705,-0.18761 10.725,-0.16708 10.739,-0.16023 10.759,-0.16023 10.773,-0.16708 10.78,-0.18761 10.78,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
509
+ <polyline points="10.705,-0.18761 10.725,-0.17392 10.739,-0.16708 10.753,-0.16708 10.766,-0.17392 10.773,-0.18761 10.773,-0.25607 10.78,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
510
+ <polyline points="10.842,-0.11231 10.842,-0.25607 10.848,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
511
+ <polyline points="10.842,-0.11231 10.848,-0.11231 10.848,-0.25607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
512
+ <polyline points="10.821,-0.16023 10.869,-0.16023 10.869,-0.16708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
513
+ <polyline points="10.821,-0.16023 10.821,-0.16708 10.869,-0.16708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
514
+ <polyline points="10.951,-0.084933 10.937,-0.098624 10.924,-0.11916 10.91,-0.14654 10.903,-0.18077 10.903,-0.20815 10.91,-0.24238 10.924,-0.26976 10.937,-0.2903 10.951,-0.30399 10.958,-0.30399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
515
+ <polyline points="10.951,-0.084933 10.958,-0.084933 10.944,-0.098624 10.931,-0.11916 10.917,-0.14654 10.91,-0.18077 10.91,-0.20815 10.917,-0.24238 10.931,-0.26976 10.944,-0.2903 10.958,-0.30399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
516
+ <polyline points="10.999,-0.084933 11.013,-0.098624 11.026,-0.11916 11.04,-0.14654 11.047,-0.18077 11.047,-0.20815 11.04,-0.24238 11.026,-0.26976 11.013,-0.2903 10.999,-0.30399 11.006,-0.30399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
517
+ <polyline points="10.999,-0.084933 11.006,-0.084933 11.02,-0.098624 11.033,-0.11916 11.047,-0.14654 11.054,-0.18077 11.054,-0.20815 11.047,-0.24238 11.033,-0.26976 11.02,-0.2903 11.006,-0.30399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
518
+ <line x1="21" y1="-0.15" x2="21" y2="-0.33" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
519
+ <line x1="20.95" y1="-0.33" x2="21.05" y2="-0.33" stroke-width="0.026576" />
520
+ <line x1="20.94" y1="-0.66" x2="0.435" y2="-0.66" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
521
+ <polygon points="0.535,-0.685 0.435,-0.66 0.535,-0.635 " stroke-width="0.026576" fill="black" />
522
+ <polyline points="10.451,-0.49023 10.451,-0.63399 10.458,-0.63399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
523
+ <polyline points="10.451,-0.49023 10.458,-0.49023 10.458,-0.63399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
524
+ <polyline points="10.458,-0.51077 10.472,-0.49708 10.486,-0.49023 10.506,-0.49023 10.52,-0.49708 10.533,-0.51077 10.54,-0.53131 10.54,-0.545 10.533,-0.56553 10.52,-0.57922 10.506,-0.58607 10.486,-0.58607 10.472,-0.57922 10.458,-0.56553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
525
+ <polyline points="10.458,-0.51077 10.486,-0.49708 10.506,-0.49708 10.52,-0.50392 10.527,-0.51077 10.533,-0.53131 10.533,-0.545 10.527,-0.56553 10.52,-0.57238 10.506,-0.57922 10.486,-0.57922 10.458,-0.56553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
526
+ <polyline points="10.698,-0.49023 10.814,-0.49023 10.814,-0.49708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
527
+ <polyline points="10.698,-0.49023 10.698,-0.49708 10.814,-0.49708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
528
+ <polyline points="10.698,-0.545 10.814,-0.545 10.814,-0.55184 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
529
+ <polyline points="10.698,-0.545 10.698,-0.55184 10.814,-0.55184 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
530
+ <line x1="20.95" y1="-0.33" x2="20.95" y2="-0.66" stroke-width="0.026576" />
531
+ <line x1="21.05" y1="-0.33" x2="21.05" y2="-0.66" stroke-width="0.026576" />
532
+ <line x1="20.95" y1="-0.66" x2="21.05" y2="-0.66" stroke-width="0.026576" />
533
+ <line x1="0.435" y1="-0.99" x2="2.19" y2="-0.99" stroke-width="0.026576" />
534
+ <polygon points="2.09,-0.965 2.19,-0.99 2.09,-1.015 " stroke-width="0.026576" fill="black" />
535
+ <polyline points="0.72379,-0.82023 0.72379,-0.91607 0.73064,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
536
+ <polyline points="0.72379,-0.82023 0.73064,-0.82023 0.73064,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
537
+ <polyline points="0.73064,-0.84761 0.75117,-0.82708 0.76486,-0.82023 0.7854,-0.82023 0.79909,-0.82708 0.80594,-0.84761 0.80594,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
538
+ <polyline points="0.73064,-0.84761 0.75117,-0.83392 0.76486,-0.82708 0.77855,-0.82708 0.79225,-0.83392 0.79909,-0.84761 0.79909,-0.91607 0.80594,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
539
+ <polyline points="0.80594,-0.84761 0.82647,-0.82708 0.84016,-0.82023 0.8607,-0.82023 0.87439,-0.82708 0.88124,-0.84761 0.88124,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
540
+ <polyline points="0.80594,-0.84761 0.82647,-0.83392 0.84016,-0.82708 0.85385,-0.82708 0.86755,-0.83392 0.87439,-0.84761 0.87439,-0.91607 0.88124,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
541
+ <polyline points="0.936,-0.86815 1.0113,-0.86815 1.0113,-0.84761 1.0045,-0.83392 0.99761,-0.82708 0.98392,-0.82023 0.96338,-0.82023 0.94969,-0.82708 0.936,-0.84077 0.92915,-0.86131 0.92915,-0.875 0.936,-0.89553 0.94969,-0.90922 0.96338,-0.91607 0.98392,-0.91607 0.99761,-0.90922 1.0113,-0.89553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
542
+ <polyline points="0.936,-0.86131 1.0045,-0.86131 1.0045,-0.84761 0.99761,-0.83392 0.98392,-0.82708 0.96338,-0.82708 0.94969,-0.83392 0.94285,-0.84077 0.936,-0.86131 0.936,-0.875 0.94285,-0.89553 0.94969,-0.90238 0.96338,-0.90922 0.98392,-0.90922 0.99761,-0.90238 1.0045,-0.88869 1.0113,-0.89553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
543
+ <polyline points="1.0661,-0.77231 1.0661,-0.91607 1.0729,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
544
+ <polyline points="1.0661,-0.77231 1.0729,-0.77231 1.0729,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
545
+ <polyline points="1.0455,-0.82023 1.0934,-0.82023 1.0934,-0.82708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
546
+ <polyline points="1.0455,-0.82023 1.0455,-0.82708 1.0934,-0.82708 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
547
+ <polyline points="1.1345,-0.77231 1.1345,-0.91607 1.1414,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
548
+ <polyline points="1.1345,-0.77231 1.1414,-0.77231 1.1414,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
549
+ <polyline points="1.1414,-0.84761 1.1619,-0.82708 1.1756,-0.82023 1.1961,-0.82023 1.2098,-0.82708 1.2167,-0.84761 1.2167,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
550
+ <polyline points="1.1414,-0.84761 1.1619,-0.83392 1.1756,-0.82708 1.1893,-0.82708 1.203,-0.83392 1.2098,-0.84761 1.2098,-0.91607 1.2167,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
551
+ <polygon points="1.2988,-0.82023 1.2851,-0.82708 1.2714,-0.84077 1.2646,-0.86131 1.2646,-0.875 1.2714,-0.89553 1.2851,-0.90922 1.2988,-0.91607 1.3193,-0.91607 1.333,-0.90922 1.3467,-0.89553 1.3536,-0.875 1.3536,-0.86131 1.3467,-0.84077 1.333,-0.82708 1.3193,-0.82023 " stroke-width="0.0097205" stroke-linejoin="round" />
552
+ <polygon points="1.2988,-0.82708 1.2851,-0.83392 1.2783,-0.84077 1.2714,-0.86131 1.2714,-0.875 1.2783,-0.89553 1.2851,-0.90238 1.2988,-0.90922 1.3193,-0.90922 1.333,-0.90238 1.3399,-0.89553 1.3467,-0.875 1.3467,-0.86131 1.3399,-0.84077 1.333,-0.83392 1.3193,-0.82708 " stroke-width="0.0097205" stroke-linejoin="round" />
553
+ <polyline points="1.4768,-0.77231 1.4768,-0.91607 1.4836,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
554
+ <polyline points="1.4768,-0.77231 1.4836,-0.77231 1.4836,-0.91607 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
555
+ <polyline points="1.4768,-0.84077 1.4631,-0.82708 1.4494,-0.82023 1.4289,-0.82023 1.4152,-0.82708 1.4015,-0.84077 1.3946,-0.86131 1.3946,-0.875 1.4015,-0.89553 1.4152,-0.90922 1.4289,-0.91607 1.4494,-0.91607 1.4631,-0.90922 1.4768,-0.89553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
556
+ <polyline points="1.4768,-0.84077 1.4494,-0.82708 1.4289,-0.82708 1.4152,-0.83392 1.4083,-0.84077 1.4015,-0.86131 1.4015,-0.875 1.4083,-0.89553 1.4152,-0.90238 1.4289,-0.90922 1.4494,-0.90922 1.4768,-0.89553 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
557
+ <polyline points="1.5795,-0.74493 1.5658,-0.75862 1.5521,-0.77916 1.5384,-0.80654 1.5316,-0.84077 1.5316,-0.86815 1.5384,-0.90238 1.5521,-0.92976 1.5658,-0.9503 1.5795,-0.96399 1.5863,-0.96399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
558
+ <polyline points="1.5795,-0.74493 1.5863,-0.74493 1.5726,-0.75862 1.5589,-0.77916 1.5452,-0.80654 1.5384,-0.84077 1.5384,-0.86815 1.5452,-0.90238 1.5589,-0.92976 1.5726,-0.9503 1.5863,-0.96399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
559
+ <polygon points="1.6411,-0.89553 1.6342,-0.90238 1.6342,-0.90922 1.6411,-0.91607 1.6479,-0.91607 1.6548,-0.90922 1.6548,-0.90238 1.6479,-0.89553 " stroke-width="0.0097205" stroke-linejoin="round" />
560
+ <polygon points="1.6411,-0.90238 1.6411,-0.90922 1.6479,-0.90922 1.6479,-0.90238 " stroke-width="0.0097205" stroke-linejoin="round" />
561
+ <polygon points="1.7164,-0.89553 1.7095,-0.90238 1.7095,-0.90922 1.7164,-0.91607 1.7232,-0.91607 1.7301,-0.90922 1.7301,-0.90238 1.7232,-0.89553 " stroke-width="0.0097205" stroke-linejoin="round" />
562
+ <polygon points="1.7164,-0.90238 1.7164,-0.90922 1.7232,-0.90922 1.7232,-0.90238 " stroke-width="0.0097205" stroke-linejoin="round" />
563
+ <polygon points="1.7917,-0.89553 1.7848,-0.90238 1.7848,-0.90922 1.7917,-0.91607 1.7985,-0.91607 1.8054,-0.90922 1.8054,-0.90238 1.7985,-0.89553 " stroke-width="0.0097205" stroke-linejoin="round" />
564
+ <polygon points="1.7917,-0.90238 1.7917,-0.90922 1.7985,-0.90922 1.7985,-0.90238 " stroke-width="0.0097205" stroke-linejoin="round" />
565
+ <polyline points="1.8533,-0.74493 1.867,-0.75862 1.8807,-0.77916 1.8944,-0.80654 1.9012,-0.84077 1.9012,-0.86815 1.8944,-0.90238 1.8807,-0.92976 1.867,-0.9503 1.8533,-0.96399 1.8601,-0.96399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
566
+ <polyline points="1.8533,-0.74493 1.8601,-0.74493 1.8738,-0.75862 1.8875,-0.77916 1.9012,-0.80654 1.9081,-0.84077 1.9081,-0.86815 1.9012,-0.90238 1.8875,-0.92976 1.8738,-0.9503 1.8601,-0.96399 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
567
+ <line x1="2.25" y1="-0.15" x2="2.25" y2="-0.99" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
568
+ <line x1="2.2" y1="-0.99" x2="2.3" y2="-0.99" stroke-width="0.026576" />
569
+ <polyline points="2.31,-1.32 2.81,-1.32 2.81,-1.57 2.31,-1.57 " stroke-width="0.026576" />
570
+ <polygon points="2.41,-1.595 2.31,-1.57 2.41,-1.545 " stroke-width="0.026576" fill="black" />
571
+ <polyline points="2.3374,-1.0042 2.3374,-1.1 2.3442,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
572
+ <polyline points="2.3374,-1.0042 2.3442,-1.0042 2.3442,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
573
+ <polyline points="2.3442,-1.0315 2.3648,-1.011 2.3785,-1.0042 2.399,-1.0042 2.4127,-1.011 2.4195,-1.0315 2.4195,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
574
+ <polyline points="2.3442,-1.0315 2.3648,-1.0178 2.3785,-1.011 2.3921,-1.011 2.4058,-1.0178 2.4127,-1.0315 2.4127,-1.1 2.4195,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
575
+ <polyline points="2.4195,-1.0315 2.4401,-1.011 2.4538,-1.0042 2.4743,-1.0042 2.488,-1.011 2.4948,-1.0315 2.4948,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
576
+ <polyline points="2.4195,-1.0315 2.4401,-1.0178 2.4538,-1.011 2.4674,-1.011 2.4811,-1.0178 2.488,-1.0315 2.488,-1.1 2.4948,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
577
+ <polyline points="2.5496,-1.0521 2.6249,-1.0521 2.6249,-1.0315 2.618,-1.0178 2.6112,-1.011 2.5975,-1.0042 2.577,-1.0042 2.5633,-1.011 2.5496,-1.0247 2.5427,-1.0452 2.5427,-1.0589 2.5496,-1.0795 2.5633,-1.0931 2.577,-1.1 2.5975,-1.1 2.6112,-1.0931 2.6249,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
578
+ <polyline points="2.5496,-1.0452 2.618,-1.0452 2.618,-1.0315 2.6112,-1.0178 2.5975,-1.011 2.577,-1.011 2.5633,-1.0178 2.5564,-1.0247 2.5496,-1.0452 2.5496,-1.0589 2.5564,-1.0795 2.5633,-1.0863 2.577,-1.0931 2.5975,-1.0931 2.6112,-1.0863 2.618,-1.0726 2.6249,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
579
+ <polyline points="2.6797,-0.95623 2.6797,-1.1 2.6865,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
580
+ <polyline points="2.6797,-0.95623 2.6865,-0.95623 2.6865,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
581
+ <polyline points="2.6591,-1.0042 2.707,-1.0042 2.707,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
582
+ <polyline points="2.6591,-1.0042 2.6591,-1.011 2.707,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
583
+ <polyline points="2.7481,-0.95623 2.7481,-1.1 2.755,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
584
+ <polyline points="2.7481,-0.95623 2.755,-0.95623 2.755,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
585
+ <polyline points="2.755,-1.0315 2.7755,-1.011 2.7892,-1.0042 2.8097,-1.0042 2.8234,-1.011 2.8303,-1.0315 2.8303,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
586
+ <polyline points="2.755,-1.0315 2.7755,-1.0178 2.7892,-1.011 2.8029,-1.011 2.8166,-1.0178 2.8234,-1.0315 2.8234,-1.1 2.8303,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
587
+ <polygon points="2.9124,-1.0042 2.8987,-1.011 2.885,-1.0247 2.8782,-1.0452 2.8782,-1.0589 2.885,-1.0795 2.8987,-1.0931 2.9124,-1.1 2.9329,-1.1 2.9466,-1.0931 2.9603,-1.0795 2.9672,-1.0589 2.9672,-1.0452 2.9603,-1.0247 2.9466,-1.011 2.9329,-1.0042 " stroke-width="0.0097205" stroke-linejoin="round" />
588
+ <polygon points="2.9124,-1.011 2.8987,-1.0178 2.8919,-1.0247 2.885,-1.0452 2.885,-1.0589 2.8919,-1.0795 2.8987,-1.0863 2.9124,-1.0931 2.9329,-1.0931 2.9466,-1.0863 2.9535,-1.0795 2.9603,-1.0589 2.9603,-1.0452 2.9535,-1.0247 2.9466,-1.0178 2.9329,-1.011 " stroke-width="0.0097205" stroke-linejoin="round" />
589
+ <polyline points="3.0904,-0.95623 3.0904,-1.1 3.0972,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
590
+ <polyline points="3.0904,-0.95623 3.0972,-0.95623 3.0972,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
591
+ <polyline points="3.0904,-1.0247 3.0767,-1.011 3.063,-1.0042 3.0425,-1.0042 3.0288,-1.011 3.0151,-1.0247 3.0082,-1.0452 3.0082,-1.0589 3.0151,-1.0795 3.0288,-1.0931 3.0425,-1.1 3.063,-1.1 3.0767,-1.0931 3.0904,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
592
+ <polyline points="3.0904,-1.0247 3.063,-1.011 3.0425,-1.011 3.0288,-1.0178 3.0219,-1.0247 3.0151,-1.0452 3.0151,-1.0589 3.0219,-1.0795 3.0288,-1.0863 3.0425,-1.0931 3.063,-1.0931 3.0904,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
593
+ <line x1="3.1383" y1="-1.1137" x2="3.2615" y2="-1.1137" stroke-width="0.0097205" stroke-linecap="round" />
594
+ <polyline points="3.3026,-1.0042 3.3026,-1.1 3.3094,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
595
+ <polyline points="3.3026,-1.0042 3.3094,-1.0042 3.3094,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
596
+ <polyline points="3.3094,-1.0315 3.33,-1.011 3.3437,-1.0042 3.3642,-1.0042 3.3779,-1.011 3.3847,-1.0315 3.3847,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
597
+ <polyline points="3.3094,-1.0315 3.33,-1.0178 3.3437,-1.011 3.3574,-1.011 3.371,-1.0178 3.3779,-1.0315 3.3779,-1.1 3.3847,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
598
+ <polyline points="3.3847,-1.0315 3.4053,-1.011 3.419,-1.0042 3.4395,-1.0042 3.4532,-1.011 3.46,-1.0315 3.46,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
599
+ <polyline points="3.3847,-1.0315 3.4053,-1.0178 3.419,-1.011 3.4327,-1.011 3.4463,-1.0178 3.4532,-1.0315 3.4532,-1.1 3.46,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
600
+ <polygon points="3.5148,-0.95623 3.508,-0.96308 3.508,-0.96993 3.5148,-0.97677 3.5216,-0.97677 3.5285,-0.96993 3.5285,-0.96308 3.5216,-0.95623 " stroke-width="0.0097205" stroke-linejoin="round" />
601
+ <polygon points="3.5148,-0.96308 3.5148,-0.96993 3.5216,-0.96993 3.5216,-0.96308 " stroke-width="0.0097205" stroke-linejoin="round" />
602
+ <polyline points="3.5148,-1.0042 3.5148,-1.1 3.5216,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
603
+ <polyline points="3.5148,-1.0042 3.5216,-1.0042 3.5216,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
604
+ <polyline points="3.6449,-1.0247 3.638,-1.011 3.6175,-1.0042 3.5969,-1.0042 3.5764,-1.011 3.5696,-1.0247 3.5764,-1.0384 3.5901,-1.0452 3.6243,-1.0589 3.638,-1.0658 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
605
+ <polyline points="3.6312,-1.0589 3.638,-1.0726 3.638,-1.0795 3.6312,-1.0931 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
606
+ <polyline points="3.638,-1.0863 3.6175,-1.0931 3.5969,-1.0931 3.5764,-1.0863 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
607
+ <polyline points="3.5833,-1.0931 3.5764,-1.0795 3.5696,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
608
+ <polyline points="3.6449,-1.0247 3.638,-1.0247 3.6312,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
609
+ <polyline points="3.638,-1.0178 3.6175,-1.011 3.5969,-1.011 3.5764,-1.0178 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
610
+ <polyline points="3.5833,-1.011 3.5764,-1.0247 3.5833,-1.0384 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
611
+ <polyline points="3.5764,-1.0315 3.5901,-1.0384 3.6243,-1.0521 3.638,-1.0589 3.6449,-1.0726 3.6449,-1.0795 3.638,-1.0931 3.6175,-1.1 3.5969,-1.1 3.5764,-1.0931 3.5696,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
612
+ <polyline points="3.7612,-1.0247 3.7544,-1.011 3.7339,-1.0042 3.7133,-1.0042 3.6928,-1.011 3.6859,-1.0247 3.6928,-1.0384 3.7065,-1.0452 3.7407,-1.0589 3.7544,-1.0658 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
613
+ <polyline points="3.7475,-1.0589 3.7544,-1.0726 3.7544,-1.0795 3.7475,-1.0931 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
614
+ <polyline points="3.7544,-1.0863 3.7339,-1.0931 3.7133,-1.0931 3.6928,-1.0863 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
615
+ <polyline points="3.6996,-1.0931 3.6928,-1.0795 3.6859,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
616
+ <polyline points="3.7612,-1.0247 3.7544,-1.0247 3.7475,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
617
+ <polyline points="3.7544,-1.0178 3.7339,-1.011 3.7133,-1.011 3.6928,-1.0178 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
618
+ <polyline points="3.6996,-1.011 3.6928,-1.0247 3.6996,-1.0384 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
619
+ <polyline points="3.6928,-1.0315 3.7065,-1.0384 3.7407,-1.0521 3.7544,-1.0589 3.7612,-1.0726 3.7612,-1.0795 3.7544,-1.0931 3.7339,-1.1 3.7133,-1.1 3.6928,-1.0931 3.6859,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
620
+ <polygon points="3.8092,-0.95623 3.8023,-0.96308 3.8023,-0.96993 3.8092,-0.97677 3.816,-0.97677 3.8228,-0.96993 3.8228,-0.96308 3.816,-0.95623 " stroke-width="0.0097205" stroke-linejoin="round" />
621
+ <polygon points="3.8092,-0.96308 3.8092,-0.96993 3.816,-0.96993 3.816,-0.96308 " stroke-width="0.0097205" stroke-linejoin="round" />
622
+ <polyline points="3.8092,-1.0042 3.8092,-1.1 3.816,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
623
+ <polyline points="3.8092,-1.0042 3.816,-1.0042 3.816,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
624
+ <polyline points="3.8708,-1.0042 3.8708,-1.1 3.8776,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
625
+ <polyline points="3.8708,-1.0042 3.8776,-1.0042 3.8776,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
626
+ <polyline points="3.8776,-1.0315 3.8981,-1.011 3.9118,-1.0042 3.9324,-1.0042 3.9461,-1.011 3.9529,-1.0315 3.9529,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
627
+ <polyline points="3.8776,-1.0315 3.8981,-1.0178 3.9118,-1.011 3.9255,-1.011 3.9392,-1.0178 3.9461,-1.0315 3.9461,-1.1 3.9529,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
628
+ <polyline points="4.0898,-1.0042 4.083,-1.0042 4.083,-1.1068 4.0761,-1.1274 4.0693,-1.1342 4.0556,-1.1411 4.0419,-1.1411 4.0282,-1.1342 4.0214,-1.1274 4.0077,-1.1274 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
629
+ <polyline points="4.0898,-1.0042 4.0898,-1.1068 4.083,-1.1274 4.0693,-1.1411 4.0556,-1.1479 4.0351,-1.1479 4.0214,-1.1411 4.0077,-1.1274 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
630
+ <polyline points="4.083,-1.0247 4.0693,-1.011 4.0556,-1.0042 4.0351,-1.0042 4.0214,-1.011 4.0077,-1.0247 4.0008,-1.0452 4.0008,-1.0589 4.0077,-1.0795 4.0214,-1.0931 4.0351,-1.1 4.0556,-1.1 4.0693,-1.0931 4.083,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
631
+ <polyline points="4.083,-1.0247 4.0556,-1.011 4.0351,-1.011 4.0214,-1.0178 4.0145,-1.0247 4.0077,-1.0452 4.0077,-1.0589 4.0145,-1.0795 4.0214,-1.0863 4.0351,-1.0931 4.0556,-1.0931 4.083,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
632
+ <polyline points="4.1857,-0.92885 4.172,-0.94254 4.1583,-0.96308 4.1446,-0.99046 4.1377,-1.0247 4.1377,-1.0521 4.1446,-1.0863 4.1583,-1.1137 4.172,-1.1342 4.1857,-1.1479 4.1925,-1.1479 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
633
+ <polyline points="4.1857,-0.92885 4.1925,-0.92885 4.1788,-0.94254 4.1651,-0.96308 4.1514,-0.99046 4.1446,-1.0247 4.1446,-1.0521 4.1514,-1.0863 4.1651,-1.1137 4.1788,-1.1342 4.1925,-1.1479 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
634
+ <polygon points="4.2473,-1.0042 4.2404,-1.011 4.2404,-1.0178 4.2473,-1.0247 4.2541,-1.0247 4.261,-1.0178 4.261,-1.011 4.2541,-1.0042 " stroke-width="0.0097205" stroke-linejoin="round" />
635
+ <polygon points="4.2473,-1.011 4.2473,-1.0178 4.2541,-1.0178 4.2541,-1.011 " stroke-width="0.0097205" stroke-linejoin="round" />
636
+ <polygon points="4.2473,-1.0795 4.2404,-1.0863 4.2404,-1.0931 4.2473,-1.1 4.2541,-1.1 4.261,-1.0931 4.261,-1.0863 4.2541,-1.0795 " stroke-width="0.0097205" stroke-linejoin="round" />
637
+ <polygon points="4.2473,-1.0863 4.2473,-1.0931 4.2541,-1.0931 4.2541,-1.0863 " stroke-width="0.0097205" stroke-linejoin="round" />
638
+ <polyline points="4.3157,-1.0042 4.3157,-1.1 4.3226,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
639
+ <polyline points="4.3157,-1.0042 4.3226,-1.0042 4.3226,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
640
+ <polyline points="4.3226,-1.0315 4.3431,-1.011 4.3568,-1.0042 4.3773,-1.0042 4.391,-1.011 4.3979,-1.0315 4.3979,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
641
+ <polyline points="4.3226,-1.0315 4.3431,-1.0178 4.3568,-1.011 4.3705,-1.011 4.3842,-1.0178 4.391,-1.0315 4.391,-1.1 4.3979,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
642
+ <polyline points="4.3979,-1.0315 4.4184,-1.011 4.4321,-1.0042 4.4526,-1.0042 4.4663,-1.011 4.4732,-1.0315 4.4732,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
643
+ <polyline points="4.3979,-1.0315 4.4184,-1.0178 4.4321,-1.011 4.4458,-1.011 4.4595,-1.0178 4.4663,-1.0315 4.4663,-1.1 4.4732,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
644
+ <polyline points="4.5279,-1.0521 4.6032,-1.0521 4.6032,-1.0315 4.5964,-1.0178 4.5895,-1.011 4.5758,-1.0042 4.5553,-1.0042 4.5416,-1.011 4.5279,-1.0247 4.5211,-1.0452 4.5211,-1.0589 4.5279,-1.0795 4.5416,-1.0931 4.5553,-1.1 4.5758,-1.1 4.5895,-1.0931 4.6032,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
645
+ <polyline points="4.5279,-1.0452 4.5964,-1.0452 4.5964,-1.0315 4.5895,-1.0178 4.5758,-1.011 4.5553,-1.011 4.5416,-1.0178 4.5348,-1.0247 4.5279,-1.0452 4.5279,-1.0589 4.5348,-1.0795 4.5416,-1.0863 4.5553,-1.0931 4.5758,-1.0931 4.5895,-1.0863 4.5964,-1.0726 4.6032,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
646
+ <polyline points="4.658,-0.95623 4.658,-1.1 4.6648,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
647
+ <polyline points="4.658,-0.95623 4.6648,-0.95623 4.6648,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
648
+ <polyline points="4.6375,-1.0042 4.6854,-1.0042 4.6854,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
649
+ <polyline points="4.6375,-1.0042 4.6375,-1.011 4.6854,-1.011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
650
+ <polyline points="4.7264,-0.95623 4.7264,-1.1 4.7333,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
651
+ <polyline points="4.7264,-0.95623 4.7333,-0.95623 4.7333,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
652
+ <polyline points="4.7333,-1.0315 4.7538,-1.011 4.7675,-1.0042 4.7881,-1.0042 4.8017,-1.011 4.8086,-1.0315 4.8086,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
653
+ <polyline points="4.7333,-1.0315 4.7538,-1.0178 4.7675,-1.011 4.7812,-1.011 4.7949,-1.0178 4.8017,-1.0315 4.8017,-1.1 4.8086,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
654
+ <polygon points="4.8907,-1.0042 4.877,-1.011 4.8634,-1.0247 4.8565,-1.0452 4.8565,-1.0589 4.8634,-1.0795 4.877,-1.0931 4.8907,-1.1 4.9113,-1.1 4.925,-1.0931 4.9387,-1.0795 4.9455,-1.0589 4.9455,-1.0452 4.9387,-1.0247 4.925,-1.011 4.9113,-1.0042 " stroke-width="0.0097205" stroke-linejoin="round" />
655
+ <polygon points="4.8907,-1.011 4.877,-1.0178 4.8702,-1.0247 4.8634,-1.0452 4.8634,-1.0589 4.8702,-1.0795 4.877,-1.0863 4.8907,-1.0931 4.9113,-1.0931 4.925,-1.0863 4.9318,-1.0795 4.9387,-1.0589 4.9387,-1.0452 4.9318,-1.0247 4.925,-1.0178 4.9113,-1.011 " stroke-width="0.0097205" stroke-linejoin="round" />
656
+ <polyline points="5.0687,-0.95623 5.0687,-1.1 5.0756,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
657
+ <polyline points="5.0687,-0.95623 5.0756,-0.95623 5.0756,-1.1 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
658
+ <polyline points="5.0687,-1.0247 5.055,-1.011 5.0413,-1.0042 5.0208,-1.0042 5.0071,-1.011 4.9934,-1.0247 4.9866,-1.0452 4.9866,-1.0589 4.9934,-1.0795 5.0071,-1.0931 5.0208,-1.1 5.0413,-1.1 5.055,-1.0931 5.0687,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
659
+ <polyline points="5.0687,-1.0247 5.0413,-1.011 5.0208,-1.011 5.0071,-1.0178 5.0003,-1.0247 4.9934,-1.0452 4.9934,-1.0589 5.0003,-1.0795 5.0071,-1.0863 5.0208,-1.0931 5.0413,-1.0931 5.0687,-1.0795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
660
+ <polyline points="5.1509,-1.0931 5.144,-1.1 5.1372,-1.1 5.1303,-1.0931 5.1303,-1.0863 5.1372,-1.0795 5.144,-1.0795 5.1509,-1.0863 5.1509,-1.1068 5.144,-1.1205 5.1303,-1.1274 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
661
+ <polygon points="5.1372,-1.0863 5.1372,-1.0931 5.144,-1.0931 5.144,-1.0863 " stroke-width="0.0097205" stroke-linejoin="round" />
662
+ <line x1="5.144" y1="-1.1" x2="5.1509" y2="-1.1068" stroke-width="0.0097205" stroke-linecap="round" />
663
+ <line x1="5.1509" y1="-1.0931" x2="5.144" y2="-1.1205" stroke-width="0.0097205" stroke-linecap="round" />
664
+ <line x1="5.3152" y1="-0.92885" x2="5.3152" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
665
+ <line x1="5.322" y1="-0.92885" x2="5.322" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
666
+ <line x1="5.3152" y1="-0.92885" x2="5.3631" y2="-0.92885" stroke-width="0.0097205" stroke-linecap="round" />
667
+ <line x1="5.3152" y1="-1.1479" x2="5.3631" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
668
+ <polygon points="5.4178,-1.0795 5.411,-1.0863 5.411,-1.0931 5.4178,-1.1 5.4247,-1.1 5.4315,-1.0931 5.4315,-1.0863 5.4247,-1.0795 " stroke-width="0.0097205" stroke-linejoin="round" />
669
+ <polygon points="5.4178,-1.0863 5.4178,-1.0931 5.4247,-1.0931 5.4247,-1.0863 " stroke-width="0.0097205" stroke-linejoin="round" />
670
+ <polygon points="5.4931,-1.0795 5.4863,-1.0863 5.4863,-1.0931 5.4931,-1.1 5.5,-1.1 5.5068,-1.0931 5.5068,-1.0863 5.5,-1.0795 " stroke-width="0.0097205" stroke-linejoin="round" />
671
+ <polygon points="5.4931,-1.0863 5.4931,-1.0931 5.5,-1.0931 5.5,-1.0863 " stroke-width="0.0097205" stroke-linejoin="round" />
672
+ <polygon points="5.5684,-1.0795 5.5616,-1.0863 5.5616,-1.0931 5.5684,-1.1 5.5753,-1.1 5.5821,-1.0931 5.5821,-1.0863 5.5753,-1.0795 " stroke-width="0.0097205" stroke-linejoin="round" />
673
+ <polygon points="5.5684,-1.0863 5.5684,-1.0931 5.5753,-1.0931 5.5753,-1.0863 " stroke-width="0.0097205" stroke-linejoin="round" />
674
+ <line x1="5.6711" y1="-0.92885" x2="5.6711" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
675
+ <line x1="5.678" y1="-0.92885" x2="5.678" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
676
+ <line x1="5.63" y1="-0.92885" x2="5.678" y2="-0.92885" stroke-width="0.0097205" stroke-linecap="round" />
677
+ <line x1="5.63" y1="-1.1479" x2="5.678" y2="-1.1479" stroke-width="0.0097205" stroke-linecap="round" />
678
+ <polyline points="5.7259,-0.92885 5.7396,-0.94254 5.7533,-0.96308 5.767,-0.99046 5.7738,-1.0247 5.7738,-1.0521 5.767,-1.0863 5.7533,-1.1137 5.7396,-1.1342 5.7259,-1.1479 5.7327,-1.1479 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
679
+ <polyline points="5.7259,-0.92885 5.7327,-0.92885 5.7464,-0.94254 5.7601,-0.96308 5.7738,-0.99046 5.7806,-1.0247 5.7806,-1.0521 5.7738,-1.0863 5.7601,-1.1137 5.7464,-1.1342 5.7327,-1.1479 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
680
+ <line x1="2.2" y1="-0.99" x2="2.2" y2="-1.57" stroke-width="0.026576" />
681
+ <line x1="2.3" y1="-0.99" x2="2.3" y2="-1.57" stroke-width="0.026576" />
682
+ <line x1="2.25" y1="-1.57" x2="2.35" y2="-1.57" stroke-width="0.026576" />
683
+ <line x1="2.36" y1="-1.9" x2="3.7425" y2="-1.9" stroke-width="0.026576" />
684
+ <polygon points="3.6425,-1.875 3.7425,-1.9 3.6425,-1.925 " stroke-width="0.026576" fill="black" />
685
+ <polyline points="2.5207,-1.7029 2.4112,-1.7645 2.5207,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
686
+ <polyline points="2.5207,-1.7029 2.5207,-1.7097 2.4249,-1.7645 2.5207,-1.8192 2.5207,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
687
+ <polyline points="2.685,-1.7029 2.5755,-1.7645 2.685,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
688
+ <polyline points="2.685,-1.7029 2.685,-1.7097 2.5892,-1.7645 2.685,-1.8192 2.685,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
689
+ <polyline points="2.8151,-1.7508 2.8014,-1.7371 2.7877,-1.7302 2.7672,-1.7302 2.7535,-1.7371 2.7398,-1.7508 2.7329,-1.7713 2.7329,-1.785 2.7398,-1.8055 2.7535,-1.8192 2.7672,-1.8261 2.7877,-1.8261 2.8014,-1.8192 2.8151,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
690
+ <polyline points="2.8151,-1.7508 2.8082,-1.7576 2.8014,-1.7439 2.7877,-1.7371 2.7672,-1.7371 2.7535,-1.7439 2.7466,-1.7508 2.7398,-1.7713 2.7398,-1.785 2.7466,-1.8055 2.7535,-1.8124 2.7672,-1.8192 2.7877,-1.8192 2.8014,-1.8124 2.8082,-1.7987 2.8151,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
691
+ <polyline points="2.863,-1.7302 2.863,-1.8261 2.8698,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
692
+ <polyline points="2.863,-1.7302 2.8698,-1.7302 2.8698,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
693
+ <polyline points="2.8698,-1.7713 2.8767,-1.7508 2.8904,-1.7371 2.9041,-1.7302 2.9246,-1.7302 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
694
+ <polyline points="2.8698,-1.7713 2.8767,-1.7576 2.8904,-1.7439 2.9041,-1.7371 2.9246,-1.7371 2.9246,-1.7302 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
695
+ <polyline points="2.9588,-1.7782 3.0341,-1.7782 3.0341,-1.7576 3.0273,-1.7439 3.0204,-1.7371 3.0068,-1.7302 2.9862,-1.7302 2.9725,-1.7371 2.9588,-1.7508 2.952,-1.7713 2.952,-1.785 2.9588,-1.8055 2.9725,-1.8192 2.9862,-1.8261 3.0068,-1.8261 3.0204,-1.8192 3.0341,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
696
+ <polyline points="2.9588,-1.7713 3.0273,-1.7713 3.0273,-1.7576 3.0204,-1.7439 3.0068,-1.7371 2.9862,-1.7371 2.9725,-1.7439 2.9657,-1.7508 2.9588,-1.7713 2.9588,-1.785 2.9657,-1.8055 2.9725,-1.8124 2.9862,-1.8192 3.0068,-1.8192 3.0204,-1.8124 3.0273,-1.7987 3.0341,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
697
+ <polyline points="3.1574,-1.7302 3.1574,-1.8261 3.1642,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
698
+ <polyline points="3.1574,-1.7302 3.1642,-1.7302 3.1642,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
699
+ <polyline points="3.1574,-1.7508 3.1437,-1.7371 3.13,-1.7302 3.1094,-1.7302 3.0957,-1.7371 3.0821,-1.7508 3.0752,-1.7713 3.0752,-1.785 3.0821,-1.8055 3.0957,-1.8192 3.1094,-1.8261 3.13,-1.8261 3.1437,-1.8192 3.1574,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
700
+ <polyline points="3.1574,-1.7508 3.13,-1.7371 3.1094,-1.7371 3.0957,-1.7439 3.0889,-1.7508 3.0821,-1.7713 3.0821,-1.785 3.0889,-1.8055 3.0957,-1.8124 3.1094,-1.8192 3.13,-1.8192 3.1574,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
701
+ <polyline points="3.2258,-1.6823 3.2258,-1.8261 3.2327,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
702
+ <polyline points="3.2258,-1.6823 3.2327,-1.6823 3.2327,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
703
+ <polyline points="3.2053,-1.7302 3.2532,-1.7302 3.2532,-1.7371 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
704
+ <polyline points="3.2053,-1.7302 3.2053,-1.7371 3.2532,-1.7371 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
705
+ <polyline points="3.2943,-1.7782 3.3696,-1.7782 3.3696,-1.7576 3.3627,-1.7439 3.3559,-1.7371 3.3422,-1.7302 3.3216,-1.7302 3.308,-1.7371 3.2943,-1.7508 3.2874,-1.7713 3.2874,-1.785 3.2943,-1.8055 3.308,-1.8192 3.3216,-1.8261 3.3422,-1.8261 3.3559,-1.8192 3.3696,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
706
+ <polyline points="3.2943,-1.7713 3.3627,-1.7713 3.3627,-1.7576 3.3559,-1.7439 3.3422,-1.7371 3.3216,-1.7371 3.308,-1.7439 3.3011,-1.7508 3.2943,-1.7713 3.2943,-1.785 3.3011,-1.8055 3.308,-1.8124 3.3216,-1.8192 3.3422,-1.8192 3.3559,-1.8124 3.3627,-1.7987 3.3696,-1.8055 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
707
+ <polyline points="3.4175,-1.7029 3.527,-1.7645 3.4175,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
708
+ <polyline points="3.4175,-1.7029 3.4175,-1.7097 3.5133,-1.7645 3.4175,-1.8192 3.4175,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
709
+ <polyline points="3.5818,-1.7029 3.6913,-1.7645 3.5818,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
710
+ <polyline points="3.5818,-1.7029 3.5818,-1.7097 3.6776,-1.7645 3.5818,-1.8192 3.5818,-1.8261 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
711
+ <line x1="3.8425" y1="-1.99" x2="4.3925" y2="-1.99" stroke-width="0.026576" />
712
+ <line x1="4.125" y1="-2.05" x2="4.125" y2="-2.215" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
713
+ <line x1="4.075" y1="-2.215" x2="4.175" y2="-2.215" stroke-width="0.026576" />
714
+ <line x1="4.065" y1="-2.545" x2="2.36" y2="-2.545" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
715
+ <polygon points="2.46,-2.57 2.36,-2.545 2.46,-2.52 " stroke-width="0.026576" fill="black" />
716
+ <polyline points="2.9969,-2.3958 2.9832,-2.3821 2.9695,-2.3752 2.949,-2.3752 2.9353,-2.3821 2.9216,-2.3958 2.9147,-2.4163 2.9147,-2.43 2.9216,-2.4505 2.9353,-2.4642 2.949,-2.4711 2.9695,-2.4711 2.9832,-2.4642 2.9969,-2.4505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
717
+ <polyline points="2.9969,-2.3958 2.99,-2.4026 2.9832,-2.3889 2.9695,-2.3821 2.949,-2.3821 2.9353,-2.3889 2.9284,-2.3958 2.9216,-2.4163 2.9216,-2.43 2.9284,-2.4505 2.9353,-2.4574 2.949,-2.4642 2.9695,-2.4642 2.9832,-2.4574 2.99,-2.4437 2.9969,-2.4505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
718
+ <polyline points="3.0448,-2.3752 3.0448,-2.4711 3.0516,-2.4711 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
719
+ <polyline points="3.0448,-2.3752 3.0516,-2.3752 3.0516,-2.4711 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
720
+ <polyline points="3.0516,-2.4163 3.0585,-2.3958 3.0722,-2.3821 3.0859,-2.3752 3.1064,-2.3752 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
721
+ <polyline points="3.0516,-2.4163 3.0585,-2.4026 3.0722,-2.3889 3.0859,-2.3821 3.1064,-2.3821 3.1064,-2.3752 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
722
+ <polyline points="3.2159,-2.3752 3.2159,-2.519 3.2228,-2.519 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
723
+ <polyline points="3.2159,-2.3752 3.2228,-2.3752 3.2228,-2.519 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
724
+ <polyline points="3.2159,-2.3958 3.2022,-2.3821 3.1885,-2.3752 3.168,-2.3752 3.1543,-2.3821 3.1406,-2.3958 3.1338,-2.4163 3.1338,-2.43 3.1406,-2.4505 3.1543,-2.4642 3.168,-2.4711 3.1885,-2.4711 3.2022,-2.4642 3.2159,-2.4505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
725
+ <polyline points="3.2159,-2.3958 3.1885,-2.3821 3.168,-2.3821 3.1543,-2.3889 3.1475,-2.3958 3.1406,-2.4163 3.1406,-2.43 3.1475,-2.4505 3.1543,-2.4574 3.168,-2.4642 3.1885,-2.4642 3.2159,-2.4505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
726
+ <polyline points="3.3871,-2.3752 3.5034,-2.3752 3.5034,-2.3821 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
727
+ <polyline points="3.3871,-2.3752 3.3871,-2.3821 3.5034,-2.3821 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
728
+ <polyline points="3.3871,-2.43 3.5034,-2.43 3.5034,-2.4368 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
729
+ <polyline points="3.3871,-2.43 3.3871,-2.4368 3.5034,-2.4368 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
730
+ <line x1="4.075" y1="-2.215" x2="4.075" y2="-2.545" stroke-width="0.026576" />
731
+ <line x1="4.175" y1="-2.215" x2="4.175" y2="-2.545" stroke-width="0.026576" />
732
+ <line x1="4.075" y1="-2.545" x2="4.175" y2="-2.545" stroke-width="0.026576" />
733
+ <line x1="2.36" y1="-2.875" x2="5.94" y2="-2.875" stroke-width="0.026576" />
734
+ <polygon points="5.84,-2.85 5.94,-2.875 5.84,-2.9 " stroke-width="0.026576" fill="black" />
735
+ <polyline points="3.2361,-2.7258 3.2293,-2.7121 3.2088,-2.7052 3.1882,-2.7052 3.1677,-2.7121 3.1608,-2.7258 3.1677,-2.7395 3.1814,-2.7463 3.2156,-2.76 3.2293,-2.7668 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
736
+ <polyline points="3.2224,-2.76 3.2293,-2.7737 3.2293,-2.7805 3.2224,-2.7942 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
737
+ <polyline points="3.2293,-2.7874 3.2088,-2.7942 3.1882,-2.7942 3.1677,-2.7874 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
738
+ <polyline points="3.1745,-2.7942 3.1677,-2.7805 3.1608,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
739
+ <polyline points="3.2361,-2.7258 3.2293,-2.7258 3.2224,-2.7121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
740
+ <polyline points="3.2293,-2.7189 3.2088,-2.7121 3.1882,-2.7121 3.1677,-2.7189 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
741
+ <polyline points="3.1745,-2.7121 3.1677,-2.7258 3.1745,-2.7395 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
742
+ <polyline points="3.1677,-2.7326 3.1814,-2.7395 3.2156,-2.7532 3.2293,-2.76 3.2361,-2.7737 3.2361,-2.7805 3.2293,-2.7942 3.2088,-2.8011 3.1882,-2.8011 3.1677,-2.7942 3.1608,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
743
+ <polyline points="3.2841,-2.7532 3.3594,-2.7532 3.3594,-2.7326 3.3525,-2.7189 3.3457,-2.7121 3.332,-2.7052 3.3114,-2.7052 3.2977,-2.7121 3.2841,-2.7258 3.2772,-2.7463 3.2772,-2.76 3.2841,-2.7805 3.2977,-2.7942 3.3114,-2.8011 3.332,-2.8011 3.3457,-2.7942 3.3594,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
744
+ <polyline points="3.2841,-2.7463 3.3525,-2.7463 3.3525,-2.7326 3.3457,-2.7189 3.332,-2.7121 3.3114,-2.7121 3.2977,-2.7189 3.2909,-2.7258 3.2841,-2.7463 3.2841,-2.76 3.2909,-2.7805 3.2977,-2.7874 3.3114,-2.7942 3.332,-2.7942 3.3457,-2.7874 3.3525,-2.7737 3.3594,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
745
+ <polyline points="3.4073,-2.7052 3.4073,-2.8011 3.4141,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
746
+ <polyline points="3.4073,-2.7052 3.4141,-2.7052 3.4141,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
747
+ <polyline points="3.4141,-2.7326 3.4347,-2.7121 3.4483,-2.7052 3.4689,-2.7052 3.4826,-2.7121 3.4894,-2.7326 3.4894,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
748
+ <polyline points="3.4141,-2.7326 3.4347,-2.7189 3.4483,-2.7121 3.462,-2.7121 3.4757,-2.7189 3.4826,-2.7326 3.4826,-2.8011 3.4894,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
749
+ <polyline points="3.6195,-2.6573 3.6195,-2.8011 3.6263,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
750
+ <polyline points="3.6195,-2.6573 3.6263,-2.6573 3.6263,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
751
+ <polyline points="3.6195,-2.7258 3.6058,-2.7121 3.5921,-2.7052 3.5716,-2.7052 3.5579,-2.7121 3.5442,-2.7258 3.5373,-2.7463 3.5373,-2.76 3.5442,-2.7805 3.5579,-2.7942 3.5716,-2.8011 3.5921,-2.8011 3.6058,-2.7942 3.6195,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
752
+ <polyline points="3.6195,-2.7258 3.5921,-2.7121 3.5716,-2.7121 3.5579,-2.7189 3.551,-2.7258 3.5442,-2.7463 3.5442,-2.76 3.551,-2.7805 3.5579,-2.7874 3.5716,-2.7942 3.5921,-2.7942 3.6195,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
753
+ <line x1="3.6674" y1="-2.8148" x2="3.7906" y2="-2.8148" stroke-width="0.0097205" stroke-linecap="round" />
754
+ <polyline points="3.8317,-2.7052 3.8317,-2.8011 3.8385,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
755
+ <polyline points="3.8317,-2.7052 3.8385,-2.7052 3.8385,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
756
+ <polyline points="3.8385,-2.7463 3.8454,-2.7258 3.8591,-2.7121 3.8728,-2.7052 3.8933,-2.7052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
757
+ <polyline points="3.8385,-2.7463 3.8454,-2.7326 3.8591,-2.7189 3.8728,-2.7121 3.8933,-2.7121 3.8933,-2.7052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
758
+ <polyline points="3.9275,-2.7532 4.0028,-2.7532 4.0028,-2.7326 3.996,-2.7189 3.9891,-2.7121 3.9754,-2.7052 3.9549,-2.7052 3.9412,-2.7121 3.9275,-2.7258 3.9207,-2.7463 3.9207,-2.76 3.9275,-2.7805 3.9412,-2.7942 3.9549,-2.8011 3.9754,-2.8011 3.9891,-2.7942 4.0028,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
759
+ <polyline points="3.9275,-2.7463 3.996,-2.7463 3.996,-2.7326 3.9891,-2.7189 3.9754,-2.7121 3.9549,-2.7121 3.9412,-2.7189 3.9344,-2.7258 3.9275,-2.7463 3.9275,-2.76 3.9344,-2.7805 3.9412,-2.7874 3.9549,-2.7942 3.9754,-2.7942 3.9891,-2.7874 3.996,-2.7737 4.0028,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
760
+ <polyline points="4.126,-2.7052 4.126,-2.849 4.1329,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
761
+ <polyline points="4.126,-2.7052 4.1329,-2.7052 4.1329,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
762
+ <polyline points="4.126,-2.7258 4.1124,-2.7121 4.0987,-2.7052 4.0781,-2.7052 4.0644,-2.7121 4.0507,-2.7258 4.0439,-2.7463 4.0439,-2.76 4.0507,-2.7805 4.0644,-2.7942 4.0781,-2.8011 4.0987,-2.8011 4.1124,-2.7942 4.126,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
763
+ <polyline points="4.126,-2.7258 4.0987,-2.7121 4.0781,-2.7121 4.0644,-2.7189 4.0576,-2.7258 4.0507,-2.7463 4.0507,-2.76 4.0576,-2.7805 4.0644,-2.7874 4.0781,-2.7942 4.0987,-2.7942 4.126,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
764
+ <polyline points="4.1877,-2.7052 4.1877,-2.7737 4.1945,-2.7942 4.2082,-2.8011 4.2287,-2.8011 4.2424,-2.7942 4.263,-2.7737 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
765
+ <polyline points="4.1877,-2.7052 4.1945,-2.7052 4.1945,-2.7737 4.2013,-2.7874 4.215,-2.7942 4.2287,-2.7942 4.2424,-2.7874 4.263,-2.7737 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
766
+ <polyline points="4.263,-2.7052 4.263,-2.8011 4.2698,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
767
+ <polyline points="4.263,-2.7052 4.2698,-2.7052 4.2698,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
768
+ <polyline points="4.3246,-2.7532 4.3999,-2.7532 4.3999,-2.7326 4.393,-2.7189 4.3862,-2.7121 4.3725,-2.7052 4.3519,-2.7052 4.3383,-2.7121 4.3246,-2.7258 4.3177,-2.7463 4.3177,-2.76 4.3246,-2.7805 4.3383,-2.7942 4.3519,-2.8011 4.3725,-2.8011 4.3862,-2.7942 4.3999,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
769
+ <polyline points="4.3246,-2.7463 4.393,-2.7463 4.393,-2.7326 4.3862,-2.7189 4.3725,-2.7121 4.3519,-2.7121 4.3383,-2.7189 4.3314,-2.7258 4.3246,-2.7463 4.3246,-2.76 4.3314,-2.7805 4.3383,-2.7874 4.3519,-2.7942 4.3725,-2.7942 4.3862,-2.7874 4.393,-2.7737 4.3999,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
770
+ <polyline points="4.5162,-2.7258 4.5094,-2.7121 4.4889,-2.7052 4.4683,-2.7052 4.4478,-2.7121 4.4409,-2.7258 4.4478,-2.7395 4.4615,-2.7463 4.4957,-2.76 4.5094,-2.7668 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
771
+ <polyline points="4.5025,-2.76 4.5094,-2.7737 4.5094,-2.7805 4.5025,-2.7942 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
772
+ <polyline points="4.5094,-2.7874 4.4889,-2.7942 4.4683,-2.7942 4.4478,-2.7874 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
773
+ <polyline points="4.4546,-2.7942 4.4478,-2.7805 4.4409,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
774
+ <polyline points="4.5162,-2.7258 4.5094,-2.7258 4.5025,-2.7121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
775
+ <polyline points="4.5094,-2.7189 4.4889,-2.7121 4.4683,-2.7121 4.4478,-2.7189 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
776
+ <polyline points="4.4546,-2.7121 4.4478,-2.7258 4.4546,-2.7395 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
777
+ <polyline points="4.4478,-2.7326 4.4615,-2.7395 4.4957,-2.7532 4.5094,-2.76 4.5162,-2.7737 4.5162,-2.7805 4.5094,-2.7942 4.4888,-2.8011 4.4683,-2.8011 4.4478,-2.7942 4.4409,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
778
+ <polyline points="4.571,-2.6573 4.571,-2.8011 4.5778,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
779
+ <polyline points="4.571,-2.6573 4.5778,-2.6573 4.5778,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
780
+ <polyline points="4.5505,-2.7052 4.5984,-2.7052 4.5984,-2.7121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
781
+ <polyline points="4.5505,-2.7052 4.5505,-2.7121 4.5984,-2.7121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
782
+ <polyline points="4.6805,-2.6299 4.6668,-2.6436 4.6531,-2.6642 4.6395,-2.6915 4.6326,-2.7258 4.6326,-2.7532 4.6395,-2.7874 4.6531,-2.8148 4.6668,-2.8353 4.6805,-2.849 4.6874,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
783
+ <polyline points="4.6805,-2.6299 4.6874,-2.6299 4.6737,-2.6436 4.66,-2.6642 4.6463,-2.6915 4.6395,-2.7258 4.6395,-2.7532 4.6463,-2.7874 4.66,-2.8148 4.6737,-2.8353 4.6874,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
784
+ <polyline points="4.8106,-2.7258 4.7969,-2.7121 4.7832,-2.7052 4.7627,-2.7052 4.749,-2.7121 4.7353,-2.7258 4.7284,-2.7463 4.7284,-2.76 4.7353,-2.7805 4.749,-2.7942 4.7627,-2.8011 4.7832,-2.8011 4.7969,-2.7942 4.8106,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
785
+ <polyline points="4.8106,-2.7258 4.8037,-2.7326 4.7969,-2.7189 4.7832,-2.7121 4.7627,-2.7121 4.749,-2.7189 4.7421,-2.7258 4.7353,-2.7463 4.7353,-2.76 4.7421,-2.7805 4.749,-2.7874 4.7627,-2.7942 4.7832,-2.7942 4.7969,-2.7874 4.8037,-2.7737 4.8106,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
786
+ <polyline points="4.8585,-2.7052 4.8585,-2.8011 4.8653,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
787
+ <polyline points="4.8585,-2.7052 4.8653,-2.7052 4.8653,-2.8011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
788
+ <polyline points="4.8653,-2.7463 4.8722,-2.7258 4.8859,-2.7121 4.8996,-2.7052 4.9201,-2.7052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
789
+ <polyline points="4.8653,-2.7463 4.8722,-2.7326 4.8859,-2.7189 4.8996,-2.7121 4.9201,-2.7121 4.9201,-2.7052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
790
+ <polyline points="5.0296,-2.7052 5.0296,-2.849 5.0365,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
791
+ <polyline points="5.0296,-2.7052 5.0365,-2.7052 5.0365,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
792
+ <polyline points="5.0296,-2.7258 5.0159,-2.7121 5.0023,-2.7052 4.9817,-2.7052 4.968,-2.7121 4.9543,-2.7258 4.9475,-2.7463 4.9475,-2.76 4.9543,-2.7805 4.968,-2.7942 4.9817,-2.8011 5.0023,-2.8011 5.0159,-2.7942 5.0296,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
793
+ <polyline points="5.0296,-2.7258 5.0023,-2.7121 4.9817,-2.7121 4.968,-2.7189 4.9612,-2.7258 4.9543,-2.7463 4.9543,-2.76 4.9612,-2.7805 4.968,-2.7874 4.9817,-2.7942 5.0023,-2.7942 5.0296,-2.7805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
794
+ <polyline points="5.0844,-2.6299 5.0981,-2.6436 5.1118,-2.6642 5.1255,-2.6915 5.1323,-2.7258 5.1323,-2.7532 5.1255,-2.7874 5.1118,-2.8148 5.0981,-2.8353 5.0844,-2.849 5.0912,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
795
+ <polyline points="5.0844,-2.6299 5.0912,-2.6299 5.1049,-2.6436 5.1186,-2.6642 5.1323,-2.6915 5.1392,-2.7258 5.1392,-2.7532 5.1323,-2.7874 5.1186,-2.8148 5.1049,-2.8353 5.0912,-2.849 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
796
+ <line x1="6" y1="-0.15" x2="6" y2="-2.875" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
797
+ <line x1="5.95" y1="-2.875" x2="6.05" y2="-2.875" stroke-width="0.026576" />
798
+ <line x1="6.06" y1="-3.205" x2="7.815" y2="-3.205" stroke-width="0.026576" />
799
+ <polygon points="7.715,-3.18 7.815,-3.205 7.715,-3.23 " stroke-width="0.026576" fill="black" />
800
+ <polyline points="6.3043,-3.0832 6.3796,-3.0832 6.3796,-3.0626 6.3727,-3.0489 6.3659,-3.0421 6.3522,-3.0352 6.3317,-3.0352 6.318,-3.0421 6.3043,-3.0558 6.2975,-3.0763 6.2975,-3.09 6.3043,-3.1105 6.318,-3.1242 6.3317,-3.1311 6.3522,-3.1311 6.3659,-3.1242 6.3796,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
801
+ <polyline points="6.3043,-3.0763 6.3727,-3.0763 6.3727,-3.0626 6.3659,-3.0489 6.3522,-3.0421 6.3317,-3.0421 6.318,-3.0489 6.3111,-3.0558 6.3043,-3.0763 6.3043,-3.09 6.3111,-3.1105 6.318,-3.1174 6.3317,-3.1242 6.3522,-3.1242 6.3659,-3.1174 6.3727,-3.1037 6.3796,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
802
+ <polyline points="6.4275,-3.0352 6.4275,-3.1311 6.4344,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
803
+ <polyline points="6.4275,-3.0352 6.4344,-3.0352 6.4344,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
804
+ <polyline points="6.4344,-3.0626 6.4549,-3.0421 6.4686,-3.0352 6.4891,-3.0352 6.5028,-3.0421 6.5097,-3.0626 6.5097,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
805
+ <polyline points="6.4344,-3.0626 6.4549,-3.0489 6.4686,-3.0421 6.4823,-3.0421 6.496,-3.0489 6.5028,-3.0626 6.5028,-3.1311 6.5097,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
806
+ <polyline points="6.6397,-3.0558 6.626,-3.0421 6.6123,-3.0352 6.5918,-3.0352 6.5781,-3.0421 6.5644,-3.0558 6.5576,-3.0763 6.5576,-3.09 6.5644,-3.1105 6.5781,-3.1242 6.5918,-3.1311 6.6123,-3.1311 6.626,-3.1242 6.6397,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
807
+ <polyline points="6.6397,-3.0558 6.6329,-3.0626 6.626,-3.0489 6.6123,-3.0421 6.5918,-3.0421 6.5781,-3.0489 6.5713,-3.0558 6.5644,-3.0763 6.5644,-3.09 6.5713,-3.1105 6.5781,-3.1174 6.5918,-3.1242 6.6123,-3.1242 6.626,-3.1174 6.6329,-3.1037 6.6397,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
808
+ <polygon points="6.715,-3.0352 6.7013,-3.0421 6.6876,-3.0558 6.6808,-3.0763 6.6808,-3.09 6.6876,-3.1105 6.7013,-3.1242 6.715,-3.1311 6.7356,-3.1311 6.7492,-3.1242 6.7629,-3.1105 6.7698,-3.09 6.7698,-3.0763 6.7629,-3.0558 6.7492,-3.0421 6.7356,-3.0352 " stroke-width="0.0097205" stroke-linejoin="round" />
809
+ <polygon points="6.715,-3.0421 6.7013,-3.0489 6.6945,-3.0558 6.6876,-3.0763 6.6876,-3.09 6.6945,-3.1105 6.7013,-3.1174 6.715,-3.1242 6.7356,-3.1242 6.7492,-3.1174 6.7561,-3.1105 6.7629,-3.09 6.7629,-3.0763 6.7561,-3.0558 6.7492,-3.0489 6.7356,-3.0421 " stroke-width="0.0097205" stroke-linejoin="round" />
810
+ <polyline points="6.893,-2.9873 6.893,-3.1311 6.8998,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
811
+ <polyline points="6.893,-2.9873 6.8998,-2.9873 6.8998,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
812
+ <polyline points="6.893,-3.0558 6.8793,-3.0421 6.8656,-3.0352 6.8451,-3.0352 6.8314,-3.0421 6.8177,-3.0558 6.8109,-3.0763 6.8109,-3.09 6.8177,-3.1105 6.8314,-3.1242 6.8451,-3.1311 6.8656,-3.1311 6.8793,-3.1242 6.893,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
813
+ <polyline points="6.893,-3.0558 6.8656,-3.0421 6.8451,-3.0421 6.8314,-3.0489 6.8245,-3.0558 6.8177,-3.0763 6.8177,-3.09 6.8245,-3.1105 6.8314,-3.1174 6.8451,-3.1242 6.8656,-3.1242 6.893,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
814
+ <polyline points="6.9546,-3.0832 7.0299,-3.0832 7.0299,-3.0626 7.0231,-3.0489 7.0162,-3.0421 7.0025,-3.0352 6.982,-3.0352 6.9683,-3.0421 6.9546,-3.0558 6.9478,-3.0763 6.9478,-3.09 6.9546,-3.1105 6.9683,-3.1242 6.982,-3.1311 7.0025,-3.1311 7.0162,-3.1242 7.0299,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
815
+ <polyline points="6.9546,-3.0763 7.0231,-3.0763 7.0231,-3.0626 7.0162,-3.0489 7.0025,-3.0421 6.982,-3.0421 6.9683,-3.0489 6.9615,-3.0558 6.9546,-3.0763 6.9546,-3.09 6.9615,-3.1105 6.9683,-3.1174 6.982,-3.1242 7.0025,-3.1242 7.0162,-3.1174 7.0231,-3.1037 7.0299,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
816
+ <polyline points="7.1189,-2.9599 7.1052,-2.9736 7.0915,-2.9942 7.0778,-3.0215 7.071,-3.0558 7.071,-3.0832 7.0778,-3.1174 7.0915,-3.1448 7.1052,-3.1653 7.1189,-3.179 7.1257,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
817
+ <polyline points="7.1189,-2.9599 7.1257,-2.9599 7.1121,-2.9736 7.0984,-2.9942 7.0847,-3.0215 7.0778,-3.0558 7.0778,-3.0832 7.0847,-3.1174 7.0984,-3.1448 7.1121,-3.1653 7.1257,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
818
+ <polyline points="7.249,-3.0558 7.2353,-3.0421 7.2216,-3.0352 7.201,-3.0352 7.1874,-3.0421 7.1737,-3.0558 7.1668,-3.0763 7.1668,-3.09 7.1737,-3.1105 7.1874,-3.1242 7.201,-3.1311 7.2216,-3.1311 7.2353,-3.1242 7.249,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
819
+ <polyline points="7.249,-3.0558 7.2421,-3.0626 7.2353,-3.0489 7.2216,-3.0421 7.201,-3.0421 7.1874,-3.0489 7.1805,-3.0558 7.1737,-3.0763 7.1737,-3.09 7.1805,-3.1105 7.1874,-3.1174 7.201,-3.1242 7.2216,-3.1242 7.2353,-3.1174 7.2421,-3.1037 7.249,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
820
+ <polyline points="7.2969,-3.0352 7.2969,-3.1311 7.3037,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
821
+ <polyline points="7.2969,-3.0352 7.3037,-3.0352 7.3037,-3.1311 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
822
+ <polyline points="7.3037,-3.0763 7.3106,-3.0558 7.3243,-3.0421 7.338,-3.0352 7.3585,-3.0352 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
823
+ <polyline points="7.3037,-3.0763 7.3106,-3.0626 7.3243,-3.0489 7.338,-3.0421 7.3585,-3.0421 7.3585,-3.0352 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
824
+ <polyline points="7.468,-3.0352 7.468,-3.179 7.4749,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
825
+ <polyline points="7.468,-3.0352 7.4749,-3.0352 7.4749,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
826
+ <polyline points="7.468,-3.0558 7.4543,-3.0421 7.4406,-3.0352 7.4201,-3.0352 7.4064,-3.0421 7.3927,-3.0558 7.3859,-3.0763 7.3859,-3.09 7.3927,-3.1105 7.4064,-3.1242 7.4201,-3.1311 7.4406,-3.1311 7.4543,-3.1242 7.468,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
827
+ <polyline points="7.468,-3.0558 7.4406,-3.0421 7.4201,-3.0421 7.4064,-3.0489 7.3996,-3.0558 7.3927,-3.0763 7.3927,-3.09 7.3996,-3.1105 7.4064,-3.1174 7.4201,-3.1242 7.4406,-3.1242 7.468,-3.1105 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
828
+ <polyline points="7.5228,-2.9599 7.5365,-2.9736 7.5502,-2.9942 7.5639,-3.0215 7.5707,-3.0558 7.5707,-3.0832 7.5639,-3.1174 7.5502,-3.1448 7.5365,-3.1653 7.5228,-3.179 7.5296,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
829
+ <polyline points="7.5228,-2.9599 7.5296,-2.9599 7.5433,-2.9736 7.557,-2.9942 7.5707,-3.0215 7.5775,-3.0558 7.5775,-3.0832 7.5707,-3.1174 7.557,-3.1448 7.5433,-3.1653 7.5296,-3.179 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
830
+ <line x1="7.875" y1="-0.15" x2="7.875" y2="-3.205" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
831
+ <line x1="7.825" y1="-3.205" x2="7.925" y2="-3.205" stroke-width="0.026576" />
832
+ <line x1="7.815" y1="-3.535" x2="6.06" y2="-3.535" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
833
+ <polygon points="6.16,-3.56 6.06,-3.535 6.16,-3.51 " stroke-width="0.026576" fill="black" />
834
+ <polyline points="6.7561,-3.3173 6.7561,-3.4611 6.7629,-3.4611 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
835
+ <polyline points="6.7561,-3.3173 6.7629,-3.3173 6.7629,-3.4611 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
836
+ <polyline points="6.7629,-3.3858 6.7766,-3.3721 6.7903,-3.3652 6.8109,-3.3652 6.8245,-3.3721 6.8382,-3.3858 6.8451,-3.4063 6.8451,-3.42 6.8382,-3.4405 6.8245,-3.4542 6.8109,-3.4611 6.7903,-3.4611 6.7766,-3.4542 6.7629,-3.4405 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
837
+ <polyline points="6.7629,-3.3858 6.7903,-3.3721 6.8109,-3.3721 6.8246,-3.3789 6.8314,-3.3858 6.8382,-3.4063 6.8382,-3.42 6.8314,-3.4405 6.8246,-3.4474 6.8109,-3.4542 6.7903,-3.4542 6.7629,-3.4405 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
838
+ <polyline points="7.0025,-3.3652 7.1189,-3.3652 7.1189,-3.3721 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
839
+ <polyline points="7.0025,-3.3652 7.0025,-3.3721 7.1189,-3.3721 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
840
+ <polyline points="7.0025,-3.42 7.1189,-3.42 7.1189,-3.4268 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
841
+ <polyline points="7.0025,-3.42 7.0025,-3.4268 7.1189,-3.4268 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
842
+ <line x1="7.825" y1="-3.205" x2="7.825" y2="-3.535" stroke-width="0.026576" />
843
+ <line x1="7.925" y1="-3.205" x2="7.925" y2="-3.535" stroke-width="0.026576" />
844
+ <line x1="7.825" y1="-3.535" x2="7.925" y2="-3.535" stroke-width="0.026576" />
845
+ <line x1="6.06" y1="-3.865" x2="11.565" y2="-3.865" stroke-width="0.026576" />
846
+ <polygon points="11.465,-3.84 11.565,-3.865 11.465,-3.89 " stroke-width="0.026576" fill="black" />
847
+ <line x1="8.3265" y1="-3.8048" x2="8.4497" y2="-3.8048" stroke-width="0.0097205" stroke-linecap="round" />
848
+ <line x1="8.4839" y1="-3.6952" x2="8.5181" y2="-3.7911" stroke-width="0.0097205" stroke-linecap="round" />
849
+ <polyline points="8.4839,-3.6952 8.4908,-3.6952 8.5181,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
850
+ <line x1="8.5455" y1="-3.6952" x2="8.5181" y2="-3.7705" stroke-width="0.0097205" stroke-linecap="round" />
851
+ <line x1="8.5455" y1="-3.7158" x2="8.5181" y2="-3.7911" stroke-width="0.0097205" stroke-linecap="round" />
852
+ <line x1="8.5455" y1="-3.7158" x2="8.5729" y2="-3.7911" stroke-width="0.0097205" stroke-linecap="round" />
853
+ <line x1="8.5455" y1="-3.6952" x2="8.5729" y2="-3.7705" stroke-width="0.0097205" stroke-linecap="round" />
854
+ <polyline points="8.6071,-3.6952 8.6003,-3.6952 8.5729,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
855
+ <line x1="8.6071" y1="-3.6952" x2="8.5729" y2="-3.7911" stroke-width="0.0097205" stroke-linecap="round" />
856
+ <polyline points="8.6551,-3.6952 8.6551,-3.7911 8.6619,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
857
+ <polyline points="8.6551,-3.6952 8.6619,-3.6952 8.6619,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
858
+ <polyline points="8.6619,-3.7363 8.6687,-3.7158 8.6824,-3.7021 8.6961,-3.6952 8.7167,-3.6952 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
859
+ <polyline points="8.6619,-3.7363 8.6687,-3.7226 8.6824,-3.7089 8.6961,-3.7021 8.7167,-3.7021 8.7167,-3.6952 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
860
+ <polygon points="8.7509,-3.6473 8.744,-3.6542 8.744,-3.661 8.7509,-3.6679 8.7577,-3.6679 8.7646,-3.661 8.7646,-3.6542 8.7577,-3.6473 " stroke-width="0.0097205" stroke-linejoin="round" />
861
+ <polygon points="8.7509,-3.6542 8.7509,-3.661 8.7577,-3.661 8.7577,-3.6542 " stroke-width="0.0097205" stroke-linejoin="round" />
862
+ <polyline points="8.7509,-3.6952 8.7509,-3.7911 8.7577,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
863
+ <polyline points="8.7509,-3.6952 8.7577,-3.6952 8.7577,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
864
+ <polyline points="8.8193,-3.6473 8.8193,-3.7911 8.8262,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
865
+ <polyline points="8.8193,-3.6473 8.8262,-3.6473 8.8262,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
866
+ <polyline points="8.7988,-3.6952 8.8467,-3.6952 8.8467,-3.7021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
867
+ <polyline points="8.7988,-3.6952 8.7988,-3.7021 8.8467,-3.7021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
868
+ <polyline points="8.8878,-3.7432 8.9631,-3.7432 8.9631,-3.7226 8.9563,-3.7089 8.9494,-3.7021 8.9357,-3.6952 8.9152,-3.6952 8.9015,-3.7021 8.8878,-3.7158 8.881,-3.7363 8.881,-3.75 8.8878,-3.7705 8.9015,-3.7842 8.9152,-3.7911 8.9357,-3.7911 8.9494,-3.7842 8.9631,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
869
+ <polyline points="8.8878,-3.7363 8.9563,-3.7363 8.9563,-3.7226 8.9494,-3.7089 8.9357,-3.7021 8.9152,-3.7021 8.9015,-3.7089 8.8946,-3.7158 8.8878,-3.7363 8.8878,-3.75 8.8946,-3.7705 8.9015,-3.7774 8.9152,-3.7842 8.9357,-3.7842 8.9494,-3.7774 8.9563,-3.7637 8.9631,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
870
+ <polyline points="9.0521,-3.6199 9.0384,-3.6336 9.0247,-3.6542 9.011,-3.6815 9.0042,-3.7158 9.0042,-3.7432 9.011,-3.7774 9.0247,-3.8048 9.0384,-3.8253 9.0521,-3.839 9.0589,-3.839 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
871
+ <polyline points="9.0521,-3.6199 9.0589,-3.6199 9.0452,-3.6336 9.0316,-3.6542 9.0179,-3.6815 9.011,-3.7158 9.011,-3.7432 9.0179,-3.7774 9.0316,-3.8048 9.0452,-3.8253 9.0589,-3.839 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
872
+ <polyline points="9.1069,-3.6473 9.1069,-3.7911 9.1137,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
873
+ <polyline points="9.1069,-3.6473 9.1137,-3.6473 9.1137,-3.7911 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
874
+ <polyline points="9.1137,-3.7158 9.1274,-3.7021 9.1411,-3.6952 9.1616,-3.6952 9.1753,-3.7021 9.189,-3.7158 9.1958,-3.7363 9.1958,-3.75 9.189,-3.7705 9.1753,-3.7842 9.1616,-3.7911 9.1411,-3.7911 9.1274,-3.7842 9.1137,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
875
+ <polyline points="9.1137,-3.7158 9.1411,-3.7021 9.1616,-3.7021 9.1753,-3.7089 9.1822,-3.7158 9.189,-3.7363 9.189,-3.75 9.1822,-3.7705 9.1753,-3.7774 9.1616,-3.7842 9.1411,-3.7842 9.1137,-3.7705 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
876
+ <polyline points="9.2369,-3.6199 9.2506,-3.6336 9.2643,-3.6542 9.278,-3.6815 9.2848,-3.7158 9.2848,-3.7432 9.278,-3.7774 9.2643,-3.8048 9.2506,-3.8253 9.2369,-3.839 9.2438,-3.839 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
877
+ <polyline points="9.2369,-3.6199 9.2438,-3.6199 9.2575,-3.6336 9.2711,-3.6542 9.2848,-3.6815 9.2917,-3.7158 9.2917,-3.7432 9.2848,-3.7774 9.2711,-3.8048 9.2575,-3.8253 9.2438,-3.839 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
878
+ <line x1="11.625" y1="-0.15" x2="11.625" y2="-3.865" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
879
+ <line x1="11.575" y1="-3.865" x2="11.675" y2="-3.865" stroke-width="0.026576" />
880
+ <line x1="11.565" y1="-4.195" x2="6.06" y2="-4.195" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
881
+ <polygon points="6.16,-4.22 6.06,-4.195 6.16,-4.17 " stroke-width="0.026576" fill="black" />
882
+ <line x1="11.575" y1="-3.865" x2="11.575" y2="-4.195" stroke-width="0.026576" />
883
+ <line x1="11.675" y1="-3.865" x2="11.675" y2="-4.195" stroke-width="0.026576" />
884
+ <line x1="11.575" y1="-4.195" x2="11.675" y2="-4.195" stroke-width="0.026576" />
885
+ <line x1="13.5" y1="-0.15" x2="13.5" y2="-4.195" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
886
+ <line x1="13.45" y1="-4.195" x2="13.55" y2="-4.195" stroke-width="0.026576" />
887
+ <line x1="13.44" y1="-4.525" x2="11.685" y2="-4.525" stroke-width="0.026576" />
888
+ <polygon points="11.785,-4.55 11.685,-4.525 11.785,-4.5 " stroke-width="0.026576" fill="black" />
889
+ <line x1="12.159" y1="-4.4648" x2="12.282" y2="-4.4648" stroke-width="0.0097205" stroke-linecap="round" />
890
+ <polyline points="12.323,-4.3552 12.323,-4.4511 12.33,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
891
+ <polyline points="12.323,-4.3552 12.33,-4.3552 12.33,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
892
+ <polyline points="12.33,-4.3963 12.337,-4.3758 12.35,-4.3621 12.364,-4.3552 12.385,-4.3552 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
893
+ <polyline points="12.33,-4.3963 12.337,-4.3826 12.35,-4.3689 12.364,-4.3621 12.385,-4.3621 12.385,-4.3552 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
894
+ <polyline points="12.419,-4.4032 12.494,-4.4032 12.494,-4.3826 12.487,-4.3689 12.48,-4.3621 12.467,-4.3552 12.446,-4.3552 12.432,-4.3621 12.419,-4.3758 12.412,-4.3963 12.412,-4.41 12.419,-4.4305 12.432,-4.4442 12.446,-4.4511 12.467,-4.4511 12.48,-4.4442 12.494,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
895
+ <polyline points="12.419,-4.3963 12.487,-4.3963 12.487,-4.3826 12.48,-4.3689 12.467,-4.3621 12.446,-4.3621 12.432,-4.3689 12.426,-4.3758 12.419,-4.3963 12.419,-4.41 12.426,-4.4305 12.432,-4.4374 12.446,-4.4442 12.467,-4.4442 12.48,-4.4374 12.487,-4.4237 12.494,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
896
+ <polyline points="12.617,-4.3552 12.617,-4.4511 12.624,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
897
+ <polyline points="12.617,-4.3552 12.624,-4.3552 12.624,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
898
+ <polyline points="12.617,-4.3758 12.604,-4.3621 12.59,-4.3552 12.569,-4.3552 12.556,-4.3621 12.542,-4.3758 12.535,-4.3963 12.535,-4.41 12.542,-4.4305 12.556,-4.4442 12.569,-4.4511 12.59,-4.4511 12.604,-4.4442 12.617,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
899
+ <polyline points="12.617,-4.3758 12.59,-4.3621 12.569,-4.3621 12.556,-4.3689 12.549,-4.3758 12.542,-4.3963 12.542,-4.41 12.549,-4.4305 12.556,-4.4374 12.569,-4.4442 12.59,-4.4442 12.617,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
900
+ <polyline points="12.754,-4.3073 12.754,-4.4511 12.761,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
901
+ <polyline points="12.754,-4.3073 12.761,-4.3073 12.761,-4.4511 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
902
+ <polyline points="12.754,-4.3758 12.74,-4.3621 12.727,-4.3552 12.706,-4.3552 12.693,-4.3621 12.679,-4.3758 12.672,-4.3963 12.672,-4.41 12.679,-4.4305 12.693,-4.4442 12.706,-4.4511 12.727,-4.4511 12.74,-4.4442 12.754,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
903
+ <polyline points="12.754,-4.3758 12.727,-4.3621 12.706,-4.3621 12.693,-4.3689 12.686,-4.3758 12.679,-4.3963 12.679,-4.41 12.686,-4.4305 12.693,-4.4374 12.706,-4.4442 12.727,-4.4442 12.754,-4.4305 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
904
+ <polyline points="12.857,-4.2799 12.843,-4.2936 12.829,-4.3142 12.816,-4.3415 12.809,-4.3758 12.809,-4.4032 12.816,-4.4374 12.829,-4.4648 12.843,-4.4853 12.857,-4.499 12.864,-4.499 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
905
+ <polyline points="12.857,-4.2799 12.864,-4.2799 12.85,-4.2936 12.836,-4.3142 12.823,-4.3415 12.816,-4.3758 12.816,-4.4032 12.823,-4.4374 12.836,-4.4648 12.85,-4.4853 12.864,-4.499 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
906
+ <polyline points="12.905,-4.2799 12.918,-4.2936 12.932,-4.3142 12.946,-4.3415 12.953,-4.3758 12.953,-4.4032 12.946,-4.4374 12.932,-4.4648 12.918,-4.4853 12.905,-4.499 12.912,-4.499 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
907
+ <polyline points="12.905,-4.2799 12.912,-4.2799 12.925,-4.2936 12.939,-4.3142 12.953,-4.3415 12.96,-4.3758 12.96,-4.4032 12.953,-4.4374 12.939,-4.4648 12.925,-4.4853 12.912,-4.499 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
908
+ <line x1="11.625" y1="-4.195" x2="11.625" y2="-4.525" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
909
+ <line x1="11.575" y1="-4.525" x2="11.675" y2="-4.525" stroke-width="0.026576" />
910
+ <line x1="11.685" y1="-4.855" x2="13.44" y2="-4.855" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
911
+ <polygon points="13.34,-4.83 13.44,-4.855 13.34,-4.88 " stroke-width="0.026576" fill="black" />
912
+ <polyline points="12.326,-4.6373 12.326,-4.7811 12.333,-4.7811 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
913
+ <polyline points="12.326,-4.6373 12.333,-4.6373 12.333,-4.7811 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
914
+ <polyline points="12.333,-4.7058 12.347,-4.6921 12.361,-4.6852 12.381,-4.6852 12.395,-4.6921 12.408,-4.7058 12.415,-4.7263 12.415,-4.74 12.408,-4.7605 12.395,-4.7742 12.381,-4.7811 12.361,-4.7811 12.347,-4.7742 12.333,-4.7605 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
915
+ <polyline points="12.333,-4.7058 12.361,-4.6921 12.381,-4.6921 12.395,-4.6989 12.402,-4.7058 12.408,-4.7263 12.408,-4.74 12.402,-4.7605 12.395,-4.7674 12.381,-4.7742 12.361,-4.7742 12.333,-4.7605 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
916
+ <polyline points="12.573,-4.6852 12.689,-4.6852 12.689,-4.6921 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
917
+ <polyline points="12.573,-4.6852 12.573,-4.6921 12.689,-4.6921 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
918
+ <polyline points="12.573,-4.74 12.689,-4.74 12.689,-4.7468 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
919
+ <polyline points="12.573,-4.74 12.573,-4.7468 12.689,-4.7468 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
920
+ <line x1="11.575" y1="-4.525" x2="11.575" y2="-4.855" stroke-width="0.026576" />
921
+ <line x1="11.675" y1="-4.525" x2="11.675" y2="-4.855" stroke-width="0.026576" />
922
+ <line x1="11.575" y1="-4.855" x2="11.675" y2="-4.855" stroke-width="0.026576" />
923
+ <line x1="13.56" y1="-5.185" x2="15.315" y2="-5.185" stroke-width="0.026576" />
924
+ <polygon points="15.215,-5.16 15.315,-5.185 15.215,-5.21 " stroke-width="0.026576" fill="black" />
925
+ <polyline points="13.989,-4.9673 13.989,-5.1111 13.996,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
926
+ <polyline points="13.989,-4.9673 13.996,-4.9673 13.996,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
927
+ <polyline points="13.989,-5.0358 13.975,-5.0221 13.962,-5.0152 13.941,-5.0152 13.928,-5.0221 13.914,-5.0358 13.907,-5.0563 13.907,-5.07 13.914,-5.0905 13.928,-5.1042 13.941,-5.1111 13.962,-5.1111 13.975,-5.1042 13.989,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
928
+ <polyline points="13.989,-5.0358 13.962,-5.0221 13.941,-5.0221 13.928,-5.0289 13.921,-5.0358 13.914,-5.0563 13.914,-5.07 13.921,-5.0905 13.928,-5.0974 13.941,-5.1042 13.962,-5.1042 13.989,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
929
+ <polyline points="14.051,-5.0632 14.126,-5.0632 14.126,-5.0426 14.119,-5.0289 14.112,-5.0221 14.099,-5.0152 14.078,-5.0152 14.064,-5.0221 14.051,-5.0358 14.044,-5.0563 14.044,-5.07 14.051,-5.0905 14.064,-5.1042 14.078,-5.1111 14.099,-5.1111 14.112,-5.1042 14.126,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
930
+ <polyline points="14.051,-5.0563 14.119,-5.0563 14.119,-5.0426 14.112,-5.0289 14.099,-5.0221 14.078,-5.0221 14.064,-5.0289 14.058,-5.0358 14.051,-5.0563 14.051,-5.07 14.058,-5.0905 14.064,-5.0974 14.078,-5.1042 14.099,-5.1042 14.112,-5.0974 14.119,-5.0837 14.126,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
931
+ <polyline points="14.249,-5.0358 14.236,-5.0221 14.222,-5.0152 14.201,-5.0152 14.188,-5.0221 14.174,-5.0358 14.167,-5.0563 14.167,-5.07 14.174,-5.0905 14.188,-5.1042 14.201,-5.1111 14.222,-5.1111 14.236,-5.1042 14.249,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
932
+ <polyline points="14.249,-5.0358 14.242,-5.0426 14.236,-5.0289 14.222,-5.0221 14.201,-5.0221 14.188,-5.0289 14.181,-5.0358 14.174,-5.0563 14.174,-5.07 14.181,-5.0905 14.188,-5.0974 14.201,-5.1042 14.222,-5.1042 14.236,-5.0974 14.242,-5.0837 14.249,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
933
+ <polygon points="14.325,-5.0152 14.311,-5.0221 14.297,-5.0358 14.29,-5.0563 14.29,-5.07 14.297,-5.0905 14.311,-5.1042 14.325,-5.1111 14.345,-5.1111 14.359,-5.1042 14.372,-5.0905 14.379,-5.07 14.379,-5.0563 14.372,-5.0358 14.359,-5.0221 14.345,-5.0152 " stroke-width="0.0097205" stroke-linejoin="round" />
934
+ <polygon points="14.325,-5.0221 14.311,-5.0289 14.304,-5.0358 14.297,-5.0563 14.297,-5.07 14.304,-5.0905 14.311,-5.0974 14.325,-5.1042 14.345,-5.1042 14.359,-5.0974 14.366,-5.0905 14.372,-5.07 14.372,-5.0563 14.366,-5.0358 14.359,-5.0289 14.345,-5.0221 " stroke-width="0.0097205" stroke-linejoin="round" />
935
+ <polyline points="14.503,-4.9673 14.503,-5.1111 14.509,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
936
+ <polyline points="14.503,-4.9673 14.509,-4.9673 14.509,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
937
+ <polyline points="14.503,-5.0358 14.489,-5.0221 14.475,-5.0152 14.455,-5.0152 14.441,-5.0221 14.427,-5.0358 14.42,-5.0563 14.42,-5.07 14.427,-5.0905 14.441,-5.1042 14.455,-5.1111 14.475,-5.1111 14.489,-5.1042 14.503,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
938
+ <polyline points="14.503,-5.0358 14.475,-5.0221 14.455,-5.0221 14.441,-5.0289 14.434,-5.0358 14.427,-5.0563 14.427,-5.07 14.434,-5.0905 14.441,-5.0974 14.455,-5.1042 14.475,-5.1042 14.503,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
939
+ <polyline points="14.564,-5.0632 14.639,-5.0632 14.639,-5.0426 14.633,-5.0289 14.626,-5.0221 14.612,-5.0152 14.592,-5.0152 14.578,-5.0221 14.564,-5.0358 14.557,-5.0563 14.557,-5.07 14.564,-5.0905 14.578,-5.1042 14.592,-5.1111 14.612,-5.1111 14.626,-5.1042 14.639,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
940
+ <polyline points="14.564,-5.0563 14.633,-5.0563 14.633,-5.0426 14.626,-5.0289 14.612,-5.0221 14.592,-5.0221 14.578,-5.0289 14.571,-5.0358 14.564,-5.0563 14.564,-5.07 14.571,-5.0905 14.578,-5.0974 14.592,-5.1042 14.612,-5.1042 14.626,-5.0974 14.633,-5.0837 14.639,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
941
+ <polyline points="14.728,-4.9399 14.715,-4.9536 14.701,-4.9742 14.687,-5.0015 14.681,-5.0358 14.681,-5.0632 14.687,-5.0974 14.701,-5.1248 14.715,-5.1453 14.728,-5.159 14.735,-5.159 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
942
+ <polyline points="14.728,-4.9399 14.735,-4.9399 14.722,-4.9536 14.708,-4.9742 14.694,-5.0015 14.687,-5.0358 14.687,-5.0632 14.694,-5.0974 14.708,-5.1248 14.722,-5.1453 14.735,-5.159 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
943
+ <polyline points="14.783,-4.9673 14.783,-5.1111 14.79,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
944
+ <polyline points="14.783,-4.9673 14.79,-4.9673 14.79,-5.1111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
945
+ <polyline points="14.79,-5.0358 14.804,-5.0221 14.817,-5.0152 14.838,-5.0152 14.852,-5.0221 14.865,-5.0358 14.872,-5.0563 14.872,-5.07 14.865,-5.0905 14.852,-5.1042 14.838,-5.1111 14.817,-5.1111 14.804,-5.1042 14.79,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
946
+ <polyline points="14.79,-5.0358 14.817,-5.0221 14.838,-5.0221 14.852,-5.0289 14.858,-5.0358 14.865,-5.0563 14.865,-5.07 14.858,-5.0905 14.852,-5.0974 14.838,-5.1042 14.817,-5.1042 14.79,-5.0905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
947
+ <polyline points="14.913,-4.9399 14.927,-4.9536 14.941,-4.9742 14.954,-5.0015 14.961,-5.0358 14.961,-5.0632 14.954,-5.0974 14.941,-5.1248 14.927,-5.1453 14.913,-5.159 14.92,-5.159 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
948
+ <polyline points="14.913,-4.9399 14.92,-4.9399 14.934,-4.9536 14.947,-4.9742 14.961,-5.0015 14.968,-5.0358 14.968,-5.0632 14.961,-5.0974 14.947,-5.1248 14.934,-5.1453 14.92,-5.159 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
949
+ <line x1="15.375" y1="-0.15" x2="15.375" y2="-5.185" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
950
+ <line x1="15.325" y1="-5.185" x2="15.425" y2="-5.185" stroke-width="0.026576" />
951
+ <line x1="15.435" y1="-5.515" x2="16.867" y2="-5.515" stroke-width="0.026576" />
952
+ <polygon points="16.767,-5.49 16.867,-5.515 16.767,-5.54 " stroke-width="0.026576" fill="black" />
953
+ <polyline points="15.621,-5.3179 15.511,-5.3795 15.621,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
954
+ <polyline points="15.621,-5.3179 15.621,-5.3247 15.525,-5.3795 15.621,-5.4342 15.621,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
955
+ <polyline points="15.785,-5.3179 15.675,-5.3795 15.785,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
956
+ <polyline points="15.785,-5.3179 15.785,-5.3247 15.689,-5.3795 15.785,-5.4342 15.785,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
957
+ <polyline points="15.915,-5.3658 15.901,-5.3521 15.888,-5.3452 15.867,-5.3452 15.853,-5.3521 15.84,-5.3658 15.833,-5.3863 15.833,-5.4 15.84,-5.4205 15.853,-5.4342 15.867,-5.4411 15.888,-5.4411 15.901,-5.4342 15.915,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
958
+ <polyline points="15.915,-5.3658 15.908,-5.3726 15.901,-5.3589 15.888,-5.3521 15.867,-5.3521 15.853,-5.3589 15.847,-5.3658 15.84,-5.3863 15.84,-5.4 15.847,-5.4205 15.853,-5.4274 15.867,-5.4342 15.888,-5.4342 15.901,-5.4274 15.908,-5.4137 15.915,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
959
+ <polyline points="15.963,-5.3452 15.963,-5.4411 15.97,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
960
+ <polyline points="15.963,-5.3452 15.97,-5.3452 15.97,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
961
+ <polyline points="15.97,-5.3863 15.977,-5.3658 15.99,-5.3521 16.004,-5.3452 16.025,-5.3452 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
962
+ <polyline points="15.97,-5.3863 15.977,-5.3726 15.99,-5.3589 16.004,-5.3521 16.025,-5.3521 16.025,-5.3452 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
963
+ <polyline points="16.059,-5.3932 16.134,-5.3932 16.134,-5.3726 16.127,-5.3589 16.12,-5.3521 16.107,-5.3452 16.086,-5.3452 16.073,-5.3521 16.059,-5.3658 16.052,-5.3863 16.052,-5.4 16.059,-5.4205 16.073,-5.4342 16.086,-5.4411 16.107,-5.4411 16.12,-5.4342 16.134,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
964
+ <polyline points="16.059,-5.3863 16.127,-5.3863 16.127,-5.3726 16.12,-5.3589 16.107,-5.3521 16.086,-5.3521 16.073,-5.3589 16.066,-5.3658 16.059,-5.3863 16.059,-5.4 16.066,-5.4205 16.073,-5.4274 16.086,-5.4342 16.107,-5.4342 16.12,-5.4274 16.127,-5.4137 16.134,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
965
+ <polyline points="16.257,-5.3452 16.257,-5.4411 16.264,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
966
+ <polyline points="16.257,-5.3452 16.264,-5.3452 16.264,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
967
+ <polyline points="16.257,-5.3658 16.244,-5.3521 16.23,-5.3452 16.209,-5.3452 16.196,-5.3521 16.182,-5.3658 16.175,-5.3863 16.175,-5.4 16.182,-5.4205 16.196,-5.4342 16.209,-5.4411 16.23,-5.4411 16.244,-5.4342 16.257,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
968
+ <polyline points="16.257,-5.3658 16.23,-5.3521 16.209,-5.3521 16.196,-5.3589 16.189,-5.3658 16.182,-5.3863 16.182,-5.4 16.189,-5.4205 16.196,-5.4274 16.209,-5.4342 16.23,-5.4342 16.257,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
969
+ <polyline points="16.326,-5.2973 16.326,-5.4411 16.333,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
970
+ <polyline points="16.326,-5.2973 16.333,-5.2973 16.333,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
971
+ <polyline points="16.305,-5.3452 16.353,-5.3452 16.353,-5.3521 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
972
+ <polyline points="16.305,-5.3452 16.305,-5.3521 16.353,-5.3521 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
973
+ <polyline points="16.394,-5.3932 16.47,-5.3932 16.47,-5.3726 16.463,-5.3589 16.456,-5.3521 16.442,-5.3452 16.422,-5.3452 16.408,-5.3521 16.394,-5.3658 16.387,-5.3863 16.387,-5.4 16.394,-5.4205 16.408,-5.4342 16.422,-5.4411 16.442,-5.4411 16.456,-5.4342 16.47,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
974
+ <polyline points="16.394,-5.3863 16.463,-5.3863 16.463,-5.3726 16.456,-5.3589 16.442,-5.3521 16.422,-5.3521 16.408,-5.3589 16.401,-5.3658 16.394,-5.3863 16.394,-5.4 16.401,-5.4205 16.408,-5.4274 16.422,-5.4342 16.442,-5.4342 16.456,-5.4274 16.463,-5.4137 16.47,-5.4205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
975
+ <polyline points="16.517,-5.3179 16.627,-5.3795 16.517,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
976
+ <polyline points="16.517,-5.3179 16.517,-5.3247 16.613,-5.3795 16.517,-5.4342 16.517,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
977
+ <polyline points="16.682,-5.3179 16.791,-5.3795 16.682,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
978
+ <polyline points="16.682,-5.3179 16.682,-5.3247 16.778,-5.3795 16.682,-5.4342 16.682,-5.4411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
979
+ <line x1="16.968" y1="-5.605" x2="17.517" y2="-5.605" stroke-width="0.026576" />
980
+ <line x1="17.25" y1="-5.665" x2="17.25" y2="-5.83" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
981
+ <line x1="17.2" y1="-5.83" x2="17.3" y2="-5.83" stroke-width="0.026576" />
982
+ <line x1="17.19" y1="-6.16" x2="15.435" y2="-6.16" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
983
+ <polygon points="15.535,-6.185 15.435,-6.16 15.535,-6.135 " stroke-width="0.026576" fill="black" />
984
+ <line x1="17.2" y1="-5.83" x2="17.2" y2="-6.16" stroke-width="0.026576" />
985
+ <line x1="17.3" y1="-5.83" x2="17.3" y2="-6.16" stroke-width="0.026576" />
986
+ <line x1="17.2" y1="-6.16" x2="17.3" y2="-6.16" stroke-width="0.026576" />
987
+ <line x1="15.315" y1="-6.49" x2="13.56" y2="-6.49" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
988
+ <polygon points="13.66,-6.515 13.56,-6.49 13.66,-6.465 " stroke-width="0.026576" fill="black" />
989
+ <polyline points="14.164,-6.3408 14.157,-6.3271 14.136,-6.3202 14.116,-6.3202 14.095,-6.3271 14.088,-6.3408 14.095,-6.3545 14.109,-6.3613 14.143,-6.375 14.157,-6.3818 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
990
+ <polyline points="14.15,-6.375 14.157,-6.3887 14.157,-6.3955 14.15,-6.4092 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
991
+ <polyline points="14.157,-6.4024 14.136,-6.4092 14.116,-6.4092 14.095,-6.4024 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
992
+ <polyline points="14.102,-6.4092 14.095,-6.3955 14.088,-6.3955 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
993
+ <polyline points="14.164,-6.3408 14.157,-6.3408 14.15,-6.3271 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
994
+ <polyline points="14.157,-6.3339 14.136,-6.3271 14.116,-6.3271 14.095,-6.3339 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
995
+ <polyline points="14.102,-6.3271 14.095,-6.3408 14.102,-6.3545 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
996
+ <polyline points="14.095,-6.3476 14.109,-6.3545 14.143,-6.3682 14.157,-6.375 14.164,-6.3887 14.164,-6.3955 14.157,-6.4092 14.136,-6.4161 14.116,-6.4161 14.095,-6.4092 14.088,-6.3955 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
997
+ <polyline points="14.212,-6.3202 14.212,-6.4161 14.218,-6.4161 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
998
+ <polyline points="14.212,-6.3202 14.218,-6.3202 14.218,-6.4161 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
999
+ <polyline points="14.218,-6.3613 14.225,-6.3408 14.239,-6.3271 14.253,-6.3202 14.273,-6.3202 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1000
+ <polyline points="14.218,-6.3613 14.225,-6.3476 14.239,-6.3339 14.253,-6.3271 14.273,-6.3271 14.273,-6.3202 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1001
+ <polyline points="14.383,-6.3202 14.383,-6.464 14.39,-6.464 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1002
+ <polyline points="14.383,-6.3202 14.39,-6.3202 14.39,-6.464 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1003
+ <polyline points="14.383,-6.3408 14.369,-6.3271 14.355,-6.3202 14.335,-6.3202 14.321,-6.3271 14.307,-6.3408 14.301,-6.3613 14.301,-6.375 14.307,-6.3955 14.321,-6.4092 14.335,-6.4161 14.355,-6.4161 14.369,-6.4092 14.383,-6.3955 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1004
+ <polyline points="14.383,-6.3408 14.355,-6.3271 14.335,-6.3271 14.321,-6.3339 14.314,-6.3408 14.307,-6.3613 14.307,-6.375 14.314,-6.3955 14.321,-6.4024 14.335,-6.4092 14.355,-6.4092 14.383,-6.3955 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1005
+ <polyline points="14.554,-6.3202 14.67,-6.3202 14.67,-6.3271 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1006
+ <polyline points="14.554,-6.3202 14.554,-6.3271 14.67,-6.3271 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1007
+ <polyline points="14.554,-6.375 14.67,-6.375 14.67,-6.3818 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1008
+ <polyline points="14.554,-6.375 14.554,-6.3818 14.67,-6.3818 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1009
+ <line x1="15.325" y1="-5.185" x2="15.325" y2="-6.49" stroke-width="0.026576" />
1010
+ <line x1="15.425" y1="-5.185" x2="15.425" y2="-6.49" stroke-width="0.026576" />
1011
+ <line x1="15.325" y1="-6.49" x2="15.425" y2="-6.49" stroke-width="0.026576" />
1012
+ <line x1="13.56" y1="-6.82" x2="17.19" y2="-6.82" stroke-width="0.026576" />
1013
+ <polygon points="17.09,-6.795 17.19,-6.82 17.09,-6.845 " stroke-width="0.026576" fill="black" />
1014
+ <polyline points="14.875,-6.6708 14.868,-6.6571 14.848,-6.6502 14.827,-6.6502 14.807,-6.6571 14.8,-6.6708 14.807,-6.6845 14.821,-6.6913 14.855,-6.705 14.868,-6.7118 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1015
+ <polyline points="14.862,-6.705 14.868,-6.7187 14.868,-6.7255 14.862,-6.7392 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1016
+ <polyline points="14.868,-6.7324 14.848,-6.7392 14.827,-6.7392 14.807,-6.7324 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1017
+ <polyline points="14.814,-6.7392 14.807,-6.7255 14.8,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1018
+ <polyline points="14.875,-6.6708 14.868,-6.6708 14.862,-6.6571 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1019
+ <polyline points="14.868,-6.6639 14.848,-6.6571 14.827,-6.6571 14.807,-6.6639 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1020
+ <polyline points="14.814,-6.6571 14.807,-6.6708 14.814,-6.6845 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1021
+ <polyline points="14.807,-6.6776 14.821,-6.6845 14.855,-6.6982 14.868,-6.705 14.875,-6.7187 14.875,-6.7255 14.868,-6.7392 14.848,-6.7461 14.827,-6.7461 14.807,-6.7392 14.8,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1022
+ <polyline points="14.923,-6.6502 14.923,-6.7461 14.93,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1023
+ <polyline points="14.923,-6.6502 14.93,-6.6502 14.93,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1024
+ <polyline points="14.93,-6.6913 14.937,-6.6708 14.951,-6.6571 14.964,-6.6502 14.985,-6.6502 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1025
+ <polyline points="14.93,-6.6913 14.937,-6.6776 14.951,-6.6639 14.964,-6.6571 14.985,-6.6571 14.985,-6.6502 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1026
+ <polyline points="15.094,-6.6502 15.094,-6.794 15.101,-6.794 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1027
+ <polyline points="15.094,-6.6502 15.101,-6.6502 15.101,-6.794 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1028
+ <polyline points="15.094,-6.6708 15.081,-6.6571 15.067,-6.6502 15.046,-6.6502 15.033,-6.6571 15.019,-6.6708 15.012,-6.6913 15.012,-6.705 15.019,-6.7255 15.033,-6.7392 15.046,-6.7461 15.067,-6.7461 15.081,-6.7392 15.094,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1029
+ <polyline points="15.094,-6.6708 15.067,-6.6571 15.046,-6.6571 15.033,-6.6639 15.026,-6.6708 15.019,-6.6913 15.019,-6.705 15.026,-6.7255 15.033,-6.7324 15.046,-6.7392 15.067,-6.7392 15.094,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1030
+ <polygon points="15.163,-6.7255 15.156,-6.7324 15.156,-6.7392 15.163,-6.7461 15.17,-6.7461 15.176,-6.7392 15.176,-6.7324 15.17,-6.7255 " stroke-width="0.0097205" stroke-linejoin="round" />
1031
+ <polygon points="15.163,-6.7324 15.163,-6.7392 15.17,-6.7392 15.17,-6.7324 " stroke-width="0.0097205" stroke-linejoin="round" />
1032
+ <polygon points="15.231,-6.6023 15.224,-6.6092 15.224,-6.616 15.231,-6.6229 15.238,-6.6229 15.245,-6.616 15.245,-6.6092 15.238,-6.6023 " stroke-width="0.0097205" stroke-linejoin="round" />
1033
+ <polygon points="15.231,-6.6092 15.231,-6.616 15.238,-6.616 15.238,-6.6092 " stroke-width="0.0097205" stroke-linejoin="round" />
1034
+ <polyline points="15.231,-6.6502 15.231,-6.7461 15.238,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1035
+ <polyline points="15.231,-6.6502 15.238,-6.6502 15.238,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1036
+ <polyline points="15.293,-6.6502 15.293,-6.7461 15.3,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1037
+ <polyline points="15.293,-6.6502 15.3,-6.6502 15.3,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1038
+ <polyline points="15.3,-6.6776 15.32,-6.6571 15.334,-6.6502 15.354,-6.6502 15.368,-6.6571 15.375,-6.6776 15.375,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1039
+ <polyline points="15.3,-6.6776 15.32,-6.6639 15.334,-6.6571 15.348,-6.6571 15.361,-6.6639 15.368,-6.6776 15.368,-6.7461 15.375,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1040
+ <line x1="15.416" y1="-6.6502" x2="15.457" y2="-6.7461" stroke-width="0.0097205" stroke-linecap="round" />
1041
+ <polyline points="15.416,-6.6502 15.423,-6.6502 15.457,-6.7324 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1042
+ <polyline points="15.498,-6.6502 15.491,-6.6502 15.457,-6.7324 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1043
+ <line x1="15.498" y1="-6.6502" x2="15.457" y2="-6.7461" stroke-width="0.0097205" stroke-linecap="round" />
1044
+ <polygon points="15.567,-6.6502 15.553,-6.6571 15.539,-6.6708 15.532,-6.6913 15.532,-6.705 15.539,-6.7255 15.553,-6.7392 15.567,-6.7461 15.587,-6.7461 15.601,-6.7392 15.615,-6.7255 15.621,-6.705 15.621,-6.6913 15.615,-6.6708 15.601,-6.6571 15.587,-6.6502 " stroke-width="0.0097205" stroke-linejoin="round" />
1045
+ <polygon points="15.567,-6.6571 15.553,-6.6639 15.546,-6.6708 15.539,-6.6913 15.539,-6.705 15.546,-6.7255 15.553,-6.7324 15.567,-6.7392 15.587,-6.7392 15.601,-6.7324 15.608,-6.7255 15.615,-6.705 15.615,-6.6913 15.608,-6.6708 15.601,-6.6639 15.587,-6.6571 " stroke-width="0.0097205" stroke-linejoin="round" />
1046
+ <polyline points="15.669,-6.6023 15.669,-6.7461 15.676,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1047
+ <polyline points="15.669,-6.6023 15.676,-6.6023 15.676,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1048
+ <polyline points="15.752,-6.6502 15.745,-6.6502 15.676,-6.7187 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1049
+ <line x1="15.752" y1="-6.6502" x2="15.676" y2="-6.7255" stroke-width="0.0097205" stroke-linecap="round" />
1050
+ <polyline points="15.697,-6.6982 15.738,-6.7461 15.752,-6.7461 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1051
+ <line x1="15.704" y1="-6.6913" x2="15.752" y2="-6.7461" stroke-width="0.0097205" stroke-linecap="round" />
1052
+ <polyline points="15.799,-6.6982 15.875,-6.6982 15.875,-6.6776 15.868,-6.6639 15.861,-6.6571 15.847,-6.6502 15.827,-6.6502 15.813,-6.6571 15.799,-6.6708 15.793,-6.6913 15.793,-6.705 15.799,-6.7255 15.813,-6.7392 15.827,-6.7461 15.847,-6.7461 15.861,-6.7392 15.875,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1053
+ <polyline points="15.799,-6.6913 15.868,-6.6913 15.868,-6.6776 15.861,-6.6639 15.847,-6.6571 15.827,-6.6571 15.813,-6.6639 15.806,-6.6708 15.799,-6.6913 15.799,-6.705 15.806,-6.7255 15.813,-6.7324 15.827,-6.7392 15.847,-6.7392 15.861,-6.7324 15.868,-6.7187 15.875,-6.7255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1054
+ <polyline points="15.929,-6.6023 15.929,-6.6982 15.936,-6.6982 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1055
+ <polyline points="15.929,-6.6023 15.936,-6.6023 15.936,-6.6982 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1056
+ <polygon points="15.929,-6.7255 15.923,-6.7324 15.923,-6.7392 15.929,-6.7461 15.936,-6.7461 15.943,-6.7392 15.943,-6.7324 15.936,-6.7255 " stroke-width="0.0097205" stroke-linejoin="round" />
1057
+ <polygon points="15.929,-6.7324 15.929,-6.7392 15.936,-6.7392 15.936,-6.7324 " stroke-width="0.0097205" stroke-linejoin="round" />
1058
+ <line x1="17.25" y1="-6.16" x2="17.25" y2="-6.82" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1059
+ <line x1="17.2" y1="-6.82" x2="17.3" y2="-6.82" stroke-width="0.026576" />
1060
+ <line x1="17.31" y1="-7.15" x2="20.94" y2="-7.15" stroke-width="0.026576" />
1061
+ <polygon points="20.84,-7.125 20.94,-7.15 20.84,-7.175 " stroke-width="0.026576" fill="black" />
1062
+ <polyline points="18.461,-6.9802 18.461,-7.0761 18.468,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1063
+ <polyline points="18.461,-6.9802 18.468,-6.9802 18.468,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1064
+ <polyline points="18.468,-7.0076 18.488,-6.9871 18.502,-6.9802 18.523,-6.9802 18.536,-6.9871 18.543,-7.0076 18.543,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1065
+ <polyline points="18.468,-7.0076 18.488,-6.9939 18.502,-6.9871 18.516,-6.9871 18.529,-6.9939 18.536,-7.0076 18.536,-7.0761 18.543,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1066
+ <polyline points="18.543,-7.0076 18.564,-6.9871 18.577,-6.9802 18.598,-6.9802 18.612,-6.9871 18.618,-7.0076 18.618,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1067
+ <polyline points="18.543,-7.0076 18.564,-6.9939 18.577,-6.9871 18.591,-6.9871 18.605,-6.9939 18.612,-7.0076 18.612,-7.0761 18.618,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1068
+ <polyline points="18.673,-7.0282 18.748,-7.0282 18.748,-7.0076 18.742,-6.9939 18.735,-6.9871 18.721,-6.9802 18.701,-6.9802 18.687,-6.9871 18.673,-7.0008 18.666,-7.0213 18.666,-7.035 18.673,-7.0555 18.687,-7.0692 18.701,-7.0761 18.721,-7.0761 18.735,-7.0692 18.748,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1069
+ <polyline points="18.673,-7.0213 18.742,-7.0213 18.742,-7.0076 18.735,-6.9939 18.721,-6.9871 18.701,-6.9871 18.687,-6.9939 18.68,-7.0008 18.673,-7.0213 18.673,-7.035 18.68,-7.0555 18.687,-7.0624 18.701,-7.0692 18.721,-7.0692 18.735,-7.0624 18.742,-7.0487 18.748,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1070
+ <polyline points="18.865,-7.0008 18.858,-6.9871 18.837,-6.9802 18.817,-6.9802 18.796,-6.9871 18.79,-7.0008 18.796,-7.0145 18.81,-7.0213 18.844,-7.035 18.858,-7.0418 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1071
+ <polyline points="18.851,-7.035 18.858,-7.0487 18.858,-7.0555 18.851,-7.0692 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1072
+ <polyline points="18.858,-7.0624 18.837,-7.0692 18.817,-7.0692 18.796,-7.0624 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1073
+ <polyline points="18.803,-7.0692 18.796,-7.0555 18.79,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1074
+ <polyline points="18.865,-7.0008 18.858,-7.0008 18.851,-6.9871 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1075
+ <polyline points="18.858,-6.9939 18.837,-6.9871 18.817,-6.9871 18.796,-6.9939 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1076
+ <polyline points="18.803,-6.9871 18.796,-7.0008 18.803,-7.0145 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1077
+ <polyline points="18.796,-7.0076 18.81,-7.0145 18.844,-7.0282 18.858,-7.035 18.865,-7.0487 18.865,-7.0555 18.858,-7.0692 18.837,-7.0761 18.817,-7.0761 18.796,-7.0692 18.79,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1078
+ <polyline points="18.981,-7.0008 18.974,-6.9871 18.954,-6.9802 18.933,-6.9802 18.913,-6.9871 18.906,-7.0008 18.913,-7.0145 18.926,-7.0213 18.961,-7.035 18.974,-7.0418 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1079
+ <polyline points="18.968,-7.035 18.974,-7.0487 18.974,-7.0555 18.968,-7.0692 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1080
+ <polyline points="18.974,-7.0624 18.954,-7.0692 18.933,-7.0692 18.913,-7.0624 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1081
+ <polyline points="18.92,-7.0692 18.913,-7.0555 18.906,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1082
+ <polyline points="18.981,-7.0008 18.974,-7.0008 18.968,-6.9871 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1083
+ <polyline points="18.974,-6.9939 18.954,-6.9871 18.933,-6.9871 18.913,-6.9939 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1084
+ <polyline points="18.92,-6.9871 18.913,-7.0008 18.92,-7.0145 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1085
+ <polyline points="18.913,-7.0076 18.926,-7.0145 18.961,-7.0282 18.974,-7.035 18.981,-7.0487 18.981,-7.0555 18.974,-7.0692 18.954,-7.0761 18.933,-7.0761 18.913,-7.0692 18.906,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1086
+ <polyline points="19.104,-6.9802 19.104,-7.0761 19.111,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1087
+ <polyline points="19.104,-6.9802 19.111,-6.9802 19.111,-7.0761 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1088
+ <polyline points="19.104,-7.0008 19.091,-6.9871 19.077,-6.9802 19.057,-6.9802 19.043,-6.9871 19.029,-7.0008 19.022,-7.0213 19.022,-7.035 19.029,-7.0555 19.043,-7.0692 19.057,-7.0761 19.077,-7.0761 19.091,-7.0692 19.104,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1089
+ <polyline points="19.104,-7.0008 19.077,-6.9871 19.057,-6.9871 19.043,-6.9939 19.036,-7.0008 19.029,-7.0213 19.029,-7.035 19.036,-7.0555 19.043,-7.0624 19.057,-7.0692 19.077,-7.0692 19.104,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1090
+ <polyline points="19.248,-6.9802 19.241,-6.9802 19.241,-7.0829 19.235,-7.1035 19.228,-7.1103 19.214,-7.1171 19.2,-7.1171 19.187,-7.1103 19.18,-7.1035 19.166,-7.1035 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1091
+ <polyline points="19.248,-6.9802 19.248,-7.0829 19.241,-7.1035 19.228,-7.1171 19.214,-7.124 19.193,-7.124 19.18,-7.1171 19.166,-7.1035 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1092
+ <polyline points="19.241,-7.0008 19.228,-6.9871 19.214,-6.9802 19.193,-6.9802 19.18,-6.9871 19.166,-7.0008 19.159,-7.0213 19.159,-7.035 19.166,-7.0555 19.18,-7.0692 19.193,-7.0761 19.214,-7.0761 19.228,-7.0692 19.241,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1093
+ <polyline points="19.241,-7.0008 19.214,-6.9871 19.193,-6.9871 19.18,-6.9939 19.173,-7.0008 19.166,-7.0213 19.166,-7.035 19.173,-7.0555 19.18,-7.0624 19.193,-7.0692 19.214,-7.0692 19.241,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1094
+ <polyline points="19.303,-7.0282 19.378,-7.0282 19.378,-7.0076 19.371,-6.9939 19.365,-6.9871 19.351,-6.9802 19.33,-6.9802 19.317,-6.9871 19.303,-7.0008 19.296,-7.0213 19.296,-7.035 19.303,-7.0555 19.317,-7.0692 19.33,-7.0761 19.351,-7.0761 19.365,-7.0692 19.378,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1095
+ <polyline points="19.303,-7.0213 19.371,-7.0213 19.371,-7.0076 19.365,-6.9939 19.351,-6.9871 19.33,-6.9871 19.317,-6.9939 19.31,-7.0008 19.303,-7.0213 19.303,-7.035 19.31,-7.0555 19.317,-7.0624 19.33,-7.0692 19.351,-7.0692 19.365,-7.0624 19.371,-7.0487 19.378,-7.0555 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1096
+ <polyline points="19.467,-6.9049 19.454,-6.9186 19.44,-6.9392 19.426,-6.9665 19.419,-7.0008 19.419,-7.0282 19.426,-7.0624 19.44,-7.0898 19.454,-7.1103 19.467,-7.124 19.474,-7.124 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1097
+ <polyline points="19.467,-6.9049 19.474,-6.9049 19.46,-6.9186 19.447,-6.9392 19.433,-6.9665 19.426,-7.0008 19.426,-7.0282 19.433,-7.0624 19.447,-7.0898 19.46,-7.1103 19.474,-7.124 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1098
+ <polygon points="19.529,-7.0555 19.522,-7.0624 19.522,-7.0692 19.529,-7.0761 19.536,-7.0761 19.543,-7.0692 19.543,-7.0624 19.536,-7.0555 " stroke-width="0.0097205" stroke-linejoin="round" />
1099
+ <polygon points="19.529,-7.0624 19.529,-7.0692 19.536,-7.0692 19.536,-7.0624 " stroke-width="0.0097205" stroke-linejoin="round" />
1100
+ <polygon points="19.604,-7.0555 19.597,-7.0624 19.597,-7.0692 19.604,-7.0761 19.611,-7.0761 19.618,-7.0692 19.618,-7.0624 19.611,-7.0555 " stroke-width="0.0097205" stroke-linejoin="round" />
1101
+ <polygon points="19.604,-7.0624 19.604,-7.0692 19.611,-7.0692 19.611,-7.0624 " stroke-width="0.0097205" stroke-linejoin="round" />
1102
+ <polygon points="19.679,-7.0555 19.673,-7.0624 19.673,-7.0692 19.679,-7.0761 19.686,-7.0761 19.693,-7.0692 19.693,-7.0624 19.686,-7.0555 " stroke-width="0.0097205" stroke-linejoin="round" />
1103
+ <polygon points="19.679,-7.0624 19.679,-7.0692 19.686,-7.0692 19.686,-7.0624 " stroke-width="0.0097205" stroke-linejoin="round" />
1104
+ <polyline points="19.741,-6.9049 19.755,-6.9186 19.768,-6.9392 19.782,-6.9665 19.789,-7.0008 19.789,-7.0282 19.782,-7.0624 19.768,-7.0898 19.755,-7.1103 19.741,-7.124 19.748,-7.124 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1105
+ <polyline points="19.741,-6.9049 19.748,-6.9049 19.762,-6.9186 19.775,-6.9392 19.789,-6.9665 19.796,-7.0008 19.796,-7.0282 19.789,-7.0624 19.775,-7.0898 19.762,-7.1103 19.748,-7.124 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1106
+ <line x1="21" y1="-0.66" x2="21" y2="-7.15" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1107
+ <line x1="20.95" y1="-7.15" x2="21.05" y2="-7.15" stroke-width="0.026576" />
1108
+ <line x1="20.94" y1="-7.48" x2="17.31" y2="-7.48" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1109
+ <polygon points="17.41,-7.505 17.31,-7.48 17.41,-7.455 " stroke-width="0.026576" fill="black" />
1110
+ <polyline points="18.485,-7.3102 18.485,-7.4061 18.492,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1111
+ <polyline points="18.485,-7.3102 18.492,-7.3102 18.492,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1112
+ <polyline points="18.492,-7.3513 18.499,-7.3308 18.512,-7.3171 18.526,-7.3102 18.547,-7.3102 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1113
+ <polyline points="18.492,-7.3513 18.499,-7.3376 18.512,-7.3239 18.526,-7.3171 18.547,-7.3171 18.547,-7.3102 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1114
+ <polyline points="18.581,-7.3582 18.656,-7.3582 18.656,-7.3376 18.649,-7.3239 18.642,-7.3171 18.629,-7.3102 18.608,-7.3102 18.594,-7.3171 18.581,-7.3308 18.574,-7.3513 18.574,-7.365 18.581,-7.3855 18.594,-7.3992 18.608,-7.4061 18.629,-7.4061 18.642,-7.3992 18.656,-7.3855 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1115
+ <polyline points="18.581,-7.3513 18.649,-7.3513 18.649,-7.3376 18.642,-7.3239 18.629,-7.3171 18.608,-7.3171 18.594,-7.3239 18.588,-7.3308 18.581,-7.3513 18.581,-7.365 18.588,-7.3855 18.594,-7.3924 18.608,-7.3992 18.629,-7.3992 18.642,-7.3924 18.649,-7.3787 18.656,-7.3855 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1116
+ <polyline points="18.772,-7.3308 18.766,-7.3171 18.745,-7.3102 18.725,-7.3102 18.704,-7.3171 18.697,-7.3308 18.704,-7.3445 18.718,-7.3513 18.752,-7.365 18.766,-7.3718 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1117
+ <polyline points="18.759,-7.365 18.766,-7.3787 18.766,-7.3855 18.759,-7.3992 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1118
+ <polyline points="18.766,-7.3924 18.745,-7.3992 18.725,-7.3992 18.704,-7.3924 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1119
+ <polyline points="18.711,-7.3992 18.704,-7.3855 18.697,-7.3855 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1120
+ <polyline points="18.772,-7.3308 18.766,-7.3308 18.759,-7.3171 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1121
+ <polyline points="18.766,-7.3239 18.745,-7.3171 18.725,-7.3171 18.704,-7.3239 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1122
+ <polyline points="18.711,-7.3171 18.704,-7.3308 18.711,-7.3445 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1123
+ <polyline points="18.704,-7.3376 18.718,-7.3445 18.752,-7.3582 18.766,-7.365 18.772,-7.3787 18.772,-7.3855 18.766,-7.3992 18.745,-7.4061 18.725,-7.4061 18.704,-7.3992 18.697,-7.3855 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1124
+ <polyline points="18.82,-7.3102 18.82,-7.3787 18.827,-7.3992 18.841,-7.4061 18.861,-7.4061 18.875,-7.3992 18.896,-7.3787 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1125
+ <polyline points="18.82,-7.3102 18.827,-7.3102 18.827,-7.3787 18.834,-7.3924 18.848,-7.3992 18.861,-7.3992 18.875,-7.3924 18.896,-7.3787 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1126
+ <polyline points="18.896,-7.3102 18.896,-7.4061 18.903,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1127
+ <polyline points="18.896,-7.3102 18.903,-7.3102 18.903,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1128
+ <polyline points="18.957,-7.2623 18.957,-7.4061 18.964,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1129
+ <polyline points="18.957,-7.2623 18.964,-7.2623 18.964,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1130
+ <polyline points="19.026,-7.2623 19.026,-7.4061 19.033,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1131
+ <polyline points="19.026,-7.2623 19.033,-7.2623 19.033,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1132
+ <polyline points="19.005,-7.3102 19.053,-7.3102 19.053,-7.3171 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1133
+ <polyline points="19.005,-7.3102 19.005,-7.3171 19.053,-7.3171 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1134
+ <polyline points="19.204,-7.3102 19.32,-7.3102 19.32,-7.3171 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1135
+ <polyline points="19.204,-7.3102 19.204,-7.3171 19.32,-7.3171 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1136
+ <polyline points="19.204,-7.365 19.32,-7.365 19.32,-7.3718 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1137
+ <polyline points="19.204,-7.365 19.204,-7.3718 19.32,-7.3718 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1138
+ <polygon points="19.491,-7.3102 19.484,-7.3171 19.484,-7.3239 19.491,-7.3308 19.498,-7.3308 19.505,-7.3239 19.505,-7.3171 19.498,-7.3102 " stroke-width="0.0097205" stroke-linejoin="round" />
1139
+ <polygon points="19.491,-7.3171 19.491,-7.3239 19.498,-7.3239 19.498,-7.3171 " stroke-width="0.0097205" stroke-linejoin="round" />
1140
+ <polygon points="19.491,-7.3855 19.484,-7.3924 19.484,-7.3992 19.491,-7.4061 19.498,-7.4061 19.505,-7.3992 19.505,-7.3924 19.498,-7.3855 " stroke-width="0.0097205" stroke-linejoin="round" />
1141
+ <polygon points="19.491,-7.3924 19.491,-7.3992 19.498,-7.3992 19.498,-7.3924 " stroke-width="0.0097205" stroke-linejoin="round" />
1142
+ <polygon points="19.587,-7.3102 19.573,-7.3171 19.56,-7.3308 19.553,-7.3513 19.553,-7.365 19.56,-7.3855 19.573,-7.3992 19.587,-7.4061 19.608,-7.4061 19.621,-7.3992 19.635,-7.3855 19.642,-7.365 19.642,-7.3513 19.635,-7.3308 19.621,-7.3171 19.608,-7.3102 " stroke-width="0.0097205" stroke-linejoin="round" />
1143
+ <polygon points="19.587,-7.3171 19.573,-7.3239 19.567,-7.3308 19.56,-7.3513 19.56,-7.365 19.567,-7.3855 19.573,-7.3924 19.587,-7.3992 19.608,-7.3992 19.621,-7.3924 19.628,-7.3855 19.635,-7.365 19.635,-7.3513 19.628,-7.3308 19.621,-7.3239 19.608,-7.3171 " stroke-width="0.0097205" stroke-linejoin="round" />
1144
+ <polyline points="19.69,-7.2623 19.69,-7.4061 19.697,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1145
+ <polyline points="19.69,-7.2623 19.697,-7.2623 19.697,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1146
+ <polyline points="19.772,-7.3102 19.765,-7.3102 19.697,-7.3787 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1147
+ <line x1="19.772" y1="-7.3102" x2="19.697" y2="-7.3855" stroke-width="0.0097205" stroke-linecap="round" />
1148
+ <polyline points="19.717,-7.3582 19.758,-7.4061 19.772,-7.4061 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1149
+ <line x1="19.724" y1="-7.3513" x2="19.772" y2="-7.4061" stroke-width="0.0097205" stroke-linecap="round" />
1150
+ <line x1="20.95" y1="-7.15" x2="20.95" y2="-7.48" stroke-width="0.026576" />
1151
+ <line x1="21.05" y1="-7.15" x2="21.05" y2="-7.48" stroke-width="0.026576" />
1152
+ <line x1="20.95" y1="-7.48" x2="21.05" y2="-7.48" stroke-width="0.026576" />
1153
+ <line x1="17.31" y1="-7.81" x2="18.742" y2="-7.81" stroke-width="0.026576" />
1154
+ <polygon points="18.642,-7.785 18.742,-7.81 18.642,-7.835 " stroke-width="0.026576" fill="black" />
1155
+ <polyline points="17.496,-7.6129 17.386,-7.6745 17.496,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1156
+ <polyline points="17.496,-7.6129 17.496,-7.6197 17.4,-7.6745 17.496,-7.7292 17.496,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1157
+ <polyline points="17.66,-7.6129 17.55,-7.6745 17.66,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1158
+ <polyline points="17.66,-7.6129 17.66,-7.6197 17.564,-7.6745 17.66,-7.7292 17.66,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1159
+ <polyline points="17.79,-7.6608 17.776,-7.6471 17.763,-7.6402 17.742,-7.6402 17.728,-7.6471 17.715,-7.6608 17.708,-7.6813 17.708,-7.695 17.715,-7.7155 17.728,-7.7292 17.742,-7.7361 17.763,-7.7361 17.776,-7.7292 17.79,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1160
+ <polyline points="17.79,-7.6608 17.783,-7.6676 17.776,-7.6539 17.763,-7.6471 17.742,-7.6471 17.728,-7.6539 17.722,-7.6608 17.715,-7.6813 17.715,-7.695 17.722,-7.7155 17.728,-7.7224 17.742,-7.7292 17.763,-7.7292 17.776,-7.7224 17.783,-7.7087 17.79,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1161
+ <polyline points="17.838,-7.6402 17.838,-7.7361 17.845,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1162
+ <polyline points="17.838,-7.6402 17.845,-7.6402 17.845,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1163
+ <polyline points="17.845,-7.6813 17.852,-7.6608 17.865,-7.6471 17.879,-7.6402 17.9,-7.6402 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1164
+ <polyline points="17.845,-7.6813 17.852,-7.6676 17.865,-7.6539 17.879,-7.6471 17.9,-7.6471 17.9,-7.6402 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1165
+ <polyline points="17.934,-7.6882 18.009,-7.6882 18.009,-7.6676 18.002,-7.6539 17.995,-7.6471 17.982,-7.6402 17.961,-7.6402 17.948,-7.6471 17.934,-7.6608 17.927,-7.6813 17.927,-7.695 17.934,-7.7155 17.948,-7.7292 17.961,-7.7361 17.982,-7.7361 17.995,-7.7292 18.009,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1166
+ <polyline points="17.934,-7.6813 18.002,-7.6813 18.002,-7.6676 17.995,-7.6539 17.982,-7.6471 17.961,-7.6471 17.948,-7.6539 17.941,-7.6608 17.934,-7.6813 17.934,-7.695 17.941,-7.7155 17.948,-7.7224 17.961,-7.7292 17.982,-7.7292 17.995,-7.7224 18.002,-7.7087 18.009,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1167
+ <polyline points="18.132,-7.6402 18.132,-7.7361 18.139,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1168
+ <polyline points="18.132,-7.6402 18.139,-7.6402 18.139,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1169
+ <polyline points="18.132,-7.6608 18.119,-7.6471 18.105,-7.6402 18.084,-7.6402 18.071,-7.6471 18.057,-7.6608 18.05,-7.6813 18.05,-7.695 18.057,-7.7155 18.071,-7.7292 18.084,-7.7361 18.105,-7.7361 18.119,-7.7292 18.132,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1170
+ <polyline points="18.132,-7.6608 18.105,-7.6471 18.084,-7.6471 18.071,-7.6539 18.064,-7.6608 18.057,-7.6813 18.057,-7.695 18.064,-7.7155 18.071,-7.7224 18.084,-7.7292 18.105,-7.7292 18.132,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1171
+ <polyline points="18.201,-7.5923 18.201,-7.7361 18.208,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1172
+ <polyline points="18.201,-7.5923 18.208,-7.5923 18.208,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1173
+ <polyline points="18.18,-7.6402 18.228,-7.6402 18.228,-7.6471 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1174
+ <polyline points="18.18,-7.6402 18.18,-7.6471 18.228,-7.6471 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1175
+ <polyline points="18.269,-7.6882 18.345,-7.6882 18.345,-7.6676 18.338,-7.6539 18.331,-7.6471 18.317,-7.6402 18.297,-7.6402 18.283,-7.6471 18.269,-7.6608 18.262,-7.6813 18.262,-7.695 18.269,-7.7155 18.283,-7.7292 18.297,-7.7361 18.317,-7.7361 18.331,-7.7292 18.345,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1176
+ <polyline points="18.269,-7.6813 18.338,-7.6813 18.338,-7.6676 18.331,-7.6539 18.317,-7.6471 18.297,-7.6471 18.283,-7.6539 18.276,-7.6608 18.269,-7.6813 18.269,-7.695 18.276,-7.7155 18.283,-7.7224 18.297,-7.7292 18.317,-7.7292 18.331,-7.7224 18.338,-7.7087 18.345,-7.7155 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1177
+ <polyline points="18.392,-7.6129 18.502,-7.6745 18.392,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1178
+ <polyline points="18.392,-7.6129 18.392,-7.6197 18.488,-7.6745 18.392,-7.7292 18.392,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1179
+ <polyline points="18.557,-7.6129 18.666,-7.6745 18.557,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1180
+ <polyline points="18.557,-7.6129 18.557,-7.6197 18.653,-7.6745 18.557,-7.7292 18.557,-7.7361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1181
+ <line x1="18.843" y1="-7.9" x2="19.392" y2="-7.9" stroke-width="0.026576" />
1182
+ <line x1="19.125" y1="-7.96" x2="19.125" y2="-8.125" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1183
+ <line x1="19.075" y1="-8.125" x2="19.175" y2="-8.125" stroke-width="0.026576" />
1184
+ <line x1="19.065" y1="-8.455" x2="17.31" y2="-8.455" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1185
+ <polygon points="17.41,-8.48 17.31,-8.455 17.41,-8.43 " stroke-width="0.026576" fill="black" />
1186
+ <line x1="19.075" y1="-8.125" x2="19.075" y2="-8.455" stroke-width="0.026576" />
1187
+ <line x1="19.175" y1="-8.125" x2="19.175" y2="-8.455" stroke-width="0.026576" />
1188
+ <line x1="19.075" y1="-8.455" x2="19.175" y2="-8.455" stroke-width="0.026576" />
1189
+ <line x1="17.19" y1="-8.785" x2="13.56" y2="-8.785" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1190
+ <polygon points="13.66,-8.81 13.56,-8.785 13.66,-8.76 " stroke-width="0.026576" fill="black" />
1191
+ <polyline points="15.166,-8.6358 15.159,-8.6221 15.139,-8.6152 15.118,-8.6152 15.098,-8.6221 15.091,-8.6358 15.098,-8.6495 15.111,-8.6563 15.146,-8.67 15.159,-8.6768 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1192
+ <polyline points="15.153,-8.67 15.159,-8.6837 15.159,-8.6905 15.153,-8.7042 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1193
+ <polyline points="15.159,-8.6974 15.139,-8.7042 15.118,-8.7042 15.098,-8.6974 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1194
+ <polyline points="15.105,-8.7042 15.098,-8.6905 15.091,-8.6905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1195
+ <polyline points="15.166,-8.6358 15.159,-8.6358 15.153,-8.6221 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1196
+ <polyline points="15.159,-8.6289 15.139,-8.6221 15.118,-8.6221 15.098,-8.6289 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1197
+ <polyline points="15.105,-8.6221 15.098,-8.6358 15.105,-8.6495 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1198
+ <polyline points="15.098,-8.6426 15.111,-8.6495 15.146,-8.6632 15.159,-8.67 15.166,-8.6837 15.166,-8.6905 15.159,-8.7042 15.139,-8.7111 15.118,-8.7111 15.098,-8.7042 15.091,-8.6905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1199
+ <polyline points="15.214,-8.6152 15.214,-8.7111 15.221,-8.7111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1200
+ <polyline points="15.214,-8.6152 15.221,-8.6152 15.221,-8.7111 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1201
+ <polyline points="15.221,-8.6563 15.228,-8.6358 15.242,-8.6221 15.255,-8.6152 15.276,-8.6152 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1202
+ <polyline points="15.221,-8.6563 15.228,-8.6426 15.242,-8.6289 15.255,-8.6221 15.276,-8.6221 15.276,-8.6152 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1203
+ <polyline points="15.378,-8.6358 15.372,-8.6221 15.351,-8.6152 15.331,-8.6152 15.31,-8.6221 15.303,-8.6358 15.31,-8.6495 15.324,-8.6563 15.358,-8.67 15.372,-8.6768 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1204
+ <polyline points="15.365,-8.67 15.372,-8.6837 15.372,-8.6905 15.365,-8.7042 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1205
+ <polyline points="15.372,-8.6974 15.351,-8.7042 15.331,-8.7042 15.31,-8.6974 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1206
+ <polyline points="15.317,-8.7042 15.31,-8.6905 15.303,-8.6905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1207
+ <polyline points="15.378,-8.6358 15.372,-8.6358 15.365,-8.6221 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1208
+ <polyline points="15.372,-8.6289 15.351,-8.6221 15.331,-8.6221 15.31,-8.6289 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1209
+ <polyline points="15.317,-8.6221 15.31,-8.6358 15.317,-8.6495 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1210
+ <polyline points="15.31,-8.6426 15.324,-8.6495 15.358,-8.6632 15.372,-8.67 15.378,-8.6837 15.378,-8.6905 15.372,-8.7042 15.351,-8.7111 15.331,-8.7111 15.31,-8.7042 15.303,-8.6905 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1211
+ <polyline points="15.536,-8.6152 15.652,-8.6152 15.652,-8.6221 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1212
+ <polyline points="15.536,-8.6152 15.536,-8.6221 15.652,-8.6221 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1213
+ <polyline points="15.536,-8.67 15.652,-8.67 15.652,-8.6768 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1214
+ <polyline points="15.536,-8.67 15.536,-8.6768 15.652,-8.6768 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1215
+ <line x1="17.2" y1="-6.82" x2="17.2" y2="-8.785" stroke-width="0.026576" />
1216
+ <line x1="17.3" y1="-6.82" x2="17.3" y2="-8.785" stroke-width="0.026576" />
1217
+ <line x1="17.2" y1="-8.785" x2="17.3" y2="-8.785" stroke-width="0.026576" />
1218
+ <line x1="17.25" y1="-8.785" x2="17.25" y2="-8.785" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1219
+ <line x1="17.15" y1="-8.985" x2="17.35" y2="-8.785" stroke-width="0.026576" />
1220
+ <line x1="17.15" y1="-8.785" x2="17.35" y2="-8.985" stroke-width="0.026576" />
1221
+ <line x1="13.56" y1="-9.115" x2="15.315" y2="-9.115" stroke-width="0.026576" />
1222
+ <polygon points="15.215,-9.09 15.315,-9.115 15.215,-9.14 " stroke-width="0.026576" fill="black" />
1223
+ <polyline points="13.818,-8.9932 13.893,-8.9932 13.893,-8.9726 13.886,-8.9589 13.88,-8.9521 13.866,-8.9452 13.845,-8.9452 13.832,-8.9521 13.818,-8.9658 13.811,-8.9863 13.811,-9 13.818,-9.0205 13.832,-9.0342 13.845,-9.0411 13.866,-9.0411 13.88,-9.0342 13.893,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1224
+ <polyline points="13.818,-8.9863 13.886,-8.9863 13.886,-8.9726 13.88,-8.9589 13.866,-8.9521 13.845,-8.9521 13.832,-8.9589 13.825,-8.9658 13.818,-8.9863 13.818,-9 13.825,-9.0205 13.832,-9.0274 13.845,-9.0342 13.866,-9.0342 13.88,-9.0274 13.886,-9.0137 13.893,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1225
+ <polyline points="13.941,-8.9452 13.941,-9.0411 13.948,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1226
+ <polyline points="13.941,-8.9452 13.948,-8.9452 13.948,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1227
+ <polyline points="13.948,-8.9726 13.969,-8.9521 13.982,-8.9452 14.003,-8.9452 14.017,-8.9521 14.023,-8.9726 14.023,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1228
+ <polyline points="13.948,-8.9726 13.969,-8.9589 13.982,-8.9521 13.996,-8.9521 14.01,-8.9589 14.017,-8.9726 14.017,-9.0411 14.023,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1229
+ <polyline points="14.153,-8.9658 14.14,-8.9521 14.126,-8.9452 14.105,-8.9452 14.092,-8.9521 14.078,-8.9658 14.071,-8.9863 14.071,-9 14.078,-9.0205 14.092,-9.0342 14.105,-9.0411 14.126,-9.0411 14.14,-9.0342 14.153,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1230
+ <polyline points="14.153,-8.9658 14.147,-8.9726 14.14,-8.9589 14.126,-8.9521 14.105,-8.9521 14.092,-8.9589 14.085,-8.9658 14.078,-8.9863 14.078,-9 14.085,-9.0205 14.092,-9.0274 14.105,-9.0342 14.126,-9.0342 14.14,-9.0274 14.147,-9.0137 14.153,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1231
+ <polygon points="14.229,-8.9452 14.215,-8.9521 14.201,-8.9658 14.194,-8.9863 14.194,-9 14.201,-9.0205 14.215,-9.0342 14.229,-9.0411 14.249,-9.0411 14.263,-9.0342 14.277,-9.0205 14.283,-9 14.283,-8.9863 14.277,-8.9658 14.263,-8.9521 14.249,-8.9452 " stroke-width="0.0097205" stroke-linejoin="round" />
1232
+ <polygon points="14.229,-8.9521 14.215,-8.9589 14.208,-8.9658 14.201,-8.9863 14.201,-9 14.208,-9.0205 14.215,-9.0274 14.229,-9.0342 14.249,-9.0342 14.263,-9.0274 14.27,-9.0205 14.277,-9 14.277,-8.9863 14.27,-8.9658 14.263,-8.9589 14.249,-8.9521 " stroke-width="0.0097205" stroke-linejoin="round" />
1233
+ <polyline points="14.407,-8.8973 14.407,-9.0411 14.414,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1234
+ <polyline points="14.407,-8.8973 14.414,-8.8973 14.414,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1235
+ <polyline points="14.407,-8.9658 14.393,-8.9521 14.379,-8.9452 14.359,-8.9452 14.345,-8.9521 14.331,-8.9658 14.325,-8.9863 14.325,-9 14.331,-9.0205 14.345,-9.0342 14.359,-9.0411 14.379,-9.0411 14.393,-9.0342 14.407,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1236
+ <polyline points="14.407,-8.9658 14.379,-8.9521 14.359,-8.9521 14.345,-8.9589 14.338,-8.9658 14.331,-8.9863 14.331,-9 14.338,-9.0205 14.345,-9.0274 14.359,-9.0342 14.379,-9.0342 14.407,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1237
+ <polyline points="14.468,-8.9932 14.544,-8.9932 14.544,-8.9726 14.537,-8.9589 14.53,-8.9521 14.516,-8.9452 14.496,-8.9452 14.482,-8.9521 14.468,-8.9658 14.461,-8.9863 14.461,-9 14.468,-9.0205 14.482,-9.0342 14.496,-9.0411 14.516,-9.0411 14.53,-9.0342 14.544,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1238
+ <polyline points="14.468,-8.9863 14.537,-8.9863 14.537,-8.9726 14.53,-8.9589 14.516,-8.9521 14.496,-8.9521 14.482,-8.9589 14.475,-8.9658 14.468,-8.9863 14.468,-9 14.475,-9.0205 14.482,-9.0274 14.496,-9.0342 14.516,-9.0342 14.53,-9.0274 14.537,-9.0137 14.544,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1239
+ <polyline points="14.633,-8.8699 14.619,-8.8836 14.605,-8.9042 14.592,-8.9315 14.585,-8.9658 14.585,-8.9932 14.592,-9.0274 14.605,-9.0548 14.619,-9.0753 14.633,-9.089 14.639,-9.089 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1240
+ <polyline points="14.633,-8.8699 14.639,-8.8699 14.626,-8.8836 14.612,-8.9042 14.598,-8.9315 14.592,-8.9658 14.592,-8.9932 14.598,-9.0274 14.612,-9.0548 14.626,-9.0753 14.639,-9.089 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1241
+ <polyline points="14.756,-8.9658 14.749,-8.9521 14.728,-8.9452 14.708,-8.9452 14.687,-8.9521 14.681,-8.9658 14.687,-8.9795 14.701,-8.9863 14.735,-9 14.749,-9.0068 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1242
+ <polyline points="14.742,-9 14.749,-9.0137 14.749,-9.0205 14.742,-9.0342 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1243
+ <polyline points="14.749,-9.0274 14.728,-9.0342 14.708,-9.0342 14.687,-9.0274 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1244
+ <polyline points="14.694,-9.0342 14.687,-9.0205 14.681,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1245
+ <polyline points="14.756,-8.9658 14.749,-8.9658 14.742,-8.9521 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1246
+ <polyline points="14.749,-8.9589 14.728,-8.9521 14.708,-8.9521 14.687,-8.9589 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1247
+ <polyline points="14.694,-8.9521 14.687,-8.9658 14.694,-8.9795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1248
+ <polyline points="14.687,-8.9726 14.701,-8.9795 14.735,-8.9932 14.749,-9 14.756,-9.0137 14.756,-9.0205 14.749,-9.0342 14.728,-9.0411 14.708,-9.0411 14.687,-9.0342 14.681,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1249
+ <polyline points="14.804,-8.9452 14.804,-9.0411 14.811,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1250
+ <polyline points="14.804,-8.9452 14.811,-8.9452 14.811,-9.0411 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1251
+ <polyline points="14.811,-8.9863 14.817,-8.9658 14.831,-8.9521 14.845,-8.9452 14.865,-8.9452 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1252
+ <polyline points="14.811,-8.9863 14.817,-8.9726 14.831,-8.9589 14.845,-8.9521 14.865,-8.9521 14.865,-8.9452 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1253
+ <polyline points="14.968,-8.9658 14.961,-8.9521 14.941,-8.9452 14.92,-8.9452 14.9,-8.9521 14.893,-8.9658 14.9,-8.9795 14.913,-8.9863 14.947,-9 14.961,-9.0068 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1254
+ <polyline points="14.954,-9 14.961,-9.0137 14.961,-9.0205 14.954,-9.0342 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1255
+ <polyline points="14.961,-9.0274 14.941,-9.0342 14.92,-9.0342 14.9,-9.0274 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1256
+ <polyline points="14.906,-9.0342 14.9,-9.0205 14.893,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1257
+ <polyline points="14.968,-8.9658 14.961,-8.9658 14.954,-8.9521 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1258
+ <polyline points="14.961,-8.9589 14.941,-8.9521 14.92,-8.9521 14.9,-8.9589 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1259
+ <polyline points="14.906,-8.9521 14.9,-8.9658 14.906,-8.9795 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1260
+ <polyline points="14.9,-8.9726 14.913,-8.9795 14.947,-8.9932 14.961,-9 14.968,-9.0137 14.968,-9.0205 14.961,-9.0342 14.941,-9.0411 14.92,-9.0411 14.9,-9.0342 14.893,-9.0205 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1261
+ <polyline points="15.009,-8.8699 15.023,-8.8836 15.036,-8.9042 15.05,-8.9315 15.057,-8.9658 15.057,-8.9932 15.05,-9.0274 15.036,-9.0548 15.023,-9.0753 15.009,-9.089 15.016,-9.089 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1262
+ <polyline points="15.009,-8.8699 15.016,-8.8699 15.03,-8.8836 15.043,-8.9042 15.057,-8.9315 15.064,-8.9658 15.064,-8.9932 15.057,-9.0274 15.043,-9.0548 15.03,-9.0753 15.016,-9.089 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1263
+ <line x1="15.375" y1="-6.49" x2="15.375" y2="-9.115" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1264
+ <line x1="15.325" y1="-9.115" x2="15.425" y2="-9.115" stroke-width="0.026576" />
1265
+ <line x1="15.315" y1="-9.445" x2="13.56" y2="-9.445" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1266
+ <polygon points="13.66,-9.47 13.56,-9.445 13.66,-9.42 " stroke-width="0.026576" fill="black" />
1267
+ <polyline points="14.256,-9.2273 14.256,-9.3711 14.263,-9.3711 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1268
+ <polyline points="14.256,-9.2273 14.263,-9.2273 14.263,-9.3711 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1269
+ <polyline points="14.263,-9.2958 14.277,-9.2821 14.29,-9.2752 14.311,-9.2752 14.325,-9.2821 14.338,-9.2958 14.345,-9.3163 14.345,-9.33 14.338,-9.3505 14.325,-9.3642 14.311,-9.3711 14.29,-9.3711 14.277,-9.3642 14.263,-9.3505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1270
+ <polyline points="14.263,-9.2958 14.29,-9.2821 14.311,-9.2821 14.325,-9.2889 14.331,-9.2958 14.338,-9.3163 14.338,-9.33 14.331,-9.3505 14.325,-9.3574 14.311,-9.3642 14.29,-9.3642 14.263,-9.3505 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1271
+ <polyline points="14.503,-9.2752 14.619,-9.2752 14.619,-9.2821 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1272
+ <polyline points="14.503,-9.2752 14.503,-9.2821 14.619,-9.2821 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1273
+ <polyline points="14.503,-9.33 14.619,-9.33 14.619,-9.3368 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1274
+ <polyline points="14.503,-9.33 14.503,-9.3368 14.619,-9.3368 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1275
+ <line x1="15.325" y1="-9.115" x2="15.325" y2="-9.445" stroke-width="0.026576" />
1276
+ <line x1="15.425" y1="-9.115" x2="15.425" y2="-9.445" stroke-width="0.026576" />
1277
+ <line x1="15.325" y1="-9.445" x2="15.425" y2="-9.445" stroke-width="0.026576" />
1278
+ <line x1="19.125" y1="-8.455" x2="19.125" y2="-9.445" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1279
+ <line x1="19.025" y1="-9.645" x2="19.225" y2="-9.445" stroke-width="0.026576" />
1280
+ <line x1="19.025" y1="-9.445" x2="19.225" y2="-9.645" stroke-width="0.026576" />
1281
+ <line x1="13.44" y1="-9.775" x2="11.685" y2="-9.775" stroke-width="0.026576" />
1282
+ <polygon points="11.785,-9.8 11.685,-9.775 11.785,-9.75 " stroke-width="0.026576" fill="black" />
1283
+ <line x1="12.076" y1="-9.7148" x2="12.2" y2="-9.7148" stroke-width="0.0097205" stroke-linecap="round" />
1284
+ <line x1="12.234" y1="-9.6052" x2="12.268" y2="-9.7011" stroke-width="0.0097205" stroke-linecap="round" />
1285
+ <polyline points="12.234,-9.6052 12.241,-9.6052 12.268,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1286
+ <line x1="12.296" y1="-9.6052" x2="12.268" y2="-9.6805" stroke-width="0.0097205" stroke-linecap="round" />
1287
+ <line x1="12.296" y1="-9.6258" x2="12.268" y2="-9.7011" stroke-width="0.0097205" stroke-linecap="round" />
1288
+ <line x1="12.296" y1="-9.6258" x2="12.323" y2="-9.7011" stroke-width="0.0097205" stroke-linecap="round" />
1289
+ <line x1="12.296" y1="-9.6052" x2="12.323" y2="-9.6805" stroke-width="0.0097205" stroke-linecap="round" />
1290
+ <polyline points="12.357,-9.6052 12.35,-9.6052 12.323,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1291
+ <line x1="12.357" y1="-9.6052" x2="12.323" y2="-9.7011" stroke-width="0.0097205" stroke-linecap="round" />
1292
+ <polyline points="12.405,-9.6052 12.405,-9.7011 12.412,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1293
+ <polyline points="12.405,-9.6052 12.412,-9.6052 12.412,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1294
+ <polyline points="12.412,-9.6463 12.419,-9.6258 12.432,-9.6121 12.446,-9.6052 12.467,-9.6052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1295
+ <polyline points="12.412,-9.6463 12.419,-9.6326 12.432,-9.6189 12.446,-9.6121 12.467,-9.6121 12.467,-9.6052 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1296
+ <polygon points="12.501,-9.5573 12.494,-9.5642 12.494,-9.571 12.501,-9.5779 12.508,-9.5779 12.515,-9.571 12.515,-9.5642 12.508,-9.5573 " stroke-width="0.0097205" stroke-linejoin="round" />
1297
+ <polygon points="12.501,-9.5642 12.501,-9.571 12.508,-9.571 12.508,-9.5642 " stroke-width="0.0097205" stroke-linejoin="round" />
1298
+ <polyline points="12.501,-9.6052 12.501,-9.7011 12.508,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1299
+ <polyline points="12.501,-9.6052 12.508,-9.6052 12.508,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1300
+ <polyline points="12.569,-9.5573 12.569,-9.7011 12.576,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1301
+ <polyline points="12.569,-9.5573 12.576,-9.5573 12.576,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1302
+ <polyline points="12.549,-9.6052 12.597,-9.6052 12.597,-9.6121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1303
+ <polyline points="12.549,-9.6052 12.549,-9.6121 12.597,-9.6121 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1304
+ <polyline points="12.638,-9.6532 12.713,-9.6532 12.713,-9.6326 12.706,-9.6189 12.699,-9.6121 12.686,-9.6052 12.665,-9.6052 12.651,-9.6121 12.638,-9.6258 12.631,-9.6463 12.631,-9.66 12.638,-9.6805 12.651,-9.6942 12.665,-9.7011 12.686,-9.7011 12.699,-9.6942 12.713,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1305
+ <polyline points="12.638,-9.6463 12.706,-9.6463 12.706,-9.6326 12.699,-9.6189 12.686,-9.6121 12.665,-9.6121 12.651,-9.6189 12.645,-9.6258 12.638,-9.6463 12.638,-9.66 12.645,-9.6805 12.651,-9.6874 12.665,-9.6942 12.686,-9.6942 12.699,-9.6874 12.706,-9.6737 12.713,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1306
+ <polyline points="12.802,-9.5299 12.788,-9.5436 12.775,-9.5642 12.761,-9.5915 12.754,-9.6258 12.754,-9.6532 12.761,-9.6874 12.775,-9.7148 12.788,-9.7353 12.802,-9.749 12.809,-9.749 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1307
+ <polyline points="12.802,-9.5299 12.809,-9.5299 12.795,-9.5436 12.782,-9.5642 12.768,-9.5915 12.761,-9.6258 12.761,-9.6532 12.768,-9.6874 12.782,-9.7148 12.795,-9.7353 12.809,-9.749 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1308
+ <polyline points="12.857,-9.5573 12.857,-9.7011 12.864,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1309
+ <polyline points="12.857,-9.5573 12.864,-9.5573 12.864,-9.7011 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1310
+ <polyline points="12.864,-9.6258 12.877,-9.6121 12.891,-9.6052 12.912,-9.6052 12.925,-9.6121 12.939,-9.6258 12.946,-9.6463 12.946,-9.66 12.939,-9.6805 12.925,-9.6942 12.912,-9.7011 12.891,-9.7011 12.877,-9.6942 12.864,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1311
+ <polyline points="12.864,-9.6258 12.891,-9.6121 12.912,-9.6121 12.925,-9.6189 12.932,-9.6258 12.939,-9.6463 12.939,-9.66 12.932,-9.6805 12.925,-9.6874 12.912,-9.6942 12.891,-9.6942 12.864,-9.6805 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1312
+ <polyline points="12.987,-9.5299 13.001,-9.5436 13.014,-9.5642 13.028,-9.5915 13.035,-9.6258 13.035,-9.6532 13.028,-9.6874 13.014,-9.7148 13.001,-9.7353 12.987,-9.749 12.994,-9.749 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1313
+ <polyline points="12.987,-9.5299 12.994,-9.5299 13.007,-9.5436 13.021,-9.5642 13.035,-9.5915 13.042,-9.6258 13.042,-9.6532 13.035,-9.6874 13.021,-9.7148 13.007,-9.7353 12.994,-9.749 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1314
+ <line x1="11.625" y1="-4.855" x2="11.625" y2="-9.775" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1315
+ <line x1="11.575" y1="-9.775" x2="11.675" y2="-9.775" stroke-width="0.026576" />
1316
+ <line x1="11.685" y1="-10.105" x2="13.44" y2="-10.105" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1317
+ <polygon points="13.34,-10.08 13.44,-10.105 13.34,-10.13 " stroke-width="0.026576" fill="black" />
1318
+ <line x1="11.575" y1="-9.775" x2="11.575" y2="-10.105" stroke-width="0.026576" />
1319
+ <line x1="11.675" y1="-9.775" x2="11.675" y2="-10.105" stroke-width="0.026576" />
1320
+ <line x1="11.575" y1="-10.105" x2="11.675" y2="-10.105" stroke-width="0.026576" />
1321
+ <line x1="13.45" y1="-4.195" x2="13.45" y2="-10.105" stroke-width="0.026576" />
1322
+ <line x1="13.55" y1="-4.195" x2="13.55" y2="-10.105" stroke-width="0.026576" />
1323
+ <line x1="13.45" y1="-10.105" x2="13.55" y2="-10.105" stroke-width="0.026576" />
1324
+ <line x1="6.06" y1="-10.435" x2="11.565" y2="-10.435" stroke-width="0.026576" />
1325
+ <polygon points="11.465,-10.41 11.565,-10.435 11.465,-10.46 " stroke-width="0.026576" fill="black" />
1326
+ <line x1="8.4086" y1="-10.375" x2="8.5318" y2="-10.375" stroke-width="0.0097205" stroke-linecap="round" />
1327
+ <polyline points="8.5729,-10.265 8.5729,-10.361 8.5798,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1328
+ <polyline points="8.5729,-10.265 8.5798,-10.265 8.5798,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1329
+ <polyline points="8.5798,-10.306 8.5866,-10.286 8.6003,-10.272 8.614,-10.265 8.6345,-10.265 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1330
+ <polyline points="8.5798,-10.306 8.5866,-10.293 8.6003,-10.279 8.614,-10.272 8.6345,-10.272 8.6345,-10.265 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1331
+ <polyline points="8.6687,-10.313 8.744,-10.313 8.744,-10.293 8.7372,-10.279 8.7304,-10.272 8.7167,-10.265 8.6961,-10.265 8.6824,-10.272 8.6687,-10.286 8.6619,-10.306 8.6619,-10.32 8.6687,-10.341 8.6824,-10.354 8.6961,-10.361 8.7167,-10.361 8.7304,-10.354 8.744,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1332
+ <polyline points="8.6687,-10.306 8.7372,-10.306 8.7372,-10.293 8.7304,-10.279 8.7167,-10.272 8.6961,-10.272 8.6824,-10.279 8.6756,-10.286 8.6687,-10.306 8.6687,-10.32 8.6756,-10.341 8.6824,-10.347 8.6961,-10.354 8.7167,-10.354 8.7304,-10.347 8.7372,-10.334 8.744,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1333
+ <polyline points="8.8673,-10.265 8.8673,-10.361 8.8741,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1334
+ <polyline points="8.8673,-10.265 8.8741,-10.265 8.8741,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1335
+ <polyline points="8.8673,-10.286 8.8536,-10.272 8.8399,-10.265 8.8193,-10.265 8.8057,-10.272 8.792,-10.286 8.7851,-10.306 8.7851,-10.32 8.792,-10.341 8.8057,-10.354 8.8193,-10.361 8.8399,-10.361 8.8536,-10.354 8.8673,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1336
+ <polyline points="8.8673,-10.286 8.8399,-10.272 8.8193,-10.272 8.8057,-10.279 8.7988,-10.286 8.792,-10.306 8.792,-10.32 8.7988,-10.341 8.8057,-10.347 8.8193,-10.354 8.8399,-10.354 8.8673,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1337
+ <polyline points="9.0042,-10.217 9.0042,-10.361 9.011,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1338
+ <polyline points="9.0042,-10.217 9.011,-10.217 9.011,-10.361 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1339
+ <polyline points="9.0042,-10.286 8.9905,-10.272 8.9768,-10.265 8.9563,-10.265 8.9426,-10.272 8.9289,-10.286 8.922,-10.306 8.922,-10.32 8.9289,-10.341 8.9426,-10.354 8.9563,-10.361 8.9768,-10.361 8.9905,-10.354 9.0042,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1340
+ <polyline points="9.0042,-10.286 8.9768,-10.272 8.9563,-10.272 8.9426,-10.279 8.9357,-10.286 8.9289,-10.306 8.9289,-10.32 8.9357,-10.341 8.9426,-10.347 8.9563,-10.354 8.9768,-10.354 9.0042,-10.341 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1341
+ <polyline points="9.1069,-10.19 9.0932,-10.204 9.0795,-10.224 9.0658,-10.252 9.0589,-10.286 9.0589,-10.313 9.0658,-10.347 9.0795,-10.375 9.0932,-10.395 9.1069,-10.409 9.1137,-10.409 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1342
+ <polyline points="9.1069,-10.19 9.1137,-10.19 9.1,-10.204 9.0863,-10.224 9.0726,-10.252 9.0658,-10.286 9.0658,-10.313 9.0726,-10.347 9.0863,-10.375 9.1,-10.395 9.1137,-10.409 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1343
+ <polyline points="9.1548,-10.19 9.1685,-10.204 9.1822,-10.224 9.1958,-10.252 9.2027,-10.286 9.2027,-10.313 9.1958,-10.347 9.1822,-10.375 9.1685,-10.395 9.1548,-10.409 9.1616,-10.409 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1344
+ <polyline points="9.1548,-10.19 9.1616,-10.19 9.1753,-10.204 9.189,-10.224 9.2027,-10.252 9.2095,-10.286 9.2095,-10.313 9.2027,-10.347 9.189,-10.375 9.1753,-10.395 9.1616,-10.409 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1345
+ <line x1="11.625" y1="-10.105" x2="11.625" y2="-10.435" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1346
+ <line x1="11.575" y1="-10.435" x2="11.675" y2="-10.435" stroke-width="0.026576" />
1347
+ <line x1="11.565" y1="-10.765" x2="6.06" y2="-10.765" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1348
+ <polygon points="6.16,-10.79 6.06,-10.765 6.16,-10.74 " stroke-width="0.026576" fill="black" />
1349
+ <polyline points="8.5763,-10.547 8.5763,-10.691 8.5832,-10.691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1350
+ <polyline points="8.5763,-10.547 8.5832,-10.547 8.5832,-10.691 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1351
+ <polyline points="8.5832,-10.616 8.5969,-10.602 8.6106,-10.595 8.6311,-10.595 8.6448,-10.602 8.6585,-10.616 8.6653,-10.636 8.6653,-10.65 8.6585,-10.671 8.6448,-10.684 8.6311,-10.691 8.6106,-10.691 8.5969,-10.684 8.5832,-10.671 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1352
+ <polyline points="8.5832,-10.616 8.6106,-10.602 8.6311,-10.602 8.6448,-10.609 8.6516,-10.616 8.6585,-10.636 8.6585,-10.65 8.6516,-10.671 8.6448,-10.677 8.6311,-10.684 8.6106,-10.684 8.5832,-10.671 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1353
+ <polyline points="8.8228,-10.595 8.9391,-10.595 8.9391,-10.602 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1354
+ <polyline points="8.8228,-10.595 8.8228,-10.602 8.9391,-10.602 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1355
+ <polyline points="8.8228,-10.65 8.9391,-10.65 8.9391,-10.657 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1356
+ <polyline points="8.8228,-10.65 8.8228,-10.657 8.9391,-10.657 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1357
+ <line x1="11.575" y1="-10.435" x2="11.575" y2="-10.765" stroke-width="0.026576" />
1358
+ <line x1="11.675" y1="-10.435" x2="11.675" y2="-10.765" stroke-width="0.026576" />
1359
+ <line x1="11.575" y1="-10.765" x2="11.675" y2="-10.765" stroke-width="0.026576" />
1360
+ <line x1="6.06" y1="-11.095" x2="7.815" y2="-11.095" stroke-width="0.026576" />
1361
+ <polygon points="7.715,-11.07 7.815,-11.095 7.715,-11.12 " stroke-width="0.026576" fill="black" />
1362
+ <polyline points="6.4891,-10.877 6.4891,-11.021 6.496,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1363
+ <polyline points="6.4891,-10.877 6.496,-10.877 6.496,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1364
+ <polyline points="6.4891,-10.946 6.4754,-10.932 6.4617,-10.925 6.4412,-10.925 6.4275,-10.932 6.4138,-10.946 6.407,-10.966 6.407,-10.98 6.4138,-11.001 6.4275,-11.014 6.4412,-11.021 6.4617,-11.021 6.4754,-11.014 6.4891,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1365
+ <polyline points="6.4891,-10.946 6.4617,-10.932 6.4412,-10.932 6.4275,-10.939 6.4207,-10.946 6.4138,-10.966 6.4138,-10.98 6.4207,-11.001 6.4275,-11.007 6.4412,-11.014 6.4617,-11.014 6.4891,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1366
+ <polyline points="6.5507,-10.973 6.626,-10.973 6.626,-10.953 6.6192,-10.939 6.6123,-10.932 6.5987,-10.925 6.5781,-10.925 6.5644,-10.932 6.5507,-10.946 6.5439,-10.966 6.5439,-10.98 6.5507,-11.001 6.5644,-11.014 6.5781,-11.021 6.5987,-11.021 6.6123,-11.014 6.626,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1367
+ <polyline points="6.5507,-10.966 6.6192,-10.966 6.6192,-10.953 6.6123,-10.939 6.5986,-10.932 6.5781,-10.932 6.5644,-10.939 6.5576,-10.946 6.5507,-10.966 6.5507,-10.98 6.5576,-11.001 6.5644,-11.007 6.5781,-11.014 6.5986,-11.014 6.6123,-11.007 6.6192,-10.994 6.626,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1368
+ <polyline points="6.7492,-10.946 6.7356,-10.932 6.7219,-10.925 6.7013,-10.925 6.6876,-10.932 6.674,-10.946 6.6671,-10.966 6.6671,-10.98 6.674,-11.001 6.6876,-11.014 6.7013,-11.021 6.7219,-11.021 6.7356,-11.014 6.7492,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1369
+ <polyline points="6.7492,-10.946 6.7424,-10.953 6.7356,-10.939 6.7219,-10.932 6.7013,-10.932 6.6876,-10.939 6.6808,-10.946 6.6739,-10.966 6.6739,-10.98 6.6808,-11.001 6.6876,-11.007 6.7013,-11.014 6.7219,-11.014 6.7356,-11.007 6.7424,-10.994 6.7492,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1370
+ <polygon points="6.8245,-10.925 6.8109,-10.932 6.7972,-10.946 6.7903,-10.966 6.7903,-10.98 6.7972,-11.001 6.8109,-11.014 6.8245,-11.021 6.8451,-11.021 6.8588,-11.014 6.8725,-11.001 6.8793,-10.98 6.8793,-10.966 6.8725,-10.946 6.8588,-10.932 6.8451,-10.925 " stroke-width="0.0097205" stroke-linejoin="round" />
1371
+ <polygon points="6.8245,-10.932 6.8109,-10.939 6.804,-10.946 6.7972,-10.966 6.7972,-10.98 6.804,-11.001 6.8109,-11.007 6.8245,-11.014 6.8451,-11.014 6.8588,-11.007 6.8656,-11.001 6.8725,-10.98 6.8725,-10.966 6.8656,-10.946 6.8588,-10.939 6.8451,-10.932 " stroke-width="0.0097205" stroke-linejoin="round" />
1372
+ <polyline points="7.0025,-10.877 7.0025,-11.021 7.0094,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1373
+ <polyline points="7.0025,-10.877 7.0094,-10.877 7.0094,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1374
+ <polyline points="7.0025,-10.946 6.9888,-10.932 6.9752,-10.925 6.9546,-10.925 6.9409,-10.932 6.9272,-10.946 6.9204,-10.966 6.9204,-10.98 6.9272,-11.001 6.9409,-11.014 6.9546,-11.021 6.9752,-11.021 6.9888,-11.014 7.0025,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1375
+ <polyline points="7.0025,-10.946 6.9751,-10.932 6.9546,-10.932 6.9409,-10.939 6.9341,-10.946 6.9272,-10.966 6.9272,-10.98 6.9341,-11.001 6.9409,-11.007 6.9546,-11.014 6.9751,-11.014 7.0025,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1376
+ <polyline points="7.0641,-10.973 7.1394,-10.973 7.1394,-10.953 7.1326,-10.939 7.1257,-10.932 7.1121,-10.925 7.0915,-10.925 7.0778,-10.932 7.0641,-10.946 7.0573,-10.966 7.0573,-10.98 7.0641,-11.001 7.0778,-11.014 7.0915,-11.021 7.1121,-11.021 7.1257,-11.014 7.1394,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1377
+ <polyline points="7.0641,-10.966 7.1326,-10.966 7.1326,-10.953 7.1257,-10.939 7.1121,-10.932 7.0915,-10.932 7.0778,-10.939 7.071,-10.946 7.0641,-10.966 7.0641,-10.98 7.071,-11.001 7.0778,-11.007 7.0915,-11.014 7.1121,-11.014 7.1257,-11.007 7.1326,-10.994 7.1394,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1378
+ <polyline points="7.2284,-10.85 7.2147,-10.864 7.201,-10.884 7.1874,-10.912 7.1805,-10.946 7.1805,-10.973 7.1874,-11.007 7.201,-11.035 7.2147,-11.055 7.2284,-11.069 7.2353,-11.069 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1379
+ <polyline points="7.2284,-10.85 7.2353,-10.85 7.2216,-10.864 7.2079,-10.884 7.1942,-10.912 7.1874,-10.946 7.1874,-10.973 7.1942,-11.007 7.2079,-11.035 7.2216,-11.055 7.2353,-11.069 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1380
+ <polyline points="7.2832,-10.877 7.2832,-11.021 7.29,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1381
+ <polyline points="7.2832,-10.877 7.29,-10.877 7.29,-11.021 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1382
+ <polyline points="7.29,-10.946 7.3037,-10.932 7.3174,-10.925 7.338,-10.925 7.3516,-10.932 7.3653,-10.946 7.3722,-10.966 7.3722,-10.98 7.3653,-11.001 7.3516,-11.014 7.338,-11.021 7.3174,-11.021 7.3037,-11.014 7.29,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1383
+ <polyline points="7.29,-10.946 7.3174,-10.932 7.338,-10.932 7.3516,-10.939 7.3585,-10.946 7.3653,-10.966 7.3653,-10.98 7.3585,-11.001 7.3516,-11.007 7.338,-11.014 7.3174,-11.014 7.29,-11.001 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1384
+ <polyline points="7.4133,-10.85 7.4269,-10.864 7.4406,-10.884 7.4543,-10.912 7.4612,-10.946 7.4612,-10.973 7.4543,-11.007 7.4406,-11.035 7.4269,-11.055 7.4133,-11.069 7.4201,-11.069 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1385
+ <polyline points="7.4133,-10.85 7.4201,-10.85 7.4338,-10.864 7.4475,-10.884 7.4612,-10.912 7.468,-10.946 7.468,-10.973 7.4612,-11.007 7.4475,-11.035 7.4338,-11.055 7.4201,-11.069 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1386
+ <line x1="7.875" y1="-3.535" x2="7.875" y2="-11.095" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1387
+ <line x1="7.825" y1="-11.095" x2="7.925" y2="-11.095" stroke-width="0.026576" />
1388
+ <line x1="7.935" y1="-11.425" x2="9.3675" y2="-11.425" stroke-width="0.026576" />
1389
+ <polygon points="9.2675,-11.4 9.3675,-11.425 9.2675,-11.45 " stroke-width="0.026576" fill="black" />
1390
+ <polyline points="8.1207,-11.228 8.0112,-11.289 8.1207,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1391
+ <polyline points="8.1207,-11.228 8.1207,-11.235 8.0249,-11.289 8.1207,-11.344 8.1207,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1392
+ <polyline points="8.285,-11.228 8.1755,-11.289 8.285,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1393
+ <polyline points="8.285,-11.228 8.285,-11.235 8.1892,-11.289 8.285,-11.344 8.285,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1394
+ <polyline points="8.4151,-11.276 8.4014,-11.262 8.3877,-11.255 8.3672,-11.255 8.3535,-11.262 8.3398,-11.276 8.3329,-11.296 8.3329,-11.31 8.3398,-11.331 8.3535,-11.344 8.3672,-11.351 8.3877,-11.351 8.4014,-11.344 8.4151,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1395
+ <polyline points="8.4151,-11.276 8.4082,-11.283 8.4014,-11.269 8.3877,-11.262 8.3672,-11.262 8.3535,-11.269 8.3466,-11.276 8.3398,-11.296 8.3398,-11.31 8.3466,-11.331 8.3535,-11.337 8.3672,-11.344 8.3877,-11.344 8.4014,-11.337 8.4082,-11.324 8.4151,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1396
+ <polyline points="8.463,-11.255 8.463,-11.351 8.4698,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1397
+ <polyline points="8.463,-11.255 8.4698,-11.255 8.4698,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1398
+ <polyline points="8.4698,-11.296 8.4767,-11.276 8.4904,-11.262 8.5041,-11.255 8.5246,-11.255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1399
+ <polyline points="8.4698,-11.296 8.4767,-11.283 8.4904,-11.269 8.5041,-11.262 8.5246,-11.262 8.5246,-11.255 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1400
+ <polyline points="8.5588,-11.303 8.6341,-11.303 8.6341,-11.283 8.6273,-11.269 8.6204,-11.262 8.6068,-11.255 8.5862,-11.255 8.5725,-11.262 8.5588,-11.276 8.552,-11.296 8.552,-11.31 8.5588,-11.331 8.5725,-11.344 8.5862,-11.351 8.6068,-11.351 8.6204,-11.344 8.6341,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1401
+ <polyline points="8.5588,-11.296 8.6273,-11.296 8.6273,-11.283 8.6204,-11.269 8.6068,-11.262 8.5862,-11.262 8.5725,-11.269 8.5657,-11.276 8.5588,-11.296 8.5588,-11.31 8.5657,-11.331 8.5725,-11.337 8.5862,-11.344 8.6068,-11.344 8.6204,-11.337 8.6273,-11.324 8.6341,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1402
+ <polyline points="8.7574,-11.255 8.7574,-11.351 8.7642,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1403
+ <polyline points="8.7574,-11.255 8.7642,-11.255 8.7642,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1404
+ <polyline points="8.7574,-11.276 8.7437,-11.262 8.73,-11.255 8.7094,-11.255 8.6957,-11.262 8.6821,-11.276 8.6752,-11.296 8.6752,-11.31 8.6821,-11.331 8.6957,-11.344 8.7094,-11.351 8.73,-11.351 8.7437,-11.344 8.7574,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1405
+ <polyline points="8.7574,-11.276 8.73,-11.262 8.7094,-11.262 8.6957,-11.269 8.6889,-11.276 8.6821,-11.296 8.6821,-11.31 8.6889,-11.331 8.6957,-11.337 8.7094,-11.344 8.73,-11.344 8.7574,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1406
+ <polyline points="8.8258,-11.207 8.8258,-11.351 8.8327,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1407
+ <polyline points="8.8258,-11.207 8.8327,-11.207 8.8327,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1408
+ <polyline points="8.8053,-11.255 8.8532,-11.255 8.8532,-11.262 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1409
+ <polyline points="8.8053,-11.255 8.8053,-11.262 8.8532,-11.262 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1410
+ <polyline points="8.8943,-11.303 8.9696,-11.303 8.9696,-11.283 8.9627,-11.269 8.9559,-11.262 8.9422,-11.255 8.9216,-11.255 8.908,-11.262 8.8943,-11.276 8.8874,-11.296 8.8874,-11.31 8.8943,-11.331 8.908,-11.344 8.9216,-11.351 8.9422,-11.351 8.9559,-11.344 8.9696,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1411
+ <polyline points="8.8943,-11.296 8.9627,-11.296 8.9627,-11.283 8.9559,-11.269 8.9422,-11.262 8.9216,-11.262 8.908,-11.269 8.9011,-11.276 8.8943,-11.296 8.8943,-11.31 8.9011,-11.331 8.908,-11.337 8.9216,-11.344 8.9422,-11.344 8.9559,-11.337 8.9627,-11.324 8.9696,-11.331 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1412
+ <polyline points="9.0175,-11.228 9.127,-11.289 9.0175,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1413
+ <polyline points="9.0175,-11.228 9.0175,-11.235 9.1133,-11.289 9.0175,-11.344 9.0175,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1414
+ <polyline points="9.1818,-11.228 9.2913,-11.289 9.1818,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1415
+ <polyline points="9.1818,-11.228 9.1818,-11.235 9.2776,-11.289 9.1818,-11.344 9.1818,-11.351 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1416
+ <line x1="9.4675" y1="-11.515" x2="10.018" y2="-11.515" stroke-width="0.026576" />
1417
+ <line x1="9.75" y1="-11.575" x2="9.75" y2="-11.74" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1418
+ <line x1="9.7" y1="-11.74" x2="9.8" y2="-11.74" stroke-width="0.026576" />
1419
+ <line x1="9.69" y1="-12.07" x2="7.935" y2="-12.07" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1420
+ <polygon points="8.035,-12.095 7.935,-12.07 8.035,-12.045 " stroke-width="0.026576" fill="black" />
1421
+ <line x1="9.7" y1="-11.74" x2="9.7" y2="-12.07" stroke-width="0.026576" />
1422
+ <line x1="9.8" y1="-11.74" x2="9.8" y2="-12.07" stroke-width="0.026576" />
1423
+ <line x1="9.7" y1="-12.07" x2="9.8" y2="-12.07" stroke-width="0.026576" />
1424
+ <line x1="7.815" y1="-12.4" x2="6.06" y2="-12.4" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1425
+ <polygon points="6.16,-12.425 6.06,-12.4 6.16,-12.375 " stroke-width="0.026576" fill="black" />
1426
+ <polyline points="6.6774,-12.251 6.6637,-12.237 6.65,-12.23 6.6295,-12.23 6.6158,-12.237 6.6021,-12.251 6.5952,-12.271 6.5952,-12.285 6.6021,-12.306 6.6158,-12.319 6.6295,-12.326 6.65,-12.326 6.6637,-12.319 6.6774,-12.306 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1427
+ <polyline points="6.6774,-12.251 6.6705,-12.258 6.6637,-12.244 6.65,-12.237 6.6295,-12.237 6.6158,-12.244 6.6089,-12.251 6.6021,-12.271 6.6021,-12.285 6.6089,-12.306 6.6158,-12.312 6.6295,-12.319 6.65,-12.319 6.6637,-12.312 6.6705,-12.299 6.6774,-12.306 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1428
+ <polyline points="6.7253,-12.23 6.7253,-12.326 6.7321,-12.326 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1429
+ <polyline points="6.7253,-12.23 6.7321,-12.23 6.7321,-12.326 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1430
+ <polyline points="6.7321,-12.271 6.739,-12.251 6.7527,-12.237 6.7664,-12.23 6.7869,-12.23 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1431
+ <polyline points="6.7321,-12.271 6.739,-12.258 6.7527,-12.244 6.7664,-12.237 6.7869,-12.237 6.7869,-12.23 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1432
+ <polyline points="6.8896,-12.251 6.8827,-12.237 6.8622,-12.23 6.8417,-12.23 6.8211,-12.237 6.8143,-12.251 6.8211,-12.264 6.8348,-12.271 6.869,-12.285 6.8827,-12.292 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1433
+ <polyline points="6.8759,-12.285 6.8827,-12.299 6.8827,-12.306 6.8759,-12.319 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1434
+ <polyline points="6.8827,-12.312 6.8622,-12.319 6.8417,-12.319 6.8211,-12.312 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1435
+ <polyline points="6.828,-12.319 6.8211,-12.306 6.8143,-12.306 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1436
+ <polyline points="6.8896,-12.251 6.8827,-12.251 6.8759,-12.237 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1437
+ <polyline points="6.8827,-12.244 6.8622,-12.237 6.8417,-12.237 6.8211,-12.244 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1438
+ <polyline points="6.828,-12.237 6.8211,-12.251 6.828,-12.264 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1439
+ <polyline points="6.8211,-12.258 6.8348,-12.264 6.869,-12.278 6.8827,-12.285 6.8896,-12.299 6.8896,-12.306 6.8827,-12.319 6.8622,-12.326 6.8417,-12.326 6.8211,-12.319 6.8143,-12.306 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1440
+ <polyline points="7.047,-12.23 7.1634,-12.23 7.1634,-12.237 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1441
+ <polyline points="7.047,-12.23 7.047,-12.237 7.1634,-12.237 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1442
+ <polyline points="7.047,-12.285 7.1634,-12.285 7.1634,-12.292 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1443
+ <polyline points="7.047,-12.285 7.047,-12.292 7.1634,-12.292 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1444
+ <line x1="7.825" y1="-11.095" x2="7.825" y2="-12.4" stroke-width="0.026576" />
1445
+ <line x1="7.925" y1="-11.095" x2="7.925" y2="-12.4" stroke-width="0.026576" />
1446
+ <line x1="7.825" y1="-12.4" x2="7.925" y2="-12.4" stroke-width="0.026576" />
1447
+ <line x1="6.06" y1="-12.73" x2="9.69" y2="-12.73" stroke-width="0.026576" />
1448
+ <polygon points="9.59,-12.705 9.69,-12.73 9.59,-12.755 " stroke-width="0.026576" fill="black" />
1449
+ <polyline points="7.5978,-12.56 7.5978,-12.656 7.6046,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1450
+ <polyline points="7.5978,-12.56 7.6046,-12.56 7.6046,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1451
+ <polyline points="7.6046,-12.601 7.6115,-12.581 7.6251,-12.567 7.6388,-12.56 7.6594,-12.56 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1452
+ <polyline points="7.6046,-12.601 7.6114,-12.588 7.6251,-12.574 7.6388,-12.567 7.6594,-12.567 7.6594,-12.56 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1453
+ <polyline points="7.6936,-12.608 7.7689,-12.608 7.7689,-12.588 7.762,-12.574 7.7552,-12.567 7.7415,-12.56 7.721,-12.56 7.7073,-12.567 7.6936,-12.581 7.6867,-12.601 7.6867,-12.615 7.6936,-12.636 7.7073,-12.649 7.721,-12.656 7.7415,-12.656 7.7552,-12.649 7.7689,-12.636 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1454
+ <polyline points="7.6936,-12.601 7.762,-12.601 7.762,-12.588 7.7552,-12.574 7.7415,-12.567 7.721,-12.567 7.7073,-12.574 7.7004,-12.581 7.6936,-12.601 7.6936,-12.615 7.7004,-12.636 7.7073,-12.642 7.721,-12.649 7.7415,-12.649 7.7552,-12.642 7.762,-12.629 7.7689,-12.636 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1455
+ <polyline points="7.8853,-12.581 7.8784,-12.567 7.8579,-12.56 7.8373,-12.56 7.8168,-12.567 7.81,-12.581 7.8168,-12.594 7.8305,-12.601 7.8647,-12.615 7.8784,-12.622 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1456
+ <polyline points="7.8716,-12.615 7.8784,-12.629 7.8784,-12.636 7.8716,-12.649 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1457
+ <polyline points="7.8784,-12.642 7.8579,-12.649 7.8373,-12.649 7.8168,-12.642 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1458
+ <polyline points="7.8237,-12.649 7.8168,-12.636 7.81,-12.636 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1459
+ <polyline points="7.8853,-12.581 7.8784,-12.581 7.8716,-12.567 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1460
+ <polyline points="7.8784,-12.574 7.8579,-12.567 7.8373,-12.567 7.8168,-12.574 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1461
+ <polyline points="7.8237,-12.567 7.8168,-12.581 7.8237,-12.594 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1462
+ <polyline points="7.8168,-12.588 7.8305,-12.594 7.8647,-12.608 7.8784,-12.615 7.8853,-12.629 7.8853,-12.636 7.8784,-12.649 7.8579,-12.656 7.8373,-12.656 7.8168,-12.649 7.81,-12.636 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1463
+ <polyline points="7.9332,-12.56 7.9332,-12.629 7.94,-12.649 7.9537,-12.656 7.9743,-12.656 7.9879,-12.649 8.0085,-12.629 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1464
+ <polyline points="7.9332,-12.56 7.94,-12.56 7.94,-12.629 7.9469,-12.642 7.9606,-12.649 7.9743,-12.649 7.9879,-12.642 8.0085,-12.629 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1465
+ <polyline points="8.0085,-12.56 8.0085,-12.656 8.0153,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1466
+ <polyline points="8.0085,-12.56 8.0153,-12.56 8.0153,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1467
+ <polyline points="8.0701,-12.512 8.0701,-12.656 8.0769,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1468
+ <polyline points="8.0701,-12.512 8.0769,-12.512 8.0769,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1469
+ <polyline points="8.1385,-12.512 8.1385,-12.656 8.1454,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1470
+ <polyline points="8.1385,-12.512 8.1454,-12.512 8.1454,-12.656 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1471
+ <polyline points="8.118,-12.56 8.1659,-12.56 8.1659,-12.567 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1472
+ <polyline points="8.118,-12.56 8.118,-12.567 8.1659,-12.567 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1473
+ <line x1="9.75" y1="-12.07" x2="9.75" y2="-12.73" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1474
+ <line x1="9.7" y1="-12.73" x2="9.8" y2="-12.73" stroke-width="0.026576" />
1475
+ <line x1="9.69" y1="-13.06" x2="6.06" y2="-13.06" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1476
+ <polygon points="6.16,-13.085 6.06,-13.06 6.16,-13.035 " stroke-width="0.026576" fill="black" />
1477
+ <polygon points="7.7415,-12.89 7.7347,-12.897 7.7347,-12.904 7.7415,-12.911 7.7484,-12.911 7.7552,-12.904 7.7552,-12.897 7.7484,-12.89 " stroke-width="0.0097205" stroke-linejoin="round" />
1478
+ <polygon points="7.7415,-12.897 7.7415,-12.904 7.7484,-12.904 7.7484,-12.897 " stroke-width="0.0097205" stroke-linejoin="round" />
1479
+ <polygon points="7.7415,-12.966 7.7347,-12.972 7.7347,-12.979 7.7415,-12.986 7.7484,-12.986 7.7552,-12.979 7.7552,-12.972 7.7484,-12.966 " stroke-width="0.0097205" stroke-linejoin="round" />
1480
+ <polygon points="7.7415,-12.972 7.7415,-12.979 7.7484,-12.979 7.7484,-12.972 " stroke-width="0.0097205" stroke-linejoin="round" />
1481
+ <polygon points="7.8373,-12.89 7.8237,-12.897 7.81,-12.911 7.8031,-12.931 7.8031,-12.945 7.81,-12.966 7.8237,-12.979 7.8373,-12.986 7.8579,-12.986 7.8716,-12.979 7.8853,-12.966 7.8921,-12.945 7.8921,-12.931 7.8853,-12.911 7.8716,-12.897 7.8579,-12.89 " stroke-width="0.0097205" stroke-linejoin="round" />
1482
+ <polygon points="7.8373,-12.897 7.8237,-12.904 7.8168,-12.911 7.81,-12.931 7.81,-12.945 7.8168,-12.966 7.8237,-12.972 7.8373,-12.979 7.8579,-12.979 7.8716,-12.972 7.8784,-12.966 7.8853,-12.945 7.8853,-12.931 7.8784,-12.911 7.8716,-12.904 7.8579,-12.897 " stroke-width="0.0097205" stroke-linejoin="round" />
1483
+ <polyline points="7.94,-12.842 7.94,-12.986 7.9469,-12.986 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1484
+ <polyline points="7.94,-12.842 7.9469,-12.842 7.9469,-12.986 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1485
+ <polyline points="8.0222,-12.89 8.0153,-12.89 7.9469,-12.959 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1486
+ <line x1="8.0222" y1="-12.89" x2="7.9469" y2="-12.966" stroke-width="0.0097205" stroke-linecap="round" />
1487
+ <polyline points="7.9674,-12.938 8.0085,-12.986 8.0222,-12.986 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1488
+ <line x1="7.9743" y1="-12.931" x2="8.0222" y2="-12.986" stroke-width="0.0097205" stroke-linecap="round" />
1489
+ <line x1="9.7" y1="-12.73" x2="9.7" y2="-13.06" stroke-width="0.026576" />
1490
+ <line x1="9.8" y1="-12.73" x2="9.8" y2="-13.06" stroke-width="0.026576" />
1491
+ <line x1="9.7" y1="-13.06" x2="9.8" y2="-13.06" stroke-width="0.026576" />
1492
+ <line x1="9.75" y1="-13.06" x2="9.75" y2="-13.06" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1493
+ <line x1="9.65" y1="-13.26" x2="9.85" y2="-13.06" stroke-width="0.026576" />
1494
+ <line x1="9.65" y1="-13.06" x2="9.85" y2="-13.26" stroke-width="0.026576" />
1495
+ <line x1="5.94" y1="-13.39" x2="2.36" y2="-13.39" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1496
+ <polygon points="2.46,-13.415 2.36,-13.39 2.46,-13.365 " stroke-width="0.026576" fill="black" />
1497
+ <polygon points="4.0165,-13.22 4.0097,-13.227 4.0097,-13.234 4.0165,-13.241 4.0234,-13.241 4.0302,-13.234 4.0302,-13.227 4.0234,-13.22 " stroke-width="0.0097205" stroke-linejoin="round" />
1498
+ <polygon points="4.0165,-13.227 4.0165,-13.234 4.0234,-13.234 4.0234,-13.227 " stroke-width="0.0097205" stroke-linejoin="round" />
1499
+ <polygon points="4.0165,-13.296 4.0097,-13.302 4.0097,-13.309 4.0165,-13.316 4.0234,-13.316 4.0302,-13.309 4.0302,-13.302 4.0234,-13.296 " stroke-width="0.0097205" stroke-linejoin="round" />
1500
+ <polygon points="4.0165,-13.302 4.0165,-13.309 4.0234,-13.309 4.0234,-13.302 " stroke-width="0.0097205" stroke-linejoin="round" />
1501
+ <polygon points="4.1124,-13.22 4.0987,-13.227 4.085,-13.241 4.0781,-13.261 4.0781,-13.275 4.085,-13.296 4.0987,-13.309 4.1124,-13.316 4.1329,-13.316 4.1466,-13.309 4.1603,-13.296 4.1671,-13.275 4.1671,-13.261 4.1603,-13.241 4.1466,-13.227 4.1329,-13.22 " stroke-width="0.0097205" stroke-linejoin="round" />
1502
+ <polygon points="4.1124,-13.227 4.0987,-13.234 4.0918,-13.241 4.085,-13.261 4.085,-13.275 4.0918,-13.296 4.0987,-13.302 4.1124,-13.309 4.1329,-13.309 4.1466,-13.302 4.1534,-13.296 4.1603,-13.275 4.1603,-13.261 4.1534,-13.241 4.1466,-13.234 4.1329,-13.227 " stroke-width="0.0097205" stroke-linejoin="round" />
1503
+ <polyline points="4.215,-13.172 4.215,-13.316 4.2219,-13.316 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1504
+ <polyline points="4.215,-13.172 4.2219,-13.172 4.2219,-13.316 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1505
+ <polyline points="4.2972,-13.22 4.2903,-13.22 4.2219,-13.289 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1506
+ <line x1="4.2972" y1="-13.22" x2="4.2219" y2="-13.296" stroke-width="0.0097205" stroke-linecap="round" />
1507
+ <polyline points="4.2424,-13.268 4.2835,-13.316 4.2972,-13.316 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1508
+ <line x1="4.2493" y1="-13.261" x2="4.2972" y2="-13.316" stroke-width="0.0097205" stroke-linecap="round" />
1509
+ <line x1="5.95" y1="-2.875" x2="5.95" y2="-13.39" stroke-width="0.026576" />
1510
+ <line x1="6.05" y1="-2.875" x2="6.05" y2="-13.39" stroke-width="0.026576" />
1511
+ <line x1="5.95" y1="-13.39" x2="6.05" y2="-13.39" stroke-width="0.026576" />
1512
+ <line x1="4.125" y1="-2.545" x2="4.125" y2="-13.39" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1513
+ <line x1="4.025" y1="-13.59" x2="4.225" y2="-13.39" stroke-width="0.026576" />
1514
+ <line x1="4.025" y1="-13.39" x2="4.225" y2="-13.59" stroke-width="0.026576" />
1515
+ <polyline points="2.36,-13.72 2.86,-13.72 2.86,-13.97 2.36,-13.97 " stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1516
+ <polygon points="2.46,-13.995 2.36,-13.97 2.46,-13.945 " stroke-width="0.026576" fill="black" />
1517
+ <polygon points="2.3942,-13.404 2.3874,-13.411 2.3874,-13.418 2.3942,-13.425 2.4011,-13.425 2.4079,-13.418 2.4079,-13.411 2.4011,-13.404 " stroke-width="0.0097205" stroke-linejoin="round" />
1518
+ <polygon points="2.3942,-13.411 2.3942,-13.418 2.4011,-13.418 2.4011,-13.411 " stroke-width="0.0097205" stroke-linejoin="round" />
1519
+ <polygon points="2.3942,-13.479 2.3874,-13.486 2.3874,-13.493 2.3942,-13.5 2.4011,-13.5 2.4079,-13.493 2.4079,-13.486 2.4011,-13.479 " stroke-width="0.0097205" stroke-linejoin="round" />
1520
+ <polygon points="2.3942,-13.486 2.3942,-13.493 2.4011,-13.493 2.4011,-13.486 " stroke-width="0.0097205" stroke-linejoin="round" />
1521
+ <polygon points="2.4901,-13.404 2.4764,-13.411 2.4627,-13.425 2.4558,-13.445 2.4558,-13.459 2.4627,-13.479 2.4764,-13.493 2.4901,-13.5 2.5106,-13.5 2.5243,-13.493 2.538,-13.479 2.5448,-13.459 2.5448,-13.445 2.538,-13.425 2.5243,-13.411 2.5106,-13.404 " stroke-width="0.0097205" stroke-linejoin="round" />
1522
+ <polygon points="2.4901,-13.411 2.4764,-13.418 2.4695,-13.425 2.4627,-13.445 2.4627,-13.459 2.4695,-13.479 2.4764,-13.486 2.4901,-13.493 2.5106,-13.493 2.5243,-13.486 2.5311,-13.479 2.538,-13.459 2.538,-13.445 2.5311,-13.425 2.5243,-13.418 2.5106,-13.411 " stroke-width="0.0097205" stroke-linejoin="round" />
1523
+ <polyline points="2.5927,-13.356 2.5927,-13.5 2.5996,-13.5 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1524
+ <polyline points="2.5927,-13.356 2.5996,-13.356 2.5996,-13.5 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1525
+ <polyline points="2.6749,-13.404 2.668,-13.404 2.5996,-13.473 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1526
+ <line x1="2.6749" y1="-13.404" x2="2.5996" y2="-13.479" stroke-width="0.0097205" stroke-linecap="round" />
1527
+ <polyline points="2.6201,-13.452 2.6612,-13.5 2.6749,-13.5 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1528
+ <line x1="2.627" y1="-13.445" x2="2.6749" y2="-13.5" stroke-width="0.0097205" stroke-linecap="round" />
1529
+ <line x1="2.2" y1="-1.57" x2="2.2" y2="-13.97" stroke-width="0.026576" />
1530
+ <line x1="2.25" y1="-1.57" x2="2.25" y2="-13.97" stroke-width="0.026576" />
1531
+ <line x1="2.35" y1="-1.57" x2="2.35" y2="-13.97" stroke-width="0.026576" />
1532
+ <line x1="2.25" y1="-13.97" x2="2.35" y2="-13.97" stroke-width="0.026576" />
1533
+ <line x1="2.19" y1="-14.3" x2="0.435" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1534
+ <polygon points="0.535,-14.325 0.435,-14.3 0.535,-14.275 " stroke-width="0.026576" fill="black" />
1535
+ <polygon points="1.179,-14.13 1.1722,-14.137 1.1722,-14.144 1.179,-14.151 1.1859,-14.151 1.1927,-14.144 1.1927,-14.137 1.1859,-14.13 " stroke-width="0.0097205" stroke-linejoin="round" />
1536
+ <polygon points="1.179,-14.137 1.179,-14.144 1.1859,-14.144 1.1859,-14.137 " stroke-width="0.0097205" stroke-linejoin="round" />
1537
+ <polygon points="1.179,-14.206 1.1722,-14.212 1.1722,-14.219 1.179,-14.226 1.1859,-14.226 1.1927,-14.219 1.1927,-14.212 1.1859,-14.206 " stroke-width="0.0097205" stroke-linejoin="round" />
1538
+ <polygon points="1.179,-14.212 1.179,-14.219 1.1859,-14.219 1.1859,-14.212 " stroke-width="0.0097205" stroke-linejoin="round" />
1539
+ <polygon points="1.2749,-14.13 1.2612,-14.137 1.2475,-14.151 1.2406,-14.171 1.2406,-14.185 1.2475,-14.206 1.2612,-14.219 1.2749,-14.226 1.2954,-14.226 1.3091,-14.219 1.3228,-14.206 1.3296,-14.185 1.3296,-14.171 1.3228,-14.151 1.3091,-14.137 1.2954,-14.13 " stroke-width="0.0097205" stroke-linejoin="round" />
1540
+ <polygon points="1.2749,-14.137 1.2612,-14.144 1.2543,-14.151 1.2475,-14.171 1.2475,-14.185 1.2543,-14.206 1.2612,-14.212 1.2749,-14.219 1.2954,-14.219 1.3091,-14.212 1.3159,-14.206 1.3228,-14.185 1.3228,-14.171 1.3159,-14.151 1.3091,-14.144 1.2954,-14.137 " stroke-width="0.0097205" stroke-linejoin="round" />
1541
+ <polyline points="1.3775,-14.082 1.3775,-14.226 1.3844,-14.226 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1542
+ <polyline points="1.3775,-14.082 1.3844,-14.082 1.3844,-14.226 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1543
+ <polyline points="1.4597,-14.13 1.4528,-14.13 1.3844,-14.199 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1544
+ <line x1="1.4597" y1="-14.13" x2="1.3844" y2="-14.206" stroke-width="0.0097205" stroke-linecap="round" />
1545
+ <polyline points="1.4049,-14.178 1.446,-14.226 1.4597,-14.226 " stroke-width="0.0097205" stroke-linecap="round" stroke-linejoin="round" />
1546
+ <line x1="1.4118" y1="-14.171" x2="1.4597" y2="-14.226" stroke-width="0.0097205" stroke-linecap="round" />
1547
+ <line x1="2.2" y1="-13.97" x2="2.2" y2="-14.3" stroke-width="0.026576" />
1548
+ <line x1="2.3" y1="-13.97" x2="2.3" y2="-14.3" stroke-width="0.026576" />
1549
+ <line x1="2.2" y1="-14.3" x2="2.3" y2="-14.3" stroke-width="0.026576" />
1550
+ <line x1="0.375" y1="-0.15" x2="0.375" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1551
+ <line x1="2.25" y1="-14.3" x2="2.25" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1552
+ <line x1="6" y1="-13.39" x2="6" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1553
+ <line x1="7.875" y1="-12.4" x2="7.875" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1554
+ <line x1="11.625" y1="-10.765" x2="11.625" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1555
+ <line x1="13.5" y1="-10.105" x2="13.5" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1556
+ <line x1="15.375" y1="-9.445" x2="15.375" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1557
+ <line x1="21" y1="-7.48" x2="21" y2="-14.3" stroke-width="0.026576" stroke-dasharray="0.05, 0.05"/>
1558
+ </g>
1559
+ </svg>