jsoneditor-rails 0.1.0 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ff99be7c9cdb897cd8bc2d69834e67907c026b7c
4
- data.tar.gz: 340520fb4b306878233cadfa706e0b20ce4fa36e
2
+ SHA256:
3
+ metadata.gz: f0e42d24ec74df81ddf3dbd784f677c910efac550124e2ca20fab6b0937194cf
4
+ data.tar.gz: 76a42e65c0f7c83efbee85e13e3f570e33541914dd866e23e757e5907191a164
5
5
  SHA512:
6
- metadata.gz: 70dae4863c3643200a7171e1b8848cef8900c27e967834c80ec7b9c5dd33fa5c91a3ac70dd2f2aea8f65e548bfe82309a2669238a09eee6a8fb69db9ed13ac4b
7
- data.tar.gz: 893e19d63ea8e38736cb7448bc7866295162271febab02b4b02f8a8bcd89c37ff6c18c3d66f0d7599bc983723c136e8d196e025c000c79a0dd89f31ec3ade1ca
6
+ metadata.gz: e82a025de58ba606669d240c0f24231c407133efba967972e969f7a3b9376e93bf3d23192fec9685d478e972514f2b460dbaa18f105791954f30557cea8bbc05
7
+ data.tar.gz: 4a6313aad9665addd5ed4202c788d0fcbe35c664ddedd3c264ddb1c4fb27a5b1d3877bc01716135fbaf939578a844b29b43a0b79526c541e1321443c59f2f10b
@@ -0,0 +1,44 @@
1
+ name: CI Build
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ ruby: [ '2.5', '2.6', '2.7' ]
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+
18
+ - uses: actions/setup-ruby@v1
19
+ with:
20
+ ruby-version: ${{ matrix.ruby }}
21
+
22
+ - uses: actions/cache@v1
23
+ with:
24
+ path: vendor/bundle
25
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-gems-
28
+
29
+ - name: Install rubygems
30
+ run: |
31
+ gem update --system --no-document
32
+
33
+ - name: Install bundler
34
+ run: |
35
+ gem install bundler --no-document
36
+
37
+ - name: Install dependencies
38
+ run: |
39
+ bundle config path vendor/bundle
40
+ bundle install --jobs 4 --retry 3
41
+
42
+ - name: Run Tests
43
+ run: |
44
+ bundle exec rake
data/.gitignore CHANGED
@@ -1,9 +1,9 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
7
6
  /pkg/
8
7
  /spec/reports/
9
8
  /tmp/
