p2party 0.8.0 → 0.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/LICENSE.md +202 -661
  2. package/README.md +736 -404
  3. package/THIRD_PARTY_NOTICES.md +458 -0
  4. package/docs/assets/p2party-cat.svg +1 -0
  5. package/docs/getting-started.md +203 -0
  6. package/docs/protocol-v4-security.md +158 -0
  7. package/docs/references.md +157 -0
  8. package/docs/session-api.md +457 -0
  9. package/docs/wire-format.md +103 -0
  10. package/examples/standalone-e2ee.ts +194 -0
  11. package/lib/api/signalingServerApi.d.ts +6 -7
  12. package/lib/api/webrtc/baseQuery.d.ts +1 -2
  13. package/lib/api/webrtc/disconnectFromAllRoomsQuery.d.ts +1 -2
  14. package/lib/api/webrtc/disconnectFromChannelLabelQuery.d.ts +1 -2
  15. package/lib/api/webrtc/disconnectFromPeerChannelLabelQuery.d.ts +1 -2
  16. package/lib/api/webrtc/disconnectFromPeerQuery.d.ts +3 -3
  17. package/lib/api/webrtc/disconnectFromRoomQuery.d.ts +1 -2
  18. package/lib/api/webrtc/disconnectQuery.d.ts +1 -2
  19. package/lib/api/webrtc/iceGeneration.d.ts +17 -0
  20. package/lib/api/webrtc/iceRepair.d.ts +10 -0
  21. package/lib/api/webrtc/index.d.ts +13 -13
  22. package/lib/api/webrtc/interfaces.d.ts +67 -11
  23. package/lib/api/webrtc/negotiationLock.d.ts +12 -0
  24. package/lib/api/webrtc/openChannelQuery.d.ts +1 -2
  25. package/lib/api/webrtc/pendingIceCandidates.d.ts +14 -0
  26. package/lib/api/webrtc/roomPeer.d.ts +11 -0
  27. package/lib/api/webrtc/sendMessageQuery.d.ts +7 -4
  28. package/lib/api/webrtc/setCandidateQuery.d.ts +1 -2
  29. package/lib/api/webrtc/setDescriptionQuery.d.ts +1 -2
  30. package/lib/cryptography/coverCell.d.ts +65 -0
  31. package/lib/cryptography/cpace.d.ts +41 -0
  32. package/lib/cryptography/ed25519.d.ts +0 -1
  33. package/lib/cryptography/hashStream.d.ts +15 -0
  34. package/lib/cryptography/hkdf.d.ts +3 -0
  35. package/lib/cryptography/identityCrossSig.d.ts +7 -0
  36. package/lib/cryptography/interfaces.d.ts +28 -13
  37. package/lib/cryptography/memory.d.ts +2 -4
  38. package/lib/cryptography/merkle.d.ts +0 -1
  39. package/lib/cryptography/mlkem.d.ts +117 -0
  40. package/lib/cryptography/mnemonic.d.ts +0 -1
  41. package/lib/cryptography/pqHealing.d.ts +268 -0
  42. package/lib/cryptography/pqHealingFrame.d.ts +39 -0
  43. package/lib/cryptography/pqMessageKey.d.ts +30 -0
  44. package/lib/cryptography/random.d.ts +22 -0
  45. package/lib/cryptography/ratchet.d.ts +146 -0
  46. package/lib/cryptography/testModule.d.ts +7 -0
  47. package/lib/cryptography/utils.d.ts +0 -1
  48. package/lib/cryptography/wasmLoader.d.ts +6 -1
  49. package/lib/cryptography/x25519.d.ts +15 -0
  50. package/lib/cryptography/x3dh.d.ts +9 -0
  51. package/lib/db/api.d.ts +54 -22
  52. package/lib/db/db.worker.d.ts +0 -1
  53. package/lib/db/ratchetWrap.d.ts +36 -0
  54. package/lib/db/src/getDB.d.ts +17 -4
  55. package/lib/db/types.d.ts +274 -32
  56. package/lib/db.worker.js +1 -2
  57. package/lib/handlers/chunkFrame.d.ts +13 -0
  58. package/lib/handlers/connectionSignal.d.ts +26 -0
  59. package/lib/handlers/coverEdge.d.ts +42 -0
  60. package/lib/handlers/coverRuntime.d.ts +91 -0
  61. package/lib/handlers/coverScheduler.d.ts +184 -0
  62. package/lib/handlers/coverTransfer.d.ts +46 -0
  63. package/lib/handlers/frameType.d.ts +10 -0
  64. package/lib/handlers/handleChallenge.d.ts +0 -1
  65. package/lib/handlers/handleConnectToPeer.d.ts +0 -1
  66. package/lib/handlers/handleHandshake.d.ts +74 -0
  67. package/lib/handlers/handleMessageQueueing.d.ts +53 -4
  68. package/lib/handlers/handleOpenChannel.d.ts +4 -2
  69. package/lib/handlers/handleQueuedIceCandidates.d.ts +0 -1
  70. package/lib/handlers/handleReadReceipt.d.ts +17 -4
  71. package/lib/handlers/handleReceiveMessage.d.ts +21 -3
  72. package/lib/handlers/handleSendMessage.d.ts +110 -2
  73. package/lib/handlers/handleWebSocketMessage.d.ts +1 -3
  74. package/lib/handlers/handshakeCore.d.ts +95 -0
  75. package/lib/handlers/messageChunkCrypto.d.ts +70 -0
  76. package/lib/handlers/peerRosterDelta.d.ts +12 -0
  77. package/lib/handlers/pqHealingOrchestrator.d.ts +46 -0
  78. package/lib/handlers/pqHealingRuntime.d.ts +82 -0
  79. package/lib/handlers/ratchetGate.d.ts +18 -0
  80. package/lib/handlers/ratchetPersist.d.ts +53 -0
  81. package/lib/handlers/receiptFrame.d.ts +18 -0
  82. package/lib/handlers/receiveMessageKeyLifetime.d.ts +24 -0
  83. package/lib/handlers/reconcile.d.ts +16 -0
  84. package/lib/handlers/transferAbort.d.ts +42 -0
  85. package/lib/index.d.ts +203 -46
  86. package/lib/index.js +1 -2
  87. package/lib/index.min.js +1 -2
  88. package/lib/index.mjs +1 -2
  89. package/lib/libcrypto.provenance.json +45 -0
  90. package/lib/libcrypto.wasm +0 -0
  91. package/lib/middleware/keyPairListenerMiddleware.d.ts +0 -1
  92. package/lib/middleware/roomListenerMiddleware.d.ts +0 -1
  93. package/lib/reducers/commonSlice.d.ts +0 -1
  94. package/lib/reducers/keyPairSlice.d.ts +0 -1
  95. package/lib/reducers/roomSlice.d.ts +65 -3
  96. package/lib/reducers/signalingServerSlice.d.ts +25 -4
  97. package/lib/roomInvite.d.ts +18 -0
  98. package/lib/roomPinAttempts.d.ts +12 -0
  99. package/lib/roomPinVault.d.ts +26 -0
  100. package/lib/roomPolicy.d.ts +60 -0
  101. package/lib/session.d.ts +110 -0
  102. package/lib/session.js +1 -0
  103. package/lib/session.mjs +1 -0
  104. package/lib/store.d.ts +40 -41
  105. package/lib/utils/channelLabel.d.ts +0 -1
  106. package/lib/utils/chunkBounds.d.ts +9 -0
  107. package/lib/utils/constants.d.ts +50 -6
  108. package/lib/utils/debug.d.ts +25 -0
  109. package/lib/utils/drainAndClose.d.ts +5 -0
  110. package/lib/utils/identityRole.d.ts +19 -0
  111. package/lib/utils/interfaces.d.ts +31 -43
  112. package/lib/utils/leafHash.d.ts +13 -0
  113. package/lib/utils/messageTypes.d.ts +0 -1
  114. package/lib/utils/metadata.d.ts +6 -1
  115. package/lib/utils/mutex.d.ts +24 -0
  116. package/lib/utils/protocolVersion.d.ts +5 -0
  117. package/lib/utils/receiptToken.d.ts +7 -0
  118. package/lib/utils/sendQueueKey.d.ts +2 -0
  119. package/lib/utils/signalingAuth.d.ts +8 -0
  120. package/lib/utils/signalingBounds.d.ts +9 -0
  121. package/lib/utils/splitToChunks.d.ts +7 -4
  122. package/lib/utils/uint8array.d.ts +1 -2
  123. package/lib/utils/waitForOpen.d.ts +3 -0
  124. package/lib/utils/zeroFree.d.ts +10 -0
  125. package/package.json +109 -49
  126. package/lib/api/signalingServerApi.d.ts.map +0 -1
  127. package/lib/api/webrtc/baseQuery.d.ts.map +0 -1
  128. package/lib/api/webrtc/disconnectFromAllRoomsQuery.d.ts.map +0 -1
  129. package/lib/api/webrtc/disconnectFromChannelLabelQuery.d.ts.map +0 -1
  130. package/lib/api/webrtc/disconnectFromPeerChannelLabelQuery.d.ts.map +0 -1
  131. package/lib/api/webrtc/disconnectFromPeerQuery.d.ts.map +0 -1
  132. package/lib/api/webrtc/disconnectFromRoomQuery.d.ts.map +0 -1
  133. package/lib/api/webrtc/disconnectQuery.d.ts.map +0 -1
  134. package/lib/api/webrtc/index.d.ts.map +0 -1
  135. package/lib/api/webrtc/interfaces.d.ts.map +0 -1
  136. package/lib/api/webrtc/openChannelQuery.d.ts.map +0 -1
  137. package/lib/api/webrtc/sendMessageQuery.d.ts.map +0 -1
  138. package/lib/api/webrtc/setCandidateQuery.d.ts.map +0 -1
  139. package/lib/api/webrtc/setDescriptionQuery.d.ts.map +0 -1
  140. package/lib/cryptography/chacha20poly1305.d.ts +0 -116
  141. package/lib/cryptography/chacha20poly1305.d.ts.map +0 -1
  142. package/lib/cryptography/ed25519.d.ts.map +0 -1
  143. package/lib/cryptography/interfaces.d.ts.map +0 -1
  144. package/lib/cryptography/memory.d.ts.map +0 -1
  145. package/lib/cryptography/merkle.d.ts.map +0 -1
  146. package/lib/cryptography/mnemonic.d.ts.map +0 -1
  147. package/lib/cryptography/utils.d.ts.map +0 -1
  148. package/lib/cryptography/wasmLoader.d.ts.map +0 -1
  149. package/lib/db/api.d.ts.map +0 -1
  150. package/lib/db/db.worker.d.ts.map +0 -1
  151. package/lib/db/src/getDB.d.ts.map +0 -1
  152. package/lib/db/types.d.ts.map +0 -1
  153. package/lib/db.worker.js.map +0 -1
  154. package/lib/handlers/handleChallenge.d.ts.map +0 -1
  155. package/lib/handlers/handleConnectToPeer.d.ts.map +0 -1
  156. package/lib/handlers/handleMessageQueueing.d.ts.map +0 -1
  157. package/lib/handlers/handleOpenChannel.d.ts.map +0 -1
  158. package/lib/handlers/handleQueuedIceCandidates.d.ts.map +0 -1
  159. package/lib/handlers/handleReadReceipt.d.ts.map +0 -1
  160. package/lib/handlers/handleReceiveMessage.d.ts.map +0 -1
  161. package/lib/handlers/handleSendMessage.d.ts.map +0 -1
  162. package/lib/handlers/handleWebSocketMessage.d.ts.map +0 -1
  163. package/lib/index.d.ts.map +0 -1
  164. package/lib/index.js.map +0 -1
  165. package/lib/index.min.js.map +0 -1
  166. package/lib/index.mjs.map +0 -1
  167. package/lib/middleware/keyPairListenerMiddleware.d.ts.map +0 -1
  168. package/lib/middleware/roomListenerMiddleware.d.ts.map +0 -1
  169. package/lib/reducers/commonSlice.d.ts.map +0 -1
  170. package/lib/reducers/keyPairSlice.d.ts.map +0 -1
  171. package/lib/reducers/roomSlice.d.ts.map +0 -1
  172. package/lib/reducers/signalingServerSlice.d.ts.map +0 -1
  173. package/lib/store.d.ts.map +0 -1
  174. package/lib/utils/allocators.d.ts +0 -22
  175. package/lib/utils/allocators.d.ts.map +0 -1
  176. package/lib/utils/channelLabel.d.ts.map +0 -1
  177. package/lib/utils/constants.d.ts.map +0 -1
  178. package/lib/utils/interfaces.d.ts.map +0 -1
  179. package/lib/utils/messageTypes.d.ts.map +0 -1
  180. package/lib/utils/metadata.d.ts.map +0 -1
  181. package/lib/utils/splitToChunks.d.ts.map +0 -1
  182. package/lib/utils/uint8array.d.ts.map +0 -1
