metanorma-document 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/BUGS.sts/08-list-items-duplicate-bullets.md +45 -0
- data/data/stylesheets/components/header.css +3 -5
- data/data/stylesheets/components/lists.css +14 -0
- data/lib/metanorma/document/version.rb +1 -1
- data/lib/metanorma/document.rb +1 -1
- data/lib/metanorma/html/asset_pipeline.rb +1 -0
- data/lib/metanorma/html/base_renderer.rb +20 -2
- data/lib/metanorma/html/generator.rb +0 -7
- data/lib/metanorma/html/renderers/block_renderer.rb +31 -5
- data/lib/metanorma/html/renderers/inline_renderer.rb +3 -1
- data/lib/metanorma/html/templates/_list_item.html.liquid +1 -1
- data/lib/metanorma/html/theme.rb +38 -11
- data/lib/metanorma/html.rb +0 -1
- data/lib/metanorma/registers/setup.rb +0 -6
- data/tasks/roundtrip_samples.rake +1 -1
- metadata +4 -11
- data/data/logos/oiml-logo-full-dark.svg +0 -1
- data/data/logos/oiml-logo-full-light.svg +0 -1
- data/data/logos/oiml-logo-icon-dark.svg +0 -1
- data/data/logos/oiml-logo-icon-light.svg +0 -1
- data/data/logos/oiml-logo.svg +0 -1
- data/data/themes/oiml.yaml +0 -56
- data/lib/metanorma/html/oiml_renderer.rb +0 -33
- data/lib/metanorma/oiml_document/root.rb +0 -27
- data/lib/metanorma/oiml_document.rb +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 327323438369aca0879bcfd2556b9de423e78121abb553eeb92bae8010871c4e
|
|
4
|
+
data.tar.gz: 61d1c5e8020b823c678f528189465d2df5fa234435b8f60a2ea61da0329c96c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bde230705b324432565d10b68a7e570252c787dbe4ea388bddc8a1d89b4dabb57aad2c79ecfe34a077311a5f90436b3c12140c828099447b2a844531192225cc
|
|
7
|
+
data.tar.gz: 758cb7e3ac461c0c778fcc721e90bea016400609004de98907a3076c1229723adf1e77b270e9a4ff83688fb4a9aa722d23496aade611d809f821a7b640579cbb
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Bug 08: list items render with both browser and PXML bullets
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
In presentation XML, list items carry their authoritative marker in
|
|
5
|
+
`<fmt-name>` (the autonum result: `—` for unordered lists, `1.` etc. for
|
|
6
|
+
ordered lists). `FmtNameElement` is registered as a transparent inline
|
|
7
|
+
wrapper, so `render_list_item_content` emitted the marker inline in the
|
|
8
|
+
item text — while the HTML `<ul>`/`<ol>` still got the browser's default
|
|
9
|
+
`list-style` marker on top. Every labeled list item showed two markers.
|
|
10
|
+
|
|
11
|
+
## Affected Version
|
|
12
|
+
`metanorma-document` 0.2.12
|
|
13
|
+
|
|
14
|
+
## Reproduction
|
|
15
|
+
|
|
16
|
+
```ruby
|
|
17
|
+
require "metanorma/document"
|
|
18
|
+
|
|
19
|
+
doc = Metanorma::OimlDocument::Root.from_xml(<<~XML)
|
|
20
|
+
<standard xmlns="https://www.metanorma.org/ns/standoc">
|
|
21
|
+
<sections>
|
|
22
|
+
<clause><p>Intro:</p>
|
|
23
|
+
<ul><li>
|
|
24
|
+
<fmt-name><semx element="autonum">—</semx></fmt-name>
|
|
25
|
+
<p>item text</p>
|
|
26
|
+
</li></ul>
|
|
27
|
+
</clause>
|
|
28
|
+
</sections>
|
|
29
|
+
</standard>
|
|
30
|
+
XML
|
|
31
|
+
html = Metanorma::Html::Generator.generate(doc)
|
|
32
|
+
# => <li> contained an inline "—" AND the browser's disc bullet
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Fix
|
|
36
|
+
`render_unordered_list` / `render_ordered_list` now detect items whose
|
|
37
|
+
`fmt-name` yields a non-empty label. In that case the list gets the
|
|
38
|
+
`mn-labeled-list` class (`list-style: none`, hanging indent via
|
|
39
|
+
`components/lists.css`), the `fmt-name` is skipped in the inline walk
|
|
40
|
+
(new `skip_classes:` option on `render_mixed_content_in_order`), and the
|
|
41
|
+
label is rendered as the item marker in `<span class="li-label">`.
|
|
42
|
+
Lists without `fmt-name` keep the browser's default markers.
|
|
43
|
+
|
|
44
|
+
Covered by the "labeled lists (fmt-name markers)" examples in
|
|
45
|
+
`spec/metanorma/html/renderer/base_renderer_spec.rb`.
|
|
@@ -46,13 +46,11 @@
|
|
|
46
46
|
[data-theme="dark"] .brand-logo-dark,
|
|
47
47
|
[data-theme="oled"] .brand-logo-dark { display: inline-flex !important; }
|
|
48
48
|
|
|
49
|
-
/* Cover logo
|
|
49
|
+
/* Cover logo: the pill behind it is always light
|
|
50
|
+
(rgba(255,255,255,0.92)), so the cover always uses the
|
|
51
|
+
for-light-background logo file regardless of page theme. */
|
|
50
52
|
.cover-logo-dark { display: none !important; }
|
|
51
53
|
.cover-logo-light { display: inline-flex; }
|
|
52
|
-
[data-theme="dark"] .cover-logo-light,
|
|
53
|
-
[data-theme="oled"] .cover-logo-light { display: none !important; }
|
|
54
|
-
[data-theme="dark"] .cover-logo-dark,
|
|
55
|
-
[data-theme="oled"] .cover-logo-dark { display: inline-flex !important; }
|
|
56
54
|
.header-doc-id {
|
|
57
55
|
font-family: var(--font-sans); font-size: 0.82em; opacity: 0.85;
|
|
58
56
|
font-weight: 600; letter-spacing: 0.02em;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* Labeled lists: the item markers (bullets, numbers) come from the
|
|
2
|
+
presentation XML (fmt-name / autonum), so the browser's own
|
|
3
|
+
list-style markers are suppressed to avoid double markers. */
|
|
4
|
+
|
|
5
|
+
.mn-labeled-list {
|
|
6
|
+
list-style: none;
|
|
7
|
+
padding-left: 2.25em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mn-labeled-list .li-label {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
width: 2.25em;
|
|
13
|
+
margin-left: -2.25em;
|
|
14
|
+
}
|
data/lib/metanorma/document.rb
CHANGED
|
@@ -21,6 +21,7 @@ module Metanorma
|
|
|
21
21
|
autoload :Relaton, "metanorma/document/relaton"
|
|
22
22
|
autoload :Root, "metanorma/document/root"
|
|
23
23
|
autoload :Version, "metanorma/document/version"
|
|
24
|
+
autoload :VERSION, "metanorma/document/version"
|
|
24
25
|
autoload :CLI, "metanorma/document/cli"
|
|
25
26
|
|
|
26
27
|
module_function
|
|
@@ -44,7 +45,6 @@ module Metanorma
|
|
|
44
45
|
autoload :IeeeDocument, "metanorma/ieee_document"
|
|
45
46
|
autoload :IetfDocument, "metanorma/ietf_document"
|
|
46
47
|
autoload :IhoDocument, "metanorma/iho_document"
|
|
47
|
-
autoload :OimlDocument, "metanorma/oiml_document"
|
|
48
48
|
autoload :CcDocument, "metanorma/cc_document"
|
|
49
49
|
autoload :CsaDocument, "metanorma/csa_document"
|
|
50
50
|
autoload :BipmDocument, "metanorma/bipm_document"
|
|
@@ -133,8 +133,9 @@ module Metanorma
|
|
|
133
133
|
|
|
134
134
|
attr_writer :document, :theme
|
|
135
135
|
|
|
136
|
-
def generate_full_document(document, **)
|
|
136
|
+
def generate_full_document(document, theme: nil, **)
|
|
137
137
|
@document = document
|
|
138
|
+
@theme_override = theme
|
|
138
139
|
validate_presentation_xml!
|
|
139
140
|
|
|
140
141
|
body = render(@document) || ""
|
|
@@ -157,10 +158,27 @@ module Metanorma
|
|
|
157
158
|
end
|
|
158
159
|
|
|
159
160
|
def resolve_theme
|
|
161
|
+
return load_theme_override(@theme_override) if @theme_override
|
|
162
|
+
|
|
160
163
|
flavor = flavor_name
|
|
161
164
|
flavor ? Theme.load(flavor) : Theme.new
|
|
162
165
|
end
|
|
163
166
|
|
|
167
|
+
# A theme override given to Generator.generate: a Theme instance,
|
|
168
|
+
# a path to a theme directory (theme.yaml with assets/, templates/
|
|
169
|
+
# and custom.css alongside), or a path to a bare theme.yaml file.
|
|
170
|
+
# This is how an organization customizes the output without
|
|
171
|
+
# changing any code.
|
|
172
|
+
def load_theme_override(override)
|
|
173
|
+
return override if override.is_a?(Theme)
|
|
174
|
+
|
|
175
|
+
if File.directory?(override)
|
|
176
|
+
Theme.from_theme_dir(override)
|
|
177
|
+
else
|
|
178
|
+
Theme.from_file(override)
|
|
179
|
+
end
|
|
180
|
+
end
|
|
181
|
+
|
|
164
182
|
def flavor_name
|
|
165
183
|
return nil unless defined?(@document) && @document
|
|
166
184
|
|
|
@@ -579,7 +597,7 @@ module Metanorma
|
|
|
579
597
|
def render_fn(fn) = @inline_renderer.render_fn(fn)
|
|
580
598
|
def render_concept(concept) = @inline_renderer.render_concept(concept)
|
|
581
599
|
def render_fmt_stem(fmt_stem) = @inline_renderer.render_fmt_stem(fmt_stem)
|
|
582
|
-
def render_mixed_content_in_order(node) = @inline_renderer.render_mixed_content_in_order(node)
|
|
600
|
+
def render_mixed_content_in_order(node, **) = @inline_renderer.render_mixed_content_in_order(node, **)
|
|
583
601
|
|
|
584
602
|
# Block rendering delegation
|
|
585
603
|
def render_paragraph(p,
|
|
@@ -95,7 +95,6 @@ module Metanorma
|
|
|
95
95
|
IhoRenderer
|
|
96
96
|
ItuRenderer
|
|
97
97
|
OgcRenderer
|
|
98
|
-
OimlRenderer
|
|
99
98
|
PdfaRenderer
|
|
100
99
|
RiboseRenderer
|
|
101
100
|
|
|
@@ -177,12 +176,6 @@ module Metanorma
|
|
|
177
176
|
model_class: Metanorma::OgcDocument::Root,
|
|
178
177
|
renderer_class: OgcRenderer,
|
|
179
178
|
))
|
|
180
|
-
registry.register(Flavor.new(
|
|
181
|
-
name: :oiml,
|
|
182
|
-
model_class: Metanorma::OimlDocument::Root,
|
|
183
|
-
renderer_class: OimlRenderer,
|
|
184
|
-
pubid_module: :"Pubid::Oiml",
|
|
185
|
-
))
|
|
186
179
|
registry.register(Flavor.new(
|
|
187
180
|
name: :pdfa,
|
|
188
181
|
model_class: Metanorma::RiboseDocument::Root,
|
|
@@ -154,9 +154,11 @@ module Metanorma
|
|
|
154
154
|
end
|
|
155
155
|
|
|
156
156
|
def render_unordered_list(ul, **_opts)
|
|
157
|
-
|
|
157
|
+
labeled = ul.listitem&.any? { |li| list_label(li) } || false
|
|
158
|
+
attrs = element_attrs(id: safe_attr(ul, :id),
|
|
159
|
+
class: labeled ? "mn-labeled-list" : nil)
|
|
158
160
|
items = ul.listitem&.filter_map do |li|
|
|
159
|
-
render_list_item_content(li)
|
|
161
|
+
render_list_item_content(li, labeled: labeled)
|
|
160
162
|
end || []
|
|
161
163
|
render_liquid("_list.html.liquid", {
|
|
162
164
|
"list_tag" => "ul",
|
|
@@ -182,10 +184,12 @@ module Metanorma
|
|
|
182
184
|
end
|
|
183
185
|
|
|
184
186
|
def render_ordered_list(ol, **_opts)
|
|
187
|
+
labeled = ol.listitem&.any? { |li| list_label(li) } || false
|
|
185
188
|
attrs = element_attrs(id: safe_attr(ol, :id),
|
|
189
|
+
class: labeled ? "mn-labeled-list" : nil,
|
|
186
190
|
start: safe_attr(ol, :start), type: safe_attr(ol, :type_attr))
|
|
187
191
|
items = ol.listitem&.filter_map do |li|
|
|
188
|
-
render_list_item_content(li)
|
|
192
|
+
render_list_item_content(li, labeled: labeled)
|
|
189
193
|
end || []
|
|
190
194
|
render_liquid("_list.html.liquid", {
|
|
191
195
|
"list_tag" => "ol",
|
|
@@ -194,14 +198,36 @@ module Metanorma
|
|
|
194
198
|
})
|
|
195
199
|
end
|
|
196
200
|
|
|
197
|
-
def render_list_item_content(li)
|
|
201
|
+
def render_list_item_content(li, labeled: false)
|
|
198
202
|
li_id = safe_attr(li, :id)
|
|
199
203
|
attrs = li_id ? %( id="#{escape_html(li_id)}") : ""
|
|
200
|
-
|
|
204
|
+
label = labeled ? list_label(li) : nil
|
|
205
|
+
inner = if label
|
|
206
|
+
coordinator.render_mixed_content_in_order(
|
|
207
|
+
li,
|
|
208
|
+
skip_classes: [Metanorma::Document::Components::Inline::FmtNameElement],
|
|
209
|
+
)
|
|
210
|
+
else
|
|
211
|
+
coordinator.render_mixed_content_in_order(li)
|
|
212
|
+
end
|
|
201
213
|
render_liquid("_list_item.html.liquid", "attrs" => attrs,
|
|
214
|
+
"label" => label && escape_html(label),
|
|
202
215
|
"content" => inner)
|
|
203
216
|
end
|
|
204
217
|
|
|
218
|
+
# Label glyph for a list item, taken from the presentation XML
|
|
219
|
+
# (the item's fmt-name/autonum). The presentation XML is
|
|
220
|
+
# authoritative for the bullet or number; when present it is
|
|
221
|
+
# rendered as the item marker and the browser's own list-style
|
|
222
|
+
# marker is suppressed (see components/lists.css).
|
|
223
|
+
def list_label(li)
|
|
224
|
+
fmt_name = coordinator.safe_attr(li, :fmt_name)
|
|
225
|
+
return nil unless fmt_name
|
|
226
|
+
|
|
227
|
+
label = coordinator.extract_plain_text(fmt_name).strip
|
|
228
|
+
label.empty? ? nil : label
|
|
229
|
+
end
|
|
230
|
+
|
|
205
231
|
def render_definition_list(dl, **_opts)
|
|
206
232
|
attrs = element_attrs(id: safe_attr(dl, :id))
|
|
207
233
|
terms = dl.dt&.each_with_index&.map do |dt, i|
|
|
@@ -530,9 +530,11 @@ module Metanorma
|
|
|
530
530
|
end
|
|
531
531
|
end
|
|
532
532
|
|
|
533
|
-
def render_mixed_content_in_order(node)
|
|
533
|
+
def render_mixed_content_in_order(node, skip_classes: nil)
|
|
534
534
|
parts = []
|
|
535
535
|
node.each_mixed_content do |child|
|
|
536
|
+
next if skip_classes&.any? { |klass| child.is_a?(klass) }
|
|
537
|
+
|
|
536
538
|
parts << case child
|
|
537
539
|
when String
|
|
538
540
|
escape_html(child)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<li{{ attrs }}>{{ content }}</li>
|
|
1
|
+
<li{{ attrs }}>{% if label %}<span class="li-label">{{ label }}</span>{% endif %}{{ content }}</li>
|
data/lib/metanorma/html/theme.rb
CHANGED
|
@@ -120,26 +120,53 @@ module Metanorma
|
|
|
120
120
|
# --- Non-YAML state (set programmatically) ---
|
|
121
121
|
attr_accessor :theme_dir
|
|
122
122
|
|
|
123
|
+
# Additional theme directories registered by flavor gems (e.g.
|
|
124
|
+
# metanorma-oiml). Searched before the built-in THEMES_DIR so a
|
|
125
|
+
# flavor can ship its own `themes/<flavor>/theme.yaml` (directory
|
|
126
|
+
# form, with assets/templates/custom.css alongside) outside this gem.
|
|
127
|
+
@extra_themes_dirs = []
|
|
128
|
+
|
|
129
|
+
class << self
|
|
130
|
+
attr_reader :extra_themes_dirs
|
|
131
|
+
|
|
132
|
+
def register_themes_dir(dir)
|
|
133
|
+
@extra_themes_dirs.unshift(File.expand_path(dir))
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
def themes_dirs
|
|
137
|
+
@extra_themes_dirs + [THEMES_DIR]
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
123
141
|
def self.load(flavor)
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
from_directory(dir_theme, flavor)
|
|
129
|
-
|
|
130
|
-
from_file(flat_theme)
|
|
131
|
-
else
|
|
132
|
-
new
|
|
142
|
+
themes_dirs.each do |themes_dir|
|
|
143
|
+
dir_theme = File.join(themes_dir, flavor.to_s, "theme.yaml")
|
|
144
|
+
flat_theme = File.join(themes_dir, "#{flavor}.yaml")
|
|
145
|
+
|
|
146
|
+
return from_directory(dir_theme, flavor, themes_dir) if File.exist?(dir_theme)
|
|
147
|
+
return from_file(flat_theme) if File.exist?(flat_theme)
|
|
133
148
|
end
|
|
149
|
+
|
|
150
|
+
new
|
|
134
151
|
end
|
|
135
152
|
|
|
136
153
|
def self.from_file(path)
|
|
137
154
|
from_yaml(File.read(path))
|
|
138
155
|
end
|
|
139
156
|
|
|
140
|
-
def self.from_directory(path, flavor)
|
|
157
|
+
def self.from_directory(path, flavor, themes_dir = THEMES_DIR)
|
|
141
158
|
theme = from_yaml(File.read(path))
|
|
142
|
-
theme.theme_dir = File.join(
|
|
159
|
+
theme.theme_dir = File.join(themes_dir, flavor.to_s)
|
|
160
|
+
theme
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# Load a theme from an external theme directory: `dir/theme.yaml`
|
|
164
|
+
# with optional `assets/`, `templates/` and `custom.css` resolved
|
|
165
|
+
# relative to `dir`. This is the entry point for organization-local
|
|
166
|
+
# themes living outside any gem.
|
|
167
|
+
def self.from_theme_dir(dir)
|
|
168
|
+
theme = from_yaml(File.read(File.join(dir, "theme.yaml")))
|
|
169
|
+
theme.theme_dir = dir
|
|
143
170
|
theme
|
|
144
171
|
end
|
|
145
172
|
|
data/lib/metanorma/html.rb
CHANGED
|
@@ -35,7 +35,6 @@ module Metanorma
|
|
|
35
35
|
autoload :IhoRenderer, "metanorma/html/iho_renderer"
|
|
36
36
|
autoload :ItuRenderer, "metanorma/html/itu_renderer"
|
|
37
37
|
autoload :OgcRenderer, "metanorma/html/ogc_renderer"
|
|
38
|
-
autoload :OimlRenderer, "metanorma/html/oiml_renderer"
|
|
39
38
|
autoload :RiboseRenderer, "metanorma/html/ribose_renderer"
|
|
40
39
|
end
|
|
41
40
|
end
|
|
@@ -38,12 +38,6 @@ module Metanorma
|
|
|
38
38
|
Lutaml::Model::GlobalRegister.register(reg)
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
def setup_oiml_register
|
|
42
|
-
reg = Lutaml::Model::Register.new(:oiml_document,
|
|
43
|
-
fallback: [:iso_document])
|
|
44
|
-
Lutaml::Model::GlobalRegister.register(reg)
|
|
45
|
-
end
|
|
46
|
-
|
|
47
41
|
def setup_csa_register
|
|
48
42
|
reg = Lutaml::Model::Register.new(:csa_document,
|
|
49
43
|
fallback: [:iso_document])
|
|
@@ -37,11 +37,11 @@ module RoundtripSamples
|
|
|
37
37
|
|
|
38
38
|
# Maps mn-samples-* repo name to the model class for round-tripping.
|
|
39
39
|
# nil means no document model exists yet — reported as "no_model".
|
|
40
|
+
# OIML moved to the metanorma-oiml gem — its roundtrip lives there.
|
|
40
41
|
FLAVOR_MODEL_MAP = {
|
|
41
42
|
"iso" => Metanorma::IsoDocument::Root,
|
|
42
43
|
"iec" => Metanorma::IecDocument::Root,
|
|
43
44
|
"ieee" => Metanorma::IeeeDocument::Root,
|
|
44
|
-
"oiml" => Metanorma::OimlDocument::Root,
|
|
45
45
|
"iho" => Metanorma::IhoDocument::Root,
|
|
46
46
|
"cc" => Metanorma::CcDocument::Root,
|
|
47
47
|
"bipm" => Metanorma::BipmDocument::Root,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma-document
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lutaml-model
|
|
@@ -82,6 +82,7 @@ executables:
|
|
|
82
82
|
extensions: []
|
|
83
83
|
extra_rdoc_files: []
|
|
84
84
|
files:
|
|
85
|
+
- BUGS.sts/08-list-items-duplicate-bullets.md
|
|
85
86
|
- CHANGELOG.md
|
|
86
87
|
- CLAUDE.md
|
|
87
88
|
- LICENSE.txt
|
|
@@ -109,11 +110,6 @@ files:
|
|
|
109
110
|
- data/logos/itu-logo.svg
|
|
110
111
|
- data/logos/metanorma-logo.svg
|
|
111
112
|
- data/logos/ogc-logo.svg
|
|
112
|
-
- data/logos/oiml-logo-full-dark.svg
|
|
113
|
-
- data/logos/oiml-logo-full-light.svg
|
|
114
|
-
- data/logos/oiml-logo-icon-dark.svg
|
|
115
|
-
- data/logos/oiml-logo-icon-light.svg
|
|
116
|
-
- data/logos/oiml-logo.svg
|
|
117
113
|
- data/logos/pdfa-logo.svg
|
|
118
114
|
- data/stylesheets/base/_dark.css
|
|
119
115
|
- data/stylesheets/base/_layout.css
|
|
@@ -133,6 +129,7 @@ files:
|
|
|
133
129
|
- data/stylesheets/components/header.css
|
|
134
130
|
- data/stylesheets/components/index.css
|
|
135
131
|
- data/stylesheets/components/inline.css
|
|
132
|
+
- data/stylesheets/components/lists.css
|
|
136
133
|
- data/stylesheets/components/note.css
|
|
137
134
|
- data/stylesheets/components/progress.css
|
|
138
135
|
- data/stylesheets/components/search.css
|
|
@@ -152,7 +149,6 @@ files:
|
|
|
152
149
|
- data/themes/iso.yaml
|
|
153
150
|
- data/themes/itu.yaml
|
|
154
151
|
- data/themes/ogc.yaml
|
|
155
|
-
- data/themes/oiml.yaml
|
|
156
152
|
- data/themes/pdfa.yaml
|
|
157
153
|
- data/themes/ribose.yaml
|
|
158
154
|
- exe/metanorma-document
|
|
@@ -660,7 +656,6 @@ files:
|
|
|
660
656
|
- lib/metanorma/html/iso_renderer.rb
|
|
661
657
|
- lib/metanorma/html/itu_renderer.rb
|
|
662
658
|
- lib/metanorma/html/ogc_renderer.rb
|
|
663
|
-
- lib/metanorma/html/oiml_renderer.rb
|
|
664
659
|
- lib/metanorma/html/pdfa_renderer.rb
|
|
665
660
|
- lib/metanorma/html/renderer_delegation.rb
|
|
666
661
|
- lib/metanorma/html/renderers.rb
|
|
@@ -900,8 +895,6 @@ files:
|
|
|
900
895
|
- lib/metanorma/ogc_document/metadata/ogc_bib_data_extension_type.rb
|
|
901
896
|
- lib/metanorma/ogc_document/metadata/ogc_bibliographic_item.rb
|
|
902
897
|
- lib/metanorma/ogc_document/root.rb
|
|
903
|
-
- lib/metanorma/oiml_document.rb
|
|
904
|
-
- lib/metanorma/oiml_document/root.rb
|
|
905
898
|
- lib/metanorma/plateau_document.rb
|
|
906
899
|
- lib/metanorma/plateau_document/metadata.rb
|
|
907
900
|
- lib/metanorma/plateau_document/metadata/plateau_bibliographic_item.rb
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-5c01357f-f62a-4354-ab99-a8490b285ec4" xmlns="http://www.w3.org/2000/svg" width="1100" height="400" viewBox="0 0 1100 400"><path d="m225.25,365.25c-91,0-165-74-165-165S134.25,35.25,225.25,35.25s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#61b4ff; stroke-width:0px;"/><path d="m77.35,251.85c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3s-43.5,23.3-43.5,46.3c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#fff; fill-rule:evenodd; stroke-width:0px;"/><polygon points="177.55 160.15 191.35 160.15 191.35 156.65 145.95 156.65 145.95 160.15 159.75 160.15 159.75 246.25 145.95 246.25 145.95 249.75 191.35 249.75 191.35 246.25 177.55 246.25 177.55 160.15" style="fill:#fff; stroke-width:0px;"/><polygon points="309.35 160.15 323.15 160.15 323.15 156.65 287.95 156.65 267.75 220.35 248.15 156.65 212.25 156.65 212.25 160.15 226.05 160.15 226.05 246.25 212.25 246.25 212.25 249.75 244.05 249.75 244.05 246.25 230.45 246.25 230.45 162.45 230.75 162.45 258.55 249.75 263.25 249.75 291.15 162.45 291.55 162.45 291.55 246.25 277.75 246.25 277.75 249.75 323.15 249.75 323.15 246.25 309.35 246.25 309.35 160.15" style="fill:#fff; stroke-width:0px;"/><path d="m420.35,249.75l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3,0Z" style="fill:#fff; stroke-width:0px;"/><path d="m225.95,365.35h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6c13.8-72.4,53.7-115.5,106.8-115.5h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#61b4ff; stroke-width:0px;"/><path d="m484.15,84.85c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8c1.2-2,2.8-3.6,4.9-4.8s4.5-1.7,7.1-1.7,4.9.6,7,1.7,3.7,2.7,4.9,4.8c1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8c-1.2,2-2.8,3.6-4.9,4.8-2.1,1.1-4.4,1.7-7,1.7s-5-.5-7.1-1.7m12.7-2.1c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9c-1,1.7-1.4,3.5-1.4,5.6s.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.5,5.6-1.4" style="fill:#fff; stroke-width:0px;"/><path d="m515.95,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.9-3.1" style="fill:#fff; stroke-width:0px;"/><path d="m543.35,66.75v17.2c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8-1.3.6-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.2-1.5-.8-2.7-1.9-3.6-3.4s-1.3-3.1-1.3-5c0-1.8.4-3.5,1.3-4.9.9-1.4,2-2.6,3.5-3.4s3.2-1.2,5.1-1.2c1.7,0,3.2.3,4.5,1,1.3.7,2.4,1.6,3.3,2.9v-3.8h2.4v.1h0Zm-6.3,15.6c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9s-2,1.4-2.7,2.5c-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.8-.3,3.9-.9" style="fill:#fff; stroke-width:0px;"/><path d="m563.55,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m588.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m598.15,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m608.85,85.85c-1.5-.5-2.6-1-3.4-1.7l1.2-2.1c.8.6,1.9,1.2,3.1,1.6,1.2.4,2.5.6,3.9.6,1.8,0,3.1-.3,4-.8.9-.6,1.3-1.4,1.3-2.4,0-.7-.2-1.3-.7-1.7s-1.1-.7-1.8-.9c-.7-.2-1.7-.4-2.9-.6-1.6-.3-2.9-.6-3.9-.9s-1.8-.8-2.5-1.6c-.7-.7-1-1.8-1-3.1,0-1.6.7-3,2.1-4,1.4-1,3.3-1.6,5.7-1.6,1.3,0,2.5.2,3.8.5,1.3.3,2.3.8,3.1,1.3l-1.2,2.1c-1.6-1.1-3.6-1.7-5.8-1.7-1.7,0-3,.3-3.8.9-.9.6-1.3,1.4-1.3,2.4,0,.7.2,1.3.7,1.8.5.4,1.1.8,1.8,1s1.7.4,3,.7c1.6.3,2.8.6,3.8.9.9.3,1.8.8,2.4,1.5.6.7,1,1.7,1,3,0,1.7-.7,3.1-2.1,4.1-1.4,1-3.4,1.5-6,1.5-1.5-.1-3-.3-4.5-.8" style="fill:#fff; stroke-width:0px;"/><path d="m639.25,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.5.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m658.95,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m663.75,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m676.75,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m713.15,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.6v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.5,0,4.5.7,5.9,2.2" style="fill:#fff; stroke-width:0px;"/><rect x="739.15" y="60.25" width="2.8" height="26.2" style="fill:#fff; stroke-width:0px;"/><path d="m765.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m785.55,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m806.75,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2,0-3.6.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m817.55,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9s-1.8,3.1-1.8,5.3v10h-2.6v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.8-3.1" style="fill:#fff; stroke-width:0px;"/><path d="m842.85,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m865.05,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m884.65,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m889.45,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.5,0-1-.2-1.4-.6m.1,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m902.55,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.8-2c1.1-.6,2-1.5,2.6-2.7s.9-2.5.9-4-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.5,0,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m938.95,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m961.15,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><rect x="970.45" y="58.65" width="2.7" height="27.8" style="fill:#fff; stroke-width:0px;"/><path d="m997.65,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m1037.05,58.65v27.8h-2.5v-3.9c-.8,1.3-1.9,2.3-3.2,3-1.3.7-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.3-1.5-.8-2.7-2-3.5-3.6-.8-1.5-1.3-3.3-1.3-5.2s.4-3.7,1.3-5.2c.8-1.5,2-2.7,3.5-3.5s3.2-1.3,5-1.3c1.6,0,3,.3,4.3,1s2.3,1.6,3.2,2.9v-11.7h2.6Zm-6.2,24.6c1.1-.6,2-1.5,2.6-2.7s1-2.5,1-4-.3-2.8-1-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.7-1c-1.4,0-2.6.3-3.8,1-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.3,0,2.6-.4,3.7-1" style="fill:#fff; stroke-width:0px;"/><path d="m1061.55,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3s-2.8-2.1-3.6-3.6c-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6s3.1-1.3,4.9-1.3,3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2,0,0-.1,1-.1,1Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><polygon points="521.65 157.65 521.55 130.75 508.35 152.95 503.65 152.95 490.55 131.35 490.55 157.75 480.85 157.75 480.85 112.85 489.45 112.85 506.25 140.75 522.75 112.85 531.25 112.85 531.35 157.75 521.65 157.75 521.65 157.65" style="fill:#fff; stroke-width:0px;"/><path d="m573.95,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#fff; stroke-width:0px;"/><path d="m602.15,155.95c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.6h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7Z" style="fill:#fff; stroke-width:0px;"/><path d="m621.25,123.95c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1-1.7,2.6-3,4.7-3.8" style="fill:#fff; stroke-width:0px;"/><path d="m639.55,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7,3.8,2.6,6.3,2.6,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><rect x="673.95" y="110.05" width="10" height="47.6" style="fill:#fff; stroke-width:0px;"/><path d="m698.95,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6s4.6-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><path d="m768.95,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m777.75,116.75c-1.2-1.1-1.7-2.4-1.7-4s.6-2.9,1.7-4c1.2-1.1,2.7-1.6,4.5-1.6s3.3.5,4.5,1.5,1.7,2.3,1.7,3.8c0,1.7-.6,3-1.7,4.1-1.2,1.1-2.6,1.6-4.5,1.6s-3.3-.4-4.5-1.4m-.5,6.4h10v34.5h-10v-34.5Z" style="fill:#fff; stroke-width:0px;"/><path d="m829.25,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.4-.1-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><polygon points="850.25 112.75 860.65 112.75 860.65 149.15 883.15 149.15 883.15 157.65 850.25 157.65 850.25 112.75" style="fill:#fff; stroke-width:0px;"/><path d="m920.65,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#fff; stroke-width:0px;"/><path d="m962.15,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m996.75,126.45c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9s-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.3,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.3-.3,4.7-1.1" style="fill:#fff; stroke-width:0px;"/><rect x="1009.15" y="110.05" width="10" height="47.6" style="fill:#fff; stroke-width:0px;"/><path d="m1061.05,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8s2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3,2.8-1.5,5.9-2.3,9.4-2.3s6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><rect x="475.45" y="195.25" width="587.8" height="3.1" style="fill:#61b4ff; stroke-width:0px;"/><rect x="479.75" y="227.55" width="2.8" height="26.2" style="fill:#fff; stroke-width:0px;"/><path d="m507.55,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m528.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m550.75,244.75h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2-.1-3.6.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m562.65,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.8-1.4,1.7-2.3,2.9-3" style="fill:#fff; stroke-width:0px;"/><path d="m589.15,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m612.45,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m633.15,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m639.15,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m653.25,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m690.85,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m714.15,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><rect x="724.55" y="225.95" width="2.7" height="27.8" style="fill:#fff; stroke-width:0px;"/><path d="m758.85,252.25c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8,2.8-3.6,4.9-4.8c2.1-1.2,4.5-1.7,7.1-1.7s4.9.6,7,1.7c2.1,1.1,3.7,2.7,4.9,4.8,1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8-2.8,3.6-4.9,4.8c-2.1,1.2-4.4,1.7-7,1.7s-5-.6-7.1-1.7m12.7-2.2c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9-1.4,3.5-1.4,5.6.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.4,5.6-1.4" style="fill:#fff; stroke-width:0px;"/><path d="m791.75,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.7-1.4,1.6-2.3,2.9-3" style="fill:#fff; stroke-width:0px;"/><path d="m820.25,234.05v17.3c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8s-2.8,1-4.4,1c-1.8,0-3.5-.4-5-1.2s-2.7-1.9-3.6-3.4c-.9-1.5-1.3-3.1-1.3-5s.4-3.5,1.3-4.9c.9-1.4,2-2.6,3.5-3.4,1.5-.8,3.2-1.2,5.1-1.2,1.7,0,3.2.3,4.5,1s2.4,1.6,3.3,2.9v-3.8h2.4Zm-6.2,15.7c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9-1.1.6-2,1.4-2.7,2.5-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.7-.3,3.9-.9" style="fill:#fff; stroke-width:0px;"/><path d="m841.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m867.95,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m878.45,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><polygon points="903.55 251.55 903.55 253.75 887.55 253.75 887.55 251.95 899.95 236.25 887.75 236.25 887.75 234.05 903.25 234.05 903.25 235.85 890.85 251.55 903.55 251.55" style="fill:#fff; stroke-width:0px;"/><path d="m922.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m943.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m949.35,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m963.45,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3-1.8,0-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m1001.05,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m1032.65,252.65c-1.5-.9-2.7-2.1-3.6-3.6s-1.3-3.2-1.3-5.2.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.9,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m1058.25,228.95c-.6.6-.9,1.5-.9,2.8v2.3h6.1v2.2h-6v17.4h-2.7v-17.4h-3.5v-2.2h3.5v-2.4c0-1.8.5-3.2,1.6-4.3,1-1,2.5-1.6,4.4-1.6.7,0,1.5.1,2.2.3s1.3.5,1.8.9l-.9,2c-.8-.6-1.7-1-2.9-1-1.3.1-2.1.4-2.7,1" style="fill:#fff; stroke-width:0px;"/><polygon points="480.85 280.15 491.25 280.15 491.25 316.55 513.75 316.55 513.75 325.05 480.85 325.05 480.85 280.15" style="fill:#fff; stroke-width:0px;"/><path d="m554.75,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><path d="m599.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m637.85,293.75c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9-1.8.6-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.4,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.4-.3,4.7-1.1" style="fill:#fff; stroke-width:0px;"/><rect x="653.75" y="277.45" width="10" height="47.5" style="fill:#fff; stroke-width:0px;"/><polygon points="745.75 324.95 745.65 298.05 732.45 320.25 727.75 320.25 714.65 298.65 714.65 324.95 704.95 324.95 704.95 280.05 713.55 280.05 730.35 307.95 746.85 280.05 755.35 280.05 755.45 324.95 745.75 324.95" style="fill:#fff; stroke-width:0px;"/><path d="m801.65,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><path d="m833.25,323.35c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.7h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7.1Z" style="fill:#fff; stroke-width:0px;"/><path d="m855.85,291.25c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1.1-1.7,2.7-2.9,4.7-3.8" style="fill:#fff; stroke-width:0px;"/><path d="m877.75,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><rect x="915.65" y="277.45" width="10" height="47.5" style="fill:#fff; stroke-width:0px;"/><path d="m944.15,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><path d="m1017.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m1063.85,290.45l-15.6,36.6c-1.6,4-3.5,6.8-5.9,8.4-2.3,1.6-5.1,2.4-8.4,2.4-1.8,0-3.6-.3-5.3-.8-1.8-.6-3.2-1.3-4.3-2.3l3.7-7.1c.8.7,1.7,1.2,2.7,1.6s2,.6,3,.6c1.4,0,2.5-.3,3.3-1,.9-.7,1.6-1.8,2.3-3.3l.1-.3-14.9-34.8h10.3l9.7,23.4,9.7-23.4h9.6Z" style="fill:#fff; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-c31965bd-8485-40b7-8691-8dbcf41b326b" xmlns="http://www.w3.org/2000/svg" width="1100" height="400" viewBox="0 0 1100 400"><path d="m225.25,365.25c-91,0-165-74-165-165S134.25,35.25,225.25,35.25s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m77.35,251.85c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3s-43.5,23.3-43.5,46.3c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="177.55 160.15 191.35 160.15 191.35 156.65 145.95 156.65 145.95 160.15 159.75 160.15 159.75 246.25 145.95 246.25 145.95 249.75 191.35 249.75 191.35 246.25 177.55 246.25 177.55 160.15" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="309.35 160.15 323.15 160.15 323.15 156.65 287.95 156.65 267.75 220.35 248.15 156.65 212.25 156.65 212.25 160.15 226.05 160.15 226.05 246.25 212.25 246.25 212.25 249.75 244.05 249.75 244.05 246.25 230.45 246.25 230.45 162.45 230.75 162.45 258.55 249.75 263.25 249.75 291.15 162.45 291.55 162.45 291.55 246.25 277.75 246.25 277.75 249.75 323.15 249.75 323.15 246.25 309.35 246.25 309.35 160.15" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m420.35,249.75l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3,0Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m225.95,365.35h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6c13.8-72.4,53.7-115.5,106.8-115.5h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#004996; stroke-width:0px;"/><path d="m484.15,84.85c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8c1.2-2,2.8-3.6,4.9-4.8s4.5-1.7,7.1-1.7,4.9.6,7,1.7,3.7,2.7,4.9,4.8c1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8c-1.2,2-2.8,3.6-4.9,4.8-2.1,1.1-4.4,1.7-7,1.7s-5-.5-7.1-1.7m12.7-2.1c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9c-1,1.7-1.4,3.5-1.4,5.6s.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.5,5.6-1.4" style="fill:#001e41; stroke-width:0px;"/><path d="m515.95,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.9-3.1" style="fill:#001e41; stroke-width:0px;"/><path d="m543.35,66.75v17.2c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8-1.3.6-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.2-1.5-.8-2.7-1.9-3.6-3.4s-1.3-3.1-1.3-5c0-1.8.4-3.5,1.3-4.9.9-1.4,2-2.6,3.5-3.4s3.2-1.2,5.1-1.2c1.7,0,3.2.3,4.5,1,1.3.7,2.4,1.6,3.3,2.9v-3.8h2.4v.1h0Zm-6.3,15.6c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9s-2,1.4-2.7,2.5c-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.8-.3,3.9-.9" style="fill:#001e41; stroke-width:0px;"/><path d="m563.55,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m588.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m598.15,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m608.85,85.85c-1.5-.5-2.6-1-3.4-1.7l1.2-2.1c.8.6,1.9,1.2,3.1,1.6,1.2.4,2.5.6,3.9.6,1.8,0,3.1-.3,4-.8.9-.6,1.3-1.4,1.3-2.4,0-.7-.2-1.3-.7-1.7s-1.1-.7-1.8-.9c-.7-.2-1.7-.4-2.9-.6-1.6-.3-2.9-.6-3.9-.9s-1.8-.8-2.5-1.6c-.7-.7-1-1.8-1-3.1,0-1.6.7-3,2.1-4,1.4-1,3.3-1.6,5.7-1.6,1.3,0,2.5.2,3.8.5,1.3.3,2.3.8,3.1,1.3l-1.2,2.1c-1.6-1.1-3.6-1.7-5.8-1.7-1.7,0-3,.3-3.8.9-.9.6-1.3,1.4-1.3,2.4,0,.7.2,1.3.7,1.8.5.4,1.1.8,1.8,1s1.7.4,3,.7c1.6.3,2.8.6,3.8.9.9.3,1.8.8,2.4,1.5.6.7,1,1.7,1,3,0,1.7-.7,3.1-2.1,4.1-1.4,1-3.4,1.5-6,1.5-1.5-.1-3-.3-4.5-.8" style="fill:#001e41; stroke-width:0px;"/><path d="m639.25,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.5.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m658.95,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m663.75,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m676.75,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m713.15,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.6v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.5,0,4.5.7,5.9,2.2" style="fill:#001e41; stroke-width:0px;"/><rect x="739.15" y="60.25" width="2.8" height="26.2" style="fill:#001e41; stroke-width:0px;"/><path d="m765.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m785.55,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m806.75,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2,0-3.6.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m817.55,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9s-1.8,3.1-1.8,5.3v10h-2.6v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.8-3.1" style="fill:#001e41; stroke-width:0px;"/><path d="m842.85,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m865.05,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m884.65,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m889.45,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.5,0-1-.2-1.4-.6m.1,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m902.55,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.8-2c1.1-.6,2-1.5,2.6-2.7s.9-2.5.9-4-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.5,0,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m938.95,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m961.15,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><rect x="970.45" y="58.65" width="2.7" height="27.8" style="fill:#001e41; stroke-width:0px;"/><path d="m997.65,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m1037.05,58.65v27.8h-2.5v-3.9c-.8,1.3-1.9,2.3-3.2,3-1.3.7-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.3-1.5-.8-2.7-2-3.5-3.6-.8-1.5-1.3-3.3-1.3-5.2s.4-3.7,1.3-5.2c.8-1.5,2-2.7,3.5-3.5s3.2-1.3,5-1.3c1.6,0,3,.3,4.3,1s2.3,1.6,3.2,2.9v-11.7h2.6Zm-6.2,24.6c1.1-.6,2-1.5,2.6-2.7s1-2.5,1-4-.3-2.8-1-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.7-1c-1.4,0-2.6.3-3.8,1-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.3,0,2.6-.4,3.7-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1061.55,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3s-2.8-2.1-3.6-3.6c-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6s3.1-1.3,4.9-1.3,3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><polygon points="521.65 157.65 521.55 130.75 508.35 152.95 503.65 152.95 490.55 131.35 490.55 157.75 480.85 157.75 480.85 112.85 489.45 112.85 506.25 140.75 522.75 112.85 531.25 112.85 531.35 157.75 521.65 157.75 521.65 157.65" style="fill:#001e41; stroke-width:0px;"/><path d="m573.95,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#001e41; stroke-width:0px;"/><path d="m602.15,155.95c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.6h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m621.25,123.95c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1-1.7,2.6-3,4.7-3.8" style="fill:#001e41; stroke-width:0px;"/><path d="m639.55,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7,3.8,2.6,6.3,2.6,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><rect x="673.95" y="110.05" width="10" height="47.6" style="fill:#001e41; stroke-width:0px;"/><path d="m698.95,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6s4.6-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><path d="m768.95,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m777.75,116.75c-1.2-1.1-1.7-2.4-1.7-4s.6-2.9,1.7-4c1.2-1.1,2.7-1.6,4.5-1.6s3.3.5,4.5,1.5,1.7,2.3,1.7,3.8c0,1.7-.6,3-1.7,4.1-1.2,1.1-2.6,1.6-4.5,1.6s-3.3-.4-4.5-1.4m-.5,6.4h10v34.5h-10v-34.5Z" style="fill:#001e41; stroke-width:0px;"/><path d="m829.25,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.4-.1-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><polygon points="850.25 112.75 860.65 112.75 860.65 149.15 883.15 149.15 883.15 157.65 850.25 157.65 850.25 112.75" style="fill:#001e41; stroke-width:0px;"/><path d="m920.65,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#001e41; stroke-width:0px;"/><path d="m962.15,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m996.75,126.45c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9s-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.3,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.3-.3,4.7-1.1" style="fill:#001e41; stroke-width:0px;"/><rect x="1009.15" y="110.05" width="10" height="47.6" style="fill:#001e41; stroke-width:0px;"/><path d="m1061.05,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8s2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3,2.8-1.5,5.9-2.3,9.4-2.3s6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><rect x="475.45" y="195.25" width="587.8" height="3.1" style="fill:#004996; stroke-width:0px;"/><rect x="479.75" y="227.55" width="2.8" height="26.2" style="fill:#001e41; stroke-width:0px;"/><path d="m507.55,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m528.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m550.75,244.75h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2-.1-3.6.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m562.65,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.8-1.4,1.7-2.3,2.9-3" style="fill:#001e41; stroke-width:0px;"/><path d="m589.15,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m612.45,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m633.15,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m639.15,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m653.25,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m690.85,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m714.15,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><rect x="724.55" y="225.95" width="2.7" height="27.8" style="fill:#001e41; stroke-width:0px;"/><path d="m758.85,252.25c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8,2.8-3.6,4.9-4.8c2.1-1.2,4.5-1.7,7.1-1.7s4.9.6,7,1.7c2.1,1.1,3.7,2.7,4.9,4.8,1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8-2.8,3.6-4.9,4.8c-2.1,1.2-4.4,1.7-7,1.7s-5-.6-7.1-1.7m12.7-2.2c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9-1.4,3.5-1.4,5.6.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.4,5.6-1.4" style="fill:#001e41; stroke-width:0px;"/><path d="m791.75,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.7-1.4,1.6-2.3,2.9-3" style="fill:#001e41; stroke-width:0px;"/><path d="m820.25,234.05v17.3c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8s-2.8,1-4.4,1c-1.8,0-3.5-.4-5-1.2s-2.7-1.9-3.6-3.4c-.9-1.5-1.3-3.1-1.3-5s.4-3.5,1.3-4.9c.9-1.4,2-2.6,3.5-3.4,1.5-.8,3.2-1.2,5.1-1.2,1.7,0,3.2.3,4.5,1s2.4,1.6,3.3,2.9v-3.8h2.4Zm-6.2,15.7c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9-1.1.6-2,1.4-2.7,2.5-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.7-.3,3.9-.9" style="fill:#001e41; stroke-width:0px;"/><path d="m841.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m867.95,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m878.45,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><polygon points="903.55 251.55 903.55 253.75 887.55 253.75 887.55 251.95 899.95 236.25 887.75 236.25 887.75 234.05 903.25 234.05 903.25 235.85 890.85 251.55 903.55 251.55" style="fill:#001e41; stroke-width:0px;"/><path d="m922.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m943.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m949.35,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m963.45,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3-1.8,0-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1001.05,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m1032.65,252.65c-1.5-.9-2.7-2.1-3.6-3.6s-1.3-3.2-1.3-5.2.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.9,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1058.25,228.95c-.6.6-.9,1.5-.9,2.8v2.3h6.1v2.2h-6v17.4h-2.7v-17.4h-3.5v-2.2h3.5v-2.4c0-1.8.5-3.2,1.6-4.3,1-1,2.5-1.6,4.4-1.6.7,0,1.5.1,2.2.3s1.3.5,1.8.9l-.9,2c-.8-.6-1.7-1-2.9-1-1.3.1-2.1.4-2.7,1" style="fill:#001e41; stroke-width:0px;"/><polygon points="480.85 280.15 491.25 280.15 491.25 316.55 513.75 316.55 513.75 325.05 480.85 325.05 480.85 280.15" style="fill:#001e41; stroke-width:0px;"/><path d="m554.75,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><path d="m599.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m637.85,293.75c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9-1.8.6-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.4,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.4-.3,4.7-1.1" style="fill:#001e41; stroke-width:0px;"/><rect x="653.75" y="277.45" width="10" height="47.5" style="fill:#001e41; stroke-width:0px;"/><polygon points="745.75 324.95 745.65 298.05 732.45 320.25 727.75 320.25 714.65 298.65 714.65 324.95 704.95 324.95 704.95 280.05 713.55 280.05 730.35 307.95 746.85 280.05 755.35 280.05 755.45 324.95 745.75 324.95" style="fill:#001e41; stroke-width:0px;"/><path d="m801.65,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><path d="m833.25,323.35c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.7h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7.1Z" style="fill:#001e41; stroke-width:0px;"/><path d="m855.85,291.25c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1.1-1.7,2.7-2.9,4.7-3.8" style="fill:#001e41; stroke-width:0px;"/><path d="m877.75,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><rect x="915.65" y="277.45" width="10" height="47.5" style="fill:#001e41; stroke-width:0px;"/><path d="m944.15,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><path d="m1017.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m1063.85,290.45l-15.6,36.6c-1.6,4-3.5,6.8-5.9,8.4-2.3,1.6-5.1,2.4-8.4,2.4-1.8,0-3.6-.3-5.3-.8-1.8-.6-3.2-1.3-4.3-2.3l3.7-7.1c.8.7,1.7,1.2,2.7,1.6s2,.6,3,.6c1.4,0,2.5-.3,3.3-1,.9-.7,1.6-1.8,2.3-3.3l.1-.3-14.9-34.8h10.3l9.7,23.4,9.7-23.4h9.6Z" style="fill:#001e41; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-392c8297-f600-40b0-8154-0463046a40c3" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#61b4ff; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#fff; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#fff; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#fff; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#fff; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#61b4ff; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-471777a6-cce6-451e-9dcd-006395a31ab3" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#004996; stroke-width:0px;"/></svg>
|
data/data/logos/oiml-logo.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-18fdc505-5211-448b-be70-44ec1c4f262f" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9v30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4Z" style="fill:#004996; stroke-width:0px;"/></svg>
|
data/data/themes/oiml.yaml
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
primary: "#004996"
|
|
2
|
-
accent: "#194780"
|
|
3
|
-
accent_deep: "#003a78"
|
|
4
|
-
gradient: "linear-gradient(135deg, #002d5a 0%, #004996 50%, #1a6bcc 100%)"
|
|
5
|
-
primary_light: "#edf3fa"
|
|
6
|
-
accent_light: "#e0ecf8"
|
|
7
|
-
warm: "#d4a017"
|
|
8
|
-
warm_light: "#fdf6e8"
|
|
9
|
-
font_body: "'Futura PT Book', 'Montserrat', 'Helvetica Neue', Arial, sans-serif"
|
|
10
|
-
font_sans: "'Futura PT Demi', 'Montserrat', 'Helvetica Neue', Arial, sans-serif"
|
|
11
|
-
font_mono: '"JetBrains Mono", "Fira Code", monospace'
|
|
12
|
-
font_url: "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
13
|
-
header_background: "linear-gradient(135deg, #002d5a 0%, #004996 50%, #1a6bcc 100%)"
|
|
14
|
-
cover_background: "linear-gradient(175deg, #001a3a 0%, #002d5a 25%, #004996 55%, #1a6bcc 85%, #d4a017 100%)"
|
|
15
|
-
cover_before_bg: "background: radial-gradient(ellipse at 25% 20%, rgba(26,107,204,0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0,73,150,0.2) 0%, transparent 40%)"
|
|
16
|
-
cover_after_bg: "height: 3px; background: linear-gradient(90deg, transparent, #d4a017, transparent)"
|
|
17
|
-
progress_bar_color: "#004996"
|
|
18
|
-
note_border: "#1a6bcc"
|
|
19
|
-
note_bg: "#e0ecf8"
|
|
20
|
-
note_color: "#1a6bcc"
|
|
21
|
-
example_border: "#004996"
|
|
22
|
-
example_bg: "#edf3fa"
|
|
23
|
-
example_color: "#004996"
|
|
24
|
-
admonition_border: "#d4a017"
|
|
25
|
-
admonition_color: "#d4a017"
|
|
26
|
-
footer_border_color: "#004996"
|
|
27
|
-
cover_separator_color: "rgba(0,73,150,0.25)"
|
|
28
|
-
|
|
29
|
-
# Publisher metadata
|
|
30
|
-
publishers:
|
|
31
|
-
- "OIML"
|
|
32
|
-
publisher_name: "OIML"
|
|
33
|
-
logos_light:
|
|
34
|
-
OIML: "oiml-logo-icon-light.svg"
|
|
35
|
-
logos_dark:
|
|
36
|
-
OIML: "oiml-logo-icon-dark.svg"
|
|
37
|
-
|
|
38
|
-
# Doctype labels (OIML uses doc ID prefix to determine type)
|
|
39
|
-
doctype_labels:
|
|
40
|
-
"R": "International Recommendation"
|
|
41
|
-
"G": "International Guide"
|
|
42
|
-
"D": "International Document"
|
|
43
|
-
"B": "International Basic Publication"
|
|
44
|
-
"E": "Expert Report"
|
|
45
|
-
"V": "Vocabulary"
|
|
46
|
-
"S": "Seminar Report"
|
|
47
|
-
|
|
48
|
-
# Section ordering
|
|
49
|
-
preface_order:
|
|
50
|
-
- foreword
|
|
51
|
-
- introduction
|
|
52
|
-
- abstract
|
|
53
|
-
- clause
|
|
54
|
-
- acknowledgements
|
|
55
|
-
- executivesummary
|
|
56
|
-
toc_filter_types: []
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Metanorma
|
|
4
|
-
module Html
|
|
5
|
-
class OimlRenderer < IsoRenderer
|
|
6
|
-
register_render Metanorma::OimlDocument::Root, :render_document
|
|
7
|
-
|
|
8
|
-
DOCTYPE_ID_PATTERN = /\b([RGBDEVS])\s*\d/
|
|
9
|
-
|
|
10
|
-
def extract_doctype(bibdata)
|
|
11
|
-
oiml_doctype_from_doc_id(bibdata) || super
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
def extract_stage(bibdata)
|
|
15
|
-
oiml_doctype_from_doc_id(bibdata) || super
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
def oiml_doctype_from_doc_id(bibdata)
|
|
21
|
-
labels = theme.doctype_labels
|
|
22
|
-
return nil if labels.empty?
|
|
23
|
-
|
|
24
|
-
doc_id = formatted_doc_id(bibdata).to_s
|
|
25
|
-
return nil if doc_id.empty?
|
|
26
|
-
|
|
27
|
-
if (match = doc_id.match(DOCTYPE_ID_PATTERN))
|
|
28
|
-
labels[match[1]]
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
end
|
|
33
|
-
end
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Metanorma
|
|
4
|
-
module OimlDocument
|
|
5
|
-
class Root < Lutaml::Model::Serializable
|
|
6
|
-
include Metanorma::StandardDocument::RootAttributes
|
|
7
|
-
|
|
8
|
-
def self.lutaml_default_register
|
|
9
|
-
:oiml_document
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
attribute :bibdata,
|
|
13
|
-
Metanorma::IsoDocument::Metadata::IsoBibliographicItem
|
|
14
|
-
attribute :preface, Metanorma::IsoDocument::Sections::IsoPreface
|
|
15
|
-
attribute :sections, Metanorma::IsoDocument::Sections::IsoSections
|
|
16
|
-
attribute :annex, Metanorma::IsoDocument::Sections::IsoAnnexSection,
|
|
17
|
-
collection: true
|
|
18
|
-
|
|
19
|
-
xml do
|
|
20
|
-
element "metanorma"
|
|
21
|
-
namespace Metanorma::StandardDocument::Namespace
|
|
22
|
-
|
|
23
|
-
Metanorma::StandardDocument::RootXmlMapping.apply(self)
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
end
|