summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ulrich <christian@rechenwerk.net>2016-02-25 12:53:29 +0100
committerChristian Ulrich <christian@rechenwerk.net>2016-02-25 12:53:29 +0100
commit8735b31a517b87e4b5152dd8d9ac8e69ed510d8e (patch)
treef5a6f069eef8aafb48b1cd3a169b1f79252f40b7
parentfb460e7e7f8fa79b06d6672331b132ee3a59b8e5 (diff)
downloadredthread-8735b31a517b87e4b5152dd8d9ac8e69ed510d8e.tar.gz
redthread-8735b31a517b87e4b5152dd8d9ac8e69ed510d8e.zip
add qml playground
-rw-r--r--qml-playground/MainForm.ui.qml165
-rw-r--r--qml-playground/deployment.pri27
-rw-r--r--qml-playground/main.cpp12
-rw-r--r--qml-playground/main.qml455
-rw-r--r--qml-playground/qml-playground.pro15
-rw-r--r--qml-playground/qml.qrc29
-rw-r--r--qml-playground/resources/24/art.pngbin0 -> 652 bytes
-rw-r--r--qml-playground/resources/24/interface-1.pngbin0 -> 666 bytes
-rw-r--r--qml-playground/resources/24/interface-2.pngbin0 -> 471 bytes
-rw-r--r--qml-playground/resources/24/interface.pngbin0 -> 306 bytes
-rw-r--r--qml-playground/resources/24/people.pngbin0 -> 444 bytes
-rw-r--r--qml-playground/resources/24/pin24.pngbin0 -> 476 bytes
-rw-r--r--qml-playground/resources/24/shape.pngbin0 -> 595 bytes
-rw-r--r--qml-playground/resources/24/social.pngbin0 -> 597 bytes
-rw-r--r--qml-playground/resources/24/technology.pngbin0 -> 306 bytes
-rw-r--r--qml-playground/resources/24/web.pngbin0 -> 408 bytes
-rw-r--r--qml-playground/resources/32/art.pngbin0 -> 874 bytes
-rw-r--r--qml-playground/resources/32/interface-1.pngbin0 -> 883 bytes
-rw-r--r--qml-playground/resources/32/interface-2.pngbin0 -> 552 bytes
-rw-r--r--qml-playground/resources/32/interface.pngbin0 -> 313 bytes
-rw-r--r--qml-playground/resources/32/license/license.pdfbin0 -> 38247 bytes
-rw-r--r--qml-playground/resources/32/my-icons-collection32.zipbin0 -> 37387 bytes
-rw-r--r--qml-playground/resources/32/people.pngbin0 -> 552 bytes
-rw-r--r--qml-playground/resources/32/pin32.pngbin0 -> 614 bytes
-rw-r--r--qml-playground/resources/32/shape.pngbin0 -> 787 bytes
-rw-r--r--qml-playground/resources/32/social.pngbin0 -> 821 bytes
-rw-r--r--qml-playground/resources/32/technology.pngbin0 -> 341 bytes
-rw-r--r--qml-playground/resources/32/web.pngbin0 -> 491 bytes
-rw-r--r--qml-playground/resources/John-Lennon-Portrait-2400px.pngbin0 -> 218830 bytes
-rw-r--r--qml-playground/resources/John-Lennon-Portrait-300px.pngbin0 -> 19960 bytes
-rw-r--r--qml-playground/resources/John-Lennon-Portrait-800px.pngbin0 -> 64832 bytes
-rw-r--r--qml-playground/resources/John-Lennon-Portrait.svg1042
32 files changed, 1745 insertions, 0 deletions
diff --git a/qml-playground/MainForm.ui.qml b/qml-playground/MainForm.ui.qml
new file mode 100644
index 0000000..8e43682
--- /dev/null
+++ b/qml-playground/MainForm.ui.qml
@@ -0,0 +1,165 @@
1import QtQuick 2.5
2import QtQuick.Controls 1.4
3import QtQuick.Layouts 1.1
4import Qt.labs.folderlistmodel 2.1
5
6Item {
7 id: item1
8 anchors.fill: parent
9 clip: false
10
11 SplitView {
12 id: splitView1
13 anchors.fill: parent
14 clip: true
15 resizing: true
16
17 ColumnLayout {
18 id: columnLayout1
19 visible: true
20 opacity: 1
21 spacing: 5
22
23 Image {
24 id: profileImage
25 width: 100
26 height: 30
27 fillMode: Image.Stretch
28 source: "qrc:/qtquickplugin/images/template_image.png"
29 }
30
31 Rectangle {
32 id: rectangle1
33 width: 200
34 height: 30
35 color: "#ffffff"
36 }
37
38 ListView {
39 id: listView1
40 width: 110
41 height: 160
42 delegate: Item {
43 x: 5
44 width: 80
45 height: 40
46 Row {
47 id: row1
48 spacing: 10
49 Rectangle {
50 width: 40
51 height: 40
52 color: colorCode
53 }
54
55 Text {
56 text: name
57 anchors.verticalCenter: parent.verticalCenter
58 font.bold: true
59 }
60 }
61 }
62 model: ListModel {
63 ListElement {
64 name: "Grey"
65 colorCode: "grey"
66 }
67
68 ListElement {
69 name: "Red"
70 colorCode: "red"
71 }
72
73 ListElement {
74 name: "Blue"
75 colorCode: "blue"
76 }
77
78 ListElement {
79 name: "Green"
80 colorCode: "green"
81 }
82 }
83 }
84
85
86
87 }
88
89 ColumnLayout {
90 id: columnLayout2
91 transformOrigin: Item.Center
92 spacing: 0
93
94 TabView {
95 id: tabView1
96 width: parent.size - 20
97 height: parent.size - 20
98 Layout.fillHeight: true
99 Layout.fillWidth: false
100 }
101 }
102
103 ColumnLayout {
104 id: columnLayout3
105 spacing: 10
106 //Layout.fillWidth: true
107
108 Text {
109 id: text1
110 text: qsTr("Contacts")
111 font.pixelSize: 12
112 }
113
114 ListView {
115 id: listView2
116 x: 0
117 y: 0
118 width: 110
119 height: 160
120 delegate: Item {
121 x: 5
122 width: 80
123 height: 40
124 Row {
125 id: row2
126 Rectangle {
127 width: 40
128 height: 40
129 color: colorCode
130 }
131
132 Text {
133 text: name
134 anchors.verticalCenter: parent.verticalCenter
135 font.bold: true
136 }
137 spacing: 10
138 }
139 }
140 model: ListModel {
141 ListElement {
142 name: "Grey"
143 colorCode: "grey"
144 }
145
146 ListElement {
147 name: "Red"
148 colorCode: "red"
149 }
150
151 ListElement {
152 name: "Blue"
153 colorCode: "blue"
154 }
155
156 ListElement {
157 name: "Green"
158 colorCode: "green"
159 }
160 }
161 }
162 }
163
164 }
165}
diff --git a/qml-playground/deployment.pri b/qml-playground/deployment.pri
new file mode 100644
index 0000000..5441b63
--- /dev/null
+++ b/qml-playground/deployment.pri
@@ -0,0 +1,27 @@
1android-no-sdk {
2 target.path = /data/user/qt
3 export(target.path)
4 INSTALLS += target
5} else:android {
6 x86 {
7 target.path = /libs/x86
8 } else: armeabi-v7a {
9 target.path = /libs/armeabi-v7a
10 } else {
11 target.path = /libs/armeabi
12 }
13 export(target.path)
14 INSTALLS += target
15} else:unix {
16 isEmpty(target.path) {
17 qnx {
18 target.path = /tmp/$${TARGET}/bin
19 } else {
20 target.path = /opt/$${TARGET}/bin
21 }
22 export(target.path)
23 }
24 INSTALLS += target
25}
26
27export(INSTALLS)
diff --git a/qml-playground/main.cpp b/qml-playground/main.cpp
new file mode 100644
index 0000000..1e5bf58
--- /dev/null
+++ b/qml-playground/main.cpp
@@ -0,0 +1,12 @@
1#include <QApplication>
2#include <QQmlApplicationEngine>
3
4int main(int argc, char *argv[])
5{
6 QApplication app(argc, argv);
7
8 QQmlApplicationEngine engine;
9 engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
10
11 return app.exec();
12}
diff --git a/qml-playground/main.qml b/qml-playground/main.qml
new file mode 100644
index 0000000..aea81a5
--- /dev/null
+++ b/qml-playground/main.qml
@@ -0,0 +1,455 @@
1import QtQuick 2.5
2import QtQuick.Window 2.0
3import QtQuick.Controls 1.4
4import QtQuick.Layouts 1.1
5import Qt.labs.folderlistmodel 2.1
6
7ApplicationWindow {
8 title: qsTr("Red Thread")
9 width: 1000
10 height: 800
11 visible: true
12
13 SplitView {
14 id: splitView1
15 orientation: Qt.Horizontal
16 anchors.fill: parent
17
18 Rectangle {
19 id: column1Container
20 Layout.minimumWidth: 250
21 height: parent.heigth
22 color: "#fbfaee"
23
24 Column {
25 id: column1
26 width: parent.width - 30
27 spacing: 8
28 visible: true
29 height: parent.height - 40
30 anchors.left: parent.left
31 anchors.leftMargin: 20
32 anchors.verticalCenter: parent.verticalCenter
33 Layout.alignment: Qt.AlignLeft
34
35 opacity: 1
36
37 Rectangle {
38 id: profileImageContainer
39 width: parent.width
40 height: parent.height * 0.3
41 color: "#00000000"
42 anchors.horizontalCenter: parent.horizontalCenter
43 Layout.alignment: Qt.AlignLeft
44
45 Image {
46 id: profileImage
47 height: parent.height
48 Layout.alignment: Qt.AlignLeft
49
50
51 fillMode: Image.PreserveAspectFit
52
53 mipmap: true
54 smooth: true
55
56 source: "resources/John-Lennon-Portrait-800px.png"
57 }
58 }
59
60
61
62
63 MouseArea {
64 id: userNameMouseArea
65 width: parent.width
66 height: userNameContainer.height
67 hoverEnabled: true
68
69 Row {
70 id: userNameContainer
71 x: 0
72 y: 0
73 width: parent.width
74 height: userChatButton.height
75 spacing: 10
76
77 Text {
78 id: userName
79 text: "John Lennon"
80 anchors.verticalCenter: parent.verticalCenter
81 font.underline: false
82 font.family: "Arial"
83 styleColor: "#00000000"
84 horizontalAlignment: Text.AlignLeft
85 font.bold: true
86 font.pointSize: 18
87 }
88
89 ToolButton {
90 id: userChatButton
91 visible: false
92 anchors.verticalCenter: parent.verticalCenter
93 activeFocusOnPress: false
94 iconSource: "resources/24/interface-2.png"
95 }
96 }
97
98 onEntered: userChatButton.visible = true
99 onExited: userChatButton.visible = false
100 }
101
102
103 Rectangle {
104 id: shortInfoContainer
105 width: parent.width
106 height: shortInfoText.paintedHeight
107 color: "#00000000"
108
109
110
111 Text {
112 id: shortInfoText
113 text: qsTr("War is over - If you want it")
114 font.bold: false
115 font.italic: false
116 styleColor: "#00000000"
117 font.pixelSize: 14
118 }
119 }
120
121
122
123
124
125
126
127 Rectangle {
128 id: spacer1
129 width: parent.width
130 height: 10
131 color: "#00000000"
132 }
133
134
135
136
137
138
139
140 Row {
141 id: locationContainer
142 width: parent.width
143 height: locationIcon.height
144 spacing: 8
145
146 Image {
147 id: locationIcon
148 width: 24
149 height: 24
150 anchors.verticalCenter: parent.verticalCenter
151 sourceSize.height: 32
152 sourceSize.width: 32
153 source: "resources/24/pin24.png"
154 }
155
156 Text {
157 id: locationText
158 text: qsTr("in a yellow submarine")
159 anchors.verticalCenter: parent.verticalCenter
160 font.pixelSize: 14
161 }
162
163 }
164
165
166
167
168
169
170
171
172 Row {
173 id: locationContainer1
174 width: parent.width
175 height: locationIcon1.height
176 spacing: 8
177 Image {
178 id: locationIcon1
179 width: 24
180 height: 24
181 source: "resources/24/art.png"
182 anchors.verticalCenter: parent.verticalCenter
183 sourceSize.width: 32
184 sourceSize.height: 32
185 }
186
187 Text {
188 id: locationText1
189 text: qsTr("optimistic")
190 font.pixelSize: 14
191 anchors.verticalCenter: parent.verticalCenter
192 }
193 }
194
195
196
197
198
199
200
201
202 Rectangle {
203 id: spacer
204 width: parent.width
205 height: 10
206 color: "#00000000"
207 }
208
209
210
211
212
213
214
215
216 ListView {
217 id: placesList
218 y: 0
219 width: parent.width
220 height: 160
221 spacing: 5
222 model: ListModel {
223 ListElement {
224 name: "Updates"
225 colorCode: "grey"
226 }
227
228 ListElement {
229 name: "Photos"
230 colorCode: "red"
231 }
232
233 ListElement {
234 name: "Concerts"
235 colorCode: "blue"
236 }
237 }
238 delegate: Item {
239 width: 80
240 height: 40
241 Row {
242 id: row3
243 spacing: 10
244 Rectangle {
245 width: 40
246 height: 40
247 color: colorCode
248 }
249
250 Text {
251 text: name
252 font.bold: true
253 anchors.verticalCenter: parent.verticalCenter
254 }
255 }
256 }
257 }
258
259
260
261
262
263
264
265
266 }
267 }
268 Rectangle {
269 id: column2Container
270 color: "#fbfaee"
271
272 Layout.minimumWidth: 200
273 Layout.fillWidth: true
274
275 Column {
276 id: column2
277 width: parent.width - 20
278 height: parent.height - 40
279 spacing: 10
280 anchors.verticalCenter: parent.verticalCenter
281 anchors.horizontalCenter: parent.horizontalCenter
282
283
284 ListView {
285 id: listView1
286 width: parent.width
287 height: parent.height - messageInputContainer.height - parent.spacing
288 spacing: 5
289 model: ListModel {
290 ListElement {
291 name: "Grey"
292 colorCode: "grey"
293 }
294
295 ListElement {
296 name: "Red"
297 colorCode: "red"
298 }
299
300 ListElement {
301 name: "Blue"
302 colorCode: "blue"
303 }
304
305 ListElement {
306 name: "Green"
307 colorCode: "green"
308 }
309 }
310 delegate: Item {
311 width: 80
312 height: 40
313 Row {
314 id: row2
315 spacing: 10
316 Rectangle {
317 width: 40
318 height: 40
319 color: colorCode
320 }
321
322 Text {
323 text: name
324 font.bold: true
325 anchors.verticalCenter: parent.verticalCenter
326 }
327 }
328 }
329 }
330
331 Row {
332 id: messageInputContainer
333 width: parent.width
334 height: 50
335 spacing: 5
336
337 TextArea {
338 id: messageInput
339 width: parent.width - parent.spacing - messageSendButton.width
340 height: parent.height
341 }
342
343 Button {
344 id: messageSendButton
345 height: parent.height
346 text: qsTr("Send")
347 }
348
349 }
350
351 }
352 }
353 Rectangle {
354 id: column3Container
355 color: "#e6e4cb"
356 Layout.minimumWidth: 200
357
358
359 Column {
360 id: column3
361 width: parent.width - 20
362 height: parent.height
363 anchors.horizontalCenter: parent.horizontalCenter
364 spacing: 20
365
366
367
368
369 Rectangle {
370 id: menuBarContainer
371 width: parent.width
372 height: menuBar.height + 10
373 color: "#00000000"
374
375 Row {
376 id: menuBar
377 width: addFriendButton.width + homeButton.width + menuButton.width + 2 * spacing
378 height: addFriendButton.height
379 anchors.verticalCenter: parent.verticalCenter
380 anchors.horizontalCenter: parent.horizontalCenter
381 spacing: 20
382 Layout.alignment: Qt.AlignCenter
383
384 ToolButton {
385 id: addFriendButton
386 tooltip: "add friend"
387 iconSource: "resources/32/social.png"
388 }
389
390 ToolButton {
391 id: homeButton
392 tooltip: "my profile"
393 iconSource: "resources/32/web.png"
394 }
395
396 ToolButton {
397 id: menuButton
398 tooltip: "menu"
399 iconSource: "resources/32/interface.png"
400 }
401
402
403 }
404 }
405
406 ListView {
407 id: listView2
408 width: parent.width
409 height: 160
410 spacing: 5
411 delegate: Item {
412 width: 80
413 height: 40
414 Row {
415 id: row1
416 Rectangle {
417 width: 40
418 height: 40
419 color: colorCode
420 }
421
422 Text {
423 text: name
424 font.bold: true
425 anchors.verticalCenter: parent.verticalCenter
426 }
427 spacing: 10
428 }
429 }
430 model: ListModel {
431 ListElement {
432 name: "Grey"
433 colorCode: "grey"
434 }
435
436 ListElement {
437 name: "Red"
438 colorCode: "red"
439 }
440
441 ListElement {
442 name: "Blue"
443 colorCode: "blue"
444 }
445
446 ListElement {
447 name: "Green"
448 colorCode: "green"
449 }
450 }
451 }
452 }
453 }
454 }
455}
diff --git a/qml-playground/qml-playground.pro b/qml-playground/qml-playground.pro
new file mode 100644
index 0000000..d11099c
--- /dev/null
+++ b/qml-playground/qml-playground.pro
@@ -0,0 +1,15 @@
1TEMPLATE = app
2
3QT += qml quick widgets
4
5SOURCES += main.cpp
6
7RESOURCES += qml.qrc
8
9# Additional import path used to resolve QML modules in Qt Creator's code model
10QML_IMPORT_PATH =
11
12# Default rules for deployment.
13include(deployment.pri)
14
15DISTFILES +=
diff --git a/qml-playground/qml.qrc b/qml-playground/qml.qrc
new file mode 100644
index 0000000..6886dab
--- /dev/null
+++ b/qml-playground/qml.qrc
@@ -0,0 +1,29 @@
1<RCC>
2 <qresource prefix="/">
3 <file>main.qml</file>
4 <file>MainForm.ui.qml</file>
5 <file>resources/John-Lennon-Portrait-300px.png</file>
6 <file>resources/John-Lennon-Portrait-800px.png</file>
7 <file>resources/24/art.png</file>
8 <file>resources/24/interface-1.png</file>
9 <file>resources/24/interface-2.png</file>
10 <file>resources/24/interface.png</file>
11 <file>resources/24/shape.png</file>
12 <file>resources/32/art.png</file>
13 <file>resources/32/interface-1.png</file>
14 <file>resources/32/interface-2.png</file>
15 <file>resources/32/interface.png</file>
16 <file>resources/32/shape.png</file>
17 <file>resources/24/pin24.png</file>
18 <file>resources/32/pin32.png</file>
19 <file>resources/logo.png</file>
20 <file>resources/24/web.png</file>
21 <file>resources/32/web.png</file>
22 <file>resources/32/technology.png</file>
23 <file>resources/24/technology.png</file>
24 <file>resources/32/people.png</file>
25 <file>resources/24/people.png</file>
26 <file>resources/24/social.png</file>
27 <file>resources/32/social.png</file>
28 </qresource>
29</RCC>
diff --git a/qml-playground/resources/24/art.png b/qml-playground/resources/24/art.png
new file mode 100644
index 0000000..cb32759
--- /dev/null
+++ b/qml-playground/resources/24/art.png
Binary files differ
diff --git a/qml-playground/resources/24/interface-1.png b/qml-playground/resources/24/interface-1.png
new file mode 100644
index 0000000..da5b20f
--- /dev/null
+++ b/qml-playground/resources/24/interface-1.png
Binary files differ
diff --git a/qml-playground/resources/24/interface-2.png b/qml-playground/resources/24/interface-2.png
new file mode 100644
index 0000000..dd9224f
--- /dev/null
+++ b/qml-playground/resources/24/interface-2.png
Binary files differ
diff --git a/qml-playground/resources/24/interface.png b/qml-playground/resources/24/interface.png
new file mode 100644
index 0000000..d85c510
--- /dev/null
+++ b/qml-playground/resources/24/interface.png
Binary files differ
diff --git a/qml-playground/resources/24/people.png b/qml-playground/resources/24/people.png
new file mode 100644
index 0000000..1c593ed
--- /dev/null
+++ b/qml-playground/resources/24/people.png
Binary files differ
diff --git a/qml-playground/resources/24/pin24.png b/qml-playground/resources/24/pin24.png
new file mode 100644
index 0000000..c1cf549
--- /dev/null
+++ b/qml-playground/resources/24/pin24.png
Binary files differ
diff --git a/qml-playground/resources/24/shape.png b/qml-playground/resources/24/shape.png
new file mode 100644
index 0000000..7e27c7e
--- /dev/null
+++ b/qml-playground/resources/24/shape.png
Binary files differ
diff --git a/qml-playground/resources/24/social.png b/qml-playground/resources/24/social.png
new file mode 100644
index 0000000..85791c3
--- /dev/null
+++ b/qml-playground/resources/24/social.png
Binary files differ
diff --git a/qml-playground/resources/24/technology.png b/qml-playground/resources/24/technology.png
new file mode 100644
index 0000000..f9b420f
--- /dev/null
+++ b/qml-playground/resources/24/technology.png
Binary files differ
diff --git a/qml-playground/resources/24/web.png b/qml-playground/resources/24/web.png
new file mode 100644
index 0000000..67ee0f7
--- /dev/null
+++ b/qml-playground/resources/24/web.png
Binary files differ
diff --git a/qml-playground/resources/32/art.png b/qml-playground/resources/32/art.png
new file mode 100644
index 0000000..87cd871
--- /dev/null
+++ b/qml-playground/resources/32/art.png
Binary files differ
diff --git a/qml-playground/resources/32/interface-1.png b/qml-playground/resources/32/interface-1.png
new file mode 100644
index 0000000..ffeb690
--- /dev/null
+++ b/qml-playground/resources/32/interface-1.png
Binary files differ
diff --git a/qml-playground/resources/32/interface-2.png b/qml-playground/resources/32/interface-2.png
new file mode 100644
index 0000000..72d2bec
--- /dev/null
+++ b/qml-playground/resources/32/interface-2.png
Binary files differ
diff --git a/qml-playground/resources/32/interface.png b/qml-playground/resources/32/interface.png
new file mode 100644
index 0000000..af45c44
--- /dev/null
+++ b/qml-playground/resources/32/interface.png
Binary files differ
diff --git a/qml-playground/resources/32/license/license.pdf b/qml-playground/resources/32/license/license.pdf
new file mode 100644
index 0000000..4969d07
--- /dev/null
+++ b/qml-playground/resources/32/license/license.pdf
Binary files differ
diff --git a/qml-playground/resources/32/my-icons-collection32.zip b/qml-playground/resources/32/my-icons-collection32.zip
new file mode 100644
index 0000000..9a2dcab
--- /dev/null
+++ b/qml-playground/resources/32/my-icons-collection32.zip
Binary files differ
diff --git a/qml-playground/resources/32/people.png b/qml-playground/resources/32/people.png
new file mode 100644
index 0000000..7d446c5
--- /dev/null
+++ b/qml-playground/resources/32/people.png
Binary files differ
diff --git a/qml-playground/resources/32/pin32.png b/qml-playground/resources/32/pin32.png
new file mode 100644
index 0000000..f2a9b28
--- /dev/null
+++ b/qml-playground/resources/32/pin32.png
Binary files differ
diff --git a/qml-playground/resources/32/shape.png b/qml-playground/resources/32/shape.png
new file mode 100644
index 0000000..8975a50
--- /dev/null
+++ b/qml-playground/resources/32/shape.png
Binary files differ
diff --git a/qml-playground/resources/32/social.png b/qml-playground/resources/32/social.png
new file mode 100644
index 0000000..41aa8f1
--- /dev/null
+++ b/qml-playground/resources/32/social.png
Binary files differ
diff --git a/qml-playground/resources/32/technology.png b/qml-playground/resources/32/technology.png
new file mode 100644
index 0000000..bfeda63
--- /dev/null
+++ b/qml-playground/resources/32/technology.png
Binary files differ
diff --git a/qml-playground/resources/32/web.png b/qml-playground/resources/32/web.png
new file mode 100644
index 0000000..e8ef7cb
--- /dev/null
+++ b/qml-playground/resources/32/web.png
Binary files differ
diff --git a/qml-playground/resources/John-Lennon-Portrait-2400px.png b/qml-playground/resources/John-Lennon-Portrait-2400px.png
new file mode 100644
index 0000000..78a882d
--- /dev/null
+++ b/qml-playground/resources/John-Lennon-Portrait-2400px.png
Binary files differ
diff --git a/qml-playground/resources/John-Lennon-Portrait-300px.png b/qml-playground/resources/John-Lennon-Portrait-300px.png
new file mode 100644
index 0000000..7e4e232
--- /dev/null
+++ b/qml-playground/resources/John-Lennon-Portrait-300px.png
Binary files differ
diff --git a/qml-playground/resources/John-Lennon-Portrait-800px.png b/qml-playground/resources/John-Lennon-Portrait-800px.png
new file mode 100644
index 0000000..56a42d1
--- /dev/null
+++ b/qml-playground/resources/John-Lennon-Portrait-800px.png
Binary files differ
diff --git a/qml-playground/resources/John-Lennon-Portrait.svg b/qml-playground/resources/John-Lennon-Portrait.svg
new file mode 100644
index 0000000..cd07691
--- /dev/null
+++ b/qml-playground/resources/John-Lennon-Portrait.svg
@@ -0,0 +1,1042 @@
1<?xml version="1.0" encoding="utf-8"?>
2
3<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5 viewBox="4.9336 -28 1745.8733 2265.8069" enable-background="new 4.9336 -28 1745.8733 2265.8069" xml:space="preserve">
6<g>
7 <path stroke="#000000" stroke-width="0.8" d="M639.99,26.98c17.62-9.32,36.48-16.45,55.91-20.87c97.67-0.28,195.37,0,293.05-0.14
8 c5.3-0.29,10.15,2.16,15.13,3.58c27.3699,8.67,52.92,21.93,79.2399,33.22c20.28,9.31,41.2401,17.26,60.6801,28.33
9 c15.86,8.54,30.51,19.07,46.01,28.21c35.04,21.39,71.1899,40.9,106.1,62.5c16.5601,10.43,32.26,22.19,46.99,35.07
10 c27.74,24.79,55.4601,49.69,81.1801,76.6c13.98,14.88,28.33,29.71,38.9299,47.3c9.5701,14.91,15.73,31.59,21.66,48.19
11 c10.35,29.69,23.28,58.53,31,89.1c1.79,5.87,2.27,12.23,5.4,17.63c4.5599,9.4,6.46,19.89,7.14,30.25
12 c0.64,18.46,0.65,37.05-1.85,55.39c-3.13-7.28-6.1201-14.86-11.7101-20.67c2.04,21.64,6.27,43.06,10.84,64.3
13 c5.4801,24.23,10.3401,48.61,16.89,72.59c2.64,10.64,6.41,21.04,7.64,31.99c1.9501,16.24,0.79,32.94-3.59,48.7
14 c-5.51-16.88-12.42-33.24-19.45-49.52c0.97,24.95,6.8199,49.38,8.3099,74.28c2.03,24.62,0.28,49.31-0.21,73.95
15 c-0.8,28.66-2.03,57.31-4.11,85.91c-1.3401,20.24-3.74,40.48-8.67,60.19c-5.37,21.4901-11.53,42.79-18.77,63.72
16 c-7.29,19.25-12.49,39.3199-14.9,59.78c-1.9199,16.45-3.09,33.2999,0.4701,49.62c3.1799,14.62,8.5699,29,17.4199,41.1799
17 c5.3101,7.39,12.1,13.62,19.64,18.7001c-19.29-1.1101-38.66-7.4-53.73-19.7401c-5.08-4.0699-9.38-8.97-13.48-13.99
18 c0.6899,15.6901,1.52,31.6901,6.95,46.6001c-10.01-3.76-19.8099-9.03-26.73-17.38c-6.58-7.4801-9.79-17.3101-10.7-27.1001
19 c-5.0701,12.51-6.6801,26.0801-7.9501,39.42c-1.71,18.09,1.25,37,10.62,52.76c3.7201,6.41,9.36,11.3099,14.3101,16.73
20 c25.34,26.5601,50.77,53.0701,77.63,78.12c-12.12,0.25-24.23-0.33-36.3301-0.7999c-14.7699-0.64-29.3099-6.4601-40.13-16.5901
21 c14.4301,32.23,35.29,61.24,58.8301,87.42c-8.9301-2.9301-18.15-4.9401-26.92-8.34c-7.4199-2.65-14.51-6.0901-21.5699-9.55
22 c0.59,9.4,4.36,18.5601,10.87,25.42c10.77,12.5299,23.72,23.6499,39.25,29.7799c-11.76,1.3301-23.6801-0.46-35.25-2.58
23 c-20.03-4.25-40.72-10.83-55.54-25.7c7.17,15.26,16.84,29.33,28.24,41.74c11.4501,11.7999,23.5601,22.9199,35.75,33.9399
24 c-20.5599-7.87-41.3099-15.85-59.91-27.8099c-9.33-5.9-17.8099-13.02-25.8199-20.5801c0.75,18.4801,3.9301,36.9601,9.75,54.54
25 c2.42,7.26,5.65,14.24,9.51,20.86c-5.2-2.84-10.15-6.38-13.55-11.3099c0.64,12.5299,0.9601,26.25-5.9199,37.2999
26 c-1.2201-14.9099-5.4-29.5499-12.26-42.83c-2.1,18.51-6.35,36.89-13.89,53.99c-7.47,17.1801-19.42,32.3199-34.15,43.87
27 c-21.1,15.89-45.76,27.04-71.52,32.84c2.6801,10.55,7.67,21,16.42,27.8401c5.9299,4.9099,13.61,6.6599,20.9,8.5399
28 c9.11,1.78,18.62,1.85,27.75,0.14c10.7799-2.36,21.13-6.28,31.74-9.24c9.09-2.91,18.2899-5.4399,27.4199-8.1899
29 c9.67-2.4801,18.9801-6.4,29-7.3301c11.99-1.1799,24.17-0.85,36.0701,1.16c12.25,1.87,24.02,5.88,36.02,8.88
30 c28.9399,7.34,57.4199,16.62,86.86,21.89c23.36,4.45,47.0599,6.76,70.63,9.86c7.84,1.12,16,0.9399,23.48,3.88
31 c27.36,9.61,54.67,19.39,81.75,29.77c-0.03,154.48,0,308.97-0.01,463.46c-581.91,0.01-1163.8301-0.01-1745.74,0.01
32 c0.04-85.1201-0.14-170.23,0.09-255.34c41.17-14.37,82.18-29.1901,123.12-44.1901c19.6-7.4199,39.47-14.1699,58.75-22.4
33 c35-18.0199,68.12-39.5399,99.59-63.1599c14.14-10.13,25.98-23.3401,34.9-38.26c3.91-6.2001,6.56-13.12,10.76-19.15
34 c8.92-13.5701,22.35-23.9301,37.45-29.75c15.54-5.87,30.34-14.11,42.72-25.23c1.91-13.25,3.17-27.01,9.2-39.23
35 c-12.08,6.9099-25.82,10.4099-39.59,11.83c-10,1.26-20.11,0.02-30.12,1.22c-1.65,0.25-3.21,0.9-4.79,1.4301
36 c14.07-5.37,26.82-14.03,37.26-24.86c-9.43,1.71-18.83,3.61-28.29,5.1499c1.07-6.4099,1.88-12.9399,1.09-19.4199
37 c7.19-6.16,10.7-15.28,14.63-23.63c-14.28,11.14-33.06,14.49-50.78,13.99c-12.84,0.3-25.52-1.92-38.07-4.3
38 c19.64-1.83,39.61-5.6,56.84-15.6799c15.43-8.4601,28.11-22.9601,32.05-40.3401c-15.72,10.1801-33.98,15.76-52.35,18.75
39 c-12.68,1.7001-25.84,2.8501-38.35-0.5199c-11.47-2.9501-22.29-9.24-29.76-18.52c14.28,2.08,28.54,4.34,42.81,6.48
40 c10.57,1.5699,21.1,4.01,31.86,3.65c16.19,0.52,32.32-7.3201,41.92-20.38c4.94-6.78,9.99-14.39,9.63-23.15
41 c-5.95,4.6801-11.65,9.78-18.32,13.45c-17.69,10.76-38.58,15.6801-59.2,15.3101c-10.18,0.39-20.31-1.27-30.16-3.76
42 c-3.82-1.0601-7.72-2.0601-11.17-4.08c19.75-4.66,38.82-12.16,56.35-22.39c6.19-3.25,10.92-8.8,14.01-14.99
43 c-21.52,4.35-45.49,3.24-64.3-9.11c7.86-3.76,16.66-3.9801,25.19-3.6801c-6.82-18.11-15.19-35.64-25.23-52.1801
44 c-5.91-10-7.06-21.99-6.04-33.36c-11.14,8.4501-14.7,22.89-17.29,35.92c-11.63-18.24-13.45-40.91-10.5-61.87
45 c0.85-8.41,2.55-17.1,0.58-25.4401c-0.49-2.98-3.49-2.48-5.56-1.6599c-15.53-8.99-25.49-25.1-30.96-41.8
46 c-7.41-23.21-9.5-47.9299-7.49-72.15c0.93-10.3099,1.93-20.62,2.12-30.98c0.59-9.74-0.38-19.48-0.16-29.22
47 c-0.93,4.1-1.08,8.33-2.16,12.4c-2.02,8.13-6.16,15.71-11.88,21.8199c-4.9-8.25-4.55-18.33-2.34-27.36
48 c-2.56,4.71-7.09,7.8199-12.04,9.61c6.12-20.12,11.05-40.6,14.95-61.26c5.93-30.65,5.71-62.77-2.78-92.9199
49 c-1.09-4.2301-2.79-8.27-3.68-12.54c13.71,14.6,28.69,27.97,41.98,42.98c7.47,8.21,14.42,16.87,22.06,24.9301
50 c4.95,5.22,9.81,10.6599,15.78,14.76c-3.57-4.9-8.02-9.0701-11.52-14.02c-7.24-9.86-13.74-20.4601-17.62-32.12
51 c5.52,3.0299,10.68,6.96,16.96,8.34c-4.26-8.9301-7.13-18.58-7.2-28.53c15.48,13.66,31.37,26.85,47.63,39.5801
52 c10.6,8.61,22.61,15.97,36.1,18.9199c6.15,1.61,12.55,1.12,18.8,2.02c-0.02-0.59-0.05-1.16-0.08-1.71
53 c-7.16-1.8201-13.52-5.76-20.01-9.17c-21.52-12.33-42.2-28.39-53.66-50.92c6.04,1.6001,12.12,3.4301,18.44,3.28
54 c-14.43-11.84-26.65-26.84-33.48-44.33c9.53,12.01,19.99,23.25,31.28,33.62c12.72,12.2,29.14,20.71,46.65,23.14
55 c-3.8-2.8301-7.97-5.1901-11.33-8.54c-5.71-5.66-9.99-12.73-12.47-20.36c8.39,6.22,17.52,13.49,28.61,12.8199
56 c-7.17-4.9099-14.29-10.08-19.68-16.99c-14.38-18.5599-29.03-36.9099-44.14-54.89c-9.88-12.18-14.3-29.33-8.69-44.35
57 c8.39,14.98,18.01,29.67,31.26,40.83c12.06,10.42,27.47,16.58,43.24,18.36c-2.74-2.55-5.32-5.3101-7.1-8.63
58 c14.12,6.88,28.96,13.38,44.85,14.35c-14.99-4.88-29.26-11.95-42.19-20.95c-10.7-7.37-20.7-15.89-28.83-26.07
59 c-13.87-16.86-22.42-38.03-24.06-59.8c-1.13-14.94,0.04-30.34,5.66-44.35c1.91-4.96,4.79-9.44,7.33-14.08
60 c-7.3,4.27-13.53,10.1-19.24,16.28c-3.42,3.69-5.95,8.07-9.13,11.95c-0.17-3.31-0.23-6.62-0.24-9.92
61 c-7.49,11.99-12.92,25.1-19.32,37.66c-0.62-14.34,0.83-28.66,2.5-42.88c-8.47,12.65-15.73,26.26-19.94,40.96
62 c-4.16,14.37-6.19,29.37-6.22,44.33c-0.09,7.34,1.18,14.58,1.8,21.88c-3.34-4.62-5.09-10.1-6.78-15.47
63 c-4.18-14.67-6.45-30.09-4.75-45.33c0.53-4.85,1.67-9.61,2.23-14.46c-7.01,11.99-9.94,25.76-13.38,39.07
64 c-2.5,9.76-4.05,19.71-5.99,29.58c-1.78-7.35-2.56-14.89-3.16-22.41c-3,10.64-4.1,21.68-6.18,32.51
65 c-2.75-7.53-3.73-15.54-5.15-23.39c-2.59-18.17-5.19-36.83-1.52-55.05c0.98-5.67,3.25-11,4.66-16.56
66 c-6.9,11.88-11.8,24.9-15.79,38.03c-1.98,6.01-2.65,12.3701-4.86,18.32c-2.25-20.05-3.24-40.31-2.25-60.47
67 c0.76-11.88,2.32-23.76,5.55-35.24c1.53-5.64,4.1-10.9,6.17-16.33c-11.89,13.61-19.86,30.33-24.79,47.63
68 c-3.61,11.92-5.82,24.19-7.86,36.45c-2.67-13.02-4.04-26.29-5.96-39.44c-2.09,5.61-3.26,11.51-4.02,17.44
69 c-3.22-21.32-8.2-42.35-14.69-62.91c-5.61-18.19-9.05-36.98-10.96-55.91c-2.1-19.91-3.37-39.91-3.61-59.93
70 c0.02-1.74-0.01-3.53,0.7-5.15c8.19-19.78,15.11-40.09,20.65-60.77c1.33-5.04,2.66-10.09,3.42-15.24
71 c-2.22,3.85-4.29,7.81-6.71,11.55c-0.74-11.8199,1.64-24.48,9.94-33.41c-13.67,9.04-22.95,23.9-26.09,39.89
72 c-2.46,11.8-3.56,23.84-3.76,35.88c-1.54-8.61-4.22-17-5.25-25.7c-2.47-17.64-0.52-35.99,6.45-52.44
73 c8.85-20.28,18.58-40.19,29.72-59.31c8.81-15.64,17.22-31.49,25.51-47.4c5.89-11.96,12.33-23.65,18.98-35.2
74 c3.84-6.4,7.25-13.11,11.97-18.93c9.64-12.34,21.23-23.36,34.91-31.11c19.41-10.96,35.31-27.75,45.87-47.33
75 c8.69-15.4,15.68-31.73,21.15-48.54c8.33-24.76,20.24-48.3,35.2-69.71c17.53-25.39,39.87-47.03,63.31-66.91
76 c4.71-3.94,9.48-7.8,14.38-11.5c15.39-11.49,27.86-26.96,35.39-44.66c7.59-18.05,18.31-35.06,32.96-48.21
77 c15.24-13.51,31.3-26.08,48.02-37.69c4.89-3.1,9.26-7.01,14.52-9.53c16.38-8.75,35.18-11.91,53.6-11.98
78 C598.04,41.61,620.56,37.72,639.99,26.98 M1049.3101,133.64c9.3999,10.67,19.84,20.44,28.8099,31.51c-2.96,0.38-6.3,0.15-8.77,2.11
79 c-3.39,2.48-4.73,6.66-6.02,10.46c5.75,4.04,11.8201,7.62,18.05,10.89c5.62,3.23,11.99,4.97,17.48,8.39
80 c-5.61,0.51-11.24,0.11-16.85,0.32c15.7,7.21,30.96,15.53,44.86,25.84c12.87,9.82,24.5,21.52,33.42,35.07
81 c-14.25-4.21-28.04-9.87-42.25-14.22c7.46,9.62,15.77,18.64,22.33,28.91c-11.91-4.6-24.02-9.14-36.73-10.9
82 c15.23,10.23,29.13,22.26,42.74,34.52c14.4,12.94,27.63,27.1,41.3099,40.78c12.01,12.62,24.79,24.58,35.64,38.27
83 c10.74,12.86,18.11,28.16,29.29,40.7c6.3101,6.66,10.55,14.87,15.25,22.67c25.1901,43.68,48.59,88.36,72.39,132.81
84 c4.0699,7.19,7.42,14.82,12.0699,21.67c-0.75-3.25-2.25-6.22-3.64-9.21c-20.6699-45.21-40.6399-90.75-60.5499-136.31
85 c-3.83-9.22-8.4301-18.18-10.89-27.91c-2.8199-10.27-7.62-19.79-12.55-29.17c8.2001,4.06,15.6901,9.5,22.26,15.87
86 c-2.5499-3.94-5.49-7.6-8.22-11.4c-11.0699-14.56-21.28-29.81-33.53-43.43c-10.7899-12.53-22.85-23.87-35.1799-34.87
87 c-12.8201-12.21-25.51-24.69-36.63-38.5c10.64,2.78,20.61,7.63,30.3199,12.69c13.0701,6.78,24.97,15.5,36.74,24.27
88 c8.0601,6.02,15.37,12.95,22.8,19.71c-2.74-5.49-6.7-10.24-10.1901-15.24c-13.1899-17.93-28.83-33.8-44.3999-49.63
89 c-5.29-5.65-11.4501-10.47-16.27-16.54c11.59,4.2,22.33,10.48,32.6,17.25c16.26,11.46,31.63,24.18,46,37.95
90 c6.55,6.45,13.59,12.53,18.9399,20.08c5.9,8.21,11.25,16.8,16.5901,25.38c20.01,32.97,38.85,66.63,57.74,100.25
91 c4.3099,7.47,7.98,15.36,12.8099,22.51c-1.37-4.4-3.9299-8.28-5.86-12.43c-14.5399-28.47-29.22-56.87-43.52-85.47
92 c-7.73-15.7-16.26-31.06-22.59-47.41c-12.98-30.71-33.62-57.51-56.47-81.52c-14.21-14.81-30.12-27.93-44.09-42.95
93 c5.59,2.08,10.5699,5.44,15.8199,8.24c8.17,4.67,16.23,9.55,24.2,14.58c9.01,5.79,16.4601,13.6,23.9701,21.15
94 c14.5699,15.19,28.23,31.21,41.9299,47.18c2.9501,3.32,5.42,7.13,8.9501,9.92c-0.7001-1.3-1.37-2.58-2.2001-3.77
95 c-17.6699-23.89-35.24-47.86-54.01-70.91c-20.27-24.94-45.1699-46.41-73.84-61.13c-22.22-11.74-46.45-19.08-70.6801-25.36
96 C1095.76,141.83,1072.6801,136.78,1049.3101,133.64 M491.12,180.16c-17.05,10.63-36.01,17.57-53.38,27.59
97 c-23.21,12.87-44.16,29.46-63.71,47.32c-24.44,22.36-45.83,48.38-61.07,77.89c-8.17,16.24-14.79,33.46-18.14,51.37
98 c6.82-8,13.3-16.44,21.74-22.87c5.4-4.03,10.9-8.37,17.48-10.26c-2.45,3.43-5.41,6.47-7.9,9.88
99 c-12.35,16.52-21.04,35.83-25.07,56.05c5.21-8.87,13.24-15.42,20.68-22.33c8.85-7.94,18.08-15.48,27.7-22.48
100 c1.49-1.07,3.1-1.95,4.74-2.79c-5.31,7.77-11.83,14.86-15.43,23.67c7.04-6.28,14.96-12.26,24.53-13.79
101 c3.74-0.19,5.82-3.5,8.28-5.83c12.37-12.49,26.26-23.39,40.81-33.23c15.44-10.89,29.44-23.8,41.76-38.13
102 c11.03-12.93,22.81-25.23,35.16-36.91c27.75-26.96,57.49-51.86,89-74.3c-17.45,2.34-34.51,7.53-50.61,14.63
103 c-4.94,2.06-9.45,5-14.4,7.03c5.71-7.12,11.51-14.74,12.86-24.06c-12.37,6.13-24.16,13.58-37.08,18.56
104 c2.76-3.78,5.52-7.78,6.11-12.55c-9.27,4.75-17.48,11.27-26.33,16.7c8.5-9.67,16.35-19.93,25.35-29.16
105 c3.05-3.24,6.49-6.12,9.3-9.59C499.17,174.76,495.29,177.7,491.12,180.16 M631.41,197.46c-24.98,15.31-49.95,30.63-74.7599,46.2
106 c-29.7,19.1-55.5,43.68-78.56,70.28c3.24-7.11,6.29-14.38,7.82-22.08c-17.49,11.37-32.43,26.62-43.8,44.1
107 c-7.51,11.03-16.35,21.04-24.59,31.51c-11.5,14.99-20.95,31.38-30.25,47.79c-8.83,15.63-16.55,31.85-25.53,47.4
108 c-17.99,31.71-36.36,63.8-61.85,90.2c-3.58,4.06-7.93,7.37-11.32,11.6c6.9-2.37,12.38-7.45,17.6-12.36
109 c14.79-14.23,28.88-29.2,41.93-45.05c11.6-14.68,23.5-29.13,35.55-43.45c7.73-8.77,14.64-18.25,22.54-26.87
110 c-2.98,6.7-7.1,12.82-9.99,19.57c-7.26,14.76-11.91,30.58-18.22,45.73c-7.66,19.27-17.67,37.46-27,55.94
111 c-7.37,14.1801-14.89,28.28-22.4,42.39c-8,15.05-18.89,28.47-31.69,39.7c8.35-2.11,16.08-6.25,23.25-10.94
112 c10.93-7.19,19.28-17.39,28.32-26.67c8.15-8.18,15.72-16.93,24-24.96c-4.77,15.23-12.17,29.52-17.51,44.52
113 c10.97-8.97,20.76-19.32,29.7-30.3c11.45-13.82,20.49-29.39,31.16-43.79c6.58-8.84,12.8-18.01,20.15-26.23
114 c-2.74,10.14-6.1,20.15-7.77,30.55c5.59-8.18,10.21-17.61,18.51-23.44c-3.81,14.43-8.21,28.79-14.43,42.38
115 c4.63-1.71,7.87-5.76,9.84-10.14c4.17-9.15,8.99-18,14.44-26.46c5.36-7.83,10.71-15.9,17.76-22.33
116 c-0.95,20.09-3.76,40.08-7.43,59.85c-0.8,4.73-2.24,9.35-2.6,14.16c10.13-20.57,19.87-41.34,30.58-61.61
117 c-1.38,15.56-4.46,30.93-7.05,46.33c-1.97,12-5.1,23.75-8.1,35.52c9.84-12.81,16.3-27.87,22.06-42.85c0.3,10.8-0.92,21.6-0.34,32.4
118 c1.41-7.95,4.09-15.97,9.46-22.15c0.84-1.17,2.06-2.2,2.39-3.66c2.48-20.29,5.25-40.75,11.8799-60.18
119 c1.15-3.21,1.91-6.64,3.96-9.44c1.14,12.05,4.64,23.67,7.07,35.49c3.08,13.82,6.96,27.6,7.29,41.86
120 c1.17,15.1801-1.55,30.33-0.72,45.5c0.75-0.83,1.38-1.75,1.87-2.74c7.29-17.49,9.16-36.85,7.49-55.61
121 c-1.98-21.49-4.23-42.96-6.69-64.4c-2.77-27.75-1.52-55.86,3.02-83.36c3.31-18.18,7.48-36.46,15.67-53.15
122 c8.12-17.4,20.67-32.17,30.47-48.56c-6.32,3.29-11.82,7.9-17.46,12.19c1.56-5.97,4.06-11.69,4.64-17.9
123 c-9.7,5.1-18.81,11.98-29.75,14.2c7.55-10.63,13.18-22.65,16.09-35.38c-5.04,1.79-9.62,4.62-14.15,7.42
124 c-12.68,8.24-25.1,17.25-34.95,28.84c-2.08,2.53-3.93,5.26-6.2,7.63c1.06-4.08,3.5-7.57,5.69-11.1
125 c5.68-8.57,11.78-16.87,17.86-25.16c9.65-12.6,19.2-25.34,30.32-36.7c15.46-15.91,32.15-30.55,48.8-45.2
126 c8.48-7.71,17.62-14.71,25.83-22.7C637.82,193.33,634.66,195.48,631.41,197.46 M846.13,322.24c-20.4,15.23-37.74,34.69-49.86,57.12
127 c-8.66,16.59-16.64,33.64-22.15,51.57c-6.42,20.39-10.7,41.71-9.97,63.17c0.65,22.93,6.16,46.01,17.83,65.89
128 c5.99,10.6,13.87,20.11,23.4,27.72c24.02,19.5,50.94,34.99,77.8,50.18c18.15,9.96,36.31,19.96,54.94,28.99
129 c-9.32-2.14-18.16-5.9-27.3-8.69c-17.01-5.7-34.05-11.3-51.17-16.67c-12.15-3.57-24.1801-7.78-36.6801-9.95
130 c7.2401,4.12,14.94,7.38,22.39,11.12c15.54,7.43,31.02,14.99,46.56,22.41c8.66,4.37,17.69,8.05,26.13,12.83
131 c-25.15-9.4-50.25-18.96-75.75-27.39c-9.81-3.09-19.59-6.47-29.73-8.32c8.61,8.11,18.99,14.0601,29.11,20.09
132 c19.39,10.98,39.78,20.07,60.39,28.48c-9.74-1.8-19.42-3.93-29.05-6.24c-22.78-5.7-45.61-12.44-66.13-24.09
133 c7.09,9.48,14.22,18.93,21.21,28.48c-19.88-6.51-38.2-17.28-54-30.93c14.66,14.38,27.75,30.24,40.6801,46.16
134 c-9.14-7.58-18.34-15.13-28.14-21.86c-11.73-8.34-20.04-20.49-26.04-33.4c3.51,13.6801,3.37,27.9901,2.15,41.97
135 c-1.16,11.49-3.55,22.97-8.3,33.55c4.57,2.29,9.49,3.78,14.06,6.08c21.5,9.97,40.08,25.69,54.37,44.52
136 c10.82,14.23,18.43,30.8199,22.47,48.22l0.4,0.24c1.41,10.26,3.1,20.56,2.7,30.97c-0.05,4.62-0.6,9.21-1.09,13.81
137 c-1.47,10.86-4.03,21.62-8.34,31.73c-13.88,33.2-41.35,60.08-74.07,74.71c-19.41,8.5099-40.75,12.64-61.93,12.04
138 c-34.84,0.73-69.75-11.93-95.93-34.94c-19.91-16.85-35.31-39.34-42.38-64.55h-0.29c-0.32-1.8-0.65-3.58-1.03-5.34
139 c-2.97-12.28-3.83-25.01-3.17-37.6c0.16-6.37,1.01-12.7,2.19-18.96c1.8701-9.52,4.84-18.81,8.7401-27.69
140 c2.12-3.77,3.7-7.85,6.08-11.49c2.32-3.71,4.96-7.28,6.44-11.45c8.24-21.24,13.69-43.66,15.19-66.41l0.36-0.19
141 c1.19-13.45,1.88-26.96,1.71-40.45c-6.68,11.97-14.78,23.11-23.64,33.57c-6.47,7.66-13.83,14.52-20.18,22.28
142 c-9.2,11.18-17.94,22.79-25.03,35.4399c0.69-5.52,2.75-10.8799,2.45-16.49c1.46-4.3,1.03-9.13,1.14-13.64
143 c-3.38,6.56-7.62,12.72-12.88,17.91c-3.69,3.44-6.02,7.99-9.08,11.95c-12.72,17.88-27.5,34.13-41.39,51.07
144 c-1.87-0.39-2.71,1.76-3.59,2.98c-2.11,3.88-4.98,7.23-7.57,10.77c-4.63,6.28-9.77,12.16-14.34,18.49
145 c-4.37,6.08-6.39,13.41-8.4,20.52c-5.25,19.67-5.02,40.36-2.41,60.42c1.83,13.94,4.92,27.73,9.43,41.05
146 c4.67,14.89,7,30.48,7.37,46.07c0.59,8.64-0.87,17.2401-1.06,25.8799c-1.12,15.6101-2.02,31.3201-5.11,46.6801
147 c-1.65,0.88-3.56,1.62-4.58,3.3099c-2.4,1.4801-4.88,2.8101-7.47,3.9501c-0.26-8.1-1.84-16.2001-5.31-23.5601
148 c-5.63,3.8401-11.3,7.63-17.07,11.26c4.33-5.21,9.12-10.37,11.22-16.97c1.98-5.3,0.37-11.47-3.72-15.3099
149 c-5.21-4.8601-12.05-7.4701-18.76-9.4901c-4.78,12.6801-8.08,26.77-4.45,40.1901c1.95,8.03,7.1,14.6899,12.82,20.45
150 c-14.21,0.4301-28.71-2.99-40.83-10.52c2.66,18.6201,8.3,37.4901,20.19,52.39c9.7,12.03,24.99,19.6001,40.51,19.13
151 c-12.83,5.36-27.33,4.23-40.39,0.3401c5.96,7.1899,14.3,12.2899,23.22,14.96c9.7,2.99,20.08,2.33,29.95,0.64l-0.02-0.34
152 c2.23-0.25,4.47-0.4601,6.72-0.54c-1.66,2.39-3.58,4.58-5.69,6.59c-3.07,2.3-6.34,4.5-10.14,5.33
153 c-6.52,1.4701-13.29,0.3-19.51-1.85c8.24,9.9,20.87,14.73,33.16,17.29c0.81,0.14,2.43,0.41,3.25,0.55
154 c1.46,2.73,2.29,5.97,4.78,8.0299c0.35,4.24,2.69,7.98,3.77,12.0601c4.28,13.45,6.83,27.4,8.13,41.4399
155 c1.81,22.53,6.5,44.88,14.33,66.11c6.4,18.4,14.04,36.4501,23.79,53.3501c10.3,17.6699,12.75,38.8099,11.32,58.9099
156 c1.75,2.49,3.5,5,5.03,7.66c5.14,8.26,7.15,18.01,12.52,26.17c-8.66,0.84-17.39,2.25-25.36,5.9
157 c-5.77,2.47-10.63,6.5399-15.41,10.5199c-5.68,4.9801-7.59,13.37-5.3,20.4801c6.42-12.02,16.54-21.9701,28.63-28.25
158 c5.78-3.2001,12.1801-4.92,18.36-7.15c2.89,4.62,6.01,9.11,9.53,13.2899c-10.95,0.2001-22.6,3.3601-30.15,11.75
159 c-6.64,7.2301-7.4,18.4601-15.5,24.52c-4.84,3.8-8.07,9.65-8.44,15.8301c-0.43,5.84,1.42,11.5399,3.62,16.88
160 c11.09-14.75,20.92-30.4301,29.95-46.51c5.39-8.7201,13.7-15.25,22.6299-20.0701c3.1801,3.48,6.35,6.99,9.89,10.13
161 c-2.78,1.97-6.21,2.59-9.24,4.09c-9.55,4.5701-17.34,12.6901-21.52,22.4301c-4.64,8.91-5.21,19.35-3.58,29.13
162 c2.96-5.28,4.98-11.04,8.34-16.1c5.66-9.0901,12.82-17.23,21.11-24c3.89-3.15,6.7-7.35,9.11-11.67c3.8,3.13,7.77,6.02,11.64,9.0601
163 c-2.86,2.38-6.37,3.76-9.3799,5.9199c-7.32,5.05-13.32,12.2001-16.4,20.6c-3.4,9.65-4.77,20.0801-3.39,30.26
164 c0.81-0.45,1.38-1.09,1.73-1.9199c5.65-14.35,13.36-27.9601,23.25-39.8201c3.62-4.24,9.09-5.7999,14.06-7.7999
165 c3.23,2.1799,6.54,4.26,9.8199,6.39c-14.41,6.1399-27.75,17.0399-33.1299,32.1599c-3.71,9.7101-2.98,21.25,2.53,30.13
166 c6.26-13.08,12.89-25.97,19.94-38.63c4.44-8.1599,12.1-14.77,21.14-17.1799c22.64,12.98,46.11,24.5699,70.33,34.3199
167 c-17.27-24.6699-39.4-45.34-61.42-65.6699c-14.58-14.16-28.22-29.25-41.02-45.02c-6.25-7.67-13.09-14.8401-19.65-22.23
168 c3.06,1.8199,5.87,4.0199,8.74,6.1499c31.36,23.2201,62.12,47.54,89.07,75.88c7.26,7.41,14.03,15.3,21.65,22.36
169 c12.24,11.6901,25.68,22.17,40.37,30.62c17.29,10.1001,33.77,21.5,49.94,33.3c16.23,12.03,34.65,20.9301,53.86,27.11
170 c18.66,5.53,37.6,10.15,56.68,14.01c21.49,4.27,43.28,7.0601,65,9.74c16.06,1.97,32.23,4.04,48.45,3.28
171 c11.06-0.8,22.05-3.5699,32-8.51c7.21-3.9399,14.09-8.46,21.0699-12.8c7.42-4.9299,15.4701-9.0399,22.51-14.46
172 c4.27-1.51,7.75-4.52,11.6901-6.6799c-3.3101,7.99-7.4701,15.6699-12.78,22.5199c-8.8199,11.76-21.39,20.6801-35.47,24.9501
173 c13.53,2,27.3801,2.4,40.8901-0.0801c18.08-3.0099,35.01-11.6399,48.6699-23.7699c12.65-10.88,22.8101-24.29,31.86-38.2201
174 c10.55-15.83,20.9301-31.7799,31.0801-47.86c9.72-14.9,21.38-28.5699,34.83-40.25c7.71-7.0699,15.22-14.4199,22.1-22.2999
175 l0.0701-0.37c4.4099-4.7201,8.09-10.0801,11.89-15.29c10.1-14.11,16.3099-30.51,26.34-44.67c9.41-14.99,21.47-28.0299,31.48-42.58
176 c10.01-14.5701,18.6801-30.08,25.4301-46.4301c0.61-2.01,2.59-2.9099,4.22-3.95c4.72-27.4401,9.1-54.97,12.86-82.5699
177 c2.91-21.3101,6.33-42.5801,8.11-64.04c1.17-14.35,2.66-28.6801,3.48-43.0601c0.63-12.7999-2.47-25.34-3.4-38.0399
178 c-1.45-13.27-1.49-26.63-1.25-39.9601c1.1801-26.97,1.91-53.96,2.64-80.95c0.77-25.34,0.12-50.74-2.21-76
179 c-0.11-1.63-0.54-3.48,0.91-4.68c-8.27-23.37-10.89-48.36-9.67-73.03c0.4301-0.1,1.3-0.3,1.74-0.4c0.04-4.82,0.02-9.63,0.02-14.44
180 c-0.54,0.11-1.61,0.34-2.14,0.45c-0.76-9.16-2.17-18.27-4.49-27.16c-0.8199-2.9-1.2-6.07-3.27-8.41
181 c-4.61-20.81-18.3199-38.88-36.02-50.44c-15.73-10.03-32.72-17.9301-50.1-24.59c-9.47-3.26-18.64-7.59-26.58-13.75
182 c-4.77-3.43-8.39-8.1-12.5801-12.14c2.05,6.24,4.7101,12.28,6.1801,18.71c-21.12-8.08-39.61-22.13-54.8101-38.73
183 c-3.36-3.83-6.7699-7.62-9.8899-11.65c-22.5-28.6-44.5701-57.78-62.15-89.74c-11.77-21.52-21.5701-44.08-30.02-67.09
184 c-8.05-21.48-13.1-43.9-18.85-66.05c-6.24-24.72-12.4401-49.46-18.61-74.19c-2.29,19.39-0.44,38.9,0.86,58.28
185 c1.04,14.04,1.98,28.09,3.34,42.09c2.6901,25.22,10.27,49.66,20.21,72.91c7.3,17.2599,16.1001,33.89,26.14,49.72
186 c9.9601,15.95,21.37,31.05,34.49,44.55c5.02,5.36,10.77,9.95,15.9501,15.14c8.39,8.27,16.3199,17.01,23.7799,26.12l0.38,0.01
187 c4.42,7.09,10.51,13.07,14.3501,20.54c-7.13-6.69-13.4501-14.25-20.75-20.77c-12.78-13.45-26.5-25.98-40.0901-38.61
188 c-7.75-7.25-16.08-13.9-23.25-21.75c-14.1-15.2599-24.6699-33.33-34.2-51.67c-8.85-17.34-16.9401-35.19-22.06-54.02
189 c-6.94-25.77-9.05-52.56-10.46-79.12c-0.86-31.78-1.62-63.59-3.54-95.31c-1.01,22.08-2.72,44.13-4.32,66.18
190 c-1.25,17.66-3.19,35.27-3.44,52.98c-0.2,15.71-1.73,31.47,0.05,47.13c1.56,15.8,6.08,31.32,13.49,45.37
191 c7.65,13.99,16.09,27.57,25.64,40.36c13.11,17.66,28.83,33.14,43.92,49.08c12.74,13.42,26.0599,26.29,39.1899,39.34
192 c10.0801,9.83,20.62,19.18,30.78,28.92c-1.14-0.2401-2.26-0.52-3.34-0.86c-16.8-6.79-32.66-15.78-47.38-26.32
193 c-7.6801-6.89-16.15-12.8199-23.88-19.64c-14.6901-12.54-28.79-25.76-42.3-39.55c-15.29-15.97-28.85-33.57-40.51-52.35
194 c-14.43-22.46-25.6899-46.92-33.4-72.48c-6.79-23.8-14.65-47.27-22.77-70.64c-6.14-18.55-10.85-37.53-15.11-56.58
195 c-3.21,18.24-4.21,37.04-1.09,55.37c1.84,12.1,5.88,23.68,9.27,35.4c4.83,16.35,10.39,32.47,16.14,48.52
196 c14.75,40.87,33.84,80.46,59.5,115.66c12.21,17.38,19.21,38.11,21.51,59.15c1.6799,13.95,2.7999,28.1,1.14,42.11l-1.38,1.04
197 c-0.2101-18.04-0.24-36.49-5.73-53.87c-3.03-9.68-7.63-18.97-14.38-26.6c-14.73-17.01-27.46-35.63-39.12-54.84
198 c-10.06-16.23-19.45-32.88-27.96-49.97c-14.61-29.85-29.1-59.75-43.1201-89.88c-6.65-13.59-11.9399-27.9-15.02-42.73
199 c-4.33-22.11-4.94-44.98-1.63-67.28c2.31-15.39,5.97-30.68,12.56-44.84C878.68,296.03,862.68,309.49,846.13,322.24 M704.74,601.03
200 c0.07,19.67,1.97,39.58-2.07,59.03c-1.72,10.44-5.94,20.18-10.12,29.82c-4,10.08-9.73,19.31-14.75,28.87
201 c24.11-3.39,48.97-2.29,72.42,4.52c1.33-12.03-0.95-24.1-4.98-35.41c-5.48-18.95-11.72-37.69-18.98-56.03
202 c-1.97,16.43-3.13,32.97-5.46,49.35c-2.15-5.13-3.24-10.68-3.31-16.24C716.85,643.13,712.71,621.37,704.74,601.03 M656.51,653.41
203 c-1.47,8.64-3.15,17.25-5.36,25.7401c-0.96,3.83-2.34,7.5699-2.83,11.52l-0.8,0.05c-3.8,14.39-9.04,28.35-13.83,42.42
204 c6.71-2.87,13.19-6.35,20.24-8.38c1.65-0.76,4.29-0.8,4.7-2.99c2.86-9.96,3.62-20.36,4.1-30.66l-0.2-0.02
205 C662.27,678.33,660.17,665.62,656.51,653.41 M617.46,697.37l0.32,0.13c-0.29,0.05-0.88,0.15-1.17,0.19
206 c-0.04,1.94-0.39,3.88-1.1,5.7c-5.54,14.97-11.28,29.87-17.62,44.51c-3.57,8.64-8.17,16.8-12,25.31
207 c7.92-8.81,15.9-17.69,25.24-25.02c2.35-1.96,5.39-3.48,6.52-6.51c6.65-15.08,11.88-31.37,11.2-48.02l0.4301-0.18
208 c0.08-8.07-0.32-16.16-1.53-24.14C623.98,678.55,621.23,688.16,617.46,697.37 M666.96,735.85c-4.04,0.6801-6.25,4.45-9.17,6.89
209 c-5.82,5.11-12.21,9.83-19.46,12.69c4.13-4.36,8.88-8.23,11.82-13.58c-10.41,3.87-19.88,9.94-28.7,16.61
210 c-4.61,3.34-8.2,7.78-12.4,11.57c-5.7,4.8799-10.59,10.66-14.86,16.83c-18.19,24.09-23.9,56.02-19.26,85.47
211 c0.2,4.03,1.34,7.94,2.24,11.87c7.55,29.13,27.87,53.61,52.64,70.05c22.07,14.64,48.78,21.99,75.21,21.25
212 c10.43,0.29,20.83-1.14,30.99-3.38c33.53-7.67,63.5-29.43,81.52-58.66c12.73-20.58,18.39-45.25,16.37-69.33
213 c-0.55-9.51-2.58-18.92-5.57-27.95c-5.13-14.97-13.39-28.81-24.07-40.48c-0.27-0.08-0.81-0.22-1.08-0.3
214 c-1.83-3.54-5.11-5.92-7.76-8.77c-23.87-23.17-57.25-35.64-90.39-35.16C692.22,731.18,679.37,732.66,666.96,735.85 M275.17,1315.1
215 c0.71-16.2,3.38-32.24,5.53-48.2899c-8.84,12.74-14.87,27.1599-20.51,41.5199c-0.85-12.85,0.79-25.6899,0.82-38.5199
216 c-9.2,13.45-15.02,29.0099-18.47,44.87c-1.64,8.4299-3.5,17.0099-2.47,25.6399c-7.39-7.5199-13.12-16.6399-16.85-26.49
217 c-2.91-7.01-3.89-14.58-5.78-21.87c-1.49,14.9501-1.62,30.0601,0.42,44.9701c2.14,16.37,6.37,33.2799,16.83,46.4299
218 c-0.14-11.66-1.88-23.21-2.83-34.8099c10.74,14.3899,14.93,32.7699,15.39,50.48c0.08,15.7,0,31.4-0.78,47.09
219 c2.42-3.45,3.63-7.53,5.15-11.4c3.61-9.4299,6.75-19.03,9.58-28.72c4.35-15.45,8.22-31.3101,16.49-45.26
220 c-0.46,19.4401-2.23,38.85-3.38,58.27c5.15-10.8,12.08-20.99,21.57-28.4301c-1.04,19.02,0.2,38.3,5.18,56.74
221 c4.66-2.0199,5.87-7.45,8.29-11.4199c4.05,16.97,17.34,30.53,33.25,37.03c2.59-7.7101,3.07-15.9301,2.78-24
222 c1.05,5.23,1.79,10.5299,3.06,15.73c3.23,13.39,9.41,26.11,18.23,36.72c6.59,8.0699,13.92,15.84,22.89,21.26
223 c-7.87-16.4-16.55-32.42-24.33-48.87c-4.62-9.25-8.95-18.72-11.57-28.75c-5.9-21.03-5.99-43.17-4.28-64.78
224 c1.49-21.3099,9.7-41.51,10.66-62.9c-4.8,3.1-7.91,7.9601-11.79,12.03c-0.07-4.49,0.74-8.9301,0.83-13.4
225 c-9.89,7.86-18.16,17.4501-26.02,27.27c0.64-10.5,5.31-20.11,9.93-29.36c-4.06,1.12-7.62,3.39-11.27,5.41
226 c3.85-13.42,6.62-27.2201,6.94-41.2101c-5.36,7.3201-11.19,14.9-19.4,19.15c-0.72-12.52,3.64-24.4299,6.79-36.33
227 C300.42,1277.34,286.91,1295.71,275.17,1315.1 M439.71,1355.77c-2.87,8.3199-6.22,16.53-11,23.96
228 c-10.13,15.96-19.78,32.23-29.84,48.23c-5.61,8.54-12.3,16.3401-19.91,23.16c7.59-0.98,13.73-5.86,19.46-10.54
229 c-0.84,11.8501-5.97,22.7301-10.52,33.51c8.7-9.5299,16.67-19.84,26.4-28.36c-2.12,5.54-5.72,10.42-7.39,16.16
230 c5.82-2.63,10.96-6.4401,16.2-10.02c-0.24,14.86-2.67,29.5699-4,44.35c4.89-10.51,7.56-21.87,11.58-32.6899
231 c0.92,11.99,3.38,24.2,9.91,34.5c-0.61-13.92,1.4-28.1901,7.77-40.7101c3.04-6.36,7.64-11.7799,11.03-17.9399
232 c6.39-11.04,11.06-22.98,14.97-35.1c2.66-8.3101,5.41-16.6801,6.69-25.3401c-4.32,3.79-8.07,8.2001-12.58,11.77
233 c0.98-6.9399,3.55-13.51,4.9-20.37c-10.93,11.23-20.5,23.76-31.49,34.9501c5.77-14.66,11.92-29.3,15.17-44.78
234 c-7.47,2.95-12.94,9.17-17.59,15.49C438.97,1369.25,440.08,1362.51,439.71,1355.77 M466.67,1464.66
235 c-3.11,7.4199-3.91,15.6-3.26,23.58c1-0.97,1.97-1.97,2.88-3c11.08-13.95,25.11-25.4,40.52-34.26
236 c-3.28-5.6899-4.82-12.62-1.9-18.78C487.91,1436.14,473.51,1448.71,466.67,1464.66 M585.59,1559.58
237 c-4.63,5.7301-10.15,11.14-12.35,18.38c-1.79,5.11-0.98,10.77,1.22,15.64c2.61,5.73,4.83,11.62,7.08,17.5
238 c2.61-8.53,5.28-17.09,9.63-24.9299c5.21-10.8501,13.19-19.9401,21.04-28.92c2-2.27,4.53-4.11,5.94-6.84
239 c-5.26-3.3-10.63-6.4401-16.27-9.04C596.07,1547.08,590.92,1553.42,585.59,1559.58 M609.77,1567.78
240 c-11.86,15.45-15.02,37.0599-8.42,55.33c4.61-16,11.79-31.1799,20.37-45.42c3.8101-6.36,9.1801-11.62,15.41-15.59
241 c1.86-0.98-0.4-2.4-1.29-2.99c-3-1.72-6.22-4.0599-9.76-3.87C619.6,1557.74,614.09,1562.41,609.77,1567.78 M626.49,1623.08
242 c1.21-1.99,2.32-4.0399,3.34-6.12c6.84-13.75,16.28-26.1499,27.54-36.58c1.18-1.4,3.11-2.5699,3.42-4.4301
243 c-2.3-3.9199-6.54-6.1599-10.7599-7.4299C633.86,1581.12,622.21,1602.2,626.49,1623.08 M1284.3101,1579.72
244 c-0.02,9.74,0.5599,19.49-0.29,29.23c-0.76,12.5601-2.89,25.55-9.8101,36.3101c-3.73,6.08-9.26,10.88-15.47,14.3099
245 c1.14,9.2001,1.51,18.54,3.9401,27.54c11.09-11.96,19.45-26.46,23.99-42.14C1292.86,1623.63,1291.01,1600.7,1284.3101,1579.72
246 M656.79,1590.6801c-10.52,9.88-16.7,23.6599-19.25,37.7c-1.9,10.54,1.29,21.61,8.25,29.71c1.4-8.85,2.52-17.76,4.68-26.46
247 c1.6201-6.28,2.22-13.3101,6.82-18.29c3.34-3.3199,7.52-5.74,10.53-9.4099c5.51-6.3501,7.25-15.9901,3.45-23.62
248 C666.04,1583.15,661.2,1586.7,656.79,1590.6801 M662.25,1615.25c-3.31,8.29-5.01,17.41-3.69,26.3101
249 c0.44,5.7699,1.75,11.58,5,16.47c2.38-4.4,3.58-9.3,5.71-13.8c4.96-11,9.61-22.15,15.2-32.85c3.1201-5.75,5.8701-12,5.48-18.6901
250 C677.4,1594.1801,666.99,1603.85,662.25,1615.25 M701.26,1608.29c-11.5,4.71-20.54,15.2799-22.28,27.73
251 c-1.33,11.48-1.53,23.76,3.73,34.38c3.04,6.2899,8.53,10.98,14.57,14.2899c1.67-4.5399,1.96-9.4199,3.2-14.0599
252 c2.57-10.76,5.46-21.47,9.24-31.86c1.9901-5.73,5.69-11.49,4.1801-17.79C712.51,1614.72,706.77,1610.76,701.26,1608.29
253 M710.31,1654.25c-3.34,8.9399-5.32,19.17-1.78,28.35c3.65,9.23,12.53,15.09,21.52,18.35c-3.57-11.25-5.11-23.61-1.22-35
254 c2.47-8.26,9.03-14.5699,11.12-22.99c2.21-6.7999,0.98-14.39-3.04-20.26C724,1628.74,714.86,1640.98,710.31,1654.25
255 M749.16,1645.21c-4.37,6.0601-6.75,13.41-7.41,20.8201c-0.87,10.14,1.71,20.15,4.06,29.9399c1.99,6.77,3.35,13.88,6.63,20.1801
256 c4.2-14.11,6.81-28.64,8.75-43.22c0.83-6.5601,2.05-13.4701-0.36-19.8501C759.23,1648.08,753.24,1647.34,749.16,1645.21
257 M764.26,1678.95c-0.52,8.3401-0.45,16.8601,1.5,25.04c1.31,4.39,2.55,9.24,6.12,12.39c6.86-17.3101,9.62-35.91,10.82-54.4
258 c0.19-4.4299-0.16-9.4399-3.54-12.7C769.77,1656.11,765.13,1667.65,764.26,1678.95 M807.12,1658.2
259 c-6.01,4.27-10.79,10.53-12.38,17.8301c-2.48,10.1699,0.25,20.6799,3.97,30.2c2.07,5.02,3.32,10.4,6.03,15.15
260 c1.28-15.01,3.61-29.9,5.69-44.8101c0.72-6.63,2.71-13.46,0.7-20.0399C809.73,1656.9301,808.27,1657.25,807.12,1658.2
261 M825.12,1688.0601c-2.74,9.2699-0.35,19.12,2.74,27.99c2.32,6.21,4.27,12.85,8.58,18.0199c5.33-20.2799,6.43-41.2999,7.37-62.1599
262 C835.44,1673.7,827.8,1679.8,825.12,1688.0601 M643.34,1682.79c0.2,18.22-1.29,36.5399-5.61,54.2799
263 c-1.78,7.9701-4.19,15.8601-4.84,24.04c6.31-4.77,10.58-11.64,13.16-19.03C654.05,1723.23,653.44,1700.73,643.34,1682.79
264 M864.09,1691.53c-1.15,11.4,0.67,23.11,5.0099,33.7c2.34-4.12,4.15-8.59,5-13.26C875.19,1703.92,870.77,1695.88,864.09,1691.53
265 M664.32,1711.6c-1.62,13.5601-3.45,27.13-7.14,40.3101c-2.82,13.48-6.88,26.72-9.16,40.2999c10.22-11.7,17.1-26.1699,20.74-41.22
266 C671.79,1737.84,670.05,1723.78,664.32,1711.6 M682.84,1749.01c-1.52,6.87-4.77,13.1799-6.52,19.98
267 c-3.62,12.84-5.36,26.28-4.63,39.61c5.93-5.34,9.73-12.61,13.32-19.64c4.01-8.7899,7.37-18.0499,8.27-27.73
268 c1.43-12.79-1.16-25.86-6.8101-37.37C685.83,1732.3101,685.1,1740.8,682.84,1749.01 M714.58,1725.88
269 c-4.33,14.4301-8.96,28.78-13.39,43.1899c-2.39,8.26-5.94,16.2301-6.94,24.8501c-1.4,9.14,0.06,18.86,4.89,26.83
270 c0.62,0.85,1.09,2.22,2.43,2.01c6.77-17.2,12.85-34.74,17.11-52.75c2.1-10.37,5.01-20.91,3.71-31.5701
271 C721.68,1733.51,719.73,1727.6899,714.58,1725.88 M739.09,1742.58c-2.27,14.2101-4.66,28.4301-8.31,42.36
272 c-5.07,19.29-10.41,38.6101-12.6801,58.4801c9.34-5.3501,14.56-15.91,15.63-26.3501c1.22-12.6399,3.89-25.08,6.73-37.4399
273 c1.43-6.54,4.11-12.89,4.1-19.67C744.68,1753.8101,743.15,1747.33,739.09,1742.58 M782.29,1755.84
274 c-0.11,14.36-1.34,28.8101-4.77,42.79c-2.47,8.89-6.18,17.4-8.34,26.39c-3.71,14.35-5.07,29.1899-5.44,43.97
275 c0.12,6.37,0,13.09,2.52,19.0701c6.1-12.92,10.95-26.4,14.98-40.0901c6.4-21.87,11.1-44.2999,12.91-67.03
276 c0.3199-5.6,1.78-11.4199-0.19-16.86C792.21,1759.25,787.29,1756.1801,782.29,1755.84 M746.57,1796.58
277 c-7.56,19.55-9.48,41.88-2.09,61.78c2.05-5.65,2.84-11.65,4.54-17.39c4.57-18.4,11.84-36.0499,15.31-54.73
278 c0.72-4.63,2.38-9.17,2.19-13.89C757.43,1777.9,750.61,1786.8101,746.57,1796.58 M897.66,1778.1899
279 c0.84,14.5901,1.34,29.2401,0.16,43.8301c-1.06,17.65-3.89,35.4399-1.48,53.09c4.73-7.5,6.69-16.38,7.08-25.15
280 c0.32-13.38,1.5-26.75,3.63-39.96c0.94-6.74,3.09-13.25,4.18-19.95C907.19,1785.6,902.64,1781.5601,897.66,1778.1899
281 M814.44,1780.17c-1.22,15.2999-4.26,30.47-9.1,45.0399c-6.47,20.67-8.77,42.51-8,64.1001c6.21-10.4601,10.58-21.9301,14.84-33.3
282 c7.86-20.77,11.05-42.92,13.54-64.88c0.39-3.25,0.35-7.15-2.3199-9.46C820.93,1779.48,817.45,1779.98,814.44,1780.17 M869.1,1780.9
283 c-1.8199,17.39-3.97,34.77-7.49,51.91c-4.24,19.8199-7.22,40-7.33,60.2999c6.77-8.67,10.61-19.26,13.08-29.87
284 c2.34-10.73,4.95-21.4,7.96-31.96c2.46-9.35,6.76-18.4501,6.23-28.3301C881.72,1794.01,876.84,1785.36,869.1,1780.9
285 M925.96,1780.84c-0.65,18.03-0.2,36.0901-0.72,54.14c0,10.78-0.43,21.6901,2.13,32.27c2.92-3.0601,4.49-7.0601,6.03-10.92
286 c3.77-9.99,4.8-20.75,5.08-31.34c0.22-11.73-0.75-23.51-3.28-34.97C934.29,1785.38,930.13,1782.39,925.96,1780.84 M841.28,1783.98
287 c-1.09,2.35-2.2401,4.6801-3.32,7.05c-9.16,19.53-11.18,41.28-14.4,62.34c-1.14,9.58-3,19.09-3.41,28.75
288 c12.77-22.75,20.15-47.98,26.49-73.14c1.25-5.99,3.77-11.9299,3.18-18.14C849.44,1786.6,845.39,1783.66,841.28,1783.98z"/>
289 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1049.3101,133.64c23.37,3.14,46.45,8.19,69.3799,13.67
290 c24.2301,6.28,48.4601,13.62,70.6801,25.36c28.67,14.72,53.5699,36.19,73.84,61.13c18.77,23.05,36.3401,47.02,54.01,70.91
291 c0.8301,1.19,1.5,2.47,2.2001,3.77c-3.53-2.79-6-6.6-8.9501-9.92c-13.7-15.97-27.36-31.99-41.9299-47.18
292 c-7.51-7.55-14.9601-15.36-23.9701-21.15c-7.97-5.03-16.0299-9.91-24.2-14.58c-5.25-2.8-10.23-6.16-15.8199-8.24
293 c13.97,15.02,29.88,28.14,44.09,42.95c22.85,24.01,43.49,50.81,56.47,81.52c6.33,16.35,14.86,31.71,22.59,47.41
294 c14.3,28.6,28.9801,57,43.52,85.47c1.9301,4.15,4.49,8.03,5.86,12.43c-4.83-7.15-8.5-15.04-12.8099-22.51
295 c-18.89-33.62-37.73-67.28-57.74-100.25c-5.3401-8.58-10.6901-17.17-16.5901-25.38c-5.35-7.55-12.3899-13.63-18.9399-20.08
296 c-14.37-13.77-29.74-26.49-46-37.95c-10.27-6.77-21.01-13.05-32.6-17.25c4.8199,6.07,10.98,10.89,16.27,16.54
297 c15.5699,15.83,31.21,31.7,44.3999,49.63c3.4901,5,7.4501,9.75,10.1901,15.24c-7.4301-6.76-14.74-13.69-22.8-19.71
298 c-11.77-8.77-23.6699-17.49-36.74-24.27c-9.71-5.06-19.6799-9.91-30.3199-12.69c11.12,13.81,23.8099,26.29,36.63,38.5
299 c12.33,11,24.39,22.34,35.1799,34.87c12.25,13.62,22.4601,28.87,33.53,43.43c2.73,3.8,5.67,7.46,8.22,11.4
300 c-6.5699-6.37-14.0599-11.81-22.26-15.87c4.9301,9.38,9.7301,18.9,12.55,29.17c2.46,9.73,7.0601,18.69,10.89,27.91
301 c19.91,45.56,39.88,91.1,60.5499,136.31c1.39,2.99,2.89,5.96,3.64,9.21c-4.6499-6.85-8-14.48-12.0699-21.67
302 c-23.8-44.45-47.2-89.13-72.39-132.81c-4.7-7.8-8.9399-16.01-15.25-22.67c-11.1801-12.54-18.55-27.84-29.29-40.7
303 c-10.85-13.69-23.63-25.65-35.64-38.27c-13.6799-13.68-26.9099-27.84-41.3099-40.78c-13.61-12.26-27.51-24.29-42.74-34.52
304 c12.71,1.76,24.8199,6.3,36.73,10.9c-6.5599-10.27-14.87-19.29-22.33-28.91c14.21,4.35,28,10.01,42.25,14.22
305 c-8.92-13.55-20.55-25.25-33.42-35.07c-13.9-10.31-29.16-18.63-44.86-25.84c5.61-0.21,11.24,0.19,16.85-0.32
306 c-5.49-3.42-11.86-5.16-17.48-8.39c-6.23-3.27-12.3-6.85-18.05-10.89c1.29-3.8,2.63-7.98,6.02-10.46
307 c2.47-1.96,5.8101-1.73,8.77-2.11C1069.15,154.08,1058.71,144.31,1049.3101,133.64z"/>
308 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M491.12,180.16c4.17-2.46,8.05-5.4,12.38-7.59
309 c-2.81,3.47-6.25,6.35-9.3,9.59c-9,9.23-16.85,19.49-25.35,29.16c8.85-5.43,17.06-11.95,26.33-16.7
310 c-0.59,4.77-3.35,8.77-6.11,12.55c12.92-4.98,24.71-12.43,37.08-18.56c-1.35,9.32-7.15,16.94-12.86,24.06
311 c4.95-2.03,9.46-4.97,14.4-7.03c16.1-7.1,33.16-12.29,50.61-14.63c-31.51,22.44-61.25,47.34-89,74.3
312 c-12.35,11.68-24.13,23.98-35.16,36.91c-12.32,14.33-26.32,27.24-41.76,38.13c-14.55,9.84-28.44,20.74-40.81,33.23
313 c-2.46,2.33-4.54,5.64-8.28,5.83c-9.57,1.53-17.49,7.51-24.53,13.79c3.6-8.81,10.12-15.9,15.43-23.67
314 c-1.64,0.84-3.25,1.72-4.74,2.79c-9.62,7-18.85,14.54-27.7,22.48c-7.44,6.91-15.47,13.46-20.68,22.33
315 c4.03-20.22,12.72-39.53,25.07-56.05c2.49-3.41,5.45-6.45,7.9-9.88c-6.58,1.89-12.08,6.23-17.48,10.26
316 c-8.44,6.43-14.92,14.87-21.74,22.87c3.35-17.91,9.97-35.13,18.14-51.37c15.24-29.51,36.63-55.53,61.07-77.89
317 c19.55-17.86,40.5-34.45,63.71-47.32C455.11,197.73,474.07,190.79,491.12,180.16z"/>
318 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M631.41,197.46c3.25-1.98,6.41-4.13,9.9-5.67
319 c-8.21,7.99-17.35,14.99-25.83,22.7c-16.65,14.65-33.34,29.29-48.8,45.2c-11.12,11.36-20.67,24.1-30.32,36.7
320 c-6.08,8.29-12.18,16.59-17.86,25.16c-2.19,3.53-4.63,7.02-5.69,11.1c2.27-2.37,4.12-5.1,6.2-7.63
321 c9.85-11.59,22.27-20.6,34.95-28.84c4.53-2.8,9.11-5.63,14.15-7.42c-2.91,12.73-8.54,24.75-16.09,35.38
322 c10.94-2.22,20.05-9.1,29.75-14.2c-0.58,6.21-3.08,11.93-4.64,17.9c5.64-4.29,11.14-8.9,17.46-12.19
323 c-9.8,16.39-22.35,31.16-30.47,48.56c-8.19,16.69-12.36,34.97-15.67,53.15c-4.54,27.5-5.79,55.61-3.02,83.36
324 c2.46,21.44,4.71,42.91,6.69,64.4c1.67,18.76-0.2,38.12-7.49,55.61c-0.49,0.99-1.12,1.91-1.87,2.74
325 c-0.83-15.17,1.89-30.3199,0.72-45.5c-0.33-14.2599-4.21-28.04-7.29-41.86c-2.43-11.82-5.93-23.44-7.07-35.49
326 c-2.05,2.8-2.81,6.23-3.96,9.44c-6.6299,19.43-9.4,39.89-11.8799,60.18c-0.33,1.46-1.55,2.49-2.39,3.66
327 c-5.37,6.18-8.05,14.2-9.46,22.15c-0.58-10.8,0.64-21.6,0.34-32.4c-5.76,14.98-12.22,30.04-22.06,42.85
328 c3-11.77,6.13-23.52,8.1-35.52c2.59-15.4,5.67-30.77,7.05-46.33c-10.71,20.27-20.45,41.04-30.58,61.61
329 c0.36-4.81,1.8-9.43,2.6-14.16c3.67-19.77,6.48-39.7599,7.43-59.85c-7.05,6.43-12.4,14.5-17.76,22.33
330 c-5.45,8.46-10.27,17.31-14.44,26.46c-1.97,4.38-5.21,8.43-9.84,10.14c6.22-13.59,10.62-27.95,14.43-42.38
331 c-8.3,5.83-12.92,15.26-18.51,23.44c1.67-10.4,5.03-20.41,7.77-30.55c-7.35,8.22-13.57,17.39-20.15,26.23
332 c-10.67,14.4-19.71,29.97-31.16,43.79c-8.94,10.98-18.73,21.33-29.7,30.3c5.34-15,12.74-29.29,17.51-44.52
333 c-8.28,8.03-15.85,16.78-24,24.96c-9.04,9.28-17.39,19.48-28.32,26.67c-7.17,4.69-14.9,8.83-23.25,10.94
334 c12.8-11.23,23.69-24.65,31.69-39.7c7.51-14.11,15.03-28.21,22.4-42.39c9.33-18.48,19.34-36.67,27-55.94
335 c6.31-15.15,10.96-30.97,18.22-45.73c2.89-6.75,7.01-12.87,9.99-19.57c-7.9,8.62-14.81,18.1-22.54,26.87
336 c-12.05,14.32-23.95,28.77-35.55,43.45c-13.05,15.85-27.14,30.82-41.93,45.05c-5.22,4.91-10.7,9.9901-17.6,12.36
337 c3.39-4.23,7.74-7.54,11.32-11.6c25.49-26.4,43.86-58.49,61.85-90.2c8.98-15.55,16.7-31.77,25.53-47.4
338 c9.3-16.41,18.75-32.8,30.25-47.79c8.24-10.47,17.08-20.48,24.59-31.51c11.37-17.48,26.31-32.73,43.8-44.1
339 c-1.53,7.7-4.58,14.97-7.82,22.08c23.06-26.6,48.86-51.18,78.56-70.28C581.46,228.09,606.43,212.77,631.41,197.46z"/>
340 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M846.13,322.24c16.55-12.75,32.55-26.21,48-40.27
341 c-6.59,14.16-10.25,29.45-12.56,44.84c-3.31,22.3-2.7,45.17,1.63,67.28c3.08,14.83,8.37,29.14,15.02,42.73
342 c14.02,30.13,28.51,60.03,43.1201,89.88c8.5099,17.09,17.9,33.74,27.96,49.97c11.66,19.21,24.39,37.83,39.12,54.84
343 c6.75,7.63,11.35,16.92,14.38,26.6c5.4901,17.38,5.52,35.83,5.73,53.87c-0.26,1.68-0.42,3.38-0.62,5.08
344 c-0.3301-3.1-0.9701-7.46-4.97-7.53c-1.5,2.47-2.68,5.12-4.15,7.61c-2.64-12.2-1.18-24.99,2.88-36.71
345 c-4.9,5.79-5.93,13.55-7.86,20.63c-2.77,12.77-4.99,25.83-4.5,38.94c0.06,5.36,1.79,10.46,2.89,15.65l-0.72,1.7599
346 c-7.06,14.9901-11.32,31.08-16.19,46.86c-3.62,13.26-8.17,26.52-8.15,40.43c-0.54-0.11-1.63-0.35-2.17-0.47
347 c-40.78-8.92-83.6299-5.67-123.54,5.93c-0.81-10.61-5.94-21.56-15.68-26.67l-0.4-0.24c-4.04-17.4-11.65-33.99-22.47-48.22
348 c7.33-5.15,16.71-5.4901,25.17-3.47c5.72-3.66,11.19-7.72,16.07-12.44c-1.69-6.84-3.97-13.6-7.66-19.63
349 c-2.22-3.71-5.41-6.77-7.2401-10.71c-5.05-10.27-12.11-19.94-21.9399-26.0601c-0.83,2.9-1.26,5.9-1.0601,8.9301
350 c-10.31-5.51-20.7599-10.8-31.59-15.19c-10.21-3.73-21.21-4.12-31.88-5.58c1.22-13.98,1.36-28.29-2.15-41.97
351 c6,12.91,14.31,25.06,26.04,33.4c9.8,6.73,19,14.28,28.14,21.86c-12.9301-15.92-26.02-31.78-40.6801-46.16
352 c15.8,13.65,34.12,24.42,54,30.93c-6.99-9.55-14.12-19-21.21-28.48c20.52,11.65,43.35,18.39,66.13,24.09
353 c9.63,2.31,19.31,4.44,29.05,6.24c-20.61-8.41-41-17.5-60.39-28.48c-10.12-6.03-20.5-11.98-29.11-20.09
354 c10.14,1.85,19.92,5.23,29.73,8.32c25.5,8.43,50.6,17.9901,75.75,27.39c-8.44-4.78-17.47-8.46-26.13-12.83
355 c-15.54-7.42-31.02-14.98-46.56-22.41c-7.45-3.74-15.15-7-22.39-11.12c12.5,2.17,24.53,6.38,36.6801,9.95
356 c17.12,5.37,34.16,10.97,51.17,16.67c9.14,2.79,17.98,6.55,27.3,8.69c-18.63-9.03-36.79-19.03-54.94-28.99
357 c-26.86-15.19-53.78-30.68-77.8-50.18c-9.53-7.61-17.41-17.12-23.4-27.72c-11.67-19.88-17.18-42.96-17.83-65.89
358 c-0.73-21.46,3.55-42.78,9.97-63.17c5.51-17.93,13.49-34.98,22.15-51.57C808.39,356.93,825.73,337.47,846.13,322.24z"/>
359 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1006.82,323.79c1.92,31.72,2.68,63.53,3.54,95.31
360 c1.41,26.56,3.52,53.35,10.46,79.12c5.1199,18.83,13.21,36.68,22.06,54.02c9.53,18.34,20.1,36.41,34.2,51.67
361 c7.17,7.85,15.5,14.5,23.25,21.75c13.5901,12.63,27.3101,25.16,40.0901,38.61c-6.36-0.12-12.7201,0.04-19.0701-0.04
362 c-13.13-13.05-26.45-25.92-39.1899-39.34c-15.0901-15.94-30.8101-31.42-43.92-49.08c-9.55-12.79-17.99-26.37-25.64-40.36
363 c-7.41-14.05-11.93-29.57-13.49-45.37c-1.78-15.66-0.25-31.42-0.05-47.13c0.25-17.71,2.19-35.32,3.44-52.98
364 C1004.1,367.92,1005.81,345.87,1006.82,323.79z"/>
365 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M923.44,354.73c4.26,19.05,8.97,38.03,15.11,56.58
366 c8.12,23.37,15.98,46.84,22.77,70.64c7.71,25.56,18.97,50.02,33.4,72.48c11.66,18.78,25.22,36.38,40.51,52.35
367 c13.51,13.79,27.61,27.0099,42.3,39.55c7.73,6.82,16.2,12.75,23.88,19.64c-12.0601,0.77-25.35,3.45-33.9301,12.64
368 c0.55-3.95,0.76-7.94,0.8101-11.92c-6.37,0.61-10.36,5.86-14.25,10.32c-4.3101,5.05-7.8201,10.83-9.9601,17.14
369 c0.6001-5.31,1.63-10.57,2.0801-15.89c-5.86,9.85-9.37,20.94-14.85,31.01c-0.3501,0.42-1.05,1.25-1.4,1.67
370 c1.6599-14.01,0.5399-28.16-1.14-42.11c-2.3-21.04-9.3-41.77-21.51-59.15c-25.66-35.2-44.75-74.79-59.5-115.66
371 c-5.75-16.05-11.31-32.17-16.14-48.52c-3.39-11.72-7.43-23.3-9.27-35.4C919.23,391.77,920.23,372.97,923.44,354.73z"/>
372 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1021.67,355.68c6.17,24.73,12.3701,49.47,18.61,74.19
373 c5.75,22.15,10.7999,44.57,18.85,66.05c8.45,23.01,18.25,45.57,30.02,67.09c17.58,31.96,39.65,61.14,62.15,89.74
374 c3.12,4.03,6.5299,7.82,9.8899,11.65l1.1001,1.33c-5.15-0.55-10.28-1.34-15.4701-1.23l-0.38-0.01
375 c-7.46-9.11-15.3899-17.85-23.7799-26.12c-5.1801-5.19-10.9301-9.78-15.9501-15.14c-13.12-13.5-24.5299-28.6-34.49-44.55
376 c-10.0399-15.83-18.84-32.46-26.14-49.72c-9.9399-23.25-17.5199-47.69-20.21-72.91c-1.36-14-2.3-28.05-3.34-42.09
377 C1021.23,394.58,1019.38,375.07,1021.67,355.68z"/>
378 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M704.74,601.03c7.97,20.34,12.11,42.1,12.75,63.91
379 c0.07,5.56,1.16,11.11,3.31,16.24c2.33-16.38,3.49-32.92,5.46-49.35c7.26,18.34,13.5,37.08,18.98,56.03
380 c-4.06-0.64-8.12-1.34-12.14-2.17c-5.73-1.19-11.63-0.77-17.41-0.25c1.78,1.54,3.63,3,5.54,4.4c-9.35-3.08-19.21-1.23-28.68,0.04
381 c4.18-9.64,8.4-19.38,10.12-29.82C706.71,640.61,704.81,620.7,704.74,601.03z"/>
382 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M656.51,653.41c3.66,12.21,5.76,24.92,6.02,37.6801
383 c-4.73-0.46-9.47-0.86-14.21-0.42c0.49-3.95,1.87-7.69,2.83-11.52C653.36,670.66,655.04,662.05,656.51,653.41z"/>
384 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1121.35,664.23c6.35,0.08,12.7101-0.08,19.0701,0.04
385 c7.2999,6.52,13.62,14.08,20.75,20.77c-3.8401-7.47-9.9301-13.45-14.3501-20.54c5.1901-0.11,10.3201,0.68,15.4701,1.23
386 l-1.1001-1.33C1176.39,681,1194.88,695.05,1216,703.13c-1.47-6.43-4.13-12.47-6.1801-18.71c4.1901,4.04,7.8101,8.71,12.5801,12.14
387 c7.9399,6.16,17.11,10.49,26.58,13.75c17.38,6.66,34.37,14.56,50.1,24.59c17.7001,11.56,31.41,29.63,36.02,50.44
388 c-1.0499,4.43-0.4,9.0099-0.8099,13.5c-0.4701,6.73-1.9401,13.37-4.4501,19.6299c-4.87-4.18-10.47-7.48-16.62-9.3799
389 c-1.12,3.7599-2.49,7.44-4.24,10.95c-4.26-2.87-8.3199-6.34-13.39-7.63c-9.58-29.79-30.6799-55.11-56.58-72.27
390 c-17.22-11.34-36.98-18.68-57.38-21.59c-21.53-2.85-43.72-2.23-64.8101,3.25c-15.3199,3.88-29.74,10.73-42.99,19.29
391 c-2.0299,0.29-4.2,0.4-5.84,1.78c-5,3.7-10.4399,6.81-16.38,8.72c-4.66,1.45-8.5499,4.68-13.33,5.8
392 c-6.98,1.75-14.22,1.38-21.35,1.42c-1.89-0.12-4.07,0.17-5.45-1.4l0.72-1.7599c-1.1-5.19-2.83-10.29-2.89-15.65
393 c-0.49-13.11,1.73-26.17,4.5-38.94c1.93-7.08,2.96-14.84,7.86-20.63c-4.06,11.72-5.52,24.51-2.88,36.71
394 c1.47-2.49,2.65-5.14,4.15-7.61c3.9999,0.0699,4.64,4.43,4.97,7.53c0.2-1.7,0.36-3.4,0.62-5.08l1.38-1.04
395 c0.35-0.42,1.0499-1.25,1.4-1.67c5.48-10.07,8.99-21.16,14.85-31.01c-0.4501,5.32-1.48,10.58-2.0801,15.89
396 c2.14-6.31,5.65-12.09,9.9601-17.14c3.89-4.46,7.88-9.71,14.25-10.32c-0.05,3.98-0.26,7.97-0.8101,11.92
397 c8.5801-9.19,21.87-11.87,33.9301-12.64c14.72,10.54,30.58,19.53,47.38,26.32c1.08,0.34,2.2,0.62,3.34,0.86
398 C1141.97,683.41,1131.4301,674.06,1121.35,664.23z"/>
399 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M577.29,701.25c8.86-10.46,16.96-21.6,23.64-33.57
400 c0.17,13.49-0.52,27-1.71,40.45l-0.36,0.19c-7.97,4.57-16.52,8.3-25.6,9.99c-5.61,0.98-10.94,3.01-16.15,5.22
401 C563.46,715.77,570.82,708.91,577.29,701.25z"/>
402 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M617.46,697.37c3.77-9.21,6.52-18.82,10.29-28.03
403 c1.21,7.98,1.61,16.0699,1.53,24.14l-0.4301,0.18c-3.44,1.36-6.8199,2.86-10.27,4.17c-0.2-0.09-0.6-0.25-0.8-0.33L617.46,697.37z"
404 />
405 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M715.69,685.44c5.78-0.52,11.68-0.94,17.41,0.25
406 c4.02,0.83,8.08,1.53,12.14,2.17c4.03,11.31,6.31,23.38,4.98,35.41c-23.45-6.81-48.31-7.91-72.42-4.52
407 c5.02-9.56,10.75-18.79,14.75-28.87c9.47-1.27,19.33-3.12,28.68-0.04C719.32,688.44,717.47,686.98,715.69,685.44z"/>
408 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M647.52,690.72l0.8-0.05c4.74-0.44,9.48-0.04,14.21,0.42l0.2,0.02
409 c-0.48,10.3-1.24,20.7-4.1,30.66c-0.41,2.19-3.05,2.23-4.7,2.99c-7.05,2.03-13.53,5.51-20.24,8.38
410 C638.48,719.07,643.72,705.11,647.52,690.72z"/>
411 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M762.75,690.88c10.67,1.46,21.67,1.85,31.88,5.58
412 c10.83,4.39,21.28,9.68,31.59,15.19c-0.2-3.03,0.23-6.03,1.0601-8.9301c9.83,6.1201,16.89,15.79,21.9399,26.0601
413 c1.83,3.9399,5.02,7,7.2401,10.71c3.69,6.03,5.97,12.79,7.66,19.63c-4.88,4.72-10.35,8.78-16.07,12.44
414 c-8.46-2.02-17.84-1.68-25.17,3.47c-14.29-18.83-32.87-34.55-54.37-44.52c-4.57-2.3-9.49-3.79-14.06-6.08
415 C759.2,713.85,761.59,702.37,762.75,690.88z"/>
416 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M618.58,697.83c3.45-1.31,6.83-2.81,10.27-4.17
417 c0.6801,16.65-4.55,32.94-11.2,48.02c-1.13,3.03-4.17,4.55-6.52,6.51c-9.34,7.33-17.32,16.21-25.24,25.02
418 c3.83-8.51,8.43-16.67,12-25.31c6.34-14.64,12.08-29.54,17.62-44.51c0.71-1.82,1.06-3.76,1.1-5.7c0.29-0.04,0.88-0.14,1.17-0.19
419 C617.98,697.58,618.38,697.74,618.58,697.83z"/>
420 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M573.26,718.31c9.08-1.69,17.63-5.42,25.6-9.99
421 c-1.5,22.75-6.95,45.17-15.19,66.41c-1.48,4.17-4.12,7.74-6.44,11.45c-2.38,3.64-3.96,7.72-6.08,11.49
422 c-5.4901,3.97-11.69,6.84-18.02,9.2c-8.44,3.23-16.46,7.53-23.84,12.75c-12.7-1.91-25.35-4.1-37.96-6.53
423 c-1.24-0.59-2.47-1.1801-3.69-1.77c4.79-2.58,9.91-4.46,14.72-6.99c2.56-1.52,5.52-3.28,6.31-6.37c-0.64-3.22-4.14-4.16-6.61-5.57
424 c3.53-5.23,7.14-10.41,10.42-15.81c-3.5,2.76-6.94,5.6-10.62,8.13c2.91-7.17,7.13-13.79,12.28-19.56
425 c6.81-7.55,13.54-15.16,20.39-22.67c0.3,5.61-1.76,10.97-2.45,16.49c7.09-12.65,15.83-24.2599,25.03-35.4399
426 C562.32,721.32,567.65,719.29,573.26,718.31z"/>
427 <path stroke="#000000" stroke-width="0.8" d="M1116.8199,721.8c21.0901-5.48,43.28-6.1,64.8101-3.25
428 c20.4,2.91,40.16,10.25,57.38,21.59c25.9,17.16,47,42.48,56.58,72.27c1.86,6.05,3.4601,12.2,4.42,18.47
429 c1.45,10.01,1.38,20.17,1.12,30.26c-1.25,17.43-6,34.63-14.17,50.1c-14.48,27.28-38.45,49.2-66.2999,62.34
430 c-20.14,9.36-42.51,13.8-64.6801,13.18c-35.26,0.66-70.5599-12.39-96.7999-35.98c-11.3501-9.76-21.15-21.33-28.87-34.16
431 c-8.6-14.54-14.1801-30.86-16.0801-47.65c-0.05-0.41-0.15-1.24-0.2-1.65c-0.6801-4.93-1.05-9.9-1.05-14.86c0-2.41,0-4.81,0.08-7.19
432 c0.75-14.86,3.82-29.61,9.5-43.38c4.79-11.19,11.14-21.76,19.02-31.05c6.1901-7.2,12.63-14.2401,19.9401-20.34
433 c3.97-3.32,8.51-5.89,12.3099-9.41C1087.08,732.53,1101.5,725.68,1116.8199,721.8 M1133.03,735.01
434 c0.48-0.53,1.4399-1.6,1.9199-2.13c-25.8899,3.65-50.59,15.48-69.48,33.57c-12.76,12.22-24.53,26.33-30.46,43.19
435 c0.6899-0.11,2.08-0.31,2.78-0.42l-0.3301,1.95c5.12-2.53,10.12-5.34,15.5701-7.16c11.7899-4.12,23.37-8.87,34.6699-14.19
436 c9.64-4.34,19.8101-7.5,30.17-9.59c23.89-3.74,49.05-2.09,71.51,7.32c9.87,4.62,19.51,9.73,29.15,14.82
437 c7.6599,4.18,13.6799,10.56,20.08,16.35c0.72,0.5601,1.4401,1.1201,2.1801,1.73c-0.0801,0.28-0.25,0.84-0.3301,1.11
438 c-9.5399-5.65-20.1-9.26-29.71-14.79c-3.41-1.69-6.42-4.03-9.75-5.85c-11.6-6.5-24.3101-11.11-37.4301-13.33
439 c-8.1399-1.19-16.2899-2.77-24.5599-2.34c-11.9-0.53-23.66,2.08-35.04,5.33c-9.0399,3.03-18.25,5.97-26.38,11.09
440 c-8.48,5.46-16.95,10.93-25.4099,16.44c-6.9901,4.56-14.77,7.69-22.5601,10.58c-2.5,5.1-2.05,11.27-2.71,16.85
441 c4.2899-2.65,9.2799-3.7599,13.85-5.83c11.58-5.05,22.11-12.17,32.3099-19.55c6.8101-5.49,14.2301-10.3199,22.41-13.5
442 c9.0801-3.06,18.16-6.2599,27.61-7.98c4.42-0.72,8.92-0.77,13.36-1.45c15.3201-1.68,30.79,0.57,45.55,4.75
443 c7.9399,2.44,16.02,4.64,23.5601,8.19c7.75,4.24,15.75,8.08,22.84,13.44c8.5399,5.58,15.2899,13.81,25.03,17.51
444 c1.88,0.55,3.7599,1.06,5.6799,1.57c-1.8199-0.08-3.66-0.17-5.45-0.22c-9.4301-1.6899-18.0701-5.98-26.0801-11.1
445 c-9.38-5.33-18.36-11.42-28.1899-15.93c-2.22-0.99-4.39-2.43-6.9-2.24l-0.36-0.66c-8.42-3.34-17.15-6.09-26.17-7.19
446 c9.36,12.36,9.8501,30.6801,0.61,43.2401c-6.0199,7.94-14.5099,14.5699-24.5,16.3799c-9.98,1.6801-20.84,0.2-29.21-5.78
447 c-5.16-3.79-10-8.28-13.04-13.99c-5.1899-9.32-5.5199-20.84-2.1499-30.83c-11.8401,7.12-23.78,14.08-36.04,20.45
448 c-2.37,1.17-4.73,2.35-7.03,3.65c-7.62,4.01-13.65,10.83-22.2,13.07l-0.5801-0.29c-1.5299,0.3-3.0699,0.6-4.5199,1.14
449 c-0.92,1.3-0.3101,2.93,0.25,4.25c-1.27,2.62-0.52,5.59-0.38,8.38c1.3199,16.26,6.23,32.26,14.58,46.3
450 c4.64,6.91,9.5699,13.66,14.77,20.18c12.2,13.21,26.71,24.44,43.09,32c17.88,8.22,37.65,12.44,57.34,12
451 c21.78,0.44,43.7301-4.64,62.9801-14.86c4.61-2.29,8.9199-5.13,13.2999-7.82l0.14-0.26c20.45-14.08,37.2-33.81,46.37-57l0.1,0.19
452 c2.8101-8.33,5.4401-16.77,6.52-25.52c2.88-21.69,0.54-44.57-9.1-64.37c-5.2-12.51-13.42-23.58-22.73-33.33
453 c-24.14-26.4301-59.8201-41.47-95.54-41.04c-3.46,0.04-7.02-0.38-10.3199,0.87C1143.3199,731.65,1137.79,732.41,1133.03,735.01
454 M1111.48,813.49c-2.63,2.6,0.7001,6.55-1.71,9.14c-1.4401,1.72-3.17,3.89-1.9501,6.26c0.8601,3.15,4.25,4.51,7.28,4.19
455 c0.67-2.24,1.3301-4.49,2.51-6.51c3.87,0.3,8.1801-1.63,9.52-5.49c0.95-3.91,1.4301-8.17-0.05-12.01
456 C1121.72,809.29,1115.3,809.02,1111.48,813.49 M1144.97,815.07c0.51,3.71-0.1899,7.56,0.74,11.2c0.73,2.26,3.55,1.54,5.37,1.87
457 c3.2101-3.79,1.9301-9.23,0.9801-13.63C1149.6899,814.72,1147.33,814.94,1144.97,815.07z"/>
458 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M535.67,728.84c-0.11,4.5099,0.32,9.34-1.14,13.64
459 c-6.85,7.51-13.58,15.12-20.39,22.67c-5.15,5.77-9.37,12.39-12.28,19.56c3.68-2.53,7.12-5.37,10.62-8.13
460 c-3.28,5.4-6.89,10.58-10.42,15.81c2.47,1.41,5.97,2.35,6.61,5.57c-0.79,3.09-3.75,4.85-6.31,6.37c-4.81,2.53-9.93,4.41-14.72,6.99
461 c1.22,0.59,2.45,1.18,3.69,1.77c-6.36-1-12.7-2.05-19.01-3.32c13.89-16.94,28.67-33.19,41.39-51.07c3.06-3.96,5.39-8.51,9.08-11.95
462 C528.05,741.56,532.29,735.4,535.67,728.84z"/>
463 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M666.96,735.85c12.41-3.19,25.2599-4.67,38.07-4.38
464 c33.14-0.48,66.52,11.9901,90.39,35.16c2.65,2.85,5.93,5.23,7.76,8.77c-12.99-3.6801-25.5-8.84-38.29-13.09
465 c-4.85-1.38-9.95-1.04-14.92-1.04c-11.28,0.3-22.4-2.34-32.99-5.99c7.82,8.75,19.57,13.36,31.23,13.2599
466 c-9.3,0.34-18.8,0.76-27.8-1.99c-12.97-3.82-26.15-6.99-39.56-8.79c6.27,3.79,12.87,6.96,19.26,10.53
467 c-8.96,0.11-18-1.37-26.25-4.92c-5.03-2.11-10.38-4.18-15.93-3.58c-1.67,0.09-3.5,1.39-3.25,3.26c0.07,3.51-0.24,7.01-1.36,10.36
468 c-5.32-2.04-12.39-3.61-16.73,1.1801c-6.71,0.0099-14.46,1.31-18.08,7.69c5.41-0.5601,12.07-2.4901,16.36,2
469 c-13.14,4.1-27.11,3.62-40.68,2.58c4.27-6.17,9.16-11.95,14.86-16.83c4.2-3.79,7.79-8.23,12.4-11.57
470 c8.82-6.67,18.29-12.7401,28.7-16.61c-2.94,5.35-7.69,9.22-11.82,13.58c7.25-2.86,13.64-7.58,19.46-12.69
471 C660.71,740.3,662.92,736.53,666.96,735.85z"/>
472 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1133.03,735.01c4.76-2.6,10.2899-3.36,15.64-2.65
473 c2.5199,1.06,4.8099,2.58,7.01,4.23c14.5199,1.19,29.09,2.44,43.4099,5.22c4.9601,0.86,9.5701,2.97,13.86,5.55
474 c-1.95,1.32-3.9099,2.61-5.87,3.89c3.8101-0.01,8.1001-1.16,11.61,0.87c2.3401,1.25,2.5801,4.08,3.1801,6.39
475 c6.64,1.06,13.1801,3.76,17.87,8.72c3.48,3.36,5.51,7.82,8.49,11.57c-4.6699,10.16-7.63,21.11-8.49,32.26
476 c-0.2,2.57-0.6,5.13-1.13,7.66c-6.4-5.79-12.42-12.17-20.08-16.35c-9.64-5.09-19.28-10.2-29.15-14.82
477 c-22.46-9.41-47.62-11.06-71.51-7.32c-10.36,2.09-20.53,5.25-30.17,9.59c-11.2999,5.32-22.88,10.07-34.6699,14.19
478 c-5.4501,1.82-10.4501,4.63-15.5701,7.16l0.3301-1.95c-0.7001,0.11-2.0901,0.3101-2.78,0.42c5.9299-16.86,17.7-30.97,30.46-43.19
479 c18.89-18.09,43.5901-29.92,69.48-33.57C1134.47,733.41,1133.51,734.48,1133.03,735.01z"/>
480 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1148.67,732.36c3.2999-1.25,6.86-0.83,10.3199-0.87
481 c35.72-0.43,71.4,14.61,95.54,41.04c9.3099,9.75,17.53,20.8199,22.73,33.33c-3.77-1.78-7.64-3.52-10.78-6.32
482 c-3.77-2.97-6.14-7.19-8.9299-10.99c-2.66-3.67-6.2301-6.49-9.3201-9.75c-2.98-3.75-5.01-8.21-8.49-11.57
483 c-4.6899-4.96-11.23-7.66-17.87-8.72c-0.6-2.31-0.84-5.14-3.1801-6.39c-3.5099-2.03-7.7999-0.88-11.61-0.87
484 c1.9601-1.28,3.92-2.57,5.87-3.89c-4.2899-2.58-8.8999-4.69-13.86-5.55c-14.3199-2.78-28.89-4.03-43.4099-5.22
485 C1153.48,734.94,1151.1899,733.42,1148.67,732.36z"/>
486 <path fill="#4F4F4F" stroke="#4F4F4F" stroke-width="0.8" d="M1067.99,742.87c1.64-1.38,3.8101-1.49,5.84-1.78
487 c-3.7999,3.52-8.34,6.09-12.3099,9.41c-7.3101,6.1-13.75,13.14-19.9401,20.34c-4.51,2.6-7.9199,6.6-11.85,9.93
488 c-4.1899,3.9-8.7,8.36-9.59,14.27c-0.48,2.58,1.1,4.79,2.42,6.85c-5.68,13.77-8.75,28.52-9.5,43.38c-1.25,1.71-2.47,3.45-3.69,5.19
489 c0.4,0.3,1.2,0.9,1.59,1.2c-8.48-3.08-17.17-5.52-25.9901-7.43c0.54,0.12,1.63,0.36,2.17,0.47c-0.02-13.91,4.53-27.17,8.15-40.43
490 c4.87-15.78,9.13-31.87,16.19-46.86c1.38,1.57,3.56,1.28,5.45,1.4c7.1301-0.04,14.3701,0.33,21.35-1.42
491 c4.78-1.12,8.6699-4.35,13.33-5.8C1057.55,749.68,1062.99,746.57,1067.99,742.87z"/>
492 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M716.98,755.28c10.59,3.65,21.71,6.29,32.99,5.99
493 c4.97,0,10.07-0.34,14.92,1.04c12.79,4.25,25.3,9.41,38.29,13.09c0.27,0.08,0.81,0.22,1.08,0.3
494 c10.68,11.67,18.94,25.51,24.07,40.48c-9.19-1.23-18.46-0.49-27.68-0.67c-11.16-5.1-22.35-10.19-34.09-13.82
495 c-8.43-3.32-17.43-4.93-26.45-5.4c-10.11-0.14-20.3-0.23-30.29,1.52c-17.45,4.69-34.97,9.12-52.42,13.79
496 c-5.54,1.9-11.1801,3.46-16.87,4.84c-9.3,2.47-19.2,3.56-27.5601,8.7c-4.99,2.77-8.46,7.41-12.5099,11.28
497 c-9.31,9.05-19.31,17.76-25.69,29.26c1.2-0.7,2.39-1.42,3.6-2.11c-0.9,3.01-2.17,5.89-3.44,8.76
498 c-4.64-29.45,1.07-61.38,19.26-85.47c13.57,1.04,27.54,1.52,40.68-2.58c-4.29-4.4901-10.95-2.5601-16.36-2
499 c3.62-6.38,11.37-7.6801,18.08-7.69c4.34-4.79,11.41-3.22,16.73-1.1801c1.12-3.35,1.43-6.85,1.36-10.36
500 c-0.25-1.87,1.58-3.17,3.25-3.26c5.55-0.6,10.9,1.47,15.93,3.58c8.25,3.55,17.29,5.03,26.25,4.92
501 c-6.39-3.57-12.99-6.74-19.26-10.53c13.41,1.8,26.59,4.97,39.56,8.79c9,2.75,18.5,2.33,27.8,1.99
502 C736.55,768.64,724.8,764.03,716.98,755.28z"/>
503 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1029.73,780.77c3.9301-3.33,7.34-7.33,11.85-9.93
504 c-7.88,9.29-14.23,19.86-19.02,31.05c-1.32-2.06-2.9-4.27-2.42-6.85C1021.03,789.13,1025.54,784.67,1029.73,780.77z"/>
505 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M1248.23,778.8c3.09,3.26,6.66,6.08,9.3201,9.75
506 c2.7899,3.8,5.1599,8.02,8.9299,10.99c3.14,2.8,7.01,4.54,10.78,6.32c9.64,19.8,11.98,42.68,9.1,64.37
507 c-1.08,8.75-3.71,17.19-6.52,25.52l-0.1-0.19c-4.01-7.68-9.65-14.5-16.1799-20.16c1.49-1.19,3.0699-2.27,4.6399-3.37
508 c-4.4399-5.15-8.76-10.6201-11.0299-17.1201c-1.55-4.03-2.53-8.25-3.51-12.44c1.7899,0.05,3.63,0.14,5.45,0.22
509 c-1.92-0.51-3.7999-1.02-5.6799-1.57c-0.64-8.52-6.6101-15.2-12.64-20.67c-0.74-0.61-1.4601-1.17-2.1801-1.73
510 c0.53-2.53,0.9301-5.09,1.13-7.66C1240.6,799.91,1243.5601,788.96,1248.23,778.8z"/>
511 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1103.97,790.58c11.38-3.25,23.14-5.86,35.04-5.33
512 c8.27-0.43,16.42,1.15,24.5599,2.34c13.12,2.22,25.8301,6.83,37.4301,13.33c3.33,1.82,6.34,4.16,9.75,5.85
513 c-1.73,1.14-3.47,2.26-5.1899,3.4c-7.54-3.55-15.6201-5.75-23.5601-8.19c-14.76-4.18-30.23-6.43-45.55-4.75
514 c-4.4399,0.68-8.9399,0.73-13.36,1.45c-9.45,1.72-18.5299,4.92-27.61,7.98c-8.1799,3.1801-15.6,8.01-22.41,13.5
515 c-10.2,7.38-20.73,14.5-32.3099,19.55c-4.5701,2.07-9.5601,3.18-13.85,5.83c0.6599-5.58,0.21-11.75,2.71-16.85
516 c7.79-2.89,15.5699-6.02,22.5601-10.58c8.46-5.51,16.9299-10.98,25.4099-16.44C1085.72,796.55,1094.9301,793.61,1103.97,790.58z"/>
517 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M1334.29,798.84c0.4099-4.4901-0.24-9.07,0.8099-13.5
518 c2.0701,2.34,2.4501,5.5099,3.27,8.41c2.3199,8.89,3.73,18,4.49,27.16c-14.2999,3.2401-28.5699,6.63-42.85,9.97
519 c-0.96-6.27-2.5601-12.42-4.42-18.47c5.0701,1.29,9.13,4.76,13.39,7.63c1.75-3.5099,3.12-7.19,4.24-10.95
520 c6.15,1.9,11.75,5.2,16.62,9.3799C1332.35,812.21,1333.8199,805.57,1334.29,798.84z"/>
521 <path stroke="#000000" stroke-width="0.8" d="M709.82,797.81c9.99-1.75,20.18-1.66,30.29-1.52c9.02,0.47,18.02,2.08,26.45,5.4
522 c11.74,3.63,22.93,8.72,34.09,13.82c1.5699,0.79,3.11,1.67,4.64,2.58c-13.59-4.67-26.87-10.54-41.02-13.38
523 c-8.74-1.42-17.83-3.46-26.59-1.12c8.39,8.23,18.42,14.55,28.66,20.22c11.95,6.92,24.37,12.95,36.8199,18.9
524 c6.45,3.19,12.4,7.33,17.76,12.14c-10.05,0.39-20.04,1.76-29.87,3.82c-5.55,0.92-11.23,2.23-16.85,1.06c3.03-1.75,5.47-4.32,8.54-6
525 c4.43-2.63,9.54-3.78,14.61-4.4c-19.03-11.56-38.9-21.69-59.22-30.78c-3.84-1.75-7.9-2.98-12-3.96c4.3,7.64,6.52,16.71,4.79,25.43
526 c-1.95,12.28-10.88,22.64-21.81,28.09c-7.09,3.49-15.19,3.93-22.93,3.15c-10.74-1.39-20.5-7.96-26.56-16.83
527 c-6.32-9.24-7.05-21.19-4.78-31.87c-6.03,2.3-11.88,5.25-16.83,9.43c-5.71,5.07-11.54,10.01-16.89,15.47
528 c-3.07,2.97-6.33,5.73-9.43,8.68c-2.62,2.59-5.33,5.1-8.28,7.31c4.15-8.01,8.9301-15.76,11.55-24.46
529 c-11.56,9.12-23.98,17.02-36.59,24.58c-1.21,0.69-2.4,1.41-3.6,2.11c6.38-11.5,16.38-20.21,25.69-29.26
530 c4.05-3.87,7.52-8.51,12.5099-11.28c8.36-5.14,18.26-6.23,27.5601-8.7c5.6899-1.38,11.33-2.94,16.87-4.84
531 C674.85,806.93,692.37,802.5,709.82,797.81 M679.33,821.32c-2.32,1.56-1.18,4.98-2.95,6.88c-2.02,1.05-5.01,1.87-4.42,4.84
532 c-0.32,4.94,6,3.06,8.92,2.43c0.87-1.9399,0.9-4.06,1.03-6.12c4.34-0.3199,9.23-0.47,12.4301-3.89c1.48-2.03,0.41-4.35-0.15-6.47
533 c-1.98-0.44-4.08-0.86-6.04-0.12C685.28,819.96,681.91,819.49,679.33,821.32 M711.81,822.12c-0.15,3.19,0.17,6.42,0.72,9.57
534 c1.97,1.23,5,2.07,7.17,1.11c1.74-4.22,2.34-9.74-1.63-12.91C715.93,820.14,712.83,819.68,711.81,822.12z"/>
535 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M553.13,806.87c6.33-2.36,12.53-5.23,18.02-9.2
536 c-3.9,8.88-6.87,18.17-8.7401,27.69c-11.03-1.94-22.1-3.73-33.12-5.74C536.67,814.4,544.69,810.1,553.13,806.87z"/>
537 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M737.68,803.59c8.76-2.34,17.85-0.3,26.59,1.12
538 c14.15,2.84,27.43,8.71,41.02,13.38c-1.53-0.91-3.07-1.79-4.64-2.58c9.22,0.18,18.49-0.56,27.68,0.67
539 c2.99,9.03,5.02,18.44,5.57,27.95c-0.19-1.21-0.38-2.4-0.57-3.59c-10.09,0.27-20.15,1.06-30.17,2.17
540 c-12.45-5.95-24.87-11.98-36.8199-18.9C756.1,818.14,746.07,811.82,737.68,803.59z"/>
541 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M1165.96,805.35c9.02,1.1,17.75,3.85,26.17,7.19l0.36,0.66
542 c2.9301,4.85,5.59,9.97,6.5701,15.62c1.1799,6.16,1.3999,13.33-2.78,18.47c-2.42,3.16-6.39,4.28-9.63,6.31
543 c-3.2001,1.88-5.78,4.57-8.35,7.19c-7.2301,5.52-16.27,8.12-25.25,8.76c-13.3501,0.89-26.66-0.91-39.9-2.32
544 c-12.0801-1.23-24.13-4.47-34.51-10.91c-8.16-4.75-13.49-12.95-17.01-21.5c12.26-6.37,24.2-13.33,36.04-20.45
545 c-3.37,9.99-3.04,21.51,2.1499,30.83c3.04,5.71,7.88,10.2,13.04,13.99c8.37,5.98,19.23,7.46,29.21,5.78
546 c9.9901-1.81,18.4801-8.4399,24.5-16.3799C1175.8101,836.03,1175.3199,817.71,1165.96,805.35z"/>
547 <path fill="#4F4F4F" stroke="#4F4F4F" stroke-width="0.8" d="M1210.75,806.77c9.61,5.53,20.17,9.14,29.71,14.79
548 c0.0801-0.27,0.25-0.83,0.3301-1.11c6.0299,5.47,12,12.15,12.64,20.67c-9.7401-3.7-16.4901-11.93-25.03-17.51
549 c-7.09-5.36-15.09-9.2-22.84-13.44C1207.28,809.03,1209.02,807.91,1210.75,806.77z"/>
550 <path fill="#333333" stroke="#333333" stroke-width="0.8" d="M468.73,812.75c0.88-1.22,1.72-3.37,3.59-2.98
551 c6.31,1.27,12.65,2.32,19.01,3.32c12.61,2.43,25.26,4.62,37.96,6.53c11.02,2.01,22.09,3.8,33.12,5.74
552 c-1.18,6.26-2.03,12.59-2.19,18.96c-15.89-3.19-31.79-6.39-47.64-9.8c-0.7,0.61-1.4,1.23-2.09,1.86c-0.01-0.67-0.04-2-0.06-2.67
553 c-5.47,2.44-10.96,4.87-16.67,6.71c1.2-2.98,2.35-5.97,3.4-9.01c-10.06-1.99-20.09-4.15-30.16-6.12c-2.01-0.38-3.94-1.06-5.84-1.77
554 C463.75,819.98,466.62,816.63,468.73,812.75z"/>
555 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M1111.48,813.49c3.8201-4.47,10.24-4.2,15.6-4.42
556 c1.4801,3.84,1,8.1,0.05,12.01c-1.34,3.86-5.65,5.79-9.52,5.49c-1.1799,2.02-1.84,4.27-2.51,6.51c-3.03,0.32-6.4199-1.04-7.28-4.19
557 c-1.22-2.37,0.51-4.54,1.9501-6.26C1112.1801,820.04,1108.85,816.09,1111.48,813.49z"/>
558 <path fill="#4F4F4F" stroke="#4F4F4F" stroke-width="0.8" d="M1192.49,813.2c2.51-0.19,4.6801,1.25,6.9,2.24
559 c9.83,4.51,18.8099,10.6,28.1899,15.93c8.01,5.12,16.65,9.41,26.0801,11.1c0.98,4.19,1.96,8.41,3.51,12.44
560 c2.2699,6.5,6.59,11.97,11.0299,17.1201c-1.5699,1.1-3.1499,2.18-4.6399,3.37c-1.4901,1.36-2.8701,2.8199-4.2201,4.3
561 c3.55,2.86,7.12,5.7,10.74,8.49c-3.61,1-7.84,1.55-10.2799,4.71c-4.05,5.17-5.38,11.83-6.03,18.22c-0.85,8.69-3.3,17.33-7.91,24.8
562 c-3.62,5.95-9.4,10.33-12.49,16.64l-0.14,0.26c-4.38,2.69-8.6899,5.53-13.2999,7.82c-1.75-1.78-3.4501-3.93-6.04-4.39
563 c-6.16-1.23-12.52-0.33-18.6901-1.47c-8.85-1.35-17.51-4.54-24.7799-9.8101c14.26,3.15,29.21,3.73,43.4099-0.15
564 c-1.9099-3.29-3.0499-6.93-3.0699-10.74c4.35,3.07,8.73,7.05,14.35,7.24c4.14,0.05,6.8-3.79,8.3101-7.18
565 c3.9399-9.02,7.01-18.39,10.0599-27.74c1.98-6.03,2.66-12.9-0.23-18.7401c-1.72-3.86-5.13-6.5-8.39-8.97
566 c-5.36,8.26-10.54,16.68-14.72,25.61c1.67-7.99,0.62-16.37-3.3-23.56c-6.49,5.42-12.6,11.26-19.01,16.76
567 c3.4401-7.2,6.0901-15.07,12.04-20.68c4.23-4.86,11.29-6.61,14.47-12.45c2.23-3.94,0.85-8.71-1.3099-12.34
568 c-1.49-2.4901-3.91-4.85-6.99-4.82c-3.3101-0.37-6.23,1.38-9.1001,2.71c-6.46,3.04-13.0699,5.76-19.71,8.35
569 c-2.89,1.14-5.78,2.45-8.9299,2.52c2.5699-2.62,5.1499-5.31,8.35-7.19c3.24-2.03,7.21-3.15,9.63-6.31
570 c4.1799-5.14,3.96-12.31,2.78-18.47C1198.08,823.17,1195.42,818.05,1192.49,813.2z"/>
571 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M726.13,814.59c4.1,0.98,8.16,2.21,12,3.96
572 c20.32,9.09,40.19,19.22,59.22,30.78c-5.0699,0.62-10.18,1.77-14.61,4.4c-3.07,1.68-5.51,4.25-8.54,6
573 c-9.22,0.69-18.15,3.47-27.19,5.32c-14.56,3.31-28.96,7.89-43.98,8.64c-16.02,1.47-32.45,0.38-47.76-4.8
574 c-12.87-4.33-24.36-12.12-34.15-21.43c5.35-5.46,11.18-10.4,16.89-15.47c4.95-4.18,10.8-7.13,16.83-9.43
575 c-2.27,10.68-1.54,22.63,4.78,31.87c6.06,8.87,15.82,15.44,26.56,16.83c7.74,0.78,15.84,0.34,22.93-3.15
576 c10.93-5.45,19.86-15.81,21.81-28.09C732.65,831.3,730.43,822.23,726.13,814.59z"/>
577 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M1144.97,815.07c2.36-0.13,4.72-0.35,7.0901-0.56
578 c0.95,4.4,2.23,9.84-0.9801,13.63c-1.8199-0.33-4.64,0.39-5.37-1.87C1144.78,822.63,1145.48,818.78,1144.97,815.07z"/>
579 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M679.33,821.32c2.58-1.83,5.95-1.36,8.82-2.45
580 c1.96-0.74,4.06-0.32,6.04,0.12c0.56,2.12,1.63,4.44,0.15,6.47c-3.2,3.42-8.09,3.57-12.4301,3.89
581 c-0.1299,2.06-0.16,4.1801-1.03,6.12c-2.92,0.63-9.24,2.51-8.92-2.43c-0.59-2.97,2.4-3.79,4.42-4.84
582 C678.15,826.3,677.01,822.88,679.33,821.32z"/>
583 <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8" d="M711.81,822.12c1.02-2.44,4.12-1.98,6.26-2.23
584 c3.97,3.17,3.37,8.69,1.63,12.91c-2.17,0.96-5.2,0.12-7.17-1.11C711.98,828.54,711.66,825.31,711.81,822.12z"/>
585 <path fill="#333333" stroke="#333333" stroke-width="0.8" d="M1300.01,830.88c14.28-3.34,28.55-6.73,42.85-9.97
586 c0.53-0.11,1.6-0.34,2.14-0.45c0,4.81,0.02,9.62-0.02,14.44c-0.4399,0.1-1.3099,0.3-1.74,0.4c-13.91,3.22-27.79,6.58-41.72,9.71
587 c0.1699,5.38,0.27,10.77-0.39,16.13C1301.39,851.05,1301.46,840.89,1300.01,830.88z"/>
588 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M446.82,842.01c4.57-6.33,9.71-12.21,14.34-18.49
589 c1.9,0.71,3.83,1.39,5.84,1.77c10.07,1.97,20.1,4.13,30.16,6.12c-1.05,3.04-2.2,6.03-3.4,9.01c5.71-1.84,11.2-4.27,16.67-6.71
590 c0.02,0.67,0.05,2,0.06,2.67c0.69-0.63,1.39-1.25,2.09-1.86c15.85,3.41,31.75,6.61,47.64,9.8c-0.66,12.59,0.2,25.32,3.17,37.6
591 c-5.02,1.65-10.16,2.84-15.36,3.77c5.34,1.4,10.8799,1.74,16.39,1.57h0.29c7.07,25.21,22.47,47.7,42.38,64.55
592 c26.18,23.01,61.09,35.67,95.93,34.94c21.18,0.6,42.52-3.53,61.93-12.04c32.72-14.63,60.19-41.51,74.07-74.71
593 c4.31-10.11,6.87-20.87,8.34-31.73c45.54-14.43,94.91-19.36,141.79-8.55c5.68,17.42,12.6,34.42,18.27,51.85
594 c6.53,19.96,13.06,40.24,14.07,61.38c1.18,12.97-1.43,26.21,1.97,38.96c1.4,6.29,5.52,11.65,6.45,18.08
595 c0.98,5.88,0.02,11.9401-2.2001,17.4301c-11.0599,28.73-12.8,60.9299-4.8799,90.6699c2.7499,11.24,2.3799,23.8301-3.82,33.9
596 c-4.03,7.05-11.2,11.78-18.8,14.2c-5.55,1.78-11.42,1.8601-17.14,2.7201c-11.34,1.51-22.56,3.87-33.54,7.0599
597 c-3.9901-1.62-8.25-2.48-12.1201-4.37c-2.59-1.2999-5.27-2.37-8.0699-3.0499c-6.41-4.13-10.59-10.7101-15.6-16.28
598 c-3.65-4.02-6.91-8.41-10.8-12.1901c-9.43-7.3099-22.92-7.87-33.6-3.0499c-8.85,1.4-18.98,2.9199-26.84-2.48
599 c-7.62-5.2201-10.3-14.88-10.97-23.62c-0.28-5.8401-0.5-12.25-4.48-16.9401c-2.38-2.6799-5.66-5.35-9.36-5.41
600 c-12.29,7.66-23.28,17.3-33.91,27.11c-11.1801,10.9-22.47,21.9601-30.84,35.26c-5.25,8.28-9.88,17.03-13.16,26.3
601 c11.93-13.2,24.29-26.02,37.14-38.3199c5.28-5.1001,10.24-10.62,16.45-14.64c7.42-5.16,16.02-8.3501,24.82-10.2201
602 c4.69,16.4301,11.88,33.28,25.73,44.05c9.59,7.14,22.82,12.52,34.37,6.73c7.25,3.37,14.98,5.5801,22.34,8.7101
603 c10.6,4.4399,21.2,9,31.28,14.5399c6.6,3.55,11.28,10.38,12.09,17.84c1.09,9.79-1.8,19.5-5.68,28.38
604 c-3.64,8.27-5.83,17.54-4.17,26.5601c1.35,7.09,6.66,12.89,13.06,15.9399c4.5099,2.17,9.57,3.9701,14.64,3.2101
605 c3.25-0.6801,4.62-4.0601,5.45-6.89c2.43-8.48,6.03-17.0701,12.71-23.09c5.89-5.29,14.41-6.77,21.99-4.9601
606 c4.58,0.86,8.93,3.8201,10.63,8.29c2.49,5.9301,0.77,12.41,0.37,18.5699c-0.78,10.0901,1.4,20.99,8.48,28.6101
607 c-5.38,2.46-10.4,5.6399-15.8,8.0299c-5.81,2.73-13.07,0.55-18.3,4.74c-4,3.01-4.33,8.4-4.49,12.99
608 c-3.84,1.5701-7.7,3.1801-11.78,3.9901c-0.69,0.0199-2.07,0.0599-2.76,0.08c-3.4-4.48-7.78-8.16-12.33-11.41
609 c-6.06-4.15-14.25-3.4399-20.14,0.67c-1.52-4.3101-1.69-9.9601-6.2-12.38c-6.01-3.88-13.55-2.62-20.16-1.36
610 c0.17,2.34-0.19,5.1,1.66,6.9199c2.47,2.7201,6.38,2.92,9.77,3.5c0.68,3.3301,1.16,6.7001,1.55,10.0901
611 c-5.24,1.7999-10.75,2.7999-16.28,3.1499c-0.68-4.2799-0.55-9.5299-4.1899-12.5299c-3.59-2.1001-7.7401,0.0399-11.14,1.49
612 c-0.31-2.9501-0.64-5.88-0.98-8.8c-2.65,1.89-5.39,4.47-8.91,4.0601c-4.05-0.49-7.79-3.17-11.99-2.2001
613 c-3.25,0.5-4.43,3.98-6.23,6.27c-4.05,6.03-11.3701,8.34-18.05,10.05c-12.86-1.3401-25.59-4.0801-38.03-7.6
614 c-5.67-2.03-11.52-3.38-17.42-4.52c-6.4-4.74-14.75-4.25-22.23-3.28c-5.41,1.08-11.38,3.15-14.29,8.2
615 c-2.77,4.5801-2.42,10.16-1.89,15.28c3.75-0.6799,7.42-1.87,11.22-2.29c7.29,0.9501,14.7599,1.3401,22.04-0.01
616 c5.38-1.0099,10.28-3.86,15.8-4.2699c3.85-0.3301,7.76-0.3501,11.6,0.23c5.66,0.89,10.71,3.86,16.29,5.0599
617 c6.67,1.67,13.56,1.9,20.4,1.86c5.7401,4.9401,13.57,6.15,20.85,6.88c6.7,0.4401,13.42-0.1699,19.97-1.61
618 c2.89-0.88,5.4,1.2201,8.05,2.01c5.31,1.77,10.97,0.1901,16.05-1.63c1.34,2.11,2.54,4.4601,4.62,6c2.6,1.9,5.8,2.64,8.84,3.5701
619 c0.21-2.29-0.44-5.0701,1.47-6.79c2.51-2.54,6.54-2.75,9.82-1.88c3.52,1.3,5.41,4.79,7.45,7.72c11.03-5.59,23.71-4.39,35.65-4.13
620 c6.74-0.0299,13.72,3.1901,20.29,0.51c4.05-1.6699,5.5699-6.12,6.5699-10.01c7.53-0.62,14.63,2.25,21.9401,3.3501
621 c3.95,0.5,8.21-0.3601,11.87,1.59c7.1799,3.47,15.12,6.27,23.22,5.24c6.72-0.51,12.24-5.5601,19.13-5.1801
622 c6.85-0.52,13.4,1.9,19.48,4.8c4.65-6.49,11.6901-11.09,19.5-12.77c5.78-0.86,9.63-6.1,11.47-11.28
623 c-1.2999-0.38-2.59-0.75-3.86-1.1c2.4401-2.15,5.67-3.09,8.17-5.12c3.73-4.22,3.74-10.36,2.97-15.62
624 c-1.12-6.55-3.12-12.9-4.33-19.42c-2.66-13.0499-3.67-26.36-3.89-39.6499c0.13-12.7001,1.54-25.3301,2.1699-38
625 c1.02-23.02,1.0801-46.12-0.24-69.12c-1.37-10.6101-5.8899-21.2101-14.12-28.29c-7.8999-7.01-18.1499-10.5601-28.34-12.67
626 c-3.6-11.37-5.91-23.13-6.98-35c-0.8-7.6699-0.55-15.45-2.0701-23.03c-1.7899-9.71-5.6799-19.1799-12.08-26.7599
627 c-7.09-8.23-12.3199-17.8-18.02-26.9901c-2.98-5.04-6.5299-9.81-8.5599-15.33c-3.01-8-2.6801-16.7-4.5901-24.95
628 c-3.1799-15.15-7.8899-29.99-10.3799-45.29c7.72,12.83,17.5199,24.4,28.87,34.16c26.24,23.59,61.5399,36.64,96.7999,35.98
629 c22.17,0.62,44.54-3.82,64.6801-13.18c27.85-13.14,51.8199-35.06,66.2999-62.34c6.27,17.46,5.74,36.22,5.9501,54.5
630 c-3.03,6.87-5.7001,13.95-9.8101,20.29c-6.1,9.99-14.5599,18.18-22.12,27.02c-11.37,12.6-22.84,25.11-34.7,37.2601
631 c-10.97,11.33-18.25,25.95-21.74,41.2699c-3.3501,13.51-3.9401,27.52-3.73,41.38c-0.4301,21.61,2.8799,43.13,7.83,64.11
632 c5.15,22.5601,7.29,45.8501,5.9299,68.9701c-1.59,20.6799-3.1599,41.36-4.95,62.0299c-1.14,12.8601-0.78,25.9601-4.04,38.5601
633 c-3.1599,12.89-9.61,25.36-19.99,33.89c-7.61,6.48-16.9299,10.48-26.23,13.9c-3.92,1.5699-8.95,1.75-11.5,5.5599
634 c-3.9,5.28-7.13,11.03-9.9,16.97c-4.4199,9.37-6.23,19.75-6.95,30.02c-0.45,4.9401,0.4399,9.9401-0.24,14.87
635 c-1.4,3.9-4.26,7.04-6.4,10.54c-14.1801,22.28-27.62,45.08-39.09,68.89c-5.27,10.01-8.88,20.78-14.3101,30.71
636 c-6.26,11.49-14.74,21.88-25.37,29.59c-14.4,10.9-32.17,16.5901-49.91,18.9901c-13.06,2.1599-26.01,4.9299-38.84,8.1799
637 c-7.22,1.84-14.52,3.46-21.41,6.36c-21.72-2.6799-43.51-5.47-65-9.74c-19.08-3.86-38.02-8.48-56.68-14.01
638 c-19.21-6.1799-37.63-15.08-53.86-27.11c-16.17-11.8-32.65-23.2-49.94-33.3c-14.69-8.45-28.13-18.9299-40.37-30.62
639 c-7.6201-7.0599-14.39-14.95-21.65-22.36c-26.95-28.34-57.71-52.6599-89.07-75.88c-2.87-2.13-5.68-4.33-8.74-6.1499
640 c6.56,7.3899,13.4,14.5599,19.65,22.23c12.8,15.77,26.4399,30.86,41.02,45.02c22.02,20.33,44.15,41,61.42,65.6699
641 c-24.22-9.75-47.6899-21.34-70.33-34.3199c-3.54-2.0901-7.01-4.29-10.48-6.48c-3.28-2.13-6.59-4.2101-9.8199-6.39
642 c-3.33-2.37-6.6-4.8101-9.8701-7.24c-3.87-3.04-7.84-5.9301-11.64-9.0601c-1.44-1.27-2.82-2.59-4.22-3.88
643 c-3.54-3.14-6.71-6.65-9.89-10.13c-0.72-0.8099-1.42-1.62-2.11-2.4c-3.52-4.1799-6.64-8.6699-9.53-13.2899
644 c-0.23-0.37-0.69-1.12-0.92-1.5c-5.37-8.16-7.3799-17.91-12.52-26.17c-1.53-2.66-3.28-5.17-5.03-7.66
645 c1.43-20.1-1.02-41.24-11.32-58.9099c-9.75-16.9-17.39-34.9501-23.79-53.3501c-7.83-21.23-12.52-43.58-14.33-66.11
646 c-1.3-14.0399-3.85-27.99-8.13-41.4399c-1.08-4.0801-3.42-7.8201-3.77-12.0601c-0.83-25.46-4.35-50.73-7.29-76.01
647 c-1.63-16.5499-1.81-33.24-0.59-49.8199c3.09-15.36,3.99-31.0699,5.11-46.6801c0.19-8.6399,1.65-17.2399,1.06-25.8799
648 c-0.37-15.59-2.7-31.18-7.37-46.07c-4.51-13.32-7.6-27.11-9.43-41.05c-2.61-20.06-2.84-40.75,2.41-60.42
649 C440.43,855.42,442.45,848.09,446.82,842.01 M850.1,1057.12c-4.4,3.17-8.47,6.98-11.46,11.53c-4.14,6.24-3.73,14.4399-1.15,21.21
650 c4.41-8.74,12-16.08,21.47-19.02c10.13-3.12,21.63-3.97,31.46,0.67c8.32,3.5599,13.56,11.33,18.78,18.34
651 c6.2,8.5701,11.12,17.9501,16.44,27.0701c1.45-16.92-2.61-35.29-14.88-47.66c-6.93-6.9-15.83-11.38-24.8-15
652 C874.4,1050.34,860.48,1049.84,850.1,1057.12 M1047.62,1388.48c-8.71,2.79-17.35,5.97-25.4,10.35
653 c0.7401,3.16,2.8301,6.54,6.54,6.28c1.16-1.24,2.11-3.21,4.09-3.12c4.14-0.1,8.0601,1.71,12.2101,1.59
654 c5.96,0.14,11.5599-2.2699,16.71-5.0399c-1.27-4.9401-2.7001-9.8201-4.12-14.7001
655 C1054.33,1385.4301,1051.12,1387.3101,1047.62,1388.48 M940.69,1404.53c-4.09,1.97-8.72,0.88-12.36-1.48
656 c0.69,8.1,1.89,17.5199,8.89,22.7699c9.1201-1.6499,15.61-12.33,13.1801-21.3999C948.09,1401.37,943.62,1403.5,940.69,1404.53
657 M978.11,1409.0601c-5.03,5.73-6.45,13.75-6.04,21.1599c3.34-4.03,6.46-8.37,10.81-11.39c2.65-2.0199,6.18-3.13,7.92-6.14
658 c1.74-2.95,0.14-6.5599-1.91-8.8799C984.83,1403.77,980.91,1406.1801,978.11,1409.0601 M1014.68,1410.74
659 c1.32,5.75,5.01,11.24,10.31,13.98c4.23,1.61,7.85-1.48,10.42-4.45C1027.71,1419.29,1020.15,1416.4,1014.68,1410.74z"/>
660 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M845.75,823.49c9.74,5.11,14.87,16.06,15.68,26.67
661 c-4.41,1.17-8.76,2.56-12.98,4.3C848.85,844.05,847.16,833.75,845.75,823.49z"/>
662 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1054.6,838.47c2.3-1.3,4.66-2.48,7.03-3.65
663 c3.52,8.55,8.85,16.75,17.01,21.5c10.38,6.44,22.4299,9.68,34.51,10.91c13.24,1.41,26.5499,3.21,39.9,2.32
664 c8.98-0.64,18.0199-3.24,25.25-8.76c3.1499-0.07,6.0399-1.38,8.9299-2.52c6.64-2.59,13.25-5.31,19.71-8.35
665 c2.8701-1.33,5.79-3.08,9.1001-2.71c3.08-0.03,5.5,2.33,6.99,4.82c2.1599,3.6299,3.5399,8.4,1.3099,12.34
666 c-3.1799,5.84-10.24,7.59-14.47,12.45c-5.95,5.61-8.6,13.48-12.04,20.68c6.41-5.5,12.52-11.34,19.01-16.76
667 c3.92,7.19,4.9701,15.57,3.3,23.56c4.1799-8.93,9.36-17.35,14.72-25.61c3.26,2.47,6.67,5.11,8.39,8.97
668 c2.89,5.84,2.21,12.71,0.23,18.7401c-3.0499,9.35-6.12,18.72-10.0599,27.74c-1.51,3.39-4.17,7.23-8.3101,7.18
669 c-5.62-0.19-10-4.17-14.35-7.24c0.02,3.81,1.16,7.45,3.0699,10.74c-14.2,3.88-29.1499,3.3-43.4099,0.15
670 c7.2699,5.27,15.9299,8.46,24.7799,9.8101c6.17,1.14,12.53,0.24,18.6901,1.47c2.59,0.46,4.29,2.61,6.04,4.39
671 c-19.25,10.22-41.2001,15.3-62.9801,14.86c-19.6899,0.44-39.46-3.78-57.34-12c-16.38-7.56-30.89-18.79-43.09-32
672 c-5.2001-6.52-10.13-13.27-14.77-20.18c-8.35-14.04-13.26-30.04-14.58-46.3c-0.14-2.79-0.89-5.76,0.38-8.38l0.0599-0.16
673 c8.27,5.04,18.4301,4.28,27.54,2.45c-3.48-2.1-7.17-3.96-11.1801-4.76c-3.87-0.84-8.09-0.47-11.5699-2.63
674 C1040.95,849.3,1046.98,842.48,1054.6,838.47 M1091.0601,867.33c4.73,1.62,11.0499,0.82,14.2999,5.32
675 c1.26,3.86-2.76,6.67-5.04,9.16c3.37-0.99,6.6901-2.2,9.79-3.89c2.85,2.96,6.22,5.43,10.13,6.8c6.04,2.42,13.62,3.9,19.2-0.3799
676 c1.79,3.85,2.01,8.15,1.75,12.34c7.2301-9.22,19.53-12.71,30.8301-12.44c2.6799-0.13,4.9299,1.47,7.13,2.77
677 c3.09-2.7,6.88-4.28,10.8199-5.29c-11.34-0.02-22.6899,0.04-34.02,0.67c-16.8899,1.21-34.1-2.87-48.48-11.86
678 C1102.6801,867.19,1096.6899,866.8,1091.0601,867.33z"/>
679 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M1301.52,845.01c13.9299-3.13,27.8099-6.49,41.72-9.71
680 c-1.22,24.67,1.4,49.66,9.67,73.03c-1.4501,1.2-1.02,3.05-0.91,4.68c2.33,25.26,2.98,50.66,2.21,76
681 c-0.73,26.99-1.46,53.98-2.64,80.95c-0.24,13.3301-0.2,26.6901,1.25,39.9601c0.9301,12.7,4.03,25.24,3.4,38.0399
682 c-0.8199,14.38-2.3099,28.7101-3.48,43.0601c-1.78,21.46-5.2,42.73-8.11,64.04c-3.76,27.6-8.14,55.1299-12.86,82.5699
683 c-1.63,1.04-3.61,1.9399-4.22,3.95c-6.75,16.3501-15.42,31.86-25.4301,46.4301c-10.01,14.55-22.0699,27.59-31.48,42.58
684 c-10.03,14.16-16.24,30.5601-26.34,44.67c-3.8,5.21-7.4801,10.5699-11.89,15.29c0.2999-3.64,3.15-6.2201,4.88-9.2201
685 c7.49-12.2,12.5499-25.74,16.46-39.46c5.33-19.59,8.46-39.73,10.41-59.92c1.4099-14.6,1-29.35,3.13-43.88
686 c2.2799-17.7999,6.37-35.38,12.52-52.24c3.12-9.6599,5.5-20.26,2.59-30.2699c-1.39-5-4.59-9.28-8.6-12.5
687 c-13.5701,6.83-26,17.11-32.8401,30.9199c-4.8999,9.59-7.48,20.29-7.89,31.04c-0.33,9.98,0.29,19.97,0.62,29.95
688 c-0.08,19.74-3.73,40.5601-16.0599,56.55c-6.14,6.99-12.41,14.0599-16.47,22.54c-8.3401,17.2599-10.1901,37.0499-8.15,55.9399
689 c1.39,16.6801,0.27,34.54-9.02,49.01c-4.86,7.92-12.35,13.66-19.17,19.78c-14.0599,13.22-23.7,30.73-28.73,49.27
690 c-4.0399,14.96-11.73,29.22-23.3199,39.6799c-6.66,6.04-14.37,10.95-22.6901,14.38c-10.6,4.25-19.71,11.91-26.2799,21.2
691 c-13.51,2.4801-27.3601,2.0801-40.8901,0.0801c14.08-4.27,26.6501-13.1901,35.47-24.9501c5.3099-6.85,9.47-14.5299,12.78-22.5199
692 c-3.9401,2.1599-7.42,5.1699-11.6901,6.6799c4.25-6.62,10.03-12.0499,15.3301-17.8099c11.38-11.6001,23.6899-22.41,37.26-31.38
693 c0.86,8.25,0.86,16.83-2.03,24.72c-1.29,3.5699-3.24,6.84-4.9301,10.24c6.88-5.59,12.62-12.49,17.54-19.8199
694 c5.79-8.64,9.41-18.4401,14.26-27.5901c6-12.1899,14.3099-23.1699,19.1-35.95c7.46-18.73,10.49-38.96,10.99-59.03
695 c-0.11-7.6799,0.5701-15.4399-0.97-23.01c-1.76-7.59,1.96-15.33,7.33-20.5599c5.53-6.05,13.28-9.3101,19.16-14.9501
696 c10.27-9.48,16.3199-22.8199,18.87-36.4c2.1899-11.5299,1.88-23.34,0.99-34.97c-0.76-23.1699,1.72-46.77,10.1801-68.5
697 c8.37-23.03,24.4099-44.65,47.5499-54.33c7.09-3.42,15.98-3.4301,21.61-9.54c6.3301-6.49,6.23-16.4199,4.65-24.75
698 c-4.22-21.9199-8.6799-43.89-15.6799-65.11c-2.4501,3.17-4.9401,6.33-7.7401,9.21c6.88-15.2699,15.8601-29.7699,19.9301-46.1799
699 c6.29-22.8101,5.14-46.76,2.65-70.03c-1.17-13.7-1.79-27.42-2.61-41.13c-0.2101-18.28,0.3199-37.04-5.9501-54.5
700 c8.17-15.47,12.92-32.67,14.17-50.1C1301.79,855.78,1301.6899,850.39,1301.52,845.01z"/>
701 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M614.96,838.99c-2.62,8.7-7.4,16.45-11.55,24.46
702 c2.95-2.21,5.66-4.72,8.28-7.31c-0.03,3.79-1.31,9.15,2.58,11.51c4.07,0.8,7.61-2.53,11.69-1.95c4.13,0.19,7.3,3.14,10.28,5.68
703 c-7.02-0.04-14.07-0.52-21.06,0.3c-13.26,2.09-25.91,6.83-38.01,12.52c-0.9-3.93-2.04-7.84-2.24-11.87
704 c1.27-2.87,2.54-5.75,3.44-8.76C590.98,856.01,603.4,848.11,614.96,838.99z"/>
705 <path fill="#333333" stroke="#333333" stroke-width="0.8" d="M861.43,850.16c39.91-11.6,82.76-14.85,123.54-5.93
706 c8.82,1.91,17.51,4.35,25.9901,7.43c0.5099,0.2,1.52,0.6,2.02,0.8c0,4.96,0.37,9.93,1.05,14.86c-0.79-0.84-1.75-1.34-2.8701-1.51
707 c-7.29-2.23-14.58-4.44-22.0099-6.09c-46.88-10.81-96.25-5.8799-141.79,8.55c0.49-4.6,1.04-9.19,1.09-13.81
708 C852.67,852.72,857.02,851.33,861.43,850.16z"/>
709 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M803.16,842.71c10.02-1.11,20.08-1.9,30.17-2.17
710 c0.19,1.19,0.38,2.38,0.57,3.59c2.02,24.08-3.64,48.75-16.37,69.33c-18.02,29.23-47.9901,50.99-81.52,58.66
711 c-10.16,2.24-20.56,3.67-30.99,3.38c-26.43,0.74-53.14-6.61-75.21-21.25c-24.77-16.44-45.09-40.92-52.64-70.05
712 c12.1-5.69,24.75-10.43,38.01-12.52c6.99-0.82,14.04-0.34,21.06-0.3c-2.98-2.54-6.15-5.49-10.28-5.68
713 c-4.08-0.58-7.62,2.75-11.69,1.95c-3.89-2.36-2.61-7.72-2.58-11.51c3.1-2.95,6.36-5.71,9.43-8.68c9.79,9.31,21.28,17.1,34.15,21.43
714 c15.31,5.18,31.74,6.27,47.76,4.8c15.02-0.75,29.42-5.33,43.98-8.64c9.04-1.85,17.97-4.63,27.19-5.32
715 c5.62,1.17,11.3-0.14,16.85-1.06c9.83-2.06,19.82-3.43,29.87-3.82C815.56,850.04,809.61,845.9,803.16,842.71 M636.15,871.94
716 c-2.02,2.08-4.08,4.11-6.1801,6.1c5.3-2.63,11.29-2.67,17.03-1.89c-0.24,2.16-0.77,4.27-1.74,6.23c3.84-1.76,8.13-1,12.21-1.13
717 c-0.7,2.96-0.92,6.03-0.33,9.05c2.76-0.6,4.99-2.34,7.01-4.22c0.22,1.95,0.05,4.12,1.0699,5.91c1.8101,1.51,3.78-0.83,5.6201-1.22
718 c1.73,0.61,2.7,2.2,3.65,3.67c2.21-3.25,5.12-5.96,8.38-8.14c6.29,4.01,14.07,3.94,21.2,3.03c9.68-1.95,20.16-2.89,29.58,0.68
719 c2.43-3.17,5.06-6.2,7.98-8.93c-1.77-1.72-2.86-3.92-3.71-6.19c-4,2.56-8.25,4.73-12.74,6.3c-8.01,2.7-16.81,4.75-25.07,1.92
720 c-8.5,0.69-17.34,1.54-25.49-1.61C662.27,876.75,649.51,872.3,636.15,871.94 M815.91,878.41c-13.11,0.04-26.49,3.52-37.18,11.31
721 c11.83,0.38,23.53-1.7,35.18-3.41c-2.43,3.97-5.14,8.04-9.28,10.42c-8.82,5.29-17.16,11.38-25.01,18.03
722 c-5.23,4.23-10.68,9.02-17.51,10.2c-4.88,0.92-9.46-1.41-12.97-4.59c-5.1,2.09-10.15,4.3-15.1,6.74
723 c-15.61,8.05-31.22,16.39-45.33,26.92c8.04-0.02,15.39-3.69,22.69-6.61c10.81-4.35,21.3199-9.4,32-14.02
724 c-6.44,11.66-15.1801,21.86-24.28,31.52c11.05-1.61,21.42-7.15,28.5-15.85c-0.4,3.08-0.63,6.19-0.64,9.32
725 c3.6-5.08,7.56-10.1,13.01-13.31c6.72-4.27,14.82-5.23,22.61-5.34c1.13-6.71,3.04-13.5,7.16-19.02c3.71-5.03,9.21-8.6,15.26-10.11
726 c7.06-1.62,13.49-6.26,16.63-12.88c3.36-6.7,3.31-14.38,3.06-21.68C821.94,877.34,819.01,878.43,815.91,878.41z"/>
727 <path fill="#A5A5A5" stroke="#A5A5A5" stroke-width="0.8" d="M1009.37,850.46c1.22-1.7401,2.44-3.48,3.69-5.19
728 c-0.08,2.38-0.08,4.78-0.08,7.19c-0.5-0.2-1.51-0.6-2.02-0.8C1010.57,851.36,1009.77,850.76,1009.37,850.46z"/>
729 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1027.3,852.39c1.45-0.54,2.99-0.84,4.5199-1.14l0.5801,0.29
730 c3.48,2.16,7.7,1.79,11.5699,2.63c4.01,0.8,7.7001,2.66,11.1801,4.76c-9.11,1.83-19.27,2.59-27.54-2.45l-0.0599,0.16
731 C1026.99,855.32,1026.38,853.69,1027.3,852.39z"/>
732 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M138.31,899.32c4.93-17.3,12.9-34.02,24.79-47.63
733 c-2.07,5.43-4.64,10.69-6.17,16.33c-3.23,11.48-4.79,23.36-5.55,35.24c-0.99,20.16,0,40.42,2.25,60.47
734 c2.21-5.95,2.88-12.31,4.86-18.32c3.99-13.1299,8.89-26.15,15.79-38.03c-1.41,5.56-3.68,10.89-4.66,16.56
735 c-3.67,18.22-1.07,36.88,1.52,55.05c1.42,7.85,2.4,15.86,5.15,23.39c2.08-10.83,3.18-21.87,6.18-32.51
736 c0.6,7.52,1.38,15.06,3.16,22.41c1.94-9.8701,3.49-19.82,5.99-29.58c3.44-13.31,6.37-27.08,13.38-39.07
737 c-0.56,4.85-1.7,9.61-2.23,14.46c-1.7,15.24,0.57,30.66,4.75,45.33c1.69,5.37,3.44,10.85,6.78,15.47
738 c-0.62-7.3-1.89-14.54-1.8-21.88c0.03-14.96,2.06-29.96,6.22-44.33c4.21-14.7,11.47-28.31,19.94-40.96
739 c-1.67,14.22-3.12,28.54-2.5,42.88c6.4-12.56,11.83-25.67,19.32-37.66c0.01,3.3,0.07,6.61,0.24,9.92
740 c3.18-3.88,5.71-8.26,9.13-11.95c5.71-6.18,11.94-12.0099,19.24-16.28c-2.54,4.64-5.42,9.12-7.33,14.08
741 c-5.62,14.0099-6.79,29.41-5.66,44.35c1.64,21.77,10.19,42.94,24.06,59.8c8.13,10.18,18.13,18.7,28.83,26.07
742 c12.93,9.0001,27.2,16.07,42.19,20.95c-15.89-0.97-30.73-7.47-44.85-14.35c1.78,3.3199,4.36,6.08,7.1,8.63
743 c-15.77-1.78-31.18-7.9401-43.24-18.36c-13.25-11.16-22.87-25.85-31.26-40.83c-5.61,15.02-1.19,32.17,8.69,44.35
744 c15.11,17.98,29.76,36.33,44.14,54.89c5.39,6.91,12.51,12.0801,19.68,16.99c-11.09,0.67-20.22-6.6-28.61-12.8199
745 c2.48,7.63,6.76,14.7,12.47,20.36c3.36,3.35,7.53,5.71,11.33,8.54c-17.51-2.4301-33.93-10.9401-46.65-23.14
746 c-11.29-10.37-21.75-21.61-31.28-33.62c6.83,17.49,19.05,32.49,33.48,44.33c-6.32,0.15-12.4-1.6799-18.44-3.28
747 c11.46,22.53,32.14,38.5901,53.66,50.92c6.49,3.41,12.85,7.35,20.01,9.17c0.03,0.5499,0.06,1.12,0.08,1.71
748 c-6.25-0.9-12.65-0.41-18.8-2.02c-13.49-2.95-25.5-10.3099-36.1-18.9199c-16.26-12.7301-32.15-25.92-47.63-39.5801
749 c0.07,9.9501,2.94,19.6,7.2,28.53c-6.28-1.38-11.44-5.3101-16.96-8.34c3.88,11.6599,10.38,22.26,17.62,32.12
750 c3.5,4.95,7.95,9.12,11.52,14.02c-5.97-4.1001-10.83-9.54-15.78-14.76c-7.64-8.0601-14.59-16.7201-22.06-24.9301
751 c-13.29-15.01-28.27-28.38-41.98-42.98c-7.82-9.97-15.82-19.88-22.19-30.88c-8.21-12.9-13.5-27.52-16.06-42.56
752 c-3.95-23.56-3.25-47.62-0.82-71.3C132.49,923.51,134.7,911.24,138.31,899.32z"/>
753 <path fill="#4F4F4F" stroke="#4F4F4F" stroke-width="0.8" d="M989.15,859.72c7.43,1.65,14.72,3.86,22.0099,6.09
754 c0.33,1.48,1.35,3.1,3.07,3.16c1.9,16.79,7.48,33.11,16.0801,47.65c2.49,15.3,7.2,30.14,10.3799,45.29
755 c1.91,8.25,1.5801,16.95,4.5901,24.95c2.03,5.52,5.58,10.29,8.5599,15.33c5.7001,9.19,10.9301,18.76,18.02,26.9901
756 c6.4,7.58,10.29,17.0499,12.08,26.7599c1.52,7.5801,1.27,15.3601,2.0701,23.03c1.0699,11.87,3.38,23.63,6.98,35
757 c-1.08-0.28-2.14-0.5499-3.1899-0.7999c-2.4401-5.05-5.9701-9.4701-8.3201-14.5601c-2.89-6.24-5.64-12.6799-10.02-18.0499
758 c-3.02-3.67-7.52-5.5901-11.97-6.8501c4.23,4.13,8.71,8.38,10.71,14.12c2.7301,7.9301,5.28,15.9301,8.28,23.77
759 c3.78,9.74,6.54,19.9601,7.27,30.41c0.34,4.15-0.55,8.26-1.63,12.26c1.38-2.41,2.77-4.8101,3.9-7.3301
760 c0.73,0.01,2.2,0.02,2.9399,0.03c-3.64,9.97-8.5499,19.55-15.08,27.9501c-8.37,10.6599-14.01,23.5199-15.73,36.99
761 c-0.92,7.0299-2.16,14.63-7.11,20.0599c-5.12,5.02-11.6901,9.3401-19.11,9.36c-6.3,0.3301-12.2701-2.33-17.3701-5.7899
762 c-10.02-6.79-20.75-12.53-31.97-17.0801c-13.05-4.96-25.91-11.6599-35.06-22.49c10.98-3.1899,22.2-5.5499,33.54-7.0599
763 c5.72-0.86,11.59-0.9401,17.14-2.7201c7.6-2.4199,14.77-7.1499,18.8-14.2c6.2-10.0699,6.5699-22.66,3.82-33.9
764 c-7.92-29.74-6.18-61.9399,4.8799-90.6699c2.2201-5.49,3.1801-11.55,2.2001-17.4301c-0.9301-6.43-5.05-11.79-6.45-18.08
765 c-3.4-12.75-0.79-25.99-1.97-38.96c-1.01-21.14-7.54-41.42-14.07-61.38C1001.75,894.14,994.83,877.14,989.15,859.72
766 M1049.64,1111.52c-6.85,9.25-10.4301,20.5-11.96,31.7999c7.6899-1.49,15.49-2.6399,23.35-2.35c7.99-0.23,16.08,1.9601,22.45,6.91
767 c-2.1699-13.85-6.89-27.3199-14.16-39.3101c-1.8899-2.8099-4.63-5.8099-8.3099-5.63
768 C1055.75,1102.92,1052.42,1107.7,1049.64,1111.52 M1039.8,1160.8c-9.04,6.74-15.37,16.1899-21.6201,25.3899
769 c-4.06,5.8601-6.98,12.8701-13.16,16.9c-8.17,5.5901-18.6,4.51-27.99,4.6c6.86,1.9401,13.53,6.0601,20.92,4.64
770 c7.77-1.5299,12.79-8.1599,17.57-13.88c7.33-8.59,14.4399-17.63,23.88-24.0299c7.6-4.78,16.59-6.5601,25.4299-7.1801
771 c0.2201-4.02,1-9.5599-3.39-11.6899C1054,1153.22,1045.47,1155.53,1039.8,1160.8z"/>
772 <path fill="#949494" stroke="#949494" stroke-width="0.8" d="M1011.16,865.81c1.1201,0.17,2.08,0.67,2.8701,1.51
773 c0.05,0.41,0.15,1.24,0.2,1.65C1012.51,868.91,1011.49,867.29,1011.16,865.81z"/>
774 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1091.0601,867.33c5.6299-0.53,11.62-0.14,16.4099,3.2
775 c14.38,8.99,31.5901,13.0699,48.48,11.86c11.3301-0.63,22.6801-0.69,34.02-0.67c-3.9399,1.01-7.73,2.59-10.8199,5.29
776 c-2.2001-1.3-4.4501-2.9-7.13-2.77c-11.3-0.27-23.6,3.22-30.8301,12.44c0.26-4.19,0.04-8.49-1.75-12.34
777 c-5.58,4.28-13.1599,2.8-19.2,0.3799c-3.91-1.37-7.28-3.84-10.13-6.8c-3.1,1.69-6.42,2.9-9.79,3.89c2.28-2.49,6.3-5.3,5.04-9.16
778 C1102.11,868.15,1095.79,868.95,1091.0601,867.33z"/>
779 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M636.15,871.94c13.36,0.36,26.12,4.81,38.47,9.56
780 c8.15,3.15,16.99,2.3,25.49,1.61c8.26,2.83,17.06,0.78,25.07-1.92c4.49-1.57,8.74-3.74,12.74-6.3c0.85,2.27,1.94,4.47,3.71,6.19
781 c-2.92,2.73-5.55,5.76-7.98,8.93c-9.42-3.57-19.9-2.63-29.58-0.68c-7.13,0.91-14.91,0.98-21.2-3.03c-3.26,2.18-6.17,4.89-8.38,8.14
782 c-0.95-1.47-1.92-3.06-3.65-3.67c-1.84,0.39-3.81,2.73-5.6201,1.22c-1.02-1.79-0.85-3.96-1.0699-5.91
783 c-2.02,1.88-4.25,3.62-7.01,4.22c-0.59-3.02-0.37-6.09,0.33-9.05c-4.08,0.13-8.37-0.63-12.21,1.13c0.97-1.96,1.5-4.07,1.74-6.23
784 c-5.74-0.78-11.73-0.7401-17.03,1.89C632.07,876.05,634.13,874.02,636.15,871.94z"/>
785 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M815.91,878.41c3.1,0.02,6.03-1.0699,8.8-2.36
786 c0.25,7.3,0.3,14.98-3.06,21.68c-3.14,6.62-9.57,11.26-16.63,12.88c-6.05,1.51-11.55,5.08-15.26,10.11
787 c-4.12,5.52-6.03,12.3101-7.16,19.02c-7.79,0.11-15.89,1.07-22.61,5.34c-5.45,3.21-9.41,8.23-13.01,13.31
788 c0.01-3.13,0.24-6.24,0.64-9.32c-7.08,8.7-17.45,14.24-28.5,15.85c9.1-9.66,17.84-19.86,24.28-31.52
789 c-10.6801,4.62-21.19,9.67-32,14.02c-7.3,2.92-14.65,6.59-22.69,6.61c14.11-10.53,29.72-18.8701,45.33-26.92
790 c4.95-2.44,10-4.65,15.1-6.74c3.51,3.18,8.09,5.51,12.97,4.59c6.83-1.18,12.28-5.97,17.51-10.2c7.85-6.65,16.19-12.74,25.01-18.03
791 c4.14-2.38,6.85-6.45,9.28-10.42c-11.65,1.71-23.35,3.79-35.18,3.41C789.42,881.93,802.8,878.45,815.91,878.41z"/>
792 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M1259.34,879.7c1.35-1.48,2.73-2.94,4.2201-4.3
793 c6.5299,5.66,12.1699,12.48,16.1799,20.16c-9.17,23.19-25.92,42.92-46.37,57c3.09-6.31,8.87-10.69,12.49-16.64
794 c4.61-7.47,7.0601-16.11,7.91-24.8c0.65-6.39,1.98-13.05,6.03-18.22c2.4399-3.16,6.6699-3.71,10.2799-4.71
795 C1266.46,885.4,1262.89,882.56,1259.34,879.7z"/>
796 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M548.03,885.69c5.2-0.93,10.34-2.12,15.36-3.77
797 c0.38,1.76,0.71,3.54,1.03,5.34C558.91,887.43,553.37,887.09,548.03,885.69z"/>
798 <path fill="#999999" stroke="#999999" stroke-width="0.8" d="M1283.1,986.03c4.11-6.34,6.78-13.42,9.8101-20.29
799 c0.8199,13.71,1.4399,27.43,2.61,41.13c2.49,23.27,3.64,47.22-2.65,70.03c-4.0699,16.41-13.05,30.91-19.9301,46.1799
800 c2.8-2.88,5.29-6.0399,7.7401-9.21c7,21.22,11.46,43.1901,15.6799,65.11c1.58,8.3301,1.6801,18.26-4.65,24.75
801 c-5.63,6.11-14.52,6.12-21.61,9.54c-23.14,9.6799-39.1799,31.2999-47.5499,54.33c-8.4601,21.73-10.9401,45.3301-10.1801,68.5
802 c0.89,11.63,1.2,23.4401-0.99,34.97c-2.55,13.5801-8.6,26.92-18.87,36.4c-5.88,5.64-13.63,8.9-19.16,14.9501
803 c-5.37,5.23-9.09,12.97-7.33,20.5599c1.54,7.5701,0.86,15.3301,0.97,23.01c-0.5,20.0701-3.53,40.3-10.99,59.03
804 c-4.79,12.78-13.1,23.76-19.1,35.95c-4.85,9.15-8.47,18.9501-14.26,27.5901c-4.92,7.33-10.66,14.23-17.54,19.8199
805 c1.6901-3.4,3.64-6.67,4.9301-10.24c2.89-7.89,2.89-16.47,2.03-24.72c-13.5701,8.97-25.88,19.7799-37.26,31.38
806 c-5.3,5.76-11.0801,11.1899-15.3301,17.8099c-7.0399,5.42-15.09,9.53-22.51,14.46c-6.98,4.3401-13.86,8.8601-21.0699,12.8
807 c-9.95,4.9401-20.94,7.71-32,8.51c-16.22,0.76-32.39-1.3101-48.45-3.28c6.89-2.9,14.19-4.52,21.41-6.36
808 c12.83-3.25,25.78-6.02,38.84-8.1799c17.74-2.4,35.5099-8.0901,49.91-18.9901c10.63-7.71,19.11-18.1,25.37-29.59
809 c5.4301-9.9299,9.04-20.7,14.3101-30.71c11.47-23.8101,24.9099-46.61,39.09-68.89c2.14-3.5,5-6.64,6.4-10.54
810 c0.6799-4.9299-0.21-9.9299,0.24-14.87c0.72-10.27,2.53-20.65,6.95-30.02c2.77-5.9399,6-11.6899,9.9-16.97
811 c2.55-3.8099,7.58-3.99,11.5-5.5599c9.3-3.42,18.62-7.42,26.23-13.9c10.38-8.53,16.8301-21,19.99-33.89
812 c3.26-12.6,2.9-25.7,4.04-38.5601c1.79-20.6699,3.36-41.35,4.95-62.0299c1.3601-23.12-0.7799-46.41-5.9299-68.9701
813 c-4.9501-20.98-8.26-42.5-7.83-64.11c-0.2101-13.86,0.3799-27.87,3.73-41.38c3.49-15.3199,10.77-29.9399,21.74-41.2699
814 c11.86-12.15,23.33-24.66,34.7-37.2601C1268.54,1004.21,1277,996.02,1283.1,986.03z"/>
815 <path fill="#ADADAD" stroke="#ADADAD" stroke-width="0.8" d="M400.95,1035.8199c6.71,2.02,13.55,4.63,18.76,9.4901
816 c4.09,3.84,5.7,10.0099,3.72,15.3099c-2.1,6.6-6.89,11.76-11.22,16.97c5.77-3.63,11.44-7.4199,17.07-11.26
817 c3.47,7.36,5.05,15.4601,5.31,23.5601c2.59-1.14,5.07-2.47,7.47-3.9501c-3.67,21.6801-3.76,43.8301-1.88,65.6901
818 c0.6,7.14,1.24,14.28,1.77,21.4301l0.02,0.34c-9.87,1.6899-20.25,2.35-29.95-0.64c-8.92-2.67-17.26-7.77-23.22-14.96
819 c13.06,3.8899,27.56,5.0199,40.39-0.3401c-15.52,0.4701-30.81-7.1-40.51-19.13c-11.89-14.8999-17.53-33.7699-20.19-52.39
820 c12.12,7.53,26.62,10.9501,40.83,10.52c-5.72-5.76-10.87-12.4199-12.82-20.45C392.87,1062.59,396.17,1048.5,400.95,1035.8199z"/>
821 <path fill="#999999" stroke="#999999" stroke-width="0.8" d="M850.1,1057.12c10.38-7.28,24.3-6.78,35.86-2.86
822 c8.97,3.62,17.87,8.1,24.8,15c12.27,12.37,16.33,30.74,14.88,47.66c-5.32-9.12-10.24-18.5-16.44-27.0701
823 c-5.22-7.01-10.46-14.78-18.78-18.34c-9.83-4.64-21.33-3.79-31.46-0.67c-9.47,2.9401-17.06,10.28-21.47,19.02
824 c-2.58-6.77-2.99-14.97,1.15-21.21C841.63,1064.1,845.7,1060.29,850.1,1057.12z"/>
825 <path stroke="#000000" stroke-width="0.8" d="M1059.49,1073.71c4.45,1.26,8.95,3.1801,11.97,6.8501
826 c4.38,5.37,7.13,11.8099,10.02,18.0499c2.35,5.09,5.88,9.51,8.3201,14.5601c3.5199,10.9399,2.25,23.13-1.78,33.7699
827 c-1.13,2.52-2.52,4.92-3.9,7.3301c1.08-4,1.97-8.11,1.63-12.26c-0.73-10.45-3.49-20.67-7.27-30.41c-3-7.84-5.5499-15.84-8.28-23.77
828 C1068.2,1082.09,1063.72,1077.84,1059.49,1073.71z"/>
829 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M442.06,1085.9399c1.02-1.6899,2.93-2.4299,4.58-3.3099
830 c-1.22,16.58-1.04,33.27,0.59,49.8199c2.94,25.28,6.46,50.55,7.29,76.01c-2.49-2.0599-3.32-5.2999-4.78-8.0299
831 c-0.82-0.14-2.44-0.41-3.25-0.55c-1.51-6.86-2.62-13.8-3.51-20.77c2.11-2.01,4.03-4.2,5.69-6.59c-2.25,0.08-4.49,0.29-6.72,0.54
832 c-0.53-7.15-1.17-14.29-1.77-21.4301C438.3,1129.77,438.39,1107.62,442.06,1085.9399z"/>
833 <path fill="#999999" stroke="#999999" stroke-width="0.8" d="M1049.64,1111.52c2.78-3.8201,6.11-8.6,11.37-8.5801
834 c3.6799-0.1799,6.42,2.8201,8.3099,5.63c7.27,11.9901,11.9901,25.4601,14.16,39.3101c-6.37-4.95-14.46-7.14-22.45-6.91
835 c-7.86-0.2899-15.66,0.86-23.35,2.35C1039.21,1132.02,1042.79,1120.77,1049.64,1111.52z"/>
836 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M817.69,1108.58c3.7,0.0601,6.98,2.7301,9.36,5.41
837 c3.98,4.6901,4.2,11.1,4.48,16.9401c0.67,8.74,3.35,18.3999,10.97,23.62c7.86,5.3999,17.99,3.88,26.84,2.48
838 c-3.83,3-7.61,6.88-8.34,11.9c0.9,1.8899,3.2,1.47,4.94,1.61c8.52-0.25,17.03-1.04,25.56-1.3c-2.35,6.58-7.43,11.85-13.21,15.61
839 c-11.55,5.79-24.78,0.41-34.37-6.73c-13.85-10.77-21.04-27.62-25.73-44.05c-8.8,1.87-17.4,5.0601-24.82,10.2201
840 c-6.21,4.02-11.17,9.5399-16.45,14.64c-12.85,12.2999-25.21,25.12-37.14,38.3199c3.28-9.27,7.91-18.02,13.16-26.3
841 c8.37-13.2999,19.66-24.36,30.84-35.26C794.41,1125.88,805.4,1116.24,817.69,1108.58z"/>
842 <path fill="#404040" stroke="#404040" stroke-width="0.8" d="M1089.8,1113.17c1.0499,0.25,2.11,0.5199,3.1899,0.7999
843 c2.05,5.4301,4.01,11.23,2.91,17.12c-0.9401,5.48-3.25,10.6-4.9401,15.88c-0.74-0.01-2.21-0.02-2.9399-0.03
844 C1092.05,1136.3,1093.3199,1124.11,1089.8,1113.17z"/>
845 <path fill="#999999" stroke="#999999" stroke-width="0.8" d="M1092.99,1113.97c10.1901,2.11,20.4401,5.66,28.34,12.67
846 c8.2301,7.08,12.75,17.6799,14.12,28.29c1.3201,23,1.26,46.1,0.24,69.12c-0.6299,12.6699-2.0399,25.2999-2.1699,38
847 c0.22,13.2899,1.23,26.6,3.89,39.6499c1.21,6.52,3.21,12.87,4.33,19.42c0.77,5.26,0.76,11.4-2.97,15.62
848 c-2.5,2.03-5.73,2.97-8.17,5.12l-0.22,0.16c-0.1-3.96-4.01-6.0801-7.45-6.71c-4.2201-0.6201-8.65-0.65-12.7001,0.7999
849 c-2.38,0.79-4.83,1.58-7.35,1.36c-13.17-2.4099-26.54-3.48-39.8101-5.0699c-9.71-1.36-19.7899-1.01-29.11-4.42
850 c-4.63-1.58-8.77-4.2999-12.48-7.4199c-7.08-7.6201-9.26-18.52-8.48-28.6101c0.4-6.1599,2.12-12.6399-0.37-18.5699
851 c-1.7-4.47-6.05-7.4301-10.63-8.29c-7.58-1.8099-16.1-0.33-21.99,4.9601c-6.68,6.0199-10.28,14.61-12.71,23.09
852 c-0.83,2.83-2.2,6.21-5.45,6.89c-5.0699,0.76-10.13-1.04-14.64-3.2101c-6.4-3.0499-11.71-8.85-13.06-15.9399
853 c-1.66-9.02,0.53-18.29,4.17-26.5601c3.88-8.88,6.77-18.59,5.68-28.38c-0.81-7.46-5.49-14.2899-12.09-17.84
854 c-10.08-5.5399-20.68-10.1-31.28-14.5399c-7.36-3.13-15.09-5.3401-22.34-8.7101c5.78-3.76,10.86-9.03,13.21-15.61
855 c6.54-0.41,13.96,0.49,18.67,5.55c5.23,5.89,11.55,11.35,19.17,13.76c2.8,0.6799,5.48,1.75,8.0699,3.0499
856 c3.8701,1.89,8.13,2.75,12.1201,4.37c9.15,10.8301,22.0099,17.53,35.06,22.49c11.22,4.55,21.95,10.29,31.97,17.0801
857 c5.1,3.46,11.07,6.12,17.3701,5.7899c7.4199-0.0199,13.99-4.34,19.11-9.36c4.95-5.4299,6.1899-13.03,7.11-20.0599
858 c1.72-13.4701,7.36-26.3301,15.73-36.99c6.53-8.4,11.4399-17.9801,15.08-27.9501c1.6901-5.28,4-10.4,4.9401-15.88
859 C1097,1125.2,1095.04,1119.4,1092.99,1113.97z"/>
860 <path stroke="#000000" stroke-width="0.8" d="M869.34,1157.03c10.68-4.8201,24.17-4.26,33.6,3.0499
861 c3.89,3.78,7.15,8.17,10.8,12.1901c5.01,5.5699,9.19,12.15,15.6,16.28c-7.6201-2.41-13.94-7.87-19.17-13.76
862 c-4.71-5.0601-12.13-5.9601-18.67-5.55c-8.53,0.26-17.04,1.05-25.56,1.3c-1.74-0.14-4.04,0.2799-4.94-1.61
863 C861.73,1163.91,865.51,1160.03,869.34,1157.03z"/>
864 <path stroke="#000000" stroke-width="0.8" d="M1039.8,1160.8c5.6699-5.27,14.2-7.5801,21.6399-5.25
865 c4.39,2.13,3.6101,7.6699,3.39,11.6899c-8.84,0.62-17.83,2.4-25.4299,7.1801c-9.4401,6.3999-16.55,15.4399-23.88,24.0299
866 c-4.78,5.7201-9.8,12.3501-17.57,13.88c-7.39,1.42-14.06-2.7-20.92-4.64c9.39-0.09,19.8199,0.9901,27.99-4.6
867 c6.18-4.0299,9.1-11.0399,13.16-16.9C1024.4301,1176.99,1030.76,1167.54,1039.8,1160.8z"/>
868 <path fill="#CCCCCC" stroke="#CCCCCC" stroke-width="0.8" d="M432.84,1184.4399c3.8-0.83,7.07-3.0299,10.14-5.33
869 c0.89,6.97,2,13.91,3.51,20.77c-12.29-2.5601-24.92-7.39-33.16-17.29C419.55,1184.74,426.32,1185.91,432.84,1184.4399z"/>
870 <path fill="#4F4F4F" stroke="#4F4F4F" stroke-width="0.8" d="M1240.96,1273.98c6.8401-13.8099,19.27-24.09,32.8401-30.9199
871 c4.01,3.22,7.21,7.5,8.6,12.5c2.91,10.0099,0.53,20.61-2.59,30.2699c-6.15,16.86-10.2401,34.4401-12.52,52.24
872 c-2.13,14.53-1.7201,29.28-3.13,43.88c-1.9501,20.1901-5.0801,40.3301-10.41,59.92c-3.91,13.72-8.97,27.26-16.46,39.46
873 c-1.73,3-4.5801,5.5801-4.88,9.2201l-0.0701,0.37c-6.88,7.88-14.39,15.23-22.1,22.2999c-13.45,11.6801-25.11,25.35-34.83,40.25
874 c-10.15,16.0801-20.53,32.03-31.0801,47.86c-9.0499,13.9301-19.21,27.3401-31.86,38.2201
875 c-13.6599,12.13-30.59,20.76-48.6699,23.7699c6.5699-9.2899,15.6799-16.95,26.2799-21.2c8.3201-3.4301,16.03-8.34,22.6901-14.38
876 c11.59-10.46,19.28-24.72,23.3199-39.6799c5.03-18.54,14.67-36.05,28.73-49.27c6.8201-6.12,14.3101-11.86,19.17-19.78
877 c9.29-14.47,10.41-32.33,9.02-49.01c-2.04-18.89-0.1901-38.6801,8.15-55.9399c4.0599-8.4801,10.33-15.55,16.47-22.54
878 c12.33-15.99,15.98-36.8101,16.0599-56.55c-0.33-9.98-0.95-19.97-0.62-29.95C1233.48,1294.27,1236.0601,1283.5699,1240.96,1273.98z
879 "/>
880 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M275.17,1315.1c11.74-19.39,25.25-37.76,40.88-54.2
881 c-3.15,11.9-7.51,23.8099-6.79,36.33c8.21-4.25,14.04-11.83,19.4-19.15c-0.32,13.99-3.09,27.79-6.94,41.2101
882 c3.65-2.02,7.21-4.29,11.27-5.41c-4.62,9.25-9.29,18.86-9.93,29.36c7.86-9.8199,16.13-19.41,26.02-27.27
883 c-0.09,4.47-0.9,8.91-0.83,13.4c3.88-4.0699,6.99-8.9301,11.79-12.03c-0.96,21.39-9.17,41.5901-10.66,62.9
884 c-1.71,21.61-1.62,43.75,4.28,64.78c2.62,10.03,6.95,19.5,11.57,28.75c7.78,16.45,16.46,32.47,24.33,48.87
885 c-8.97-5.42-16.3-13.1901-22.89-21.26c-8.82-10.61-15-23.33-18.23-36.72c-1.27-5.2001-2.01-10.5-3.06-15.73
886 c0.29,8.0699-0.19,16.2899-2.78,24c-15.91-6.5-29.2-20.0601-33.25-37.03c-2.42,3.97-3.63,9.4-8.29,11.4199
887 c-4.98-18.4399-6.22-37.72-5.18-56.74c-9.49,7.4401-16.42,17.63-21.57,28.4301c1.15-19.42,2.92-38.83,3.38-58.27
888 c-8.27,13.95-12.14,29.8101-16.49,45.26c-2.83,9.6899-5.97,19.29-9.58,28.72c-1.52,3.87-2.73,7.9501-5.15,11.4
889 c0.78-15.6899,0.86-31.39,0.78-47.09c-0.46-17.7101-4.65-36.0901-15.39-50.48c0.95,11.6,2.69,23.1499,2.83,34.8099
890 c-10.46-13.15-14.69-30.0599-16.83-46.4299c-2.04-14.91-1.91-30.02-0.42-44.9701c1.89,7.29,2.87,14.86,5.78,21.87
891 c3.73,9.8501,9.46,18.9701,16.85,26.49c-1.03-8.63,0.83-17.21,2.47-25.6399c3.45-15.8601,9.27-31.42,18.47-44.87
892 c-0.03,12.83-1.67,25.6699-0.82,38.5199c5.64-14.36,11.67-28.7799,20.51-41.5199C278.55,1282.86,275.88,1298.9,275.17,1315.1z"/>
893 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1005.68,1328.59c5.4-2.39,10.42-5.5699,15.8-8.0299
894 c3.71,3.12,7.85,5.84,12.48,7.4199c9.3201,3.41,19.4,3.0601,29.11,4.42c13.27,1.59,26.64,2.66,39.8101,5.0699
895 c-5.53,3.16-11.9301,4.17-17.75,6.62c-9.05,3.63-19.39,4.4601-28.6901,1.29c-5.8899-2.05-12.2999-2.55-18.3999-1.28
896 c-4.91,0.99-8.86,4.9401-14.03,4.88c-8.32,0.24-16.77,0.13-24.84-2.12c-5.25-1.5-11.03-2.67-16.28-0.54
897 c0.16-4.59,0.49-9.98,4.49-12.99C992.61,1329.14,999.87,1331.3199,1005.68,1328.59z"/>
898 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M909.52,1325.91c6.61-1.26,14.15-2.52,20.16,1.36
899 c4.51,2.4199,4.68,8.0699,6.2,12.38c5.89-4.11,14.08-4.8201,20.14-0.67c4.55,3.25,8.93,6.9301,12.33,11.41
900 c0.69-0.02,2.07-0.0601,2.76-0.08c-5.65,1.21-11.46,0.6-17.18,0.6799c-2.46,0.16-4.59-1.13-6.6-2.3199
901 c-7.32-4.61-16.75-4.63-24.83-2.25c-0.39-3.39-0.87-6.76-1.55-10.0901c-3.39-0.58-7.3-0.7799-9.77-3.5
902 C909.33,1331.01,909.69,1328.25,909.52,1325.91z"/>
903 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M881,1333.79c3.52,0.4099,6.26-2.17,8.91-4.0601
904 c0.34,2.92,0.67,5.85,0.98,8.8c3.4-1.4501,7.55-3.5901,11.14-1.49c3.64,3,3.5099,8.25,4.1899,12.5299
905 c-5.78,0.12-11.46-1.1699-17.23-1.09c-14.76-0.21-29.55,1.0701-44.26-0.5699c6.68-1.7101,14-4.02,18.05-10.05
906 c1.8-2.29,2.98-5.77,6.23-6.27C873.21,1330.62,876.95,1333.3,881,1333.79z"/>
907 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M752.76,1340.71c2.91-5.0499,8.88-7.12,14.29-8.2
908 c7.48-0.97,15.83-1.46,22.23,3.28c-5.04-0.3201-10.14-0.63-15.16-0.0701c-6.64,3.63-10.54,10.75-12.03,17.98
909 c-3.8,0.42-7.47,1.6101-11.22,2.29C750.34,1350.87,749.99,1345.29,752.76,1340.71z"/>
910 <path stroke="#000000" stroke-width="0.8" d="M1110.23,1336.11c4.05-1.45,8.48-1.42,12.7001-0.7999
911 c3.4399,0.6299,7.35,2.75,7.45,6.71c-5.88,4.98-13.77,6.77-21.33,6.65c-11.14-0.05-22.3601,1.01-33.0601,4.25
912 c-15.1799,3.59-30.47,7.96-46.2,7.64c-7.3101-1.1001-14.41-3.9701-21.9401-3.3501c-9.7599-0.39-18.21,5.5-27.78,6.26
913 c-12.39,1.2101-24.68-1.47-36.99-2.33c-9.12-0.6-17.99-3.03-27-4.1801c-9.06,2.0601-18.77,2.48-27.67-0.5499
914 c-4.0099-1.23-8.24-1.01-12.36-0.8101c-9.27,0.52-18.54,1.05-27.83,0.97c-6.84,0.04-13.73-0.1899-20.4-1.86
915 c-5.58-1.2-10.63-4.1699-16.29-5.0599c-3.84-0.5801-7.75-0.5601-11.6-0.23c-5.52,0.4099-10.42,3.26-15.8,4.2699
916 c-7.28,1.3501-14.75,0.9601-22.04,0.01c1.49-7.23,5.39-14.35,12.03-17.98c5.02-0.5599,10.12-0.25,15.16,0.0701
917 c5.9,1.14,11.75,2.49,17.42,4.52c12.44,3.5199,25.17,6.2599,38.03,7.6c14.71,1.64,29.5,0.36,44.26,0.5699
918 c5.77-0.08,11.45,1.21,17.23,1.09c5.53-0.35,11.04-1.35,16.28-3.1499c8.08-2.38,17.51-2.36,24.83,2.25
919 c2.01,1.1899,4.14,2.48,6.6,2.3199c5.72-0.08,11.53,0.53,17.18-0.6799c4.08-0.8101,7.94-2.42,11.78-3.9901
920 c5.25-2.13,11.03-0.96,16.28,0.54c8.07,2.25,16.52,2.36,24.84,2.12c5.17,0.0601,9.12-3.89,14.03-4.88
921 c6.1-1.27,12.51-0.77,18.3999,1.28c9.3,3.17,19.64,2.34,28.6901-1.29c5.8199-2.45,12.22-3.46,17.75-6.62
922 C1105.4,1337.6899,1107.85,1336.9,1110.23,1336.11z"/>
923 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M1130.38,1342.02l0.22-0.16c1.27,0.35,2.5601,0.72,3.86,1.1
924 c-1.84,5.1801-5.6899,10.42-11.47,11.28c-7.8099,1.6801-14.85,6.28-19.5,12.77c-6.08-2.9-12.63-5.3201-19.48-4.8
925 c-6.89-0.38-12.41,4.67-19.13,5.1801c-8.1,1.03-16.04-1.77-23.22-5.24c-3.66-1.9501-7.92-1.09-11.87-1.59
926 c15.73,0.3199,31.02-4.05,46.2-7.64c10.7-3.24,21.92-4.3,33.0601-4.25C1116.61,1348.79,1124.5,1347,1130.38,1342.02z"/>
927 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M439.71,1355.77c0.37,6.74-0.74,13.48-0.24,20.23
928 c4.65-6.3199,10.12-12.54,17.59-15.49c-3.25,15.48-9.4,30.12-15.17,44.78c10.99-11.1901,20.56-23.7201,31.49-34.9501
929 c-1.35,6.86-3.92,13.4301-4.9,20.37c4.51-3.5699,8.26-7.98,12.58-11.77c-1.28,8.66-4.03,17.03-6.69,25.3401
930 c-3.91,12.12-8.58,24.0599-14.97,35.1c-3.39,6.16-7.99,11.58-11.03,17.9399c-6.37,12.52-8.38,26.79-7.77,40.7101
931 c-6.53-10.3-8.99-22.51-9.91-34.5c-4.02,10.8199-6.69,22.1799-11.58,32.6899c1.33-14.78,3.76-29.49,4-44.35
932 c-5.24,3.58-10.38,7.39-16.2,10.02c1.67-5.74,5.27-10.62,7.39-16.16c-9.73,8.52-17.7,18.8301-26.4,28.36
933 c4.55-10.7799,9.68-21.6599,10.52-33.51c-5.73,4.6801-11.87,9.5601-19.46,10.54c7.61-6.8199,14.3-14.62,19.91-23.16
934 c10.06-16,19.71-32.27,29.84-48.23C433.49,1372.3,436.84,1364.09,439.71,1355.77z"/>
935 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M848.22,1356.5699c9.29,0.0801,18.5601-0.45,27.83-0.97
936 c4.12-0.2,8.35-0.4199,12.36,0.8101c8.9,3.0299,18.61,2.61,27.67,0.5499c9.01,1.15,17.88,3.5801,27,4.1801
937 c12.31,0.86,24.6,3.54,36.99,2.33c9.57-0.76,18.02-6.65,27.78-6.26c-1,3.89-2.52,8.3401-6.5699,10.01
938 c-6.57,2.6801-13.55-0.5399-20.29-0.51c-11.94-0.26-24.62-1.46-35.65,4.13c-2.04-2.9299-3.9301-6.4199-7.45-7.72
939 c-3.28-0.87-7.31-0.66-9.82,1.88c-1.91,1.72-1.26,4.5-1.47,6.79c-3.04-0.9301-6.24-1.67-8.84-3.5701c-2.08-1.5399-3.28-3.89-4.62-6
940 c-5.08,1.8201-10.74,3.4-16.05,1.63c-2.65-0.7899-5.16-2.89-8.05-2.01c-6.55,1.4401-13.27,2.05-19.97,1.61
941 C861.79,1362.72,853.96,1361.51,848.22,1356.5699z"/>
942 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M1047.62,1388.48c3.5-1.1699,6.71-3.0499,10.03-4.64
943 c1.4199,4.88,2.85,9.76,4.12,14.7001c-5.15,2.77-10.75,5.1799-16.71,5.0399c-4.15,0.12-8.0701-1.6899-12.2101-1.59
944 c-1.98-0.09-2.9299,1.88-4.09,3.12c-3.71,0.26-5.8-3.12-6.54-6.28C1030.27,1394.45,1038.91,1391.27,1047.62,1388.48z"/>
945 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M940.69,1404.53c2.93-1.03,7.4-3.16,9.71-0.11
946 c2.43,9.0699-4.06,19.75-13.1801,21.3999c-7-5.25-8.2-14.6699-8.89-22.7699C931.97,1405.41,936.6,1406.5,940.69,1404.53z"/>
947 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M978.11,1409.0601c2.8-2.88,6.72-5.29,10.78-5.25
948 c2.05,2.3199,3.65,5.9299,1.91,8.8799c-1.74,3.01-5.27,4.1201-7.92,6.14c-4.35,3.02-7.47,7.36-10.81,11.39
949 C971.66,1422.8101,973.08,1414.79,978.11,1409.0601z"/>
950 <path fill="#666666" stroke="#666666" stroke-width="0.8" d="M1014.68,1410.74c5.47,5.66,13.03,8.55,20.73,9.53
951 c-2.5701,2.97-6.1901,6.0599-10.42,4.45C1019.69,1421.98,1016,1416.49,1014.68,1410.74z"/>
952 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M466.67,1464.66c6.84-15.9501,21.24-28.52,38.24-32.4601
953 c-2.92,6.16-1.38,13.0901,1.9,18.78c-15.41,8.86-29.44,20.3101-40.52,34.26c-0.91,1.03-1.88,2.03-2.88,3
954 C462.76,1480.26,463.56,1472.08,466.67,1464.66z"/>
955 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M508.05,1480.0601c7.97-3.65,16.7-5.0601,25.36-5.9
956 c0.23,0.38,0.69,1.13,0.92,1.5c-6.18,2.23-12.58,3.95-18.36,7.15c-12.09,6.2799-22.21,16.23-28.63,28.25
957 c-2.29-7.1101-0.38-15.5,5.3-20.4801C497.42,1486.6,502.28,1482.53,508.05,1480.0601z"/>
958 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M513.71,1500.7c7.55-8.3899,19.2-11.5499,30.15-11.75
959 c0.69,0.78,1.39,1.5901,2.11,2.4c-8.93,4.8201-17.24,11.35-22.6299,20.0701c-9.03,16.08-18.86,31.76-29.95,46.51
960 c-2.2-5.3401-4.05-11.04-3.62-16.88c0.37-6.1801,3.6-12.03,8.44-15.8301C506.31,1519.16,507.07,1507.9301,513.71,1500.7z"/>
961 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M555.86,1501.48c1.4,1.29,2.78,2.61,4.22,3.88
962 c-2.41,4.3201-5.22,8.52-9.11,11.67c-8.29,6.77-15.45,14.9099-21.11,24c-3.36,5.0599-5.38,10.8199-8.34,16.1
963 c-1.63-9.78-1.06-20.22,3.58-29.13c4.1801-9.74,11.97-17.86,21.52-22.4301C549.65,1504.0699,553.08,1503.45,555.86,1501.48z"/>
964 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M571.72,1514.42c3.27,2.4299,6.54,4.87,9.8701,7.24
965 c-4.97,2-10.44,3.5599-14.06,7.7999c-9.89,11.86-17.6,25.4701-23.25,39.8201c-0.35,0.83-0.92,1.47-1.73,1.9199
966 c-1.38-10.1799-0.01-20.61,3.39-30.26c3.08-8.3999,9.08-15.5499,16.4-20.6C565.35,1518.1801,568.86,1516.8,571.72,1514.42z"/>
967 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M591.41,1528.05c3.47,2.1899,6.94,4.3899,10.48,6.48
968 c-9.04,2.4099-16.7,9.02-21.14,17.1799c-7.05,12.66-13.68,25.55-19.94,38.63c-5.51-8.88-6.24-20.4199-2.53-30.13
969 C563.66,1545.09,577,1534.1899,591.41,1528.05z"/>
970 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M585.59,1559.58c5.33-6.1599,10.48-12.5,16.29-18.21
971 c5.64,2.6,11.01,5.74,16.27,9.04c-1.41,2.73-3.94,4.5699-5.94,6.84c-7.85,8.98-15.83,18.0699-21.04,28.92
972 c-4.35,7.84-7.02,16.3999-9.63,24.9299c-2.25-5.88-4.47-11.77-7.08-17.5c-2.2-4.87-3.01-10.53-1.22-15.64
973 C575.44,1570.72,580.96,1565.3101,585.59,1559.58z"/>
974 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M609.77,1567.78c4.32-5.37,9.83-10.04,16.31-12.54
975 c3.54-0.1899,6.76,2.15,9.76,3.87c0.89,0.59,3.15,2.01,1.29,2.99c-6.23,3.97-11.6,9.23-15.41,15.59
976 c-8.58,14.2401-15.7599,29.42-20.37,45.42C594.75,1604.84,597.91,1583.23,609.77,1567.78z"/>
977 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M626.49,1623.08c-4.28-20.88,7.37-41.96,23.54-54.5599
978 c4.22,1.27,8.46,3.51,10.7599,7.4299c-0.31,1.8601-2.24,3.03-3.42,4.4301c-11.26,10.4301-20.7,22.83-27.54,36.58
979 C628.81,1619.04,627.7,1621.09,626.49,1623.08z"/>
980 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M656.79,1590.6801c4.41-3.9801,9.25-7.53,14.48-10.37
981 c3.8,7.6299,2.06,17.2699-3.45,23.62c-3.01,3.6699-7.19,6.09-10.53,9.4099c-4.6,4.98-5.2,12.01-6.82,18.29
982 c-2.16,8.7-3.28,17.61-4.68,26.46c-6.96-8.1-10.15-19.1699-8.25-29.71C640.09,1614.34,646.27,1600.5601,656.79,1590.6801z"/>
983 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M662.25,1615.25c4.74-11.4,15.15-21.0699,27.7-22.5601
984 c0.39,6.6901-2.36,12.9401-5.48,18.6901c-5.59,10.7-10.24,21.85-15.2,32.85c-2.13,4.5-3.33,9.4-5.71,13.8
985 c-3.25-4.89-4.56-10.7001-5-16.47C657.24,1632.66,658.94,1623.54,662.25,1615.25z"/>
986 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M701.26,1608.29c5.51,2.47,11.25,6.4299,12.64,12.6899
987 c1.5099,6.3-2.19,12.0601-4.1801,17.79c-3.78,10.39-6.67,21.1-9.24,31.86c-1.24,4.64-1.53,9.52-3.2,14.0599
988 c-6.04-3.3099-11.53-8-14.57-14.2899c-5.26-10.62-5.06-22.9-3.73-34.38C680.72,1623.5699,689.76,1613,701.26,1608.29z"/>
989 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M710.31,1654.25c4.55-13.27,13.69-25.51,26.6-31.55
990 c4.02,5.87,5.25,13.4601,3.04,20.26c-2.09,8.42-8.65,14.73-11.12,22.99c-3.89,11.39-2.35,23.75,1.22,35
991 c-8.99-3.26-17.87-9.12-21.52-18.35C704.99,1673.42,706.97,1663.1899,710.31,1654.25z"/>
992 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M749.16,1645.21c4.08,2.13,10.07,2.87,11.67,7.87
993 c2.41,6.38,1.19,13.29,0.36,19.8501c-1.94,14.58-4.55,29.11-8.75,43.22c-3.28-6.3-4.64-13.41-6.63-20.1801
994 c-2.35-9.7899-4.93-19.7999-4.06-29.9399C742.41,1658.62,744.79,1651.27,749.16,1645.21z"/>
995 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M764.26,1678.95c0.87-11.2999,5.51-22.84,14.9-29.6699
996 c3.38,3.26,3.73,8.27,3.54,12.7c-1.2,18.49-3.96,37.09-10.82,54.4c-3.57-3.15-4.81-8-6.12-12.39
997 C763.81,1695.8101,763.74,1687.29,764.26,1678.95z"/>
998 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M807.12,1658.2c1.15-0.95,2.61-1.2699,4.01-1.6699
999 c2.01,6.58,0.02,13.4099-0.7,20.0399c-2.08,14.91-4.41,29.8-5.69,44.8101c-2.71-4.75-3.96-10.13-6.03-15.15
1000 c-3.72-9.52-6.45-20.03-3.97-30.2C796.33,1668.73,801.11,1662.47,807.12,1658.2z"/>
1001 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M825.12,1688.0601c2.68-8.26,10.32-14.3601,18.69-16.15
1002 c-0.94,20.86-2.04,41.88-7.37,62.1599c-4.31-5.1699-6.26-11.8099-8.58-18.0199C824.77,1707.1801,822.38,1697.33,825.12,1688.0601z"
1003 />
1004 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M643.34,1682.79c10.1,17.9399,10.71,40.4399,2.71,59.2899
1005 c-2.58,7.39-6.85,14.26-13.16,19.03c0.65-8.1799,3.06-16.0699,4.84-24.04C642.05,1719.33,643.54,1701.01,643.34,1682.79z"/>
1006 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M864.09,1691.53c6.68,4.35,11.1,12.39,10.0099,20.4399
1007 c-0.85,4.67-2.66,9.14-5,13.26C864.76,1714.64,862.94,1702.9301,864.09,1691.53z"/>
1008 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M664.32,1711.6c5.73,12.1801,7.47,26.24,4.44,39.39
1009 c-3.64,15.05-10.52,29.52-20.74,41.22c2.28-13.58,6.34-26.8199,9.16-40.2999C660.87,1738.73,662.7,1725.16,664.32,1711.6z"/>
1010 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M682.84,1749.01c2.2599-8.21,2.99-16.7,3.6299-25.15
1011 c5.65,11.51,8.2401,24.58,6.8101,37.37c-0.9,9.6801-4.26,18.9401-8.27,27.73c-3.59,7.03-7.39,14.3-13.32,19.64
1012 c-0.73-13.33,1.01-26.77,4.63-39.61C678.07,1762.1899,681.32,1755.88,682.84,1749.01z"/>
1013 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M714.58,1725.88c5.15,1.8099,7.1,7.63,7.81,12.5599
1014 c1.3,10.66-1.61,21.2001-3.71,31.5701c-4.26,18.01-10.34,35.55-17.11,52.75c-1.34,0.21-1.81-1.16-2.43-2.01
1015 c-4.83-7.97-6.29-17.6899-4.89-26.83c1-8.62,4.55-16.5901,6.94-24.8501C705.62,1754.66,710.25,1740.3101,714.58,1725.88z"/>
1016 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M739.09,1742.58c4.06,4.75,5.59,11.2301,5.47,17.38
1017 c0.01,6.78-2.67,13.13-4.1,19.67c-2.84,12.36-5.51,24.8-6.73,37.4399c-1.07,10.4401-6.29,21-15.63,26.3501
1018 c2.27-19.87,7.61-39.1901,12.6801-58.4801C734.43,1771.01,736.82,1756.79,739.09,1742.58z"/>
1019 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M782.29,1755.84c5,0.3401,9.92,3.41,11.67,8.24
1020 c1.97,5.4401,0.5099,11.26,0.19,16.86c-1.81,22.7301-6.51,45.16-12.91,67.03c-4.03,13.6901-8.88,27.17-14.98,40.0901
1021 c-2.52-5.9801-2.4-12.7001-2.52-19.0701c0.37-14.78,1.73-29.62,5.44-43.97c2.16-8.99,5.87-17.5,8.34-26.39
1022 C780.95,1784.65,782.18,1770.2,782.29,1755.84z"/>
1023 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M746.57,1796.58c4.04-9.7699,10.86-18.6799,19.95-24.23
1024 c0.19,4.72-1.47,9.26-2.19,13.89c-3.47,18.6801-10.74,36.33-15.31,54.73c-1.7,5.74-2.49,11.74-4.54,17.39
1025 C737.09,1838.46,739.01,1816.13,746.57,1796.58z"/>
1026 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M897.66,1778.1899c4.98,3.3701,9.53,7.41,13.57,11.8601
1027 c-1.09,6.7-3.24,13.21-4.18,19.95c-2.13,13.21-3.31,26.58-3.63,39.96c-0.39,8.77-2.35,17.65-7.08,25.15
1028 c-2.41-17.65,0.42-35.4399,1.48-53.09C899,1807.4301,898.5,1792.78,897.66,1778.1899z"/>
1029 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M814.44,1780.17c3.01-0.1901,6.49-0.6901,8.96,1.5
1030 c2.67,2.3099,2.71,6.21,2.3199,9.46c-2.49,21.96-5.68,44.11-13.54,64.88c-4.26,11.37-8.63,22.84-14.84,33.3
1031 c-0.77-21.5901,1.53-43.4301,8-64.1001C810.18,1810.64,813.22,1795.47,814.44,1780.17z"/>
1032 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M869.1,1780.9c7.7401,4.46,12.62,13.11,12.45,22.0499
1033 c0.53,9.88-3.77,18.9801-6.23,28.3301c-3.01,10.5599-5.62,21.23-7.96,31.96c-2.47,10.61-6.31,21.2-13.08,29.87
1034 c0.11-20.2999,3.09-40.48,7.33-60.2999C865.13,1815.67,867.28,1798.29,869.1,1780.9z"/>
1035 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M925.96,1780.84c4.17,1.55,8.33,4.54,9.24,9.1801
1036 c2.53,11.46,3.5,23.24,3.28,34.97c-0.28,10.59-1.31,21.35-5.08,31.34c-1.54,3.86-3.11,7.86-6.03,10.92
1037 c-2.56-10.58-2.13-21.49-2.13-32.27C925.76,1816.9301,925.31,1798.87,925.96,1780.84z"/>
1038 <path fill="#2C2C2C" stroke="#2C2C2C" stroke-width="0.8" d="M841.28,1783.98c4.11-0.3199,8.16,2.62,8.54,6.86
1039 c0.59,6.2101-1.93,12.15-3.18,18.14c-6.34,25.16-13.72,50.39-26.49,73.14c0.41-9.66,2.27-19.17,3.41-28.75
1040 c3.22-21.0599,5.24-42.8099,14.4-62.34C839.04,1788.66,840.19,1786.33,841.28,1783.98z"/>
1041</g>
1042</svg>