9
+ /test/dummy_assets/
@@ -0,0 +1,20 @@
1
+ ## 1.0.4 (2020-12-23)
2
+
3
+ * No code changes - moved repository to Jackpocket organization and updated URLs
4
+
5
+ ## 1.0.3 (2018-12-07)
6
+
7
+ * Updated jsoneditor to version 5.26.3 ([#5](../../pull/5))
8
+
9
+ ## 1.0.2 (2018-09-14)
10
+
11
+ * Updated jsoneditor to version 5.24.6 ([#4](../../pull/4))
12
+
13
+ ## 1.0.1 (2017-07-14)
14
+
15
+ * Updated jsoneditor to version 5.9 ([#2](../../pull/2))
16
+
17
+ ## 1.0.0 (2017-04-08)
18
+
19
+ * Added jsoneditor assets as part of asset pipeline
20
+ * Added rake task to download latest jsoneditor files to easily do new releases
@@ -0,0 +1,81 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ jsoneditor-rails (1.0.4)
5
+ railties (>= 3.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionpack (6.1.0)
11
+ actionview (= 6.1.0)
12
+ activesupport (= 6.1.0)
13
+ rack (~> 2.0, >= 2.0.9)
14
+ rack-test (>= 0.6.3)
15
+ rails-dom-testing (~> 2.0)
16
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
+ actionview (6.1.0)
18
+ activesupport (= 6.1.0)
19
+ builder (~> 3.1)
20
+ erubi (~> 1.4)
21
+ rails-dom-testing (~> 2.0)
22
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
+ activesupport (6.1.0)
24
+ concurrent-ruby (~> 1.0, >= 1.0.2)
25
+ i18n (>= 1.6, < 2)
26
+ minitest (>= 5.1)
27
+ tzinfo (~> 2.0)
28
+ zeitwerk (~> 2.3)
29
+ ansi (1.5.0)
30
+ builder (3.2.4)
31
+ concurrent-ruby (1.1.7)
32
+ crass (1.0.6)
33
+ erubi (1.10.0)
34
+ i18n (1.8.5)
35
+ concurrent-ruby (~> 1.0)
36
+ loofah (2.8.0)
37
+ crass (~> 1.0.2)
38
+ nokogiri (>= 1.5.9)
39
+ method_source (1.0.0)
40
+ mini_portile2 (2.4.0)
41
+ minitest (5.14.2)
42
+ minitest-reporters (1.4.2)
43
+ ansi
44
+ builder
45
+ minitest (>= 5.0)
46
+ ruby-progressbar
47
+ nokogiri (1.10.10)
48
+ mini_portile2 (~> 2.4.0)
49
+ rack (2.2.3)
50
+ rack-test (1.1.0)
51
+ rack (>= 1.0, < 3)
52
+ rails-dom-testing (2.0.3)
53
+ activesupport (>= 4.2.0)
54
+ nokogiri (>= 1.6)
55
+ rails-html-sanitizer (1.3.0)
56
+ loofah (~> 2.3)
57
+ railties (6.1.0)
58
+ actionpack (= 6.1.0)
59
+ activesupport (= 6.1.0)
60
+ method_source
61
+ rake (>= 0.8.7)
62
+ thor (~> 1.0)
63
+ rake (13.0.3)
64
+ ruby-progressbar (1.10.1)
65
+ thor (1.0.1)
66
+ tzinfo (2.0.4)
67
+ concurrent-ruby (~> 1.0)
68
+ zeitwerk (2.4.2)
69
+
70
+ PLATFORMS
71
+ ruby
72
+
73
+ DEPENDENCIES
74
+ bundler (~> 2.0)
75
+ jsoneditor-rails!
76
+ minitest
77
+ minitest-reporters
78
+ rake
79
+
80
+ BUNDLED WITH
81
+ 2.1.4
data/README.md CHANGED
@@ -20,12 +20,12 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- The jsoneditor files will be added to the asset pipeline and available for you to use. In your `app/assets/javascripts/application.js` add:
23
+ In your `app/assets/javascripts/application.js` add:
24
24
 
25
25
  ```js
26
26
  //= require jsoneditor
27
27
 
28
- // Or add the minimalist version if you prefer that
28
+ // Or use the minimalist version instead
29
29
  //= require jsoneditor-minimalist
30
30
  ```
31
31
 
@@ -37,14 +37,14 @@ Then add the JSON Editor CSS to your `app/assets/stylesheets/application.scss`:
37
37
 
38
38
  ## Development
39
39
 
40
- * `git clone https://github.com/javierjulio/jsoneditor-rails.git`
40
+ * `git clone https://github.com/jackpocket/jsoneditor-rails.git`
41
41
  * `bundle install`
42
-
43
- To update the vendor assets with the latest version run `rake update_json_editor` and create a pull request with those changes.
42
+ * `rake update_assets`
43
+ * Create pull request with latest changes
44
44
 
45
45
  ## Contributing
46
46
 
47
- Bug reports and pull requests are welcome on GitHub at https://github.com/javierjulio/jsoneditor-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
47
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jackpocket/jsoneditor-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
48
48
 
49
49
  ## License
50
50
 
data/Rakefile CHANGED
@@ -7,29 +7,31 @@ Rake::TestTask.new(:test) do |t|
7
7
  t.test_files = FileList['test/**/*_test.rb']
8
8
  end
9
9
 
10
- task :default => :test
10
+ task default: :test
11
11
 
12
- desc "Update JSON Editor version"
13
- task :update_json_editor do
14
- dist_url = "https://raw.githubusercontent.com/josdejong/jsoneditor/master/dist/"
12
+ # Use https://cdnjs.com/libraries/jsoneditor to view all files.
13
+ DIST_URL = "https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/8.6.1/"
15
14
 
16
- puts "Downloading jsoneditor.js"
17
- puts `curl -o vendor/assets/javascripts/jsoneditor.js #{dist_url}jsoneditor.js`
18
- puts `curl -o vendor/assets/javascripts/jsoneditor.map #{dist_url}jsoneditor.map`
15
+ ASSETS_PATH = ENV['ASSETS_PATH'] || 'vendor/assets/'
19
16
 
20
- puts "Downloading jsoneditor-minimalist.js"
21
- puts `curl -o vendor/assets/javascripts/jsoneditor-minimalist.js #{dist_url}jsoneditor-minimalist.js`
22
- puts `curl -o vendor/assets/javascripts/jsoneditor-minimalist.map #{dist_url}jsoneditor-minimalist.map`
23
-
24
- puts "Downloading jsoneditor-icons.svg"
25
- puts `curl -o vendor/assets/images/jsoneditor-icons.svg #{dist_url}img/jsoneditor-icons.svg`
26
-
27
- puts "Downloading jsoneditor.css"
28
- puts `curl -o vendor/assets/stylesheets/jsoneditor.scss #{dist_url}jsoneditor.css`
17
+ def update_asset_files
18
+ system "curl -o #{ASSETS_PATH}javascripts/jsoneditor.js #{DIST_URL}jsoneditor.js"
19
+ system "curl -o #{ASSETS_PATH}javascripts/jsoneditor.map #{DIST_URL}jsoneditor.map"
20
+ system "curl -o #{ASSETS_PATH}javascripts/jsoneditor-minimalist.js #{DIST_URL}jsoneditor-minimalist.js"
21
+ system "curl -o #{ASSETS_PATH}javascripts/jsoneditor-minimalist.map #{DIST_URL}jsoneditor-minimalist.map"
22
+ system "curl -o #{ASSETS_PATH}images/jsoneditor-icons.svg #{DIST_URL}img/jsoneditor-icons.svg"
23
+ system "curl -o #{ASSETS_PATH}stylesheets/jsoneditor.scss #{DIST_URL}jsoneditor.css"
24
+ end
29
25
 
30
- css = File.read('vendor/assets/stylesheets/jsoneditor.scss')
31
- content = css.gsub(/url\("img\//, 'asset-url("')
32
- File.open('vendor/assets/stylesheets/jsoneditor.scss', 'w') { |f| f.write(content) }
26
+ def use_asset_url_for_css_images
27
+ path = "#{ASSETS_PATH}stylesheets/jsoneditor.scss"
28
+ modified_css = File.read(path).gsub(/url\("img\//, 'asset-url("')
29
+ File.open(path, 'w') { |f| f.write(modified_css) }
30
+ end
33
31
 
34
- puts "\e[32mDone!\e[0m"
32
+ desc "Update JSON Editor assets"
33
+ task :update_assets do
34
+ update_asset_files
35
+ use_asset_url_for_css_images
36
+ puts "\e[32mAll assets have been updated.\e[0m"
35
37
  end
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "jsoneditor-rails"
8
8
  spec.version = Jsoneditor::Rails::VERSION
9
9
  spec.authors = ["Javier Julio"]
10
- spec.email = ["jjfutbol@gmail.com"]
10
+ spec.email = ["javier@jackpocket.com"]
11
11
 
12
12
  spec.summary = "Use JSON Editor with Rails 4+"
13
13
  spec.description = "This gem provides JSON Editor for your Rails 4+ application."
14
- spec.homepage = "https://github.com/javierjulio/jsoneditor-rails"
14
+ spec.homepage = "https://github.com/jackpocket/jsoneditor-rails"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -21,9 +21,10 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
- spec.add_runtime_dependency "sass-rails"
24
+ spec.add_runtime_dependency "railties", ">= 3.0"
25
25
 
26
- spec.add_development_dependency "bundler", "~> 1.14"
27
- spec.add_development_dependency "rake", "~> 10.0"
28
- spec.add_development_dependency "minitest", "~> 5.0"
26
+ spec.add_development_dependency "bundler", "~> 2.0"
27
+ spec.add_development_dependency "rake"
28
+ spec.add_development_dependency "minitest"
29
+ spec.add_development_dependency "minitest-reporters"
29
30
  end
@@ -1,5 +1,5 @@
1
1
  module Jsoneditor
2
2
  module Rails
3
- VERSION = "0.1.0"
3
+ VERSION = "1.0.4"
4
4
  end
5
5
  end
@@ -7,11 +7,11 @@
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
9
  xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
- width="216"
10
+ width="240"
11
11
  height="144"
12
12
  id="svg4136"
13
13
  version="1.1"
14
- inkscape:version="0.91 r"
14
+ inkscape:version="0.91 r13725"
15
15
  sodipodi:docname="jsoneditor-icons.svg">
16
16
  <title
17
17
  id="title6512">JSON Editor Icons</title>
@@ -30,7 +30,7 @@
30
30
  <defs
31
31
  id="defs4146" />
32
32
  <sodipodi:namedview
33
- pagecolor="#ffffff"
33
+ pagecolor="#ff63ff"
34
34
  bordercolor="#666666"
35
35
  borderopacity="1"
36
36
  objecttolerance="10"
@@ -39,12 +39,12 @@
39
39
  inkscape:pageopacity="0"
40
40
  inkscape:pageshadow="2"
41
41
  inkscape:window-width="1920"
42
- inkscape:window-height="1028"
42
+ inkscape:window-height="1026"
43
43
  id="namedview4144"
44
44
  showgrid="true"
45
45
  inkscape:zoom="4"
46
- inkscape:cx="97.217248"
47
- inkscape:cy="59.950227"
46
+ inkscape:cx="101.95756"
47
+ inkscape:cy="63.092516"
48
48
  inkscape:window-x="0"
49
49
  inkscape:window-y="0"
50
50
  inkscape:window-maximized="1"
@@ -59,439 +59,219 @@
59
59
  empspacing="24" />
60
60
  </sodipodi:namedview>
61
61
  <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
62
- <g
63
- id="g4394">
64
- <rect
65
- x="4"
66
- y="4"
67
- width="16"
68
- height="16"
69
- id="svg_1"
70
- style="fill:#1aae1c;fill-opacity:1;stroke:none;stroke-width:0" />
71
- <rect
72
- style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0"
73
- x="28.000006"
74
- y="3.999995"
75
- width="16"
76
- height="16"
77
- id="svg_1-7" />
78
- <rect
79
- id="rect4165"
80
- height="16"
81
- width="16"
82
- y="3.999995"
83
- x="52.000004"
84
- style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
85
- <rect
86
- style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
87
- x="172.00002"
88
- y="3.9999852"
89
- width="16"
90
- height="16"
91
- id="rect4175" />
92
- <rect
93
- style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
94
- x="196"
95
- y="3.999995"
96
- width="16"
97
- height="16"
98
- id="rect4175-3" />
99
- <g
100
- style="stroke:none"
101
- id="g4299">
102
- <rect
103
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
104
- id="svg_1-1"
105
- height="1.9999986"
106
- width="9.9999924"
107
- y="10.999998"
108
- x="7.0000048" />
109
- <rect
110
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
111
- id="svg_1-1-1"
112
- height="9.9999838"
113
- width="1.9999955"
114
- y="7.0000114"
115
- x="11.000005" />
116
- </g>
117
- <g
118
- style="stroke:none"
119
- transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
120
- id="g4299-3">
121
- <rect
122
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
123
- id="svg_1-1-0"
124
- height="1.9999986"
125
- width="9.9999924"
126
- y="10.999998"
127
- x="7.0000048" />
128
- <rect
129
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
130
- id="svg_1-1-1-9"
131
- height="9.9999838"
132
- width="1.9999955"
133
- y="7.0000114"
134
- x="11.000005" />
135
- </g>
136
- <rect
137
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
138
- x="55.000004"
139
- y="7.0000048"
140
- width="6.9999909"
141
- height="6.9999905"
142
- id="svg_1-7-5" />
143
- <rect
144
- id="rect4354"
145
- height="6.9999905"
146
- width="6.9999909"
147
- y="10.00001"
148
- x="58"
149
- style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
150
- <rect
151
- style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
152
- x="58.000004"
153
- y="10.000005"
154
- width="6.9999909"
155
- height="6.9999905"
156
- id="svg_1-7-5-7" />
157
- <g
158
- id="g4378">
159
- <rect
160
- id="svg_1-7-5-3"
161
- height="1.9999965"
162
- width="7.9999909"
163
- y="10.999999"
164
- x="198"
165
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
166
- <rect
167
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
168
- x="198"
169
- y="7.0000005"
170
- width="11.999995"
171
- height="1.9999946"
172
- id="rect4374" />
173
- <rect
174
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
175
- x="198"
176
- y="14.999996"
177
- width="3.9999928"
178
- height="1.9999995"
179
- id="rect4376" />
180
- </g>
181
- <g
182
- id="g4383"
183
- transform="matrix(1,0,0,-1,-23.999995,23.999995)">
184
- <rect
185
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
186
- x="198"
187
- y="10.999999"
188
- width="7.9999909"
189
- height="1.9999965"
190
- id="rect4385" />
191
- <rect
192
- id="rect4387"
193
- height="1.9999946"
194
- width="11.999995"
195
- y="7.0000005"
196
- x="198"
197
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
198
- <rect
199
- id="rect4389"
200
- height="1.9999995"
201
- width="3.9999928"
202
- y="14.999996"
203
- x="198"
204
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
205
- </g>
206
- <rect
207
- y="3.9999199"
208
- x="76"
209
- height="16"
210
- width="16"
211
- id="rect3754-4"
212
- style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
213
- <path
214
- sodipodi:nodetypes="cccccccc"
215
- inkscape:connector-curvature="0"
216
- id="path4351"
217
- d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
218
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
219
- <path
220
- sodipodi:nodetypes="cccccccc"
221
- inkscape:connector-curvature="0"
222
- id="path4351-9"
223
- d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
224
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
225
- <rect
226
- y="3.9999199"
227
- x="100"
228
- height="16"
229
- width="16"
230
- id="rect3754-25"
231
- style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
232
- <path
233
- inkscape:connector-curvature="0"
234
- id="path2987"
235
- d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
236
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
237
- <path
238
- inkscape:connector-curvature="0"
239
- id="path2987-1"
240
- d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
241
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
242
- <rect
243
- y="3.9999199"
244
- x="124"
245
- height="16"
246
- width="16"
247
- id="rect3754-73"
248
- style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
249
- <path
250
- sodipodi:nodetypes="ccccccccc"
251
- inkscape:connector-curvature="0"
252
- id="path3780"
253
- d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
254
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
255
- <path
256
- inkscape:connector-curvature="0"
257
- id="path3782"
258
- d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
259
- style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
260
- <rect
261
- y="3.9999199"
262
- x="148"
263
- height="16"
264
- width="16"
265
- id="rect3754-35"
266
- style="fill:#4c4c4c;fill-opacity:1;stroke:none" />
267
- <path
268
- sodipodi:nodetypes="ccccccc"
269
- inkscape:connector-curvature="0"
270
- id="path5008-2"
271
- d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
272
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
273
- <path
274
- sodipodi:nodetypes="ccccccc"
275
- inkscape:connector-curvature="0"
276
- id="path5008-2-8"
277
- d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
278
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
279
- </g>
280
62
  <rect
281
- x="4"
282
- y="27.999994"
283
- width="16"
63
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
64
+ id="svg_1"
284
65
  height="16"
285
- id="rect4432"
286
- style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0" />
287
- <rect
288
- style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0"
289
- x="28.000006"
290
- y="27.99999"
291
66
  width="16"
292
- height="16"
293
- id="rect4434" />
67
+ y="4"
68
+ x="4" />
294
69
  <rect
295
- id="rect4436"
70
+ id="svg_1-7"
296
71
  height="16"
297
72
  width="16"
298
- y="27.99999"
299
- x="52.000004"
300
- style="fill:#d3d3d3;fill-opacity:1;stroke:#000000;stroke-width:0" />
73
+ y="3.999995"
74
+ x="28.000006"
75
+ style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0" />
301
76
  <rect
302
- style="fill:#d3d3d3;stroke:#000000;stroke-width:0"
303
- x="172.00002"
304
- y="27.999981"
77
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
78
+ x="52.000004"
79
+ y="3.999995"
305
80
  width="16"
306
81
  height="16"
307
- id="rect4446" />
82
+ id="rect4165" />
308
83
  <rect
309
- style="fill:#d3d3d3;stroke:#000000;stroke-width:0"
310
- x="196"
311
- y="27.99999"
84
+ id="rect4175"
85
+ height="16"
312
86
  width="16"
87
+ y="3.9999852"
88
+ x="172.00002"
89
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
90
+ <rect
91
+ id="rect4175-3"
313
92
  height="16"
314
- id="rect4448" />
93
+ width="16"
94
+ y="3.999995"
95
+ x="196"
96
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
315
97
  <g
316
- id="g4466"
317
- style="stroke:none"
318
- transform="translate(0,23.999995)">
98
+ id="g4299"
99
+ style="stroke:none">
319
100
  <rect
320
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
321
- id="rect4468"
322
- height="1.9999986"
323
- width="9.9999924"
101
+ x="7.0000048"
324
102
  y="10.999998"
325
- x="7.0000048" />
103
+ width="9.9999924"
104
+ height="1.9999986"
105
+ id="svg_1-1"
106
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
326
107
  <rect
327
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
328
- id="rect4470"
329
- height="9.9999838"
330
- width="1.9999955"
108
+ x="11.000005"
331
109
  y="7.0000114"
332
- x="11.000005" />
110
+ width="1.9999955"
111
+ height="9.9999838"
112
+ id="svg_1-1-1"
113
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
333
114
  </g>
334
115
  <g
335
- transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,35.999996)"
336
- id="g4472"
116
+ id="g4299-3"
117
+ transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
337
118
  style="stroke:none">
338
119
  <rect
339
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
340
- id="rect4474"
341
- height="1.9999986"
342
- width="9.9999924"
120
+ x="7.0000048"
343
121
  y="10.999998"
344
- x="7.0000048" />
122
+ width="9.9999924"
123
+ height="1.9999986"
124
+ id="svg_1-1-0"
125
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
345
126
  <rect
346
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0"
347
- id="rect4476"
348
- height="9.9999838"
349
- width="1.9999955"
127
+ x="11.000005"
350
128
  y="7.0000114"
351
- x="11.000005" />
129
+ width="1.9999955"
130
+ height="9.9999838"
131
+ id="svg_1-1-1-9"
132
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
352
133
  </g>
353
134
  <rect
354
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
135
+ id="svg_1-7-5"
136
+ height="6.9999905"
137
+ width="6.9999909"
138
+ y="7.0000048"
355
139
  x="55.000004"
356
- y="31"
140
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
141
+ <rect
142
+ style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
143
+ x="58"
144
+ y="10.00001"
357
145
  width="6.9999909"
358
146
  height="6.9999905"
359
- id="rect4478" />
147
+ id="rect4354" />
360
148
  <rect
361
- id="rect4480"
149
+ id="svg_1-7-5-7"
362
150
  height="6.9999905"
363
151
  width="6.9999909"
364
- y="34.000008"
365
- x="58"
366
- style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
367
- <rect
368
- style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
152
+ y="10.000005"
369
153
  x="58.000004"
370
- y="34.000004"
371
- width="6.9999909"
372
- height="6.9999905"
373
- id="rect4482" />
374
- <g
375
- id="g4484"
376
- transform="translate(0,23.999995)">
377
- <rect
378
- id="rect4486"
379
- height="1.9999965"
380
- width="7.9999909"
381
- y="10.999999"
382
- x="198"
383
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
384
- <rect
385
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
386
- x="198"
387
- y="7.0000005"
388
- width="11.999995"
389
- height="1.9999946"
390
- id="rect4488" />
391
- <rect
392
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
393
- x="198"
394
- y="14.999996"
395
- width="3.9999928"
396
- height="1.9999995"
397
- id="rect4490" />
398
- </g>
154
+ style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" />
399
155
  <g
400
- id="g4492"
401
- transform="matrix(1,0,0,-1,-23.999995,47.99999)">
156
+ id="g4378">
402
157
  <rect
403
158
  style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
404
159
  x="198"
405
160
  y="10.999999"
406
161
  width="7.9999909"
407
162
  height="1.9999965"
408
- id="rect4494" />
163
+ id="svg_1-7-5-3" />
409
164
  <rect
410
- id="rect4496"
165
+ id="rect4374"
411
166
  height="1.9999946"
412
167
  width="11.999995"
413
168
  y="7.0000005"
414
169
  x="198"
415
170
  style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
416
171
  <rect
417
- id="rect4498"
172
+ id="rect4376"
418
173
  height="1.9999995"
419
174
  width="3.9999928"
420
175
  y="14.999996"
421
176
  x="198"
422
177
  style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
423
178
  </g>
179
+ <g
180
+ transform="matrix(1,0,0,-1,-23.999995,23.999995)"
181
+ id="g4383">
182
+ <rect
183
+ id="rect4385"
184
+ height="1.9999965"
185
+ width="7.9999909"
186
+ y="10.999999"
187
+ x="198"
188
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
189
+ <rect
190
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
191
+ x="198"
192
+ y="7.0000005"
193
+ width="11.999995"
194
+ height="1.9999946"
195
+ id="rect4387" />
196
+ <rect
197
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
198
+ x="198"
199
+ y="14.999996"
200
+ width="3.9999928"
201
+ height="1.9999995"
202
+ id="rect4389" />
203
+ </g>
424
204
  <rect
425
- style="fill:#d3d3d3;fill-opacity:1;stroke:none"
426
- id="rect3754-8"
205
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
206
+ id="rect3754-4"
427
207
  width="16"
428
208
  height="16"
429
209
  x="76"
430
- y="27.99992" />
210
+ y="3.9999199" />
431
211
  <path
432
212
  style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
433
- d="m 85.10448,30.015537 -0.0156,1.4063 c 3.02668,-0.2402 0.33007,3.6508 2.48438,4.5781 -2.18695,1.0938 0.49191,4.90688 -2.45313,4.57808 l -0.0156,1.4219 c 5.70827,0.559 1.03263,-5.10048 4.70313,-5.26558 l 0,-1.4063 c -3.61304,-0.027 1.11893,-5.707 -4.70313,-5.3125 z"
434
- id="path4351-1"
213
+ d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
214
+ id="path4351"
435
215
  inkscape:connector-curvature="0"
436
216
  sodipodi:nodetypes="cccccccc" />
437
217
  <path
438
218
  style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
439
- d="m 82.78126,29.998237 0.0156,1.4063 c -3.02668,-0.2402 -0.33008,3.6507 -2.48438,4.5781 2.18694,1.0938 -0.49191,4.90688 2.45313,4.57808 l 0.0156,1.4219 c -5.70828,0.559 -1.03264,-5.10038 -4.70313,-5.26558 l 0,-1.4063 c 3.61303,-0.027 -1.11893,-5.7071 4.70313,-5.3125 z"
440
- id="path4351-9-5"
219
+ d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
220
+ id="path4351-9"
441
221
  inkscape:connector-curvature="0"
442
222
  sodipodi:nodetypes="cccccccc" />
443
223
  <rect
444
- style="fill:#d3d3d3;fill-opacity:1;stroke:none"
445
- id="rect3754-65"
224
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
225
+ id="rect3754-25"
446
226
  width="16"
447
227
  height="16"
448
228
  x="100"
449
- y="27.99992" />
229
+ y="3.9999199" />
450
230
  <path
451
231
  style="fill:#ffffff;fill-opacity:1;stroke:none"
452
- d="m 103.719,29.671937 0,12.71878 3.03125,0 0,-1.5313 -1.34375,0 0,-9.62498 1.375,0 0,-1.5625 z"
453
- id="path2987-8"
232
+ d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
233
+ id="path2987"
454
234
  inkscape:connector-curvature="0" />
455
235
  <path
456
236
  style="fill:#ffffff;fill-opacity:1;stroke:none"
457
- d="m 112.2185,29.671937 0,12.71878 -3.03125,0 0,-1.5313 1.34375,0 0,-9.62498 -1.375,0 0,-1.5625 z"
458
- id="path2987-1-9"
237
+ d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
238
+ id="path2987-1"
459
239
  inkscape:connector-curvature="0" />
460
240
  <rect
461
- style="fill:#d3d3d3;fill-opacity:1;stroke:none"
462
- id="rect3754-92"
241
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
242
+ id="rect3754-73"
463
243
  width="16"
464
244
  height="16"
465
245
  x="124"
466
- y="27.99992" />
246
+ y="3.9999199" />
467
247
  <path
468
248
  style="fill:#ffffff;fill-opacity:1;stroke:none"
469
- d="m 126.2824,41.602917 1.78957,0 1.14143,-2.86408 5.65364,0 1.14856,2.86408 1.76565,0 -4.78687,-11.16108 -1.91902,0 z"
470
- id="path3780-9"
249
+ d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
250
+ id="path3780"
471
251
  inkscape:connector-curvature="0"
472
252
  sodipodi:nodetypes="ccccccccc" />
473
253
  <path
474
- style="fill:#d3d3d3;fill-opacity:1;stroke:none"
475
- d="m 129.72704,37.478837 4.60852,0.01 -2.30426,-5.5498 z"
476
- id="path3782-2"
254
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
255
+ d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
256
+ id="path3782"
477
257
  inkscape:connector-curvature="0" />
478
258
  <rect
479
- style="fill:#d3d3d3;fill-opacity:1;stroke:none"
480
- id="rect3754-47"
259
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
260
+ id="rect3754-35"
481
261
  width="16"
482
262
  height="16"
483
263
  x="148"
484
- y="27.99992" />
264
+ y="3.9999199" />
485
265
  <path
486
266
  style="fill:#ffffff;fill-opacity:1;stroke:none"
487
- d="m 156.47656,29.891737 0,2.1797 0.46093,2.3984 1.82813,0 0.39844,-2.3984 0,-2.1797 z"
488
- id="path5008-2-1"
267
+ d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
268
+ id="path5008-2"
489
269
  inkscape:connector-curvature="0"
490
270
  sodipodi:nodetypes="ccccccc" />
491
271
  <path
492
272
  style="fill:#ffffff;fill-opacity:1;stroke:none"
493
- d="m 152.51562,29.890637 0,2.1797 0.46094,2.3984 1.82812,0 0.39844,-2.3984 0,-2.1797 z"
494
- id="path5008-2-8-8"
273
+ d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
274
+ id="path5008-2-8"
495
275
  inkscape:connector-curvature="0"
496
276
  sodipodi:nodetypes="ccccccc" />
497
277
  <rect
@@ -710,49 +490,49 @@
710
490
  width="15.99999"
711
491
  y="101"
712
492
  x="76.000008"
713
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
493
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
714
494
  <rect
715
495
  id="rect4761-0"
716
496
  height="1.9999945"
717
497
  width="15.99999"
718
498
  y="105"
719
499
  x="76.000008"
720
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
500
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
721
501
  <rect
722
502
  id="rect4761-7"
723
503
  height="1.9999945"
724
504
  width="9"
725
505
  y="109"
726
506
  x="76.000008"
727
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
507
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
728
508
  <rect
729
509
  id="rect4761-1-1"
730
510
  height="1.9999945"
731
511
  width="12"
732
512
  y="125"
733
513
  x="76.000008"
734
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
514
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
735
515
  <rect
736
516
  id="rect4761-1-1-4"
737
517
  height="1.9999945"
738
518
  width="10"
739
519
  y="137"
740
520
  x="76.000008"
741
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
521
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
742
522
  <rect
743
523
  id="rect4761-1-1-4-4"
744
524
  height="1.9999945"
745
525
  width="10"
746
526
  y="129"
747
527
  x="82"
748
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
528
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
749
529
  <rect
750
530
  id="rect4761-1-1-4-4-3"
751
531
  height="1.9999945"
752
532
  width="9"
753
533
  y="133"
754
534
  x="82"
755
- style="fill:#ffffff;fill-opacity:0.80000007;stroke:none;stroke-width:0" />
535
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
756
536
  <path
757
537
  inkscape:connector-curvature="0"
758
538
  style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
@@ -765,17 +545,17 @@
765
545
  id="path4138-1" />
766
546
  <path
767
547
  inkscape:connector-curvature="0"
768
- style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.966;stroke-miterlimit:4;stroke-dasharray:none"
548
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
769
549
  d="m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z"
770
550
  id="path3055-0-77" />
771
551
  <path
772
- style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.966;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
552
+ style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
773
553
  d="m 4.9850574,108.015 14.0298856,-0.03"
774
554
  id="path5244-5-0-5"
775
555
  inkscape:connector-curvature="0"
776
556
  sodipodi:nodetypes="cc" />
777
557
  <path
778
- style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.966;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
558
+ style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
779
559
  d="m 4.9849874,132.015 14.0298866,-0.03"
780
560
  id="path5244-5-0-5-8"
781
561
  inkscape:connector-curvature="0"
@@ -793,17 +573,17 @@
793
573
  <path
794
574
  id="path6191"
795
575
  d="m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z"
796
- style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.966;stroke-miterlimit:4;stroke-dasharray:none"
576
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
797
577
  inkscape:connector-curvature="0" />
798
578
  <path
799
579
  inkscape:connector-curvature="0"
800
- style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.966;stroke-miterlimit:4;stroke-dasharray:none"
580
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
801
581
  d="m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z"
802
582
  id="path6193" />
803
583
  <path
804
584
  id="path6195"
805
585
  d="m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z"
806
- style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.966;stroke-miterlimit:4;stroke-dasharray:none"
586
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
807
587
  inkscape:connector-curvature="0" />
808
588
  <path
809
589
  sodipodi:type="star"
@@ -890,4 +670,67 @@
890
670
  id="path4300-6"
891
671
  inkscape:connector-curvature="0"
892
672
  sodipodi:nodetypes="cccc" />
673
+ <path
674
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8"
675
+ d="M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z"
676
+ id="path4268"
677
+ inkscape:connector-curvature="0"
678
+ sodipodi:nodetypes="ccccccccccccccc" />
679
+ <rect
680
+ id="rect4175-3-5"
681
+ height="16"
682
+ width="16"
683
+ y="4"
684
+ x="220"
685
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
686
+ <path
687
+ style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
688
+ d="m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2"
689
+ id="path3546"
690
+ inkscape:connector-curvature="0"
691
+ sodipodi:nodetypes="cccccccc" />
692
+ <g
693
+ transform="matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)"
694
+ id="g4383-6">
695
+ <rect
696
+ id="rect4385-2"
697
+ height="1.2499905"
698
+ width="5.9999924"
699
+ y="12.625005"
700
+ x="198.00002"
701
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0" />
702
+ <rect
703
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
704
+ x="198.00002"
705
+ y="15.125007"
706
+ width="7.4999928"
707
+ height="1.2499949"
708
+ id="rect4387-9" />
709
+ <rect
710
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
711
+ x="198.00002"
712
+ y="7.6250024"
713
+ width="2.9999909"
714
+ height="1.2499905"
715
+ id="rect4389-1-0" />
716
+ <rect
717
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
718
+ x="198.00002"
719
+ y="10.125004"
720
+ width="4.4999919"
721
+ height="1.2499905"
722
+ id="rect4389-1-9" />
723
+ <path
724
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
725
+ d="m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0"
726
+ id="path4402"
727
+ inkscape:connector-curvature="0"
728
+ sodipodi:nodetypes="cccccccc" />
729
+ </g>
730
+ <path
731
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
732
+ d="m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3"
733
+ id="path3546-2-2"
734
+ inkscape:connector-curvature="0"
735
+ sodipodi:nodetypes="cccccccc" />
893
736
  </svg>