@@ -0,0 +1,458 @@
1
+ # Third-party notices
2
+
3
+ This distribution includes or depends on the works below. They are not
4
+ relicensed under p2party's Apache-2.0 license. Source pins and artifact digests
5
+ are recorded in `lib/libcrypto.provenance.json`.
6
+
7
+ ## libsodium
8
+
9
+ Source: libsodium stable commit
10
+ `2ce4d906a68eae82b27b4867f3d4172ec508cb27`, tree
11
+ `2dabe17c708edd7334e3316b5094b753859395d9`.
12
+
13
+ Verbatim tracked license:
14
+
15
+ ```text
16
+ /*
17
+ * ISC License
18
+ *
19
+ * Copyright (c) 2013-2026
20
+ * Frank Denis <j at pureftpd dot org>
21
+ *
22
+ * Permission to use, copy, modify, and/or distribute this software for any
23
+ * purpose with or without fee is hereby granted, provided that the above
24
+ * copyright notice and this permission notice appear in all copies.
25
+ *
26
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
27
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
28
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
29
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
30
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
31
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
32
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33
+ */
34
+ ```
35
+
36
+ ## mlkem-native
37
+
38
+ Source: mlkem-native v1.2.0 commit
39
+ `0ba906cb14b1c241476134d7403a811b382ca498`, portable C backend. Upstream
40
+ offers Apache-2.0 OR ISC OR MIT; this distribution exercises the MIT option.
41
+
42
+ Verbatim tracked MIT block:
43
+
44
+ ```text
45
+ Copyright (c) The mlkem-native project authors
46
+ Copyright (c) 2020 Dougall Johnson
47
+ Copyright (c) 2022 Arm Limited
48
+ SPDX-License-Identifier: MIT
49
+
50
+ Permission is hereby granted, free of charge, to any person obtaining a copy
51
+ of this software and associated documentation files (the "Software"), to deal
52
+ in the Software without restriction, including without limitation the rights
53
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
54
+ copies of the Software, and to permit persons to whom the Software is
55
+ furnished to do so, subject to the following conditions:
56
+
57
+ The above copyright notice and this permission notice shall be included in
58
+ all copies or substantial portions of the Software.
59
+
60
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
61
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
62
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
63
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
64
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
65
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66
+ SOFTWARE.
67
+ ```
68
+
69
+ ## Emscripten-generated runtime
70
+
71
+ The WebAssembly and JavaScript glue are built with Emscripten 6.0.2.
72
+
73
+ Verbatim upstream license:
74
+
75
+ ```text
76
+ Emscripten is available under 2 licenses, the MIT license and the
77
+ University of Illinois/NCSA Open Source License.
78
+
79
+ Both are permissive open source licenses, with little if any
80
+ practical difference between them.
81
+
82
+ The reason for offering both is that (1) the MIT license is
83
+ well-known, while (2) the University of Illinois/NCSA Open Source
84
+ License allows Emscripten's code to be integrated upstream into
85
+ LLVM, which uses that license, should the opportunity arise.
86
+
87
+ The full text of both licenses follows.
88
+
89
+ ==============================================================================
90
+
91
+ Copyright (c) 2010-2014 Emscripten authors, see AUTHORS file.
92
+
93
+ Permission is hereby granted, free of charge, to any person obtaining a copy
94
+ of this software and associated documentation files (the "Software"), to deal
95
+ in the Software without restriction, including without limitation the rights
96
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
97
+ copies of the Software, and to permit persons to whom the Software is
98
+ furnished to do so, subject to the following conditions:
99
+
100
+ The above copyright notice and this permission notice shall be included in
101
+ all copies or substantial portions of the Software.
102
+
103
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
104
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
105
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
106
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
107
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
108
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
109
+ THE SOFTWARE.
110
+
111
+ ==============================================================================
112
+
113
+ Copyright (c) 2010-2014 Emscripten authors, see AUTHORS file.
114
+ All rights reserved.
115
+
116
+ Permission is hereby granted, free of charge, to any person obtaining a
117
+ copy of this software and associated documentation files (the
118
+ "Software"), to deal with the Software without restriction, including
119
+ without limitation the rights to use, copy, modify, merge, publish,
120
+ distribute, sublicense, and/or sell copies of the Software, and to
121
+ permit persons to whom the Software is furnished to do so, subject to
122
+ the following conditions:
123
+
124
+ Redistributions of source code must retain the above copyright
125
+ notice, this list of conditions and the following disclaimers.
126
+
127
+ Redistributions in binary form must reproduce the above
128
+ copyright notice, this list of conditions and the following disclaimers
129
+ in the documentation and/or other materials provided with the
130
+ distribution.
131
+
132
+ Neither the names of Mozilla,
133
+ nor the names of its contributors may be used to endorse
134
+ or promote products derived from this Software without specific prior
135
+ written permission.
136
+
137
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
138
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
139
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
140
+ IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR
141
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
142
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
143
+ SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
144
+
145
+ ==============================================================================
146
+
147
+ This program uses portions of Node.js source code located in src/library_path.js,
148
+ in accordance with the terms of the MIT license. Node's license follows:
149
+
150
+ """
151
+ Copyright Joyent, Inc. and other Node contributors. All rights reserved.
152
+ Permission is hereby granted, free of charge, to any person obtaining a copy
153
+ of this software and associated documentation files (the "Software"), to
154
+ deal in the Software without restriction, including without limitation the
155
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
156
+ sell copies of the Software, and to permit persons to whom the Software is
157
+ furnished to do so, subject to the following conditions:
158
+
159
+ The above copyright notice and this permission notice shall be included in
160
+ all copies or substantial portions of the Software.
161
+
162
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
163
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
164
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
165
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
166
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
167
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
168
+ IN THE SOFTWARE.
169
+ """
170
+
171
+ The musl libc project is bundled in this repo, and it has the MIT license, see
172
+ system/lib/libc/musl/COPYRIGHT
173
+
174
+ The third_party/ subdirectory contains code with other licenses. None of it is
175
+ used by default, but certain options use it (e.g., the optional closure compiler
176
+ flag will run closure compiler from third_party/).
177
+ ```
178
+
179
+ ### musl libc portions
180
+
181
+ Emscripten 6.0.2 incorporates musl libc portions. Verbatim pinned upstream
182
+ copyright file:
183
+
184
+ ```text
185
+ musl as a whole is licensed under the following standard MIT license:
186
+
187
+ ----------------------------------------------------------------------
188
+ Copyright © 2005-2020 Rich Felker, et al.
189
+
190
+ Permission is hereby granted, free of charge, to any person obtaining
191
+ a copy of this software and associated documentation files (the
192
+ "Software"), to deal in the Software without restriction, including
193
+ without limitation the rights to use, copy, modify, merge, publish,
194
+ distribute, sublicense, and/or sell copies of the Software, and to
195
+ permit persons to whom the Software is furnished to do so, subject to
196
+ the following conditions:
197
+
198
+ The above copyright notice and this permission notice shall be
199
+ included in all copies or substantial portions of the Software.
200
+
201
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
202
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
203
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
204
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
205
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
206
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
207
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
208
+ ----------------------------------------------------------------------
209
+
210
+ Authors/contributors include:
211
+
212
+ A. Wilcox
213
+ Ada Worcester
214
+ Alex Dowad
215
+ Alex Suykov
216
+ Alexander Monakov
217
+ Andre McCurdy
218
+ Andrew Kelley
219
+ Anthony G. Basile
220
+ Aric Belsito
221
+ Arvid Picciani
222
+ Bartosz Brachaczek
223
+ Benjamin Peterson
224
+ Bobby Bingham
225
+ Boris Brezillon
226
+ Brent Cook
227
+ Chris Spiegel
228
+ Clément Vasseur
229
+ Daniel Micay
230
+ Daniel Sabogal
231
+ Daurnimator
232
+ David Carlier
233
+ David Edelsohn
234
+ Denys Vlasenko
235
+ Dmitry Ivanov
236
+ Dmitry V. Levin
237
+ Drew DeVault
238
+ Emil Renner Berthing
239
+ Fangrui Song
240
+ Felix Fietkau
241
+ Felix Janda
242
+ Gianluca Anzolin
243
+ Hauke Mehrtens
244
+ He X
245
+ Hiltjo Posthuma
246
+ Isaac Dunham
247
+ Jaydeep Patil
248
+ Jens Gustedt
249
+ Jeremy Huntwork
250
+ Jo-Philipp Wich
251
+ Joakim Sindholt
252
+ John Spencer
253
+ Julien Ramseier
254
+ Justin Cormack
255
+ Kaarle Ritvanen
256
+ Khem Raj
257
+ Kylie McClain
258
+ Leah Neukirchen
259
+ Luca Barbato
260
+ Luka Perkov
261
+ Lynn Ochs
262
+ M Farkas-Dyck (Strake)
263
+ Mahesh Bodapati
264
+ Markus Wichmann
265
+ Masanori Ogino
266
+ Michael Clark
267
+ Michael Forney
268
+ Mikhail Kremnyov
269
+ Natanael Copa
270
+ Nicholas J. Kain
271
+ orc
272
+ Pascal Cuoq
273
+ Patrick Oppenlander
274
+ Petr Hosek
275
+ Petr Skocik
276
+ Pierre Carrier
277
+ Reini Urban
278
+ Rich Felker
279
+ Richard Pennington
280
+ Ryan Fairfax
281
+ Samuel Holland
282
+ Segev Finer
283
+ Shiz
284
+ sin
285
+ Solar Designer
286
+ Stefan Kristiansson
287
+ Stefan O'Rear
288
+ Szabolcs Nagy
289
+ Timo Teräs
290
+ Trutz Behn
291
+ Will Dietz
292
+ William Haddon
293
+ William Pitcock
294
+
295
+ Portions of this software are derived from third-party works licensed
296
+ under terms compatible with the above MIT license:
297
+
298
+ The TRE regular expression implementation (src/regex/reg* and
299
+ src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
300
+ under a 2-clause BSD license (license text in the source files). The
301
+ included version has been heavily modified by Rich Felker in 2012, in
302
+ the interests of size, simplicity, and namespace cleanliness.
303
+
304
+ Much of the math library code (src/math/* and src/complex/*) is
305
+ Copyright © 1993,2004 Sun Microsystems or
306
+ Copyright © 2003-2011 David Schultz or
307
+ Copyright © 2003-2009 Steven G. Kargl or
308
+ Copyright © 2003-2009 Bruce D. Evans or
309
+ Copyright © 2008 Stephen L. Moshier or
310
+ Copyright © 2017-2018 Arm Limited
311
+ and labelled as such in comments in the individual source files. All
312
+ have been licensed under extremely permissive terms.
313
+
314
+ The ARM memcpy code (src/string/arm/memcpy.S) is Copyright © 2008
315
+ The Android Open Source Project and is licensed under a two-clause BSD
316
+ license. It was taken from Bionic libc, used on Android.
317
+
318
+ The AArch64 memcpy and memset code (src/string/aarch64/*) are
319
+ Copyright © 1999-2019, Arm Limited.
320
+
321
+ The implementation of DES for crypt (src/crypt/crypt_des.c) is
322
+ Copyright © 1994 David Burren. It is licensed under a BSD license.
323
+
324
+ The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
325
+ originally written by Solar Designer and placed into the public
326
+ domain. The code also comes with a fallback permissive license for use
327
+ in jurisdictions that may not recognize the public domain.
328
+
329
+ The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
330
+ Lynn Ochs and is licensed under an MIT-style license.
331
+
332
+ The x86_64 port was written by Nicholas J. Kain and is licensed under
333
+ the standard MIT terms.
334
+
335
+ The mips and microblaze ports were originally written by Richard
336
+ Pennington for use in the ellcc project. The original code was adapted
337
+ by Rich Felker for build system and code conventions during upstream
338
+ integration. It is licensed under the standard MIT terms.
339
+
340
+ The mips64 port was contributed by Imagination Technologies and is
341
+ licensed under the standard MIT terms.
342
+
343
+ The powerpc port was also originally written by Richard Pennington,
344
+ and later supplemented and integrated by John Spencer. It is licensed
345
+ under the standard MIT terms.
346
+
347
+ All other files which have no copyright comments are original works
348
+ produced specifically for use as part of this library, written either
349
+ by Rich Felker, the main author of the library, or by one or more
350
+ contibutors listed above. Details on authorship of individual files
351
+ can be found in the git version control history of the project. The
352
+ omission of copyright and license comments in each file is in the
353
+ interest of source tree size.
354
+
355
+ In addition, permission is hereby granted for all public header files
356
+ (include/* and arch/*/bits/*) and crt files intended to be linked into
357
+ applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
358
+ the copyright notice and permission notice otherwise required by the
359
+ license, and to use these files without any requirement of
360
+ attribution. These files include substantial contributions from:
361
+
362
+ Bobby Bingham
363
+ John Spencer
364
+ Nicholas J. Kain
365
+ Rich Felker
366
+ Richard Pennington
367
+ Stefan Kristiansson
368
+ Szabolcs Nagy
369
+
370
+ all of whom have explicitly granted such permission.
371
+
372
+ This file previously contained text expressing a belief that most of
373
+ the files covered by the above exception were sufficiently trivial not
374
+ to be subject to copyright, resulting in confusion over whether it
375
+ negated the permissions granted in the license. In the spirit of
376
+ permissive licensing, and of not having licensing issues being an
377
+ obstacle to adoption, that text has been removed.
378
+ ```
379
+
380
+ ## BIP39 English word list
381
+
382
+ `src/utils/wordlist.json` is word-for-word equal to the canonical BIP39 English
383
+ list at bitcoinjs/bip39 commit
384
+ `a7ecbfe2e60d0214ce17163d610cad9f7b23140c`
385
+ (`src/wordlists/english.json`). The tracked p2party JSON file has SHA-256
386
+ `531238ede7be78f5fd444b3a4452b023f408f0146aa82bd9fe03aad902b3ff8e`.
387
+ p2party uses the words only as a reversible room-capability encoding with its
388
+ own checksum and domain; it does not claim BIP39 mnemonic semantics.
389
+
390
+ Verbatim bitcoinjs/bip39 license:
391
+
392
+ ```text
393
+ Copyright (c) 2014, Wei Lu <luwei.here@gmail.com> and Daniel Cousens <email@dcousens.com>
394
+
395
+ Permission to use, copy, modify, and/or distribute this software for any
396
+ purpose with or without fee is hereby granted, provided that the above
397
+ copyright notice and this permission notice appear in all copies.
398
+
399
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
400
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
401
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
402
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
403
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
404
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
405
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
406
+ ```
407
+
408
+ ## JavaScript runtime components
409
+
410
+ The browser bundle and/or installed runtime dependency graph includes:
411
+
412
+ - `@reduxjs/toolkit` 2.12.0 — Copyright (c) 2018 Mark Erikson
413
+ - `@standard-schema/spec` 1.0.0 — Copyright (c) 2024 Colin McDonnell
414
+ - `@standard-schema/utils` 0.3.0 — Copyright (c) 2024 Fabian Hiller
415
+ - `redux` 5.0.1 — Copyright (c) 2015-present Dan Abramov
416
+ - `redux-thunk` 3.1.0 — Copyright (c) 2015-present Dan Abramov
417
+ - `reselect` 5.1.1 — Copyright (c) 2015-2018 Reselect Contributors
418
+ - `immer` 11.1.15 — Copyright (c) 2017 Michel Weststrate
419
+ - `class-validator` 0.15.1 — Copyright (c) 2015-2020 TypeStack
420
+ - `validator` 13.15.23 — Copyright (c) 2018 Chris O'Hara
421
+ `<cohara87@gmail.com>`
422
+ - `libphonenumber-js` 1.12.27 — Copyright (c) 2016 @catamphetamine
423
+ `<purecatamphetamine@gmail.com>`
424
+
425
+ Each component above is MIT-licensed. Verbatim grant and disclaimer:
426
+
427
+ ```text
428
+ Permission is hereby granted, free of charge, to any person obtaining a copy
429
+ of this software and associated documentation files (the "Software"), to deal
430
+ in the Software without restriction, including without limitation the rights
431
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
432
+ copies of the Software, and to permit persons to whom the Software is
433
+ furnished to do so, subject to the following conditions:
434
+
435
+ The above copyright notice and this permission notice shall be included in all
436
+ copies or substantial portions of the Software.
437
+
438
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
439
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
440
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
441
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
442
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
443
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
444
+ SOFTWARE.
445
+ ```
446
+
447
+ The IndexedDB worker bundles `idb` 8.0.3.
448
+
449
+ Verbatim upstream license:
450
+
451
+ ```text
452
+ ISC License (ISC)
453
+ Copyright (c) 2016, Jake Archibald <jaffathecake@gmail.com>
454
+
455
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
456
+
457
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
458
+ ```
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 40 1024 848"><path d="M585.2 860a173.9 173.9 0 0 1-48 10.1c-16.3 1-32.6 2.2-49 1.6-12.4-.4-24.7-3.3-37.1-5.2-17.4-2.7-34-8.1-50.3-14.4a309.2 309.2 0 0 1-37.2-17.8 297.5 297.5 0 0 1-33.4-21c-10.5-7.8-20.2-16.7-30-25.6a143 143 0 0 1-18-18.8c-11.4-15-23.5-29.4-30.6-47.3-3.5-8.8-8.5-17-12.2-25.8-2.3-5.6-3.8-11.7-5.2-17.7-2.3-9.6-4.5-19.2-6.2-29-1.4-8.1-2-16.5-3-24.7-.7-6-1.6-11.8-1.8-17.7-.2-6 .1-12 1-17.9 2-14.6 4.3-29.1 6.8-43.6.8-4.5 2.6-8.8 3.5-13.3.6-2.7 1-5.8.4-8.5-3-14.3-6.8-28.5-9.4-42.9-2-10.1-2.5-20.5-3.5-30.8-.9-10.3-1.8-20.5-2-30.7-.2-11 .4-21.9.8-32.8.3-7.6.5-15.3 1.3-22.8 1.3-13 3-26 4.6-38.9.4-3.2.7-6.5 1.3-9.8a69.4 69.4 0 0 1 11.6-30.3 28 28 0 0 1 34.2-8.4c12.8 5.5 25.8 10.9 38 17.6 16.7 9.3 32.8 19.8 49 30 4.5 2.7 8.6 6.1 12.9 9.1 2.3 1.7 4.5 2 6.2-1 1.9-3.5 4.1-6.8 6-10.3 8.6-17 17.2-34 26-51 11-21.2 21.9-42.5 33.2-63.5 12.7-23.7 25.9-47.3 39-70.8 2.1-4 3.4-6.7-1.6-10.5a43.6 43.6 0 0 1-17.3-31 31 31 0 0 1 7.6-23 40.4 40.4 0 0 1 22.1-15c8-1.8 16.5-1.7 24.4 2 10.6 5.2 20 12 23.7 23.4a35 35 0 0 1-.4 25.7 55 55 0 0 1-15.9 20.5c-2.7 2.2-2.9 3.8-1.3 6.6 7.5 13.2 15 26.4 22.3 39.7a1344 1344 0 0 1 18.2 34c13.1 25.4 26 51 39 76.3 8.5 16.7 17.3 33.3 26 50 .4.7 1.2 1.4 1.5 1.8 20.1-13.2 39.7-26.7 60-39a192.5 192.5 0 0 1 37.7-18.2c20.5-6.9 28.7-5 43 11.3 6 6.8 7 16.2 8.8 25 1.7 8.2 3.1 16.6 4.4 25 1 6.3 2.3 12.7 2.6 19 1 17 2.6 34 1.8 50.8-1 20.9-1 42-5.5 62.6-2.7 12.4-4.7 25-7.6 37.3-1.3 5.5-4.3 10.6-6.3 16a10 10 0 0 0-.3 5.6c2.9 11.5 6.3 22.9 9 34.5a181 181 0 0 1 2.9 62.3 330.7 330.7 0 0 1-7 41.3 214.5 214.5 0 0 1-56.3 105.6c-11.7 11.7-23.2 23.6-36.1 33.9a285.5 285.5 0 0 1-40.5 26.6c-13.9 7.5-28.9 12.9-43.4 19-4.6 1.9-9.4 3.2-14.4 4.8m151.1-376.8-1.2-2.1s-.3-.3-.3-.7a.8.8 0 0 0-.7-.6l-.1-.7c-7.7-11.8-15.3-23.7-26.3-33.7-5.6-5.2-11.1-10.3-17-16.1l-9.2-7.3s-.5 0-.7-.2c0 0-.4 0-.5-.7-2.2-2-4.6-3.8-6.5-6-8.8-10.1-21-15.2-32.2-21.4-9.5-5.2-20-8.8-30.4-12.4-8.8-3-18-4.8-27.6-7.8L549 369c-7.6-.3-15.3-.5-23.9-1l-40.2 1.3a293 293 0 0 1-22.3 2.2c-4.2.5-8.5.8-12.6 1.6-7.8 1.4-15.5 3.1-24 4.8-18 3-35.3 8-51.8 15.8a224.6 224.6 0 0 0-54 34.2l-1 1-8 7.2-5.7 5.4c-3.8 4-7.8 7.7-11.2 12a593.6 593.6 0 0 0-17.7 23.3s0-.2-.6 0a8 8 0 0 1-1.6 2.4c-6.4 11.9-12.8 23.8-19.8 36a203.8 203.8 0 0 0-16.2 55.3c0 .5 0 1-.5 1.9a199.7 199.7 0 0 0-1.3 56h35.5l2 .2 3.9-.3a378 378 0 0 1 72 6.3 499 499 0 0 1 35 7.6c6 1.6 6.8 6 3.1 11-2.7 3.7-6.3 2.9-10 2.3-20.4-3.3-40.7-7.3-61.3-9.7-16.2-2-32.5-2.2-48.8-2.7-9.6-.2-19.2.7-29.8 1.1l10 42.6 24.8-5.4 80.5-18.4c7.2-1.7 11.2.5 12.3 6.3 1 5.2-2 8.8-8.5 10-16.3 2.9-32.8 5.3-49 8.7-17.9 3.8-35.6 8.5-53.9 13l15.3 31.7 2.7-1c15.8-7.8 31.4-15.8 47.3-23.3 19.9-9.3 40-18.3 60-27.5 3.7-1.6 7.3-1.7 9.6 2.3 2.4 4 .4 7.3-2.6 10-1 1-2.4 1.8-3.8 2.4-13.7 6-27.5 12-41 18.3-20.8 9.7-41.5 19.7-62.4 29.7 44 64 132.5 122.3 247.9 113.7 83.7-6.3 151-45.6 202.8-112.6-4.6-2-8.2-3.3-11.6-5-30.6-16.9-62-32-94.4-45.2-5.1-2.1-7.5-6.4-6-10.5 1.4-3.9 5.8-5.6 11-3.7 3.7 1.3 7.2 3.3 10.8 5l81.1 38.2c5.8 2.8 11.4 6.1 17.4 9.4l16.1-33c-24.5-5.2-47.8-10.3-71.2-15-10.4-2-21-3.2-31.6-5-5.8-1-7.8-3.3-7.6-7.9.2-5.2 1.9-6.8 7.9-7.4a23 23 0 0 1 6.4.2c22.5 4.2 45 8.5 67.5 13 10.8 2.3 21.5 5.2 33 8l11.2-42.3c-3-.3-5.1-.6-7.2-.6-15.2.3-30.4 0-45.5 1.1-19.5 1.6-39 4-58.4 6.7-10.7 1.4-21.2 4.3-31.8 6.3-6.4 1.1-11-3.5-8.7-9.3.8-2.3 3.9-4.6 6.4-5.3 6.2-1.8 12.6-3 19-4 20.2-2.9 40.4-5.8 60.6-8.3 10.1-1.2 20.3-1.7 31.3-2.3h36c0-10.7.5-22-.2-33.4-.5-8.5-2.4-16.9-3.8-26.2a194.8 194.8 0 0 0-17.5-56.5v-.8l-12.7-25.5c-.4-.6-1-1.1-1.5-1.6 0 0 .2 0 .1-.6M527.7 108.8c.6-1.2 1.1-2.5 2.2-4.1.1-1.2.2-2.4 1-4l1-8.5-4-11.8A26.6 26.6 0 0 0 500 68.2a26.2 26.2 0 0 0-21.3 17.2c-2 5.3-4.4 10.7 0 16.5l.2.6s.2.2 0 .9c2.5 6.8 7.8 10.7 13.4 14.7 10.6 7.5 28 4.6 34.8-8.9l.5-.4m-228.1 317 2.4-2.8h.7c2.2-2 4.4-4 6.7-5.8 7.3-5.5 14.6-11 22.2-16.2 3.6-2.5 3.3-4.6.5-7a234 234 0 0 0-12.5-9.7c-2.7-2-5.7-3.6-8.7-6-.6-.6-1-1.4-1.6-1.8-9.7-5.6-19.3-11.2-29-16.5-2.7-1.4-4.4.6-4.6 3.2l-.4 14.4-.2 1.5c-.2 8.8-.6 17.5-.7 26.2 0 3.9.5 7.8.7 12.5 0 1 .2 2 0 4l2.3 25.9 2 .3c6.4-7.4 13-14.7 19.5-22 0 0 0-.2.7-.2m433.3.5c-.2-1.6-.7-3.2-.7-4.7l.8-33.6-1.2-23.3c-.1-2.8-.8-6.2-4.7-3.9-15 9.1-31 16.8-44.2 28.9l-7.6 7.2 40.6 34 14.5 16.3 2.3-14c0-.7 0-1.5.3-3-.1-1-.2-2-.1-4m31-124.3c-1.5-2.4-2.6-5.1-4.4-7.2-5.6-6.7-16.6-8.7-27.1-4-13 6-26 12.1-38.1 19.5-17.7 10.8-34.6 22.7-51.8 34.3-1.1.8-2.5 3.3-2 4 2 4 4.6 7.5 6.9 12 3.6 9.4 7 19 14.8 26.2 3.8-3 7.5-5.8 11-8.8 19.4-16.6 42.1-27.5 64.8-38.4 4.2-2 6.6-.6 7.2 4.2 1.4 11.5 3.3 23 3.6 34.6a592 592 0 0 1-3.7 85.9c-.2 1.7 0 3.8.8 5.3 4.9 8.6 10 17 14.8 25.7 2 3.6 3.3 7.6 5 11.4l1.7-.2c1.9-9.2 4.7-18.3 5.6-27.5a1019 1019 0 0 0 5.2-65.4c.6-15.3-.3-30.6-1.8-45.8-1.4-14.5-4.1-28.9-6.7-43.2-1.4-7.4-3.8-14.6-5.9-22.6m-399 57.6c1-2.4 2-5 3.3-7.2 1.8-3 1.2-5.2-1.5-7.2-3.8-3-7.4-6.2-11.5-8.7-21.5-13.3-43-26.6-65-39.3a89 89 0 0 0-22.5-8.6c-10.6-2.6-18.8 2.6-22.4 13.3-2.7 10.8-6.2 21.5-8.1 32.5a263.9 263.9 0 0 0-4.9 39.8c-.5 24.3-.1 48.6.8 72.8.5 15.5 2.5 30.9 4.1 46.3.5 4.5 1.9 8.9 3.2 14.8l8.4-14.4 12.6-21c2.4-4 4.7-7.8 3.6-12.9-1.3-6.6-2.2-13.3-2.7-20a916 916 0 0 1-1.7-33.3c-.7-20.3-.3-40.6 3.1-60.7.8-4.9 3.2-5.7 7.3-4.2l12.1 4.6a246 246 0 0 1 63.4 40.6c.8.7 1.9 1.1 3.6 2.2l14.7-29.4m271.5 15 .5-.4c-.3 0-.5 0-.2-.6-6.7-14-13.2-28.2-20.2-42-12.8-25.6-26-51-38.9-76.6-7.1-14.2-13.5-28.9-20.8-43a5055 5055 0 0 0-40.4-76c-.8-1.3-3.2-2.3-5-2.4-3.7-.2-7.8 1.3-11.1.2-4-1.2-5.5.1-7.1 3-.8 1.4-1.8 2.8-2.5 4.2-18.7 36.2-37.6 72.3-56 108.6-19.2 37.6-38 75.5-57 113.3-2 4.2-3.8 8.5-5.7 12.7 14.8-3.8 28.7-8.1 42.9-11a710 710 0 0 1 56.6-9.4c15.1-1.8 30.5-1.9 45.7-2.3 21.8-.6 43.3 1.8 64.7 5.4 11.8 2 23.3 5.5 34.9 8.8 6.6 1.9 13 4.6 19.6 7.4z"/><path fill="#FEFEFE" d="M735 627.6c-10.1.8-20.3 1.3-30.4 2.5-20.2 2.5-40.4 5.4-60.6 8.4-6.4.9-12.8 2-19 3.9-2.5.7-5.6 3-6.4 5.3-2.2 5.8 2.3 10.4 8.7 9.3 10.6-2 21.1-4.9 31.8-6.3 19.4-2.7 38.9-5.1 58.4-6.7 15.1-1.1 30.3-.8 45.5-1 2-.1 4.1.2 7.2.5L759 685.8c-11.4-2.8-22.1-5.7-33-8-22.4-4.5-44.9-8.8-67.4-13a23 23 0 0 0-6.4-.2c-6 .6-7.7 2.2-8 7.4-.1 4.6 1.9 7 7.7 8 10.5 1.7 21.2 2.9 31.6 5 23.4 4.6 46.7 9.7 71.2 15a1934 1934 0 0 0-16 33c-6.1-3.4-11.7-6.7-17.5-9.5l-81-38.2c-3.7-1.7-7.2-3.7-11-5-5-1.9-9.5-.2-11 3.7-1.4 4.1 1 8.4 6 10.5a909.5 909.5 0 0 1 94.5 45.1c3.4 1.8 7 3.1 11.6 5.1-51.7 67-119.1 106.3-202.8 112.6-115.4 8.6-203.8-49.8-247.9-113.7 20.9-10 41.6-20 62.4-29.7 13.5-6.4 27.3-12.2 41-18.3 1.4-.6 2.8-1.4 3.8-2.3 3-2.8 5-6 2.6-10.1-2.3-4-6-4-9.6-2.3-20 9.2-40.1 18.2-60 27.5-15.9 7.5-31.5 15.5-47.3 23.2-.7.4-1.5.6-2.7 1L254.4 701c18.3-4.4 36-9.1 54-12.9 16.1-3.4 32.6-5.8 49-8.7 6.4-1.2 9.3-4.8 8.4-10-1-5.8-5-8-12.3-6.3-26.8 6-53.6 12.2-80.5 18.4l-24.8 5.4-10-42.6c10.6-.4 20.2-1.3 29.8-1 16.3.4 32.6.7 48.8 2.6 20.6 2.4 41 6.4 61.4 9.7 3.6.6 7.2 1.4 10-2.3 3.6-5 2.8-9.4-3.3-11a499 499 0 0 0-35-7.6 388.5 388.5 0 0 0-72.7-6.4l-3.5.1c-.5 0-1 0-2-.3 1.5-4.8 3.5-9.2 5.6-13.7l.3-.1c.8-1 1.3-2 1.7-3h.3c.7-.7 1.1-1.4 1.5-2.1h.3c1.5-1.7 2.7-3.3 3.8-5h.3c2.5-2.3 4.6-4.6 6.7-7-.1 0 0 .2.3.1.8-.6 1.3-1.3 1.8-2 0 0 0 .2.3.1l3-2.3c6.7-4 13.2-7.9 19.5-12 2-1.3 3.6-3 5.5-4.4 5 6.2 9.3 12.7 14.6 18.1 34 35 82 25 107.2-6.5a112 112 0 0 0 16.9-33.8l4.1-1.3c2.1-.5 4-1 5.6-1.6a90.1 90.1 0 0 1 51.4-5.4c8.3 1.6 16.4 4 24.8 6.3 1 2.6 1.8 5 2.4 7.3a75 75 0 0 0 31 43.7 67.8 67.8 0 0 0 74.7 3.7 106 106 0 0 0 30.2-29.3L701 585v.4c1.7 1.2 3.2 2 4.8 2.9 0 0-.1 0 0 .4 3.4 3 6.8 5.7 10.2 8.4v.2c.3.4.7.6 1 .7v.4c.9 1.1 1.9 2 3 2.6 0-.1-.2.2-.2.5a63 63 0 0 0 5.2 5.4v.4c3 5.3 6 10.3 9 15.3l-.2.4c.4 1.8.8 3.1 1.3 4.5m-187.2 2.6c.5-2 1.1-4.2 1.4-6.3 1.7-12.8-6.6-24.7-19.3-25.4-16.5-.9-33-.3-49.5 0a19 19 0 0 0-8.8 2.9c-11.8 7-15.3 23.2-7.8 35.5a63.8 63.8 0 0 0 23.6 23.1c8.3 4.6 9.6 10.8 8.5 18.8l-.9 4.8c-3.5 22.7-32.7 34.4-50.9 20.4a46.1 46.1 0 0 1-15.4-25c-1.8-6.1-8-7.2-12.4-2.6-3.2 3.3-2.3 7.2-1.5 10.8 6.9 30.8 45.5 53.5 78.5 26.5 4.2-3.3 7.2-8 10.7-12.2 3.6 4 5.8 6.7 8.4 9 14.6 13.5 31.6 18.7 50.6 12 18.8-6.6 29.4-21.1 33.9-40.2 1.4-6.1-2.2-9.4-8.5-8.9-4.3.4-5.5 3.7-6.7 7-2 5-3.3 10.3-6 14.7a34.2 34.2 0 0 1-38.8 13.2 35 35 0 0 1-24.1-32.2c0-7.4 1.8-11.9 8.4-16a62.8 62.8 0 0 0 26.6-29.9z"/><path fill="#FDFEFE" d="M636 374c-6.5-2.4-12.8-5.1-19.4-7-11.6-3.3-23.1-6.8-35-8.8-21.3-3.6-42.8-6-64.6-5.4-15.2.4-30.6.5-45.7 2.3a710 710 0 0 0-56.6 9.4c-14.2 2.9-28.1 7.2-42.9 11 2-4.2 3.6-8.5 5.7-12.7 19-37.8 37.8-75.7 57-113.3 18.4-36.3 37.3-72.4 56-108.6.7-1.4 1.7-2.8 2.5-4.2 1.6-2.9 3.1-4.2 7-3 3.4 1 7.5-.4 11.3-.2 1.7.1 4.1 1 4.9 2.4a5055 5055 0 0 1 40.4 76c7.3 14.1 13.7 28.8 20.8 43 12.9 25.6 26 51 38.9 76.5 7 14 13.5 28 20 42.4l-.3.2m-205.8-43.3c.4-5.6.7-11.2-4.5-14.9-4.5-3.1-8.8-1.4-12.7 0l-8.7-1.1v35h7.8v-9.5c10.2 3.2 15.2.7 18-9.5m39.9-1.2v20.2h8v-9.2c9.2 2 13.8.7 16.8-4.7 2.8-5.2 2-15.2-1.7-18.9-4.8-4.6-9.7-2.7-14.5.5l.2-1.6-8.8-1v14.7m-17.2-8.8c-4 4-7.7 8.2-12 11.6-3.1 2.5-4.4 4.7-3 8.4h25.9v-7H449c2.8-2.2 4.9-3.8 6.8-5.6 5.9-5.3 7.8-11.3 5.5-16.3-2.3-4.6-8.7-6.7-16.4-5.3-7.3 1.4-7.3 1.4-6.5 9.1 2.3-.8 4.6-2 7-2.4 5.6-1.2 8 1 7.3 7.5m66.6-5.8h-15.7v6.3c13.2-1.8 13.2-1.8 14.7 2.6-4 .8-8.2 1.2-12.1 2.4a7.6 7.6 0 0 0-4.8 9.6c1.4 4.6 5.5 7 10 5.7 2.3-.6 4.3-1.7 6.4-2.6l-.2 1.2 8.7 1.3v-17.6c.1-4.5-1.7-7.6-7-8.9m64 22.2c3.5 4.9-1.6 8.5-2 12.5 6 1.8 9.5-.2 10.8-6.4.4-2.2 1.8-4.2 2.6-6.4l8.6-21.3c-6-1.7-9 .1-10 5.7-.7 3.4-2.3 6.6-3.9 11l-6.3-17h-8l8.1 21.9M566 321.2l6.9-.4v-5.6l-7.5-.4v-6.5H558c-.6 3.1 1.5 7.3-3.8 7.2v5.5c4.2-1.3 3.7 1.6 3.6 4.2 0 3.3 0 6.6.2 10 .2 3.3 1.8 5.7 5.4 6 3.1.3 6.3 0 9.5 0v-5.6c-6.8.9-7.5.3-7.5-6.2 0-2.5 0-5 .6-8.2m-31.9 8.3v11.3h8v-9.2c0-9.2 0-9.2 9.3-9.7.3 0 .6-.3.6-.3v-7.2l-9.5 3.6c-1.3-5.5-5.3-2.1-8.4-2.9v14.4z"/><path fill="#FB9003" d="M364.3 360 350 388.9c-1.7-1-2.8-1.5-3.6-2.2a246 246 0 0 0-63.4-40.6l-12.1-4.6c-4-1.5-6.5-.7-7.3 4.2a300.7 300.7 0 0 0-3 60.7c.3 11.1.8 22.3 1.6 33.4.5 6.6 1.4 13.3 2.7 19.9 1 5.1-1.2 9-3.6 12.9l-12.6 21-8.4 14.4c-1.3-6-2.7-10.3-3.2-14.8-1.6-15.4-3.6-30.8-4.1-46.3a1228 1228 0 0 1-.8-72.8c.3-13.3 2.5-26.7 4.9-39.8 2-11 5.4-21.7 8.8-32.7 10.5-.1 20 .8 29 4.7a399.4 399.4 0 0 1 63 34.5c9 6 17.6 12.8 26.4 19.2zM764 302.5c2 7.4 4.3 14.6 5.7 22 2.6 14.3 5.3 28.7 6.7 43.2 1.5 15.2 2.4 30.5 1.8 45.8a1019 1019 0 0 1-5.2 65.4c-1 9.2-3.7 18.3-5.6 27.5l-1.7.2c-1.7-3.8-3-7.8-5-11.4-4.7-8.6-10-17-14.8-25.7-.8-1.5-1-3.6-.8-5.3a592 592 0 0 0 3.7-85.9c-.3-11.5-2.2-23-3.6-34.6-.6-4.8-3-6.2-7.2-4.2-22.7 11-45.4 21.8-64.8 38.4-3.5 3-7.2 5.8-11 8.8-7.8-7.1-11.2-16.8-14.7-27 1.3-2.2 2.2-3.9 3.6-4.9 21-15 42.3-29.4 65.6-40.6 14.7-7 29.2-15.8 46.8-11.6h.5z"/><path fill="#803228" d="M485.7 369.3c13.2-.4 26.3-.8 39.9-.7.4 5 .5 9.6.5 14.5.2 1.2.5 2 .5 3.1-.4 6.5-.4 12.7-.6 19.3v54.3c0 9.3-6.3 17.7-15.1 19.7-3.5.8-7.3.4-10.9.5l-.2-.3-3.9-2c-.3-.5-.6-.6-1-1l-6-6-3-10.2v-74.7l-.1-1.3.1-5c0-3.7 0-7-.2-10.2zm-58.9 8.5c7.7-1.6 15.4-3.3 23.2-4.7 4.1-.8 8.4-1.1 12.8-1 .3 4.8.4 8.8.5 13.2l-.2 2.2c0 11.5-.3 22.6 0 33.7 0 6.8-.2 13.5-3.5 20l-1.7 1.5c-5.5 5.6-12 8-19.5 5.4-7.5-2.7-11.3-9-11.4-18v-10.5l-.2-12.1.1-18.7v-11zm123.1-8.7c11.2 1.5 22.5 3 34 5.1l.4 13.9-.1 3.2-.1 34.1-.1 3c-.9 6.5-1.3 13.4-7.7 17.4a16 16 0 0 1-16.1 1 18 18 0 0 1-10.1-16.5c-.2-10.8-.2-21.6-.2-32.8V369z"/><path fill="#FDFCF6" d="M763.9 302.2c0 .4-.3.5-.4.4-17.6-4.2-32.1 4.6-46.8 11.6a439.8 439.8 0 0 0-65.6 40.6c-1.4 1-2.3 2.7-3.5 4.5a81.2 81.2 0 0 1-7.2-10.7c-.4-.8 1-3.3 2.1-4.1 17.2-11.6 34.1-23.5 51.8-34.3a355.3 355.3 0 0 1 38-19.4c10.6-4.8 21.6-2.8 27.2 3.9 1.8 2.1 2.9 4.8 4.4 7.5zm-399.4 57.5c-9-6.1-17.5-13-26.6-18.9a399.4 399.4 0 0 0-63-34.5 74.1 74.1 0 0 0-28.7-5c2.6-10.2 10.8-15.4 21.4-12.8a89 89 0 0 1 22.5 8.6c22 12.7 43.5 26 65 39.3 4.1 2.5 7.7 5.8 11.5 8.7 2.7 2 3.3 4.2 1.5 7.2-1.4 2.3-2.3 4.8-3.6 7.4z"/><path fill="#CA4B11" d="m715.5 430.4-40.2-33.5 7.6-7.2c13.1-12 29.1-19.8 44.2-28.9 3.9-2.3 4.6 1 4.7 3.9.5 7.8.8 15.5.9 23.5a28 28 0 0 1-1.7-5.5c-1.3-2.2-2.6-4-4.4-6.5l-2.3 5.4-5.2-3.2-.1 2.6h-.4c-3.5.7-5.6 2-6.2 5.7-.2 1.9-2 3.5-3 5.3l-1-.7-1 10.2-4.7 2 4.9 17.9 2.8-1.5c1.4 2 2.2 4.2 3.6 5 2.6 1.2 2.8 2.8 2 5.1l-.5.4z"/><path fill="#FCFCFC" d="M584.4 387.7c-.2-4.2-.3-8.5-.3-13.2 9 2 18.3 3.8 27 6.8 10.4 3.6 21 7.2 30.5 12.4 11.2 6.2 23.4 11.3 32.2 21.4 2 2.2 4.3 4 6.2 6.4-2 .4-3.6.6-5.2.5l-11.1-1.4c-1.6-.3-3.2-1-4.8-1.5v-.4c-5-3-10.1-5.8-15.5-8.6l-39.8-17.7c-1.7-.7-3.8-.7-6-1.2-.8 0-1.2 0-1.8-.3-4-1.3-7.7-2.3-11.4-3.2zm-158-9.9c.5 2.8.5 5.6.2 8.9-9 2.8-17.6 5-26 7.6-2.5.8-4.5 3-6.9 4.6l-1 .2c-4.8 2.3-9.2 4.6-13.8 7-.2.2-.5.3-1 .2a85.9 85.9 0 0 0-8.4 4.5c-3 1.6-5.7 3-8.7 4.4l-22 11c-2-.3-3.6-.8-5.2-.6-4.3.6-8.6 1.5-13 2.3a215.9 215.9 0 0 1 105.8-50z"/><path fill="#F8A41B" d="M752 514.7c8 17 13.2 35 16 54.2l-.2 1.5c-1.3-.1-2.5-.3-3.7-.8 3.4-5.4 1.3-11.1-4.2-11.8-.4.3-.7.8-1 1.2h-.2c-.8-1-1.2-2-1.5-3h-.5c-.4-1-.5-2-.6-3.1-7.8 0-4.2-8-7.3-11.5-.3-.3 1-2 1.5-3.1l-3.6-.7a29.5 29.5 0 0 0-9.5-20.8c-1-1-3-2.8-2.7-3.2 1.9-3.4 1.4-5.3-2.6-6 2.1-3-2.3-1.4-2.5-3.6-.3-3.5-1.8-7-3.2-10.5-1-2.2-2.3-4.4-4-6-4.9-4.5-11.2-7.7-14.5-13-3-4.6-6.4-5.4-10.5-6.7l.7-4-1.3.4c-1.2-2-2.3-4.1-3.2-6.3 1-.4 1.9-.6 2.8-.6 2.8 1.4 6.3 2 8 4 2.8 3.7 3.8 8.8 9.4 10.3 1.5.4 2.4 2.6 3.7 4l3.8 4 1 .9-1.3 1 5 7.2 1.1-4.2c5.7 5.4 11 10.3 16.1 15.3l-4 3 .6 1 4.6-.7-1.4 5.2 3.5-.8c-1.7 5 1 4.7 4 4.1v.5l-1.6 4.6 3.3-2m-31.5-30.3-.1.2s.2 0 .1-.2z"/><path fill="#F4A026" d="M239.3 567c0-.4 0-1 .3-2s.4-1.4.4-1.9c2.8-16.6 7.6-32.6 15.3-48.1l7.2-1.4-.1-1.2h-3l-.6-1 9.2-7.4-1.8-3.8c2.6-1.5 5.3-2.8 8-4.2 1-.6 2-1.3 3.2-1.8 1.6.6 2.8 2.4 3.9-.7 1-2.8 3.3-5.2 5.5-8.5l-1-2c2.3 0 4.2 0 6.3.3 0 1.1.2 2.2-.3 2.8-1.9 2.5-4.4 4.6-5.9 7.2-3.8 6.9-7.3 14-11.3 21.9l-1-3.8c-3.4 3-.5 9.1-6 11.7-.8.3-4.6 3.3-3.2 7.4.5 1.4-4.5 4.3-4.3 6.3.6 5.7-4 7.2-6 10.3.2 2.3.7 5.5-.6 6.5-2.6 2.3-6.2 3.6-9.3 5.2l-3 9c-.5 1.4-.8 2.8-1.5 4.3l-1.3-.1c0-.5 0-1 .3-2 .4-1.3.5-2.1.6-3z"/><path fill="#EE5608" d="M275.6 378.5c-.2-.3-.3-.6.2-1.4 1-3 1.6-5.6 2.6-8.1.9.7 1.7 1.3 2 2.1.8 1.9.8 5.2 2 5.6 5.2 1.8 6.3 7.1 9.6 10.4 1 .9 1.8 1.9 2.9 2.7l11.9 9.2-1.1.4.3.3c.3-.2.7-.5 1.3-.7 1.1.2 2.3.1 2.6.6 2.7 4.2 2.4 8.8 1 13.7-3.3 3.2-8.6 4.2-8.9 9.7h-.4a23 23 0 0 0-2.7 2.8l-.4.1c-3 .8-5.3 1.2-7 4.3-1.6 3-4.9 5.2-7.5 7.4l-1.4-2.5-.7.5c.7.8 1.4 1.6 2 2.7-2.6 2.4-5 2.6-5.7-.8-.8-3.7-.8-7.6-.9-11.6.4-1.5.5-2.8.6-4.2 0-.2 0-.5.2-.8 2.1-1.8 4.2-3.2 5.8-5 2-2.2 4-4.5 5.5-7 2-3.6 9-5.3 4-11.2l4.3-3c-3.7-2.5-8.3-3.9-10-7-2.8-5-7-5.7-11.7-7.1a42 42 0 0 0-.4-2.1m1.9 0z"/><path fill="#E46B0B" d="M479 102.3c0-.1-.2-.3-.2-1 0-2.6.2-4.4.5-6.3.8.7 1.2 1.4 1.6 2h.5c7.8 2 15.2 4 22.8 6.3 2.2 2 4 4.7 6.1 5 5.6.9 11.3.7 17 1a24.2 24.2 0 0 1-34.9 8.8c-5.6-4-11-8-13.2-15.1l.2-.7h-.4z"/><path fill="#EE5608" d="m731 383 1.7 5.7c0 11.1-.3 22-.5 32.9 0 1.5.5 3.1.4 5.3-.2 1.8 0 2.9.1 4 0 .8 0 1.6-.4 2.7-1.3.7-2.3 1-3.3 1-2-5.4-2.9-10.5-.5-14.5l-12.9-4.7c1.6-1.2 2.5-1.8 3.7-2.4.6-.4 1-.7 1.2-1l-.6-.5c-.3.5-.6 1-1.3 1.5-8-2.5-3.6-7.8-2.3-13l-3.3 2.5-.8-.7 2.9-3.7c0 .2.2.3.3.3-.2-.1-.3-.3-.3-.8 1.8-2.1 4.7-3.7 5.3-5.9 1.6-5.7 6.7-6.2 10.6-8.7m-2.5 42.6s0-.1 0 0z"/><path fill="#FDFCF6" d="M479.2 84.8c3.6-9.8 11.3-15 21-16.6 11.4-1.9 21 2.4 27.6 12.9-4.5 3.1-9 7.4-14.5 3.4-7.3-5.4-13.8-3.5-20.5 1.1-7.1 5-7.3 4.8-13.6-.8z"/><path fill="#F7D46F" d="M708 446a131.1 131.1 0 0 1 25.6 33.5c-3.3-.7-6.3-1.8-9.4-3l-.6 1.2-1.6-1 3-4.2c-2.4-.7-6.1-1-8.8-2.7-3.4-2.4-4.2-7.2-9.2-9-3.5-1.1-6-5-9-7.8v-.3c-2.2-2.3-4.2-4.4-6.5-6-2.3-1.8-4.9-3.2-7.5-5-1.4-1.1-2.7-2-4.2-2.8-.2 0-.6 0-.7-.4l-15-13.5c0-.1.2-.3.6-.2a169 169 0 0 1 10.3 5.6c3 2.8 5.5 6.2 8.9 7.5 3.5 1.4 6.3 5.1 11.4 3.5 2.1-.6 7.2 1.4 7.8 3.1 1.2 4.1 2.8 2.5 4.8 1.5z"/><path fill="#FC6506" d="M276 381c4.7 1 9 1.7 11.7 6.8 1.7 3 6.3 4.4 10 6.8l-4.3 3.1c5 6-2 7.6-4 11.1-1.6 2.6-3.4 5-5.5 7.1-1.6 1.8-3.7 3.2-6 5h-2.5c-.1-1-.2-2.1 0-3.8.6-1.5 1.2-2.4 1.2-3.4l-.5-32.7z"/><path fill="#DE761A" d="M238.1 572.2c.6-.2 1-.2 1.6.2 0 3.7-.6 6.9-.7 10.1 0 12.2 0 24.3-.2 36.5h.5c1.6 1 2.8 2.1 4.1 3.4v-4.6l6.3-1.2c1.4 4.6 8-1 9.7 4.4.4 1.3 1.4 2.3 2.6 4.1 3.5-.7 7.8-1.1 10.4-5.6 1.2-2 3.2-3.5 4.9-5.2-2 4.5-4.1 9-6 13.7-11.1.3-22.3.3-34.7.3a193.8 193.8 0 0 1 1.5-56.1z"/><path fill="#F7C040" d="M684.2 442c2.4 1.5 5 2.9 7.3 4.6 2.3 1.7 4.3 3.8 6.3 6.1 0 .4.1.3.2.3 3 2.7 5.5 6.7 9 7.9 5 1.7 5.8 6.5 9.2 8.9 2.7 1.8 6.4 2 8.9 2.7l-3 4.1c.4.4 1 .7 1.5 1l.6-1c3 1 6 2.2 9.5 3.3.4 0 .4 0 .4.2.2.5.4.7.7.7 0 0 .3.3.3.9.4 1 .9 1.6 1.3 2.1 0 0-.2 0-.2.3a7 7 0 0 0 1.6 1.8c4.2 8.3 8.4 16.7 12.6 25.4-3 1-5.8 1.2-4-3.8l-3.6.8 1.4-5.2-4.6.7-.6-1 4-3-16-15.3-1.2 4.2-5-7.3 1.4-1a194.5 194.5 0 0 1-5-5c-1.2-1.2-2.1-3.4-3.6-3.8-5.6-1.5-6.6-6.6-9.5-10.3-1.6-2-5-2.6-7.7-4.2-.3-1-.6-1.5-1-2-4.1-4.4-8.3-8.7-12.1-13.1h.9z"/><path fill="#F7D46F" d="m277.1 494-3 2c-2.6 1.4-5.3 2.7-7.9 4.2l1.8 3.8-9.2 7.5.6 1h3v1l-6.8 1.3c6-11.8 12.4-23.7 19.4-35.8 1-1 1.3-1.7 1.6-2.4 0 0 0 .2.3.2 2-1.4 3.3-3 5-4.1 1.2-1 2.7-1.5 5-2.7 1.2-1.3 3.1-3.5 5-5.9a7 7 0 0 1 2 2.2c-2.4 4.3-4.7 8.2-7.2 12.3l3.2 2.5c-10-1.8-9.4 7.5-14.1 10.5l1.3 2.5z"/><path fill="#FDFCF6" d="M549.4 369c.5 5 .5 10 0 15.4-8-.2-15.7-.9-23.3-1.6v-14.2c7.6-.1 15.3.1 23.3.5z"/><path fill="#FBEDAC" d="m294 466-2-1.9c-2 2.4-4 4.6-5 6-2.4 1.1-4 1.6-5.1 2.6-1.7 1.2-3 2.7-5 4 5.5-7.8 11.3-15.7 17.4-23.2 3.4-4.3 7.4-8 11.5-11.9 3 .2 5.6.3 8.2.6l.4.2c-.1-.1-.3-.3-.4-.8l-.4-2c2.9-1.1 5.1-2.4 7.5-3 1.6-.3 3.3.5 5 1a27.5 27.5 0 0 0-12.2 13.2h-.3l-.8.1c-.5 0-.6 0-1-.3-4.2-.9-7.1-.3-8.5 4.3-.8 2.6-2.1 5.8-6.3 5.6-.6 0-1.4 2.9-2.3 4.6-.5.3-.7.5-.7.8z"/><path fill="#FB9003" d="m504 103-22.6-6h-.4l-1.6-2.3c1-1.2 2.3-2 3.7-2.4 3.2.2 6.1.2 9 .1 3.3 0 6.8-.7 6.6 4.4 1.9.1 3.8-.3 5.1.4 3.8 2.2 7.3 1.7 10.8-.2 4.9-2.7 9.6-5.5 14.7-8l2.5 4c-.3 2.5-.6 5-1.6 8-2.1.5-3.6 1-5 1-2 0-3.8-1-5.6-.8-5.2.4-10.4 1.2-15.6 1.9z"/><path fill="#DE761A" d="m764 570 3.8.4.2-1c1.3 8.1 3.2 16.5 3.7 25 .7 11.3.2 22.7.2 33.4h-36.5a8.4 8.4 0 0 1-1.4-4.5c2.6.8 4.6 2.3 6.8 2.6 5.3.7 10.8 1 16.1 1 4.3-.1 8.5-1.2 12.2-1.8.4-5.5 1-10.2.8-14.8-.3-8.6 1.5-17.3-3.3-25.7-1.5-2.6-1.2-6.1-5.4-6.7.7-2.8 1.2-5.4 2-7.9h.8m3.5 9.6s0-.1 0 0m-1-3s0-.1 0 0z"/><path fill="#FDFEFE" d="m463.3 385-.2-12.5a312 312 0 0 1 22.2-3.2c.5 3.3.6 6.5.2 10.3-7.7 2-15 3.7-22.2 5.3z"/><path fill="#F7C040" d="M483 92c-1.3.8-2.6 1.5-4 2.7l-.2 6.3c-4.4-5-2-10.3.2-15.9 6.5 5.3 6.7 5.4 13.8.5 6.7-4.6 13.2-6.5 20.5-1.1 5.5 4 10-.3 14.6-3.1 1.5 3.4 2.8 7 4 11.2-.8-.9-1.6-2-2.7-3.9-2.4-1-4.4-2-6.5-1.8-4.5.2-9 1.3-13.4 1.6-8.9.7-18-1-26.3 3.5z"/><path fill="#CA4B11" d="M302.4 423c0-5.5 5.2-6.5 8.8-9.8 5.6-4.2 10.6-8 14.2-10.9l-2.3-8.4h-.4a492.6 492.6 0 0 1-11.7-15c3 1.8 6 3.4 8.6 5.4 4.3 3.1 8.4 6.4 12.5 9.7 2.8 2.4 3.1 4.5-.5 7a600.7 600.7 0 0 0-22.2 16.2c-2.3 1.8-4.5 3.8-7 5.7z"/><path fill="#FBEDAC" d="M707.8 445.7c-2 1.3-3.5 3-4.7-1.2-.6-1.7-5.7-3.7-7.8-3-5 1.5-7.9-2.2-11.4-3.6-3.4-1.3-5.8-4.7-8.4-7.5 1.8-.3 4-.8 5 0 3.9 3.6 7.1 1.4 10.5-.5 5.6 5.2 11.1 10.3 16.8 15.8z"/><path fill="#F9F2CF" d="M690.9 429.6c-3.3 2.2-6.5 4.4-10.4.9-1-.9-3.2-.4-5.2-.4-3.7-1.7-7-3.5-10.7-5.6l-5.7-5.3c1.6.4 3.2 1.1 4.8 1.4l11 1.4c1.7.1 3.3 0 5.3-.2.4 0 .8 0 1 .3l.5.5.4-.3c3 2.3 5.9 4.7 9 7.3zM326 437.3c-1.6-.2-3.3-1-4.9-.6-2.4.5-4.6 1.8-7.5 3l.4 2v.3c-2.6 0-5.3-.2-8-.6a30 30 0 0 1 5.7-5.3c5.2-.5 7.6-3 8.2-7.5 0-.3.1-.5.6-.7 4.5-.8 8.8-1.7 13.1-2.3 1.6-.2 3.2.3 5 .8a45.4 45.4 0 0 0-12.5 11z"/><path fill="#CA4B11" d="M278 369c-.6 2.5-1.2 5.1-2.2 8a106 106 0 0 1 0-13.8c0-2.6 1.8-4.6 4.5-3.2 9.7 5.3 19.3 11 29 16.5.6.4 1 1.2 1.6 2.1.1.4 0 .4-.3.4l-22.9-12-3.1 1c-2.4.4-5.1-3.2-6.6 1m4.5-4.4-3.3-2.4-.6 1.3c1.3.6 2.6 1.2 4 1.1zm-7.2 56.7c.7-.3 1.4-.3 2.3-.2.3 0 .3.4 0 .8l-.6 4.1c.4 3.9.4 7.8 1.2 11.5.8 3.4 3.1 3.2 5.6.8l.2-.3c2.6-2.6 6-4.8 7.6-7.8 1.6-3 4-3.5 6.9-4.3-6.2 7.4-12.7 14.7-19.2 22.1l-2-.3-2-26.4z"/><path fill="#FC6506" d="M504.2 103.3c5-.9 10.2-1.7 15.4-2.1 1.8-.2 3.7.8 5.5.8 1.5 0 3-.5 4.8-.8.2 1 .1 2.3-.6 3.8a18 18 0 0 0-2.1 4.2c-5.6-.2-11.3 0-16.9-.9-2.1-.3-4-3-6-5z"/><path fill="#CA4B11" d="m729 435 3.3-1c-.4 4-1 8-2 13.2l-14.6-16.5c-.2-.3.1-.5.6-.6 2.6 1.5 5 2.9 6.6 4.9 2.3 3 4 3 6.1 0zm-453-54.4.6 33.1c0 1-.6 1.9-1.1 3a70 70 0 0 1-1-11.4c0-8.7.4-17.4.9-26.5.4.2.5.8.6 1.8z"/><path fill="#FCFCFC" d="M319.6 428.8c-.3 4.2-2.7 6.8-7.6 7.2a66 66 0 0 1 7.6-7.2z"/><path fill="#F7C040" d="M752 514.5a14 14 0 0 1-3.3 2.2l1.5-4.6c.6.5 1.1 1.3 1.7 2.4z"/><path fill="#CA4B11" d="M299.2 425.8c.5-1 1.3-1.9 2.4-2.8-.4 1-1.2 1.9-2.4 2.8z"/><path fill="#E46B0B" d="M527.5 109c.2-1.1.7-2.4 1.5-3.8a12 12 0 0 1-1.5 3.8z"/><path fill="#DE761A" d="M274 628.4c.7-.1 1.6-.2 2.7-.1-.7.1-1.7.2-2.8.1z"/><path fill="#CA4B11" d="M732.8 430.6c-.2-.8-.4-2-.3-3.3.3.8.4 1.9.3 3.3z"/><path fill="#FBEDAC" d="M276.3 476.7c0 .6-.3 1.4-1 2.2 0-.7.4-1.4 1-2.2z"/><path fill="#DE761A" d="M239 567.3c.2.6 0 1.4-.2 2.4 0-.6 0-1.4.3-2.4z"/><path fill="#F7D46F" d="M737.8 485.6c-.6-.2-1.1-.7-1.6-1.6.6.3 1 .8 1.6 1.6zm-1.4-2.1c-.4-.2-.9-.7-1.2-1.6.4.1.8.7 1.2 1.6z"/><path fill="#DE761A" d="M239.8 563.3c.2.3.1.7 0 1.4-.2-.3-.2-.8 0-1.4z"/><path fill="#FCFCFC" d="M681.7 422.2c.2 0-.2.4-.2.4l-.4-.4c0-.1.4-.2.6 0z"/><path fill="#F7C040" d="M479 102.4c0-.1.4 0 .4 0l-.1.2c-.1 0-.3 0-.3-.2z"/><path fill="#F7D46F" d="M734.8 480.6c-.3.2-.5 0-.6-.5.2-.2.5 0 .6.5z"/><path fill="#FDFEFE" d="M636 374h.7c-.2.2-.4.3-.6.2l-.1-.1z"/><path fill="#EA6028" d="m763 570-1.8 8c4.2.5 3.9 4 5.4 6.6 4.8 8.4 3 17 3.3 25.7.2 4.6-.4 9.3-.8 14.8-3.7.6-7.9 1.7-12.2 1.8-5.3 0-10.8-.3-16.1-1-2.2-.3-4.2-1.8-6.7-3-.3-.2-.3-.2-.2-.7-1.9-6-3-12.1-9-15.1v-.4a67 67 0 0 0-5.2-5.4l.2-.5-3-2.7v-.2l-1-.8v-.3c-3.4-3-6.9-5.7-10.3-8.4v-.4c-1.5-1.2-3.1-2-4.8-2.9v-.3c-4.1-3-8.1-5.8-12-8.4 3.4-10 7.1-19.7 7.6-30.5.5-14.5-2-28.2-8-41.2-1.7-4-2.8-9.5-8.4-10.7v-.3c-1.6-4-3.4-7.4-8-7.7v-.3c-3-2.8-6-5.3-9-7.7v-.3c-.8-.7-1.5-1-2.2-1.4v-.3c-6.7-3.6-13-7.9-20-9.7a73 73 0 0 0-35.3-.6 79.7 79.7 0 0 0-36.9 19.3c-1.3 1.2-1.7 3.3-2.6 5h-.3a53.6 53.6 0 0 0-17.5 28.3c-2.6 9.5-3.5 19.5-5.1 29.3-1.1-.6-2-1.7-2.9-1.7-3.1-.1-6.3.5-9.4.1-7.2-.8-14.4-2.2-21.6-3-13.6-1.4-26.4 3-39.3 6.7-1.8.5-3.3 2.2-4.9 3.4-1.1.4-2.2.9-3.7.8 1.9-13.6 1-26.5-3.2-39.1-6.5-19.8-20.6-32.7-38.6-42a66 66 0 0 0-45.7-6 72.9 72.9 0 0 0-46.8 32.4 71 71 0 0 0-11 59.1c1.7 6.2 4.3 12 6.4 18-1.7 1.6-3.3 3.4-5.3 4.7-6.3 4.1-12.8 8-19.9 12-1.4.8-2.2 1.6-3 2.4 0 0 0-.2-.3-.2-.8.7-1.2 1.4-1.7 2h-.4c-2.4 2.3-4.5 4.6-6.6 7l-.4-.1a61 61 0 0 0-3.7 5h-.4l-1.4 2.2h-.4c-.7 1-1.2 2-1.6 3-1.7 1.7-3.7 3.2-5 5.2-2.5 4.5-6.8 4.9-10.3 5.6-1.2-1.8-2.2-2.8-2.6-4-1.7-5.5-8.3 0-9.7-4.5l-6.3 1.2v4.6a39.6 39.6 0 0 0-4-3.4h-.4v-36.5c0-3.2.7-6.4 1-10 .4-1.9.7-3.3 1.2-4.7l3-9c3-1.6 6.7-2.9 9.3-5.2 1.3-1 .8-4.2.6-6.5 2-3 6.6-4.6 6-10.3-.2-2 4.8-5 4.3-6.3-1.4-4 2.4-7 3.2-7.4 5.5-2.6 2.6-8.6 6-11.7l1 3.8c4-8 7.5-15 11.3-21.9 1.5-2.6 4-4.7 5.9-7.2.5-.6.3-1.7.3-3.2.3-1.3.6-2 1.3-2.8 2-.9 4.2-1.3 5.4-2.7 3.6-4 7-8.3 10.3-12.6 5.5-6.8 10.8-13.8 19.3-17.8 8-5 15.9-10 23.6-15.2 3.3-2.1 6.1-4.9 9.5-7 3-1.9 6.5-3.4 9.9-4.7 3.7-1.3 7.6-2.1 11.4-3.3 1-.3 1.9-.9 2.5-1.6 3.5-4.5 9.2-5 13.8-6.1 6-1.6 13-.2 19.5 0 .7 0 1.9.4 2 1 1.1 3.2 6 4.7 4.5 9.3l1.8.7v10c.2 9 4 15.3 11.5 18 7.6 2.6 14 .2 19.5-5.4.5-.5 1-1 2-1.6 1.8-3 3.8-5.7 4-8.5.3-11.8 0-23.7.1-35.6 0-1.7.7-3.4 1.3-5.2a7 7 0 0 1 2.6 1.6c.7 3.8 1.4 7.2 1.8 10.8.7 1.7 1.6 3.2 2.5 4.6 1-1 2.3-2 3-3.2 1-2 1-4.7 4.2-5.3.8-.2 1.1-2.8 1.6-4.6l1-6c1.2-1.5 2.5-2.5 3.8-3.6 0 8.6.1 17.3-.1 26.8-.4 16-.6 31.1-.6 46.4 0 .5.5 1.1.8 1.7 1 3 2 6.2 3 10 1.2 3.6 2.4 6.2 6.1 6 .3 0 .6.2 1 1a15 15 0 0 0 4 2l.3.3c13.8 2.7 23.2-2 25.8-14 1.7-7.8 1.3-16.1 1.7-24.2.2-4.7.2-9.3 0-14l-1.7-23c0-6.2.1-12.4.8-18.8 1.8.5 3.8 1 4 1.9 1 4.2 1.4 8.5 1.8 13-.6 10.7-1.8 21.3 4.3 32.3 0-5.6-.5-9.8.1-13.8.6-3.7 1.4-8 3.7-10.5 2.3-2.6 4.9-4.6 5.3-8.5 1.3-1.1 2.6-2 3.8-2.8 0 10.8 0 21.6.2 32.4 0 7.4 3.8 13.3 10 16.6a16 16 0 0 0 16.2-1.1c6.4-4 6.8-10.9 7.7-17.5 0-.8 0-1.6.3-3.2.5-11.9.6-23 1-34.3a55 55 0 0 1 8.8 2.5l1.8 2c0 2 .2 3.7.3 5.3l6.2.4c.7 0 1.1 0 1.7.3 4.2 2.7 8 6.5 12.2 7.2a68 68 0 0 1 28.2 13.6 252 252 0 0 0 25.3 16.7c.9.5 2 .5 3.3.7-.8 3.5.3 6 3.8 7.5a36 36 0 0 1 6.4 3.7c3.4 2.3 6.6 4.8 9.9 7.3l3.4 6.2 1.3-.5-.7 4c4.1 1.4 7.6 2.2 10.5 6.8 3.3 5.3 9.6 8.5 14.4 13a34.6 34.6 0 0 1 7.3 16.5c.2 2.2 4.6.7 2.5 3.6 4 .7 4.5 2.6 2.6 6-.3.4 1.6 2.3 2.7 3.2a29.5 29.5 0 0 1 9.5 20.8l3.6.7c-.6 1.1-1.8 2.8-1.5 3.1 3.1 3.5-.5 11.6 7.3 11.5.1 1 .2 2 .6 3l.3.1c.5 1 .9 2 1.7 3.3 1 1.6 1.8 2.8 2.7 4.5l-1.5 1.6 3.1 4.6m-499.6 53.5s.1 0 0 0m-23-7s.1-.1 0 0z"/><path fill="#050505" d="M547.7 630.6a62.6 62.6 0 0 1-26.5 29.5c-6.6 4.1-8.4 8.6-8.4 16a34.4 34.4 0 0 0 62.8 19c2.8-4.4 4.2-9.7 6-14.7 1.3-3.3 2.5-6.6 6.8-7 6.3-.5 10 2.8 8.5 9-4.5 19-15 33.5-33.9 40.1-19 6.7-36 1.5-50.6-12-2.6-2.3-4.8-5-8.4-9-3.5 4.1-6.5 8.9-10.7 12.2-33 27-71.6 4.3-78.5-26.5-.8-3.6-1.7-7.5 1.5-10.8 4.4-4.6 10.6-3.5 12.4 2.6a46.1 46.1 0 0 0 15.4 25c18.2 14 47.4 2.3 51-20.4l.8-4.8c1-8-.2-14.2-8.5-18.8a64.3 64.3 0 0 1-23.6-23.1c-7.5-12.3-4-28.5 7.8-35.5a19 19 0 0 1 8.8-3c16.5-.2 33-.8 49.5.1 12.7.7 21 12.6 19.3 25.4-.3 2.1-1 4.2-1.5 6.7m-38.4 16.8h.8a83 83 0 0 1 5.7-4.1s.2-.2.8-.2c.8-.7 1.5-1.4 3-2.3 2-2 4.2-4 7-6.1l2.6-4s0-.2.6-.5c.8-3.9 3-8.1 2-11.6-1.2-4.2-6-5-10.5-4.8-8.2.4-16.5.7-25.6.8-2.8-.3-5.5-.7-8.3-.8-7.8-.3-10.3 2-11.4 10.7 1.3 2.7 2 6.2 4 8.1 5.3 4.9 11.3 9 17 13.4l.2.7c2.9 1.3 4.1 6.9 8.8 3.3h.7c.9-.8 1.8-1.6 2.6-2.6zm-186.7-70.8c-2.3-6.3-5-12.1-6.5-18.3a71 71 0 0 1 10.9-59 72.9 72.9 0 0 1 46.8-32.5 66 66 0 0 1 45.7 6c18 9.3 32 22.2 38.6 42a80.3 80.3 0 0 1 2.8 39.1 100.5 100.5 0 0 1-16.5 34.3c-25.2 31.5-73.2 41.4-107.2 6.5-5.3-5.4-9.6-11.9-14.6-18.1M445 555.2c7.2-20.5-3.2-50.8-24.7-64.5-16.4-10.5-33.9-13.8-51.8-6.7a59.9 59.9 0 0 0-22 98.5 56 56 0 0 0 85.3-2.6c5.7-6.8 8.7-15.9 13.2-24.7zm240.2 22.4a99.6 99.6 0 0 1-29.9 29.5 67.8 67.8 0 0 1-74.8-3.7 75 75 0 0 1-30.9-43.7c-.6-2.4-1.5-4.7-2.3-7.8a73.7 73.7 0 0 1 12.6-53l6.1-8.9.3-.1c3.5-2.8 6.4-5.7 9.7-8.2 19.4-14.8 41-20.6 64.9-13.6 6.8 2 13.2 5.4 19.8 8.3 0 0 .2 0 .3.2l2 1.4.2.3c3 2.8 5.9 5.3 8.8 7.7l.1.3c2.7 2.8 5.3 5.3 7.9 7.7v.4l2.6 4.6c8 12.6 12 26.4 12 41.2a72.3 72.3 0 0 1-9.4 37.4m-115.7-66.5a56.6 56.6 0 0 0 1 59.3c12.2 20.4 30.9 31.7 54.6 30.1 38.6-2.6 62.3-40.6 52-76.7a56.7 56.7 0 0 0-38.5-40.5 59.1 59.1 0 0 0-69 27.8z"/><path fill="#DE761A" d="M565.7 490c-1.7 3-3.8 6-5.8 8.9a74 74 0 0 0-12.8 52.7c-8.3-1.6-16.4-4-24.7-5.5a90.1 90.1 0 0 0-51.4 5.4c-1.7.7-3.5 1.1-5.6 1.6 1.2-1.2 2.7-3 4.5-3.4 12.9-3.7 25.7-8.1 39.3-6.7 7.2.8 14.4 2.2 21.6 3 3 .4 6.3-.2 9.4-.1 1 0 1.8 1 2.9 1.7 1.6-9.8 2.5-19.8 5-29.3 3-10.8 8.4-20.7 17.6-28.3zm119.8 87.8a76.2 76.2 0 0 0 9.2-37.6c-.1-14.8-4-28.6-12-41.2-1-1.4-1.8-2.9-2.7-4.6 5.6.8 6.7 6.3 8.5 10.3 5.8 13 8.4 26.7 7.9 41.2-.5 10.8-4.2 20.5-7.5 30.5 3.8 2.6 7.8 5.4 12 8.5-5-2.1-10-4.5-15.4-7.1zm39.4 29.6c6 2.7 7.1 8.8 9 14.8-3-4.5-6-9.5-9-14.8zm-19.3-18.6c3.4 2.3 6.9 5 10.3 8-3.4-2.3-6.8-5-10.3-8zm-420.1 15.3c1.8-2.3 4-4.6 6.4-7-1.8 2.4-4 4.7-6.4 7zm434.2-2.5a31 31 0 0 1 5.2 5.1 31 31 0 0 1-5.2-5.1zM281.4 609c.8-1.5 2-3.2 3.5-4.9-.8 1.7-2 3.3-3.5 5zM701 585.5c1.5.5 3 1.3 4.7 2.6-1.6-.5-3.1-1.4-4.7-2.6zm15.8 13a8 8 0 0 1 3 2.4 9 9 0 0 1-3-2.4zm-422.2-3.2a7 7 0 0 1 2.3-2.2c-.4.7-1.2 1.4-2.3 2.2zm-17 18.9c.1-1 .6-1.9 1.4-3-.1 1-.6 2-1.4 3zm14.9-17c.2-.6.6-1.3 1.5-2a4 4 0 0 1-1.5 2zm-12.9 14.1c.1-.7.5-1.4 1.2-2.2 0 .7-.5 1.4-1.2 2.2zm436.3-13.9c.2-.1.5 0 1 .5-.3.1-.7 0-1-.5z"/><path fill="#030303" d="M430.1 331c-2.8 9.9-7.8 12.4-18 9.2v9.5h-7.8v-35l8.7 1.1c4-1.4 8.2-3.1 12.7 0 5.2 3.7 5 9.3 4.4 15.3m-7.6-2.8c-.2-1.8.2-4.3-.8-5.2a12.5 12.5 0 0 0-6.6-3c-2.8-.3-3.3 2-3.1 4.4v11.3c8.3.4 9.2-.2 10.5-7.5zm47.5.7v-14.2l8.8 1-.2 1.6c4.8-3.2 9.7-5.1 14.5-.5 3.7 3.7 4.5 13.7 1.7 18.9-3 5.4-7.6 6.7-16.8 4.7v9.2h-8V329m8-.5v7.5h5.2c3.8-.5 5.9-4.4 5.3-9.7-.6-5.2-2.5-6.8-7-6.3-5.5.5-2.9 4.8-3.5 8.5z"/><path fill="#EC784C" d="M453 320.3c.5-6-1.9-8.3-7.6-7.1-2.3.4-4.6 1.6-7 2.4-.7-7.7-.7-7.7 6.6-9 7.7-1.5 14.1.6 16.4 5.2 2.3 5 .4 11-5.5 16.3l-6.8 5.7h14.6v7h-25.9c-1.4-3.8-.1-6 3-8.5 4.3-3.4 8-7.7 12.2-12z"/><path fill="#050505" d="M519.8 315c4.9 1.2 6.7 4.3 6.6 8.8v17.6c-3.2-.5-6-1-8.7-1.3l.2-1.2c-2 .9-4.1 2-6.3 2.6-4.6 1.3-8.7-1.1-10.1-5.7a7.6 7.6 0 0 1 4.8-9.6c3.9-1.2 8-1.6 12-2.4-1.4-4.4-1.4-4.4-14.6-2.6V315h16m-1 14.8c-1.4-.2-2.9-.8-4.1-.5-1.9.6-3.7 1.8-5.2 3-.3.3.6 3 1.1 3.2 2.2.3 4.6.4 6.5-.4 1-.4 1.2-2.9 1.7-5.3zm64.5 6.9c-2.8-7.3-5.4-14.2-8-21.5h8l6.3 17c1.6-4.4 3.2-7.6 3.9-11 1-5.6 4-7.4 10-5.7l-8.6 21.3c-.8 2.2-2.2 4.2-2.6 6.4-1.3 6.2-4.8 8.2-10.9 6.4.5-4 5.6-7.6 1.9-12.9z"/><path fill="#030303" d="M565.6 321.6c-.3 2.9-.3 5.3-.3 7.8 0 6.5.7 7 7.5 6.2v5.7c-3.2 0-6.4.2-9.5 0-3.6-.4-5.2-2.8-5.4-6.1-.2-3.4-.2-6.7-.2-10 0-2.6.6-5.5-3.6-4.2v-5.5c5.3 0 3.2-4 3.8-7.2h7.4v6.5l7.5.4v5.6c-2.4.1-4.6.3-7.2.8z"/><path d="M534 329v-14c3.1.8 7.1-2.6 8.4 3l9.5-3.7v7.2s-.3.3-.6.3c-9.3.5-9.3.5-9.3 9.7v9.2h-8V329z"/><path fill="#F8A41B" d="M533 401c-.7-4.3-1.1-8.6-2-12.8-.3-1-2.3-1.4-3.8-2.2-.6-.9-.9-1.7-1.1-2.9 7.6.4 15.3 1.1 23.3 1.8.5 4 .5 8 .5 12.6a16.2 16.2 0 0 1-4 3c-2.6-2.3-4.1-1.9-5.9.6-2.3 3.5-4.6 3.4-7 0z"/><path fill="#DE761A" d="M526 405.5c.7 7.2 1.3 15 1.8 22.6.2 4.7.2 9.3 0 14-.4 8 0 16.4-1.7 24.2-2.6 12-12 16.7-25.9 14 3.4-.4 7.2 0 10.7-.8a20 20 0 0 0 15-19.7l.1-54.3z"/><path fill="#FAB61E" d="M485.8 385.8c-1.3 1.4-2.6 2.4-4.2 3.9-4.2 3.8-8.5 5.8-13.7 3.3-.8-.4-1.6-.8-2.6-1.5a7.1 7.1 0 0 1-.8-3.7l21.2-3 .1 1z"/><path fill="#FBEDAC" d="M485.8 384.5c-7 1.3-14 2.3-21.4 3.1l-1.2-.6v-1.7c7.4-2 14.6-3.6 22.3-5.3.4 1.3.4 2.7.3 4.5z"/><path fill="#DE761A" d="M486 460.5c-.4-.1-1-.7-1-1.2l.6-46c.3 15.4.4 31 .4 47.2zm8.9 16.2c-3.6.5-4.8-2.1-5.9-5.4 2 1.5 3.8 3.3 5.9 5.4zm4.9 3a11 11 0 0 1-3.7-1.4c1.1.1 2.3.6 3.7 1.4z"/><path fill="#FB9003" d="M427 419.6c-.7.2-1.9-.2-1.9-.2 1.5-4.6-3.4-6-4.5-9.4-.1-.5-1.3-.9-2-1-6.5-.1-13.4-1.5-19.5 0-4.6 1.3-10.3 1.7-13.8 6.2a6 6 0 0 1-2.5 1.6c-3.8 1.2-7.7 2-11.4 3.3a55.7 55.7 0 0 0-10 4.8c-3.3 2-6.1 4.8-9.4 7-7.7 5-15.5 10-23.6 14.7 4.3-4.6 8.8-9 13.7-13 2.6-2 6-3.2 9-4.7l.7-1.4-3.7-.9c2.7-1.7 4.9-2 6.4-3 5.1-3.7 9.7-8.5 17-6.7.3 0 .8-.1 1-.3 2.5-5.1 7.6-7.4 11.5-11 .2 0 .2-.2.5-.4 4.6 3.3 8.2 2.6 10.7-2.4l3.2 1.6 13.7-4.9 4.2.5c-.4-5.2 3.9-5.3 6.4-5.6 2.6-.3 3.6 2.4 3.4 5.3-.2 2.7.4 5.5.7 8.2l.1 11.7z"/><path fill="#FAB61E" d="M426.8 407.5c-.3-2.3-.9-5.1-.7-7.8.2-3-.8-5.6-3.4-5.3-2.5.3-6.8.4-6.4 5.6l-4.2-.5-13.7 5-3.2-1.7c-2.5 5-6 5.7-10.8 2.3-.3 0-.5-.2-.3-.5l9-5.5h1c11.3-3.3 22-6.6 32.8-10v18.4z"/><path fill="#FBEDAC" d="M427 388.8c-10.9 3.7-21.6 7-32.7 10.2 1.8-1.7 3.8-4 6.2-4.7 8.5-2.7 17-4.8 26-7.2.4.4.5.9.4 1.7z"/><path fill="#DE761A" d="M463.1 387.5c.4-.4.6-.2 1 .2l1 3.8c-.4 2-1 3.8-1 5.5-.1 11.9.1 23.8-.3 35.6 0 2.8-2 5.5-3.5 8.3a48.4 48.4 0 0 0 2.8-19.7c-.3-11.1 0-22.2 0-33.7zM585 391c-.1 11-.2 22.2-.6 33.7-.3-10.8-.3-21.9 0-33.4.2-.5.6-.4.6-.4z"/><path fill="#F7D46F" d="M585.3 390.8c-.3.1-.7 0-.8 0-.3-.8-.3-1.6-.2-2.7 3.8.5 7.5 1.5 11.4 3-.6 1-1.2 1.5-1.8 1.9-2.7-.8-5.5-1.6-8.6-2.2z"/><path fill="#E8530A" d="M729 434.6c-2 3.5-3.8 3.3-6.1.4-1.6-2-4-3.4-6.4-5 .3-2.3.1-4-2.5-5.2-1.4-.7-2.2-2.9-3.6-5l-2.8 1.6-5-18 4.8-1.9 1-10.2 1 .7c1-1.8 2.8-3.4 3-5.3.6-3.6 2.7-5 6.2-5.3l1.4 2.1.8-.9-1.8-1.6.1-2.6 5.2 3.2 2.3-5.4 4.4 6.5c-3.9 2.8-9 3.3-10.6 9-.6 2.2-3.5 3.8-5.3 6l-.1.3-2.8 3.8.8.7 3.3-2.5c-1.3 5.2-5.7 10.5 2.3 13h.4l-3.4 2.4 12.9 4.7c-2.4 4-1.5 9.1.5 14.5m-23.1-25.9-.3-.1c.2.1.3.3.4 1l1 .7c0-.3.2-.6.3-.8-.4-.2-.9-.3-1.4-.8m11.6-16.3.1-.7c0 .2-.2.3-.1.7z"/><path fill="#FAB61E" d="M594 393.3c.5-.7 1.1-1.2 1.9-1.9.5-.2 1-.2 1.7.2 3 1.4 5.5 2.6 8.1 3.5 17.5 6 33.8 14.2 48 25.7-3-.8-5.7-1.5-8.1-2.8-5.4-2.9-10.4-6.5-15.9-9-8.2-3.5-16.7-6.3-25.3-9.5l-.5 1.5c-.4 0-.8 0-1.6-.4a801.3 801.3 0 0 0-8.2-7.3z"/><path fill="#F7D46F" d="M654.1 420.8a165 165 0 0 0-48.4-25.7c-2.6-.9-5-2-7.7-3.4 1.8 0 3.9 0 5.6.7a2557 2557 0 0 1 40 18 789 789 0 0 0 15.3 8.7c1.7 1.7 3.5 3.3 5.3 5.3.1.3 0 .5-.5.5a160.6 160.6 0 0 1-9.6-4.1z"/><path fill="#F9F2CF" d="M658.9 418.7c-5-2.3-10-5.1-15-8.2 4.9 2.4 10 5.2 15 8.2z"/><path fill="#FAB61E" d="M384.1 405.1v.6c-4 3.5-9.1 5.8-11.7 10.9 0 .2-.6.3-.9.3-7.3-1.8-11.9 3-17 6.7-1.5 1-3.7 1.3-6.4 3l3.7.9-.8 1.4c-3 1.5-6.3 2.6-8.9 4.7-5 4-9.4 8.4-14 13-8.2 4.4-13.5 11.4-19 18.2-3.4 4.3-6.7 8.6-10.3 12.6-1.2 1.4-3.4 1.8-5.4 2.3.2-2.5.7-4.6 1.3-7 3.8-2 7.7-4.4 8.5-10 1-1.7 1.8-4.1 2.8-4.2 5.1-.3 5-4.4 6-7.6l.8.2c.6 0 .8 0 1-.2h.5c1.8-.3 3.5-.3 4.4-1.1 3.3-2.9 6.4-6 9.4-9.2a97 97 0 0 1 23.2-18.2c3.5-2 6.6-4.7 9.8-7.1 2.7-1.5 5.4-3 8.8-4.4 3.3-1.6 5.9-3 8.5-4.5l.8-.2 4.7-1.3.2.2M315 454.3l.5-.7-.8-.2c0 .3 0 .7.3 1z"/><path fill="#F7D46F" d="M360.8 415.2c-3 2.5-6 5.2-9.5 7.2a97 97 0 0 0-23.2 18.2 136 136 0 0 1-9.4 9.2c-1 .8-2.6.8-4.4 1 2-5.7 6.2-10 11.7-13.1 3.4-5 8-8.2 13-11.2a531 531 0 0 1 21.8-11.3z"/><path fill="#FBEDAC" d="M384.1 404.6c-1.6.7-3 1.1-4.7 1.5 4-2.4 8.5-4.7 13.3-7-2.5 1.8-5.4 3.5-8.6 5.5zm-6.1 1.7a48 48 0 0 1-7.8 4.4 48 48 0 0 1 7.8-4.4z"/><path fill="#FB9003" d="M604.1 401.3c0-1 .3-1.8.3-1.8 8.6 3.2 17.1 6 25.3 9.6 5.5 2.4 10.5 6 15.9 8.9 2.4 1.3 5.2 2 8.2 2.8a30.6 30.6 0 0 0 4.4 4.5c1.2 1 3.7 1.6 3.8 2.6.6 4 3.7 4.3 6.4 5.4 1.2.4 2.1 1.8 3.2 1.8 3.1.1 3.5 5.8 7.6 3.7 0 0 .4 0 .6.4-.8 3.8 1.7 2.6 3.2 2.8l12.4 13.1c.4.5.7 1 .8 1.7-1 .5-1.7.7-2.8 1-3.5-2.3-6.7-4.8-10.1-7.1a36 36 0 0 0-6.4-3.7c-3.5-1.5-4.6-4-3.8-7.5-1.2-.2-2.4-.2-3.3-.7a252 252 0 0 1-25.3-16.7 68 68 0 0 0-28.2-13.6c-4.3-.7-8-4.5-12.2-7.2zM763.3 570c-1.3-1.5-2.3-3-3.4-4.6l1.5-1.6c-1-1.7-1.7-2.9-2.4-4.5 0-.3 0-.3.2-.4l.9-.9c5.3.5 7.4 6.2 4 11.6-.2.4-.4.4-.8.4z"/><path fill="#EA6028" d="M760 557.8c-.1.5-.3.7-.8 1.1 0-.3.3-.8.7-1zm-3-1.8h.2-.2zm-36.4-71.5h-.2s.1-.1.2 0z"/><path fill="#F7C040" d="M303 463c-.6 5.3-4.5 7.6-8.3 9.7l-1.6 7-1.1 3c-2 .2-4 .2-6.3.2l1.1 2.1c-2.2 3.3-4.5 5.7-5.5 8.5-1.1 3-2.3 1.3-3.9.7-.8-1-1.7-2.6-1.6-2.6 4.7-3 4-12.3 14-10.5l-3.1-2.5c2.5-4 4.8-8 7.2-12.3.1-.7.3-1 1.2-1.2l7.9-2.1m-23.2 28.2-.4-.5c0 .2 0 .5.4.5z"/><path fill="#D34809" d="M278.4 369c1-4.2 3.8-.6 6-.7.3 1.4.4 2.4.4 3.4 1.2-.2 3.2-.1 3.4-.7.5-1.1 0-2.6-.2-4 7.4 4 14.8 8 22.6 12 4.2 5 8 10 12.1 15h.3l2.4 8.3c-3.6 2.8-8.6 6.7-14 10.6.9-4.5 1.2-9-1.5-13.3-.3-.5-1.5-.4-2.6-.6h-.3l-12.1-9.2-2.9-2.7c-3.3-3.3-4.4-8.6-9.6-10.4-1.2-.4-1.2-3.7-2-5.6-.3-.8-1.1-1.4-2-2.1z"/><path fill="#FC6506" d="M277.3 425.9a9 9 0 0 1 .4-3.8c.1 1 0 2.3-.4 3.8z"/><path fill="#CA4B11" d="m284 438-2.1-2.4.7-.5 1.4 2.5v.4z"/><path fill="#D34809" d="m307 399-1 .7-.3-.3 1-.4h.3z"/><path fill="#CA4B11" d="M277.5 378.5z"/><path fill="#FB9003" d="M481 97z"/><path fill="#E8530A" d="m719 413 1-1.5.5.5-1.2 1h-.3zm9.4 12.5zM715 398l.4.4c-.1 0-.2 0-.3-.3l-.1-.1z"/><path fill="#FAB61E" d="M679.1 438.5c-4 2.4-4.4-3.3-7.5-3.4-1 0-2-1.4-3.2-1.8-2.7-1-5.8-1.4-6.4-5.4-.1-1-2.6-1.6-3.8-2.6a31.6 31.6 0 0 1-4-4.1c3 1 6 2.4 9.4 3.8 5.4 4.4 10.4 8.8 15.5 13.5zm4.2 3.5c-1.8-.2-4.3 1-3.3-2.7a16 16 0 0 1 4 2.4c0 .3-.2.3-.7.3z"/><path fill="#EA6028" d="M239 619h-.2.2z"/><path fill="#F7D46F" d="M698 453h-.1c.1 0 .1 0 0 0zm-394.8 9.7c-2.7 1-5.1 1.6-8 2.3.4-1.6 1.2-4.5 1.8-4.5 4.2.2 5.5-3 6.3-5.6 1.4-4.6 4.3-5.2 8.4-4.3-.8 3.5-.6 7.6-5.7 8-1 0-1.8 2.4-2.8 4zm10.4-11.8c0 .1-.2.3-.5.2 0-.2.3-.2.5-.2z"/><path fill="#F9F2CF" d="m314 442 .4.4-.4-.2v-.2z"/><path fill="#FAB61E" d="M483.1 92.3c8.2-4.7 17.3-3 26.2-3.8 4.5-.3 9-1.4 13.4-1.6 2-.2 4.1.8 6.3 1.6-4.8 3-9.5 5.8-14.4 8.5-3.5 2-7 2.4-10.8.2-1.3-.7-3.2-.3-5-.4.1-5-3.4-4.5-6.6-4.4-3 0-6 .1-9-.1z"/><path fill="#EA6028" d="M767.4 579.5zm-.9-3s0 .1 0 0z"/><path fill="#D34809" d="M323 394z"/><path fill="#E8530A" d="M287.7 367c.4 1.4 1 2.9.5 4-.2.6-2.2.5-3.4.7v-3.4a9 9 0 0 1 2.9-1.3z"/><path fill="#D34809" d="M282.5 365c-1.3-.3-2.6-1-4-1.5l.7-1.3c1.1.8 2.2 1.6 3.3 2.7z"/><path fill="#DE761A" d="M532.7 401.3c2.7 3.2 5 3.3 7.3-.2 1.8-2.5 3.3-3 5.7-.3 0 3.8-2.6 5.8-4.9 8.4-2.3 2.6-3.1 6.8-3.7 10.5-.6 4-.1 8.2-.1 13.8-6.1-11-5-21.6-4.3-32.2zm128 74.7c-6.6-2.5-13-6-19.8-8-24-6.9-45.5-1-65 13.7-3.2 2.5-6.1 5.4-9.6 8.2.6-1.6 1-3.7 2.3-4.9a79.7 79.7 0 0 1 36.9-19.3 73 73 0 0 1 35.3.6c7 1.8 13.3 6.1 20 9.7z"/><path fill="#FB9003" d="M467.9 393.4c5.2 2.1 9.5 0 13.7-3.4a16 16 0 0 1-1 5.7c-5.5.8-7.6 5.2-10.6 8.3l-2.1-10.6z"/><path fill="#DE761A" d="M469.7 404.2c3.3-3.3 5.4-7.7 11-8.2-.2 1.5-.5 4.1-1.3 4.3-3.2.6-3.2 3.2-4.2 5.3-.7 1.2-2 2.2-3 3.2-1-1.4-1.8-2.9-2.5-4.6z"/><path fill="#FB9003" d="M595.9 395.4c2 1.4 4 3.1 6.1 5.2-1.7.2-3.4.1-5.8 0l-.3-5.2z"/><path fill="#DE761A" d="M680 493.7c-2.6-2.1-5.2-4.6-8-7.4 4.6 0 6.4 3.3 8 7.4zm-8-8c-3-2.1-5.8-4.6-8.8-7.4 2.8 2.1 5.8 4.6 8.8 7.4zm-9-8c-.6-.1-1.3-.5-2-1.1.5 0 1.2.4 2 1zM263.5 623.4zm-23-7s-.1 0 0 0z"/><path fill="#F2500D" d="M526 634.8c-2.2 2-4.3 4-7.2 6.1-1.4.8-2 1.5-2.8 2.2 0 0-.2.2-.7 0a51.9 51.9 0 0 0-6 4.4l-.3-.2c-1.2.9-2 1.8-3 2.8l-.3-.1a396 396 0 0 1-8.8-4v-.3a54 54 0 0 0-7.4-7c-4.6-3.1-6.7-7.2-5.2-11.8.8 0 1.3.1 1.7.5 1 .1 2-.1 3.3-.5a3 3 0 0 1 1.9.3c7 1 13.9 1.5 21-2.8l-12.1-3.8-.8-3.2c6.7-.5 13.1-1.2 19.5-1.3 3 0 6.6.8 9 2.5 4.3 3.1 1.3 7.9 1.3 12 0 0 .1.2-.3.3-1.3 1.4-2 2.7-2.8 4z"/><path fill="#F9F2CF" d="m491 627-2-.2-3 .3-1.9-.4-7.8-3c.8-7.9 3.3-10.2 11-10 2.9.2 5.6.6 8.9 1.4 1.2 5.6 0 9.7-5.2 11.8z"/><path fill="#EA6028" d="M491.2 627.2c5-2.4 6.2-6.5 5.4-12 8.2-.7 16.5-1 24.7-1.4 4.5-.3 9.3.6 10.5 4.8 1 3.5-1.2 7.7-2.3 11.8-.4-4 2.6-8.7-1.7-11.8-2.4-1.7-6-2.5-9-2.5-6.4 0-12.8.8-19.5 1.3l.8 3.2 12.2 3.8c-7.2 4.3-14 3.9-21.1 2.8zm-15-3.2c2.5.6 5 1.5 7.6 2.7-1 4.8 1.1 8.9 5.7 12 2.7 2 5 4.4 7.5 7-5.7-4-11.7-8.2-17-13-2-2-2.7-5.5-3.8-8.6zm20.8 22.4c2.7 1 5.5 2.2 8.7 3.6-4.4 3.6-5.6-2-8.6-3.6zm12.7 1a46 46 0 0 1 5.5-4.3 34.8 34.8 0 0 1-5.5 4.3zm16.6-12.6c.5-1.2 1.2-2.5 2.4-3.8-.5 1.2-1.3 2.4-2.4 3.8zM506.4 650c.5-.9 1.4-1.8 2.6-2.7-.5 1-1.4 2-2.6 2.8zm9.9-6.9a7 7 0 0 1 2.2-2.1 7 7 0 0 1-2.2 2.1z"/><path fill="#FAFBFB" d="M444.7 555.6c-4.3 8.4-7.3 17.5-13 24.3a56 56 0 0 1-85.3 2.6 59.9 59.9 0 0 1 22-98.5 55 55 0 0 1 51.8 6.7c21.5 13.7 32 44 24.5 64.9m-93.6-8.2a37.3 37.3 0 0 0 35.8 30.9 40.2 40.2 0 0 0 40-40c.2-6.7-.2-13.1-4.4-19.1a46 46 0 0 0-31.7-19c-9-1.5-18.5-2.2-26.1 4.5C352 516 346 529.5 351 547.4z"/><path fill="#FCFCFC" d="M569.7 510.7a59 59 0 0 1 69-27.4 56.7 56.7 0 0 1 38.4 40.5c10.3 36-13.4 74.1-52 76.7-23.7 1.6-42.4-9.7-54.7-30a56.9 56.9 0 0 1-.7-59.8m88.1 39.3c.1-.8 0-1.7.3-2.5 2.8-14.7 1.5-28-12-37.6-9.5-6.9-19.3-12.4-31.7-9-1 .4-2 1-3.9 2l4 2.1c7.7 3.7 11 12.2 7.7 19.5-3.7 7.8-12.5 11.6-19.5 8.4-8.3-3.7-10.9-10.9-7.3-19.6.4-.8-.1-2-.3-3-1 .3-2.3.3-2.9 1a41 41 0 0 0-10.4 24.5 40.8 40.8 0 0 0 11 30 34.6 34.6 0 0 0 36.5 11.2c14.1-3.3 23.1-12.8 28.5-27z"/><path fill="#FAFBFB" d="M422.5 328.7c-1.3 6.9-2.2 7.5-10.5 7.1v-11.3c-.2-2.4.3-4.7 3.1-4.3 2.3.3 4.9 1.3 6.6 2.9 1 1 .6 3.4.8 5.6zm55.5-.7c.6-3.2-2-7.5 3.6-8 4.4-.5 6.3 1.1 6.9 6.3.6 5.3-1.5 9.2-5.3 9.7H478v-8z"/><path fill="#FDFCF6" d="M518.8 330.2c-.6 2-.7 4.4-1.8 4.8-1.9.8-4.3.7-6.5.4-.5-.1-1.4-2.9-1.1-3.2 1.5-1.2 3.3-2.4 5.2-3 1.2-.3 2.7.3 4.2 1z"/><path fill="#CA4B11" d="m719 381 1.8 1.6-.8 1c-.3-.7-.7-1.3-1-2.3v-.3zm-13 28 1.3.5-.3.8c-.4-.3-.7-.5-1-1v-.3z"/><path fill="#EE5608" d="m717.4 392.3.2-.6c0 .2 0 .5-.2.6z"/><path fill="#CA4B11" d="m706 409-.4-.4c.1 0 .2 0 .3.3l.1.1z"/><path fill="#F7D46F" d="M314.7 454.4v-1l.7.2c-.2.2-.3.5-.7.8z"/><path fill="#F4A026" d="M279.6 491.3c-.2-.1-.2-.4-.2-.6l.2.6z"/><path fill="#EA6028" d="M486 627.4c.8-.4 1.5-.5 2.6-.5a4 4 0 0 1-2.6.5z"/><path fill="#030303" d="M351 547c-5-17.5 1-31 13.7-42.3 7.6-6.7 17.2-6 26-4.5a46 46 0 0 1 31.8 19c4.2 6 4.6 12.4 4.5 19.2a40.2 40.2 0 0 1-40 39.9 37.5 37.5 0 0 1-36-31.3m16.3-39.3c-1.5 2-3.5 3.7-4.4 5.9-2.7 6.6 1.2 15.1 8 19 6.2 3.4 15.6 1 20.6-5.3a14.7 14.7 0 0 0-1.2-19.1c-5.7-6.3-13.3-6.6-23-.5zm290.3 42.7c-5.2 13.8-14.2 23.3-28.3 26.6-14 3.3-26.8.3-36.5-11.2a40.8 40.8 0 0 1-11-30 41 41 0 0 1 10.4-24.6c.6-.6 2-.6 3-1 0 1 .6 2.3.2 3.1-3.6 8.7-1 16 7.3 19.6 7 3.2 15.8-.6 19.5-8.4 3.4-7.3 0-15.8-7.8-19.5l-3.9-2.2c1.9-.9 2.9-1.5 4-1.8 12.3-3.5 22.1 2 31.6 8.9 13.5 9.6 14.8 23 12 37.6l-.5 2.9z"/><path fill="#FAFBFB" d="M367.6 507.5c9.4-5.9 17-5.6 22.7.7a14.6 14.6 0 0 1 1.2 19.1c-5 6.3-14.4 8.7-20.5 5.3-7-3.9-10.8-12.4-8.1-19 .9-2.2 3-4 4.7-6.1z"/></svg>