iss-ctrl 0.0.4 → 0.0.6

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 (462) hide show
  1. package/.claude/settings.local.json +8 -0
  2. package/.editorconfig +13 -0
  3. package/.eslintrc.json +90 -0
  4. package/README.md +17 -16
  5. package/angular.json +190 -0
  6. package/bun.lock +1866 -0
  7. package/package.json +47 -21
  8. package/projects/iss/.eslintrc.json +37 -0
  9. package/projects/iss/README.md +24 -0
  10. package/projects/iss/ng-package.json +11 -0
  11. package/projects/iss/package.json +17 -0
  12. package/projects/iss/src/components/controls/base/control-base.ts +75 -0
  13. package/projects/iss/src/components/controls/base/field-base.ts +84 -0
  14. package/projects/iss/src/components/controls/base/viewer-base.ts +6 -0
  15. package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +90 -0
  16. package/projects/iss/src/components/controls/checkbox/checkbox.field.ts +34 -0
  17. package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
  18. package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
  19. package/projects/iss/src/components/controls/chips/chips.field.ts +26 -0
  20. package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
  21. package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
  22. package/projects/iss/src/components/controls/date-picker/date-picker.field.ts +28 -0
  23. package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
  24. package/projects/iss/src/components/controls/date-range-picker/date-range-emission.ts +5 -0
  25. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
  26. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.field.ts +28 -0
  27. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
  28. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
  29. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.field.ts +31 -0
  30. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
  31. package/projects/iss/src/components/controls/file-picker/attachment.ts +6 -0
  32. package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
  33. package/projects/iss/src/components/controls/file-picker/droppable.ts +25 -0
  34. package/projects/iss/src/components/controls/file-picker/file-handler.ts +109 -0
  35. package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +189 -0
  36. package/projects/iss/src/components/controls/file-picker/file-picker.field.ts +117 -0
  37. package/projects/iss/src/components/controls/file-picker/file.ts +9 -0
  38. package/projects/iss/src/components/controls/file-picker/format-file-size.util.ts +9 -0
  39. package/projects/iss/src/components/controls/input/input.control.ts +95 -0
  40. package/projects/iss/src/components/controls/input/input.field.ts +31 -0
  41. package/projects/iss/src/components/controls/input/input.viewer.ts +10 -0
  42. package/projects/iss/src/components/controls/mobile/countries.const.ts +2051 -0
  43. package/projects/iss/src/components/controls/mobile/country.ts +11 -0
  44. package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
  45. package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
  46. package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
  47. package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
  48. package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
  49. package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
  50. package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
  51. package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
  52. package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
  53. package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
  54. package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
  55. package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
  56. package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
  57. package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
  58. package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
  59. package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
  60. package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
  61. package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
  62. package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
  63. package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
  64. package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
  65. package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
  66. package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
  67. package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
  68. package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
  69. package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
  70. package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
  71. package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
  72. package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
  73. package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
  74. package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
  75. package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
  76. package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
  77. package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
  78. package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
  79. package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
  80. package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
  81. package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
  82. package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
  83. package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
  84. package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
  85. package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
  86. package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
  87. package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
  88. package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
  89. package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
  90. package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
  91. package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
  92. package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
  93. package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
  94. package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
  95. package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
  96. package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
  97. package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
  98. package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
  99. package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
  100. package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
  101. package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
  102. package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
  103. package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
  104. package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
  105. package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
  106. package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
  107. package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
  108. package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
  109. package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
  110. package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
  111. package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
  112. package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
  113. package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
  114. package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
  115. package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
  116. package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
  117. package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
  118. package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
  119. package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
  120. package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
  121. package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
  122. package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
  123. package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
  124. package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
  125. package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
  126. package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
  127. package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
  128. package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
  129. package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
  130. package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
  131. package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
  132. package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
  133. package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
  134. package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
  135. package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
  136. package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
  137. package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
  138. package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
  139. package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
  140. package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
  141. package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
  142. package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
  143. package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
  144. package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
  145. package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
  146. package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
  147. package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
  148. package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
  149. package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
  150. package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
  151. package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
  152. package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
  153. package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
  154. package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
  155. package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
  156. package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
  157. package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
  158. package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
  159. package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
  160. package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
  161. package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
  162. package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
  163. package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
  164. package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
  165. package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
  166. package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
  167. package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
  168. package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
  169. package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
  170. package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
  171. package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
  172. package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
  173. package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
  174. package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
  175. package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
  176. package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
  177. package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
  178. package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
  179. package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
  180. package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
  181. package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
  182. package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
  183. package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
  184. package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
  185. package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
  186. package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
  187. package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
  188. package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
  189. package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
  190. package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
  191. package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
  192. package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
  193. package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
  194. package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
  195. package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
  196. package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
  197. package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
  198. package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
  199. package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
  200. package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
  201. package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
  202. package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
  203. package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
  204. package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
  205. package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
  206. package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
  207. package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
  208. package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
  209. package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
  210. package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
  211. package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
  212. package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
  213. package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
  214. package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
  215. package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
  216. package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
  217. package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
  218. package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
  219. package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
  220. package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
  221. package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
  222. package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
  223. package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
  224. package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
  225. package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
  226. package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
  227. package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
  228. package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
  229. package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
  230. package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
  231. package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
  232. package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
  233. package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
  234. package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
  235. package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
  236. package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
  237. package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
  238. package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
  239. package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
  240. package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
  241. package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
  242. package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
  243. package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
  244. package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
  245. package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
  246. package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
  247. package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
  248. package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
  249. package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
  250. package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
  251. package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
  252. package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
  253. package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
  254. package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
  255. package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
  256. package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
  257. package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
  258. package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
  259. package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
  260. package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
  261. package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
  262. package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
  263. package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
  264. package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
  265. package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
  266. package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
  267. package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
  268. package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
  269. package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
  270. package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
  271. package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
  272. package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
  273. package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
  274. package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
  275. package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
  276. package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
  277. package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
  278. package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
  279. package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
  280. package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
  281. package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
  282. package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
  283. package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
  284. package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
  285. package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
  286. package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
  287. package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
  288. package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
  289. package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
  290. package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
  291. package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
  292. package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
  293. package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
  294. package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
  295. package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
  296. package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
  297. package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
  298. package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
  299. package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
  300. package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
  301. package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
  302. package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
  303. package/projects/iss/src/components/controls/mobile/iso2.type.ts +244 -0
  304. package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
  305. package/projects/iss/src/components/controls/mobile/mobile.field.ts +28 -0
  306. package/projects/iss/src/components/controls/mobile/mobile.ts +12 -0
  307. package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +10 -0
  308. package/projects/iss/src/components/controls/mobile/phone.ts +96 -0
  309. package/projects/iss/src/components/controls/note/note.field.ts +25 -0
  310. package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
  311. package/projects/iss/src/components/controls/plate/plate-letter.ts +7 -0
  312. package/projects/iss/src/components/controls/plate/plate-letters.const.ts +21 -0
  313. package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
  314. package/projects/iss/src/components/controls/plate/plate.field.ts +36 -0
  315. package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
  316. package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
  317. package/projects/iss/src/components/controls/radio/radio.field.ts +38 -0
  318. package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
  319. package/projects/iss/src/components/controls/select/select.control.ts +242 -0
  320. package/projects/iss/src/components/controls/select/select.field.ts +32 -0
  321. package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
  322. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
  323. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.field.ts +31 -0
  324. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
  325. package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
  326. package/projects/iss/src/components/controls/table/table.field.ts +233 -0
  327. package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
  328. package/projects/iss/src/components/controls/textarea/textarea.field.ts +31 -0
  329. package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
  330. package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
  331. package/projects/iss/src/components/controls/time-picker/time-picker.field.ts +28 -0
  332. package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
  333. package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
  334. package/projects/iss/src/components/controls/toggle-button/toggle-button.field.ts +40 -0
  335. package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +14 -0
  336. package/projects/iss/src/components/controls/user-picker/employee.ts +73 -0
  337. package/projects/iss/src/components/controls/user-picker/user-picker.field.ts +124 -0
  338. package/projects/iss/src/components/outlet/component-outlet.ts +8 -0
  339. package/projects/iss/src/components/outlet/field-data-injector.ts +20 -0
  340. package/projects/iss/src/components/outlet/iss-form-group.ts +5 -0
  341. package/projects/iss/src/components/outlet/outlet.ts +154 -0
  342. package/projects/iss/src/components/shared/hints.component.ts +38 -0
  343. package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
  344. package/projects/iss/src/events/event-handler.ts +47 -0
  345. package/projects/iss/src/events/load/after-fetch.ts +29 -0
  346. package/projects/iss/src/events/load/load-event.ts +26 -0
  347. package/projects/iss/src/events/load/load-options-event.ts +49 -0
  348. package/projects/iss/src/events/load/load-value-event.ts +50 -0
  349. package/projects/iss/src/events/load/replace-api-keys.ts +55 -0
  350. package/projects/iss/src/events/set-value/get-value-to-set.ts +29 -0
  351. package/projects/iss/src/events/set-value/set-value-event.ts +33 -0
  352. package/projects/iss/src/events/show/show-event.ts +11 -0
  353. package/projects/iss/src/events/triggers/event-trigger-manager.ts +51 -0
  354. package/projects/iss/src/events/triggers/event-trigger.ts +30 -0
  355. package/projects/iss/src/events/triggers/trigger-based-on-json-value.ts +19 -0
  356. package/projects/iss/src/public-api.ts +131 -0
  357. package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
  358. package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
  359. package/projects/iss/src/shared/classes/field-config.ts +58 -0
  360. package/projects/iss/src/shared/classes/field-event.ts +28 -0
  361. package/projects/iss/src/shared/classes/field-option.ts +9 -0
  362. package/projects/iss/src/shared/classes/field-validation.ts +15 -0
  363. package/projects/iss/src/shared/classes/iss-field.ts +102 -0
  364. package/projects/iss/src/shared/constants/date-format.const.ts +18 -0
  365. package/projects/iss/src/shared/constants/placeholder-regex.const.ts +1 -0
  366. package/projects/iss/src/shared/constants/validation.const.ts +115 -0
  367. package/projects/iss/src/shared/constants/view-provider.const.ts +7 -0
  368. package/projects/iss/src/shared/indexes/components.index.ts +27 -0
  369. package/projects/iss/src/shared/indexes/services.index.ts +11 -0
  370. package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
  371. package/projects/iss/src/shared/interfaces/dto.ts +12 -0
  372. package/projects/iss/src/shared/interfaces/event-strategy.ts +27 -0
  373. package/projects/iss/src/shared/interfaces/event-trigger-fn.ts +7 -0
  374. package/projects/iss/src/shared/interfaces/hint.ts +8 -0
  375. package/projects/iss/src/shared/interfaces/i18n.ts +4 -0
  376. package/projects/iss/src/shared/interfaces/import.ts +3 -0
  377. package/projects/iss/src/shared/interfaces/option.ts +4 -0
  378. package/projects/iss/src/shared/interfaces/validation.ts +5 -0
  379. package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
  380. package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
  381. package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
  382. package/projects/iss/src/shared/services/form-engine.ts +130 -0
  383. package/projects/iss/src/shared/services/loader.ts +51 -0
  384. package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
  385. package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
  386. package/projects/iss/src/shared/tokens/field.token.ts +4 -0
  387. package/projects/iss/src/shared/tokens/host.token.ts +3 -0
  388. package/projects/iss/src/shared/tokens/language.token.ts +3 -0
  389. package/projects/iss/src/shared/tokens/user-search-api.token.ts +3 -0
  390. package/projects/iss/src/shared/types/validation.type.ts +3 -0
  391. package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
  392. package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
  393. package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
  394. package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
  395. package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
  396. package/projects/iss/src/upgrade.scss +68 -0
  397. package/projects/iss/src/validators/core.validator.ts +39 -0
  398. package/projects/iss/src/validators/file.validator.ts +100 -0
  399. package/projects/iss/src/validators/time.validator.ts +31 -0
  400. package/projects/iss/tsconfig.lib.json +13 -0
  401. package/projects/iss/tsconfig.lib.prod.json +9 -0
  402. package/projects/iss/tsconfig.spec.json +13 -0
  403. package/tsconfig.json +31 -0
  404. package/fesm2022/iss-ctrl-checkbox.wrapper-BVw3Pu1B.mjs +0 -81
  405. package/fesm2022/iss-ctrl-checkbox.wrapper-BVw3Pu1B.mjs.map +0 -1
  406. package/fesm2022/iss-ctrl-chips.wrapper-FY02vbu1.mjs +0 -83
  407. package/fesm2022/iss-ctrl-chips.wrapper-FY02vbu1.mjs.map +0 -1
  408. package/fesm2022/iss-ctrl-date-picker.wrapper-BTyZyhiU.mjs +0 -79
  409. package/fesm2022/iss-ctrl-date-picker.wrapper-BTyZyhiU.mjs.map +0 -1
  410. package/fesm2022/iss-ctrl-date-range-picker.wrapper-BW1pwRKg.mjs +0 -87
  411. package/fesm2022/iss-ctrl-date-range-picker.wrapper-BW1pwRKg.mjs.map +0 -1
  412. package/fesm2022/iss-ctrl-datetime-picker.wrapper-h0P56I6e.mjs +0 -83
  413. package/fesm2022/iss-ctrl-datetime-picker.wrapper-h0P56I6e.mjs.map +0 -1
  414. package/fesm2022/iss-ctrl-file-picker.wrapper-D_4dLsqz.mjs +0 -245
  415. package/fesm2022/iss-ctrl-file-picker.wrapper-D_4dLsqz.mjs.map +0 -1
  416. package/fesm2022/iss-ctrl-input.wrapper-dK79kSim.mjs +0 -83
  417. package/fesm2022/iss-ctrl-input.wrapper-dK79kSim.mjs.map +0 -1
  418. package/fesm2022/iss-ctrl-iss-ctrl-BhZGHw0A.mjs +0 -6024
  419. package/fesm2022/iss-ctrl-iss-ctrl-BhZGHw0A.mjs.map +0 -1
  420. package/fesm2022/iss-ctrl-load-event.service-D_O5gUmg.mjs +0 -62
  421. package/fesm2022/iss-ctrl-load-event.service-D_O5gUmg.mjs.map +0 -1
  422. package/fesm2022/iss-ctrl-load-options-event.service-CylOcoz4.mjs +0 -51
  423. package/fesm2022/iss-ctrl-load-options-event.service-CylOcoz4.mjs.map +0 -1
  424. package/fesm2022/iss-ctrl-load-value-event.service-BRz28bIm.mjs +0 -52
  425. package/fesm2022/iss-ctrl-load-value-event.service-BRz28bIm.mjs.map +0 -1
  426. package/fesm2022/iss-ctrl-mobile.wrapper-DOvO-cRi.mjs +0 -70
  427. package/fesm2022/iss-ctrl-mobile.wrapper-DOvO-cRi.mjs.map +0 -1
  428. package/fesm2022/iss-ctrl-note.wrapper-BW6WOulk.mjs +0 -43
  429. package/fesm2022/iss-ctrl-note.wrapper-BW6WOulk.mjs.map +0 -1
  430. package/fesm2022/iss-ctrl-plate-number.wrapper-B_NXePR_.mjs +0 -228
  431. package/fesm2022/iss-ctrl-plate-number.wrapper-B_NXePR_.mjs.map +0 -1
  432. package/fesm2022/iss-ctrl-radio.wrapper-BHXkIyX9.mjs +0 -84
  433. package/fesm2022/iss-ctrl-radio.wrapper-BHXkIyX9.mjs.map +0 -1
  434. package/fesm2022/iss-ctrl-replace-api-keys.service-DNns4c2U.mjs +0 -57
  435. package/fesm2022/iss-ctrl-replace-api-keys.service-DNns4c2U.mjs.map +0 -1
  436. package/fesm2022/iss-ctrl-select.viewer-Bd4flLOk.mjs +0 -30
  437. package/fesm2022/iss-ctrl-select.viewer-Bd4flLOk.mjs.map +0 -1
  438. package/fesm2022/iss-ctrl-select.wrapper-B78Aap__.mjs +0 -66
  439. package/fesm2022/iss-ctrl-select.wrapper-B78Aap__.mjs.map +0 -1
  440. package/fesm2022/iss-ctrl-set-value-event.service-Dc4bcaTp.mjs +0 -61
  441. package/fesm2022/iss-ctrl-set-value-event.service-Dc4bcaTp.mjs.map +0 -1
  442. package/fesm2022/iss-ctrl-show-event.service-Bg9VNotN.mjs +0 -18
  443. package/fesm2022/iss-ctrl-show-event.service-Bg9VNotN.mjs.map +0 -1
  444. package/fesm2022/iss-ctrl-slide-toggle.wrapper-CRTpag4Q.mjs +0 -75
  445. package/fesm2022/iss-ctrl-slide-toggle.wrapper-CRTpag4Q.mjs.map +0 -1
  446. package/fesm2022/iss-ctrl-table.wrapper-B1q8mXCB.mjs +0 -312
  447. package/fesm2022/iss-ctrl-table.wrapper-B1q8mXCB.mjs.map +0 -1
  448. package/fesm2022/iss-ctrl-textarea.wrapper-LR5_KMxK.mjs +0 -70
  449. package/fesm2022/iss-ctrl-textarea.wrapper-LR5_KMxK.mjs.map +0 -1
  450. package/fesm2022/iss-ctrl-time-picker.wrapper-D_td2M3Z.mjs +0 -67
  451. package/fesm2022/iss-ctrl-time-picker.wrapper-D_td2M3Z.mjs.map +0 -1
  452. package/fesm2022/iss-ctrl-toggle-button.wrapper-DxA2jL1S.mjs +0 -89
  453. package/fesm2022/iss-ctrl-toggle-button.wrapper-DxA2jL1S.mjs.map +0 -1
  454. package/fesm2022/iss-ctrl-trigger-based-on-json-value.service-CAnJWl6G.mjs +0 -24
  455. package/fesm2022/iss-ctrl-trigger-based-on-json-value.service-CAnJWl6G.mjs.map +0 -1
  456. package/fesm2022/iss-ctrl-user-picker.wrapper-UeA0dCqd.mjs +0 -190
  457. package/fesm2022/iss-ctrl-user-picker.wrapper-UeA0dCqd.mjs.map +0 -1
  458. package/fesm2022/iss-ctrl-viewer.base-BCFfZsDG.mjs +0 -17
  459. package/fesm2022/iss-ctrl-viewer.base-BCFfZsDG.mjs.map +0 -1
  460. package/fesm2022/iss-ctrl.mjs +0 -2
  461. package/fesm2022/iss-ctrl.mjs.map +0 -1
  462. package/types/iss-ctrl.d.ts +0 -712
@@ -0,0 +1,3625 @@
1
+ <svg viewBox="0 0 291.042 198.438" xmlns="http://www.w3.org/2000/svg">
2
+ <defs>
3
+ <clipPath clipPathUnits="userSpaceOnUse" id="a">
4
+ <path d="M0 2834.646h4251.968V0H0z" />
5
+ </clipPath>
6
+ <clipPath clipPathUnits="userSpaceOnUse" id="b">
7
+ <path d="M2066.45 1293.03h70.05v-186.09h-70.05z" />
8
+ </clipPath>
9
+ <clipPath clipPathUnits="userSpaceOnUse" id="c">
10
+ <path d="M2211.74 1676.68h255.01v-253.19h-255.01z" />
11
+ </clipPath>
12
+ <clipPath clipPathUnits="userSpaceOnUse" id="d">
13
+ <path d="M2205.52 1454.59h408.18v-390.65h-408.18z" />
14
+ </clipPath>
15
+ <clipPath clipPathUnits="userSpaceOnUse" id="e">
16
+ <path d="M2521.52 1510.89h73.13v-91.69h-73.13z" />
17
+ </clipPath>
18
+ <clipPath clipPathUnits="userSpaceOnUse" id="f">
19
+ <path d="M2490.57 1549.14h93.58v-82.16h-93.58z" />
20
+ </clipPath>
21
+ <clipPath clipPathUnits="userSpaceOnUse" id="g">
22
+ <path d="M2230.33 1609.63h288.03v-217.74h-288.03z" />
23
+ </clipPath>
24
+ <clipPath clipPathUnits="userSpaceOnUse" id="h">
25
+ <path d="M2288.18 1547.51h230.75v-167.05h-230.75z" />
26
+ </clipPath>
27
+ <clipPath clipPathUnits="userSpaceOnUse" id="i">
28
+ <path d="M2284.54 1494.68h238.37V1330.6h-238.37z" />
29
+ </clipPath>
30
+ <clipPath clipPathUnits="userSpaceOnUse" id="j">
31
+ <path d="M2282.77 1432.13h249.19v-133.84h-249.19z" />
32
+ </clipPath>
33
+ <clipPath clipPathUnits="userSpaceOnUse" id="k">
34
+ <path d="M2325.63 1365.89h208.44v-104.44h-208.44z" />
35
+ </clipPath>
36
+ <clipPath clipPathUnits="userSpaceOnUse" id="l">
37
+ <path d="M2305.72 1271.04h208.09v-49.59h-208.09z" />
38
+ </clipPath>
39
+ <clipPath clipPathUnits="userSpaceOnUse" id="m">
40
+ <path d="M2238.25 1276.4h265.8v-111.53h-265.8z" />
41
+ </clipPath>
42
+ <clipPath clipPathUnits="userSpaceOnUse" id="n">
43
+ <path d="M2201.75 1274.57h263.53v-153.56h-263.53z" />
44
+ </clipPath>
45
+ <clipPath clipPathUnits="userSpaceOnUse" id="o">
46
+ <path d="M2095.46 1292.36h305.73v-193.18h-305.73z" />
47
+ </clipPath>
48
+ <clipPath clipPathUnits="userSpaceOnUse" id="p">
49
+ <path d="M2174.94 1386.32h124.17v-119.81h-124.17z" />
50
+ </clipPath>
51
+ <clipPath clipPathUnits="userSpaceOnUse" id="q">
52
+ <path d="M2137.84 1020.08h23.55v-28.677h-23.55z" />
53
+ </clipPath>
54
+ <clipPath clipPathUnits="userSpaceOnUse" id="r">
55
+ <path d="M2199.61 1064.1h34.86v-35h-34.86z" />
56
+ </clipPath>
57
+ <clipPath clipPathUnits="userSpaceOnUse" id="s">
58
+ <path d="M2115.47 1293.03h70.06v-186.09h-70.06z" />
59
+ </clipPath>
60
+ <clipPath clipPathUnits="userSpaceOnUse" id="t">
61
+ <path d="M1785.22 1676.68h255.01v-253.19h-255.01z" />
62
+ </clipPath>
63
+ <clipPath clipPathUnits="userSpaceOnUse" id="u">
64
+ <path d="M1638.27 1454.59h408.18v-390.65h-408.18z" />
65
+ </clipPath>
66
+ <clipPath clipPathUnits="userSpaceOnUse" id="v">
67
+ <path d="M1657.32 1510.89h73.13v-91.69h-73.13z" />
68
+ </clipPath>
69
+ <clipPath clipPathUnits="userSpaceOnUse" id="w">
70
+ <path d="M1667.82 1549.14h93.58v-82.16h-93.58z" />
71
+ </clipPath>
72
+ <clipPath clipPathUnits="userSpaceOnUse" id="x">
73
+ <path d="M1733.61 1609.63h288.03v-217.74h-288.03z" />
74
+ </clipPath>
75
+ <clipPath clipPathUnits="userSpaceOnUse" id="y">
76
+ <path d="M1733.04 1547.51h230.75v-167.05h-230.75z" />
77
+ </clipPath>
78
+ <clipPath clipPathUnits="userSpaceOnUse" id="z">
79
+ <path d="M1729.06 1494.68h238.37V1330.6h-238.37z" />
80
+ </clipPath>
81
+ <clipPath clipPathUnits="userSpaceOnUse" id="A">
82
+ <path d="M1720.01 1432.13h249.19v-133.84h-249.19z" />
83
+ </clipPath>
84
+ <clipPath clipPathUnits="userSpaceOnUse" id="B">
85
+ <path d="M1717.9 1365.89h208.44v-104.44H1717.9z" />
86
+ </clipPath>
87
+ <clipPath clipPathUnits="userSpaceOnUse" id="C">
88
+ <path d="M1738.16 1271.04h208.09v-49.59h-208.09z" />
89
+ </clipPath>
90
+ <clipPath clipPathUnits="userSpaceOnUse" id="D">
91
+ <path d="M1747.92 1276.4h265.8v-111.53h-265.8z" />
92
+ </clipPath>
93
+ <clipPath clipPathUnits="userSpaceOnUse" id="E">
94
+ <path d="M1786.69 1274.57h263.53v-153.56h-263.53z" />
95
+ </clipPath>
96
+ <clipPath clipPathUnits="userSpaceOnUse" id="F">
97
+ <path d="M1850.78 1292.36h305.73v-193.18h-305.73z" />
98
+ </clipPath>
99
+ <clipPath clipPathUnits="userSpaceOnUse" id="G">
100
+ <path d="M1952.86 1386.32h124.17v-119.81h-124.17z" />
101
+ </clipPath>
102
+ <clipPath clipPathUnits="userSpaceOnUse" id="H">
103
+ <path d="M2090.58 1020.08h23.55v-28.677h-23.55z" />
104
+ </clipPath>
105
+ <clipPath clipPathUnits="userSpaceOnUse" id="I">
106
+ <path d="M2017.5 1064.1h34.86v-35h-34.86z" />
107
+ </clipPath>
108
+ <clipPath clipPathUnits="userSpaceOnUse" id="J">
109
+ <path d="M2152.04 1057.5h36.11v-63.615h-36.11z" />
110
+ </clipPath>
111
+ <clipPath clipPathUnits="userSpaceOnUse" id="K">
112
+ <path d="M2181.67 1062.56h15.19v-66.239h-15.19z" />
113
+ </clipPath>
114
+ <clipPath clipPathUnits="userSpaceOnUse" id="L">
115
+ <path d="M2063.75 1057.49h36.11v-63.618h-36.11z" />
116
+ </clipPath>
117
+ <clipPath clipPathUnits="userSpaceOnUse" id="M">
118
+ <path d="M2055.04 1062.55h15.19v-66.242h-15.19z" />
119
+ </clipPath>
120
+ <clipPath clipPathUnits="userSpaceOnUse" id="N">
121
+ <path d="M2303.35 1598.25h74.92v-73.48h-74.92z" />
122
+ </clipPath>
123
+ <clipPath clipPathUnits="userSpaceOnUse" id="O">
124
+ <path d="M1873.7 1598.25h74.92v-73.48h-74.92z" />
125
+ </clipPath>
126
+ <clipPath clipPathUnits="userSpaceOnUse" id="P">
127
+ <path d="M1816.62 1557.48h91.87v-67.61h-91.87z" />
128
+ </clipPath>
129
+ <clipPath clipPathUnits="userSpaceOnUse" id="Q">
130
+ <path d="M2343.48 1557.48h91.86v-66.78h-91.86z" />
131
+ </clipPath>
132
+ <clipPath clipPathUnits="userSpaceOnUse" id="R">
133
+ <path d="M2160.52 1020.85h58.98v-36.402h-58.98z" />
134
+ </clipPath>
135
+ <clipPath clipPathUnits="userSpaceOnUse" id="S">
136
+ <path d="M2032.47 1020.85h58.98v-36.402h-58.98z" />
137
+ </clipPath>
138
+ <clipPath clipPathUnits="userSpaceOnUse" id="T">
139
+ <path d="M1932.9 1644.69h46.83v-21.91h-46.83z" />
140
+ </clipPath>
141
+ <clipPath clipPathUnits="userSpaceOnUse" id="U">
142
+ <path d="M1912.44 1606.12h43.57v-34.67h-43.57z" />
143
+ </clipPath>
144
+ <clipPath clipPathUnits="userSpaceOnUse" id="V">
145
+ <path d="M1973.3 1568.01h416.04v-434.46H1973.3z" />
146
+ </clipPath>
147
+ <clipPath clipPathUnits="userSpaceOnUse" id="W">
148
+ <path d="M2031.12 1552.73h344.05v-368.24h-344.05z" />
149
+ </clipPath>
150
+ <clipPath clipPathUnits="userSpaceOnUse" id="X">
151
+ <path d="M1978.01 1600.9h19.79v-20.81h-19.79z" />
152
+ </clipPath>
153
+ <clipPath clipPathUnits="userSpaceOnUse" id="Y">
154
+ <path d="M1964.25 1584.49h16.4v-19.48h-16.4z" />
155
+ </clipPath>
156
+ <clipPath clipPathUnits="userSpaceOnUse" id="Z">
157
+ <path d="M1862.63 1568.01h416.04v-434.46h-416.04z" />
158
+ </clipPath>
159
+ <clipPath clipPathUnits="userSpaceOnUse" id="aa">
160
+ <path d="M1876.8 1552.73h344.05v-368.24H1876.8z" />
161
+ </clipPath>
162
+ <clipPath clipPathUnits="userSpaceOnUse" id="ab">
163
+ <path d="M2254.17 1600.9h19.79v-20.81h-19.79z" />
164
+ </clipPath>
165
+ <clipPath clipPathUnits="userSpaceOnUse" id="ac">
166
+ <path d="M2271.32 1584.49h16.4v-19.48h-16.4z" />
167
+ </clipPath>
168
+ <clipPath clipPathUnits="userSpaceOnUse" id="ad">
169
+ <path d="M2028.34 1202.53h204.21v-55.25h-204.21z" />
170
+ </clipPath>
171
+ </defs>
172
+ <path d="M0 198.437h291.042v-66.139H0z" fill="#00702d" />
173
+ <path d="M0 132.298h291.042V66.14H0z" fill="#f0e53c" />
174
+ <path d="M0 66.14h291.042V0H0z" fill="#d32011" />
175
+ <g clip-path="url(#a)" transform="matrix(.07 0 0 -.07 -3.307 198.466)">
176
+ <path
177
+ d="M2493.016 985.422c1.904 2.46 1.844 6-.346 8.127l-715.049 697.004c-2.204 2.13-5.607 1.965-7.587-.375-2.01-2.354-1.844-5.982.344-8.127l715.051-696.988a5.375 5.375 0 012.594-1.41s3.09-.66 4.993 1.77"
178
+ fill="#473125"
179
+ />
180
+ <path
181
+ d="M2493.016 985.422c1.904 2.46 1.844 6-.346 8.127l-715.049 697.004c-2.204 2.13-5.607 1.965-7.587-.375-2.01-2.354-1.844-5.982.344-8.127l715.051-696.988a5.375 5.375 0 012.594-1.41s3.09-.66 4.993 1.77z"
182
+ fill="none"
183
+ stroke="#000"
184
+ stroke-width="2.223"
185
+ />
186
+ <path
187
+ d="M2555.333 1077.518c1.8.18 3.493 1.29 4.364 3.15 1.35 2.847.269 6.296-2.37 7.736l-876.554 473.003c-2.653 1.425-5.877.286-7.212-2.549-1.334-2.834-.27-6.282 2.37-7.72l876.552-473.02a5.397 5.397 0 012.85-.6"
188
+ fill="#473125"
189
+ />
190
+ <path
191
+ d="M2555.333 1077.518c1.8.18 3.493 1.29 4.364 3.15 1.35 2.847.269 6.296-2.37 7.736l-876.554 473.003c-2.653 1.425-5.877.286-7.212-2.549-1.334-2.834-.27-6.282 2.37-7.72l876.552-473.02a5.397 5.397 0 012.85-.6z"
192
+ fill="none"
193
+ stroke="#000"
194
+ stroke-width="2.223"
195
+ />
196
+ <path
197
+ d="M2535.014 1022.999c1.8-.091 3.614.78 4.694 2.52 1.68 2.637 1.02 6.208-1.424 7.976l-813.158 588.58c-2.46 1.785-5.804 1.08-7.453-1.544-1.664-2.624-1.019-6.193 1.425-7.977l813.16-588.595c.853-.601 1.797-.931 2.756-.96"
198
+ fill="#473125"
199
+ />
200
+ <path
201
+ d="M2535.014 1022.999c1.8-.091 3.614.78 4.694 2.52 1.68 2.637 1.02 6.208-1.424 7.976l-813.158 588.58c-2.46 1.785-5.804 1.08-7.453-1.544-1.664-2.624-1.019-6.193 1.425-7.977l813.16-588.595c.853-.601 1.797-.931 2.756-.96z"
202
+ fill="none"
203
+ stroke="#000"
204
+ stroke-width="2.223"
205
+ />
206
+ <path
207
+ d="M2067.028 1284.38c2.999-34.816 5.127-114.107 5.623-128.473.494-14.363 27.604-49.84 29.958-27.288 2.369 22.58-15.563 150.003-15.563 150.003z"
208
+ fill="#f0e53c"
209
+ />
210
+ <path
211
+ d="M2079.667 1287.468c7.542-49.69 12.64-178.492 25.7-182.092 13.076-3.568 21.068-2.608 24.891 8.518 3.838 11.125-12.55 66.126-12.55 66.126l-19.763 68.613-5.938 39.436z"
212
+ fill="#00702d"
213
+ />
214
+ <g clip-path="url(#b)" opacity=".25">
215
+ <path d="M2136.497 1106.937c-14.53.21-18.818 0-27.965 49.032-9.131 49.031-14.155 90.206-20.977 86.427-6.823-3.81-11.757-1.71-13.75 6.807-1.98 8.516-9.162 31.19-6.928 38.775 2.219 7.587 28.579 4.38 28.579 4.38l23.393-101.782z" />
216
+ </g>
217
+ <path
218
+ d="M1758.954 985.422c-1.904 2.46-1.844 6 .346 8.127l715.049 697.004c2.203 2.13 5.606 1.965 7.586-.375 2.01-2.354 1.845-5.982-.343-8.127l-715.053-696.988a5.367 5.367 0 00-2.592-1.41s-3.09-.66-4.993 1.77"
219
+ fill="#473125"
220
+ />
221
+ <path
222
+ d="M1758.954 985.422c-1.904 2.46-1.844 6 .346 8.127l715.049 697.004c2.203 2.13 5.606 1.965 7.586-.375 2.01-2.354 1.845-5.982-.343-8.127l-715.053-696.988a5.367 5.367 0 00-2.592-1.41s-3.09-.66-4.993 1.77z"
223
+ fill="none"
224
+ stroke="#000"
225
+ stroke-width="2.223"
226
+ />
227
+ <path
228
+ d="M2493.826 1576.912c-3.313 38.97-22.491 67.534-21.337 113.867l-94.87-92.53c11.097-15.88 30.32-48.162 34.938-87.567 45.448 36.526 81.269 66.23 81.269 66.23"
229
+ fill="#d32011"
230
+ />
231
+ <path
232
+ d="M2303.353 1525.796l-106.836-104.226c12.282-10.377 20.514-28.812 29.24-44.255 3.48-6.088 46.392 24.058 96.908 62.668-.014 15.79 1.034 35.147-19.312 85.813"
233
+ fill="#00702d"
234
+ />
235
+ <path
236
+ d="M2377.62 1598.249l-74.267-72.452c20.346-50.666 19.298-70.025 19.313-85.813 29.494 22.536 61.553 47.937 89.892 70.698-4.62 39.405-23.842 71.688-34.938 87.567"
237
+ fill="#f0e53c"
238
+ />
239
+ <g clip-path="url(#c)" opacity=".25">
240
+ <path d="M2466.747 1676.684c-27.246-67.354-128.742-171.325-255.01-253.194 58.794 24.53 198.87 135.684 223.852 167.232 31.832 40.185 31.158 85.962 31.158 85.962" />
241
+ </g>
242
+ <path
243
+ d="M1696.637 1077.518c-1.8.18-3.493 1.29-4.364 3.15-1.349 2.847-.27 6.296 2.37 7.736l876.554 473.003c2.653 1.425 5.893.286 7.212-2.549 1.334-2.834.27-6.282-2.369-7.72l-876.553-473.02a5.397 5.397 0 00-2.85-.6"
244
+ fill="#473125"
245
+ />
246
+ <path
247
+ d="M1696.637 1077.518c-1.8.18-3.493 1.29-4.364 3.15-1.349 2.847-.27 6.296 2.37 7.736l876.554 473.003c2.653 1.425 5.893.286 7.212-2.549 1.334-2.834.27-6.282-2.369-7.72l-876.553-473.02a5.397 5.397 0 00-2.85-.6z"
248
+ fill="none"
249
+ stroke="#000"
250
+ stroke-width="2.223"
251
+ />
252
+ <path d="M2501.098 1234.299l54.534 2.729-4.018 91.945-54.536-2.73z" fill="#f0e53c" />
253
+ <path
254
+ d="M2163.89 1181.188c45.148-48.37 131.456-130.149 245.877-115.846 61.328 7.677 96.653 30.47 125.397 59.558 28.761 29.06 16.151 32.237 34.922 45.464 18.79 13.224 23.557 49.99 23.796 50.77.226.78-1.529 13.734 7.378 28.758 8.892 15.025 10.301 37.756 7.347 45.074-2.954 7.316 5.323 29.99 5.084 36.136-.24 6.117-6.868 25.7-7.978 34.847-1.095 9.176-3.194 30.078-3.194 30.078-1.994 32.411-18.127 155.5-15.339 175.697l-78.96-41.819c3.284-58.014 8.712-177.84 15.82-195.384 7.121-17.543 20.976-37.756 12.294-51.82-21.516-34.818 9.852-39.405-20.976-47.082-21.023-5.248-351.469-54.43-351.469-54.43"
255
+ fill="#d32011"
256
+ />
257
+ <g clip-path="url(#d)" opacity=".25">
258
+ <path
259
+ d="M2613.691 1331.102c-.24 6.117-6.868 25.7-7.978 34.847-1.095 9.176-3.194 30.078-3.194 30.078-.689 11.268-3.088 33.505-5.817 58.561-9.072-15.819-18.338-36.45-17.979-44.564.541-12.377-25.985-34.448-52.525-48.034-3.597-1.86-5.652-2.968-6.507-3.569.031-.21.045-.358.075-.569 4.814.54 41.684 13.404 61.641 7.048 26.225-8.338 32.584-18.054 16.09-29.06-12.836-8.546-40.035-19.702-62.572-25.46-6.402-1.649-12.446-2.879-17.663-3.449-23.556-2.579-44.653-28.19-2.774-18.412 8.082 1.888 16.344 4.557 24.411 7.526 33.752 12.356 64.205 29.87 64.491 16.884.315-14.635-14.29-46.422-73.892-64.775-6.029-1.86-12.506-3.57-19.479-5.128-27.228-6.028-39.046-11.397-41.818-15.474-4.964-7.348 19.267-10.587 37.036-6.239 27.663 6.748 93.113 18.473 79.74-3.688-13.375-22.162-69.724-28.82-100.613-27.29-30.903 1.53-9.836-21.202 15.265-21.503 25.115-.268 37.71 5.818 37.231-9.625-.735-23.81-111.229-153.482-273.798-40.575-24.62 17.094-45.642 20.574-57.547 25.101 48.116-36.347 118.755-89.097 204.252-78.39 61.328 7.676 96.653 30.468 125.398 59.557 28.76 29.06 12.22 29.27 31.007 42.464 18.775 13.225 27.471 52.99 27.71 53.77.226.78-1.529 13.734 7.378 28.758 8.892 15.025 10.301 37.756 7.347 45.074-2.954 7.316 5.323 29.99 5.084 36.136"
260
+ />
261
+ </g>
262
+ <g clip-path="url(#e)" opacity=".25">
263
+ <path d="M2524.73 1436.834c-13.12-33.362 16.552-13.599 42.27 11.546 10.854 10.617 19.941 18.923 27.647 25.116-1.35 12.594-2.697 25.355-3.883 37.396-25.416-20.888-56.588-50.02-66.035-74.058" />
264
+ </g>
265
+ <g clip-path="url(#f)" opacity=".25">
266
+ <path d="M2582.681 1545.138c-14.304-22.4-34.17-46.332-74.295-68.075-40.126-21.755.074-1.543.074-1.543l8.052 31.233c21.651 10.841 77.341 55.9 66.17 38.385" />
267
+ </g>
268
+ <path
269
+ d="M1716.954 1022.999c-1.798-.091-3.613.78-4.692 2.52-1.68 2.637-1.02 6.208 1.424 7.976l813.158 588.58c2.459 1.785 5.801 1.08 7.452-1.544 1.665-2.624 1.019-6.193-1.425-7.977l-813.158-588.595c-.854-.601-1.8-.931-2.759-.96"
270
+ fill="#473125"
271
+ />
272
+ <path
273
+ d="M1716.954 1022.999c-1.798-.091-3.613.78-4.692 2.52-1.68 2.637-1.02 6.208 1.424 7.976l813.158 588.58c2.459 1.785 5.801 1.08 7.452-1.544 1.665-2.624 1.019-6.193-1.425-7.977l-813.158-588.595c-.854-.601-1.8-.931-2.759-.96z"
274
+ fill="none"
275
+ stroke="#000"
276
+ stroke-width="2.223"
277
+ />
278
+ <path d="M2081.062 1312.329c-.135.21-.284.42-.42.6.12-.21.269-.39.42-.6" fill="#d32011" />
279
+ <path
280
+ d="M2267.322 1218.82c35.161-.54 53.919 13.437 64.504 17.034 10.602 3.63 21.863 24.89 25.611 37.365 3.764 12.447 7.888 16.496 9.087 21.923 1.199 5.457.27 10.016 0 16.135-.255 6.117 4.078 21.682 4.333 32.446.24 10.738-14.184 29.21-11.41 47.743 2.773 18.57-1.17 42.92-9.117 60.943-5.113 11.562-6.523 26.467-6.853 39.512l-131.98-95.506c42.419-34.788-8.127-157.772-96.487-88.53-4.395 1.622-14.126 11.548-27.71 10.888-7.768-.39-7.947-2.908-6.688-4.978 38.565-6.567 65.45-43.483 98.093-68.704 32.657-25.221 53.47-25.73 88.617-26.27"
281
+ fill="#00702d"
282
+ />
283
+ <path
284
+ d="M2536.26 1397.226c.3 9.23-1.485 33.686-3.989 42.008-2.518 8.306-8.276 8.785-7.24 34.157 1.048 25.385 1.228 37.665.208 44.518-1.02 6.853 7.377 54.04-1.8 103.476l-88.3-63.905c3.179-18.204 4.858-51.672 6.356-59.109 1.83-9.116 8.518-31.038 6.328-46.498-2.188-15.458 7.438-38.759 10.527-43.963 3.09-5.217-1.334-51.467-4.798-70.84-3.448-19.343 8.052-36.437.479-59.827-13.945-58.239-68.54-121.604-140.766-125.984-72.228-4.377-159.614 75.661-176.903 93.956-16.63 17.633-37.426 40.724-53.77 64.895-2.804 0-12.656-.57-11.051-9.056 1.875-9.867-10.257 4.858-2.354-11.606 7.886-16.493 47.337-65.946 79.575-98.094 32.223-32.147 107.06-104.899 205.003-97.132 78.599 6.236 126.087 51.58 137.843 94.374 3.568 12.985 26.014 28.158 27.423 45.104 1.41 16.943-5.907 20.421 2.684 36.975 8.593 16.523 9.807 28.07 10.047 32.717.735 15.175 7.197 31.818 7.092 67.115-.045 16.553-2.908 17.484-2.594 26.72"
285
+ fill="#d32011"
286
+ />
287
+ <path d="M2080.612 1312.989l.03-.06-.03.06m.45-.66c.494-.75 1.02-1.47 1.529-2.22.45 0 .75-.028.75-.028s-1.32.989-2.28 2.248" fill="#f0e53c" />
288
+ <path
289
+ d="M2313.264 1151.26c72.228 4.38 126.821 67.744 140.766 125.982 7.573 23.391-3.927 40.485-.479 59.828 3.464 19.373 7.888 65.623 4.798 70.84-3.089 5.203-12.715 28.505-10.526 43.963 2.19 15.46-4.497 37.382-6.329 46.497-1.498 7.438-3.177 40.906-6.356 59.11l-91.66-66.366c.33-13.045 1.738-27.949 6.851-39.51 7.948-18.024 11.891-42.374 9.118-60.945-2.775-18.532 11.65-37.005 11.41-47.742-.255-10.765-4.588-26.33-4.333-32.447.27-6.118 1.2-10.677 0-16.134-1.199-5.428-5.323-9.476-9.087-21.923-3.748-12.475-15.009-33.736-25.61-37.366-10.586-3.598-29.344-17.572-64.505-17.032-35.148.54-55.96 1.05-88.618 26.27-32.642 25.22-59.527 62.136-98.093 68.703l.031-.059c.135-.18.284-.39.42-.6.96-1.259 2.28-2.249 2.28-2.249s-.302.03-.75.03c16.343-24.17 37.14-47.262 53.77-64.895 17.288-18.295 104.674-98.333 176.902-93.956"
290
+ fill="#f0e53c"
291
+ />
292
+ <g clip-path="url(#g)" opacity=".25">
293
+ <path d="M2230.33 1391.89c117.092 60.33 282.044 190.585 288.027 217.74.299-23.002-102.215-154.727-288.026-217.74" />
294
+ </g>
295
+ <g clip-path="url(#h)" opacity=".25">
296
+ <path d="M2518.927 1547.507c-17.154-35.252-96.25-140.362-230.748-167.045 52.21 3.12 226.265 56.343 230.748 167.045" />
297
+ </g>
298
+ <g clip-path="url(#i)" opacity=".25">
299
+ <path d="M2521.236 1494.683c13.87-36.136-57.924-183.972-236.7-161.841 74.521 1.019 198.403 54.039 236.7 161.84" />
300
+ </g>
301
+ <g clip-path="url(#j)" opacity=".25">
302
+ <path d="M2528.283 1432.127c-2.969-30.844-86.231-143.218-245.518-124.326 31.668-19.133 177.039-15.084 238.021 65.945 9.401 14.725 15.443 40.359 7.497 58.38" />
303
+ </g>
304
+ <g clip-path="url(#k)" opacity=".25">
305
+ <path d="M2534.07 1365.888c-10.945-29.179-50.515-107.869-208.436-87.387 43.11-18.563 146.315-34.126 195.496 22.072 8.862 10.407 12.94 65.315 12.94 65.315" />
306
+ </g>
307
+ <g clip-path="url(#l)" opacity=".25">
308
+ <path d="M2305.722 1265.217c117.436-36.316 159.824-21.92 208.091 5.817-.795-14.604-56.678-100.283-208.09-5.817" />
309
+ </g>
310
+ <g clip-path="url(#m)" opacity=".25">
311
+ <path d="M2504.052 1215.286c-16.703-11.576-119.16-45.853-265.806 61.117 27.322-34.697 120.72-104.421 223.132-101.601 15.774.03 18.247-.87 16.208-9.927 8.878 9.656 7.889 16.493 11.803 25.13 3.927 8.636 14.662 25.28 14.662 25.28" />
312
+ </g>
313
+ <g clip-path="url(#n)" opacity=".25">
314
+ <path d="M2465.277 1151.2c-17.454-6.088-165.343-22.852-263.525 123.374 11.56-34.697 60.142-128.952 162.733-146.824 33.272-4.14 77.655-21.443 100.792 23.45" />
315
+ </g>
316
+ <g clip-path="url(#o)" opacity=".25">
317
+ <path d="M2095.456 1292.357c51.596-111.049 214.014-209.44 305.734-184.25-28.234-11.516-115.336-21.203-186.453 33.616-71.105 54.85-119.28 150.634-119.28 150.634" />
318
+ </g>
319
+ <g clip-path="url(#p)" opacity=".33">
320
+ <path d="M2176.666 1287.56c-9.491-2.97 23.376-22.884 20.213-16.135-3.165 6.746-4.934 14.334-.676 15.323 4.275.991 17.918-15.984 10.737.54-7.168 16.525 22.715-11.156 22.715-11.156s-6.777 7.347-2.428 12.176c4.334 4.8 40.125-21.8 40.125-21.8s-15.01 15.382-23.107 26.93c-8.097 11.543 35.733-4.05 35.733-4.05s-7.184.42-24.306 14.904c-17.124 14.485 24.739 8.158 24.739 8.158s-3.193 7.496-16.448 15.143c-13.24 7.647 35.147 16.494 35.147 16.494s-26.165 7.887-32.222 15.264c-6.06 7.348 36.076 11.006 23.21 10.347-32.538-1.62-71.57 18.802-70.354 16.433 13.195-25.4 8.442-82.439-43.078-98.572" />
321
+ </g>
322
+ <path
323
+ d="M2545.271 1624.894c7.092 3.6 11.396-.735 15.055-4.813 8.172 23.78 36.931 45.657 44.307 51.835-8.127-4.978-37.904-25.265-61.565-24.396 2.158-5.158 4.288-11.05-1.485-16.733z"
324
+ fill="#cacaca"
325
+ />
326
+ <path
327
+ d="M2545.271 1624.894c7.092 3.6 11.396-.735 15.055-4.813 8.172 23.78 36.931 45.657 44.307 51.835-8.127-4.978-37.904-25.265-61.565-24.396 2.158-5.158 4.288-11.05-1.485-16.733z"
328
+ fill="none"
329
+ stroke="#000"
330
+ stroke-width="2.223"
331
+ />
332
+ <path
333
+ d="M2537.16 1633.515c3.014 2.174 7.437.795 9.866-3.074 2.445-3.867 1.964-8.787-1.05-10.946-3.014-2.174-7.437-.793-9.867 3.074-2.442 3.883-1.978 8.787 1.05 10.946"
334
+ fill="#cacaca"
335
+ />
336
+ <path
337
+ d="M2537.16 1633.515c3.014 2.174 7.437.795 9.866-3.074 2.445-3.867 1.964-8.787-1.05-10.946-3.014-2.174-7.437-.793-9.867 3.074-2.442 3.883-1.978 8.787 1.05 10.946zm6.538 13.645l16.537-26.314"
338
+ fill="none"
339
+ stroke="#000"
340
+ stroke-width="2.223"
341
+ />
342
+ <path
343
+ d="M2536.364 1622.764c-6.896 10.977-7.661 24.441-3.134 35.777-9.911-10.676-11.755-27.679-3.596-40.635 8.14-12.954 23.554-17.544 36.525-11.74-11.516-.21-22.896 5.608-29.795 16.598"
344
+ fill="#cacaca"
345
+ />
346
+ <path
347
+ d="M2536.364 1622.764c-6.896 10.977-7.661 24.441-3.134 35.777-9.911-10.676-11.755-27.679-3.596-40.635 8.14-12.954 23.554-17.544 36.525-11.74-11.516-.21-22.896 5.608-29.795 16.598z"
348
+ fill="none"
349
+ stroke="#000"
350
+ stroke-width="2.223"
351
+ />
352
+ <path d="M2531.027 1510.591l3.51.54c-2.566 18.923-1.996 86.263-1.336 96.46l-3.539.253c-.674-10.54-1.289-77.655 1.365-97.253" fill="#f0e53c" />
353
+ <path
354
+ d="M2531.027 1510.591l3.51.54c-2.566 18.923-1.996 86.263-1.336 96.46l-3.539.253c-.674-10.54-1.289-77.655 1.365-97.253z"
355
+ fill="none"
356
+ stroke="#473125"
357
+ stroke-width="1.556"
358
+ />
359
+ <path
360
+ d="M2527.038 1500.545c-.66 95.274 1.005 101.347 2.505 106.701.194.749.419 1.529.629 2.518l-3.464.824a29.466 29.466 0 00-.57-2.263c-1.618-5.893-3.313-11.965-2.64-107.809z"
361
+ fill="#f0e53c"
362
+ />
363
+ <path
364
+ d="M2527.038 1500.545c-.66 95.274 1.005 101.347 2.505 106.701.194.749.419 1.529.629 2.518l-3.464.824a29.466 29.466 0 00-.57-2.263c-1.618-5.893-3.313-11.965-2.64-107.809z"
365
+ fill="none"
366
+ stroke="#473125"
367
+ stroke-width="1.556"
368
+ />
369
+ <path
370
+ d="M2524.564 1625.763c1.14-4.692 3.554-10.572 8.742-14.694 5.188-4.138.404-8.036-2.984-5.293-3.373 2.758-9.042 9.011-9.146 13.735-.106 4.738 1.394 6.447 3.388 6.252"
371
+ fill="#f0e53c"
372
+ />
373
+ <path
374
+ d="M2524.564 1625.763c1.14-4.692 3.554-10.572 8.742-14.694 5.188-4.138.404-8.036-2.984-5.293-3.373 2.758-9.042 9.011-9.146 13.735-.106 4.738 1.394 6.447 3.388 6.252z"
375
+ fill="none"
376
+ stroke="#473125"
377
+ stroke-width="1.556"
378
+ />
379
+ <path
380
+ d="M2536.32 1510.861c2.25-5.638 11.666-38.82 15.325-41.475-4.799-1.662-8.097-2.067-11.096-4.347-3-2.294-3.855-3.043-7.183-2.968 0 0-6.807 39.24-3.839 47.202z"
381
+ fill="#f0e53c"
382
+ />
383
+ <path
384
+ d="M2536.32 1510.861c2.25-5.638 11.666-38.82 15.325-41.475-4.799-1.662-8.097-2.067-11.096-4.347-3-2.294-3.855-3.043-7.183-2.968 0 0-6.807 39.24-3.839 47.202z"
385
+ fill="none"
386
+ stroke="#473125"
387
+ stroke-width="1.556"
388
+ />
389
+ <path
390
+ d="M2531.7 1509.782l8.864-32.657m1.243 9.67l4.89-18.952m-7.017-3.463l-8.819 38.325"
391
+ fill="none"
392
+ stroke="#473125"
393
+ stroke-linecap="round"
394
+ stroke-width="1.556"
395
+ />
396
+ <path
397
+ d="M2527.953 1509.917c.225-1.68 2.58-2.699 5.248-2.278 2.669.403 4.648 2.114 4.424 3.792-.226 1.68-2.58 2.7-5.248 2.294-2.67-.419-4.65-2.114-4.424-3.808"
398
+ fill="#f0e53c"
399
+ />
400
+ <path
401
+ d="M2527.953 1509.917c.225-1.68 2.58-2.699 5.248-2.278 2.669.403 4.648 2.114 4.424 3.792-.226 1.68-2.58 2.7-5.248 2.294-2.67-.419-4.65-2.114-4.424-3.808z"
402
+ fill="none"
403
+ stroke="#473125"
404
+ stroke-width="1.556"
405
+ />
406
+ <path
407
+ d="M2529.213 1500.651c1.44-6.957 3.014-7.588 5.952-44.414-5.232-1.693-6.686 1.095-9.146 1.68-2.458.585-10.511-2.759-10.33 3.223.179 5.984 4.812 35.507 7.36 39.212z"
408
+ fill="#f0e53c"
409
+ />
410
+ <path
411
+ d="M2529.213 1500.651c1.44-6.957 3.014-7.588 5.952-44.414-5.232-1.693-6.686 1.095-9.146 1.68-2.458.585-10.511-2.759-10.33 3.223.179 5.984 4.812 35.507 7.36 39.212z"
412
+ fill="none"
413
+ stroke="#473125"
414
+ stroke-width="1.556"
415
+ />
416
+ <path
417
+ d="M2528.057 1487.156l-.284-23.946m3.509 5.862l.599-13.375m-6.057 42.239l-2.594-26.885m-4.53-7.721l-.044-5.759"
418
+ fill="none"
419
+ stroke="#473125"
420
+ stroke-linecap="round"
421
+ stroke-width="1.556"
422
+ />
423
+ <path
424
+ d="M2520.126 1501.041c-.016-1.71 2.159-3.105 4.858-3.134 2.7-.015 4.889 1.334 4.905 3.043.013 1.695-2.161 3.09-4.86 3.12-2.698.03-4.887-1.336-4.903-3.029"
425
+ fill="#f0e53c"
426
+ />
427
+ <path
428
+ d="M2520.126 1501.041c-.016-1.71 2.159-3.105 4.858-3.134 2.7-.015 4.889 1.334 4.905 3.043.013 1.695-2.161 3.09-4.86 3.12-2.698.03-4.887-1.336-4.903-3.029z"
429
+ fill="none"
430
+ stroke="#473125"
431
+ stroke-width="1.556"
432
+ />
433
+ <path
434
+ d="M2492.207 1696.178c6.552 4.647 11.395 1.019 15.55-2.445 4.887 24.77 30.423 50.846 36.9 58.089-7.378-6.164-34.128-30.815-57.653-33.603 2.835-4.768 5.727-10.271.765-16.78z"
435
+ fill="#cacaca"
436
+ />
437
+ <path
438
+ d="M2492.207 1696.178c6.552 4.647 11.395 1.019 15.55-2.445 4.887 24.77 30.423 50.846 36.9 58.089-7.378-6.164-34.128-30.815-57.653-33.603 2.835-4.768 5.727-10.271.765-16.78z"
439
+ fill="none"
440
+ stroke="#000"
441
+ stroke-width="2.223"
442
+ />
443
+ <path
444
+ d="M2483.03 1703.465c2.699 2.609 7.242 1.933 10.182-1.53 2.922-3.463 3.118-8.381.434-11.005-2.699-2.612-7.257-1.92-10.197 1.528-2.923 3.464-3.118 8.396-.419 11.006"
445
+ fill="#cacaca"
446
+ />
447
+ <path
448
+ d="M2483.03 1703.465c2.699 2.609 7.242 1.933 10.182-1.53 2.922-3.463 3.118-8.381.434-11.005-2.699-2.612-7.257-1.92-10.197 1.528-2.923 3.464-3.118 8.396-.419 11.006zm4.634 14.499l19.897-23.497"
449
+ fill="none"
450
+ stroke="#000"
451
+ stroke-width="2.223"
452
+ />
453
+ <path
454
+ d="M2483.69 1692.698c-8.307 9.791-10.87 23.016-7.918 34.921-8.366-12.085-7.9-29.194 1.89-40.77 9.806-11.56 25.671-13.734 37.725-5.997-11.349-1.979-23.39 2.04-31.697 11.846"
455
+ fill="#cacaca"
456
+ />
457
+ <path
458
+ d="M2483.69 1692.698c-8.307 9.791-10.87 23.016-7.918 34.921-8.366-12.085-7.9-29.194 1.89-40.77 9.806-11.56 25.671-13.734 37.725-5.997-11.349-1.979-23.39 2.04-31.697 11.846z"
459
+ fill="none"
460
+ stroke="#000"
461
+ stroke-width="2.223"
462
+ />
463
+ <path
464
+ d="M2471.74 1578.35c-1.2 95.275.435 101.348 1.904 106.716.195.764.404 1.545.599 2.535l-3.448.794c-.18-.87-.36-1.545-.555-2.264-1.604-5.908-3.254-11.996-2.055-107.824z"
465
+ fill="#f0e53c"
466
+ />
467
+ <path
468
+ d="M2471.74 1578.35c-1.2 95.275.435 101.348 1.904 106.716.195.764.404 1.545.599 2.535l-3.448.794c-.18-.87-.36-1.545-.555-2.264-1.604-5.908-3.254-11.996-2.055-107.824z"
469
+ fill="none"
470
+ stroke="#473125"
471
+ stroke-width="1.556"
472
+ />
473
+ <path
474
+ d="M2471.605 1693.853c1.753-4.468 4.933-9.911 10.63-13.195 5.683-3.298 1.47-7.902-2.248-5.698-3.705 2.22-10.166 7.528-10.902 12.19-.75 4.664.525 6.583 2.52 6.703"
475
+ fill="#f0e53c"
476
+ />
477
+ <path
478
+ d="M2471.605 1693.853c1.753-4.468 4.933-9.911 10.63-13.195 5.683-3.298 1.47-7.902-2.248-5.698-3.705 2.22-10.166 7.528-10.902 12.19-.75 4.664.525 6.583 2.52 6.703z"
479
+ fill="none"
480
+ stroke="#473125"
481
+ stroke-width="1.556"
482
+ />
483
+ <path
484
+ d="M2473.914 1578.486c1.483-6.957 3.059-7.586 6.207-44.383-5.233-1.724-6.702 1.05-9.161 1.62-2.46.57-10.496-2.819-10.347 3.148.135 5.983 4.618 35.553 7.138 39.256z"
485
+ fill="#f0e53c"
486
+ />
487
+ <path
488
+ d="M2473.914 1578.486c1.483-6.957 3.059-7.586 6.207-44.383-5.233-1.724-6.702 1.05-9.161 1.62-2.46.57-10.496-2.819-10.347 3.148.135 5.983 4.618 35.553 7.138 39.256z"
489
+ fill="none"
490
+ stroke="#473125"
491
+ stroke-width="1.556"
492
+ />
493
+ <path
494
+ d="M2472.834 1564.976l-.15-23.945m3.478 5.877l.66-13.359m-6.298 42.193l-2.43-26.915m-4.497-7.737v-5.757"
495
+ fill="none"
496
+ stroke="#473125"
497
+ stroke-linecap="round"
498
+ stroke-width="1.556"
499
+ />
500
+ <path
501
+ d="M2464.812 1578.8c0-1.693 2.174-3.087 4.873-3.087 2.698-.015 4.888 1.348 4.903 3.059 0 1.709-2.189 3.088-4.874 3.088-2.699.015-4.886-1.364-4.902-3.06"
502
+ fill="#f0e53c"
503
+ />
504
+ <path
505
+ d="M2464.812 1578.8c0-1.693 2.174-3.087 4.873-3.087 2.698-.015 4.888 1.348 4.903 3.059 0 1.709-2.189 3.088-4.874 3.088-2.699.015-4.886-1.364-4.902-3.06z"
506
+ fill="none"
507
+ stroke="#473125"
508
+ stroke-width="1.556"
509
+ />
510
+ <path
511
+ d="M2607.783 1571.62c7.467 2.593 11.216-2.28 14.35-6.824 10.93 22.462 42.058 40.245 50.11 45.358-8.65-3.823-40.589-19.882-63.95-15.804 1.529-5.397 2.924-11.544-3.48-16.39z"
512
+ fill="#cacaca"
513
+ />
514
+ <path
515
+ d="M2607.783 1571.62c7.467 2.593 11.216-2.28 14.35-6.824 10.93 22.462 42.058 40.245 50.11 45.358-8.65-3.823-40.589-19.882-63.95-15.804 1.529-5.397 2.924-11.544-3.48-16.39z"
516
+ fill="none"
517
+ stroke="#000"
518
+ stroke-width="2.223"
519
+ />
520
+ <path
521
+ d="M2600.75 1581.276c3.255 1.738 7.483-.226 9.433-4.41 1.949-4.167.898-8.965-2.34-10.705-3.27-1.739-7.482.224-9.431 4.393-1.965 4.184-.915 8.982 2.339 10.722"
522
+ fill="#cacaca"
523
+ />
524
+ <path
525
+ d="M2600.75 1581.276c3.255 1.738 7.483-.226 9.433-4.41 1.949-4.167.898-8.965-2.34-10.705-3.27-1.739-7.482.224-9.431 4.393-1.965 4.184-.915 8.982 2.339 10.722zm8.112 12.624l13.271-28.354"
526
+ fill="none"
527
+ stroke="#000"
528
+ stroke-width="2.223"
529
+ />
530
+ <path
531
+ d="M2598.681 1570.704c-5.532 11.831-4.679 25.295 1.154 35.926-11.094-9.236-14.949-25.864-8.41-39.824 6.537-13.96 21.276-20.602 34.83-16.615-11.44 1.35-22.025 8.683-27.574 20.513"
532
+ fill="#cacaca"
533
+ />
534
+ <path
535
+ d="M2598.681 1570.704c-5.532 11.831-4.679 25.295 1.154 35.926-11.094-9.236-14.949-25.864-8.41-39.824 6.537-13.96 21.276-20.602 34.83-16.615-11.44 1.35-22.025 8.683-27.574 20.513z"
536
+ fill="none"
537
+ stroke="#000"
538
+ stroke-width="2.223"
539
+ />
540
+ <path d="M2598.277 1451.379l3.448.81c-3.838 19.912-7.827 91.48-7.856 102.351l-3.539.03c.03-11.245 3.958-82.544 7.947-103.191" fill="#f0e53c" />
541
+ <path
542
+ d="M2598.277 1451.379l3.448.81c-3.838 19.912-7.827 91.48-7.856 102.351l-3.539.03c.03-11.245 3.958-82.544 7.947-103.191z"
543
+ fill="none"
544
+ stroke="#473125"
545
+ stroke-width="1.605"
546
+ />
547
+ <path
548
+ d="M2594.962 1440.449c-7.105 101.12-5.831 107.689-4.723 113.477.166.809.33 1.648.466 2.714l-3.51.645a37.66 37.66 0 00-.404-2.444c-1.23-6.358-2.505-12.926 4.634-114.663z"
549
+ fill="#f0e53c"
550
+ />
551
+ <path
552
+ d="M2594.962 1440.449c-7.105 101.12-5.831 107.689-4.723 113.477.166.809.33 1.648.466 2.714l-3.51.645a37.66 37.66 0 00-.404-2.444c-1.23-6.358-2.505-12.926 4.634-114.663z"
553
+ fill="none"
554
+ stroke="#473125"
555
+ stroke-width="1.605"
556
+ />
557
+ <path
558
+ d="M2587.345 1575.292c.557-4.813 2.266-10.96 6.929-15.759 4.648-4.812-.571-8.037-3.6-4.843-3.013 3.194-7.901 10.166-7.435 14.875.449 4.707 2.158 6.192 4.106 5.727"
559
+ fill="#f0e53c"
560
+ />
561
+ <path
562
+ d="M2587.345 1575.292c.557-4.813 2.266-10.96 6.929-15.759 4.648-4.812-.571-8.037-3.6-4.843-3.013 3.194-7.901 10.166-7.435 14.875.449 4.707 2.158 6.192 4.106 5.727z"
563
+ fill="none"
564
+ stroke="#473125"
565
+ stroke-width="1.556"
566
+ />
567
+ <path
568
+ d="M2603.614 1451.379c2.564-5.458 13.991-37.906 17.814-40.32-4.694-1.979-7.962-2.624-10.826-5.097-2.85-2.49-3.659-3.3-6.988-3.464 0 0-9.19 38.671-6.702 46.842z"
569
+ fill="#f0e53c"
570
+ />
571
+ <path
572
+ d="M2603.614 1451.379c2.564-5.458 13.991-37.906 17.814-40.32-4.694-1.979-7.962-2.624-10.826-5.097-2.85-2.49-3.659-3.3-6.988-3.464 0 0-9.19 38.671-6.702 46.842z"
573
+ fill="none"
574
+ stroke="#473125"
575
+ stroke-width="1.556"
576
+ />
577
+ <path
578
+ d="M2599.055 1449.985l10.826-31.969m.661 9.732l6.042-18.562m-6.791-3.944l-11.141 37.62"
579
+ fill="none"
580
+ stroke="#473125"
581
+ stroke-linecap="round"
582
+ stroke-width="1.556"
583
+ />
584
+ <path
585
+ d="M2595.307 1449.865c.33-1.665 2.744-2.52 5.368-1.919 2.654.6 4.528 2.442 4.184 4.093-.33 1.665-2.73 2.518-5.367 1.92-2.64-.6-4.515-2.429-4.185-4.094"
586
+ fill="#f0e53c"
587
+ />
588
+ <path
589
+ d="M2595.307 1449.865c.33-1.665 2.744-2.52 5.368-1.919 2.654.6 4.528 2.442 4.184 4.093-.33 1.665-2.73 2.518-5.367 1.92-2.64-.6-4.515-2.429-4.185-4.094z"
590
+ fill="none"
591
+ stroke="#473125"
592
+ stroke-width="1.556"
593
+ />
594
+ <path
595
+ d="M2597.123 1440.719c1.873-6.853 3.478-7.378 8.65-43.912-5.127-2.07-6.731.63-9.22 1.02-2.504.419-10.331-3.48-10.511 2.519-.18 5.96 2.639 35.754 4.962 39.622z"
596
+ fill="#f0e53c"
597
+ />
598
+ <path
599
+ d="M2597.123 1440.719c1.873-6.853 3.478-7.378 8.65-43.912-5.127-2.07-6.731.63-9.22 1.02-2.504.419-10.331-3.48-10.511 2.519-.18 5.96 2.639 35.754 4.962 39.622z"
600
+ fill="none"
601
+ stroke="#473125"
602
+ stroke-width="1.556"
603
+ />
604
+ <path
605
+ d="M2596.807 1427.163l1.17-23.916m-4.063 34.518l-.944-27.02m-4.065-8.008l.314-5.75"
606
+ fill="none"
607
+ stroke="#473125"
608
+ stroke-linecap="round"
609
+ stroke-width="1.556"
610
+ />
611
+ <path
612
+ d="M2588.036 1440.449c.089-1.695 2.339-2.924 5.038-2.774 2.699.165 4.798 1.664 4.707 3.373-.09 1.694-2.338 2.94-5.037 2.774-2.7-.15-4.8-1.664-4.708-3.373"
613
+ fill="#f0e53c"
614
+ />
615
+ <path
616
+ d="M2588.036 1440.449c.089-1.695 2.339-2.924 5.038-2.774 2.699.165 4.798 1.664 4.707 3.373-.09 1.694-2.338 2.94-5.037 2.774-2.7-.15-4.8-1.664-4.708-3.373z"
617
+ fill="none"
618
+ stroke="#473125"
619
+ stroke-width="1.556"
620
+ />
621
+ <path d="M2519.766 1357.852c-.03.211-.044.36-.075.57-.645-.48-.585-.63.075-.57" />
622
+ <path
623
+ d="M2085.066 1270.466c13.12-49.992 49.945-142.507 50.216-271.398.464-10.345 15.383-15.354 15.188-25.13-.209-9.807-3.238-9.957.751-17.245 2.294 7.019 9.7 9.687 9.402 16.584-.3 6.897-6.374 22.701.36 28.79 6.716 6.086 16.073 13.464 12.953 35.745-3.134 22.313-54.594 215.38-81.104 231.334-26.509 15.924-7.766 1.32-7.766 1.32"
624
+ fill="#d32011"
625
+ />
626
+ <path
627
+ d="M2219.37 1017.577c1.305 6.957-6.388 25.094 1.064 26.594 7.467 1.529 19.553 7.888 15.22 20.9-4.335 13.046-32.134 74.073-60.772 110.929-28.64 36.856-58.358 67.835-58.358 67.835 16.478-44.622 68.059-197.175 73.666-221.317 2.655-11.365 29.18-4.941 29.18-4.941"
628
+ fill="#00702d"
629
+ />
630
+ <g clip-path="url(#q)" opacity=".25">
631
+ <path d="M2159.722 1018.41c-6.327-9.327-27.395-12.895-17.709-25.34" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
632
+ </g>
633
+ <g clip-path="url(#r)" opacity=".25">
634
+ <path
635
+ d="M2203.281 1030.766c-11.081 5.667 27.38 37.814 29.208 30.618 2.055-8.486-6.673-9.476-6.088-12.025"
636
+ fill="none"
637
+ stroke="#000"
638
+ stroke-linecap="round"
639
+ stroke-width="3.334"
640
+ />
641
+ </g>
642
+ <path
643
+ d="M2102.368 1247.733c12.835-35.025 47.727-144.335 48.881-195.495.51-11.487 21.383-9.297 16.93-18.143-4.454-8.878-17.153-13.525-7.197-32.029 8.426 3.869 23.466 8.098 22.43-6.928-1.035-15.024 6.837-10.585 10.481-8.096 3.66 2.489 12.146 5.188 4.29 12.866-7.874 7.677-1.095 12.594 5.878 12.954 6.972.36 12.925-.51 14.904 3.63 1.964 4.106-1.859 5.667-6.179 6.026-4.317.36-27.514 14.155-22.49 22.462 5.007 8.308 12.415 10.977 8.651 23.451-3.778 12.476-43.079 111.769-65.525 145.745-22.462 34.007-31.054 33.557-31.054 33.557"
644
+ fill="#f0e53c"
645
+ />
646
+ <path
647
+ d="M2184.942 1284.38c-2.999-34.816-5.113-114.107-5.623-128.473-.494-14.363-27.604-49.84-29.957-27.288-2.369 22.58 15.562 150.003 15.562 150.003z"
648
+ fill="#f0e53c"
649
+ />
650
+ <path
651
+ d="M2172.302 1287.468c-7.542-49.69-12.64-178.492-25.7-182.092-13.06-3.568-21.067-2.608-24.89 8.518-3.824 11.125 12.55 66.126 12.55 66.126l19.763 68.613 5.937 39.436z"
652
+ fill="#00702d"
653
+ />
654
+ <g clip-path="url(#s)" opacity=".25">
655
+ <path d="M2115.473 1106.937c14.53.21 18.818 0 27.965 49.032 9.131 49.031 14.155 90.206 20.992 86.427 6.808-3.81 11.741-1.71 13.734 6.807 1.98 8.516 9.163 31.19 6.944 38.775-2.235 7.587-28.595 4.38-28.595 4.38l-23.392-101.782z" />
656
+ </g>
657
+ <path
658
+ d="M1758.144 1576.912c3.313 38.97 22.491 67.534 21.336 113.867l94.87-92.53c-11.096-15.88-30.319-48.162-34.938-87.567-45.447 36.526-81.268 66.23-81.268 66.23"
659
+ fill="#d32011"
660
+ />
661
+ <path
662
+ d="M1948.632 1525.796l106.819-104.226c-12.28-10.377-20.511-28.812-29.24-44.255-3.476-6.088-46.39 24.058-96.907 62.668.016 15.79-1.035 35.147 19.328 85.813"
663
+ fill="#00702d"
664
+ />
665
+ <path
666
+ d="M1874.35 1598.249l74.282-72.452c-20.364-50.666-19.313-70.025-19.329-85.813-29.494 22.536-61.552 47.937-89.89 70.698 4.618 39.405 23.841 71.688 34.936 87.567"
667
+ fill="#f0e53c"
668
+ />
669
+ <g clip-path="url(#t)" opacity=".25">
670
+ <path d="M1785.223 1676.684c27.246-67.354 128.742-171.325 255.009-253.194-58.793 24.53-198.869 135.684-223.851 167.232-31.832 40.185-31.158 85.962-31.158 85.962" />
671
+ </g>
672
+ <path d="M1750.871 1234.299l-54.533 2.729 4.018 91.945 54.535-2.73z" fill="#f0e53c" />
673
+ <path
674
+ d="M2088.078 1181.188c-45.147-48.37-131.455-130.149-245.876-115.846-61.327 7.677-96.653 30.47-125.398 59.558-28.76 29.06-16.149 32.237-34.92 45.464-18.79 13.224-23.558 49.99-23.797 50.77-.226.78 1.53 13.734-7.378 28.758-8.892 15.025-10.3 37.756-7.347 45.074 2.954 7.316-5.323 29.99-5.084 36.136.24 6.117 6.868 25.7 7.978 34.847 1.094 9.176 3.194 30.078 3.194 30.078 1.993 32.411 18.127 155.5 15.34 175.697l78.96-41.819c-3.285-58.014-8.712-177.84-15.82-195.384-7.123-17.543-20.977-37.756-12.296-51.82 21.518-34.818-9.85-39.405 20.977-47.082 21.023-5.248 351.467-54.43 351.467-54.43"
675
+ fill="#d32011"
676
+ />
677
+ <g clip-path="url(#u)" opacity=".25">
678
+ <path
679
+ d="M1638.279 1331.102c.24 6.117 6.868 25.7 7.978 34.847 1.093 9.176 3.194 30.078 3.194 30.078.689 11.268 3.087 33.505 5.817 58.561 9.072-15.819 18.338-36.45 17.992-44.564-.554-12.377 25.972-34.448 52.512-48.034 3.613-1.86 5.652-2.968 6.507-3.569-.031-.21-.044-.358-.075-.569-4.814.54-41.684 13.404-61.627 7.048-26.24-8.338-32.597-18.054-16.104-29.06 12.835-8.546 40.035-19.702 62.572-25.46 6.402-1.649 12.446-2.879 17.663-3.449 23.556-2.579 44.653-28.19 2.775-18.412-8.083 1.888-16.345 4.557-24.412 7.526-33.751 12.356-64.205 29.87-64.491 16.884-.315-14.635 14.29-46.422 73.892-64.775 6.029-1.86 12.506-3.57 19.479-5.128 27.229-6.028 39.059-11.397 41.818-15.474 4.964-7.348-19.268-10.587-37.035-6.239-27.666 6.748-93.116 18.473-79.741-3.688 13.375-22.162 69.725-28.82 100.613-27.29 30.903 1.53 9.836-21.202-15.265-21.503-25.115-.268-37.71 5.818-37.231-9.625.735-23.81 111.229-153.482 273.798-40.575 24.62 17.094 45.642 20.574 57.547 25.101-48.117-36.347-118.756-89.097-204.252-78.39-61.328 7.676-96.653 30.468-125.398 59.557-28.76 29.06-12.22 29.27-31.008 42.464-18.773 13.225-27.47 52.99-27.71 53.77-.225.78 1.53 13.734-7.377 28.758-8.892 15.025-10.301 37.756-7.347 45.074 2.954 7.316-5.323 29.99-5.084 36.136"
680
+ />
681
+ </g>
682
+ <g clip-path="url(#v)" opacity=".25">
683
+ <path d="M1727.241 1436.834c13.12-33.362-16.555-13.599-42.27 11.546-10.855 10.617-19.942 18.923-27.648 25.116 1.348 12.594 2.697 25.355 3.882 37.396 25.416-20.888 56.588-50.02 66.036-74.058" />
684
+ </g>
685
+ <g clip-path="url(#w)" opacity=".25">
686
+ <path d="M1669.288 1545.138c14.304-22.4 34.171-46.332 74.296-68.075 40.125-21.755-.075-1.543-.075-1.543l-8.052 31.233c-21.637 10.841-77.34 55.9-66.169 38.385" />
687
+ </g>
688
+ <path d="M2170.908 1312.329c.136.21.284.42.42.6-.12-.21-.271-.39-.42-.6" fill="#d32011" />
689
+ <path
690
+ d="M1984.648 1218.015c-35.161-.54-53.92 13.435-64.506 17.032-10.6 3.63-21.861 24.891-25.61 37.366-3.762 12.447-7.886 16.496-9.086 21.923-1.2 5.457-.27 10.016 0 16.134.27 6.117-4.078 21.682-4.333 32.447-.241 10.737 14.184 29.21 11.41 47.743-2.773 18.57 1.17 42.92 9.117 60.943 5.113 11.562 6.523 26.466 6.853 39.511l131.98-95.506c-42.42-34.788 8.127-157.77 96.487-88.528 4.394 1.621 14.126 11.546 27.71 10.886 7.767-.389 7.947-2.908 6.688-4.977-38.565-6.568-65.435-43.484-98.093-68.704-32.66-25.22-53.47-25.73-88.617-26.27"
691
+ fill="#00702d"
692
+ />
693
+ <path
694
+ d="M1715.71 1397.226c-.3 9.23 1.485 33.686 3.989 42.008 2.518 8.306 8.276 8.785 7.24 34.157-1.047 25.385-1.227 37.665-.208 44.518 1.02 6.853-7.377 54.04 1.8 103.476l88.3-63.905c-3.178-18.204-4.858-51.672-6.343-59.109-1.843-9.116-8.53-31.038-6.34-46.498 2.187-15.458-7.438-38.759-10.527-43.963-3.09-5.217 1.334-51.467 4.797-70.84 3.449-19.343-8.051-36.437-.48-59.827 13.946-58.239 68.54-121.604 140.768-125.984 72.227-4.377 159.614 75.661 176.903 93.956 16.628 17.633 37.425 40.724 53.77 64.895 2.804 0 12.655-.57 11.05-9.056-1.874-9.867 10.257 4.858 2.354-11.606-7.888-16.493-47.337-65.946-79.575-98.094-32.222-32.147-107.044-104.899-205.002-97.132-78.6 6.236-126.088 51.58-137.843 94.374-3.568 12.985-26.014 28.158-27.424 45.104-1.41 16.943 5.907 20.421-2.684 36.975-8.592 16.523-9.807 28.07-10.046 32.717-.735 15.175-7.198 31.818-7.094 67.115.047 16.553 2.91 17.484 2.595 26.72"
695
+ fill="#d32011"
696
+ />
697
+ <path d="M2171.358 1312.989l-.03-.06.03.06m-.45-.66c-.494-.75-1.02-1.47-1.529-2.22-.45 0-.75-.028-.75-.028s1.32.989 2.279 2.248" fill="#f0e53c" />
698
+ <path
699
+ d="M1938.705 1151.26c-72.228 4.38-126.82 67.744-140.766 125.982-7.573 23.391 3.928 40.485.48 59.828-3.465 19.373-7.888 65.623-4.799 70.84 3.09 5.203 12.715 28.505 10.527 43.963-2.19 15.46 4.497 37.382 6.341 46.497 1.485 7.438 3.164 40.906 6.343 59.11l91.661-66.366c-.33-13.045-1.739-27.949-6.852-39.51-7.948-18.024-11.89-42.374-9.118-60.945 2.775-18.532-11.65-37.005-11.409-47.742.255-10.765 4.603-26.33 4.333-32.447-.27-6.118-1.199-10.677 0-16.134 1.2-5.428 5.323-9.476 9.086-21.923 3.748-12.475 15.01-33.736 25.61-37.366 10.586-3.598 29.344-17.572 64.505-17.032 35.148.54 55.96 1.05 88.617 26.27 32.66 25.22 59.528 62.136 98.094 68.703-.016-.029-.016-.029-.03-.059a9.918 9.918 0 01-.42-.6c-.959-1.259-2.28-2.249-2.28-2.249s.301.03.75.03c-16.345-24.17-37.14-47.262-53.77-64.895-17.289-18.295-104.675-98.333-176.903-93.956"
700
+ fill="#f0e53c"
701
+ />
702
+ <g clip-path="url(#x)" opacity=".25">
703
+ <path d="M2021.64 1391.89c-117.092 60.33-282.044 190.585-288.027 217.74-.3-23.002 102.215-154.727 288.026-217.74" />
704
+ </g>
705
+ <g clip-path="url(#y)" opacity=".25">
706
+ <path d="M1733.043 1547.507c17.154-35.252 96.25-140.362 230.748-167.045-52.21 3.12-226.265 56.343-230.748 167.045" />
707
+ </g>
708
+ <g clip-path="url(#z)" opacity=".25">
709
+ <path d="M1730.734 1494.683c-13.87-36.136 57.924-183.972 236.7-161.841-74.52 1.019-198.39 54.039-236.7 161.84" />
710
+ </g>
711
+ <g clip-path="url(#A)" opacity=".25">
712
+ <path d="M1723.686 1432.127c2.97-30.844 86.232-143.218 245.52-124.326-31.669-19.133-177.04-15.084-238.022 65.945-9.402 14.725-15.445 40.359-7.498 58.38" />
713
+ </g>
714
+ <g clip-path="url(#B)" opacity=".25">
715
+ <path d="M1717.9 1365.888c10.945-29.179 50.515-107.869 208.436-87.387-43.11-18.563-146.315-34.126-195.482 22.072-8.877 10.407-12.955 65.315-12.955 65.315" />
716
+ </g>
717
+ <g clip-path="url(#C)" opacity=".25">
718
+ <path d="M1946.247 1265.217c-117.435-36.316-159.823-21.92-208.091 5.817.796-14.604 56.694-100.283 208.09-5.817" />
719
+ </g>
720
+ <g clip-path="url(#D)" opacity=".25">
721
+ <path d="M1747.917 1215.286c16.704-11.576 119.16-45.853 265.806 61.117-27.32-34.697-120.72-104.421-223.132-101.601-15.773.03-18.247-.87-16.208-9.927-8.876 9.656-7.887 16.493-11.801 25.13-3.928 8.636-14.665 25.28-14.665 25.28" />
722
+ </g>
723
+ <g clip-path="url(#E)" opacity=".25">
724
+ <path d="M1786.693 1151.2c17.455-6.088 165.343-22.852 263.525 123.374-11.56-34.697-60.142-128.952-162.733-146.824-33.272-4.14-77.655-21.443-100.792 23.45" />
725
+ </g>
726
+ <g clip-path="url(#F)" opacity=".25">
727
+ <path d="M2156.513 1292.357c-51.596-111.049-214.014-209.44-305.734-184.25 28.233-11.516 115.336-21.203 186.454 33.616 71.103 54.85 119.28 150.634 119.28 150.634" />
728
+ </g>
729
+ <g clip-path="url(#G)" opacity=".33">
730
+ <path d="M2075.304 1287.56c9.492-2.97-23.375-22.884-20.212-16.135 3.164 6.746 4.933 14.334.675 15.323-4.275.991-17.918-15.984-10.737.54 7.168 16.525-22.717-11.156-22.717-11.156s6.778 7.347 2.43 12.176c-4.333 4.8-40.124-21.8-40.124-21.8s15.009 15.382 23.105 26.93c8.098 11.543-35.731-4.05-35.731-4.05s7.183.42 24.306 14.904c17.123 14.485-24.74 8.158-24.74 8.158s3.193 7.496 16.449 15.143c13.239 7.647-35.148 16.494-35.148 16.494s26.165 7.887 32.222 15.264c6.06 7.348-36.076 11.006-23.195 10.347 32.523-1.62 71.568 18.802 70.339 16.433-13.195-25.4-8.443-82.439 43.078-98.572" />
731
+ </g>
732
+ <path
733
+ d="M1706.699 1624.894c-7.092 3.6-11.396-.735-15.055-4.813-8.171 23.78-36.931 45.657-44.307 51.835 8.127-4.978 37.904-25.265 61.565-24.396-2.16-5.158-4.288-11.05 1.5-16.733z"
734
+ fill="#cacaca"
735
+ />
736
+ <path
737
+ d="M1706.699 1624.894c-7.092 3.6-11.396-.735-15.055-4.813-8.171 23.78-36.931 45.657-44.307 51.835 8.127-4.978 37.904-25.265 61.565-24.396-2.16-5.158-4.288-11.05 1.5-16.733z"
738
+ fill="none"
739
+ stroke="#000"
740
+ stroke-width="2.223"
741
+ />
742
+ <path
743
+ d="M1714.81 1633.515c-3.014 2.174-7.437.795-9.867-3.074-2.444-3.867-1.964-8.787 1.051-10.946 3.013-2.174 7.437-.793 9.88 3.074 2.43 3.883 1.965 8.787-1.064 10.946"
744
+ fill="#cacaca"
745
+ />
746
+ <path
747
+ d="M1714.81 1633.515c-3.014 2.174-7.437.795-9.867-3.074-2.444-3.867-1.964-8.787 1.051-10.946 3.013-2.174 7.437-.793 9.88 3.074 2.43 3.883 1.965 8.787-1.064 10.946zm-6.538 13.645l-16.538-26.314"
748
+ fill="none"
749
+ stroke="#000"
750
+ stroke-width="2.223"
751
+ />
752
+ <path
753
+ d="M1715.605 1622.764c6.897 10.977 7.662 24.441 3.134 35.777 9.911-10.676 11.755-27.679 3.597-40.635-8.14-12.954-23.554-17.544-36.525-11.74 11.515-.21 22.896 5.608 29.794 16.598"
754
+ fill="#cacaca"
755
+ />
756
+ <path
757
+ d="M1715.605 1622.764c6.897 10.977 7.662 24.441 3.134 35.777 9.911-10.676 11.755-27.679 3.597-40.635-8.14-12.954-23.554-17.544-36.525-11.74 11.515-.21 22.896 5.608 29.794 16.598z"
758
+ fill="none"
759
+ stroke="#000"
760
+ stroke-width="2.223"
761
+ />
762
+ <path d="M1720.943 1510.591l-3.508.54c2.564 18.923 1.994 86.263 1.334 96.46l3.539.253c.674-10.54 1.29-77.655-1.365-97.253" fill="#f0e53c" />
763
+ <path
764
+ d="M1720.943 1510.591l-3.508.54c2.564 18.923 1.994 86.263 1.334 96.46l3.539.253c.674-10.54 1.29-77.655-1.365-97.253z"
765
+ fill="none"
766
+ stroke="#473125"
767
+ stroke-width="1.556"
768
+ />
769
+ <path
770
+ d="M1724.931 1500.545c.66 95.274-1.005 101.347-2.504 106.701-.194.749-.42 1.529-.613 2.518l3.447.824c.18-.853.36-1.543.57-2.263 1.619-5.893 3.314-11.965 2.639-107.809z"
771
+ fill="#f0e53c"
772
+ />
773
+ <path
774
+ d="M1724.931 1500.545c.66 95.274-1.005 101.347-2.504 106.701-.194.749-.42 1.529-.613 2.518l3.447.824c.18-.853.36-1.543.57-2.263 1.619-5.893 3.314-11.965 2.639-107.809z"
775
+ fill="none"
776
+ stroke="#473125"
777
+ stroke-width="1.556"
778
+ />
779
+ <path
780
+ d="M1727.405 1625.763c-1.124-4.692-3.553-10.572-8.74-14.694-5.189-4.138-.406-8.036 2.982-5.293 3.374 2.758 9.042 9.011 9.147 13.735.106 4.738-1.394 6.447-3.389 6.252"
781
+ fill="#f0e53c"
782
+ />
783
+ <path
784
+ d="M1727.405 1625.763c-1.124-4.692-3.553-10.572-8.74-14.694-5.189-4.138-.406-8.036 2.982-5.293 3.374 2.758 9.042 9.011 9.147 13.735.106 4.738-1.394 6.447-3.389 6.252z"
785
+ fill="none"
786
+ stroke="#473125"
787
+ stroke-width="1.556"
788
+ />
789
+ <path
790
+ d="M1715.65 1510.861c-2.25-5.638-11.667-38.82-15.325-41.475 4.798-1.662 8.097-2.067 11.096-4.347 3-2.294 3.854-3.043 7.183-2.968 0 0 6.822 39.24 3.838 47.202z"
791
+ fill="#f0e53c"
792
+ />
793
+ <path
794
+ d="M1715.65 1510.861c-2.25-5.638-11.667-38.82-15.325-41.475 4.798-1.662 8.097-2.067 11.096-4.347 3-2.294 3.854-3.043 7.183-2.968 0 0 6.822 39.24 3.838 47.202z"
795
+ fill="none"
796
+ stroke="#473125"
797
+ stroke-width="1.556"
798
+ />
799
+ <path
800
+ d="M1720.268 1509.782l-8.862-32.657m-1.244 9.67l-4.889-18.952m7.017-3.463l8.818 38.325"
801
+ fill="none"
802
+ stroke="#473125"
803
+ stroke-linecap="round"
804
+ stroke-width="1.556"
805
+ />
806
+ <path
807
+ d="M1724.016 1509.917c-.224-1.68-2.579-2.699-5.248-2.278-2.669.403-4.648 2.114-4.423 3.792.225 1.68 2.58 2.7 5.248 2.294 2.67-.419 4.65-2.114 4.423-3.808"
808
+ fill="#f0e53c"
809
+ />
810
+ <path
811
+ d="M1724.016 1509.917c-.224-1.68-2.579-2.699-5.248-2.278-2.669.403-4.648 2.114-4.423 3.792.225 1.68 2.58 2.7 5.248 2.294 2.67-.419 4.65-2.114 4.423-3.808z"
812
+ fill="none"
813
+ stroke="#473125"
814
+ stroke-width="1.556"
815
+ />
816
+ <path
817
+ d="M1722.758 1500.651c-1.44-6.957-3.014-7.588-5.953-44.414 5.233-1.693 6.687 1.095 9.147 1.68 2.458.585 10.51-2.759 10.33 3.223-.18 5.984-4.812 35.507-7.362 39.212z"
818
+ fill="#f0e53c"
819
+ />
820
+ <path
821
+ d="M1722.758 1500.651c-1.44-6.957-3.014-7.588-5.953-44.414 5.233-1.693 6.687 1.095 9.147 1.68 2.458.585 10.51-2.759 10.33 3.223-.18 5.984-4.812 35.507-7.362 39.212z"
822
+ fill="none"
823
+ stroke="#473125"
824
+ stroke-width="1.556"
825
+ />
826
+ <path
827
+ d="M1723.912 1487.156l.284-23.946m-3.508 5.862l-.585-13.375m6.058 42.239l2.578-26.885m4.528-7.721l.046-5.759"
828
+ fill="none"
829
+ stroke="#473125"
830
+ stroke-linecap="round"
831
+ stroke-width="1.556"
832
+ />
833
+ <path
834
+ d="M1731.844 1501.041c.016-1.71-2.16-3.105-4.844-3.134-2.713-.015-4.903 1.334-4.918 3.043-.014 1.695 2.16 3.09 4.858 3.12 2.7.03 4.89-1.336 4.904-3.029"
835
+ fill="#f0e53c"
836
+ />
837
+ <path
838
+ d="M1731.844 1501.041c.016-1.71-2.16-3.105-4.844-3.134-2.713-.015-4.903 1.334-4.918 3.043-.014 1.695 2.16 3.09 4.858 3.12 2.7.03 4.89-1.336 4.904-3.029z"
839
+ fill="none"
840
+ stroke="#473125"
841
+ stroke-width="1.556"
842
+ />
843
+ <path
844
+ d="M1759.763 1696.178c-6.551 4.647-11.396 1.019-15.55-2.445-4.887 24.77-30.422 50.846-36.885 58.089 7.363-6.164 34.113-30.815 57.639-33.603-2.835-4.768-5.727-10.271-.765-16.78z"
845
+ fill="#cacaca"
846
+ />
847
+ <path
848
+ d="M1759.763 1696.178c-6.551 4.647-11.396 1.019-15.55-2.445-4.887 24.77-30.422 50.846-36.885 58.089 7.363-6.164 34.113-30.815 57.639-33.603-2.835-4.768-5.727-10.271-.765-16.78z"
849
+ fill="none"
850
+ stroke="#000"
851
+ stroke-width="2.223"
852
+ />
853
+ <path
854
+ d="M1768.94 1703.465c-2.684 2.609-7.243 1.933-10.181-1.53-2.923-3.463-3.12-8.381-.42-11.005 2.684-2.612 7.242-1.92 10.18 1.528 2.925 3.464 3.12 8.396.42 11.006"
855
+ fill="#cacaca"
856
+ />
857
+ <path
858
+ d="M1768.94 1703.465c-2.684 2.609-7.243 1.933-10.181-1.53-2.923-3.463-3.12-8.381-.42-11.005 2.684-2.612 7.242-1.92 10.18 1.528 2.925 3.464 3.12 8.396.42 11.006zm-4.634 14.499l-19.897-23.497"
859
+ fill="none"
860
+ stroke="#000"
861
+ stroke-width="2.223"
862
+ />
863
+ <path
864
+ d="M1768.28 1692.698c8.307 9.791 10.87 23.016 7.917 34.921 8.368-12.085 7.902-29.194-1.89-40.77-9.806-11.56-25.67-13.734-37.724-5.997 11.35-1.979 23.39 2.04 31.697 11.846"
865
+ fill="#cacaca"
866
+ />
867
+ <path
868
+ d="M1768.28 1692.698c8.307 9.791 10.87 23.016 7.917 34.921 8.368-12.085 7.902-29.194-1.89-40.77-9.806-11.56-25.67-13.734-37.724-5.997 11.35-1.979 23.39 2.04 31.697 11.846z"
869
+ fill="none"
870
+ stroke="#000"
871
+ stroke-width="2.223"
872
+ />
873
+ <path
874
+ d="M1780.23 1578.35c1.2 95.275-.435 101.348-1.904 106.716-.195.764-.404 1.545-.6 2.535l3.45.794c.179-.87.359-1.545.554-2.264 1.604-5.908 3.254-11.996 2.055-107.824z"
875
+ fill="#f0e53c"
876
+ />
877
+ <path
878
+ d="M1780.23 1578.35c1.2 95.275-.435 101.348-1.904 106.716-.195.764-.404 1.545-.6 2.535l3.45.794c.179-.87.359-1.545.554-2.264 1.604-5.908 3.254-11.996 2.055-107.824z"
879
+ fill="none"
880
+ stroke="#473125"
881
+ stroke-width="1.556"
882
+ />
883
+ <path
884
+ d="M1780.365 1693.853c-1.753-4.468-4.934-9.911-10.63-13.195-5.684-3.298-1.47-7.902 2.248-5.698 3.703 2.22 10.166 7.528 10.902 12.19.75 4.664-.525 6.583-2.52 6.703"
885
+ fill="#f0e53c"
886
+ />
887
+ <path
888
+ d="M1780.365 1693.853c-1.753-4.468-4.934-9.911-10.63-13.195-5.684-3.298-1.47-7.902 2.248-5.698 3.703 2.22 10.166 7.528 10.902 12.19.75 4.664-.525 6.583-2.52 6.703z"
889
+ fill="none"
890
+ stroke="#473125"
891
+ stroke-width="1.556"
892
+ />
893
+ <path
894
+ d="M1778.055 1578.486c-1.483-6.957-3.059-7.586-6.208-44.383 5.235-1.724 6.704 1.05 9.162 1.62 2.46.57 10.497-2.819 10.348 3.148-.135 5.983-4.619 35.553-7.138 39.256z"
895
+ fill="#f0e53c"
896
+ />
897
+ <path
898
+ d="M1778.055 1578.486c-1.483-6.957-3.059-7.586-6.208-44.383 5.235-1.724 6.704 1.05 9.162 1.62 2.46.57 10.497-2.819 10.348 3.148-.135 5.983-4.619 35.553-7.138 39.256z"
899
+ fill="none"
900
+ stroke="#473125"
901
+ stroke-width="1.556"
902
+ />
903
+ <path
904
+ d="M1779.137 1564.976l.149-23.945m-3.478 5.877l-.66-13.359m6.296 42.193l2.43-26.915m4.498-7.737v-5.757"
905
+ fill="none"
906
+ stroke="#473125"
907
+ stroke-linecap="round"
908
+ stroke-width="1.556"
909
+ />
910
+ <path
911
+ d="M1787.158 1578.8c0-1.693-2.174-3.087-4.874-3.087-2.7-.015-4.887 1.348-4.902 3.059 0 1.709 2.19 3.088 4.874 3.088 2.699.015 4.887-1.364 4.902-3.06"
912
+ fill="#f0e53c"
913
+ />
914
+ <path
915
+ d="M1787.158 1578.8c0-1.693-2.174-3.087-4.874-3.087-2.7-.015-4.887 1.348-4.902 3.059 0 1.709 2.19 3.088 4.874 3.088 2.699.015 4.887-1.364 4.902-3.06z"
916
+ fill="none"
917
+ stroke="#473125"
918
+ stroke-width="1.556"
919
+ />
920
+ <path
921
+ d="M1644.187 1571.62c-7.467 2.593-11.216-2.28-14.35-6.824-10.931 22.462-42.058 40.245-50.111 45.358 8.652-3.823 40.59-19.882 63.95-15.804-1.528-5.397-2.922-11.544 3.479-16.39z"
922
+ fill="#cacaca"
923
+ />
924
+ <path
925
+ d="M1644.187 1571.62c-7.467 2.593-11.216-2.28-14.35-6.824-10.931 22.462-42.058 40.245-50.111 45.358 8.652-3.823 40.59-19.882 63.95-15.804-1.528-5.397-2.922-11.544 3.479-16.39z"
926
+ fill="none"
927
+ stroke="#000"
928
+ stroke-width="2.223"
929
+ />
930
+ <path
931
+ d="M1651.22 1581.276c-3.254 1.738-7.483-.226-9.433-4.41-1.948-4.167-.9-8.965 2.355-10.705 3.254-1.739 7.467.224 9.415 4.393 1.966 4.184.916 8.982-2.338 10.722"
932
+ fill="#cacaca"
933
+ />
934
+ <path
935
+ d="M1651.22 1581.276c-3.254 1.738-7.483-.226-9.433-4.41-1.948-4.167-.9-8.965 2.355-10.705 3.254-1.739 7.467.224 9.415 4.393 1.966 4.184.916 8.982-2.338 10.722zm-8.112 12.624l-13.271-28.354"
936
+ fill="none"
937
+ stroke="#000"
938
+ stroke-width="2.223"
939
+ />
940
+ <path
941
+ d="M1653.289 1570.704c5.532 11.831 4.679 25.295-1.155 35.926 11.11-9.236 14.949-25.864 8.41-39.824-6.536-13.96-21.275-20.602-34.83-16.615 11.44 1.35 22.026 8.683 27.575 20.513"
942
+ fill="#cacaca"
943
+ />
944
+ <path
945
+ d="M1653.289 1570.704c5.532 11.831 4.679 25.295-1.155 35.926 11.11-9.236 14.949-25.864 8.41-39.824-6.536-13.96-21.275-20.602-34.83-16.615 11.44 1.35 22.026 8.683 27.575 20.513z"
946
+ fill="none"
947
+ stroke="#000"
948
+ stroke-width="2.223"
949
+ />
950
+ <path d="M1653.693 1451.379l-3.45.81c3.84 19.912 7.829 91.48 7.858 102.351l3.539.03c-.03-11.245-3.958-82.544-7.947-103.191" fill="#f0e53c" />
951
+ <path
952
+ d="M1653.693 1451.379l-3.45.81c3.84 19.912 7.829 91.48 7.858 102.351l3.539.03c-.03-11.245-3.958-82.544-7.947-103.191z"
953
+ fill="none"
954
+ stroke="#473125"
955
+ stroke-width="1.605"
956
+ />
957
+ <path
958
+ d="M1657.008 1440.449c7.106 101.12 5.832 107.689 4.723 113.477-.166.809-.33 1.648-.465 2.714l3.508.645c.12-.93.255-1.665.406-2.444 1.229-6.358 2.504-12.926-4.634-114.663z"
959
+ fill="#f0e53c"
960
+ />
961
+ <path
962
+ d="M1657.008 1440.449c7.106 101.12 5.832 107.689 4.723 113.477-.166.809-.33 1.648-.465 2.714l3.508.645c.12-.93.255-1.665.406-2.444 1.229-6.358 2.504-12.926-4.634-114.663z"
963
+ fill="none"
964
+ stroke="#473125"
965
+ stroke-width="1.605"
966
+ />
967
+ <path
968
+ d="M1664.623 1575.292c-.554-4.813-2.263-10.96-6.913-15.759-4.663-4.812.557-8.037 3.584-4.843 3.014 3.194 7.903 10.166 7.438 14.875-.45 4.707-2.144 6.192-4.109 5.727"
969
+ fill="#f0e53c"
970
+ />
971
+ <path
972
+ d="M1664.623 1575.292c-.554-4.813-2.263-10.96-6.913-15.759-4.663-4.812.557-8.037 3.584-4.843 3.014 3.194 7.903 10.166 7.438 14.875-.45 4.707-2.144 6.192-4.109 5.727z"
973
+ fill="none"
974
+ stroke="#473125"
975
+ stroke-width="1.556"
976
+ />
977
+ <path
978
+ d="M1648.356 1451.379c-2.564-5.458-13.991-37.906-17.814-40.32 4.694-1.979 7.962-2.624 10.826-5.097 2.848-2.49 3.659-3.3 6.988-3.464 0 0 9.19 38.671 6.702 46.842z"
979
+ fill="#f0e53c"
980
+ />
981
+ <path
982
+ d="M1648.356 1451.379c-2.564-5.458-13.991-37.906-17.814-40.32 4.694-1.979 7.962-2.624 10.826-5.097 2.848-2.49 3.659-3.3 6.988-3.464 0 0 9.19 38.671 6.702 46.842z"
983
+ fill="none"
984
+ stroke="#473125"
985
+ stroke-width="1.556"
986
+ />
987
+ <path
988
+ d="M1652.913 1449.985l-10.825-31.969m-.66 9.732l-6.043-18.562m6.792-3.944l11.141 37.62"
989
+ fill="none"
990
+ stroke="#473125"
991
+ stroke-linecap="round"
992
+ stroke-width="1.556"
993
+ />
994
+ <path
995
+ d="M1656.662 1449.865c-.33-1.665-2.744-2.52-5.368-1.919-2.655.6-4.528 2.442-4.184 4.093.33 1.665 2.73 2.518 5.369 1.92 2.638-.6 4.513-2.429 4.183-4.094"
996
+ fill="#f0e53c"
997
+ />
998
+ <path
999
+ d="M1656.662 1449.865c-.33-1.665-2.744-2.52-5.368-1.919-2.655.6-4.528 2.442-4.184 4.093.33 1.665 2.73 2.518 5.369 1.92 2.638-.6 4.513-2.429 4.183-4.094z"
1000
+ fill="none"
1001
+ stroke="#473125"
1002
+ stroke-width="1.556"
1003
+ />
1004
+ <path
1005
+ d="M1654.848 1440.719c-1.874-6.853-3.478-7.378-8.652-43.912 5.128-2.07 6.733.63 9.22 1.02 2.506.419 10.333-3.48 10.513 2.519.18 5.96-2.64 35.754-4.963 39.622z"
1006
+ fill="#f0e53c"
1007
+ />
1008
+ <path
1009
+ d="M1654.848 1440.719c-1.874-6.853-3.478-7.378-8.652-43.912 5.128-2.07 6.733.63 9.22 1.02 2.506.419 10.333-3.48 10.513 2.519.18 5.96-2.64 35.754-4.963 39.622z"
1010
+ fill="none"
1011
+ stroke="#473125"
1012
+ stroke-width="1.556"
1013
+ />
1014
+ <path
1015
+ d="M1655.162 1427.163l-1.168-23.916m4.062 34.518l.944-27.02m4.065-8.008l-.314-5.75"
1016
+ fill="none"
1017
+ stroke="#473125"
1018
+ stroke-linecap="round"
1019
+ stroke-width="1.556"
1020
+ />
1021
+ <path
1022
+ d="M1663.934 1440.449c-.089-1.695-2.338-2.924-5.038-2.774-2.683.165-4.798 1.664-4.707 3.373.089 1.694 2.338 2.94 5.037 2.774 2.7-.15 4.799-1.664 4.708-3.373"
1023
+ fill="#f0e53c"
1024
+ />
1025
+ <path
1026
+ d="M1663.934 1440.449c-.089-1.695-2.338-2.924-5.038-2.774-2.683.165-4.798 1.664-4.707 3.373.089 1.694 2.338 2.94 5.037 2.774 2.7-.15 4.799-1.664 4.708-3.373z"
1027
+ fill="none"
1028
+ stroke="#473125"
1029
+ stroke-width="1.556"
1030
+ />
1031
+ <path d="M1732.204 1357.852c.03.211.044.36.075.57.645-.48.585-.63-.075-.57" />
1032
+ <path
1033
+ d="M2166.904 1270.466c-13.12-49.992-49.946-142.507-50.216-271.398-.464-10.345-15.384-15.354-15.188-25.13.208-9.807 3.237-9.957-.75-17.245-2.295 7.019-9.702 9.687-9.403 16.584.301 6.897 6.374 22.701-.359 28.79-6.717 6.086-16.074 13.464-12.956 35.745 3.136 22.313 54.595 215.38 81.105 231.334 26.51 15.924 7.767 1.32 7.767 1.32"
1034
+ fill="#d32011"
1035
+ />
1036
+ <path
1037
+ d="M2032.542 1017.833c-1.304 6.957 6.446 24.838-1.007 26.338-7.466 1.529-19.552 7.888-15.22 20.9 4.334 13.046 32.135 74.074 60.773 110.929 28.64 36.856 58.358 67.835 58.358 67.835-16.478-44.622-68.06-197.175-73.666-221.316-2.655-11.366-29.238-4.686-29.238-4.686"
1038
+ fill="#00702d"
1039
+ />
1040
+ <g clip-path="url(#H)" opacity=".25">
1041
+ <path d="M2092.247 1018.41c6.327-9.327 27.395-12.895 17.71-25.34" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
1042
+ </g>
1043
+ <g clip-path="url(#I)" opacity=".25">
1044
+ <path
1045
+ d="M2048.689 1030.766c11.08 5.667-27.38 37.814-29.208 30.618-2.055-8.486 6.672-9.476 6.088-12.025"
1046
+ fill="none"
1047
+ stroke="#000"
1048
+ stroke-linecap="round"
1049
+ stroke-width="3.334"
1050
+ />
1051
+ </g>
1052
+ <path
1053
+ d="M2149.601 1247.733c-12.82-35.025-47.727-144.335-48.882-195.495-.51-11.487-21.382-9.297-16.93-18.143 4.455-8.878 17.154-13.525 7.2-32.029-8.428 3.869-23.467 8.098-22.432-6.928 1.048-15.024-6.839-10.585-10.482-8.096-3.658 2.489-12.146 5.188-4.289 12.866 7.872 7.677 1.095 12.594-5.877 12.954-6.973.36-12.926-.51-14.905 3.63-1.963 4.106 1.86 5.667 6.18 6.026 4.317.36 27.513 14.155 22.49 22.462-5.009 8.308-12.416 10.977-8.653 23.451 3.78 12.476 43.08 111.769 65.526 145.745 22.461 34.007 31.054 33.557 31.054 33.557"
1054
+ fill="#f0e53c"
1055
+ />
1056
+ <g clip-path="url(#J)" opacity=".25">
1057
+ <path d="M2164.313 1044.14c-30.989 22.858 15.107 14.98 22.171-48.588" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
1058
+ </g>
1059
+ <g clip-path="url(#K)" opacity=".25">
1060
+ <path d="M2190.998 1049.879c17.604 27.619-28.004.726 4.167-51.891" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
1061
+ </g>
1062
+ <g clip-path="url(#L)" opacity=".25">
1063
+ <path d="M2087.585 1044.127c30.989 22.859-15.107 14.98-22.171-48.588" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
1064
+ </g>
1065
+ <g clip-path="url(#M)" opacity=".25">
1066
+ <path d="M2060.9 1049.866c-17.603 27.619 28.003.726-4.167-51.891" fill="none" stroke="#000" stroke-linecap="round" stroke-width="3.334" />
1067
+ </g>
1068
+ <g clip-path="url(#N)" opacity=".25">
1069
+ <path d="M2303.763 1524.774l-.41 1.023 74.266 72.452.65-.933z" />
1070
+ </g>
1071
+ <g clip-path="url(#O)" opacity=".25">
1072
+ <path d="M1948.207 1524.774l.41 1.023-74.267 72.452-.648-.933z" />
1073
+ </g>
1074
+ <g clip-path="url(#P)" opacity=".25">
1075
+ <path d="M1908.493 1489.87v1.244l-91.661 66.366-.21-1.233z" />
1076
+ </g>
1077
+ <g clip-path="url(#Q)" opacity=".25">
1078
+ <path d="M2343.512 1490.704l-.035 1.216 91.662 65.56.201-1.234z" />
1079
+ </g>
1080
+ <g clip-path="url(#R)" opacity=".25">
1081
+ <path
1082
+ d="M2218.063 1016.922c-1.33-2.784-5.212-2.855-10.125-2.944-1.263-.024-2.568-.047-3.929-.119-4.905-.25-8.828-2.414-9.995-5.506-.726-1.927-.715-5.08 3.47-9.16 2.112-2.066 3.091-3.85 2.906-5.305-.26-2.054-2.818-3.522-5.074-4.818-.72-.413-1.399-.803-1.986-1.203-.877-.598-3.543-2.42-5.64-2.42-.773 0-1.383.251-1.865.77-.86.92-1.804 3.204-1.415 8.852.273 3.97-.523 6.986-2.368 8.962-1.668 1.787-4.144 2.693-7.359 2.694-5.179 0-11.113-2.378-14.164-3.779l.463-.88c3.9 1.791 9.217 3.66 13.7 3.66 5.204-.002 9.286-2.518 8.731-10.588-.576-8.355 1.602-10.69 4.277-10.69 2.135 0 4.586 1.49 6.203 2.593 3.66 2.49 12.147 5.19 4.29 12.866-7.873 7.677-1.095 12.595 5.878 12.954 6.972.361 12.925-.509 14.904 3.63 0 0 1.124 2.05.11 3.521 0 0-.106.26-.76.833 0 0 .822-1.813-.252-3.923"
1083
+ fill="#292723"
1084
+ />
1085
+ </g>
1086
+ <g clip-path="url(#S)" opacity=".25">
1087
+ <path
1088
+ d="M2033.907 1016.922c1.332-2.784 5.212-2.855 10.125-2.944 1.263-.024 2.569-.047 3.929-.119 4.905-.25 8.828-2.414 9.994-5.506.727-1.927.716-5.08-3.468-9.16-2.114-2.066-3.092-3.85-2.907-5.305.26-2.054 2.818-3.522 5.074-4.818.72-.413 1.4-.803 1.987-1.203.876-.598 3.542-2.42 5.639-2.42.772 0 1.382.251 1.865.77.86.92 1.804 3.204 1.415 8.852-.274 3.97.523 6.986 2.368 8.962 1.668 1.787 4.144 2.693 7.359 2.694 5.178 0 11.113-2.378 14.163-3.779l-.462-.88c-3.9 1.791-9.216 3.66-13.701 3.66-5.203-.002-9.285-2.518-8.73-10.588.576-8.355-1.602-10.69-4.277-10.69-2.135 0-4.586 1.49-6.203 2.593-3.66 2.49-12.147 5.19-4.29 12.866 7.873 7.677 1.094 12.595-5.878 12.954-6.972.361-12.925-.509-14.904 3.63 0 0-1.125 2.05-.11 3.521 0 0 .106.26.76.833 0 0-.822-1.813.252-3.923"
1089
+ fill="#292723"
1090
+ />
1091
+ </g>
1092
+ <path
1093
+ d="M2038.478 1170.424c-3.209-.21-6.418.089-9.477.989l1.29 4.468c10.765-3.15 23.825 2.31 29.104 12.146 5.308 9.866 1.334 21.44-10.87 31.757l2.998 3.569c19.942-16.853 15.01-31.848 11.981-37.515-4.769-8.878-14.86-14.756-25.026-15.414"
1094
+ fill="#ced0d1"
1095
+ />
1096
+ <path
1097
+ d="M2038.478 1170.424c-3.209-.21-6.418.089-9.477.989l1.29 4.468c10.765-3.15 23.825 2.31 29.104 12.146 5.308 9.866 1.334 21.44-10.87 31.757l2.998 3.569c19.942-16.853 15.01-31.848 11.981-37.515-4.769-8.878-14.86-14.756-25.026-15.414z"
1098
+ fill="none"
1099
+ stroke="#000"
1100
+ stroke-width="1.549"
1101
+ />
1102
+ <path
1103
+ d="M2037.069 1202.33c2.414-5.277 5.937-11.515 13.719-11.754-5.576-1.92-12.58-5.49-17.032 2.999-4.44 8.517 3.313 8.756 3.313 8.756"
1104
+ fill="#ced0d1"
1105
+ />
1106
+ <path
1107
+ d="M2037.069 1202.33c2.414-5.277 5.937-11.515 13.719-11.754-5.576-1.92-12.58-5.49-17.032 2.999-4.44 8.517 3.313 8.756 3.313 8.756z"
1108
+ fill="none"
1109
+ stroke="#000"
1110
+ stroke-width="1.549"
1111
+ />
1112
+ <path
1113
+ d="M1909.632 1054.966c17.648 26.75 34.562 52.72 40.86 63.247 6.297 10.496 25.054 32.087 40.004 40.754 14.965 8.666 15.67 21.502 18.158 30.798 2.49 9.297 8.442 48.522 23.856 61.957 15.414 13.464 9.326-.15 22.266 15.443 12.941 15.624 240.96 289.548 240.96 289.548l11.394-7.992-212.093-267.999.255-3.87s-41.985-46.273-42.39-51.73c-.42-5.458-4.229-6.477-6.297-10.496-2.07-4.019-13.57-17.993-13.676-39.735-.12-21.74-11.709-22.522-14.348-29.659-2.624-7.168-42-104.69-49.932-125.682-11.56 10.585-59.017 35.416-59.017 35.416"
1114
+ fill="#473125"
1115
+ />
1116
+ <path
1117
+ d="M1909.632 1054.966c17.648 26.75 34.562 52.72 40.86 63.247 6.297 10.496 25.054 32.087 40.004 40.754 14.965 8.666 15.67 21.502 18.158 30.798 2.49 9.297 8.442 48.522 23.856 61.957 15.414 13.464 9.326-.15 22.266 15.443 12.941 15.624 240.96 289.548 240.96 289.548l11.394-7.992-212.093-267.999.255-3.87s-41.985-46.273-42.39-51.73c-.42-5.458-4.229-6.477-6.297-10.496-2.07-4.019-13.57-17.993-13.676-39.735-.12-21.74-11.709-22.522-14.348-29.659-2.624-7.168-42-104.69-49.932-125.682-11.56 10.585-59.017 35.416-59.017 35.416z"
1118
+ fill="none"
1119
+ stroke="#272425"
1120
+ stroke-width="1.549"
1121
+ />
1122
+ <path
1123
+ d="M1972.937 1030.616a1560.243 1560.243 0 01-4.289-11.065c-11.56 10.585-59.016 35.416-59.016 35.416a6148.69 6148.69 0 0110.015 15.205c33.56-20.364 53.29-39.556 53.29-39.556"
1124
+ fill="#f0e53c"
1125
+ />
1126
+ <path
1127
+ d="M1972.937 1030.616a1560.243 1560.243 0 01-4.289-11.065c-11.56 10.585-59.016 35.416-59.016 35.416a6148.69 6148.69 0 0110.015 15.205c33.56-20.364 53.29-39.556 53.29-39.556z"
1128
+ fill="none"
1129
+ stroke="#000"
1130
+ stroke-width="1.549"
1131
+ />
1132
+ <path
1133
+ d="M1919.647 1070.171a6052.67 6052.67 0 00-10.015-15.205s18.187-9.536 34.802-19.281c-.796 5.966-12.806 15.534-15.28 17.692-2.475 2.159-3.988 5.519-4.199 8.697-.209 3.177-5.308 8.097-5.308 8.097"
1134
+ fill="#ced0d1"
1135
+ />
1136
+ <path
1137
+ d="M1919.647 1070.171a6052.67 6052.67 0 00-10.015-15.205s18.187-9.536 34.802-19.281c-.796 5.966-12.806 15.534-15.28 17.692-2.475 2.159-3.988 5.519-4.199 8.697-.209 3.177-5.308 8.097-5.308 8.097z"
1138
+ fill="none"
1139
+ stroke="#272425"
1140
+ stroke-width="1.549"
1141
+ />
1142
+ <path d="M2042.286 1232.98l4.978-4.858 45.898 57.427-4.018 5.91z" fill="#ced0d1" />
1143
+ <path d="M2042.286 1232.98l4.978-4.858 45.898 57.427-4.018 5.91z" fill="none" stroke="#000" stroke-width="1.549" />
1144
+ <path d="M2049.874 1261.738l-4.064 4.078 252.595 305.518 2.938-5.503z" fill="#ced0d1" />
1145
+ <path d="M2049.874 1261.738l-4.064 4.078 252.595 305.518 2.938-5.503z" fill="none" stroke="#000" stroke-width="1.549" />
1146
+ <path
1147
+ d="M2136.242 1330.472c1.095-.959 1.274-2.549.403-3.539l-6.476-7.467c-.886-1.019-2.475-1.05-3.583-.119l-21.383 18.562c-1.095.96-1.274 2.55-.405 3.54l6.478 7.466c.869 1.02 2.473 1.05 3.568.12z"
1148
+ fill="#ced0d1"
1149
+ />
1150
+ <path
1151
+ d="M2136.242 1330.472c1.095-.959 1.274-2.549.403-3.539l-6.476-7.467c-.886-1.019-2.475-1.05-3.583-.119l-21.383 18.562c-1.095.96-1.274 2.55-.405 3.54l6.478 7.466c.869 1.02 2.473 1.05 3.568.12z"
1152
+ fill="none"
1153
+ stroke="#000"
1154
+ stroke-width="1.262"
1155
+ />
1156
+ <path
1157
+ d="M2224.557 1441.498a2.417 2.417 0 00.24-3.403l-6.477-7.468a2.406 2.406 0 00-3.404-.255l-19.507 16.914a2.404 2.404 0 00-.226 3.404l6.463 7.467c.884 1.004 2.4 1.124 3.403.255z"
1158
+ fill="#ced0d1"
1159
+ />
1160
+ <path
1161
+ d="M2224.557 1441.498a2.417 2.417 0 00.24-3.403l-6.477-7.468a2.406 2.406 0 00-3.404-.255l-19.507 16.914a2.404 2.404 0 00-.226 3.404l6.463 7.467c.884 1.004 2.4 1.124 3.403.255z"
1162
+ fill="none"
1163
+ stroke="#000"
1164
+ stroke-width="1.205"
1165
+ />
1166
+ <path d="M2087.165 1278.381a4.118 4.118 0 003.854 4.38 4.118 4.118 0 10.539-8.218 4.117 4.117 0 00-4.393 3.839" fill="#ced0d1" />
1167
+ <path
1168
+ d="M2087.165 1278.381a4.118 4.118 0 003.854 4.38 4.118 4.118 0 10.539-8.218 4.117 4.117 0 00-4.393 3.839z"
1169
+ fill="none"
1170
+ stroke="#000"
1171
+ stroke-width="1.549"
1172
+ />
1173
+ <path
1174
+ d="M2034.55 1236.608a4.901 4.901 0 004.573 5.217c2.7.181 5.038-1.889 5.218-4.588a4.912 4.912 0 00-4.573-5.217 4.895 4.895 0 00-5.219 4.588"
1175
+ fill="#ced0d1"
1176
+ />
1177
+ <path
1178
+ d="M2034.55 1236.608a4.901 4.901 0 004.573 5.217c2.7.181 5.038-1.889 5.218-4.588a4.912 4.912 0 00-4.573-5.217 4.895 4.895 0 00-5.219 4.588z"
1179
+ fill="none"
1180
+ stroke="#000"
1181
+ stroke-width="1.549"
1182
+ />
1183
+ <path
1184
+ d="M2000.153 1243.895c6.117 1.08 23.9-21.832 25.52-3.029-2.43-.18-9.895-2.039-12.116.091-5.818 5.606 5.848 4.167 5.999 6.056.329 4.17-1.154 8.187-6.448 8.548-9.012.6-2.055-6.298-4.558-9.297-.135-.15.404-.42.45-.51-4.215 1.56-6.148-.06-8.818-2.099"
1185
+ fill="#ced0d1"
1186
+ stroke="#000"
1187
+ stroke-width="1.549"
1188
+ />
1189
+ <path d="M2321.302 1572.054l-3.645 2.893 24.952 31.264 3.643-2.894z" fill="#ced0d1" />
1190
+ <path d="M2321.302 1572.054l-3.645 2.893 24.952 31.264 3.643-2.894z" fill="none" stroke="#000" stroke-width="1.549" />
1191
+ <path
1192
+ d="M2017.697 1260.598c2.443-2.488 4.557-4.438 5.517-8.155 3.569 4.946 10.542 2.907 11.8-3.57.72 1.38 2.204 2.85 2.789 4.2-7.631-13.376 13.466-4.11 13.51 4.288.045 12.654-18.787 6.416-12.04-3.63-5.503 1.86-16.268 13.166-21.576 6.867"
1193
+ fill="#ced0d1"
1194
+ stroke="#000"
1195
+ stroke-width="1.549"
1196
+ />
1197
+ <path d="M2307.866 1565.23l10.062 12.057 5.217-4.32-11.425-15.203z" fill="#ced0d1" />
1198
+ <path d="M2307.866 1565.23l10.062 12.057 5.217-4.32-11.425-15.203z" fill="none" stroke="#000" stroke-width="1.549" />
1199
+ <path
1200
+ d="M2295.677 1577.362c.943-4.56 3.731-9.581-.752-16.09-4.497-6.522 3.75-17.663 6.48-19.791 2.726-2.13 12.04 13.763 12.04 13.763s3.913 3.375-5.759 12.566l36.826 45.912-2.159 44.369 60.727 103.386-79.485-101.526 2.473-41.235-29.687-36.392s-1.396-1.68-.705-4.962"
1201
+ fill="#ced0d1"
1202
+ />
1203
+ <path
1204
+ d="M2295.677 1577.362c.943-4.56 3.731-9.581-.752-16.09-4.497-6.522 3.75-17.663 6.48-19.791 2.726-2.13 12.04 13.763 12.04 13.763s3.913 3.375-5.759 12.566l36.826 45.912-2.159 44.369 60.727 103.386-79.485-101.526 2.473-41.235-29.687-36.392s-1.396-1.68-.705-4.962z"
1205
+ fill="none"
1206
+ stroke="#000"
1207
+ stroke-width="1.549"
1208
+ />
1209
+ <path
1210
+ d="M2316.28 1578.501l-5.595 6.583 27.56 33.813m-14.65 41.053c5.534 2.445 12.91 4.484 18.759-1.858m-16.286-39.376c3.001 1.485 8.443 5.474 18.444-4.993"
1211
+ fill="none"
1212
+ stroke="#000"
1213
+ stroke-width="1.549"
1214
+ />
1215
+ <path
1216
+ d="M1980.66 1149.46c-3.209-.238-6.434.03-9.507.9l1.274 4.468c10.782-3.027 23.796 2.52 29 12.416 5.203 9.927 1.14 21.473-11.157 31.668l2.97 3.569c20.077-16.673 15.294-31.698 12.295-37.396-4.693-8.907-14.724-14.873-24.875-15.624"
1217
+ fill="#ced0d1"
1218
+ />
1219
+ <path
1220
+ d="M1980.66 1149.46c-3.209-.238-6.434.03-9.507.9l1.274 4.468c10.782-3.027 23.796 2.52 29 12.416 5.203 9.927 1.14 21.473-11.157 31.668l2.97 3.569c20.077-16.673 15.294-31.698 12.295-37.396-4.693-8.907-14.724-14.873-24.875-15.624z"
1221
+ fill="none"
1222
+ stroke="#000"
1223
+ stroke-width="1.549"
1224
+ />
1225
+ <path
1226
+ d="M1978.966 1181.368c2.459-5.246 6.028-11.454 13.81-11.664-5.548-1.95-12.52-5.61-17.035 2.879-4.527 8.457 3.225 8.785 3.225 8.785"
1227
+ fill="#ced0d1"
1228
+ />
1229
+ <path
1230
+ d="M1978.966 1181.368c2.459-5.246 6.028-11.454 13.81-11.664-5.548-1.95-12.52-5.61-17.035 2.879-4.527 8.457 3.225 8.785 3.225 8.785z"
1231
+ fill="none"
1232
+ stroke="#000"
1233
+ stroke-width="1.549"
1234
+ />
1235
+ <path
1236
+ d="M1852.818 1032.894c17.41 26.93 34.097 53.021 40.305 63.577 6.193 10.585 24.771 32.327 39.645 41.114 14.888 8.817 15.473 21.651 17.89 30.98 2.412 9.325 8.02 48.58 23.314 62.165 15.31 13.555 9.326-.09 22.147 15.624 12.805 15.714 238.456 291.603 238.456 291.603l11.468-7.888-209.785-269.829.286-3.87s-41.58-46.602-41.939-52.09c-.376-5.457-4.184-6.508-6.208-10.557-2.025-4.017-13.406-18.082-13.346-39.824.076-21.773-11.515-22.64-14.079-29.809-2.565-7.198-41.099-105.02-48.836-126.102-11.666 10.496-59.318 34.906-59.318 34.906"
1237
+ fill="#473125"
1238
+ />
1239
+ <path
1240
+ d="M1852.818 1032.894c17.41 26.93 34.097 53.021 40.305 63.577 6.193 10.585 24.771 32.327 39.645 41.114 14.888 8.817 15.473 21.651 17.89 30.98 2.412 9.325 8.02 48.58 23.314 62.165 15.31 13.555 9.326-.09 22.147 15.624 12.805 15.714 238.456 291.603 238.456 291.603l11.468-7.888-209.785-269.829.286-3.87s-41.58-46.602-41.939-52.09c-.376-5.457-4.184-6.508-6.208-10.557-2.025-4.017-13.406-18.082-13.346-39.824.076-21.773-11.515-22.64-14.079-29.809-2.565-7.198-41.099-105.02-48.836-126.102-11.666 10.496-59.318 34.906-59.318 34.906z"
1241
+ fill="none"
1242
+ stroke="#272425"
1243
+ stroke-width="1.549"
1244
+ />
1245
+ <path
1246
+ d="M1916.319 1009.083a1078.493 1078.493 0 01-4.182-11.095c-11.667 10.496-59.318 34.907-59.318 34.907a3435.84 3435.84 0 019.866 15.295c33.737-20.093 53.634-39.107 53.634-39.107"
1247
+ fill="#f0e53c"
1248
+ />
1249
+ <path
1250
+ d="M1916.319 1009.083a1078.493 1078.493 0 01-4.182-11.095c-11.667 10.496-59.318 34.907-59.318 34.907a3435.84 3435.84 0 019.866 15.295c33.737-20.093 53.634-39.107 53.634-39.107z"
1251
+ fill="none"
1252
+ stroke="#000"
1253
+ stroke-width="1.549"
1254
+ />
1255
+ <path
1256
+ d="M1862.685 1048.19a3349.423 3349.423 0 00-9.867-15.296s18.263-9.355 34.95-18.982c-.837 5.968-12.938 15.414-15.427 17.573-2.49 2.13-4.033 5.49-4.274 8.667-.24 3.18-5.382 8.037-5.382 8.037"
1257
+ fill="#ced0d1"
1258
+ />
1259
+ <path
1260
+ d="M1862.685 1048.19a3349.423 3349.423 0 00-9.867-15.296s18.263-9.355 34.95-18.982c-.837 5.968-12.938 15.414-15.427 17.573-2.49 2.13-4.033 5.49-4.274 8.667-.24 3.18-5.382 8.037-5.382 8.037z"
1261
+ fill="none"
1262
+ stroke="#272425"
1263
+ stroke-width="1.549"
1264
+ />
1265
+ <path d="M1983.914 1212.047l5.022-4.829 45.403 57.85-4.063 5.847z" fill="#ced0d1" />
1266
+ <path d="M1983.914 1212.047l5.022-4.829 45.403 57.85-4.063 5.847z" fill="none" stroke="#000" stroke-width="1.549" />
1267
+ <path d="M1991.261 1240.866l-4.093 4.049 249.94 307.676 2.998-5.474z" fill="#ced0d1" />
1268
+ <path d="M1991.261 1240.866l-4.093 4.049 249.94 307.676 2.998-5.474z" fill="none" stroke="#000" stroke-width="1.549" />
1269
+ <path
1270
+ d="M2077.028 1310.35c1.11-.93 1.305-2.519.435-3.538l-6.417-7.528c-.87-1.02-2.46-1.08-3.57-.12l-21.547 18.352c-1.108.931-1.303 2.521-.434 3.54l6.418 7.526c.854 1.02 2.458 1.081 3.57.121z"
1271
+ fill="#ced0d1"
1272
+ />
1273
+ <path
1274
+ d="M2077.028 1310.35c1.11-.93 1.305-2.519.435-3.538l-6.417-7.528c-.87-1.02-2.46-1.08-3.57-.12l-21.547 18.352c-1.108.931-1.303 2.521-.434 3.54l6.418 7.526c.854 1.02 2.458 1.081 3.57.121z"
1275
+ fill="none"
1276
+ stroke="#000"
1277
+ stroke-width="1.262"
1278
+ />
1279
+ <path
1280
+ d="M2164.385 1422.125c1.02-.869 1.124-2.383.271-3.404l-6.417-7.512c-.873-1.019-2.386-1.154-3.39-.299l-19.658 16.748a2.423 2.423 0 00-.27 3.405l6.417 7.526a2.403 2.403 0 003.39.284z"
1281
+ fill="#ced0d1"
1282
+ />
1283
+ <path
1284
+ d="M2164.385 1422.125c1.02-.869 1.124-2.383.271-3.404l-6.417-7.512c-.873-1.019-2.386-1.154-3.39-.299l-19.658 16.748a2.423 2.423 0 00-.27 3.405l6.417 7.526a2.403 2.403 0 003.39.284z"
1285
+ fill="none"
1286
+ stroke="#000"
1287
+ stroke-width="1.205"
1288
+ />
1289
+ <path
1290
+ d="M2028.401 1257.84c-.164 2.28 1.545 4.26 3.81 4.408a4.122 4.122 0 004.437-3.808c.166-2.28-1.543-4.26-3.808-4.409-2.278-.179-4.259 1.53-4.439 3.808"
1291
+ fill="#ced0d1"
1292
+ />
1293
+ <path
1294
+ d="M2028.401 1257.84c-.164 2.28 1.545 4.26 3.81 4.408a4.122 4.122 0 004.437-3.808c.166-2.28-1.543-4.26-3.808-4.409-2.278-.179-4.259 1.53-4.439 3.808z"
1295
+ fill="none"
1296
+ stroke="#000"
1297
+ stroke-width="1.549"
1298
+ />
1299
+ <path
1300
+ d="M1976.146 1215.586a4.91 4.91 0 004.528 5.277c2.7.18 5.053-1.829 5.264-4.528.194-2.699-1.829-5.068-4.528-5.248-2.7-.21-5.069 1.8-5.264 4.5"
1301
+ fill="#ced0d1"
1302
+ />
1303
+ <path
1304
+ d="M1976.146 1215.586a4.91 4.91 0 004.528 5.277c2.7.18 5.053-1.829 5.264-4.528.194-2.699-1.829-5.068-4.528-5.248-2.7-.21-5.069 1.8-5.264 4.5z"
1305
+ fill="none"
1306
+ stroke="#000"
1307
+ stroke-width="1.549"
1308
+ />
1309
+ <path
1310
+ d="M1941.704 1222.603c6.088 1.11 24.082-21.622 25.536-2.788-2.43-.21-9.881-2.16-12.115-.03-5.864 5.547 5.802 4.227 5.937 6.087.3 4.168-1.214 8.187-6.506 8.517-9.027.51-2.011-6.328-4.499-9.357-.12-.15.419-.419.465-.48-4.229 1.5-6.134-.12-8.803-2.22"
1311
+ fill="#ced0d1"
1312
+ stroke="#000"
1313
+ stroke-width="1.549"
1314
+ />
1315
+ <path d="M2259.989 1553.506l-3.657 2.878 24.679 31.474 3.66-2.865z" fill="#ced0d1" />
1316
+ <path d="M2259.989 1553.506l-3.657 2.878 24.679 31.474 3.66-2.865z" fill="none" stroke="#000" stroke-width="1.549" />
1317
+ <path
1318
+ d="M1959.083 1239.458c2.474-2.49 4.603-4.41 5.592-8.127 3.524 4.978 10.527 2.998 11.845-3.45.706 1.38 2.175 2.879 2.745 4.228-7.527-13.463 13.494-4.018 13.465 4.409-.06 12.656-18.834 6.238-12.01-3.748-5.503 1.829-16.374 13.015-21.637 6.688"
1319
+ fill="#ced0d1"
1320
+ stroke="#000"
1321
+ stroke-width="1.549"
1322
+ />
1323
+ <path d="M2246.614 1546.578l9.973 12.13 5.248-4.273-11.292-15.279z" fill="#ced0d1" />
1324
+ <path d="M2246.614 1546.578l9.973 12.13 5.248-4.273-11.292-15.279z" fill="none" stroke="#000" stroke-width="1.549" />
1325
+ <path
1326
+ d="M2234.334 1558.604c.99-4.543 3.809-9.552-.614-16.104-4.44-6.553 3.913-17.619 6.657-19.717 2.744-2.115 11.905 13.853 11.905 13.853s3.884 3.405-5.863 12.507l36.437 46.242-2.534 44.338 59.813 103.926-78.586-102.217 2.819-41.218-29.374-36.648s-1.38-1.693-.66-4.962"
1327
+ fill="#ced0d1"
1328
+ />
1329
+ <path
1330
+ d="M2234.334 1558.604c.99-4.543 3.809-9.552-.614-16.104-4.44-6.553 3.913-17.619 6.657-19.717 2.744-2.115 11.905 13.853 11.905 13.853s3.884 3.405-5.863 12.507l36.437 46.242-2.534 44.338 59.813 103.926-78.586-102.217 2.819-41.218-29.374-36.648s-1.38-1.693-.66-4.962z"
1331
+ fill="none"
1332
+ stroke="#000"
1333
+ stroke-width="1.549"
1334
+ />
1335
+ <path
1336
+ d="M2254.922 1559.923l-5.638 6.538 27.244 34.037m-14.979 40.934c5.503 2.49 12.85 4.59 18.773-1.709m-15.954-39.509c2.983 1.514 8.382 5.547 18.488-4.829"
1337
+ fill="none"
1338
+ stroke="#000"
1339
+ stroke-width="1.549"
1340
+ />
1341
+ <path
1342
+ d="M2213.492 1170.424c3.209-.21 6.418.089 9.49.989l-1.303 4.468c-10.767-3.15-23.826 2.31-29.104 12.146-5.31 9.866-1.335 21.44 10.87 31.757l-2.998 3.569c-19.942-16.853-15.01-31.848-11.981-37.515 4.769-8.878 14.86-14.756 25.026-15.414"
1343
+ fill="#ced0d1"
1344
+ />
1345
+ <path
1346
+ d="M2213.492 1170.424c3.209-.21 6.418.089 9.49.989l-1.303 4.468c-10.767-3.15-23.826 2.31-29.104 12.146-5.31 9.866-1.335 21.44 10.87 31.757l-2.998 3.569c-19.942-16.853-15.01-31.848-11.981-37.515 4.769-8.878 14.86-14.756 25.026-15.414z"
1347
+ fill="none"
1348
+ stroke="#000"
1349
+ stroke-width="1.549"
1350
+ />
1351
+ <path
1352
+ d="M2214.901 1202.33c-2.414-5.277-5.937-11.515-13.719-11.754 5.576-1.92 12.58-5.49 17.032 2.999 4.44 8.517-3.313 8.756-3.313 8.756"
1353
+ fill="#ced0d1"
1354
+ />
1355
+ <path
1356
+ d="M2214.901 1202.33c-2.414-5.277-5.937-11.515-13.719-11.754 5.576-1.92 12.58-5.49 17.032 2.999 4.44 8.517-3.313 8.756-3.313 8.756z"
1357
+ fill="none"
1358
+ stroke="#000"
1359
+ stroke-width="1.549"
1360
+ />
1361
+ <path
1362
+ d="M2342.338 1054.966c-17.647 26.75-34.563 52.72-40.858 63.247-6.3 10.496-25.057 32.087-40.006 40.754-14.95 8.666-15.654 21.502-18.158 30.798-2.49 9.297-8.426 48.522-23.856 61.957-15.414 13.464-9.326-.15-22.267 15.443-12.94 15.624-240.96 289.548-240.96 289.548l-11.395-7.992 212.095-267.999-.255-3.87s41.985-46.273 42.39-51.73c.419-5.458 4.229-6.477 6.297-10.496 2.07-4.019 13.57-17.993 13.674-39.735.12-21.74 11.727-22.522 14.35-29.659 2.639-7.168 42-104.69 49.932-125.682 11.56 10.585 59.017 35.416 59.017 35.416"
1363
+ fill="#473125"
1364
+ />
1365
+ <path
1366
+ d="M2342.338 1054.966c-17.647 26.75-34.563 52.72-40.858 63.247-6.3 10.496-25.057 32.087-40.006 40.754-14.95 8.666-15.654 21.502-18.158 30.798-2.49 9.297-8.426 48.522-23.856 61.957-15.414 13.464-9.326-.15-22.267 15.443-12.94 15.624-240.96 289.548-240.96 289.548l-11.395-7.992 212.095-267.999-.255-3.87s41.985-46.273 42.39-51.73c.419-5.458 4.229-6.477 6.297-10.496 2.07-4.019 13.57-17.993 13.674-39.735.12-21.74 11.727-22.522 14.35-29.659 2.639-7.168 42-104.69 49.932-125.682 11.56 10.585 59.017 35.416 59.017 35.416z"
1367
+ fill="none"
1368
+ stroke="#272425"
1369
+ stroke-width="1.549"
1370
+ />
1371
+ <path
1372
+ d="M2279.033 1030.616c1.812-4.647 3.298-8.457 4.288-11.065 11.561 10.585 59.017 35.416 59.017 35.416a6152.03 6152.03 0 00-10.016 15.205c-33.558-20.364-53.289-39.556-53.289-39.556"
1373
+ fill="#f0e53c"
1374
+ />
1375
+ <path
1376
+ d="M2279.033 1030.616c1.812-4.647 3.298-8.457 4.288-11.065 11.561 10.585 59.017 35.416 59.017 35.416a6152.03 6152.03 0 00-10.016 15.205c-33.558-20.364-53.289-39.556-53.289-39.556z"
1377
+ fill="none"
1378
+ stroke="#000"
1379
+ stroke-width="1.549"
1380
+ />
1381
+ <path
1382
+ d="M2332.322 1070.171a6346.4 6346.4 0 0110.016-15.205s-18.189-9.536-34.802-19.281c.796 5.966 12.806 15.534 15.279 17.692 2.475 2.159 3.989 5.519 4.199 8.697.209 3.177 5.308 8.097 5.308 8.097"
1383
+ fill="#ced0d1"
1384
+ />
1385
+ <path
1386
+ d="M2332.322 1070.171a6346.4 6346.4 0 0110.016-15.205s-18.189-9.536-34.802-19.281c.796 5.966 12.806 15.534 15.279 17.692 2.475 2.159 3.989 5.519 4.199 8.697.209 3.177 5.308 8.097 5.308 8.097z"
1387
+ fill="none"
1388
+ stroke="#272425"
1389
+ stroke-width="1.549"
1390
+ />
1391
+ <path d="M2209.683 1232.98l-4.979-4.858-45.897 57.427 4.02 5.91z" fill="#ced0d1" />
1392
+ <path d="M2209.683 1232.98l-4.979-4.858-45.897 57.427 4.02 5.91z" fill="none" stroke="#000" stroke-width="1.549" />
1393
+ <path d="M2202.095 1261.738l4.065 4.078-252.58 305.518-2.954-5.503z" fill="#ced0d1" />
1394
+ <path d="M2202.095 1261.738l4.065 4.078-252.58 305.518-2.954-5.503z" fill="none" stroke="#000" stroke-width="1.549" />
1395
+ <path
1396
+ d="M2115.728 1330.472c-1.095-.959-1.274-2.549-.39-3.539l6.463-7.467c.885-1.019 2.475-1.05 3.583-.119l21.382 18.562c1.095.96 1.275 2.55.406 3.54l-6.478 7.466c-.869 1.02-2.474 1.05-3.569.12z"
1397
+ fill="#ced0d1"
1398
+ />
1399
+ <path
1400
+ d="M2115.728 1330.472c-1.095-.959-1.274-2.549-.39-3.539l6.463-7.467c.885-1.019 2.475-1.05 3.583-.119l21.382 18.562c1.095.96 1.275 2.55.406 3.54l-6.478 7.466c-.869 1.02-2.474 1.05-3.569.12z"
1401
+ fill="none"
1402
+ stroke="#000"
1403
+ stroke-width="1.262"
1404
+ />
1405
+ <path
1406
+ d="M2027.412 1441.498a2.418 2.418 0 01-.24-3.403l6.477-7.468a2.407 2.407 0 013.405-.255l19.506 16.914a2.416 2.416 0 01.24 3.404l-6.477 7.467c-.884 1.004-2.398 1.124-3.402.255z"
1407
+ fill="#ced0d1"
1408
+ />
1409
+ <path
1410
+ d="M2027.412 1441.498a2.418 2.418 0 01-.24-3.403l6.477-7.468a2.407 2.407 0 013.405-.255l19.506 16.914a2.416 2.416 0 01.24 3.404l-6.477 7.467c-.884 1.004-2.398 1.124-3.402.255z"
1411
+ fill="none"
1412
+ stroke="#000"
1413
+ stroke-width="1.205"
1414
+ />
1415
+ <path
1416
+ d="M2164.805 1278.381a4.118 4.118 0 01-3.854 4.38 4.12 4.12 0 01-4.393-3.838 4.115 4.115 0 013.853-4.38 4.118 4.118 0 014.394 3.839"
1417
+ fill="#ced0d1"
1418
+ />
1419
+ <path
1420
+ d="M2164.805 1278.381a4.118 4.118 0 01-3.854 4.38 4.12 4.12 0 01-4.393-3.838 4.115 4.115 0 013.853-4.38 4.118 4.118 0 014.394 3.839z"
1421
+ fill="none"
1422
+ stroke="#000"
1423
+ stroke-width="1.549"
1424
+ />
1425
+ <path
1426
+ d="M2217.42 1236.608a4.901 4.901 0 01-4.573 5.217c-2.7.181-5.037-1.889-5.217-4.588a4.91 4.91 0 014.572-5.217 4.887 4.887 0 015.219 4.588"
1427
+ fill="#ced0d1"
1428
+ />
1429
+ <path
1430
+ d="M2217.42 1236.608a4.901 4.901 0 01-4.573 5.217c-2.7.181-5.037-1.889-5.217-4.588a4.91 4.91 0 014.572-5.217 4.887 4.887 0 015.219 4.588z"
1431
+ fill="none"
1432
+ stroke="#000"
1433
+ stroke-width="1.549"
1434
+ />
1435
+ <path
1436
+ d="M2251.817 1243.895c-6.117 1.08-23.9-21.832-25.52-3.029 2.43-.18 9.896-2.039 12.116.091 5.817 5.606-5.849 4.167-5.999 6.056-.328 4.17 1.155 8.187 6.45 8.548 9.01.6 2.052-6.298 4.556-9.297.15-.15-.404-.42-.45-.51 4.215 1.56 6.148-.06 8.818-2.099"
1437
+ fill="#ced0d1"
1438
+ stroke="#000"
1439
+ stroke-width="1.549"
1440
+ />
1441
+ <path d="M1930.684 1572.054l3.628 2.893-24.95 31.264-3.629-2.894z" fill="#ced0d1" />
1442
+ <path d="M1930.684 1572.054l3.628 2.893-24.95 31.264-3.629-2.894z" fill="none" stroke="#000" stroke-width="1.549" />
1443
+ <path
1444
+ d="M2234.273 1260.598c-2.442-2.488-4.557-4.438-5.517-8.155-3.569 4.946-10.542 2.907-11.8-3.57-.72 1.38-2.205 2.85-2.789 4.2 7.631-13.376-13.465-4.11-13.51 4.288-.046 12.654 18.787 6.416 12.041-3.63 5.503 1.86 16.267 13.166 21.575 6.867"
1445
+ fill="#ced0d1"
1446
+ stroke="#000"
1447
+ stroke-width="1.549"
1448
+ />
1449
+ <path d="M1944.104 1565.23l-10.062 12.057-5.202-4.32 11.41-15.203z" fill="#ced0d1" />
1450
+ <path d="M1944.104 1565.23l-10.062 12.057-5.202-4.32 11.41-15.203z" fill="none" stroke="#000" stroke-width="1.549" />
1451
+ <path
1452
+ d="M1956.293 1577.362c-.944-4.56-3.732-9.581.751-16.09 4.497-6.522-3.75-17.663-6.478-19.791-2.729-2.13-12.04 13.763-12.04 13.763s-3.915 3.375 5.757 12.566l-36.825 45.912 2.158 44.369-60.712 103.386 79.471-101.526-2.476-41.235 29.69-36.392s1.395-1.68.704-4.962"
1453
+ fill="#ced0d1"
1454
+ />
1455
+ <path
1456
+ d="M1956.293 1577.362c-.944-4.56-3.732-9.581.751-16.09 4.497-6.522-3.75-17.663-6.478-19.791-2.729-2.13-12.04 13.763-12.04 13.763s-3.915 3.375 5.757 12.566l-36.825 45.912 2.158 44.369-60.712 103.386 79.471-101.526-2.476-41.235 29.69-36.392s1.395-1.68.704-4.962z"
1457
+ fill="none"
1458
+ stroke="#000"
1459
+ stroke-width="1.549"
1460
+ />
1461
+ <path
1462
+ d="M1935.691 1578.501l5.593 6.583-27.559 33.813m14.65 41.053c-5.534 2.445-12.91 4.484-18.758-1.858m16.283-39.376c-3 1.485-8.426 5.474-18.442-4.993"
1463
+ fill="none"
1464
+ stroke="#000"
1465
+ stroke-width="1.549"
1466
+ />
1467
+ <path
1468
+ d="M2271.31 1149.46c3.208-.238 6.433.03 9.507.9l-1.26 4.468c-10.797-3.027-23.81 2.52-29.015 12.416-5.203 9.927-1.139 21.473 11.157 31.668l-2.97 3.569c-20.077-16.673-15.294-31.698-12.295-37.396 4.693-8.907 14.725-14.873 24.875-15.624"
1469
+ fill="#ced0d1"
1470
+ />
1471
+ <path
1472
+ d="M2271.31 1149.46c3.208-.238 6.433.03 9.507.9l-1.26 4.468c-10.797-3.027-23.81 2.52-29.015 12.416-5.203 9.927-1.139 21.473 11.157 31.668l-2.97 3.569c-20.077-16.673-15.294-31.698-12.295-37.396 4.693-8.907 14.725-14.873 24.875-15.624z"
1473
+ fill="none"
1474
+ stroke="#000"
1475
+ stroke-width="1.549"
1476
+ />
1477
+ <path
1478
+ d="M2273.005 1181.368c-2.46-5.246-6.028-11.454-13.81-11.664 5.547-1.95 12.52-5.61 17.035 2.879 4.527 8.457-3.225 8.785-3.225 8.785"
1479
+ fill="#ced0d1"
1480
+ />
1481
+ <path
1482
+ d="M2273.005 1181.368c-2.46-5.246-6.028-11.454-13.81-11.664 5.547-1.95 12.52-5.61 17.035 2.879 4.527 8.457-3.225 8.785-3.225 8.785z"
1483
+ fill="none"
1484
+ stroke="#000"
1485
+ stroke-width="1.549"
1486
+ />
1487
+ <path
1488
+ d="M2399.151 1032.894c-17.408 26.93-34.097 53.021-40.289 63.577-6.208 10.585-24.786 32.327-39.66 41.114-14.889 8.817-15.474 21.651-17.889 30.98-2.414 9.325-8.02 48.58-23.315 62.165-15.31 13.555-9.326-.09-22.148 15.624-12.804 15.714-238.455 291.603-238.455 291.603l-11.469-7.888 209.785-269.829-.285-3.87s41.58-46.602 41.94-52.09c.375-5.457 4.182-6.508 6.206-10.557 2.025-4.017 13.406-18.082 13.347-39.824-.077-21.773 11.515-22.64 14.08-29.809 2.563-7.198 41.097-105.02 48.835-126.102 11.666 10.496 59.317 34.906 59.317 34.906"
1489
+ fill="#473125"
1490
+ />
1491
+ <path
1492
+ d="M2399.151 1032.894c-17.408 26.93-34.097 53.021-40.289 63.577-6.208 10.585-24.786 32.327-39.66 41.114-14.889 8.817-15.474 21.651-17.889 30.98-2.414 9.325-8.02 48.58-23.315 62.165-15.31 13.555-9.326-.09-22.148 15.624-12.804 15.714-238.455 291.603-238.455 291.603l-11.469-7.888 209.785-269.829-.285-3.87s41.58-46.602 41.94-52.09c.375-5.457 4.182-6.508 6.206-10.557 2.025-4.017 13.406-18.082 13.347-39.824-.077-21.773 11.515-22.64 14.08-29.809 2.563-7.198 41.097-105.02 48.835-126.102 11.666 10.496 59.317 34.906 59.317 34.906z"
1493
+ fill="none"
1494
+ stroke="#272425"
1495
+ stroke-width="1.549"
1496
+ />
1497
+ <path
1498
+ d="M2335.651 1009.083c1.784-4.677 3.223-8.486 4.183-11.095 11.666 10.496 59.317 34.907 59.317 34.907-3.328 5.159-6.657 10.286-9.866 15.295-33.737-20.093-53.634-39.107-53.634-39.107"
1499
+ fill="#f0e53c"
1500
+ />
1501
+ <path
1502
+ d="M2335.651 1009.083c1.784-4.677 3.223-8.486 4.183-11.095 11.666 10.496 59.317 34.907 59.317 34.907-3.328 5.159-6.657 10.286-9.866 15.295-33.737-20.093-53.634-39.107-53.634-39.107z"
1503
+ fill="none"
1504
+ stroke="#000"
1505
+ stroke-width="1.549"
1506
+ />
1507
+ <path
1508
+ d="M2389.285 1048.19c3.209-5.01 6.538-10.137 9.866-15.296 0 0-18.262-9.355-34.952-18.982.84 5.968 12.94 15.414 15.43 17.573 2.489 2.13 4.033 5.49 4.273 8.667.24 3.18 5.383 8.037 5.383 8.037"
1509
+ fill="#ced0d1"
1510
+ />
1511
+ <path
1512
+ d="M2389.285 1048.19c3.209-5.01 6.538-10.137 9.866-15.296 0 0-18.262-9.355-34.952-18.982.84 5.968 12.94 15.414 15.43 17.573 2.489 2.13 4.033 5.49 4.273 8.667.24 3.18 5.383 8.037 5.383 8.037z"
1513
+ fill="none"
1514
+ stroke="#272425"
1515
+ stroke-width="1.549"
1516
+ />
1517
+ <path d="M2268.055 1212.047l-5.022-4.829-45.404 57.85 4.065 5.847z" fill="#ced0d1" />
1518
+ <path d="M2268.055 1212.047l-5.022-4.829-45.404 57.85 4.065 5.847z" fill="none" stroke="#000" stroke-width="1.549" />
1519
+ <path d="M2260.709 1240.866l4.094 4.049-249.941 307.676-3-5.474z" fill="#ced0d1" />
1520
+ <path d="M2260.709 1240.866l4.094 4.049-249.941 307.676-3-5.474z" fill="none" stroke="#000" stroke-width="1.549" />
1521
+ <path
1522
+ d="M2174.942 1310.35c-1.11-.93-1.29-2.519-.435-3.538l6.416-7.528c.872-1.02 2.46-1.08 3.57-.12l21.547 18.352c1.11.931 1.303 2.521.434 3.54l-6.418 7.526c-.853 1.02-2.458 1.081-3.568.121z"
1523
+ fill="#ced0d1"
1524
+ />
1525
+ <path
1526
+ d="M2174.942 1310.35c-1.11-.93-1.29-2.519-.435-3.538l6.416-7.528c.872-1.02 2.46-1.08 3.57-.12l21.547 18.352c1.11.931 1.303 2.521.434 3.54l-6.418 7.526c-.853 1.02-2.458 1.081-3.568.121z"
1527
+ fill="none"
1528
+ stroke="#000"
1529
+ stroke-width="1.262"
1530
+ />
1531
+ <path
1532
+ d="M2087.584 1422.125c-1.02-.869-1.124-2.383-.27-3.404l6.417-7.512c.871-1.019 2.385-1.154 3.39-.299l19.657 16.748a2.422 2.422 0 01.27 3.405l-6.418 7.526a2.401 2.401 0 01-3.388.284z"
1533
+ fill="#ced0d1"
1534
+ />
1535
+ <path
1536
+ d="M2087.584 1422.125c-1.02-.869-1.124-2.383-.27-3.404l6.417-7.512c.871-1.019 2.385-1.154 3.39-.299l19.657 16.748a2.422 2.422 0 01.27 3.405l-6.418 7.526a2.401 2.401 0 01-3.388.284z"
1537
+ fill="none"
1538
+ stroke="#000"
1539
+ stroke-width="1.205"
1540
+ />
1541
+ <path
1542
+ d="M2223.568 1257.84c.165 2.28-1.544 4.26-3.809 4.408-2.279.18-4.257-1.53-4.437-3.808-.166-2.28 1.543-4.26 3.808-4.409 2.278-.179 4.257 1.53 4.438 3.808"
1543
+ fill="#ced0d1"
1544
+ />
1545
+ <path
1546
+ d="M2223.568 1257.84c.165 2.28-1.544 4.26-3.809 4.408-2.279.18-4.257-1.53-4.437-3.808-.166-2.28 1.543-4.26 3.808-4.409 2.278-.179 4.257 1.53 4.438 3.808z"
1547
+ fill="none"
1548
+ stroke="#000"
1549
+ stroke-width="1.549"
1550
+ />
1551
+ <path
1552
+ d="M2275.824 1215.586a4.912 4.912 0 01-4.528 5.277c-2.7.18-5.053-1.829-5.264-4.528-.195-2.699 1.829-5.068 4.528-5.248 2.715-.21 5.069 1.8 5.264 4.5"
1553
+ fill="#ced0d1"
1554
+ />
1555
+ <path
1556
+ d="M2275.824 1215.586a4.912 4.912 0 01-4.528 5.277c-2.7.18-5.053-1.829-5.264-4.528-.195-2.699 1.829-5.068 4.528-5.248 2.715-.21 5.069 1.8 5.264 4.5z"
1557
+ fill="none"
1558
+ stroke="#000"
1559
+ stroke-width="1.549"
1560
+ />
1561
+ <path
1562
+ d="M2310.264 1222.603c-6.086 1.11-24.08-21.622-25.534-2.788 2.43-.21 9.881-2.16 12.114-.03 5.864 5.547-5.802 4.227-5.937 6.087-.299 4.168 1.214 8.187 6.522 8.517 9.012.51 1.995-6.328 4.484-9.357.135-.15-.42-.419-.465-.48 4.228 1.5 6.132-.12 8.802-2.22"
1563
+ fill="#ced0d1"
1564
+ stroke="#000"
1565
+ stroke-width="1.549"
1566
+ />
1567
+ <path d="M1991.981 1553.506l3.657 2.878-24.68 31.474-3.659-2.865z" fill="#ced0d1" />
1568
+ <path d="M1991.981 1553.506l3.657 2.878-24.68 31.474-3.659-2.865z" fill="none" stroke="#000" stroke-width="1.549" />
1569
+ <path
1570
+ d="M2292.887 1239.458c-2.475-2.49-4.604-4.41-5.593-8.127-3.522 4.978-10.525 2.998-11.844-3.45-.706 1.38-2.174 2.879-2.745 4.228 7.527-13.463-13.494-4.018-13.465 4.409.06 12.656 18.847 6.238 12.01-3.748 5.519 1.829 16.374 13.015 21.637 6.688"
1571
+ fill="#ced0d1"
1572
+ stroke="#000"
1573
+ stroke-width="1.549"
1574
+ />
1575
+ <path d="M2005.356 1546.578l-9.973 12.13-5.248-4.273 11.292-15.279z" fill="#ced0d1" />
1576
+ <path d="M2005.356 1546.578l-9.973 12.13-5.248-4.273 11.292-15.279z" fill="none" stroke="#000" stroke-width="1.549" />
1577
+ <path
1578
+ d="M2017.637 1558.604c-.99-4.543-3.81-9.552.614-16.104 4.439-6.553-3.914-17.619-6.657-19.717-2.744-2.115-11.906 13.853-11.906 13.853s-3.883 3.405 5.862 12.507l-36.435 46.242 2.533 44.338-59.812 103.926 78.6-102.217-2.833-41.218 29.374-36.648s1.379-1.693.66-4.962"
1579
+ fill="#ced0d1"
1580
+ />
1581
+ <path
1582
+ d="M2017.637 1558.604c-.99-4.543-3.81-9.552.614-16.104 4.439-6.553-3.914-17.619-6.657-19.717-2.744-2.115-11.906 13.853-11.906 13.853s-3.883 3.405 5.862 12.507l-36.435 46.242 2.533 44.338-59.812 103.926 78.6-102.217-2.833-41.218 29.374-36.648s1.379-1.693.66-4.962z"
1583
+ fill="none"
1584
+ stroke="#000"
1585
+ stroke-width="1.549"
1586
+ />
1587
+ <path
1588
+ d="M1997.048 1559.923l5.638 6.538-27.244 34.037m14.994 40.934c-5.518 2.49-12.865 4.59-18.789-1.709m15.955-39.509c-2.983 1.514-8.382 5.547-18.488-4.829"
1589
+ fill="none"
1590
+ stroke="#000"
1591
+ stroke-width="1.549"
1592
+ />
1593
+ <path
1594
+ d="M2297.76 1614.533c-6.658-7.362-72.393-82.364-93.385-125.803-4.964-10.241 8.966-15.698 12.91-6.463 6.703 15.745 48.521 79.112 89.531 125.083z"
1595
+ fill="#473125"
1596
+ />
1597
+ <path
1598
+ d="M2297.76 1614.533c-6.658-7.362-72.393-82.364-93.385-125.803-4.964-10.241 8.966-15.698 12.91-6.463 6.703 15.745 48.521 79.112 89.531 125.083z"
1599
+ fill="none"
1600
+ stroke="#000"
1601
+ stroke-width="1.025"
1602
+ />
1603
+ <path
1604
+ d="M2285.555 1619.87c-1.936 3.448-4.244 15.115 2.684 25.371 6.912 10.255 14.44 13.15 22.207 11.771.478-7.797-.302-11.38 10.735-19.328 11.021-7.947 18.967-9.357 21.786-9.237 2.82.135 11.036 1.89 17.424 6.673 3.464-3.464 8.202-22.94-2.684-39.6-10.9-16.66-31.668-22.686-45.882-17.5 3.583 3.524 10.885 15.055-.78 28.776-5.353 6.192-10.378 11.02-10.378 11.02s-8.71 7.302-15.112 2.054"
1605
+ fill="#ced0d1"
1606
+ />
1607
+ <path
1608
+ d="M2285.555 1619.87c-1.936 3.448-4.244 15.115 2.684 25.371 6.912 10.255 14.44 13.15 22.207 11.771.478-7.797-.302-11.38 10.735-19.328 11.021-7.947 18.967-9.357 21.786-9.237 2.82.135 11.036 1.89 17.424 6.673 3.464-3.464 8.202-22.94-2.684-39.6-10.9-16.66-31.668-22.686-45.882-17.5 3.583 3.524 10.885 15.055-.78 28.776-5.353 6.192-10.378 11.02-10.378 11.02s-8.71 7.302-15.112 2.054z"
1609
+ fill="none"
1610
+ stroke="#000"
1611
+ stroke-width="1.025"
1612
+ />
1613
+ <path
1614
+ d="M2310.415 1657.416c-.135-5.381-4.363-11.53 11.276-22.296 15.624-10.766 27.424-10.256 38.7 0-6.912-4.363-17.423-9.492-31.533-.135-14.094 9.357-11.395 8.338-11.395 8.338-2.954 2.309-6.028 3.328-7.048 14.093"
1615
+ fill="#ced0d1"
1616
+ />
1617
+ <path
1618
+ d="M2310.415 1657.416c-.135-5.381-4.363-11.53 11.276-22.296 15.624-10.766 27.424-10.256 38.7 0-6.912-4.363-17.423-9.492-31.533-.135-14.094 9.357-11.395 8.338-11.395 8.338-2.954 2.309-6.028 3.328-7.048 14.093z"
1619
+ fill="none"
1620
+ stroke="#000"
1621
+ stroke-width="1.025"
1622
+ />
1623
+ <path d="M2316.743 1644.792l-21.262-27.995c-1.604-2.115.225-6.208 4.094-9.147 3.853-2.923 8.29-3.584 9.896-1.47l21.262 27.98z" fill="#ced0d1" />
1624
+ <path
1625
+ d="M2316.743 1644.792l-21.262-27.995c-1.604-2.115.225-6.208 4.094-9.147 3.853-2.923 8.29-3.584 9.896-1.47l21.262 27.98z"
1626
+ fill="none"
1627
+ stroke="#000"
1628
+ stroke-width="1.025"
1629
+ />
1630
+ <path
1631
+ d="M2330.733 1634.16c-1.604-2.114-6.043-1.44-9.897 1.485-3.868 2.94-5.698 7.032-4.093 9.146 1.604 2.115 6.043 1.44 9.896-1.485 3.868-2.938 5.697-7.032 4.094-9.146"
1632
+ fill="#ced0d1"
1633
+ />
1634
+ <path
1635
+ d="M2330.733 1634.16c-1.604-2.114-6.043-1.44-9.897 1.485-3.868 2.94-5.698 7.032-4.093 9.146 1.604 2.115 6.043 1.44 9.896-1.485 3.868-2.938 5.697-7.032 4.094-9.146z"
1636
+ fill="none"
1637
+ stroke="#000"
1638
+ stroke-width="1.025"
1639
+ />
1640
+ <path
1641
+ d="M2329.457 1638.314c-1.048-1.77-3.776-2.083-6.072-.72-2.324 1.365-3.343 3.898-2.294 5.669 1.05 1.768 4.018 2.533 6.328 1.168 2.309-1.363 3.073-4.348 2.038-6.117"
1642
+ fill="#473125"
1643
+ />
1644
+ <path
1645
+ d="M2329.457 1638.314c-1.048-1.77-3.776-2.083-6.072-.72-2.324 1.365-3.343 3.898-2.294 5.669 1.05 1.768 4.018 2.533 6.328 1.168 2.309-1.363 3.073-4.348 2.038-6.117z"
1646
+ fill="none"
1647
+ stroke="#000"
1648
+ stroke-width="1.025"
1649
+ />
1650
+ <path d="M1958.693 1599.268c6.252 2.25 19.388 11.2 26.72 21.232 7.333 10.032 2.954 14.185-5.218 12.475-8.17-1.708-17.094-10.944-18.503-14.018-1.41-3.06-2.999-19.69-2.999-19.69" />
1651
+ <path
1652
+ d="M1958.693 1599.268c6.252 2.25 19.388 11.2 26.72 21.232 7.333 10.032 2.954 14.185-5.218 12.475-8.17-1.708-17.094-10.944-18.503-14.018-1.41-3.06-2.999-19.69-2.999-19.69z"
1653
+ fill="none"
1654
+ stroke="#000"
1655
+ stroke-width=".595"
1656
+ />
1657
+ <path d="M1953.82 1605.16l41.865-48.821" fill="#fff" stroke="#473125" stroke-width="19.521" />
1658
+ <path
1659
+ d="M1929.53 1559.264c-1.53 2.323-7.333 7.376-9.252 9.911-1.92 2.533-10.106 13-9.446 25.94.644 12.94.868 17.574.764 22.971-.104 5.398-4.393 23.796 7.003 33.423 11.395 9.641 17.768 13.705 36.33 11.86 18.579-1.86 32.869-11.202 21.743-23.105 1.589-2.775 3.838-6.06 9.07-7.063-4.347-.81-16.628-5.639-18.892-12.82-2.263-7.198-3.103-22.508-3.84-26.796-.733-4.303-2.967-18.428-14.482-25.91-11.5-7.467-15.64-5.623-18.998-8.41"
1660
+ fill="#d32011"
1661
+ />
1662
+ <path
1663
+ d="M1929.53 1559.264c-1.53 2.323-7.333 7.376-9.252 9.911-1.92 2.533-10.106 13-9.446 25.94.644 12.94.868 17.574.764 22.971-.104 5.398-4.393 23.796 7.003 33.423 11.395 9.641 17.768 13.705 36.33 11.86 18.579-1.86 32.869-11.202 21.743-23.105 1.589-2.775 3.838-6.06 9.07-7.063-4.347-.81-16.628-5.639-18.892-12.82-2.263-7.198-3.103-22.508-3.84-26.796-.733-4.303-2.967-18.428-14.482-25.91-11.5-7.467-15.64-5.623-18.998-8.41z"
1664
+ fill="none"
1665
+ stroke="#000"
1666
+ stroke-width=".595"
1667
+ />
1668
+ <g clip-path="url(#T)" opacity=".5">
1669
+ <path d="M1976.672 1640.264c1.425 1.514 2.414 2.999 3.058 4.422-6.163-4.29-18.982-11.365-25.37-9.131-7.437 2.579-15.714 9.252-21.457 4.647 3.225-.3 17.438-1.98 4.258-17.422 4.634 4.933 21.562 18.967 31.144.42 1.244 1.739 3.028 3.283 5.007 4.618-3.987.959-8.471 2.803-7.841 5.203.764 2.894 8.187 4.768 13.9 3.509-1.155 1.184-1.994 2.504-2.7 3.734" />
1670
+ </g>
1671
+ <g clip-path="url(#U)" opacity=".33">
1672
+ <path d="M1913.2 1606.12c.42-5.157 7.153-30.167 21.412-31.562 14.246-1.396 18.488 7.782 21.398 12.476-1.664-7.978-7.573-17.919-23.887-15.1-16.314 2.82-19.417 22.611-19.642 23.931-.24 1.32.72 10.255.72 10.255" />
1673
+ </g>
1674
+ <path
1675
+ d="M2386.856 1113.564c-4.843 5.338-4.453 13.585.884 18.443 5.34 4.83 13.586 4.44 18.428-.9 4.844-5.308 4.455-13.585-.884-18.412-5.337-4.859-13.584-4.44-18.428.87"
1676
+ fill="#f0e53c"
1677
+ />
1678
+ <path
1679
+ d="M2386.856 1113.564c-4.843 5.338-4.453 13.585.884 18.443 5.34 4.83 13.586 4.44 18.428-.9 4.844-5.308 4.455-13.585-.884-18.412-5.337-4.859-13.584-4.44-18.428.87z"
1680
+ fill="none"
1681
+ stroke="#473125"
1682
+ stroke-width="2.097"
1683
+ />
1684
+ <path
1685
+ d="M2006.555 1606.646s371.05-381.853 391.862-403.266c20.798-21.381 8.818-63.725-5.668-76.891-14.483-13.165-57.788-21.021-77.086 1.74-19.297 22.76-363.837 428.695-363.837 428.695z"
1686
+ fill="#f0e53c"
1687
+ />
1688
+ <path
1689
+ d="M2006.555 1606.646s371.05-381.853 391.862-403.266c20.798-21.381 8.818-63.725-5.668-76.891-14.483-13.165-57.788-21.021-77.086 1.74-19.297 22.76-363.837 428.695-363.837 428.695z"
1690
+ fill="none"
1691
+ stroke="#473125"
1692
+ stroke-width="2.097"
1693
+ />
1694
+ <path
1695
+ d="M2334.196 1272.655a4.18 4.18 0 01-2.323-5.458c2.444-6.09-16.57-32.118-28.175-42.675-11.62-10.526-39.361-26.96-45.163-23.93-2.07 1.049-4.604.27-5.668-1.8a4.213 4.213 0 011.8-5.667c13.734-7.108 49.99 20.962 54.669 25.19 4.678 4.258 36.091 37.665 30.302 52.03a4.182 4.182 0 01-5.442 2.31"
1696
+ fill="#f0e53c"
1697
+ />
1698
+ <path
1699
+ d="M2334.196 1272.655a4.18 4.18 0 01-2.323-5.458c2.444-6.09-16.57-32.118-28.175-42.675-11.62-10.526-39.361-26.96-45.163-23.93-2.07 1.049-4.604.27-5.668-1.8a4.213 4.213 0 011.8-5.667c13.734-7.108 49.99 20.962 54.669 25.19 4.678 4.258 36.091 37.665 30.302 52.03a4.182 4.182 0 01-5.442 2.31z"
1700
+ fill="none"
1701
+ stroke="#473125"
1702
+ stroke-width="1.398"
1703
+ />
1704
+ <path
1705
+ d="M2344.811 1263.688a5.617 5.617 0 01-1.889-7.198c-.075-5.638-15.653-27.529-30.767-41.265-15.115-13.734-38.402-27.14-44.039-26.659a5.573 5.573 0 01-7.332-1.23c-1.95-2.398-1.574-5.907.824-7.857 13.39-10.855 57.64 27.08 58.06 27.471.434.39 42.416 40.783 32.896 55.15a5.591 5.591 0 01-7.753 1.588"
1706
+ fill="#f0e53c"
1707
+ />
1708
+ <path
1709
+ d="M2344.811 1263.688a5.617 5.617 0 01-1.889-7.198c-.075-5.638-15.653-27.529-30.767-41.265-15.115-13.734-38.402-27.14-44.039-26.659a5.573 5.573 0 01-7.332-1.23c-1.95-2.398-1.574-5.907.824-7.857 13.39-10.855 57.64 27.08 58.06 27.471.434.39 42.416 40.783 32.896 55.15a5.591 5.591 0 01-7.753 1.588z"
1710
+ fill="none"
1711
+ stroke="#473125"
1712
+ stroke-width="1.398"
1713
+ />
1714
+ <path
1715
+ d="M2393.243 1213.306c-2.383-1.919-2.833-5.428-.93-7.826 6.583-8.368-1.647-31.789-24.005-52.09-22.341-20.304-46.453-26.24-54.13-18.895a5.603 5.603 0 01-7.901-.179c-2.145-2.218-2.07-5.758.164-7.916 13.54-12.956 43.379-4.918 69.395 18.712 26.014 23.631 36.886 52.57 25.265 67.295-1.905 2.4-5.428 2.818-7.858.9"
1716
+ fill="#f0e53c"
1717
+ />
1718
+ <path
1719
+ d="M2393.243 1213.306c-2.383-1.919-2.833-5.428-.93-7.826 6.583-8.368-1.647-31.789-24.005-52.09-22.341-20.304-46.453-26.24-54.13-18.895a5.603 5.603 0 01-7.901-.179c-2.145-2.218-2.07-5.758.164-7.916 13.54-12.956 43.379-4.918 69.395 18.712 26.014 23.631 36.886 52.57 25.265 67.295-1.905 2.4-5.428 2.818-7.858.9z"
1720
+ fill="none"
1721
+ stroke="#473125"
1722
+ stroke-width="1.398"
1723
+ />
1724
+ <path
1725
+ d="M2383.392 1221.553c-1.725-1.559-1.92-4.139-.359-5.848 1.978-3.689-1.32-27.949-25.76-50.17-24.306-22.073-48.658-23.123-52.346-20.842-1.574 1.59-4.138 1.65-5.803.148-1.71-1.558-1.845-4.226-.285-5.937 6.598-7.256 37.471-3.719 64.072 20.422 26.6 24.171 33.078 54.55 26.464 61.836-1.545 1.711-4.273 1.92-5.983.391"
1726
+ fill="#f0e53c"
1727
+ />
1728
+ <path
1729
+ d="M2383.392 1221.553c-1.725-1.559-1.92-4.139-.359-5.848 1.978-3.689-1.32-27.949-25.76-50.17-24.306-22.073-48.658-23.123-52.346-20.842-1.574 1.59-4.138 1.65-5.803.148-1.71-1.558-1.845-4.226-.285-5.937 6.598-7.256 37.471-3.719 64.072 20.422 26.6 24.171 33.078 54.55 26.464 61.836-1.545 1.711-4.273 1.92-5.983.391z"
1730
+ fill="none"
1731
+ stroke="#473125"
1732
+ stroke-width="1.398"
1733
+ />
1734
+ <path
1735
+ d="M2321.915 1281.62l7.214-13.703-13.136 1.29 6.447-14.906-14.558.63 4.424-14.874-14.215 2.758 3.253-15.683-15.325 4.738 1.41-14.424-14.395 5.847-.778-14.574-14.216 7.856.029-13.195-12.97 8.488"
1736
+ fill="none"
1737
+ stroke="#473125"
1738
+ stroke-linecap="round"
1739
+ stroke-linejoin="round"
1740
+ stroke-width="2.796"
1741
+ />
1742
+ <path
1743
+ d="M2366.48 1235.23l7.106-13.797-13.359 1.08 6.327-15.024-14.845.39 4.274-15.055-14.485 2.55 3.09-15.864-15.505 4.588 1.154-14.635-14.559 5.668-1.05-14.785-14.348 7.708-.21-13.375-13.046 8.366"
1744
+ fill="none"
1745
+ stroke="#473125"
1746
+ stroke-linecap="round"
1747
+ stroke-linejoin="round"
1748
+ stroke-width="2.844"
1749
+ />
1750
+ <path
1751
+ d="M2017.98 1598.414a4.191 4.191 0 01-2.325-5.458c2.835-7.033-6.866-24.41-16.493-33.153-9.64-8.757-27.859-16.748-34.59-13.256-2.056 1.081-4.605.271-5.655-1.784a4.194 4.194 0 011.784-5.652c12.506-6.493 35.252 6.448 44.1 14.47 8.846 8.037 23.901 29.448 18.637 42.508a4.187 4.187 0 01-5.458 2.325"
1752
+ fill="#f0e53c"
1753
+ />
1754
+ <path
1755
+ d="M2017.98 1598.414a4.191 4.191 0 01-2.325-5.458c2.835-7.033-6.866-24.41-16.493-33.153-9.64-8.757-27.859-16.748-34.59-13.256-2.056 1.081-4.605.271-5.655-1.784a4.194 4.194 0 011.784-5.652c12.506-6.493 35.252 6.448 44.1 14.47 8.846 8.037 23.901 29.448 18.637 42.508a4.187 4.187 0 01-5.458 2.325z"
1756
+ fill="none"
1757
+ stroke="#473125"
1758
+ stroke-width="1.398"
1759
+ />
1760
+ <path
1761
+ d="M2034.354 1581.966c-2.159-.855-3.194-3.313-2.323-5.458 2.653-6.615-7.753-24.112-17.829-33.274-10.076-9.146-28.489-17.827-34.818-14.543-2.052 1.064-4.603.268-5.652-1.8-1.079-2.054-.27-4.574 1.785-5.654 12.116-6.283 34.846 7.183 44.322 15.79 9.477 8.606 25.056 29.943 19.958 42.613-.854 2.145-3.298 3.18-5.443 2.325"
1762
+ fill="#f0e53c"
1763
+ />
1764
+ <path
1765
+ d="M2034.354 1581.966c-2.159-.855-3.194-3.313-2.323-5.458 2.653-6.615-7.753-24.112-17.829-33.274-10.076-9.146-28.489-17.827-34.818-14.543-2.052 1.064-4.603.268-5.652-1.8-1.079-2.054-.27-4.574 1.785-5.654 12.116-6.283 34.846 7.183 44.322 15.79 9.477 8.606 25.056 29.943 19.958 42.613-.854 2.145-3.298 3.18-5.443 2.325z"
1766
+ fill="none"
1767
+ stroke="#473125"
1768
+ stroke-width="1.398"
1769
+ />
1770
+ <path
1771
+ d="M2026.303 1585.549l3.628-11.816-7.241.675 3.852-9.417-8.71.585 3.134-10.376-9.913.286 1.665-10.603-10.406 2.67-.66-9.897-10.031 4.109-.255-8.726-8.996 4.739-.031-7.274-11.41 4.754"
1772
+ fill="none"
1773
+ stroke="#473125"
1774
+ stroke-linecap="round"
1775
+ stroke-linejoin="round"
1776
+ stroke-width="2.844"
1777
+ />
1778
+ <g clip-path="url(#V)" opacity=".33">
1779
+ <path
1780
+ d="M1987.932 1568.005s329.53-381.478 350.432-404.509c20.917-23.032 33.197-19.793 50.98-18.714-9.52-9.267-37.41-23.271-66.079 8.308-28.654 31.547-349.967 407.103-349.967 407.103z"
1781
+ fill="#473125"
1782
+ />
1783
+ </g>
1784
+ <g clip-path="url(#W)" opacity=".67">
1785
+ <path
1786
+ d="M2362.685 1185.567l-328.916 350.695c-3.704 3.944-3.493 10.137.45 13.825.031.044.075.075.106.104 3.958 3.584 10.06 3.36 13.718-.554l324.343-346.258c3.704-3.927 3.778-10.075-.165-13.793-.044-.03-5.877-7.917-9.536-4.019"
1787
+ fill="#fff"
1788
+ />
1789
+ </g>
1790
+ <path
1791
+ d="M2006.42 1607.425c6.822-7.513-.044-24.86-15.325-38.746-15.294-13.885-33.21-19.058-40.05-11.545-6.822 7.527.046 24.875 15.325 38.76 15.295 13.885 33.213 19.058 40.05 11.531"
1792
+ fill="#fff"
1793
+ />
1794
+ <path
1795
+ d="M2006.42 1607.425c6.822-7.513-.044-24.86-15.325-38.746-15.294-13.885-33.21-19.058-40.05-11.545-6.822 7.527.046 24.875 15.325 38.76 15.295 13.885 33.213 19.058 40.05 11.531z"
1796
+ fill="none"
1797
+ stroke="#473125"
1798
+ stroke-width="2.097"
1799
+ />
1800
+ <path
1801
+ d="M1998.894 1600.602c4.723-5.187-.481-17.602-11.622-27.724-11.141-10.106-23.975-14.095-28.698-8.906-4.723 5.203.494 17.603 11.62 27.71 11.14 10.121 23.99 14.108 28.7 8.92"
1802
+ fill="#f0e53c"
1803
+ />
1804
+ <path
1805
+ d="M1998.894 1600.602c4.723-5.187-.481-17.602-11.622-27.724-11.141-10.106-23.975-14.095-28.698-8.906-4.723 5.203.494 17.603 11.62 27.71 11.14 10.121 23.99 14.108 28.7 8.92z"
1806
+ fill="none"
1807
+ stroke="#473125"
1808
+ stroke-width="2.097"
1809
+ />
1810
+ <g clip-path="url(#X)" opacity=".33">
1811
+ <path d="M1978.006 1597.634l6.268 3.27 13.525-14.89-3.854-5.924z" fill="#473125" />
1812
+ </g>
1813
+ <g clip-path="url(#Y)" opacity=".67">
1814
+ <path d="M1973.567 1565.006s-6.462 8.606-8.621 11.666c-2.16 3.073.9 11.844 6.207 5.652 5.309-6.193 9.493-13.255 9.493-13.255z" fill="#fff" />
1815
+ </g>
1816
+ <path
1817
+ d="M1865.114 1113.564c4.843 5.338 4.453 13.585-.886 18.443-5.337 4.83-13.584 4.44-18.428-.9-4.843-5.308-4.453-13.585.886-18.412 5.337-4.859 13.584-4.44 18.428.87"
1818
+ fill="#f0e53c"
1819
+ />
1820
+ <path
1821
+ d="M1865.114 1113.564c4.843 5.338 4.453 13.585-.886 18.443-5.337 4.83-13.584 4.44-18.428-.9-4.843-5.308-4.453-13.585.886-18.412 5.337-4.859 13.584-4.44 18.428.87z"
1822
+ fill="none"
1823
+ stroke="#473125"
1824
+ stroke-width="2.097"
1825
+ />
1826
+ <path
1827
+ d="M2245.415 1606.646s-371.05-381.853-391.863-403.266c-20.797-21.381-8.816-63.725 5.669-76.891 14.484-13.165 57.787-21.021 77.086 1.74 19.298 22.76 363.837 428.695 363.837 428.695z"
1828
+ fill="#f0e53c"
1829
+ />
1830
+ <path
1831
+ d="M2245.415 1606.646s-371.05-381.853-391.863-403.266c-20.797-21.381-8.816-63.725 5.669-76.891 14.484-13.165 57.787-21.021 77.086 1.74 19.298 22.76 363.837 428.695 363.837 428.695z"
1832
+ fill="none"
1833
+ stroke="#473125"
1834
+ stroke-width="2.097"
1835
+ />
1836
+ <path
1837
+ d="M1917.773 1272.655a4.181 4.181 0 002.325-5.458c-2.445-6.09 16.569-32.118 28.175-42.675 11.62-10.526 39.36-26.96 45.163-23.93 2.067 1.049 4.603.27 5.667-1.8a4.215 4.215 0 00-1.8-5.667c-13.734-7.108-49.99 20.962-54.67 25.19-4.677 4.258-36.09 37.665-30.301 52.03a4.181 4.181 0 005.44 2.31"
1838
+ fill="#f0e53c"
1839
+ />
1840
+ <path
1841
+ d="M1917.773 1272.655a4.181 4.181 0 002.325-5.458c-2.445-6.09 16.569-32.118 28.175-42.675 11.62-10.526 39.36-26.96 45.163-23.93 2.067 1.049 4.603.27 5.667-1.8a4.215 4.215 0 00-1.8-5.667c-13.734-7.108-49.99 20.962-54.67 25.19-4.677 4.258-36.09 37.665-30.301 52.03a4.181 4.181 0 005.44 2.31z"
1842
+ fill="none"
1843
+ stroke="#473125"
1844
+ stroke-width="1.398"
1845
+ />
1846
+ <path
1847
+ d="M1907.157 1263.688a5.635 5.635 0 001.905-7.198c.06-5.638 15.638-27.529 30.753-41.265 15.115-13.734 38.401-27.14 44.04-26.659a5.573 5.573 0 007.331-1.23c1.95-2.398 1.574-5.907-.809-7.857-13.39-10.855-57.638 27.08-58.074 27.471-.435.39-42.419 40.783-32.897 55.15a5.589 5.589 0 007.751 1.588"
1848
+ fill="#f0e53c"
1849
+ />
1850
+ <path
1851
+ d="M1907.157 1263.688a5.635 5.635 0 001.905-7.198c.06-5.638 15.638-27.529 30.753-41.265 15.115-13.734 38.401-27.14 44.04-26.659a5.573 5.573 0 007.331-1.23c1.95-2.398 1.574-5.907-.809-7.857-13.39-10.855-57.638 27.08-58.074 27.471-.435.39-42.419 40.783-32.897 55.15a5.589 5.589 0 007.751 1.588z"
1852
+ fill="none"
1853
+ stroke="#473125"
1854
+ stroke-width="1.398"
1855
+ />
1856
+ <path
1857
+ d="M1858.725 1213.306c2.385-1.919 2.834-5.428.931-7.826-6.583-8.368 1.649-31.789 24.006-52.09 22.34-20.304 46.453-26.24 54.13-18.895 2.234 2.13 5.787 2.04 7.901-.179 2.145-2.218 2.07-5.758-.164-7.916-13.541-12.956-43.379-4.918-69.395 18.712-26.015 23.631-36.87 52.57-25.265 67.295 1.905 2.4 5.427 2.818 7.856.9"
1858
+ fill="#f0e53c"
1859
+ />
1860
+ <path
1861
+ d="M1858.725 1213.306c2.385-1.919 2.834-5.428.931-7.826-6.583-8.368 1.649-31.789 24.006-52.09 22.34-20.304 46.453-26.24 54.13-18.895 2.234 2.13 5.787 2.04 7.901-.179 2.145-2.218 2.07-5.758-.164-7.916-13.541-12.956-43.379-4.918-69.395 18.712-26.015 23.631-36.87 52.57-25.265 67.295 1.905 2.4 5.427 2.818 7.856.9z"
1862
+ fill="none"
1863
+ stroke="#473125"
1864
+ stroke-width="1.398"
1865
+ />
1866
+ <path
1867
+ d="M1868.576 1221.553c1.726-1.559 1.92-4.139.361-5.848-1.98-3.689 1.32-27.949 25.76-50.17 24.32-22.073 48.658-23.123 52.346-20.842 1.574 1.59 4.124 1.65 5.803.148 1.71-1.558 1.843-4.226.285-5.937-6.598-7.256-37.471-3.719-64.072 20.422-26.6 24.171-33.077 54.55-26.464 61.836 1.545 1.711 4.273 1.92 5.982.391"
1868
+ fill="#f0e53c"
1869
+ />
1870
+ <path
1871
+ d="M1868.576 1221.553c1.726-1.559 1.92-4.139.361-5.848-1.98-3.689 1.32-27.949 25.76-50.17 24.32-22.073 48.658-23.123 52.346-20.842 1.574 1.59 4.124 1.65 5.803.148 1.71-1.558 1.843-4.226.285-5.937-6.598-7.256-37.471-3.719-64.072 20.422-26.6 24.171-33.077 54.55-26.464 61.836 1.545 1.711 4.273 1.92 5.982.391z"
1872
+ fill="none"
1873
+ stroke="#473125"
1874
+ stroke-width="1.398"
1875
+ />
1876
+ <path
1877
+ d="M1930.055 1281.62l-7.198-13.703 13.12 1.29-6.447-14.906 14.559.63-4.424-14.874 14.215 2.758-3.253-15.683 15.323 4.738-1.41-14.424 14.395 5.847.78-14.574 14.215 7.856-.03-13.195 12.97 8.488"
1878
+ fill="none"
1879
+ stroke="#473125"
1880
+ stroke-linecap="round"
1881
+ stroke-linejoin="round"
1882
+ stroke-width="2.796"
1883
+ />
1884
+ <path
1885
+ d="M1885.49 1235.23l-7.106-13.797 13.359 1.08-6.327-15.024 14.844.39-4.273-15.055 14.485 2.55-3.09-15.864 15.505 4.588-1.154-14.635 14.559 5.668 1.05-14.785 14.349 7.708.21-13.375 13.06 8.366"
1886
+ fill="none"
1887
+ stroke="#473125"
1888
+ stroke-linecap="round"
1889
+ stroke-linejoin="round"
1890
+ stroke-width="2.844"
1891
+ />
1892
+ <path
1893
+ d="M2233.989 1598.414a4.187 4.187 0 002.323-5.458c-2.833-7.033 6.868-24.41 16.495-33.153 9.641-8.757 27.859-16.748 34.592-13.256 2.055 1.081 4.604.271 5.653-1.784 1.08-2.054.269-4.587-1.786-5.652-12.504-6.493-35.251 6.448-44.096 14.47-8.848 8.037-23.903 29.448-18.639 42.508a4.186 4.186 0 005.458 2.325"
1894
+ fill="#f0e53c"
1895
+ />
1896
+ <path
1897
+ d="M2233.989 1598.414a4.187 4.187 0 002.323-5.458c-2.833-7.033 6.868-24.41 16.495-33.153 9.641-8.757 27.859-16.748 34.592-13.256 2.055 1.081 4.604.271 5.653-1.784 1.08-2.054.269-4.587-1.786-5.652-12.504-6.493-35.251 6.448-44.096 14.47-8.848 8.037-23.903 29.448-18.639 42.508a4.186 4.186 0 005.458 2.325z"
1898
+ fill="none"
1899
+ stroke="#473125"
1900
+ stroke-width="1.398"
1901
+ />
1902
+ <path
1903
+ d="M2217.63 1581.966c2.145-.855 3.18-3.313 2.324-5.458-2.668-6.615 7.738-24.112 17.815-33.274 10.075-9.146 28.488-17.827 34.815-14.543 2.069 1.064 4.605.268 5.653-1.8 1.08-2.054.27-4.574-1.784-5.654-12.116-6.283-34.845 7.183-44.323 15.79-9.477 8.606-25.056 29.943-19.957 42.613.853 2.145 3.298 3.18 5.457 2.325"
1904
+ fill="#f0e53c"
1905
+ />
1906
+ <path
1907
+ d="M2217.63 1581.966c2.145-.855 3.18-3.313 2.324-5.458-2.668-6.615 7.738-24.112 17.815-33.274 10.075-9.146 28.488-17.827 34.815-14.543 2.069 1.064 4.605.268 5.653-1.8 1.08-2.054.27-4.574-1.784-5.654-12.116-6.283-34.845 7.183-44.323 15.79-9.477 8.606-25.056 29.943-19.957 42.613.853 2.145 3.298 3.18 5.457 2.325z"
1908
+ fill="none"
1909
+ stroke="#473125"
1910
+ stroke-width="1.398"
1911
+ />
1912
+ <path
1913
+ d="M2225.668 1585.549l-3.63-11.816 7.242.675-3.852-9.417 8.71.585-3.133-10.376 9.91.286-1.663-10.603 10.406 2.67.66-9.897 10.032 4.109.255-8.726 8.996 4.739.03-7.274 11.41 4.754"
1914
+ fill="none"
1915
+ stroke="#473125"
1916
+ stroke-linecap="round"
1917
+ stroke-linejoin="round"
1918
+ stroke-width="2.844"
1919
+ />
1920
+ <g clip-path="url(#Z)" opacity=".33">
1921
+ <path
1922
+ d="M2264.038 1568.005s-329.53-381.478-350.432-404.509c-20.917-23.032-33.197-19.793-50.98-18.714 9.52-9.267 37.41-23.271 66.079 8.308 28.654 31.547 349.967 407.103 349.967 407.103z"
1923
+ fill="#473125"
1924
+ />
1925
+ </g>
1926
+ <g clip-path="url(#aa)" opacity=".67">
1927
+ <path
1928
+ d="M1889.284 1185.567l328.916 350.695c3.705 3.944 3.495 10.137-.45 13.825-.03.044-.074.075-.104.104-3.96 3.584-10.063 3.36-13.72-.554l-324.343-346.258c-3.704-3.927-3.777-10.075.165-13.793.045-.03 5.878-7.917 9.537-4.019"
1929
+ fill="#fff"
1930
+ />
1931
+ </g>
1932
+ <path
1933
+ d="M2245.55 1607.425c-6.822-7.513.045-24.86 15.325-38.746 15.293-13.885 33.21-19.058 40.05-11.545 6.822 7.527-.046 24.875-15.325 38.76-15.294 13.885-33.213 19.058-40.05 11.531"
1934
+ fill="#fff"
1935
+ />
1936
+ <path
1937
+ d="M2245.55 1607.425c-6.822-7.513.045-24.86 15.325-38.746 15.293-13.885 33.21-19.058 40.05-11.545 6.822 7.527-.046 24.875-15.325 38.76-15.294 13.885-33.213 19.058-40.05 11.531z"
1938
+ fill="none"
1939
+ stroke="#473125"
1940
+ stroke-width="2.097"
1941
+ />
1942
+ <path
1943
+ d="M2253.076 1600.602c-4.707-5.187.48-17.602 11.622-27.724 11.14-10.106 23.99-14.095 28.698-8.906 4.723 5.203-.478 17.603-11.62 27.71-11.14 10.121-23.975 14.108-28.7 8.92"
1944
+ fill="#f0e53c"
1945
+ />
1946
+ <path
1947
+ d="M2253.076 1600.602c-4.707-5.187.48-17.602 11.622-27.724 11.14-10.106 23.99-14.095 28.698-8.906 4.723 5.203-.478 17.603-11.62 27.71-11.14 10.121-23.975 14.108-28.7 8.92z"
1948
+ fill="none"
1949
+ stroke="#473125"
1950
+ stroke-width="2.097"
1951
+ />
1952
+ <g clip-path="url(#ab)" opacity=".33">
1953
+ <path d="M2273.964 1597.634l-6.268 3.27-13.525-14.89 3.855-5.924z" fill="#473125" />
1954
+ </g>
1955
+ <g clip-path="url(#ac)" opacity=".67">
1956
+ <path d="M2278.403 1565.006s6.463 8.606 8.621 11.666c2.16 3.073-.899 11.844-6.207 5.652-5.309-6.193-9.492-13.255-9.492-13.255z" fill="#fff" />
1957
+ </g>
1958
+ <path d="M2267.231 1772.767s-4.483-1.095-5.232-6.267" fill="none" stroke="#473125" stroke-width="2.068" />
1959
+ <path
1960
+ d="M2272.165 1772.648c0-1.184-1.215-2.144-2.73-2.144-1.514 0-2.73.96-2.73 2.144 0 1.185 1.216 2.145 2.73 2.145 1.515 0 2.73-.96 2.73-2.145"
1961
+ fill="#d32011"
1962
+ />
1963
+ <path
1964
+ d="M2272.165 1772.648c0-1.184-1.215-2.144-2.73-2.144-1.514 0-2.73.96-2.73 2.144 0 1.185 1.216 2.145 2.73 2.145 1.515 0 2.73-.96 2.73-2.145z"
1965
+ fill="none"
1966
+ stroke="#473125"
1967
+ stroke-width=".689"
1968
+ />
1969
+ <path
1970
+ d="M2259.195 1770.744c-.45-1.095-1.95-1.514-3.345-.96-1.393.57-2.174 1.935-1.723 3.03.45 1.095 1.934 1.513 3.343.959 1.395-.57 2.174-1.92 1.725-3.03"
1971
+ fill="#d32011"
1972
+ />
1973
+ <path
1974
+ d="M2259.195 1770.744c-.45-1.095-1.95-1.514-3.345-.96-1.393.57-2.174 1.935-1.723 3.03.45 1.095 1.934 1.513 3.343.959 1.395-.57 2.174-1.92 1.725-3.03z"
1975
+ fill="none"
1976
+ stroke="#473125"
1977
+ stroke-width=".689"
1978
+ />
1979
+ <path
1980
+ d="M2256.376 1822.384c-.45-1.095-1.935-1.529-3.344-.959-1.394.57-2.175 1.918-1.724 3.013.45 1.11 1.95 1.53 3.343.96 1.395-.57 2.175-1.919 1.725-3.014"
1981
+ fill="#d32011"
1982
+ />
1983
+ <path
1984
+ d="M2256.376 1822.384c-.45-1.095-1.935-1.529-3.344-.959-1.394.57-2.175 1.918-1.724 3.013.45 1.11 1.95 1.53 3.343.96 1.395-.57 2.175-1.919 1.725-3.014z"
1985
+ fill="none"
1986
+ stroke="#473125"
1987
+ stroke-width=".689"
1988
+ />
1989
+ <path
1990
+ d="M2258.685 1822.054c.36-1.124 1.813-1.665 3.253-1.214 1.44.45 2.325 1.74 1.964 2.88-.36 1.122-1.813 1.663-3.253 1.213-1.439-.465-2.325-1.74-1.964-2.879"
1991
+ fill="#d32011"
1992
+ />
1993
+ <path
1994
+ d="M2258.685 1822.054c.36-1.124 1.813-1.665 3.253-1.214 1.44.45 2.325 1.74 1.964 2.88-.36 1.122-1.813 1.663-3.253 1.213-1.439-.465-2.325-1.74-1.964-2.879z"
1995
+ fill="none"
1996
+ stroke="#473125"
1997
+ stroke-width=".689"
1998
+ />
1999
+ <path
2000
+ d="M2262.209 1725.146c-.45-1.095-1.95-1.529-3.344-.959s-2.175 1.92-1.724 3.027c.45 1.095 1.934 1.516 3.344.946 1.394-.57 2.174-1.919 1.724-3.014"
2001
+ fill="#d32011"
2002
+ />
2003
+ <path
2004
+ d="M2262.209 1725.146c-.45-1.095-1.95-1.529-3.344-.959s-2.175 1.92-1.724 3.027c.45 1.095 1.934 1.516 3.344.946 1.394-.57 2.174-1.919 1.724-3.014z"
2005
+ fill="none"
2006
+ stroke="#473125"
2007
+ stroke-width=".689"
2008
+ />
2009
+ <path
2010
+ d="M2272.554 1725.206c.346-1.125-.525-2.414-1.964-2.864-1.44-.449-2.909.09-3.253 1.215-.36 1.14.524 2.414 1.964 2.88 1.44.45 2.894-.092 3.253-1.23"
2011
+ fill="#d32011"
2012
+ />
2013
+ <path
2014
+ d="M2272.554 1725.206c.346-1.125-.525-2.414-1.964-2.864-1.44-.449-2.909.09-3.253 1.215-.36 1.14.524 2.414 1.964 2.88 1.44.45 2.894-.092 3.253-1.23z"
2015
+ fill="none"
2016
+ stroke="#473125"
2017
+ stroke-width=".689"
2018
+ />
2019
+ <path d="M2267.681 1723.766c-1.948-.224-3.493-1.784-3.673-3.732" fill="none" stroke="#473125" stroke-width="2.068" />
2020
+ <path
2021
+ d="M2238.892 1655.363c.06-1.186-1.11-2.205-2.624-2.28-1.515-.075-2.774.84-2.835 2.01-.06 1.184 1.126 2.203 2.624 2.278 1.516.075 2.79-.824 2.835-2.008"
2022
+ fill="#d32011"
2023
+ />
2024
+ <path
2025
+ d="M2238.892 1655.363c.06-1.186-1.11-2.205-2.624-2.28-1.515-.075-2.774.84-2.835 2.01-.06 1.184 1.126 2.203 2.624 2.278 1.516.075 2.79-.824 2.835-2.008z"
2026
+ fill="none"
2027
+ stroke="#473125"
2028
+ stroke-width=".689"
2029
+ />
2030
+ <path
2031
+ d="M2232.175 1670.34c-1.17-.103-2.25 1.036-2.385 2.536-.12 1.514.72 2.819 1.906 2.923 1.184.105 2.248-1.035 2.383-2.533.119-1.515-.718-2.82-1.904-2.925"
2032
+ fill="#d32011"
2033
+ />
2034
+ <path
2035
+ d="M2232.175 1670.34c-1.17-.103-2.25 1.036-2.385 2.536-.12 1.514.72 2.819 1.906 2.923 1.184.105 2.248-1.035 2.383-2.533.119-1.515-.718-2.82-1.904-2.925z"
2036
+ fill="none"
2037
+ stroke="#473125"
2038
+ stroke-width=".689"
2039
+ />
2040
+ <path
2041
+ d="M2224.482 1661.376c23.197 5.862 38.58 38.069 38.042 62.15-.825 36.152-2.52 66.186-5.188 91.81-.15 1.426-.27 2.835-.39 4.23-.406 4.559-.78 8.876-1.98 13.24l1.995.554c1.26-4.557 1.633-8.967 2.04-13.63.12-1.378.253-2.773.388-4.183 2.67-25.67 4.364-55.764 5.202-91.976.571-25.341-14.768-59.661-39.285-65.854z"
2042
+ fill="#00702d"
2043
+ />
2044
+ <path
2045
+ d="M2224.482 1661.376c23.197 5.862 38.58 38.069 38.042 62.15-.825 36.152-2.52 66.186-5.188 91.81-.15 1.426-.27 2.835-.39 4.23-.406 4.559-.78 8.876-1.98 13.24l1.995.554c1.26-4.557 1.633-8.967 2.04-13.63.12-1.378.253-2.773.388-4.183 2.67-25.67 4.364-55.764 5.202-91.976.571-25.341-14.768-59.661-39.285-65.854z"
2046
+ fill="none"
2047
+ stroke="#1b402f"
2048
+ stroke-width=".689"
2049
+ />
2050
+ <path d="M2018.49 1651.314l10.106-1.604-9.596 24.65-3.269-22.58z" fill="#00702d" />
2051
+ <path d="M2018.49 1651.314l10.106-1.604-9.596 24.65-3.269-22.58z" fill="none" stroke="#1b402f" stroke-width=".689" />
2052
+ <path
2053
+ d="M2002.402 1813.672c5.053 12.4 31.322 53.214 42.973 59.273-12.595 1.89-44.863-41.009-49-51.4"
2054
+ fill="#00702d"
2055
+ stroke="#1b402f"
2056
+ stroke-width=".689"
2057
+ />
2058
+ <path
2059
+ d="M2004.35 1835.67c5.384 19.972 25.087 37.154 37.458 42.283-10.361-13.12-23.617-27.874-30.214-43.319"
2060
+ fill="#00702d"
2061
+ stroke="#1b402f"
2062
+ stroke-width=".689"
2063
+ />
2064
+ <path
2065
+ d="M1997.108 1824.348c3.089 14.561 17.125 45.583 25.117 52.421-3.99-11.412-6.18-19.029-6.733-31.278"
2066
+ fill="#00702d"
2067
+ stroke="#1b402f"
2068
+ stroke-width=".689"
2069
+ />
2070
+ <path
2071
+ d="M1995.745 1814.122c3.178 17.768 13.719 32.493 31.442 37.262-14.14-10.572-27.02-32.539-28.698-50.008"
2072
+ fill="#00702d"
2073
+ stroke="#1b402f"
2074
+ stroke-width=".689"
2075
+ />
2076
+ <path
2077
+ d="M1988.786 1793.97c5.503 12.04 27.291 45.657 40.726 52.9-8.622-11.035-25.162-35.852-29.299-52.045"
2078
+ fill="#00702d"
2079
+ stroke="#1b402f"
2080
+ stroke-width=".689"
2081
+ />
2082
+ <path
2083
+ d="M1992.52 1787.583c-1.155 6.897-6.897 10.795 5.518 51.475.915-23.435.224-41.82-2.294-49.631m1.364.45c3 10.346 5.294 20.917 28.955 42.749-5.053-10.795-23.436-50.786-29.87-52.855"
2084
+ fill="#00702d"
2085
+ stroke="#1b402f"
2086
+ stroke-width=".689"
2087
+ />
2088
+ <path
2089
+ d="M1986.088 1759.782c-2.294 5.744-8.967 43.888 2.518 76.981.465-18.158 8.113-51.13 9.027-66.064"
2090
+ fill="#00702d"
2091
+ stroke="#1b402f"
2092
+ stroke-width=".689"
2093
+ />
2094
+ <path
2095
+ d="M1984.469 1738.176c-2.294 5.068-9.417 34.937-9.641 52.166 3.898-6.208 15.849-22.521 17.918-38.835 2.758 11.035-1.141 15.624 21.607 47.336-3.45-13.09-11.726-52.39-19.313-65.031"
2096
+ fill="#00702d"
2097
+ stroke="#1b402f"
2098
+ stroke-width=".689"
2099
+ />
2100
+ <path
2101
+ d="M1992.985 1728.295c-3.688 3.223-6.897 13.33-5.292 22.985 1.604 9.656 8.501 59.978 8.501 59.978 3.223-25.97 4.603-72.617 0-81.345"
2102
+ fill="#00702d"
2103
+ stroke="#1b402f"
2104
+ stroke-width=".689"
2105
+ />
2106
+ <path
2107
+ d="M1988.562 1696.597c-1.56 9.19-15.58 68.704-20.167 77.895 6.207-6.897 37.216-47.801 25.28-71.014"
2108
+ fill="#00702d"
2109
+ stroke="#1b402f"
2110
+ stroke-width=".689"
2111
+ />
2112
+ <path d="M2001.022 1685.786c-3.223 7.362-17.228 22.746-1.38 61.13-.464-20.451 1.38-61.13 1.38-61.13" fill="#00702d" />
2113
+ <path
2114
+ d="M2001.022 1685.786c-3.223 7.362-17.228 22.746-1.38 61.13-.464-20.451 1.38-61.13 1.38-61.13z"
2115
+ fill="none"
2116
+ stroke="#1b402f"
2117
+ stroke-width=".689"
2118
+ />
2119
+ <path
2120
+ d="M1995.745 1679.818c-6.673 4.589-23.902 25.506-30.8 50.096 5.054-6.897 30.65-29.193 33.484-43.2"
2121
+ fill="#00702d"
2122
+ stroke="#1b402f"
2123
+ stroke-width=".689"
2124
+ />
2125
+ <path
2126
+ d="M2007.23 1664.884c-2.76 8.952-8.742 26.884-7.587 38.835 1.154 11.95 10.72 54.144 10.03 63.65 1.005-13.568 1.064-38.145 0-54.46-1.064-16.312.765-39.763 7.2-56.992l1.617-4.603-9.49 5.982z"
2127
+ fill="#00702d"
2128
+ />
2129
+ <path
2130
+ d="M2007.23 1664.884c-2.76 8.952-8.742 26.884-7.587 38.835 1.154 11.95 10.72 54.144 10.03 63.65 1.005-13.568 1.064-38.145 0-54.46-1.064-16.312.765-39.763 7.2-56.992l1.617-4.603-9.49 5.982z"
2131
+ fill="none"
2132
+ stroke="#1b402f"
2133
+ stroke-width=".689"
2134
+ />
2135
+ <path
2136
+ d="M1995.04 1682.577c-4.813 5.518-20.212 31.249-23.437 57.669 5.053-11.95 14.485-23.887 19.312-30.094 4.83-6.208 17.229-31.49 14.696-42.06z"
2137
+ fill="#00702d"
2138
+ />
2139
+ <path
2140
+ d="M1995.04 1682.577c-4.813 5.518-20.212 31.249-23.437 57.669 5.053-11.95 14.485-23.887 19.312-30.094 4.83-6.208 17.229-31.49 14.696-42.06z"
2141
+ fill="none"
2142
+ stroke="#1b402f"
2143
+ stroke-width=".689"
2144
+ />
2145
+ <path
2146
+ d="M2019.855 1652.243c.24 8.967-3.209 42.044-3.674 51.927-.45 9.88.06 27.574-2.864 36.076-.12-5.968-4.379-29.614-3.899-39.511.466-9.911 2.864-40.214 6.54-45.972m-11.278 25.055c.016 6.658 4.56 25.266 4.95 32.388m-4.95-53.756c-4.813 7.813-29.389 39.286-36.286 47.788 5.518-3.21 28.954-13.09 44.923-48.476"
2147
+ fill="#00702d"
2148
+ stroke="#1b402f"
2149
+ stroke-width=".689"
2150
+ />
2151
+ <path d="M2037.098 1635.466c-8.037 2.533-48.25 22.52-66.634 52.165 14.933-12.64 46.647-33.784 61.581-37.683z" fill="#00702d" />
2152
+ <path
2153
+ d="M2037.098 1635.466c-8.037 2.533-48.25 22.52-66.634 52.165 14.933-12.64 46.647-33.784 61.581-37.683z"
2154
+ fill="none"
2155
+ stroke="#1b402f"
2156
+ stroke-width=".689"
2157
+ />
2158
+ <path
2159
+ d="M2040.247 1625.584c-7.572.689-30.41 5.683-48.011 31.249 8.726-7.123 18.832-15.625 35.835-20.454"
2160
+ fill="#00702d"
2161
+ stroke="#1b402f"
2162
+ stroke-width=".689"
2163
+ />
2164
+ <path d="M2041.238 1631.102c-8.052 8.726-24.815 17.228-25.506 68.478 6.433-25.055 17.004-51.01 34.457-64.114z" fill="#00702d" />
2165
+ <path
2166
+ d="M2041.238 1631.102c-8.052 8.726-24.815 17.228-25.506 68.478 6.433-25.055 17.004-51.01 34.457-64.114z"
2167
+ fill="none"
2168
+ stroke="#1b402f"
2169
+ stroke-width=".689"
2170
+ />
2171
+ <path d="M2043.996 1624.668c-11.037 4.59-35.987 21.533-46.483 34.083 11.547-7.437 33.619-18.458 45.554-23.286z" fill="#00702d" />
2172
+ <path
2173
+ d="M2043.996 1624.668c-11.037 4.59-35.987 21.533-46.483 34.083 11.547-7.437 33.619-18.458 45.554-23.286z"
2174
+ fill="none"
2175
+ stroke="#1b402f"
2176
+ stroke-width=".689"
2177
+ />
2178
+ <path
2179
+ d="M2047.67 1629.258c-3.45 7.586-19.987 53.079-22.057 65.495 5.742-8.967 34.456-58.598 36.526-74.447 2.07-15.865 0-.93 0-.93z"
2180
+ fill="#00702d"
2181
+ />
2182
+ <path
2183
+ d="M2047.67 1629.258c-3.45 7.586-19.987 53.079-22.057 65.495 5.742-8.967 34.456-58.598 36.526-74.447 2.07-15.865 0-.93 0-.93z"
2184
+ fill="none"
2185
+ stroke="#1b402f"
2186
+ stroke-width=".689"
2187
+ />
2188
+ <path d="M2023.543 1628.566c-5.982.931-28.144 8.054-34.98 23.213-1.336-4.364 4.646-25.972 43.018-31.473z" fill="#00702d" />
2189
+ <path
2190
+ d="M2023.543 1628.566c-5.982.931-28.144 8.054-34.98 23.213-1.336-4.364 4.646-25.972 43.018-31.473z"
2191
+ fill="none"
2192
+ stroke="#1b402f"
2193
+ stroke-width=".689"
2194
+ />
2195
+ <path d="M2048.808 1615.477c-6.192-1.604-27.799-7.812-47.786 8.728 8.501-2.76 24.125-4.364 34.697-1.83z" fill="#00702d" />
2196
+ <path
2197
+ d="M2048.808 1615.477c-6.192-1.604-27.799-7.812-47.786 8.728 8.501-2.76 24.125-4.364 34.697-1.83z"
2198
+ fill="none"
2199
+ stroke="#1b402f"
2200
+ stroke-width=".689"
2201
+ />
2202
+ <path d="M2060.758 1603.062c-5.741-1.14-22.97-3.449-32.161 8.501 6.896-3.209 16.088-3.898 25.97-.45z" fill="#00702d" />
2203
+ <path
2204
+ d="M2060.758 1603.062c-5.741-1.14-22.97-3.449-32.161 8.501 6.896-3.209 16.088-3.898 25.97-.45z"
2205
+ fill="none"
2206
+ stroke="#1b402f"
2207
+ stroke-width=".689"
2208
+ />
2209
+ <path d="M2075.244 1595.715c-4.603-2.983-17.918-8.967-34.247-1.155 6.207-.225 15.639-.225 21.382 6.208z" fill="#00702d" />
2210
+ <path
2211
+ d="M2075.244 1595.715c-4.603-2.983-17.918-8.967-34.247-1.155 6.207-.225 15.639-.225 21.382 6.208z"
2212
+ fill="none"
2213
+ stroke="#1b402f"
2214
+ stroke-width=".689"
2215
+ />
2216
+ <path
2217
+ d="M2097.076 1602.103c-2.07-5.01-17.244-18.338-45.958 3.269 10.106-.466 30.333-5.07 37.906-3.914m-37.217 12.64c-5.293-1.154-20.002-5.308-34.007 20.212 12.177-8.037 19.298-8.037 25.266-8.037"
2218
+ fill="#00702d"
2219
+ stroke="#1b402f"
2220
+ stroke-width=".689"
2221
+ />
2222
+ <path
2223
+ d="M2079.832 1604.682c-5.322-2.37-20.212-6.897-36.99 14.934 10.106-2.76 30.332-14.484 33.092-14.245"
2224
+ fill="#00702d"
2225
+ stroke="#1b402f"
2226
+ stroke-width=".689"
2227
+ />
2228
+ <path
2229
+ d="M2075.244 1607.89c-4.468-.674-33.857 8.982-40.44 23.212 10.796-5.294 27.335-12.641 36.076-16.553"
2230
+ fill="#00702d"
2231
+ stroke="#1b402f"
2232
+ stroke-width=".689"
2233
+ />
2234
+ <path d="M2097.076 1602.103c-5.292-2.715-25.746-1.634-35.732 9.432 11.83-2.954 17.349-3.644 25.61-2.49z" fill="#00702d" />
2235
+ <path
2236
+ d="M2097.076 1602.103c-5.292-2.715-25.746-1.634-35.732 9.432 11.83-2.954 17.349-3.644 25.61-2.49z"
2237
+ fill="none"
2238
+ stroke="#1b402f"
2239
+ stroke-width=".689"
2240
+ />
2241
+ <path
2242
+ d="M2032.495 1642.362c2.684-5.354 10.347-22.056 31.338-25.64.571 4.692-9.805 12.684-15.938 15.984-6.134 3.298-10.602 5.218-15.4 9.656"
2243
+ fill="#00702d"
2244
+ />
2245
+ <path
2246
+ d="M2032.495 1642.362c2.684-5.354 10.347-22.056 31.338-25.64.571 4.692-9.805 12.684-15.938 15.984-6.134 3.298-10.602 5.218-15.4 9.656z"
2247
+ fill="none"
2248
+ stroke="#1b402f"
2249
+ stroke-width=".689"
2250
+ />
2251
+ <path
2252
+ d="M2058.12 1624.205c5.398-8.503 18.263-23.047 32.283-16.344-2.07 2.564-7.347 4.498-12.865 5.143-5.518.63-19.417 11.2-19.417 11.2"
2253
+ fill="#00702d"
2254
+ />
2255
+ <path
2256
+ d="M2058.12 1624.205c5.398-8.503 18.263-23.047 32.283-16.344-2.07 2.564-7.347 4.498-12.865 5.143-5.518.63-19.417 11.2-19.417 11.2z"
2257
+ fill="none"
2258
+ stroke="#1b402f"
2259
+ stroke-width=".689"
2260
+ />
2261
+ <path
2262
+ d="M2060.758 1633.17c.466 4.14-1.602 12.401-6.655 28.37-5.054 15.984-5.985 16.899-7.349 24.246-.928-6.432-1.617-34.922 3.435-45.493"
2263
+ fill="#00702d"
2264
+ stroke="#1b402f"
2265
+ stroke-width=".689"
2266
+ />
2267
+ <path
2268
+ d="M2071.33 1620.306c-.225 3.673-22.147 32.402-23.66 44.113.45-13.33-2.339-36.932 22.101-48.747"
2269
+ fill="#00702d"
2270
+ stroke="#1b402f"
2271
+ stroke-width=".689"
2272
+ />
2273
+ <path
2274
+ d="M2067.657 1622.375c-.69 10.106-2.07 19.522-5.519 28.024-3.447 8.502-6.88 13.105-7.121 25.28 4.603-11.26 26.03-54.07 33.602-63.486"
2275
+ fill="#00702d"
2276
+ stroke="#1b402f"
2277
+ stroke-width=".689"
2278
+ />
2279
+ <path
2280
+ d="M2075.933 1632.015c-.689 6.208-4.362 26.196-7.812 34.008 5.744-6.883 22.911-36.242 25.67-43.363"
2281
+ fill="#00702d"
2282
+ stroke="#1b402f"
2283
+ stroke-width=".689"
2284
+ />
2285
+ <path
2286
+ d="M2082.367 1626.962c-.227 5.744-1.036 17.005-3.165 24.817 4.32-8.277 7.302-11.486 11.201-16.314 3.914-4.829 12.642-17.814 9.882-22.461"
2287
+ fill="#00702d"
2288
+ stroke="#1b402f"
2289
+ stroke-width=".689"
2290
+ />
2291
+ <path
2292
+ d="M2056.636 1629.032c4.229-3.33 13.646-5.968 18.608-7.812 4.574-1.694 14.244-5.743 12.641-8.726-1.62-3-10.691-.96-15.174 1.14-4.484 2.098-16.075 15.398-16.075 15.398"
2293
+ fill="#00702d"
2294
+ />
2295
+ <path
2296
+ d="M2056.636 1629.032c4.229-3.33 13.646-5.968 18.608-7.812 4.574-1.694 14.244-5.743 12.641-8.726-1.62-3-10.691-.96-15.174 1.14-4.484 2.098-16.075 15.398-16.075 15.398z"
2297
+ fill="none"
2298
+ stroke="#1b402f"
2299
+ stroke-width=".689"
2300
+ />
2301
+ <path
2302
+ d="M2097.526 1615.178c.48-2.805-10.707-5.008-15.16 0-4.454 5.007-8.097 13.165-10.017 21.667-1.933 8.5-4.228 16.089-5.833 18.847 4.125-4.378 7.693-12.19 12.686-20.226 5.01-8.038 17.635-16.225 18.324-20.288"
2303
+ fill="#00702d"
2304
+ />
2305
+ <path
2306
+ d="M2097.526 1615.178c.48-2.805-10.707-5.008-15.16 0-4.454 5.007-8.097 13.165-10.017 21.667-1.933 8.5-4.228 16.089-5.833 18.847 4.125-4.378 7.693-12.19 12.686-20.226 5.01-8.038 17.635-16.225 18.324-20.288z"
2307
+ fill="none"
2308
+ stroke="#1b402f"
2309
+ stroke-width=".689"
2310
+ />
2311
+ <path
2312
+ d="M2261.835 1777.417c3.898 3.448 9.43 3.524 13.419 6.687-.57.12-1.305-.135-1.844.06 2.008 1.545 4.529 4.018 5.472 6.672-.224.24-1.11 0-1.35.225 1.515 1.635 2.699 3.973 3.75 5.968-.496.21-1.185-.164-1.68.06.765 2.744.975 5.968.12 8.743-2.803.059-5.292-1.036-7.047-3.194-.075.674.119 1.394.164 1.979-3.283-.571-6.072-2.834-6.866-6.103a9.962 9.962 0 00-.555 2.114c-1.89-2.37-2.7-5.503-2.595-8.546-.39.614-.57 1.303-.808 1.993-2.026-5.592 2.308-11.935-.526-16.658"
2313
+ fill="#00702d"
2314
+ stroke="#1b402f"
2315
+ stroke-width=".689"
2316
+ />
2317
+ <path
2318
+ d="M2269.405 1802.066c0-3.389-.135-6.972.106-10.255 2.294 1.678 5.233 2.19 7.602 3.704m.12 6.431c-2.985-2.039-5.639-5.067-7.139-8.382"
2319
+ fill="none"
2320
+ stroke="#1b402f"
2321
+ stroke-linecap="round"
2322
+ stroke-width=".689"
2323
+ />
2324
+ <path
2325
+ d="M2264.937 1794.36c1.8-2.923 1.71-6.583 1.306-9.822 2.502 2.73 6.267 2.849 9.026 4.888m-5.757 2.385c-.646-1.17-1.8-3.929-2.28-5.144m-.989-2.129c-.676-1.378-2.551-4.198-3.615-5.217"
2326
+ fill="none"
2327
+ stroke="#1b402f"
2328
+ stroke-linecap="round"
2329
+ stroke-width=".689"
2330
+ />
2331
+ <path
2332
+ d="M2257.861 1821.98c-5.489 3.553-17.71 6.852-19.733 14.02.18.225 1.05.21 1.334.48-2.82 2.052-5.233 4.917-5.218 8.53.495.27 1.005-.255 1.514.015-1.274 2.984-1.514 6.36-1.454 9.672 2.788-.884 5.503-2.519 7.407-4.694.015.705-.09 1.441-.15 2.16 1.56-1.575 3.51-2.55 5.038-4.123.061.645-.194 1.334-.15 1.98 2.175-1.455 4.14-3.66 5.368-6.074.21.39-.045 1.004.031 1.514 6.701-4.962 4.587-13.84 5.053-21.156"
2333
+ fill="#00702d"
2334
+ stroke="#1b402f"
2335
+ stroke-width=".689"
2336
+ />
2337
+ <path
2338
+ d="M2237.347 1849.629c3.33-2.789 4.56-7.722 8.007-10.046m-1.034 8.096c1.125-3.043 1.784-6.341 1.47-9.641-2.7 1.605-5.429 3.959-8.532 4.543m4.138-7.947c2.46-2.1 5.532-1.693 8.022-3.402-.195 3.238.974 6.22.451 9.534m-4.289-2.428c1.244-1.95 1.949-4.198 3.389-6.057m.57-1.215c1.29-2.144 3.763-3.253 5.802-4.588"
2339
+ fill="none"
2340
+ stroke="#1b402f"
2341
+ stroke-linecap="round"
2342
+ stroke-width=".689"
2343
+ />
2344
+ <path
2345
+ d="M2256.45 1822.744c-.18 6.972-4.558 15.834.524 21.982.3-.03.81-.795 1.23-.87.106 3.719 1.185 7.573 4.364 9.776.54-.27.39-1.034.93-1.32 1.874 2.94 4.693 5.219 7.647 7.199.9-2.985 1.11-6.358.346-9.341.629.419 1.214.959 1.798 1.454-.435-2.34-.12-4.634-.584-6.928.599.345 1.064.99 1.649 1.349.03-2.803-.72-5.862-2.114-8.412.479.06.856.645 1.365.9-.345-8.892-9.448-12.476-15.61-17.363"
2346
+ fill="#00702d"
2347
+ stroke="#1b402f"
2348
+ stroke-width=".736"
2349
+ />
2350
+ <path
2351
+ d="M2268.58 1853.647c-.45-4.603-4.061-8.697-4.018-13.136m6.508 5.864c-1.995-2.834-4.499-5.443-7.603-7.183-.225 3.33.211 7.168-1.154 10.226m-4.499-8.47c-.374-3.435 1.846-5.864 1.846-9.087 2.728 2.159 6.073 2.954 8.681 5.443m-4.753 2.264c-.96-2.28-2.504-4.273-3.284-6.671m-.734-1.247c-1.096-2.444-.586-5.279-.525-7.872"
2352
+ fill="none"
2353
+ stroke="#1b402f"
2354
+ stroke-linecap="round"
2355
+ stroke-width=".736"
2356
+ />
2357
+ <path
2358
+ d="M2258.55 1820.33c-2.684 7.513-9.882 10.766-13.03 17.393.615.075 1.14-.435 1.799-.299-.825 4.093-3.78 7.331-3.39 11.845.526-.15 1.11-.735 1.666-.826-.404 2.535-.3 5.43.6 7.53.45-.152.795-.812 1.29-.976-.69 3.3.915 6.327 1.934 9.221.735-2.309 2.235-4.364 3.764-5.952.164.63.015 1.378.209 1.903 1.275-2.309 2.34-4.993 3.614-7.287.435.481.164 1.035.554 1.56 1.755-2.324 2.369-5.443 2.416-8.412.419.465.749 1.185 1.123 1.68 1.035-3.015 1.035-6.224.585-9.433.539.645 1.064 1.245 1.529 1.995 1.335-7.12-4.798-12.34-4.138-19.762"
2359
+ fill="#00702d"
2360
+ stroke="#1b402f"
2361
+ stroke-width=".689"
2362
+ />
2363
+ <path
2364
+ d="M2247.874 1852.043c3.119-1.02 5.113-3.823 6.208-6.837.614 2.278 1.904 3.614 3.088 5.458m-8.787-4.65c3.525-1.558 6.193-4.752 7.378-8.276.193 2.43 1.094 4.214 1.934 6.372m-6.208-7.931c3.27-1.2 5.698-4.003 6.043-7.452-.239 3.358.586 6.793 2.234 9.52m-6.897 13.106c-.42 2.25-1.334 4.258-2.76 6.028m6.089-20.617c.479-1.05.674-2.25.585-3.45m-2.759 12.296c-.166-1.574.224-3.073 1.14-4.138"
2365
+ fill="none"
2366
+ stroke="#1b402f"
2367
+ stroke-linecap="round"
2368
+ stroke-width=".689"
2369
+ />
2370
+ <path
2371
+ d="M2259.764 1778.106c-5.173 4.003-14.244 6.117-15.653 13.42.195.21 1.063.12 1.38.36-2.64 2.294-4.815 5.353-4.485 8.952.51.224.975-.346 1.5-.12-1.006 3.088-.96 6.476-.63 9.776 2.713-1.125 5.278-2.985 6.987-5.308.075.705.03 1.44.03 2.16 1.426-1.71 3.283-2.85 4.663-4.529.136.63-.075 1.35.03 1.98 2.04-1.65 3.824-3.99 4.828-6.509.24.376.06 1.005.164 1.515 6.254-5.518 3.405-14.184 3.256-21.517"
2372
+ fill="#00702d"
2373
+ stroke="#1b402f"
2374
+ stroke-width=".689"
2375
+ />
2376
+ <path
2377
+ d="M2244.59 1805.171c3.074-3.059 3.884-8.083 7.137-10.691m-.344 8.157c.855-3.12 1.244-6.478.63-9.73-2.534 1.812-5.068 4.391-8.112 5.247m3.449-8.262c2.277-2.31 5.382-2.174 7.705-4.08.091 3.256 1.5 6.119 1.261 9.477m-4.483-2.069c1.079-2.038 1.589-4.348 2.879-6.327m.448-1.261c1.11-2.249 3.48-3.553 5.398-5.053"
2378
+ fill="none"
2379
+ stroke="#1b402f"
2380
+ stroke-linecap="round"
2381
+ stroke-width=".689"
2382
+ />
2383
+ <path
2384
+ d="M2262.584 1775.752c.479 7.961 4.873 13.48 6.057 20.707-.614-.09-.975-.72-1.65-.78-.345 4.168 1.59 8.097-.044 12.311-.45-.286-.855-1.005-1.365-1.245-.314 2.55-1.214 5.294-2.668 7.078-.39-.286-.541-1.006-.976-1.32-.24 3.36-2.624 5.832-4.408 8.321-.075-2.413-.93-4.798-1.965-6.76-.328.568-.404 1.317-.718 1.767-.601-2.564-.87-5.443-1.455-7.992-.555.33-.45.931-.974 1.334-1.035-2.728-.765-5.892.029-8.756-.54.33-1.05.944-1.558 1.305-.151-3.193.733-6.267 2.068-9.22-.705.464-1.38.898-2.024 1.483.705-7.198 8.112-10.917 9.552-18.233"
2385
+ fill="#00702d"
2386
+ stroke="#1b402f"
2387
+ stroke-width=".689"
2388
+ />
2389
+ <path
2390
+ d="M2262.404 1809.564c-2.715-1.844-3.854-5.098-4.064-8.291-1.23 2.008-2.834 2.938-4.499 4.377m9.731-2.023c-2.938-2.474-4.616-6.268-4.768-9.987-.87 2.265-2.233 3.735-3.628 5.578m8.157-5.893c-2.804-2.054-4.35-5.443-3.72-8.832-.704 3.285-2.457 6.343-4.797 8.518m2.969 14.499c-.226 2.28.104 4.467.976 6.567m-.107-21.501a6.988 6.988 0 01.405-3.48m-.779 12.582c.601-1.471.629-3.03.044-4.29"
2391
+ fill="none"
2392
+ stroke="#1b402f"
2393
+ stroke-linecap="round"
2394
+ stroke-width=".689"
2395
+ />
2396
+ <path
2397
+ d="M2264.562 1725.355c4.14 4.093 10.002 4.168 14.244 7.932-.613.135-1.378-.164-1.978.075 2.13 1.815 4.813 4.754 5.817 7.903-.239.284-1.17 0-1.425.27 1.605 1.933 2.85 4.708 3.974 7.077-.524.24-1.275-.195-1.784.075.81 3.254 1.035 7.062.12 10.346-2.968.075-5.608-1.23-7.467-3.779-.089.795.135 1.65.18 2.34-3.493-.66-6.448-3.344-7.303-7.227a13.793 13.793 0 00-.569 2.503c-2.009-2.804-2.879-6.523-2.745-10.136-.418.734-.614 1.56-.869 2.37-2.144-6.629 2.445-14.14-.555-19.749"
2398
+ fill="#00702d"
2399
+ stroke="#1b402f"
2400
+ stroke-width=".689"
2401
+ />
2402
+ <path
2403
+ d="M2272.6 1754.58c0-4.02-.15-8.262.104-12.145 2.444 1.98 5.548 2.593 8.068 4.377m.12 7.633c-3.165-2.43-5.969-6.013-7.558-9.957"
2404
+ fill="none"
2405
+ stroke="#1b402f"
2406
+ stroke-linecap="round"
2407
+ stroke-width=".689"
2408
+ />
2409
+ <path
2410
+ d="M2267.847 1745.447c1.92-3.462 1.828-7.81 1.394-11.635 2.653 3.224 6.658 3.375 9.581 5.773m-6.117 2.85c-.676-1.396-1.905-4.665-2.415-6.104m-1.049-2.519c-.72-1.634-2.699-4.978-3.823-6.208"
2411
+ fill="none"
2412
+ stroke="#1b402f"
2413
+ stroke-linecap="round"
2414
+ stroke-width=".689"
2415
+ />
2416
+ <path
2417
+ d="M2262.373 1726.181c-5.487 4.738-15.1 7.241-16.598 15.908.209.24 1.14.135 1.454.435-2.79 2.715-5.084 6.327-4.738 10.587.539.268 1.035-.39 1.589-.136-1.063 3.673-1.02 7.678-.674 11.591 2.879-1.336 5.592-3.539 7.423-6.298.06.84.028 1.71.028 2.564 1.515-2.009 3.48-3.373 4.95-5.368.119.75-.091 1.59.015 2.354 2.174-1.948 4.047-4.738 5.126-7.72.255.45.047 1.182.182 1.798 6.627-6.553 3.597-16.823 3.432-25.507"
2418
+ fill="#00702d"
2419
+ stroke="#1b402f"
2420
+ stroke-width=".689"
2421
+ />
2422
+ <path
2423
+ d="M2246.299 1758.253c3.254-3.613 4.109-9.58 7.542-12.67m-.36 9.672c.9-3.705 1.32-7.678.676-11.532-2.699 2.146-5.369 5.22-8.592 6.224m3.644-9.807c2.413-2.73 5.697-2.564 8.17-4.828.092 3.854 1.59 7.257 1.336 11.23m-4.752-2.458c1.139-2.415 1.693-5.144 3.043-7.482m.494-1.5c1.17-2.668 3.689-4.213 5.729-5.997"
2424
+ fill="none"
2425
+ stroke="#1b402f"
2426
+ stroke-linecap="round"
2427
+ stroke-width=".689"
2428
+ />
2429
+ <path
2430
+ d="M2264.008 1722.866c-1.83 8.998-8.636 13.465-11.036 21.473.613.044 1.08-.6 1.768-.525-.358 4.858-2.938 8.906-2.053 14.11.51-.225 1.02-.96 1.558-1.11-.118 2.983.3 6.343 1.442 8.712.433-.226.704-1.035 1.182-1.29-.33 3.914 1.605 7.287 2.94 10.556.494-2.743 1.74-5.279 3.104-7.287.224.718.164 1.605.404 2.204 1.02-2.82 1.77-6.043 2.79-8.817.494.51.284 1.17.734 1.74 1.47-2.864 1.74-6.554 1.455-10.002.464.494.885 1.305 1.304 1.844.69-3.613.345-7.347-.479-11.035.63.705 1.214 1.35 1.753 2.174.527-8.413-6.16-13.885-6.342-22.597"
2431
+ fill="#00702d"
2432
+ stroke="#1b402f"
2433
+ stroke-width=".745"
2434
+ />
2435
+ <path
2436
+ d="M2256.915 1760.773c2.984-1.485 4.665-4.933 5.414-8.548.869 2.595 2.31 4.034 3.703 6.059m-9.282-4.574c3.329-2.144 5.623-6.102 6.419-10.315.464 2.789 1.559 4.798 2.638 7.212m-7.062-8.622c3.118-1.71 5.218-5.219 5.173-9.252.135 3.929 1.349 7.827 3.284 10.871m-5.382 15.894c-.167 2.653-.856 5.083-2.07 7.272m3.749-24.56c.359-1.26.419-2.684.18-4.078m-1.366 14.574c-.346-1.815-.104-3.6.69-4.918"
2437
+ fill="none"
2438
+ stroke="#1b402f"
2439
+ stroke-linecap="round"
2440
+ stroke-width=".745"
2441
+ />
2442
+ <path
2443
+ d="M2240.226 1667.163c-.749 10.256-7.932 15.58-9.49 24.815.733-.06 1.168-.84 1.978-.84.33 5.428-2.053 10.302-.21 15.955.555-.33 1.035-1.215 1.65-1.47.314 3.33 1.334 7.002 3.013 9.447.481-.315.676-1.23 1.186-1.59.224 4.393 3.013 7.843 5.066 11.277.136-3.12 1.215-6.12 2.49-8.533.376.765.435 1.755.81 2.369.75-3.268 1.14-6.957 1.89-10.195.66.51.51 1.275 1.124 1.845 1.29-3.405 1.034-7.543.15-11.322.63.48 1.23 1.32 1.814 1.86.255-4.124-.736-8.202-2.265-12.191.84.689 1.62 1.334 2.385 2.158-.69-9.401-9.342-14.5-10.886-24.14"
2444
+ fill="#00702d"
2445
+ stroke="#1b402f"
2446
+ stroke-width=".689"
2447
+ />
2448
+ <path
2449
+ d="M2237.873 1709.626c3.269-2.083 4.678-6.162 4.993-10.27 1.425 2.728 3.314 4.122 5.248 6.163m-11.516-3.705c3.553-2.864 5.622-7.616 5.893-12.4.974 3.045 2.564 5.1 4.182 7.632m-9.565-8.532c3.373-2.369 5.278-6.552 4.603-11.02.764 4.318 2.79 8.486 5.518 11.561m-3.839 18.428c.225 2.968-.21 5.773-1.289 8.397m.585-27.83c.224-1.44.075-3.029-.405-4.529m.644 16.36c-.674-1.965-.689-3.989.03-5.563"
2450
+ fill="none"
2451
+ stroke="#1b402f"
2452
+ stroke-linecap="round"
2453
+ stroke-width=".689"
2454
+ />
2455
+ <path
2456
+ d="M2246.299 1667.178c11.606.869 6.463 7.347 7.273 13.84.464-.496.66-1.424 1.2-1.845.345 3.224 1.334 7.692 3.464 10.675.39-.028.689-1.123 1.064-1.183.749 2.788 2.413 5.788 3.823 8.382.525-.346.556-1.35 1.095-1.665 2.34 2.879 5.518 5.563 8.892 6.793 1.784-2.804 2.205-6.18 1.049-9.627.749.434 1.366 1.2 1.949 1.695 1.44-3.794.839-8.367-2.04-11.682.826.242 1.725.616 2.505 1.05-1.258-3.747-3.973-6.956-7.168-9.177.872.076 1.696.42 2.549.69-4.497-6.326-18.967-8.981-27.468-8.981"
2457
+ fill="#00702d"
2458
+ stroke="#1b402f"
2459
+ stroke-width=".757"
2460
+ />
2461
+ <path
2462
+ d="M2274.864 1689.715c-3.464-2.595-7.062-5.489-10.571-7.737.299 3.613-.976 7.002-.885 10.57m6.538 5.039c-.271-4.589-1.755-9.612-4.229-13.676"
2463
+ fill="none"
2464
+ stroke="#1b402f"
2465
+ stroke-linecap="round"
2466
+ stroke-width=".757"
2467
+ />
2468
+ <path
2469
+ d="M2269.72 1679.248c-4.108-.39-7.811-3.283-10.886-6.177 1.26 4.633-.929 8.577-.54 12.939m5.999-4.032c-.81-1.56-2.924-4.844-3.884-6.27m-1.575-2.638c-.988-1.74-2.398-4.048-5.428-5.052"
2470
+ fill="none"
2471
+ stroke="#1b402f"
2472
+ stroke-linecap="round"
2473
+ stroke-width=".757"
2474
+ />
2475
+ <path
2476
+ d="M2239.191 1668.093c8.907 2.953 2.385 15.084 4.274 21.59.345-.433.96-.9 1.335-1.364.076 4.92-.825 10.497 1.664 14.92.285-.944.915-1.904 1.124-2.834-.239 4.064 1.23 8.472 3.464 11.8.57-.868 1.844-1.453 2.414-2.338 1.664 6.567 11.006 6.973 11.562 12.684 1.56-6.312 6.671-11.17 3.282-17.677.63.12 1.365-.015 1.995.089 2.054-7.077-.27-12.7-4.633-18.127.644-.031 1.304-.301 1.873-.376-1.138-6.327-6.64-10.106-12.04-12.595.691-.12 1.29-.524 1.965-.69-2.384-3.66-6.896-3.553-10.346-5.143-2.669-1.215-5.398-3.658-7.933.06"
2477
+ fill="#00702d"
2478
+ stroke="#1b402f"
2479
+ stroke-width=".689"
2480
+ />
2481
+ <path
2482
+ d="M2240.226 1667.643c9.567 4.018 10.571 14.528 21.832 16.073m-7.466-.69c4.978 7.737.63 14.71.689 22.761m11.83-10c-2.369-3.404-5.518-5.549-9.07-7.347m.689 7.467c5.292 5.802 1.994 14.665 6.207 21.021m-14.59-35.956c.3 4.964-2.413 9.027-1.964 13.9"
2483
+ fill="none"
2484
+ stroke="#1b402f"
2485
+ stroke-linecap="round"
2486
+ stroke-width=".689"
2487
+ />
2488
+ <path
2489
+ d="M2196.954 1636.904c4.153 9.4-5.204 6.837 3.523 26.975.615-.39.63-1.29 1.349-1.68 2.85 4.649 3.029 10.06 7.302 14.185.33-.54.346-1.544.764-2.07 1.86 2.79 4.47 5.549 7.108 6.928.286-.494.016-1.41.302-1.95 2.247 3.765 6.34 5.504 9.759 7.573-1.334-2.834-1.798-5.968-1.814-8.696.69.494 1.215 1.334 1.846 1.694-.871-3.224-2.281-6.657-3.12-9.881.81.135 1.049.884 1.843 1.094-.464-3.6-2.622-7.138-5.173-10.061.78.119 1.71.585 2.476.78-1.711-3.748-4.5-6.882-7.708-9.687 1.05.226 2.039.42 3.105.795-5.024-7.992-15.055-8.426-20.948-16.223"
2490
+ fill="#00702d"
2491
+ stroke="#1b402f"
2492
+ stroke-width=".689"
2493
+ />
2494
+ <path
2495
+ d="M2215.067 1676.114c1.903-3.39 1.243-7.632-.405-11.425 2.517 1.754 4.857 2.084 7.526 2.984m-11.918 2.129c1.797-4.184 1.393-9.341-.617-13.705 2.28 2.219 4.647 3.298 7.271 4.769m-12.444-3.046c1.86-3.658 1.574-8.261-1.11-11.89 2.714 3.465 6.433 6.178 10.301 7.618m5.263 18.082c1.59 2.52 2.52 5.188 2.79 8.007m-12.536-24.845c-.495-1.38-1.364-2.698-2.503-3.808m8.261 14.14c-1.515-1.41-2.474-3.194-2.578-4.918"
2496
+ fill="none"
2497
+ stroke="#1b402f"
2498
+ stroke-linecap="round"
2499
+ stroke-width=".689"
2500
+ />
2501
+ <path
2502
+ d="M2205.56 1634.236c6.896 4.602 13.3 14.92 22.416 13.374.15-.344-.33-1.393-.18-1.89 3.81 2.25 8.307 3.54 12.355 1.515.03-.75-.824-1.064-.794-1.83 4.033-.134 7.947-1.723 11.65-3.642-2.488-2.848-5.772-5.204-9.22-6.283.78-.404 1.664-.69 2.503-1.02-2.608-1.004-4.738-2.788-7.302-3.748.69-.434 1.604-.51 2.294-.93-2.804-1.798-6.313-2.923-9.672-3.044.33-.465 1.14-.525 1.695-.9-9.146-5.263-17.978 2.235-26.45 5.743"
2503
+ fill="#00702d"
2504
+ stroke="#1b402f"
2505
+ stroke-width=".689"
2506
+ />
2507
+ <path
2508
+ d="M2243.63 1640.802c-4.888-2.444-11.096-1.154-15.533-4.002m9.64-3.285c-4.003.36-8.066 1.395-11.604 3.628 3.222 2.34 7.332 4.304 9.64 7.693m-11.125-.525c-3.659-1.769-4.845-5.698-8.083-7.737 3.734-1.574 6.463-4.633 10.467-5.863m-.449 6.523c-2.85-.42-5.758-.015-8.607-.705m-1.666.001c-3.089-.36-5.653-2.715-8.23-4.424"
2509
+ fill="none"
2510
+ stroke="#1b402f"
2511
+ stroke-linecap="round"
2512
+ stroke-width=".689"
2513
+ />
2514
+ <path
2515
+ d="M2195.619 1630.171c3.704 8.532 5.143 26.375 15.204 31.023.375-.195.599-1.423 1.095-1.738 2.249 4.437 5.817 8.531 11.185 9.415.539-.614-.09-1.454.45-2.099 4.079 2.535 9.01 3.72 13.96 4.5-.525-4.125-2.19-8.323-4.873-11.517 1.064.165 2.114.495 3.163.765-1.888-2.579-2.788-5.534-4.677-8.052.96.06 1.919.6 2.892.705-1.558-3.404-4.257-6.702-7.51-9.01.644-.197 1.484.298 2.278.327-5.487-10.585-19.268-9.88-30.004-12.4"
2516
+ fill="#00702d"
2517
+ stroke="#1b402f"
2518
+ stroke-width=".689"
2519
+ />
2520
+ <path
2521
+ d="M2231.17 1665.724c-3.193-5.323-10.181-8.277-12.641-13.676m11.727 3.495c-4.198-2.34-8.907-4.11-13.9-4.5 1.604 4.155 4.334 8.562 4.319 13.03m-10.632-7.781c-2.413-3.943-.944-8.126-2.774-12.025 4.753 1.094 9.522.224 14.305 1.799m-4.843 5.353c-2.535-2.22-5.669-3.794-8.022-6.268m-1.649-1.095c-2.819-2.339-3.75-6.058-5.159-9.236"
2522
+ fill="none"
2523
+ stroke="#1b402f"
2524
+ stroke-linecap="round"
2525
+ stroke-width=".689"
2526
+ />
2527
+ <path
2528
+ d="M2156.633 1617.472c5.354 7.84-4.26 6.897 7.049 23.706.568-.451.463-1.26 1.123-1.71 3.432 3.764 4.332 8.607 9.101 11.667.255-.525.135-1.441.48-1.966 2.204 2.234 5.158 4.335 7.962 5.188.195-.494-.18-1.274.03-1.8 2.73 3.046 7.002 4.02 10.661 5.369-1.695-2.34-2.564-5.098-2.938-7.542.75.345 1.363 1.019 2.04 1.26-1.29-2.774-3.135-5.653-4.395-8.412.81 0 1.156.629 1.964.704-.93-3.178-3.539-6.027-6.447-8.276.778 0 1.77.27 2.55.345-2.19-3.12-5.368-5.533-8.923-7.573 1.08.03 2.085.06 3.193.24-6.026-6.432-16.013-5.353-22.88-11.486"
2529
+ fill="#00702d"
2530
+ stroke="#1b402f"
2531
+ stroke-width=".689"
2532
+ />
2533
+ <path
2534
+ d="M2179.754 1650.024c1.425-3.313.195-7.032-1.933-10.196 2.744 1.214 5.082 1.17 7.84 1.59m-11.499 3.644c1.215-4.02.135-8.592-2.43-12.207 2.565 1.65 5.038 2.265 7.842 3.209m-12.731-.915c1.366-3.553.467-7.646-2.683-10.51 3.15 2.713 7.198 4.603 11.216 5.337m7.602 15.461c1.904 2.023 3.178 4.302 3.823 6.777m-15.698-20.467c-.66-1.17-1.71-2.234-2.97-3.06m10.032 11.502c-1.693-1.05-2.863-2.52-3.194-4.05"
2535
+ fill="none"
2536
+ stroke="#1b402f"
2537
+ stroke-linecap="round"
2538
+ stroke-width=".689"
2539
+ />
2540
+ <path
2541
+ d="M2152.42 1620.816c7.902-12.491 12.64-3.659 20.902-1.425-.314-.764-1.32-1.425-1.5-2.22 4.065 1.17 10.017 2.22 14.875 1.276.18-.45-.944-1.305-.81-1.755 3.794.525 9.507 2.218 13.45 1.904-.104-.75-2.414-3.389-2.474-4.138 4.843-1.215 9.927-3.464 13.407-6.613-2.31-3.358-6.12-5.428-10.917-5.818.959-.614 2.218-.944 3.164-1.335-3.69-3.433-9.536-4.961-15.205-3.373a18.86 18.86 0 012.743-2.279c-5.246-.389-10.704 1.08-15.248 3.569.598-.946 1.499-1.68 2.339-2.52-10.255 1.964-21.997 16.78-27.035 26.256"
2542
+ fill="#00702d"
2543
+ stroke="#1b402f"
2544
+ stroke-width=".689"
2545
+ />
2546
+ <path
2547
+ d="M2195.723 1598.849c-5.157 2.609-10.735 5.204-15.533 8.036 4.543 1.395 7.841 4.455 12.16 6.073m9.912-4.843c-5.67-1.92-12.566-2.684-18.909-1.89"
2548
+ fill="none"
2549
+ stroke="#1b402f"
2550
+ stroke-linecap="round"
2551
+ stroke-width=".689"
2552
+ />
2553
+ <path
2554
+ d="M2180.144 1599.523c-2.908 4.394-8.563 7.107-13.854 9.132 6.311.84 9.747 5.173 15.204 6.853m-1.304-8.623c-2.325.15-7.542.916-9.807 1.305m-4.093.465c-2.67.284-6.283.734-9.281 3.613"
2555
+ fill="none"
2556
+ stroke="#1b402f"
2557
+ stroke-linecap="round"
2558
+ stroke-width=".689"
2559
+ />
2560
+ <path
2561
+ d="M2159.633 1619.3c6.387 6.583 10.84 19.193 21.097 19.673.24-.33-.03-1.56.269-2.054 3.584 3.314 8.158 5.758 13.016 4.528.224-.795-.615-1.335-.405-2.144 4.408.794 9.027.015 13.495-1.17-2.01-3.674-4.993-6.972-8.473-8.936.946-.254 1.966-.36 2.954-.51-2.578-1.695-4.468-4.123-7.016-5.759.855-.315 1.859-.164 2.714-.448-2.594-2.61-6.133-4.649-9.762-5.578.48-.42 1.38-.286 2.054-.556-8.652-7.826-20.032-1.859-30.063-.074"
2562
+ fill="#00702d"
2563
+ stroke="#1b402f"
2564
+ stroke-width=".689"
2565
+ />
2566
+ <path
2567
+ d="M2199.337 1635.344c-4.708-3.764-11.74-3.853-15.878-7.96m11.245-1.26c-4.423-.57-9.086-.406-13.45 1.154 2.939 3.283 6.913 6.372 8.593 10.556m-11.922-3.179c-3.554-2.773-3.898-7.287-6.913-10.241 4.424-.81 8.127-3.465 12.761-3.84m-2.053 6.913c-2.985-1.124-6.24-1.379-9.162-2.789m-1.816-.388c-3.27-1.125-5.472-4.26-7.856-6.703"
2568
+ fill="none"
2569
+ stroke="#1b402f"
2570
+ stroke-linecap="round"
2571
+ stroke-width=".689"
2572
+ />
2573
+ <path
2574
+ d="M2118.713 1598.594c11.441 8.92-2.684 12.385 7.046 26.99.54-.495 1.56-.435 2.204-.945 3.63 4.063 4.86 7.316 9.808 10.6.224-.6.06-1.588.374-2.173 2.325 2.413 5.4 4.663 8.247 5.547.164-.54-.255-1.38-.059-1.98 2.893 3.3 7.211 4.29 10.961 5.699-1.83-2.533-2.85-5.548-3.344-8.231.764.359 1.425 1.094 2.114 1.349-1.44-3.03-3.434-6.148-4.843-9.162.825-.015 1.184.674 2.024.736-1.11-3.451-3.883-6.538-6.912-8.967.793-.015 1.783.268 2.58.33-2.357-3.375-5.67-5.968-9.329-8.142 1.081.015 2.1.029 3.21.208-6.373-6.957-16.33-5.591-23.51-12.19"
2575
+ fill="#00702d"
2576
+ stroke="#1b402f"
2577
+ stroke-width=".689"
2578
+ />
2579
+ <path
2580
+ d="M2143.557 1634.236c1.261-3.675-.148-7.738-2.458-11.173 2.804 1.275 5.158 1.186 7.946 1.591m-11.335 4.243c1.005-4.453-.313-9.46-3.072-13.389 2.653 1.784 5.173 2.413 8.02 3.39m-12.806-.752c1.186-3.943.075-8.426-3.207-11.516 3.282 2.926 7.436 4.934 11.5 5.654m8.411 16.852c2.01 2.19 3.42 4.65 4.185 7.362m-16.793-22.175c-.721-1.274-1.815-2.43-3.136-3.313m10.662 12.444c-1.755-1.124-3.015-2.7-3.42-4.393"
2581
+ fill="none"
2582
+ stroke="#1b402f"
2583
+ stroke-linecap="round"
2584
+ stroke-width=".689"
2585
+ />
2586
+ <path
2587
+ d="M2123.405 1601.458c7.182 1.544 15.625 8.322 22.867 3.583.03-.374-.69-1.11-.703-1.604 3.881.57 8.065.06 10.87-3.223-.18-.675-.992-.645-1.2-1.336 3.374-1.603 6.208-4.468 8.756-7.526-2.937-1.62-6.401-2.49-9.626-2.16.54-.66 1.2-1.23 1.814-1.83-2.503.06-4.827-.734-7.271-.63.45-.644 1.2-1.047 1.664-1.677-2.893-.556-6.193-.27-9.072.869.15-.541.824-.87 1.17-1.41-9.282-1.29-14.53 8.607-20.647 14.86"
2588
+ fill="#00702d"
2589
+ stroke="#1b402f"
2590
+ stroke-width=".689"
2591
+ />
2592
+ <path
2593
+ d="M2157.489 1593.226c-4.845-.36-9.703 3.06-14.29 2.174m7.167-6.462c-3.284 1.799-6.403 4.213-8.728 7.498 3.42.884 7.454 1.108 10.408 3.268m-9.552 3.643c-3.614-.226-5.773-3.269-9.103-3.869 2.7-2.788 4.094-6.507 7.109-9.07m1.528 5.936c-2.518.69-4.843 2.114-7.467 2.564m-1.409.615c-2.715.824-5.562-.315-8.247-.885"
2594
+ fill="none"
2595
+ stroke="#1b402f"
2596
+ stroke-linecap="round"
2597
+ stroke-width=".689"
2598
+ />
2599
+ <path
2600
+ d="M2117.184 1595.985c8.726 3.358 17.454-2.234 25.58 1.874-1.066.39-1.995.885-2.985 1.409 4.049.436 7.932 1.485 11.2 3.869-.733.344-1.723.539-2.443.96 3.569 1.019 7.122 2.864 9.297 5.968-.78.359-1.35-.195-2.084.239 2.294 2.474 5.158 4.768 7.482 7.228-.69.075-1.545-.361-2.37-.346 1.365 2.565 3.315 5.248 5.834 6.988-3.87.419-8.113 1.574-11.861-.45.045.736.72 1.41.735 2.07-2.88.509-6.402-.301-9.327-1.664-.09.779.39 1.739.39 2.488-5.578-.959-8.427-5.967-13.074-8.426-.406.869.013 1.724-.301 2.533-6.853-6.387-5.953-15.324-14.544-20.646-4.38-2.699-9.747-5.55-11.816-9.672-2.068-4.109-6.552-8.202-8.442-9.957v-8.456c2.759 4.303 10.166 17.228 13.27 19.807 3.104 2.595 1.095 2.504 5.459 4.184"
2601
+ fill="#00702d"
2602
+ />
2603
+ <path
2604
+ d="M2117.184 1595.985c8.726 3.358 17.454-2.234 25.58 1.874-1.066.39-1.995.885-2.985 1.409 4.049.436 7.932 1.485 11.2 3.869-.733.344-1.723.539-2.443.96 3.569 1.019 7.122 2.864 9.297 5.968-.78.359-1.35-.195-2.084.239 2.294 2.474 5.158 4.768 7.482 7.228-.69.075-1.545-.361-2.37-.346 1.365 2.565 3.315 5.248 5.834 6.988-3.87.419-8.113 1.574-11.861-.45.045.736.72 1.41.735 2.07-2.88.509-6.402-.301-9.327-1.664-.09.779.39 1.739.39 2.488-5.578-.959-8.427-5.967-13.074-8.426-.406.869.013 1.724-.301 2.533-6.853-6.387-5.953-15.324-14.544-20.646-4.38-2.699-9.747-5.55-11.816-9.672-2.068-4.109-6.552-8.202-8.442-9.957v-8.456c2.759 4.303 10.166 17.228 13.27 19.807 3.104 2.595 1.095 2.504 5.459 4.184z"
2605
+ fill="none"
2606
+ stroke="#1b402f"
2607
+ stroke-width=".689"
2608
+ />
2609
+ <path
2610
+ d="M2151.415 1622.255c-.104-4.514-2.758-8.084-6.013-10.542 2.969-.074 5.069-1.363 7.723-2.368m-8.802 10.241c-.6-5.219-3.494-9.822-7.332-12.566 3.014.525 5.503-.089 8.411-.51m-11.831 5.714c-.269-4.77-2.788-8.936-6.821-10.527 3.973 1.425 8.412 1.425 12.31.135m13.33 13.51c2.563 1.29 4.662 3.178 6.298 5.667m-22.717-14.904c-1.079-.974-2.46-1.634-3.958-1.904m13.854 7.723c-1.964-.3-3.628-1.32-4.572-2.895"
2611
+ fill="none"
2612
+ stroke="#1b402f"
2613
+ stroke-linecap="round"
2614
+ stroke-width=".689"
2615
+ />
2616
+ <path
2617
+ d="M2105.892 1623.724c2.895-8.937 4.962-16.299 10.707-22.956 5.757-6.658 13.448-16.779 13.913-22.522.421-5.398.33-7.692.33-9.986-2.294 1.604-7.226 6.088-5.968 11.365.751 3.134-.809 5.053-2.128 7.123-1.32 2.07-9.596 14.155-19.238 19.432z"
2618
+ fill="#00702d"
2619
+ />
2620
+ <path
2621
+ d="M2105.892 1623.724c2.895-8.937 4.962-16.299 10.707-22.956 5.757-6.658 13.448-16.779 13.913-22.522.421-5.398.33-7.692.33-9.986-2.294 1.604-7.226 6.088-5.968 11.365.751 3.134-.809 5.053-2.128 7.123-1.32 2.07-9.596 14.155-19.238 19.432z"
2622
+ fill="none"
2623
+ stroke="#1b402f"
2624
+ stroke-width=".689"
2625
+ />
2626
+ <path d="M2130.154 1569.864c-.227 2.76-.106 6.897-.689 8.728-.572 1.844-4.125 3.328-3.675-.69.465-4.019 1.62-4.934 4.364-8.038" fill="#f0e53c" />
2627
+ <path
2628
+ d="M2111.096 1600.843c-4.034 1.77-10.376-1.186-14.02-2.145-3.66-.944-2.76-4.349-8.277.705-1.38 1.26-5.743 1.71-5.218 1.83 3.494.87 9.116 1.738 2.458 6.627-1.604 1.185-5.846 3.48-5.846 3.48s3.328-2.295 7.692 1.153c4.362 3.434 8.187-1.739 9.64 2.684 1.47 4.424 7.483-1.694 8.802-5.068 1.32-3.373 4.769-9.266 4.769-9.266"
2629
+ fill="#00702d"
2630
+ />
2631
+ <path
2632
+ d="M2111.096 1600.843c-4.034 1.77-10.376-1.186-14.02-2.145-3.66-.944-2.76-4.349-8.277.705-1.38 1.26-5.743 1.71-5.218 1.83 3.494.87 9.116 1.738 2.458 6.627-1.604 1.185-5.846 3.48-5.846 3.48s3.328-2.295 7.692 1.153c4.362 3.434 8.187-1.739 9.64 2.684 1.47 4.424 7.483-1.694 8.802-5.068 1.32-3.373 4.769-9.266 4.769-9.266z"
2633
+ fill="none"
2634
+ stroke="#1b402f"
2635
+ stroke-width=".689"
2636
+ />
2637
+ <path
2638
+ d="M2095.636 1613.139c-3.613.974 10.857-8.922 12.011-.135.495 3.883-3 17.633-7.588 24.756-4.603 7.12-8.276 14.02-9.656 19.072.24-5.967 5.518-19.522 6.673-23.662 1.139-4.138 1.919-13.284 1.995-14.574.073-1.29-2.356-5.758-3.435-5.457"
2639
+ fill="#00702d"
2640
+ />
2641
+ <path
2642
+ d="M2095.636 1613.139c-3.613.974 10.857-8.922 12.011-.135.495 3.883-3 17.633-7.588 24.756-4.603 7.12-8.276 14.02-9.656 19.072.24-5.967 5.518-19.522 6.673-23.662 1.139-4.138 1.919-13.284 1.995-14.574.073-1.29-2.356-5.758-3.435-5.457z"
2643
+ fill="none"
2644
+ stroke="#1b402f"
2645
+ stroke-width=".689"
2646
+ />
2647
+ <path
2648
+ d="M2218.68 1490.545l-195.197-18.233c-9.28-19.252-16.569-41.025-21.336-64.475l248.125-2.146c-6.268 32.074-17.274 61.087-31.593 84.854"
2649
+ fill="#f0e53c"
2650
+ />
2651
+ <path d="M2125.985 1555.02c-26.66 0-51.76-13.81-72.678-37.14l134.26 11.155c-18.458 16.508-39.48 25.985-61.582 25.985" fill="#00a0e1" />
2652
+ <path
2653
+ d="M2187.566 1529.035l-134.259-11.155c-11.32-12.61-21.382-28.04-29.824-45.568l195.196 18.233c-9.146 15.159-19.627 28.204-31.113 38.49m68.614-184.858c0 21.292-2.085 41.954-5.908 61.514l-248.125 2.145c-4.094-20.176-6.343-41.587-6.343-63.659z"
2654
+ fill="#fff"
2655
+ />
2656
+ <path
2657
+ d="M2038.208 1433.476c0 12.236 9.927 22.176 22.162 22.176 12.25 0 22.176-9.94 22.176-22.176 0-12.25-9.926-22.178-22.176-22.178-12.235 0-22.162 9.927-22.162 22.178"
2658
+ fill="#f0e53c"
2659
+ />
2660
+ <path
2661
+ d="M2038.208 1433.476c0 12.236 9.927 22.176 22.162 22.176 12.25 0 22.176-9.94 22.176-22.176 0-12.25-9.926-22.178-22.176-22.178-12.235 0-22.162 9.927-22.162 22.178z"
2662
+ fill="none"
2663
+ stroke="#fff"
2664
+ stroke-width="5.761"
2665
+ />
2666
+ <path
2667
+ d="M1974.976 1371.239c12.505 5.607 28.338 19.222 38.34 20.332 10.002 1.109 14.995 9.506 20.002 12.288 4.993 2.804 24.157 18.638 32.492 19.583 8.339.928 6.674 2.788 15.836 7.45 9.175 4.664 14.168 4.664 24.994 10.242 10.843 5.609 17.514 13.06 20.843 12.116 3.328-.93 10.841-5.578 17.5-8.382 6.672-2.79 20.841-8.381 30.841-13.975 10.002-5.592 12.506-2.804 24.997-8.396 12.505-5.593 32.507-19.808 43.335-24.36 10.839-4.527 35.4-13.853 47.696-16.643v-95.065h-316.876z"
2668
+ fill="#d9c753"
2669
+ />
2670
+ <path
2671
+ d="M1958.587 1342.13c8.382 2.938-1.365 4.23 12.054 9.865 13.406 5.67 21.802 5.67 21.802 5.67s6.704 7.137 13.406 7.737c6.702.629 15.924 3.989 19.28 6.507 0 0 2.52-3.987 11.743 4.709h10.06l8.383 4.739h22.625l20.348 1.438s3.328 5.878 9.102 5.878c5.757 0 30.917-11.217 30.917-11.217h9.22s14.247-6.387 19.284-6.387c5.023 0 14.245-1.678 14.245-1.678l21.8-9.208 10.887-.838s8.382-8.668 19.284-11.036c10.9-2.4 20.96-7.678 25.16-10.497v-37.995h-300.576z"
2672
+ fill="#b2aa00"
2673
+ />
2674
+ <path d="M1996.606 1319.125c8.112-102.711 63.966-185.74 129.177-185.74 65.36 0 121.32 82.799 129.236 185.81z" fill="#00702d" />
2675
+ <path d="M1987.932 1319.136l169.315.06c-11.093-15.057-98.376-59.527-163.241-42.253-64.867 17.302-6.074 42.193-6.074 42.193" fill="#c8d700" />
2676
+ <g clip-path="url(#ad)" opacity=".28">
2677
+ <path
2678
+ d="M2029.961 1183.799s128.636 31.097 202.588 13.165l-36.196-44.564s-85.918 8.786-132.58-3.149c-46.662-11.965-33.812 34.548-33.812 34.548"
2679
+ fill="#292723"
2680
+ />
2681
+ </g>
2682
+ <path
2683
+ d="M2125.985 1133.326c-71.898 0-130.18 94.405-130.18 210.852 0 116.439 58.282 210.842 130.18 210.842 71.897 0 130.181-94.403 130.181-210.842 0-116.447-58.284-210.852-130.18-210.852m129.714 390.596c-33.856 51.536-79.918 79.92-129.715 79.92-49.782 0-95.859-28.384-129.716-79.92-31.789-48.357-49.286-112.202-49.286-179.744 0-67.565 17.497-131.411 49.286-179.783 33.857-51.52 79.934-79.89 129.716-79.89 49.797 0 95.86 28.37 129.715 79.89 31.79 48.372 49.287 112.218 49.287 179.783 0 67.542-17.497 131.387-49.287 179.744"
2684
+ fill="#0079c7"
2685
+ />
2686
+ <path
2687
+ d="M1982.909 1281.56l4.049-12.475h13.104l-10.6-7.707 4.049-12.475-10.602 7.707-10.601-7.707 4.049 12.475-10.602 7.707h13.107zm15.369-51.01l5.383-11.937 13.03 1.441-9.686-8.816 5.383-11.966-11.38 6.507-9.703-8.816 2.67 12.834-11.382 6.508 13.016 1.41zm22.522-43.843l7.573-10.707 12.504 3.898-7.841-10.494 7.57-10.706-12.413 4.197-7.843-10.496.166 13.105-12.402 4.228 12.52 3.87zm28.773-41.145l10.317-8.067 10.87 7.318-4.483-12.296 10.317-8.097-13.09.48-4.499-12.325-3.599 12.595-13.104.48 10.87 7.316zm39.392-27.559l12.819-2.76 6.569 11.337 1.348-13.045 12.82-2.73-11.994-5.337 1.349-13.016-8.758 9.747-11.98-5.308 6.583 11.336zm185.374 163.557l-4.05-12.475h-13.103l10.6-7.707-4.048-12.475 10.6 7.707 10.617-7.707-4.062 12.475 10.6 7.707h-13.105zm-15.369-51.01l-5.384-11.937-13.03 1.441 9.702-8.816-5.397-11.966 11.38 6.507 9.7-8.816-2.653 12.834 11.38 6.508-13.028 1.41zm-22.522-43.843L2228.89 1176l-12.519 3.898 7.843-10.494-7.558-10.706 12.4 4.197 7.857-10.496-.18 13.105 12.415 4.228-12.519 3.87zm-28.758-41.145l-10.333-8.067-10.855 7.318 4.468-12.296-10.317-8.097 13.106.48 4.484-12.325 3.613 12.595 13.09.48-10.87 7.316zm-39.406-27.559l-12.805-2.76-6.583 11.337-1.35-13.045-12.804-2.73 11.98-5.337-1.35-13.016 8.758 9.747 11.98-5.308-6.568 11.336z"
2688
+ />
2689
+ <path
2690
+ d="M1981.47 1283l4.049-12.475h13.105l-10.602-7.708 4.049-12.474-10.601 7.707-10.601-7.707 4.048 12.474-10.601 7.708h13.105zm15.37-51.011l5.381-11.935 13.031 1.439-9.687-8.816 5.383-11.965-11.38 6.506-9.7-8.816 2.667 12.836-11.38 6.507 13.03 1.41zm22.52-43.842l7.572-10.707 12.506 3.898-7.843-10.496 7.558-10.706-12.4 4.2-7.842-10.497.164 13.105-12.4 4.228 12.52 3.87zm28.775-41.144l10.315-8.067 10.872 7.316-4.484-12.294 10.315-8.1-13.09.483-4.498-12.327-3.598 12.595-13.105.48 10.871 7.318zm39.389-27.562l12.821-2.757 6.567 11.334 1.35-13.045 12.82-2.728-11.996-5.308 1.35-13.045-8.757 9.745-11.98-5.307 6.581 11.336zM2272.9 1283l-4.049-12.475h-13.105l10.6-7.708-4.049-12.474 10.603 7.707 10.616-7.707-4.064 12.474 10.6 7.708h-13.105zm-15.37-51.011l-5.383-11.935-13.029 1.439 9.7-8.816-5.398-11.965 11.381 6.506 9.702-8.816-2.668 12.836 11.393 6.507-13.029 1.41zm-22.522-43.842l-7.556-10.707-12.52 3.898 7.842-10.496-7.558-10.706 12.4 4.2 7.843-10.497-.166 13.105 12.402 4.228-12.507 3.87zm-28.759-41.144l-10.33-8.067-10.871 7.316 4.483-12.294-10.316-8.1 13.105.483 4.484-12.327 3.598 12.595 13.105.48-10.87 7.318zm-39.406-27.562l-12.804-2.757-6.584 11.334-1.348-13.045-12.805-2.728 11.98-5.308-1.35-13.045 8.758 9.745 11.98-5.307-6.567 11.336z"
2691
+ fill="#f0e53c"
2692
+ />
2693
+ <path d="M2255.221 1319.136c.63 8.247.96 16.584.96 25.041" fill="#1b402f" />
2694
+ <path
2695
+ d="M2125.985 1553.22c-69.588 0-128.38-95.737-128.38-209.042 0-113.328 58.792-209.052 128.38-209.052s128.396 95.724 128.396 209.052c0 113.305-58.808 209.043-128.396 209.043m0-421.693c-71.539 0-131.98 97.373-131.98 212.65 0 115.253 60.441 212.642 131.98 212.642 71.554 0 131.995-97.39 131.995-212.642 0-115.277-60.44-212.65-131.995-212.65"
2696
+ fill="#f0e53c"
2697
+ />
2698
+ <path
2699
+ d="M2125.985 1553.22c-69.588 0-128.38-95.737-128.38-209.042 0-113.328 58.792-209.052 128.38-209.052s128.396 95.724 128.396 209.052c0 113.305-58.808 209.043-128.396 209.043zm0-421.692c-71.539 0-131.98 97.373-131.98 212.65 0 115.253 60.441 212.642 131.98 212.642 71.554 0 131.995-97.39 131.995-212.642 0-115.277-60.44-212.65-131.995-212.65z"
2700
+ fill="none"
2701
+ stroke="#473125"
2702
+ stroke-width="1.44"
2703
+ />
2704
+ <path
2705
+ d="M1992.58 1408.835c.028 1.572-.696 2.822-2.173 3.75a12.868 12.868 0 01-4.808 1.83c-1.566.26-3.173-.016-4.835-.808-1.65-.79-2.662-1.927-3.024-3.391a60.763 60.763 0 01-.765-3.422c-.151-.805-.265-1.411-.327-1.823l-.38-2.294 15.313-2.525.139.824c.276 1.656.485 3.06.627 4.18.14 1.12.216 2.338.232 3.679m-16.353.056c.09 1.984-.407 3.409-1.48 4.238-1.074.848-2.527 1.44-4.35 1.733-1.486.247-2.967.05-4.498-.577-1.505-.642-2.479-1.567-2.884-2.802a29.87 29.87 0 01-.946-3.507 275.384 275.384 0 00-.559-2.868l14.015-2.328c.143.886.286 1.796.428 2.682.128.906.23 2.065.274 3.429m17.605-.333l-5.7-34.022-.688.129.358 2.165.232 2.87c.09.946-.006 1.698-.288 2.302-.268.604-.857 1.043-1.756 1.319l-1.977.488-20.539 3.38-2.019.184c-.938.015-1.645-.195-2.122-.72-.46-.477-.825-1.201-1.082-2.207a51.104 51.104 0 01-.602-2.66 46.845 46.845 0 00-.429-2.217l-.688.132 5.29 32.15c.72 4.35 1.385 7.739 2.003 10.168.617 2.428 1.402 4.409 2.367 5.947.965 1.514 2.047 2.66 3.217 3.437 1.183.755 2.491 1.016 3.91.78 2.104-.365 3.457-1.585 4.053-3.72.612-2.113.897-4.202.874-6.22-.025-2.018-.275-4.467-.752-7.346l.337-.044c.572 3.377 1.072 5.898 1.513 7.562a33.558 33.558 0 001.73 4.938 10.538 10.538 0 003.183 4.09c1.42 1.103 3.06 1.489 4.937 1.179 1.823-.292 3.217-1.23 4.213-2.768.981-1.538 1.606-3.417 1.846-5.594.254-2.178.158-4.8-.246-7.817a321.177 321.177 0 00-1.175-7.885m1.675 92.026c-2.815-.067-5.02-1.634-6.606-4.662-.815-1.559-1.194-3.04-1.162-4.512.02-1.457.467-2.8 1.323-4.055.86-1.237 2.142-2.48 3.84-3.765 1.7-1.267 3.525-2.412 5.449-3.478 2.67-1.423 4.924-2.437 6.769-3.02a18.262 18.262 0 015.887-.77c2.08.043 3.916 1.59 5.506 4.638.81 1.537 1.194 3.04 1.174 4.495-.034 1.451-.478 2.815-1.338 4.052-.86 1.237-2.138 2.497-3.84 3.764-1.701 1.267-3.526 2.411-5.45 3.476-2.305 1.233-4.35 2.196-6.181 2.86-1.816.665-3.601.991-5.371.977m20.499 13.271c4.126-2.224 6.268-6.622 6.414-13.177.15-6.533-1.571-13.259-5.174-20.137-3.737-7.159-8.247-12.389-13.521-15.729-5.255-3.317-9.986-3.833-14.192-1.569-4.34 2.352-6.56 6.714-6.664 13.086-.105 6.371 1.65 13.025 5.295 19.991 3.643 6.946 8.127 12.188 13.46 15.715 5.336 3.526 10.14 4.134 14.382 1.82m48.032 27.925c2.137 1.84 3.747 4.292 4.83 7.338 1.061 3.039 1.713 6.069 1.967 9.06.237 3 .252 5.945.053 8.865l.844.736 10.251-11.906-38.87-33.101-.445.543c.275.233.668.583 1.181 1.05.511.454 1.264 1.175 2.24 2.159.996.975 1.581 1.813 1.794 2.497.213.684.094 1.429-.399 2.209l-1.207 1.627-13.62 15.847-1.426 1.429c-.723.625-1.39.905-2.002.86-.613-.031-1.343-.367-2.193-.98a41.28 41.28 0 01-2.132-1.618 37.73 37.73 0 00-1.579-1.277l-.467.519 25.883 22.259.463-.538-3.45-3.14c-1.014-.981-1.594-1.771-1.765-2.377-.15-.6.027-1.311.55-2.144l1.208-1.626 16.75-19.476zm78.853 23.455l-33.227-.261v.706c.348.005.786.005 1.348.029.56.026 1.486.084 2.792.204 1.287.106 2.214.356 2.743.744.548.39.89 1.033 1.042 1.945l.132 2.023.054 20.892-.153 2.025c-.137.938-.452 1.589-.943 1.951-.495.362-1.462.598-2.924.694l-3.807.15v.707l33.01.255-.002-.693-3.806-.162c-1.46-.107-2.442-.32-2.935-.665-.493-.345-.807-1.013-.942-2.003l-.153-2.026-.035-21.081.128-2.013c.144-.965.478-1.613 1.011-1.959.552-.329 1.538-.551 3-.647l3.67-.108zm85.187-17.369c-.365.251-.762.537-1.211.878-.445.325-1.194.83-2.203 1.474-1.013.662-1.983 1.11-2.874 1.337-.91.23-1.916.16-3.054-.17l-3.788-1.325-26.874-10.757-5.712 4.518 4.528 28.551.437 4.028c.038 1.181-.078 2.12-.353 2.831-.262.727-.848 1.49-1.75 2.317l-2.164 1.942.445.535 25.595-20.259-.444-.535-2.538 1.786a27 27 0 01-2.205 1.246c-.6.276-1.128.123-1.62-.472-.311-.422-.62-1.329-.895-2.76-.273-1.432-.61-3.457-.978-6.095-.371-2.639-.9-6.558-1.571-11.745a622.156 622.156 0 019.275 3.568c3.18 1.244 5.427 2.168 6.728 2.804 1.296.655 2.143 1.213 2.544 1.721.467.566.57 1.14.309 1.72-.263.58-.654 1.142-1.18 1.687a19.64 19.64 0 01-1.634 1.525c-.56.451-1.082.897-1.531 1.287l.436.554 14.719-11.639zm12.885-79.281l-16.011 29.11.616.335c.16-.288.389-.68.668-1.153.287-.495.775-1.279 1.499-2.359.709-1.077 1.368-1.78 1.966-2.069.58-.287 1.324-.277 2.179.034l1.842.845 18.345 10.012 1.708 1.091c.76.572 1.182 1.156 1.275 1.772.082.597-.18 1.575-.775 2.896l-1.68 3.425.616.335 15.902-28.906-.627-.352-1.948 3.276c-.778 1.241-1.431 1.981-1.97 2.266-.533.262-1.27.232-2.212-.129l-1.844-.845-18.503-10.076-1.71-1.09c-.783-.59-1.18-1.217-1.23-1.835-.026-.642.25-1.62.85-2.962l1.655-3.268zm29.043-56.371l9.46 8.069-11.783 3.9zm-3.32 12.295l-4.91 1.298c-1.141.274-2.007.354-2.613.24-.658-.13-1.067-.47-1.224-1.05-.16-.575-.21-1.29-.141-2.142.056-.852.15-1.683.269-2.456.118-.793.25-1.567.365-2.318l-.7-.126-3.788 19.59.699.127.958-4.064c.41-1.517.87-2.64 1.392-3.363.508-.703 1.082-1.221 1.707-1.51a67.6 67.6 0 012.194-.965 27.262 27.262 0 012.279-.845l27.293-8.63 1.465-7.62-21.907-19.174-2.952-2.815c-.784-.772-1.293-1.572-1.547-2.308-.267-.737-.334-1.747-.225-2.941l.384-2.868-.7-.147-6.357 32.905.699.126c.1-.558.209-1.056.313-1.488.09-.441.304-1.223.655-2.355.324-1.127.647-1.92.933-2.412.282-.448.722-.658 1.327-.545.647.11 1.478.624 2.54 1.5l4.11 3.33z"
2706
+ />
2707
+ <path
2708
+ d="M1991.996 1409.852c.027 1.574-.697 2.825-2.174 3.754a12.801 12.801 0 01-4.807 1.826c-1.566.26-3.175-.016-4.837-.806-1.648-.79-2.661-1.927-3.024-3.393a63.938 63.938 0 01-.763-3.4c-.152-.825-.265-1.433-.328-1.842l-.378-2.294 15.311-2.535.138.822c.279 1.667.488 3.072.628 4.19.141 1.12.218 2.34.234 3.678m-16.354.056c.089 1.984-.408 3.411-1.48 4.26-1.072.848-2.527 1.418-4.35 1.711-1.486.25-2.981.051-4.497-.574-1.504-.624-2.479-1.567-2.884-2.804-.42-1.26-.727-2.42-.946-3.506a332.66 332.66 0 00-.559-2.868l14.015-2.328c.142.887.284 1.794.427 2.683.128.905.231 2.063.274 3.426m17.592-.333l-5.674-34.02-.702.13.359 2.163c.078.986.155 1.928.232 2.871.076.944-.021 1.696-.288 2.3-.269.605-.859 1.044-1.757 1.32l-1.977.487-20.537 3.38-2.019.184c-.94.017-1.646-.195-2.122-.717-.461-.48-.825-1.2-1.083-2.21a49.75 49.75 0 01-.602-2.659c-.152-.824-.285-1.56-.428-2.215l-.688.132 5.29 32.148c.717 4.35 1.385 7.74 2.002 10.17.618 2.428 1.402 4.41 2.368 5.944.966 1.538 2.045 2.661 3.229 3.438 1.171.756 2.479 1.015 3.896.782 2.106-.344 3.458-1.585 4.055-3.722.61-2.114.898-4.179.873-6.22-.024-2.019-.274-4.468-.751-7.347l.337-.044c.572 3.38 1.072 5.9 1.513 7.565a32.794 32.794 0 001.728 4.935 10.385 10.385 0 003.183 4.091c1.42 1.102 3.061 1.488 4.937 1.181 1.825-.292 3.219-1.23 4.214-2.769.982-1.54 1.606-3.417 1.845-5.596.241-2.177.158-4.799-.244-7.817a264.935 264.935 0 00-1.189-7.885m1.448 90.991c-2.815-.067-5.018-1.635-6.605-4.664-.812-1.537-1.194-3.04-1.177-4.515.034-1.451.481-2.795 1.337-4.052.86-1.237 2.142-2.477 3.841-3.765 1.701-1.266 3.525-2.41 5.45-3.475 2.667-1.425 4.922-2.437 6.766-3.023a18.316 18.316 0 015.903-.767c2.067.04 3.903 1.586 5.493 4.635.81 1.537 1.193 3.041 1.173 4.495a7.286 7.286 0 01-1.339 4.052c-.86 1.237-2.137 2.497-3.838 3.765a45.553 45.553 0 01-5.45 3.477c-2.307 1.233-4.352 2.194-6.182 2.859-1.816.666-3.602.992-5.372.978m20.5 13.27c4.141-2.221 6.268-6.623 6.415-13.176.15-6.534-1.574-13.259-5.172-20.118-3.755-7.18-8.249-12.408-13.523-15.748-5.258-3.319-9.987-3.834-14.194-1.568-4.339 2.352-6.56 6.713-6.664 13.083-.104 6.371 1.651 13.028 5.297 19.991 3.643 6.946 8.126 12.191 13.46 15.717 5.336 3.526 10.139 4.134 14.382 1.819m47.983 28.049c2.138 1.84 3.749 4.293 4.81 7.333a36.197 36.197 0 011.987 9.065c.237 3.002.254 5.946.052 8.864l.863.742 10.235-11.91-38.852-33.096-.465.538c.274.232.669.582 1.18 1.05.512.454 1.265 1.175 2.243 2.159.993.973 1.58 1.814 1.794 2.496.213.684.092 1.43-.4 2.21l-1.21 1.625-13.617 15.849-1.426 1.428c-.723.624-1.391.906-2.001.876-.613-.046-1.345-.384-2.195-.995a41.012 41.012 0 01-2.132-1.62c-.568-.486-1.111-.901-1.58-1.277l-.464.522L2047.87 1570l.463-.538-3.451-3.141c-1.012-.98-1.595-1.77-1.763-2.375-.152-.601.026-1.311.549-2.144l1.209-1.626 16.749-19.477zm78.463 23.507l-33.23-.263.003.707c.326.004.784.005 1.346.03.562.025 1.488.084 2.794.204 1.287.106 2.215.354 2.74.742.552.39.89 1.035 1.024 1.943l.153 2.027.055 20.89-.134 2.027c-.157.938-.471 1.588-.965 1.949-.492.363-1.461.598-2.924.708l-3.805.138v.707l33.01.255-.004-.693-3.804-.162c-1.461-.108-2.441-.322-2.934-.667-.494-.343-.807-1.011-.965-2.005l-.131-2.023-.058-21.082.149-2.011c.144-.966.48-1.614 1.013-1.96.53-.331 1.538-.55 2.998-.646l3.669-.108zm85.36-16.679c-.365.25-.761.537-1.212.879a61.69 61.69 0 01-2.208 1.49c-1.008.645-1.978 1.091-2.869 1.318-.907.23-1.915.161-3.052-.17l-3.789-1.324-26.875-10.758-5.711 4.52 4.527 28.551.438 4.027c.019 1.183-.097 2.12-.353 2.83-.263.727-.847 1.49-1.768 2.321l-2.145 1.938.437.552 25.595-20.258-.436-.554-2.539 1.788a27.27 27.27 0 01-2.205 1.246c-.601.277-1.13.124-1.619-.473-.314-.42-.621-1.327-.895-2.759-.275-1.43-.609-3.458-.98-6.096s-.898-6.559-1.588-11.743a528.606 528.606 0 019.292 3.565c3.182 1.245 5.423 2.186 6.724 2.824 1.3.636 2.149 1.194 2.55 1.702.467.566.568 1.14.307 1.72-.261.581-.654 1.142-1.177 1.686a19.814 19.814 0 01-1.636 1.527c-.558.45-1.082.898-1.533 1.287l.437.553 14.72-11.637zm13.138-79.343l-16.013 29.112.617.333c.16-.288.388-.678.669-1.153.285-.493.775-1.277 1.498-2.357.709-1.079 1.363-1.76 1.965-2.069.583-.289 1.325-.277 2.179.034l1.843.845 18.346 10.01 1.708 1.09c.758.573 1.18 1.16 1.273 1.773.083.597-.178 1.576-.772 2.896l-1.697 3.43.632.33 15.9-28.904-.625-.354-1.948 3.276c-.78 1.241-1.437 2.003-1.971 2.266-.533.264-1.268.233-2.213-.129l-1.843-.845-18.504-10.074-1.71-1.09c-.783-.59-1.193-1.215-1.226-1.837-.03-.64.247-1.62.847-2.96l1.656-3.27zm29.329-56.196l9.46 8.071-11.771 3.9zm-3.305 12.293l-4.911 1.3c-1.14.274-2.01.354-2.613.241-.658-.13-1.067-.473-1.226-1.049-.157-.579-.208-1.293-.138-2.144.054-.852.15-1.685.267-2.456.119-.795.249-1.567.353-2.317l-.687-.127-3.79 19.591.7.126.957-4.063c.413-1.52.87-2.64 1.392-3.344.51-.723 1.084-1.24 1.708-1.533.625-.289 1.36-.61 2.194-.962a27.899 27.899 0 012.267-.844l27.305-8.63 1.464-7.6-21.905-19.195-2.967-2.813c-.768-.776-1.277-1.574-1.532-2.312-.266-.738-.34-1.703-.224-2.939l.382-2.869-.697-.146-6.36 32.903.7.126c.1-.559.21-1.054.299-1.487a50.09 50.09 0 01.656-2.353c.336-1.13.66-1.923.946-2.413.283-.45.722-.66 1.328-.546.645.11 1.477.625 2.54 1.5l4.11 3.331z"
2709
+ fill="#f0e53c"
2710
+ />
2711
+ <path
2712
+ d="M2196.904 1317.706c7.107 31.757 29.836 42.062 34.886 41.623-1.215.746-1.848 1.053-3.265 1.206 0 0 2.213 1.08 4.425 2.375l-5.574-1.073 2.524 3.216c-2.754-1.09-4.915-2.806-4.915-2.806l.912 3.085-4.709-3.916.996 3.198c-5.305-3.85-8.193-8.231-8.193-8.231l.217 3.287c-3.908-4.992-16.56-30.9-17.99-40.465"
2713
+ fill="#74b500"
2714
+ stroke="#1b402f"
2715
+ stroke-linecap="round"
2716
+ stroke-miterlimit="8"
2717
+ stroke-width=".666"
2718
+ />
2719
+ <path
2720
+ d="M2136.746 1304.693c5.436 8.296 15.252 16.386 24.27 19.873-1.017.703-2.256 1.228-4.355 1.849 8.235.726 36.584 8.02 40.862-5.299.135-.42.15-.869.196-1.259-6.404 11.575-22.613 10.465-34.113-8.277-.286.449.044 1.439-.12 1.919-2.67-2.369-5.398-5.098-7.752-7.677.27 1.233.51 3.148.51 5.383-.911-2.06-3.001-5.466-4.55-7.221.487 1.829.514 2.794.528 4.443-.93-2.838-2.87-5.549-4.038-7.282.196 1.98.349 3.306.262 5.207-1.05-2.488-2.655-4.342-4.38-6.078.48 1.515.999 3.389 1.075 4.438-1.121-1.831-2.886-3.359-4.012-4.618.225 1.079 1.163 3.255 1.343 4.184-1.71-1.482-3.527-3.194-5.301-4.184.363 1.363 1.857 4.019 3.958 5.878-1.79-.24-2.796-.482-4.383-1.279"
2721
+ fill="#74b500"
2722
+ />
2723
+ <path
2724
+ d="M2136.746 1304.693c5.436 8.296 15.252 16.386 24.27 19.873-1.017.703-2.256 1.228-4.355 1.849 8.235.726 36.584 8.02 40.862-5.299.135-.42.15-.869.196-1.259-6.404 11.575-22.613 10.465-34.113-8.277-.286.449.044 1.439-.12 1.919-2.67-2.369-5.398-5.098-7.752-7.677.27 1.233.51 3.148.51 5.383-.911-2.06-3.001-5.466-4.55-7.221.487 1.829.514 2.794.528 4.443-.93-2.838-2.87-5.549-4.038-7.282.196 1.98.349 3.306.262 5.207-1.05-2.488-2.655-4.342-4.38-6.078.48 1.515.999 3.389 1.075 4.438-1.121-1.831-2.886-3.359-4.012-4.618.225 1.079 1.163 3.255 1.343 4.184-1.71-1.482-3.527-3.194-5.301-4.184.363 1.363 1.857 4.019 3.958 5.878-1.79-.24-2.796-.482-4.383-1.279z"
2725
+ fill="none"
2726
+ stroke="#1b402f"
2727
+ stroke-miterlimit="8"
2728
+ stroke-width=".666"
2729
+ />
2730
+ <path
2731
+ d="M2196.191 1320.267c8.548 34.638 9.97 47.651 17.521 54.69l-2.203-5.426 5.52 4.557-3.628-5.479 5.365 2.716c-2.516-2.804-5.86-5.298-7.914-8.464l4.873 2.968c-6.448-7.12-16.587-37.925-18.82-45.483"
2732
+ fill="#74b500"
2733
+ stroke="#1b402f"
2734
+ stroke-linecap="round"
2735
+ stroke-miterlimit="8"
2736
+ stroke-width=".666"
2737
+ />
2738
+ <path
2739
+ d="M2196.13 1312.978c-.12.21-1.9 11.396-3.564 16.08-2.072 5.824-6.437 10.56-6.81 15.186 0 0 2.395-3.264 4.885-4.72 0 0-3.237 4.233-4.076 9.241 0 0 3.31-4.673 5.238-5.86 0 0-3.901 6.015-4.71 10.403l5.29-5.787c-1.587 3.255-4.17 8.712-4.17 8.712 1.45-1.676 5.125-5.072 5.125-5.072-2.105 3.64-3.724 8.214-3.724 8.214 1.229-1.64 3.547-3.827 3.547-3.827-1.69 3.33-2.395 7.147-2.395 7.147 1.078-1.95 3.443-3.735 3.443-3.735-1.211 2.015-1.95 6.307-1.95 6.307 1.328-2.863 3.303-4.729 3.303-4.729-1.631 3.415-1.394 8.41-1.394 8.41.887-2.403 1.165-3 2.808-4.872-.691 4.164 1.656 9.447 1.656 9.447-.064-2.463.615-5.105.615-5.105.194 3.224 2.762 6.851 2.762 6.851-.273-2.299-.181-4.033-.181-4.033.855 2.64 3.033 5.295 3.033 5.295.045-2.328-.933-6.607-.933-6.607 1.029.627 1.81 3.33 1.81 3.33.06-4.746-2.997-9-2.997-9 .687-.045 1.964.661 1.964.661-.44-4.836-3.61-8.62-3.61-8.62 1.12 0 2.708.964 2.708.964-.671-1.79-3.392-5.445-3.392-5.445.807.08 2.128.62 2.128.62-.36-3.74-1.604-7.523-1.604-7.523 1.074.18 1.582.736 1.582.736-.33-4.108-5.217-21.185-5.778-32.88"
2740
+ fill="#74b500"
2741
+ stroke="#1b402f"
2742
+ stroke-linecap="round"
2743
+ stroke-miterlimit="8"
2744
+ stroke-width=".666"
2745
+ />
2746
+ <path
2747
+ d="M2203.146 1371.325c-2.518-7.281-5.545-15.547-6.524-24.936-.586-5.61.26-15.106.13-20.993"
2748
+ fill="none"
2749
+ stroke="#1b402f"
2750
+ stroke-linecap="round"
2751
+ stroke-width=".553"
2752
+ />
2753
+ <path
2754
+ d="M2196.333 1319.886s2.7 14.281 17.784 17.614c0 0-1.514-1.055-2.945-2.536 0 0 4.728 2.127 9.083 2.316 0 0-1.95-1.088-3.165-2.612 0 0 5.476 2.18 9.148 1.775 0 0-2.07-1.059-3.236-2.428 0 0 5.104 1.382 9.21.653 0 0-2.426-.467-3.858-2.053 0 0 5.073.83 9.242-.25 0 0-2.178-.186-3.578-1.586 0 0 7.685.236 11.637-4.667 0 0-1.96.653-4.294-.187 0 0 4.232-1.059 6.69-4.076 0 0-1.617.346-3.33-.125 0 0 3.258-1.224 5.249-3.216 0 0-1.327.384-3.257-.052 0 0 2.365-.75 3.61-2.738 0 0-1.494.63-3.112.094 0 0 3.382-1.908 3.589-5.643 0 0-1.401 2.2-3.06 2.905 0 0 2.272-2.849 2.479-5.843 0 0-2.681 2.41-4.175 4.567 0 0 .493-2.603 1.323-4.139 0 0-2.82 1.597-4.216 5.664 0 0-.67-2.458-.358-3.61 0 0-2.116 2.24-2.832 5.29 0 0-.6-1.76-.622-3.018 0 0-2.315 1.836-2.956 5.57 0 0-.654-2.863-.34-4.575 0 0-3.488 3.368-4.234 8.464 0 0-1.401-2.83-.997-6.535 0 0-3.142 4.488-4.201 9.325 0 0-1.43-3.444-1.168-6.237 0 0-2.662 3.737-4.148 8.081 0 0-.246-3.358.065-6.75 0 0-3.086 4.333-5.078 7.466 0 0 .196-2.734 1.483-5.799 0 0-5.654 3.654-8.392 6.403-.953.957-8.298 1.285-11.981-7.13"
2755
+ fill="#74b500"
2756
+ stroke="#1b402f"
2757
+ stroke-miterlimit="8"
2758
+ stroke-width=".666"
2759
+ />
2760
+ <path
2761
+ d="M2200.657 1277.609c-.385 14.535-1.077 25.035-1.672 34.823-.321-1.556-.891-2.669-2.081-2.696-2.601-.061-2.58 3.019-2.581 3.031.08-12.231.561-31.263 1.077-51.275 0 .016.344 11.13 5.257 16.117"
2762
+ fill="#473125"
2763
+ />
2764
+ <path
2765
+ d="M2196.988 1309.496c1.189.027 1.676.784 1.997 2.34-.178 2.929-.154 2.222-.353 4.239-.149 5.218-4.16 5.896-4.32-.591-.04-1.608-.011-.027.009-3.051.001-.014.065-2.998 2.667-2.937"
2766
+ fill="#292723"
2767
+ />
2768
+ <path
2769
+ d="M2206.355 1211.836c-.677 1.174-1.647 1.976-3.05 3.345-1.366 1.332-1.174 3.91-1.346 5.415-.194 1.7-.583 29.968-1.303 57.23-5.284-4.235-5.257-16.098-5.257-16.116.55-21.248 1.1-39.928 1.134-41.266.06-2.34.218-3.823-.899-5.232-.674-.85-1.883-2.07-2.758-3.178-.767-.971-.163-1.85 2.322-2.566 2.154-.62 1.891-1.017 4.336-1.017 2.444 0 2.747.459 3.926.88.85.302 3.766.995 2.895 2.505"
2770
+ fill="#cbcbc9"
2771
+ />
2772
+ <path
2773
+ d="M2199.742 1326.874c5.698 5.607 22.242 4.909 29.048 2.008 8.028-3.423 12.57-7.818 17.083-14.625"
2774
+ fill="none"
2775
+ stroke="#1b402f"
2776
+ stroke-linecap="round"
2777
+ stroke-width=".553"
2778
+ />
2779
+ <path
2780
+ d="M2196.533 1220.381c.06-2.34.219-3.823-.898-5.232-.674-.85-1.883-2.07-2.758-3.177-.768-.973-.164-1.852 2.322-2.568 2.154-.62 1.891-1.016 4.335-1.016s2.747.46 3.927.88c.848.301 3.764.995 2.894 2.505-.676 1.174-1.647 1.976-3.05 3.345-1.366 1.332-1.173 3.91-1.346 5.416-.328 2.878-1.213 74.067-3.327 95.478-.149 5.219-4.16 5.896-4.32-.59-.37-15.017 2.146-92.132 2.221-95.04z"
2781
+ fill="none"
2782
+ stroke="#000"
2783
+ stroke-width=".888"
2784
+ />
2785
+ <path
2786
+ d="M2195.934 1313.237c-3.539 17.21-1.74-7.116-5.489-13.443.05 1.362-.32 3.659-1.404 6.407.31-5.07.128-10.005-1.326-12.615.091 1.26-.45 4.35-1.69 7.338.176-2.403.663-8.263-.498-10.545-.255 1.438-1.03 4.747-1.864 6.557.407-3.751.318-7.916-.79-10.637-.28 2.663-.929 5.899-1.552 7.58.214-3.911-.667-9.7-2.287-12.668.372 2.022.855 7.444.043 10.533-.31-4.288-2.424-8.3-3.55-10.304-.107-.24 1.422 7.176 1.11 10.226-1.244-1.867-2.67-5.757-3.315-7.495-.418 3.23-.294 5.596 1.324 9.415-1.307-1.23-2.508-2.788-3.498-4.198.49 2.319 2.982 6.882 3.958 8.472-1.353-.741-3.748-3.255-4.859-4.454 1.395 3.18 4.167 6.827 6.266 9.316-1.564-.74-3.537-2.298-4.932-3.108 2.25 2.79 5.344 6.193 8 8.742-1.813-.644-2.878-.96-4.4-1.905 5.177 6.178 10.086 10 17.214 14.348 0 0 4.23 2.485 4.057-7.821"
2787
+ fill="#74b500"
2788
+ stroke="#1b402f"
2789
+ stroke-miterlimit="8"
2790
+ stroke-width=".666"
2791
+ />
2792
+ <path
2793
+ d="M2175.957 1295.755c4.64 9.596 8.985 15.736 17.247 24.131m-50.733-13.119c5.251 4.813 34.271 29.043 50.732 18.907"
2794
+ fill="none"
2795
+ stroke="#1b402f"
2796
+ stroke-linecap="round"
2797
+ stroke-width=".553"
2798
+ />
2799
+ <path
2800
+ d="M2196.904 1317.706c-1.156 6.528-16.34 16.369-40-3.068 0 0 2.06.552 4.145.459 0 0-2.687-5.3-6.96-9.823l3.754.768c-1.929-3.112-5.602-6.248-5.602-6.248l2.88.165c-1.058-2.335-4.216-4.933-4.216-4.933 2.961.857 5.927 3.112 5.927 3.112-.434-2.7-2.326-6.491-2.326-6.491 4.066 2.278 5.271 6.923 5.271 6.923.137-3.044-.43-9.301-.43-9.301s2.82 6.242 3.72 12.874c0 0 1.095-2.892 1.498-6.666 0 0 1.682 4.61 1.788 10.92 0 0 1.564-2.928 1.891-5.058 0 0 .931 4.34 1.012 8.546 0 0 1.251-2.423 1.652-4.447 0 0 1.084 4.425.633 7.7 0 0 1.263-2.235 1.921-4.451 0 0 .905 4.302.507 7.655l2.262-3.822c-.613 2.698.067 4.972 1.171 6.72.971 1.538 1.033 4.862 1.033 4.862 2.22 1.23 17.78.958 16.651-10.284"
2801
+ fill="#74b500"
2802
+ stroke="#1b402f"
2803
+ stroke-miterlimit="8"
2804
+ stroke-width=".666"
2805
+ />
2806
+ <path
2807
+ d="M2156.244 1300.573c2.998 2.79 6.928 8.817 9.76 13.436 2.85 4.618 7.542 9.304 11.65 10.474"
2808
+ fill="none"
2809
+ stroke="#1b402f"
2810
+ stroke-linecap="round"
2811
+ stroke-width=".553"
2812
+ />
2813
+ <path
2814
+ d="M2197.718 1312.432c-.822 15.142-8.28 26.836-17.608 35.405l.393-3.232c-4.03 5.85-11.953 9.68-11.953 9.68 3.392-2.986 5.42-7.94 5.42-7.94-3.932 4.19-10.08 7.122-10.08 7.122 1.7-1.632 4.367-5.875 4.367-5.875-4.023 3.184-8.692 4.523-8.692 4.523 2.545-1.635 5.456-5.228 5.456-5.228-4.082 2.67-9.543 3.112-9.543 3.112 2.925-1.056 6.866-4.253 6.866-4.253-4.546 1.901-10.219 1.743-10.219 1.743 2.5-.793 7.073-3.316 7.073-3.316-5.185 1.262-9.75.287-9.75.287 4.655-.786 7.51-2.382 7.51-2.382-3.899.57-7.969-.337-7.969-.337 2.867-.205 5.708-1.534 5.708-1.534-2.572.021-5.954-1.182-5.954-1.182 2.532.125 4.565-.685 4.565-.685-3.112-.207-5.332-1.762-5.332-1.762 2.262.227 3.983-.624 3.983-.624-2.24-.269-4.25-1.99-4.25-1.99 1.935.323 4.706.518 4.706.518-1.195-.668-3.65-2.988-3.65-2.988 2.15.167 4.898 1.68 4.898 1.68-1.395-3.252-3.326-4.982-3.326-4.982 2.873 1.254 6.402 4.258 6.402 4.258-.332-2.365-2.83-5.436-2.83-5.436 4.721 1.54 6.993 5.357 6.993 5.357-.316-4.106-2.904-5.804-2.904-5.804 5.878 1.194 7.685 6.397 7.685 6.397.367-3.922-1.278-6.158-1.278-6.158 4.886 2.021 6.387 6.996 6.387 6.996.499-4.318-1.531-6.124-1.531-6.124 3.601 1.376 6.142 6.561 6.142 6.561.35-4.464-1.838-6.11-1.838-6.11 6.816 1.258 8.787 5.23 8.787 5.23.046-2.344-1.433-3.972-1.433-3.972 4.97 1.628 5.07 6.422 7.356 4.804 2.52-1.783 4.427-5.396 5.67-10.218.616-2.395 2.4-11.54 2.4-11.54"
2815
+ fill="#74b500"
2816
+ stroke="#1b402f"
2817
+ stroke-miterlimit="8"
2818
+ stroke-width=".666"
2819
+ />
2820
+ <path d="M2154.275 1335.25c9.947 6.607 24.501 8.42 34.54.37" fill="none" stroke="#1b402f" stroke-linecap="round" stroke-width=".553" />
2821
+ <path
2822
+ d="M2199.598 1323.027s4.636 19.217 25.173 17.616c0 0-3.637 2.614-6.717 3.081 0 0 6.542 1.559 10.94-2.56 0 0-.117 2.324-2.188 4.096 0 0 5.063-.89 8.238-4.227 0 0-.156 2.286-1.245 4.184 0 0 5.01-2.146 7.52-5.465 0 0-.414 1.867-1.41 3.858 0 0 4.17-2.098 7.737-6.109 0 0-.634 2.933-2.646 4.634 0 0 1.922-.455 3.393-1.367 0 0-4.076 6.534-12.903 8.983 0 0 2.157 1.991 4.813 1.991 0 0-6.556 2.945-13.733.456 0 0 1.162 2.086 4.99 4.128 0 0-5.913.498-9.507-4.294 0 0 .14 1.681 1.446 3.983 0 0-3.485-2.396-5.227-5.239 0 0 .186 1.816 1.535 3.911 0 0-2.967-2.312-4.57-5.207 0 0 .141 2.272 1.494 4.004 0 0-14.615-7.44-18.424-31.289"
2823
+ fill="#74b500"
2824
+ stroke="#1b402f"
2825
+ stroke-miterlimit="8"
2826
+ stroke-width=".666"
2827
+ />
2828
+ <path d="M2200.252 1326.627c2.427 12.49 20.597 30.889 42.899 16.444" fill="none" stroke="#1b402f" stroke-linecap="round" stroke-width=".553" />
2829
+ <path
2830
+ d="M2210.628 1314.637c4.109-3.417 14.568-14.762 17.79-24.329 0 0 .355 4.75-1.308 9.433 0 0 3.507-3.516 4.616-12.096 0 0 .922 3.024.573 5.715 0 0 1.137-2.264 4.3-5.202l-1.782 5.52c1.66-1.609 2.645-2.739 4.829-4.402 0 0-.164 2.917-4.617 7.917l4.617-2.074s-1.438 2.961-5.164 5.711c0 0 2.308.313 4.42-.743 0 0-1.408 2.23-5.515 4.49l5.136-.208c-3.223 3.988-17.58 14.198-25.795 16.626"
2831
+ fill="#74b500"
2832
+ stroke="#1b402f"
2833
+ stroke-linecap="round"
2834
+ stroke-miterlimit="8"
2835
+ stroke-width=".666"
2836
+ />
2837
+ <path
2838
+ d="M2197.586 1313.711c3.35 8.894 5.886-14.219 7.27-26.123l1.86 2.764s-.415-6.8 2.128-12.49l.769 8.2s1.359-1.432 1.795-2.199c0 0 .008 4.513-2.186 9.157l2.186-1.238c-.45 3.33-3.224 8.312-3.224 8.312l2.998-1.614c-1.111 3.21-12.693 33.263-14.43 15.041"
2839
+ fill="#74b500"
2840
+ stroke="#1b402f"
2841
+ stroke-linecap="round"
2842
+ stroke-width=".666"
2843
+ />
2844
+ <path
2845
+ d="M2214.566 1316.555c10.57-6.764 14.433-12.809 19.193-21.196m-35.452 21.245c4.033 4.892 9.001-19.623 10.676-28.833"
2846
+ fill="none"
2847
+ stroke="#1b402f"
2848
+ stroke-linecap="round"
2849
+ stroke-width=".553"
2850
+ />
2851
+ <path
2852
+ d="M2196.217 1312.767c-.056 3.354 2.107 18.163 10.407 16.896 10.212-1.56 13.329-20.26 13.54-22.432 0 0-1.236 2.042-2.834 3.452 0 0 1.76-5.688 1.3-9.294 0 0-1.183 5.421-2.691 8.044 0 0 .89-3.609.093-5.88 0 0-.673 4.72-2.468 6.886 0 0 .622-3.132-.041-4.689 0 0-.498 3.755-2.366 6.183 0 0 .477-2.345-.145-4.398 0 0-.384 2.91-2.212 6.297 0 0 .14-2.21-.391-3.663 0 0-.42 3.361-1.94 5.601 0 0-.083-2.115-.436-3.67 0 0-.355 2.823-1.9 5.348 0 0-.008-2.445-.506-3.814 0 0-.622 2.966-1.93 5.062 0 0 .099-2.075-.442-3.803 0 0-1.098 3.293-2.288 4.992-.75-1.355-2.396-5.027-2.072-7.118"
2853
+ fill="#74b500"
2854
+ stroke="#1b402f"
2855
+ stroke-miterlimit="8"
2856
+ stroke-width=".666"
2857
+ />
2858
+ <path d="M2201.552 1327.138c6.64 4.52 12.114-5.477 15.035-14.706" fill="none" stroke="#1b402f" stroke-linecap="round" stroke-width=".553" />
2859
+ <path
2860
+ d="M2126.27 1302.313c3.478 2.52 6.237 6.566 9.911 6.657-1.229-1.739-.899-2.039-2.114-3.328-1.23-1.26-4.14-3.568-4.844-3.629-.705-.03-2.953.15-2.953.15"
2861
+ fill="#fff"
2862
+ stroke="#000"
2863
+ stroke-linecap="round"
2864
+ stroke-width=".751"
2865
+ />
2866
+ <path
2867
+ d="M2115.279 1215.616c-1.035-3.48-6.208-15.024-7.228-16.645-1.034-1.588-.104-3.357-1.034-4.587-.945-1.23-2.818-2.07-3.3-3.57-.463-1.5 1.41-24.23.482-24.71-.945-.45-6.478.749-6.958 2.729-.464 1.979.855 1.89 0 3.388-.84 1.5-.66 2.34-.555 3.75.09 1.41 3.194 14.844 3.374 19.732.195 4.889 1.649 25.34 1.649 25.34z"
2868
+ fill="#fff"
2869
+ />
2870
+ <path
2871
+ d="M2115.279 1215.616c-1.035-3.48-6.208-15.024-7.228-16.645-1.034-1.588-.104-3.357-1.034-4.587-.945-1.23-2.818-2.07-3.3-3.57-.463-1.5 1.41-24.23.482-24.71-.945-.45-6.478.749-6.958 2.729-.464 1.979.855 1.89 0 3.388-.84 1.5-.66 2.34-.555 3.75.09 1.41 3.194 14.844 3.374 19.732.195 4.889 1.649 25.34 1.649 25.34z"
2872
+ fill="none"
2873
+ stroke="#000"
2874
+ stroke-linecap="round"
2875
+ stroke-width=".751"
2876
+ />
2877
+ <path
2878
+ d="M2091.797 1215.316c.286-2.249 4.32-11.815 5.73-14.365 1.408-2.519.748-4.798.943-6.177.18-1.41 1.5-1.529 1.5-2.939 0-1.41 1.59-15.235 1.32-18.023-.286-2.819.374-4.798 1.68-5.728-.376-.929-.932-2.339.748-4.229 1.695-1.889 4.201-4.057 5.805-4.057 1.59 0 1.152 1.238 1.152 1.238s1.604.57.661 2.549c-.945 1.95-3.569 3.75-3.764 4.499-.18.749.75 2.998-.18 5.068-.946 2.069-3.029 17.183-2.909 20.303.09 2.428.09 4.317-.765 6.657-.84 2.339 1.784 11.455 1.784 15.864l-6.387 3.777z"
2879
+ fill="#fff"
2880
+ />
2881
+ <path
2882
+ d="M2091.797 1215.316c.286-2.249 4.32-11.815 5.73-14.365 1.408-2.519.748-4.798.943-6.177.18-1.41 1.5-1.529 1.5-2.939 0-1.41 1.59-15.235 1.32-18.023-.286-2.819.374-4.798 1.68-5.728-.376-.929-.932-2.339.748-4.229 1.695-1.889 4.201-4.057 5.805-4.057 1.59 0 1.152 1.238 1.152 1.238s1.604.57.661 2.549c-.945 1.95-3.569 3.75-3.764 4.499-.18.749.75 2.998-.18 5.068-.946 2.069-3.029 17.183-2.909 20.303.09 2.428.09 4.317-.765 6.657-.84 2.339 1.784 11.455 1.784 15.864l-6.387 3.777z"
2883
+ fill="none"
2884
+ stroke="#000"
2885
+ stroke-linecap="round"
2886
+ stroke-width=".751"
2887
+ />
2888
+ <path
2889
+ d="M2071.6 1220.294c0-1.68 3.943-10.405 3.39-11.726-.57-1.32-2.446-3.21-2.355-4.408.09-1.23 5.443-14.274 5.352-21.231.091-1.68 1.784-2.071 2.624-3.3.856-1.2-1.303-1.108 0-2.61 1.321-1.53 5.173-3.388 9.492-3.206.285.479.195.837 0 1.228 0 0 .945 1.11-.465 2.16-1.41 1.02-2.819 2.519-4.513 2.999 0 0-1.125.929-.75 1.68.374.749-.135 2.638-1.514 4.317-1.394 1.709-3.613 9.417-4.003 14.486-.405 5.066 4.107 12.865 6.267 14.093l-6.267 6.268z"
2890
+ fill="#fff"
2891
+ />
2892
+ <path
2893
+ d="M2071.6 1220.294c0-1.68 3.943-10.405 3.39-11.726-.57-1.32-2.446-3.21-2.355-4.408.09-1.23 5.443-14.274 5.352-21.231.091-1.68 1.784-2.071 2.624-3.3.856-1.2-1.303-1.108 0-2.61 1.321-1.53 5.173-3.388 9.492-3.206.285.479.195.837 0 1.228 0 0 .945 1.11-.465 2.16-1.41 1.02-2.819 2.519-4.513 2.999 0 0-1.125.929-.75 1.68.374.749-.135 2.638-1.514 4.317-1.394 1.709-3.613 9.417-4.003 14.486-.405 5.066 4.107 12.865 6.267 14.093l-6.267 6.268z"
2894
+ fill="none"
2895
+ stroke="#000"
2896
+ stroke-linecap="round"
2897
+ stroke-width=".751"
2898
+ />
2899
+ <path
2900
+ d="M2054.507 1225.511c.286-2.669 4.14-11.695 4.319-16.673-.09-1.768-.66-3.09-.556-4.408.09-1.319 1.786-3.299 1.786-5.818 0-2.549 1.033-16.614.268-17.484.57-1.589 1.633-2.927 2.579-3.226-1.035-.93-1.17-2.022-.883-3.04.284-1.05 2.53-4.984 4.258-5.19 1.332-.158 1.503.837 1.503.837s1.466-1.017 1.286 1.323c-.195 2.37-.788 4.518-2.79 6.028-1.217.917-.148 1.86 0 2.16.166.268 1.17 2.247 0 4.226-1.154 1.951-1.53 4.02-1.724 6.088-.18 2.071-.375 8.457-.09 9.957.285 1.5 1.59 2.73 1.125 5.82-.465 3.117.749 12.263 5.068 14.632l-9.296 6.388z"
2901
+ fill="#fff"
2902
+ />
2903
+ <path
2904
+ d="M2054.507 1225.511c.286-2.669 4.14-11.695 4.319-16.673-.09-1.768-.66-3.09-.556-4.408.09-1.319 1.786-3.299 1.786-5.818 0-2.549 1.033-16.614.268-17.484.57-1.589 1.633-2.927 2.579-3.226-1.035-.93-1.17-2.022-.883-3.04.284-1.05 2.53-4.984 4.258-5.19 1.332-.158 1.503.837 1.503.837s1.466-1.017 1.286 1.323c-.195 2.37-.788 4.518-2.79 6.028-1.217.917-.148 1.86 0 2.16.166.268 1.17 2.247 0 4.226-1.154 1.951-1.53 4.02-1.724 6.088-.18 2.071-.375 8.457-.09 9.957.285 1.5 1.59 2.73 1.125 5.82-.465 3.117.749 12.263 5.068 14.632l-9.296 6.388z"
2905
+ fill="none"
2906
+ stroke="#000"
2907
+ stroke-linecap="round"
2908
+ stroke-width=".751"
2909
+ />
2910
+ <path
2911
+ d="M2060.954 1261.948c-6.192 10.676-18.848-1.08-14.62-9.656 1.185-2.368 3.644-1.793 6.103-1.313-1.124.03-2.22 1.213-2.49 1.882.676-.046 1.405.15 2.179.364-.762.592-1.188 1.059-1.453 2.066a5.1 5.1 0 012.029-.073c-.656 1.003-1.04 1.835-1.1 2.638.725-.222 1.3-.218 2.137 0-.248.252-.837.923-.897 2.202 1.8-.21 3.014-1.677 3.989-3.238z"
2912
+ fill="#fff"
2913
+ />
2914
+ <path
2915
+ d="M2060.954 1261.948c-6.192 10.676-18.848-1.08-14.62-9.656 1.185-2.368 3.644-1.793 6.103-1.313-1.124.03-2.22 1.213-2.49 1.882.676-.046 1.405.15 2.179.364-.762.592-1.188 1.059-1.453 2.066a5.1 5.1 0 012.029-.073c-.656 1.003-1.04 1.835-1.1 2.638.725-.222 1.3-.218 2.137 0-.248.252-.837.923-.897 2.202 1.8-.21 3.014-1.677 3.989-3.238z"
2916
+ fill="none"
2917
+ stroke="#000"
2918
+ stroke-linecap="round"
2919
+ stroke-width=".751"
2920
+ />
2921
+ <path
2922
+ d="M2124.32 1237.539c1.635 1.618 2.385 6.866 3.015 9.266.629 2.369.869 6.627.749 10.496 1.5 1.768 1.004 4.767 1.5 8.786 1.259 2.01 1.124 9.146.885 12.025-.255 2.879.374 4.259 1.875 5.367 1.498 1.142 6.642 3.15 8.515 2.13 1.875-.988 4.004-.24 4.004.75 2.263-.12 3.134 2.759 2.64 4.379 0 0 .929 2.309-2.894 3.899-3.69 1.529-8.008 4.498-9.508 5.637-1.514 1.11-3.134 1.68-6.642 2.008-7.002.632-9.761-3.628-11.771-5.906-2.82-3.18-4.767-10.496-5.516-13.765-.751-3.27-3.255-13.525-4.754-16.524-1.5-3-2.01-4.528-2.76-7.527-3.253 1.019-6.506.75-10.766.509-4.258-.24-11.515 4.259-18.277 5.998-6.777 1.77-17.544-2.49-19.043-7.257-1.5-4.768-5.502-6.748-5.757-9.777-.255-3-1.006-3.987-1.5-5.997-.51-2.01.99-9.776 1.245-12.266.255-2.52 2.395-3.95 3.904-5.037l.354-.241 1.248-.87s.584-2.266 2.32-3.604l.647 3.396c1.209-2.701 2.548-3.374 2.548-3.374l.529 2.814c.962-2.35 2.15-2.95 2.15-2.95l1.31 2.674s.442-1.534 1.47-3.228l1.348 1.792s-.088-1.927.604-3.22l1.854 2.073c.135-2.88 1.635-.51 2.384-2.88.75-2.368.714-2.03 1.487-3.421 0 0 1.26 1.103 2.142 2.67l.71-2.818s1.138 1.095 1.648 1.95l.655-2.52s1.156.48 1.74 1.737l.63-2.366s1.064.347 2.016 2.117l1.143-2.817 1.43 2.559s.845-2.13 2.187-4.018l1.837 3.565c.787-1.846 1.21-2.684 3.133-4.418l.664 3.162s.767-2.31 2.198-3.54l1.266 3.24c.363-1.332.807-2.47 1.66-3.568l1.33 2.958c.353-2.386 1.618-3.378 1.618-3.378l.954 3.089s.576-1.801 1.74-3.336l.638 3.28s.673-1.907 1.872-2.794l1.21 3.17s.449-1.74 1.414-2.554l1.245 3.003 1.71-2.567c.995 1.245 1.198 1.534 1.737 3.327l1.143-1.438s1.44 1.344 1.758 3.53l1.048-1.041s.887 1.85 1.332 3.957l.94-.645c.75 1.685 1.132 4.303 1.132 4.303l.838-.558c.585 2.164.84 4.155.84 4.155l1.115-.447c.366 1.49.612 3.118.527 4.583l.972-.044s.228 4.34-1.568 8.357"
2923
+ fill="#fff"
2924
+ />
2925
+ <path
2926
+ d="M2124.32 1237.539c1.635 1.618 2.385 6.866 3.015 9.266.629 2.369.869 6.627.749 10.496 1.5 1.768 1.004 4.767 1.5 8.786 1.259 2.01 1.124 9.146.885 12.025-.255 2.879.374 4.259 1.875 5.367 1.498 1.142 6.642 3.15 8.515 2.13 1.875-.988 4.004-.24 4.004.75 2.263-.12 3.134 2.759 2.64 4.379 0 0 .929 2.309-2.894 3.899-3.69 1.529-8.008 4.498-9.508 5.637-1.514 1.11-3.134 1.68-6.642 2.008-7.002.632-9.761-3.628-11.771-5.906-2.82-3.18-4.767-10.496-5.516-13.765-.751-3.27-3.255-13.525-4.754-16.524-1.5-3-2.01-4.528-2.76-7.527-3.253 1.019-6.506.75-10.766.509-4.258-.24-11.515 4.259-18.277 5.998-6.777 1.77-17.544-2.49-19.043-7.257-1.5-4.768-5.502-6.748-5.757-9.777-.255-3-1.006-3.987-1.5-5.997-.51-2.01.99-9.776 1.245-12.266.255-2.52 2.395-3.95 3.904-5.037l.354-.241 1.248-.87s.584-2.266 2.32-3.604l.647 3.396c1.209-2.701 2.548-3.374 2.548-3.374l.529 2.814c.962-2.35 2.15-2.95 2.15-2.95l1.31 2.674s.442-1.534 1.47-3.228l1.348 1.792s-.088-1.927.604-3.22l1.854 2.073c.135-2.88 1.635-.51 2.384-2.88.75-2.368.714-2.03 1.487-3.421 0 0 1.26 1.103 2.142 2.67l.71-2.818s1.138 1.095 1.648 1.95l.655-2.52s1.156.48 1.74 1.737l.63-2.366s1.064.347 2.016 2.117l1.143-2.817 1.43 2.559s.845-2.13 2.187-4.018l1.837 3.565c.787-1.846 1.21-2.684 3.133-4.418l.664 3.162s.767-2.31 2.198-3.54l1.266 3.24c.363-1.332.807-2.47 1.66-3.568l1.33 2.958c.353-2.386 1.618-3.378 1.618-3.378l.954 3.089s.576-1.801 1.74-3.336l.638 3.28s.673-1.907 1.872-2.794l1.21 3.17s.449-1.74 1.414-2.554l1.245 3.003 1.71-2.567c.995 1.245 1.198 1.534 1.737 3.327l1.143-1.438s1.44 1.344 1.758 3.53l1.048-1.041s.887 1.85 1.332 3.957l.94-.645c.75 1.685 1.132 4.303 1.132 4.303l.838-.558c.585 2.164.84 4.155.84 4.155l1.115-.447c.366 1.49.612 3.118.527 4.583l.972-.044s.228 4.34-1.568 8.357z"
2927
+ fill="none"
2928
+ stroke="#000"
2929
+ stroke-miterlimit="8"
2930
+ stroke-width=".751"
2931
+ />
2932
+ <path
2933
+ d="M2120.586 1297.095c-.419 1.738-1.693 9.956 4.32 11.875.24-1.769-.63-3.328-1.32-5.338-.69-2.04-1.035-3.569-.706-4.708"
2934
+ fill="#fff"
2935
+ stroke="#000"
2936
+ stroke-linecap="round"
2937
+ stroke-width=".751"
2938
+ />
2939
+ <path d="M2124.006 1307.62c-.75-.66-2.054-1.078-1.59-4.467" fill="none" stroke="#000" stroke-linecap="round" stroke-width=".751" />
2940
+ <path
2941
+ d="M2128.143 1294.127c1.188.119 1.831-.991 2.685-.93.84.03 1.75 1.248 2.321 1.327.58.08.872.082 1.382-.428"
2942
+ fill="none"
2943
+ stroke="#000"
2944
+ stroke-linecap="round"
2945
+ stroke-width="1.127"
2946
+ />
2947
+ <path
2948
+ d="M2147.396 1290.467c-.51-.18-1.454 1.5-2.533.75m-5.308-3.717c.704.148 3.808.06 5.547-1.141m-41.444-27.799c.135-.99-2.624-3.629-3.748-5.639m24.41-15.382c-1.73-1.8-6.012-6.51-6.251-9.778m-28.686 30.182c-4.081-1.384-7.286-4.182-7.632-8.26m12.511 7.387c-1.805-.75-1.805-1.917-3.874-2.423m-2.503-7.213c-.496-1.32-1.347-3.229-1.826-4.577m-1.189-2.83a27.174 27.174 0 01-.99-2.879m-30.245 15.232c.614-3.72-2.247-5.997-3.446-9.084m1.498-4.139c-.419-3.18-1.813-6.07-1.064-9.711m6.208 13.58c-.9-1.11-1.365-2.4-1.38-3.869m10.511 9.386c-.794-1.798-1.217-3.676-.75-5.686m2.505 4.696c.089-3.988-3.599-6.867-4.153-10.915-.616-4.379 1.373-7.888 1.149-12.267m1.624 13.646c-.09-2.788-.24-5.788 1.14-8.127m-.134-3.15c-.195-1.617.284-3.087 1.379-4.228m2.504 2.611c.884-2.49 2.954-3.75 4.512-5.88m-2.128 9.507c-.314 2.22.48 4.319.614 6.659m1.379-7.649c.21-2.908-.344-6.057 1.515-8.517m6.013-3.267c-.616 3.598-4.543 5.758-4.259 9.535m4.124 1.62c0-2.908-.143-5.214 1.33-7.888m1.789-3.267c.735 3.018.835 5.067 0 8.127 2.608-2.399 2.205-6.969 1.89-9.356m-1.125 13.375c-.45.39-.675.929-.63 1.529m27.184 8.996c-.397-1.765-.646-3.88.12-5.758m-3.134-6.387c1.17-1.98 1.155-4.23 3.015-5.878m-1.802-1.649c1.514-1.685 2.193-2.85 2.315-4.499m2.05 1.86c-.044.929-.845 2.369-1.754 3.277m3.851-2.181c.209 1.35.158 3.252-.141 4.541m2.109-2.098c-.645 2.849-3.435 4.167-3.75 7.257m-1.378-2.49c.539-1.079-.498-2.669.042-3.929m8.223 26.641c.689-1.519 1.555-3.022 2.32-4.372m-4.018.155c.255-2.12 1.514-2.12 2.444-4.792m.22 18.598c.782-1.685 1.668-3.15 2.853-5.436m-3.073.185c.729-1.532 1.62-3.329 2.504-4.768m1.191 11.756c-1.047 1.186-1.829 2.308-2.747 3.511m3.442.374c-1.316 1.95-2.195 3.267-3.09 5m3.734-.125c-1.526 2.49-2.189 3.604-3.486 6.907m4.066-1.762c-.954 1.41-1.97 4.128-2.53 5.704m-30.298-24.858c.479.784 1.538 1.878 2.27 2.06m-9.364-8.567c.39.63.915 1.2 1.5 1.618m-35.478-17.452c-.584-1.35.586-2.55.017-3.72-.541-1.078-3.044-2.127-1.454-3.146m-1.59 7.016c-.3-1.2.39-1.83.24-2.91m67.445 65.916c-.09-.72.209-1.26.869-1.498m.255-.751c-.135-.81.164-1.41.884-1.74m.494-1.649c.422-.84.557-2.039.377-3.118m2.878-2.37c1.334-.688 2.923-1.318 4.257-1.77m-.493 2.01c.045-.51.255-.84.63-1.14m-78.407-23.51a75.85 75.85 0 00-1.215 1.889m.091-4.319c-.809.54-1.319 1.47-1.5 2.55m-.787-3.69c.208-.81.146-.937.464-1.507m.323-1.941c-.875.858-1.312 1.667-1.574 3.067m1.327 1.863c-.543.654-.726 1.207-.846 1.787m2.398.211c-.33.569-.75 1.318-1.02 1.889m2.055.27c.015.899.554 1.71 1.32 2.069m-.196-1.679c.842-.062 1.482-.232 2.55-1.104m10.51-85.325c.106-.928 2.205-2.937 1.755-4.376m17.498 7.586c1.784-.39 4.23-2.07 4.89-2.91m17.377-9.955c.84-.84 2.624-2.55 3.193-4.05m-48.655 40.007a3.07 3.07 0 012.353 1.619m37.561-10.076c.84.72 1.47 1.77 1.694 2.818m6.017 21.533c-.078-1.695.25-2.97.281-4.439m1.319 2.07a2.844 2.844 0 01.375-1.859m-4.798 4.228c.1-2.303-.96-2.613-.924-4.604m1.251-.092c-.417-.856-.394-.877-.511-1.495m-2.439 7.029c.255-1.589-.21-3.207-.106-4.707"
2949
+ fill="none"
2950
+ stroke="#000"
2951
+ stroke-linecap="round"
2952
+ stroke-width=".751"
2953
+ />
2954
+ <path
2955
+ d="M2065.903 1225.482c-.195-1.859-.131-2.504.582-4.16m2.431 2.901c.48-1.26 1.844-1.39 1.833-4.61m.965 2.427c-.077-2.25 1.12-3.407 1.702-5.601m-.442 4.461c.97-1.038 1.948-3.48 1.902-4.593m-.712 7.165c.63-1.108.272-1.144 1.16-2.288m2.09-.777c1.09-1.48 1.265-2.474 2.001-5.75m.762 5.067c.895-1.355 1.265-3.688 1.79-5.519m2.515 8.393c.853-2.539.883-3.773.704-6.143m-3.509 7.527c.09-1.859.44-3.238 1.176-5.007m6.09 1.925c.414-2.094.497-4.057.198-6.38m1.272 4.724c.521-3.538-.464-5.418 1.62-7.337m.312 2.489c.913 1.94-.487 4.548-1.146 6.587m5.006-3.268c.122-1.83.026-3.526-.479-5.394m-1.019 6.384c0-1.62.089-3.15.255-4.738m6.762-.001c-.075 1.47-.15 2.788-.255 4.258m-2.249-2.278c-.104 1.648-.18 3.148-.255 4.768m4.004-5.248v3m2.759-2.76v3.748m2.009-6.507c.99 1.769 1.038 3.865 1.004 6.028m4.664 7.639c-.224-1.23-.012-3.23.542-4.25m2.051-.391c.195-1.32.375-2.699.495-4.018m3.972 11.545c.335-1.528 1.037-4.348 1.037-6.152m0 7.887c.61-1.385 1.062-3.229 1.222-4.945m-.161 6.796c.855-1.35 1.326-3.262 1.442-5.115m-.116 6.796c.496-1.183.929-2.365.874-3.89m-5.511-3.385c.315-1.202.63-4.108.63-5.128m-2.638-2.64c.104-1.259.039-2.219-.216-3.389m-55.638 12.146c0-1.589.055-3.309.657-5.082m1.096 2.593c-.029-1.14.083-2.205.563-3.014m-3.816 1.874c-.167 1.254-.794 2.52-1.004 3.63m-1.63-4.171c.249 1.38-.094 2.971-.365 4.17m-2.808-1.185c-.151.83 0 1.244-.265 2.488m-1.957-1.303c-.284.45-.575 1.61-.548 2.21m3.349-1.245c-.17 1.354-.276 2.196.107 3.294m1.373-8.758c.104.631.003 1.5-.173 2.01m-6.349 9.266c-.092 1.35 0 2.73.254 3.988m-.761.022c-.187 1.795-.08 2.617.319 3.59m.442-2.352a3.722 3.722 0 001.5 2.76m-.751 3.747c.03.78.42 1.53 1.004 2.01m1.267-14.5c.372 1.158.492 1.675.64 2.92m-2.221-5.85c.06 2.115.548 3.646.89 5.445m-1.763.199c.183 2.405.747 3.422 1.805 4.479m46.465 16.574c-1.124-.18-2.22-.72-3-1.5m4.515 1.26c-.96-.48-2.303-.63-3.074-1.26m4.318.75c-.96-.33-2.008-.688-2.999-.99m-3.516-.51c-1.334-1.081-2.6-2.1-4.252-2.518m1.755 4.126c-1.454-.299-2.954-.948-4.257-1.608m7.691 2.01c-1.016.087-1.805-.072-2.55-.24m4.125-1.77c-.676-.45-1.469-1.558-2.01-2.008m27.559-11.237c.653-1.266.931-1.93 1.748-3.144m-1.192 4.357a37.34 37.34 0 011.627-2.785m-.744 6.697c.438-.851.85-1.703 1.531-2.745m-.611 6.517c.435-.9.726-1.607 1.451-2.793m-1.451 8.48c.51-.99 1.268-2.11 1.833-2.945m-1.581 4.563c.398-.623 1.02-1.618 1.677-2.386m-.469 5.435c.359-.51.979-1.43 1.43-1.909m-1.172 7.137c.457-.706.96-1.635 1.427-2.324m-.641 7.712c.386-.783 1.025-1.986 1.683-2.856m-.727 6.776c.146-.513.448-1.145.83-1.923m-6.904-36.161v-1.38m-1.13.427v-1.776m-1.374.367v-2.24m-1.498.746c.135-.99-.12-2.894-.804-4.104m9.676 53.542c.272-.33 1.009-.99 1.398-.99m-.334.99c1.343.63 2.071-.102 2.071-.75m0 1.965c-.029-.48.257-1.184.768-1.215m0 1.054c.351-.447.786-.643 1.346-.33m-.449.612a.715.715 0 001.154-.121m-48.967-28.331c.95.685 2.482 1.4 3.65 1.795m-3.827.092c.406.302 1.354.848 1.608.938m-3.786-.377c.457.378 1.13.777 1.971 1.224m-34.145-6.262c-.3.55-.364.844-.47 1.49m-1.754-.334c-.66 1.17-.66 2.7 0 4.019m1.259 2.009c.39.81 1.442 1.713 2.131 2.132m1.966.28c1.1 0 1.785-.592 2.329-1.463m-1.672-.468c.583-.138 1.105-.513 1.843-1.024m8.684-40.542v-2.759m.749 1.501c.255-.45.4-1.605.295-2.326m.896 1.49c.173-.892.172-1.323.053-2.163m-.59-.546c0-.964-.22-1.94-.49-2.81m9.338.597c.222-.674.363-1.166.621-2.01m.427 2.24c.338-1.22.584-2.24.216-3.739m1.583 3.348c.18-1.479.223-1.85.085-3.108m1.673 2.01c-.846-.621-.846-1.053-.846-1.562m1.763 2.163c0-.091.281-.722-.326-1.151m-1.493-1.79c-.202-.718-.688-.961-.943-1.291m-.746.631c-.365-1.11-.878-1.254-1.244-2.02m-.459-.588c-.788-1.174-1.503-1.96-1.24-3.025m3.154 8.512a9.004 9.004 0 00-.079-2.017m28.612-2.178c-.199-1.562-.516-2.864-.765-4.81m1.714 4.436c-.213-1.31-.284-1.866-.464-2.945m2.402 4.283c.106-.869-.288-2.065-.5-3.184m1.702 2.299c-.229-.78-.37-.957-.64-1.407m2.273 3.374c-.294-.765-.572-1.33-.915-2.14m-3.168-1.234c-.162-1.702-.368-2.678-.83-4.377m-1.555-1.867c.083.98.747 1.637 1.012 3.274m22.699 99.449c.519.313.6.479 1.037.979m0-.989c.314.421.788 1.093 1.328 1.28m-9.003-1.66c-.765-.45-.872-1.266-.238-1.769"
2956
+ fill="none"
2957
+ stroke="#a4a5a8"
2958
+ stroke-linecap="round"
2959
+ stroke-width=".564"
2960
+ />
2961
+ <path d="M2135.285 1381.218h-3.812v5.171h3.812z" fill="#fff" />
2962
+ <path d="M2131.585 1381.33h3.59v4.948h-3.59zm3.812-.223h-4.035v5.394h4.035z" />
2963
+ <path d="M2135.285 1386.39l.529-.732v-5.288l-.53.62z" fill="#fff" />
2964
+ <path d="M2135.406 1381.035l.287-.336v4.92l-.287.396zm.529-.991l-.77.9v5.82l.77-1.066z" />
2965
+ <path d="M2120.837 1378.456s.83 1.973 2.884 2.179c2.053.206 3.028-1.04 3.485-1.6l-.311-1.036-4.543-.772z" fill="#fff" />
2966
+ <path d="M2120.976 1378.487l1.406-1.142 4.425.752.274.913c-.461.566-1.414 1.708-3.35 1.513-1.736-.175-2.58-1.68-2.755-2.036m1.343-1.38l-.04.032-1.578 1.283.033.078c.009.019.879 2.036 2.974 2.246 2.08.21 3.079-1.02 3.56-1.61l.063-.076-.35-1.161-.067-.011z" />
2967
+ <path d="M2119.459 1378.724l5.36.062 1.678.25-.308-9.315-7.1.001z" fill="#fff" />
2968
+ <path d="M2119.207 1369.835l6.874-.001.3 9.07-1.545-.227-5.27-.063zm7.09-.226h-7.324l.379 9.226.106.002 5.36.062 1.795.267-.004-.134z" />
2969
+ <path d="M2118.35 1373.351v-3.772s1.833-.044 5.723-.044l-.01 4.107s-3.076.016-5.713-.29" fill="#fff" />
2970
+ <path d="M2118.462 1369.688c.444-.009 2.246-.04 5.5-.04l-.01 3.881c-.568 0-3.194-.019-5.49-.278zm5.723-.266h-.112c-3.848 0-5.708.044-5.726.044l-.11.003v3.982l.1.011c2.615.304 5.69.293 5.727.291h.11l.001-.112z" />
2971
+ <path
2972
+ d="M2124.33 1374.995c-.038-.804-.686-1.426-1.445-1.39-.76.037-1.345.719-1.306 1.523.039.804.687 1.427 1.446 1.389.76-.037 1.345-.718 1.306-1.522"
2973
+ fill="#fff"
2974
+ fill-rule="evenodd"
2975
+ />
2976
+ <path
2977
+ d="M2123.5 1375.035c-.016-.318-.272-.565-.573-.551-.302.015-.533.285-.518.604.016.319.272.565.573.55.302-.014.534-.284.518-.603"
2978
+ fill="#fff"
2979
+ fill-rule="evenodd"
2980
+ />
2981
+ <path d="M2122.957 1375.528a.42.42 0 01-.282-.11.48.48 0 01-.155-.336.483.483 0 01.113-.338.42.42 0 01.3-.15h.018c.232 0 .426.197.438.447a.47.47 0 01-.12.346.424.424 0 01-.292.141zm-.006-1.155l-.03.001a.634.634 0 00-.455.225.706.706 0 00-.167.494c.01.19.09.364.227.488a.633.633 0 00.906-.045.69.69 0 00.178-.506.675.675 0 00-.659-.657" />
2982
+ <path
2983
+ d="M2123.5 1375.035c-.016-.318-.272-.565-.573-.551-.302.015-.533.285-.518.604.016.319.272.565.573.55.302-.014.534-.284.518-.603"
2984
+ fill="#fff"
2985
+ fill-rule="evenodd"
2986
+ />
2987
+ <path d="M2122.957 1375.528a.42.42 0 01-.282-.11.48.48 0 01-.155-.336.483.483 0 01.113-.338.42.42 0 01.3-.15h.018c.232 0 .426.197.438.447a.47.47 0 01-.12.346.424.424 0 01-.292.141zm-.006-1.155l-.03.001a.634.634 0 00-.455.225.706.706 0 00-.167.494c.01.19.09.364.227.488a.633.633 0 00.906-.045.69.69 0 00.178-.506.675.675 0 00-.659-.657" />
2988
+ <path d="M2124.073 1376.152h.747v-6.617h-.747z" fill="#fff" />
2989
+ <path d="M2124.185 1369.647h.522v6.393h-.522zm.747-.225h-.971v6.842h.971z" />
2990
+ <path d="M2124.073 1373.58c-3.734-.042-5.85-.29-5.85-.29v.29s2.116.249 5.85.29" fill="#fff" />
2991
+ <path d="M2118.11 1373.164v.516l.1.01c.022.003 2.164.25 5.862.292l.002-.224c-3.24-.035-5.28-.231-5.738-.28v-.064c.507.053 2.542.243 5.736.278l.002-.224c-3.683-.04-5.816-.287-5.837-.29z" />
2992
+ <path d="M2124.82 1376.152l.197-.015v-6.602h-.197z" fill="#fff" />
2993
+ <path d="M2125.128 1369.422h-.42v6.851l.421-.032z" />
2994
+ <path
2995
+ d="M2126.189 1369.721h12.426l-.228 10.206h-.954s-.498.581-1.35.705l.012.602h-.561s-1.098 1.058-2.945 1.068c-1.847.011-3.2-1.065-3.2-1.065l-.63.005-.02-.625s-.86-.098-1.388-.825l-.83-.026z"
2996
+ fill="#fff"
2997
+ />
2998
+ <path d="M2126.305 1369.834h12.196l-.224 9.98h-.895l-.035.04a2.26 2.26 0 01-1.28.669l-.095.014.008.586h-.491l-.033.03c-.011.012-1.091 1.029-2.868 1.038h-.027c-1.772 0-3.09-1.031-3.102-1.042l-.031-.024-.56.005-.02-.612-.095-.012c-.01-.001-.82-.103-1.312-.78l-.032-.043-.78-.025zm12.424-.225h-12.656l.339 10.267.882.027c.45.584 1.094.762 1.337.81l.02.643.699-.006c.222.165 1.495 1.066 3.21 1.066h.029c1.713-.011 2.785-.887 2.989-1.068h.63l-.01-.62a2.49 2.49 0 001.284-.688h1.014l.003-.11z" />
2999
+ <path d="M2130.503 1369.699l.15 6.243 3.513.005-.027-6.285zm2.568 9.333l-.02-1.83-1.257-.004.032 1.825s.56.733 1.245.009" fill="#211915" />
3000
+ <path d="M2131.537 1379.604l-.282-.003-.052-2.406.287.001z" fill="#fff" fill-rule="evenodd" />
3001
+ <path d="M2131.372 1379.482l-.045-2.165h.045l.042 2.166zm-.291-2.407l.056 2.647.523.002-.052-2.647z" />
3002
+ <path d="M2133.664 1379.62l-.285-.001-.022-2.416h.288z" fill="#fff" fill-rule="evenodd" />
3003
+ <path d="M2133.498 1379.5l-.021-2.176h.05l.016 2.176zm-.263-2.417l.025 2.655.525.004-.02-2.657z" />
3004
+ <path d="M2133.666 1379.885l-2.406-.02-.005-.264 2.409.02z" fill="#fff" fill-rule="evenodd" />
3005
+ <path d="M2131.378 1379.746l-.001-.022 2.168.016v.025zm-.246-.265l.01.503 2.645.023-.004-.505z" />
3006
+ <path
3007
+ d="M2131.546 1380.025s.01.831.929.84c.915.01.908-.772.908-.824l.284.003s.069 1.074-1.188 1.129c0 0-1.191-.012-1.215-1.151z"
3008
+ fill="#fff"
3009
+ fill-rule="evenodd"
3010
+ />
3011
+ <path d="M2132.473 1381.054c-.036 0-.982-.026-1.08-.91h.046c.043.255.231.834 1.034.841.343 0 .586-.087.768-.27a.943.943 0 00.254-.553h.046a.977.977 0 01-.233.56c-.185.203-.465.314-.835.332m-1.333-1.152l.003.124c.026 1.24 1.321 1.267 1.334 1.267.445-.018.783-.158 1.012-.412.325-.363.298-.826.297-.846l-.007-.11-.52-.007.003.124c0 .032 0 .311-.192.504-.13.132-.326.2-.58.2h-.016c-.786-.009-.808-.694-.809-.723l-.002-.117z" />
3012
+ <path d="M2132.618 1381.33l-.273-.003-.007-.447.273.003z" fill="#fff" fill-rule="evenodd" />
3013
+ <path d="M2132.463 1381.208l-.003-.206h.033l.003.206zm-.247-.45l.01.687.514.006-.01-.687z" />
3014
+ <path d="M2134.876 1376.854l-4.744-.015.015.512 4.729.02z" fill="#fff" />
3015
+ <path d="M2130.243 1377.253l-.01-.312 4.542.012v.318zm-.214-.513l.02.71.097.002 4.829.019v-.716l-.1-.001z" />
3016
+ <path d="M2135.312 1376.743l-5.612-.016.007.223 5.604.018z" fill="#fff" />
3017
+ <path d="M2129.804 1376.85v-.022l5.408.013v.026zm-.207-.223l.013.421.096.001 5.705.018v-.424h-.099z" />
3018
+ <path d="M2135.311 1377.26l-5.596-.02.007.22 5.588.023z" fill="#fff" />
3019
+ <path d="M2129.82 1377.362l-.002-.022 5.394.019v.024zm-.207-.223l.012.42h.097l5.687.025.002-.423-.1-.001z" />
3020
+ <path d="M2136.39 1369.728l-1.88.02.006 2.256 1.854-.01z" fill="#fff" />
3021
+ <path d="M2134.619 1369.854l1.662-.017-.017 2.05-1.64.01zm1.879-.235l-2.096.021.007 2.473 2.069-.01z" />
3022
+ <path d="M2136.26 1376.811l-1.65-.004.001.608 1.646.006z" fill="#fff" />
3023
+ <path d="M2134.758 1377.27v-.316l1.355.003-.001.318zm-.294-.609l.002.9 1.937.007.005-.902z" />
3024
+ <path d="M2135.352 1372l-.478.003.002 4.728.466.002z" fill="#fff" />
3025
+ <path d="M2134.983 1372.11l.262-.002-.01 4.517-.25-.001zm.48-.219l-.698.004.004 4.944.681.002.001-.108z" />
3026
+ <path d="M2136.042 1371.996l-.48.003-.015 4.734h.467z" fill="#fff" />
3027
+ <path d="M2135.67 1372.107l.264-.002-.03 4.521h-.25zm.48-.22l-.696.004-.001.108-.014 4.841.682.002z" />
3028
+ <path d="M2136.413 1376.68l-1.953-.006v.264l1.95.007z" fill="#fff" />
3029
+ <path d="M2134.566 1376.834v-.055l1.741.006v.055zm-.21-.265v.475l2.158.006.004-.475z" />
3030
+ <path d="M2136.408 1377.29l-1.946-.007.001.263 1.943.008z" fill="#fff" />
3031
+ <path d="M2134.567 1377.44v-.053l1.735.008v.053zm-.21-.263v.473l2.152.01.004-.475z" />
3032
+ <path d="M2136.122 1377.989l-1.351-.007-.001-.435 1.355.005z" fill="#fff" />
3033
+ <path d="M2134.891 1377.862v-.195l1.112.005-.002.196zm-.242-.437l.002.677 1.591.008.003-.678z" />
3034
+ <path d="M2135.814 1378.565l-.74-.005.001-.576.742.004z" fill="#fff" />
3035
+ <path d="M2135.205 1378.43v-.314l.48.002-.001.315zm-.261-.577v.837l1 .006.004-.839z" />
3036
+ <path d="M2130.058 1369.79l-1.835.019.081 2.23 1.814-.01z" fill="#fff" />
3037
+ <path d="M2128.336 1369.915l1.617-.016.054 2.023-1.6.01zm1.828-.234l-2.053.02.005.11.085 2.337 2.029-.01z" />
3038
+ <path d="M2130.174 1376.793l-1.615-.005.022.602 1.609.007z" fill="#fff" />
3039
+ <path d="M2128.721 1377.244l-.012-.31 1.322.005.007.31zm-.314-.603l.032.894 1.901.008-.024-.896z" />
3040
+ <path d="M2129.123 1372.035l-.468.003.162 4.676h.455z" fill="#fff" />
3041
+ <path d="M2128.767 1372.145h.25l.144 4.461h-.24zm.46-.219l-.685.004.005.111.164 4.78.673.003z" />
3042
+ <path d="M2129.796 1372.03l-.47.004.146 4.682h.457z" fill="#fff" />
3043
+ <path d="M2129.438 1372.142l.253-.002.125 4.468h-.239zm.462-.22l-.685.004.004.112.148 4.785.672.003-.003-.112z" />
3044
+ <path d="M2130.317 1376.662l-1.91-.005.01.262 1.907.006z" fill="#fff" />
3045
+ <path d="M2128.517 1376.814l-.002-.053 1.7.005.001.054zm-.219-.262l.018.471 2.115.006-.013-.472z" />
3046
+ <path d="M2130.333 1377.266l-1.903-.007.009.26 1.9.008z" fill="#fff" />
3047
+ <path d="M2128.54 1377.414l-.002-.051 1.693.008v.05zm-.22-.261l.018.47 2.11.008-.012-.47z" />
3048
+ <path d="M2130.077 1377.958l-1.321-.007-.015-.43 1.324.004z" fill="#fff" />
3049
+ <path d="M2128.872 1377.83l-.007-.19 1.083.005.006.192zm-.256-.431l.024.672 1.56.008-.017-.674z" />
3050
+ <path d="M2129.796 1378.527l-.724-.005-.02-.569.727.003z" fill="#fff" />
3051
+ <path d="M2129.198 1378.392l-.01-.308.464.001.009.31zm-.28-.57l.027.83.984.006-.022-.833z" />
3052
+ <path d="M2131.904 1376.152h.747v-6.617h-.747z" fill="#fff" />
3053
+ <path d="M2132.016 1369.647h.522v6.393h-.522zm.747-.225h-.973v6.842h.973z" />
3054
+ <path d="M2132.651 1376.152l.196-.015v-6.602h-.196z" fill="#fff" />
3055
+ <path d="M2132.96 1369.422h-.421v6.851l.422-.032z" />
3056
+ <path d="M2145.572 1379.017s-.906 1.973-3.15 2.18c-2.244.205-3.309-1.04-3.807-1.6l.34-1.037 4.963-.772z" fill="#fff" />
3057
+ <path d="M2139.044 1378.665l4.844-.754 1.534 1.14c-.202.372-1.125 1.855-3.011 2.029-2.121.184-3.158-.94-3.663-1.51zm4.904-1l-5.081.79-.384 1.17.07.078c.523.59 1.615 1.819 3.88 1.609 2.284-.21 3.236-2.225 3.246-2.246l.039-.086z" />
3058
+ <path d="M2146.2 1379.343l-5.856.062-1.402.264-.555-.249v-6.453l8.211-2.627z" fill="#fff" />
3059
+ <path d="M2138.504 1373.053l7.97-2.55-.386 8.725-5.745.06-1.387.26-.452-.205zm8.219-2.876l-8.453 2.704v6.614l.658.296 1.437-.27 5.948-.062z" />
3060
+ <path d="M2138.387 1378.676l.575.297 7.39.047-.11-.402-7.264-.063-.591-.339z" fill="#fff" />
3061
+ <path d="M2138.504 1378.605v-.187l.442.254h.03l7.177.062.045.168-7.207-.046zm-.234-.59v.733l.692.342 7.543.048-.172-.636h-.09l-7.234-.064z" />
3062
+ <path d="M2146.328 1379.654l-.111-.311-7.273-.044-.557-.265v.387l.555.249z" fill="#fff" />
3063
+ <path d="M2138.504 1379.343v-.125l.44.197 7.19.044.028.076-7.195.017zm-.234-.495v.647l.672.291 7.553-.016-.195-.542h-.081l-7.247-.047z" />
3064
+ <path d="M2144.48 1378.61l.275-8.27" fill="#fff" />
3065
+ <path d="M2144.638 1370.336l-.275 8.27.234.007.275-8.269z" />
3066
+ <path d="M2144.217 1378.609l.289-8.264" fill="#fff" />
3067
+ <path d="M2144.388 1370.341l-.289 8.264.234.007.288-8.263z" />
3068
+ <path d="M2140.687 1378.627l.2-8.286" fill="#fff" />
3069
+ <path d="M2140.77 1370.338l-.2 8.286.234.006.198-8.286z" />
3070
+ <path d="M2139.296 1370.351l-.198 8.267-.711-.492v-7.679z" fill="#040006" />
3071
+ <path d="M2138.86 1378.551l-.015.418.235.008.014-.418zm-.032.746l-.003.371.234.003.002-.372z" />
3072
+ <path d="M2139.133 1378.974h-.234v.325h.234z" />
3073
+ <path
3074
+ d="M2144.055 1375.33c.036-.87-.602-1.603-1.425-1.637-.822-.033-1.518.645-1.554 1.516-.036.87.602 1.603 1.425 1.638.823.033 1.52-.645 1.554-1.516"
3075
+ fill="#fff"
3076
+ fill-rule="evenodd"
3077
+ />
3078
+ <path
3079
+ d="M2143.157 1375.294c.014-.345-.239-.636-.565-.648-.327-.014-.602.254-.617.6-.013.345.24.636.566.649.326.013.601-.255.616-.601"
3080
+ fill="#fff"
3081
+ fill-rule="evenodd"
3082
+ />
3083
+ <path d="M2142.563 1375.778l-.018-.001c-.26-.011-.464-.246-.453-.526.012-.274.223-.49.476-.49l.018.001a.454.454 0 01.328.161.526.526 0 01.126.366c-.012.273-.223.489-.477.489m.005-1.25c-.378 0-.693.314-.71.713-.016.408.288.754.678.77h.027c.38 0 .694-.314.711-.712a.76.76 0 00-.184-.531.69.69 0 00-.494-.24z" />
3084
+ <path d="M2135.247 1390.17l.264-.654v-2.653l-.264.757z" fill="#fff" />
3085
+ <path d="M2135.358 1387.64l.042-.117v1.971l-.042.102zm.047-.813l-.27.793v2.55l.215.041.273-.695v-2.652z" />
3086
+ <path d="M2147.187 1373.445v-3.91h-14.34v4.175s11.703.04 14.34-.265" fill="#fff" />
3087
+ <path d="M2132.96 1369.647h14.115v3.697c-2.633.275-12.925.25-14.115.253zm14.34-.225h-14.565v4.4h.113c.118 0 11.74.037 14.353-.267l.099-.01z" />
3088
+ <path d="M2132.848 1373.567s5.953.094 14.48-.228v.29c-8.527.322-14.48.228-14.48.228" fill="#fff" fill-rule="evenodd" />
3089
+ <path d="M2147.44 1373.223l-.116.004c-8.426.317-14.415.23-14.473.227l-.004.225c.062 0 5.997.088 14.368-.224v.066c-8.373.314-14.307.227-14.364.223l-.004.226c.061 0 6.054.087 14.485-.228l.108-.005z" />
3090
+ <path d="M2126.463 1377.999l-.404.355-7.058.049.475-.404 6.55-.035.418-.352z" fill="#fff" />
3091
+ <path d="M2119.518 1378.11l6.549-.034.276-.232.006.106-.333.293-6.708.046zm7.027-.729l-.56.472-6.55.034-.74.63 7.406-.051.476-.418z" />
3092
+ <path d="M2128.74 1380.617c-.4-.108-1.042-.348-1.39-.824l-.829-.027.009.343.635.02c.647.682 1.57.846 1.57.846z" fill="#fff" />
3093
+ <path d="M2126.64 1380l-.004-.118.657.02c.338.43.893.67 1.333.8v.133c-.27-.072-.908-.284-1.38-.782l-.032-.033zm-.234-.35l.015.569.695.02c.662.673 1.561.84 1.6.848l.13.022.007-.578-.084-.022c-.354-.096-.995-.325-1.328-.782l-.032-.044z" />
3094
+ <path d="M2136.084 1380.632a2.355 2.355 0 001.349-.705h.954v.344l-.78.006s-.67.642-1.523.712z" fill="#fff" />
3095
+ <path d="M2137.482 1380.04h.792v.12l-.71.006-.033.03c-.007.006-.592.555-1.334.669v-.137a2.483 2.483 0 001.285-.688m1.017-.225h-1.118l-.034.039a2.257 2.257 0 01-1.279.669l-.096.013v.576l.121-.01c.783-.065 1.408-.58 1.56-.713l.846-.006z" />
3096
+ <path
3097
+ d="M2136.444 1381.234h-.91s-1.099 1.068-2.945 1.068c-1.9 0-3.2-1.065-3.2-1.065l-.825.008v.334l.653-.01s1.388 1.075 3.382 1.076c1.94.001 3.076-1.069 3.076-1.069l.77-.01z"
3098
+ fill="#fff"
3099
+ />
3100
+ <path d="M2135.578 1381.347h.754v.108l-.7.01-.033.028c-.01.011-1.13 1.04-2.998 1.04h-.002c-1.93 0-3.3-1.042-3.313-1.053l-.031-.024-.578.01v-.11l.673-.007a5.55 5.55 0 003.238 1.066c1.713 0 2.786-.884 2.99-1.068m.979-.225h-1.07l-.031.033c-.011.01-1.091 1.036-2.868 1.036-1.84 0-3.115-1.03-3.127-1.04l-.032-.027-.977.008v.56l.73-.01c.224.164 1.55 1.074 3.417 1.075h.002c1.8 0 2.913-.89 3.119-1.07l.837-.01z" />
3101
+ <path d="M2119 1379.036l.364-.312 6.719-.024.38-.246.027.357-.36.195z" fill="#fff" />
3102
+ <path d="M2119.405 1378.836l6.71-.023.25-.162.007.096-.27.146-6.798.03zm7.156-.58l-.513.332-6.725.025-.626.536 7.462-.032.448-.242z" />
3103
+ <path d="M2121.125 1377.999l-.175-4.22" fill="#fff" />
3104
+ <path d="M2121.061 1373.774l-.225.009.177 4.22.224-.009z" />
3105
+ <path d="M2121.414 1377.999l-.175-4.206" fill="#fff" />
3106
+ <path d="M2121.35 1373.788l-.224.01.176 4.206.224-.01z" />
3107
+ <path d="M2124.62 1377.999l-.076-1.847" fill="#fff" />
3108
+ <path d="M2124.657 1376.147l-.225.01.076 1.846.225-.009z" />
3109
+ <path d="M2125.691 1369.721l.27 8.277.465-.458-.237-7.819z" fill="#040006" />
3110
+ <path d="M2126.135 1377.989l-.223.02.036.404.221-.02zm.058.694l-.221.034.054.335.22-.034z" />
3111
+ <path d="M2126.17 1378.394l-.223.018.024.296.223-.016z" />
3112
+ <path d="M2132.98 1382.645h-.952v.416h.952z" fill="#fff" fill-rule="evenodd" />
3113
+ <path d="M2132.129 1382.745h.751v.217h-.751zm.951-.2h-1.151v.617h1.151z" />
3114
+ <path d="M2132.866 1383.429h-.724v-.368h.724z" fill="#fff" fill-rule="evenodd" />
3115
+ <path d="M2132.243 1383.162h.523v.167h-.523zm.724-.2h-.924v.567h.924z" />
3116
+ <path d="M2132.028 1383.797h.952v-.367h-.952z" fill="#fff" fill-rule="evenodd" />
3117
+ <path d="M2132.129 1383.529h.751v.167h-.751zm.951-.2h-1.151v.567h1.151z" />
3118
+ <path d="M2131.668 1386.693v.926h.436v2.552h2.769v-2.562l.412.001v-.917z" fill="#fff" />
3119
+ <path d="M2131.78 1386.804h3.395v.693l-.414-.002v2.563h-2.546v-2.55h-.435zm3.617-.224h-3.84v1.15h.435v2.551h2.993v-2.56l.412.001z" />
3120
+ <path d="M2135.285 1387.61l.265-.381v-.808l-.265.272z" fill="#fff" />
3121
+ <path d="M2135.397 1386.738l.042-.043v.499l-.042.06zm.265-.593l-.488.502v1.32l.488-.703z" />
3122
+ <path d="M2132.103 1390.171h-.436v-2.552h.436z" fill="#fff" />
3123
+ <path
3124
+ d="M2131.78 1387.73h.212v2.328h-.212zm.435-.223h-.657v2.773h.657zm1.855 3.412s-.102.202-.074.534c.028.33.064.176.13.539.067.382.095.669.105.833.01.165.041.484.081.639 0 0 .25.178.362.285.114.108.141.188.193.274 0 0-.002.187.001.264 0 0 .068.068.087.096.018.029.02.064.026.122.007.058.06.149.032.172-.014.013-.004.024-.027.04-.022.016-.012.029-.03.027-.029-.002-.05-.11-.07-.152-.02-.044-.053-.077-.01-.178l-.046-.038s-.045.013-.099-.028c-.053-.042-.389-.29-.549-.346-.113-.04-.163-.027-.269-.02-.106.01-.189.004-.207.122-.019.117-.01.336-.08.434-.07.1-.185.169-.31.127-.128-.041-.187-.131-.153-.283.034-.152.18-.378.11-.4-.069-.024-.13-.08-.209-.111-.078-.032-.099-.073-.228-.071-.189.002-.43.117-.594.165 0 0-.056-.015-.08.003s-.034.013-.027.055c.008.042 0 .055-.053.12-.054.065-.078.11-.112.116-.022.003-.04.006-.055-.026-.017-.032-.016-.015-.022-.042-.007-.026-.01-.04-.003-.061.01-.022.04-.064.056-.125.016-.062.04-.072.097-.111.048-.034.064-.001.127-.05 0 0 .015-.158.02-.188 0 0 .15-.1.235-.14.087-.041.201-.096.402-.175 0 0 .027-.361.032-.714.005-.35.065-.524.115-.76.051-.234.111-.3.116-.524.003-.226-.102-.548-.102-.548z"
3125
+ />
3126
+ <path d="M2135.285 1387.61h-.412v2.561h.412z" fill="#fff" />
3127
+ <path d="M2134.985 1387.721h.189v2.337h-.189zm.412-.222h-.636v2.782h.636zm-4.554-.635l.63-.755v.28h3.812l.53-.731v-.412l.63.464-.708 1.154z" />
3128
+ <path d="M2134.6 1390.459s.001.775-.852.793h-.4c-.853-.018-.852-.793-.852-.793z" fill="#fff" />
3129
+ <path d="M2132.619 1390.57h1.858c-.034.195-.173.559-.73.57h-.4c-.555-.011-.694-.375-.728-.57m2.093-.223h-2.327v.113c0 .007.009.883.962.903h.402c.954-.02.963-.896.963-.903z" />
3130
+ <path d="M2131.395 1390.413l.264-.466v.25h3.626l.225-.68v-.104l.27.073-.32.927z" fill="#fff" />
3131
+ <path d="M2135.4 1389.266v.232l-.195.588h-3.435v-.564l-.486.78.054.222h4.202l.35-1.038z" />
3132
+ <path d="M2135.418 1390.413v.886h-.242v-.444h-3.538v.444h-.242v-.886z" fill="#fff" />
3133
+ <path d="M2131.507 1390.524h3.8v.662h-.02v-.442h-3.761v.442h-.02zm4.022-.223h-4.245v1.109h.465v-.444h3.316v.444h.464z" />
3134
+ <path d="M2135.418 1390.413l.36-.927v.396l-.36.992z" fill="#fff" />
3135
+ <path d="M2135.675 1389.445l-.368.968v.46l.222.089.362-1.08v-.396z" />
3136
+ <path d="M2133.89 1390.413v.442s-.14.322-.525.322c-.384 0-.524-.322-.524-.322v-.442z" fill="#fff" />
3137
+ <path d="M2132.953 1390.524h.824v.305a.466.466 0 01-.412.236.468.468 0 01-.412-.236zm1.047-.223h-1.27l.009.599a.686.686 0 00.626.388c.453 0 .62-.372.627-.388l.008-.045zm-.522 4.691c-.267 0-.5-.26-.5-.555 0-.285.23-.526.5-.526.284 0 .515.236.515.526 0 .295-.24.555-.515.555m0-1.177c-.322 0-.595.285-.595.622 0 .346.278.65.595.65.33 0 .61-.297.61-.65a.617.617 0 00-.61-.622" />
3138
+ <path
3139
+ d="M2119.09 1372.881s1.747.176 3.663.176m-3.75-.647s1.441.106 3.34.158m-3.428-.632s1.228.071 3.095.15m-3.151-.587s.957.024 2.823.104m-2.868-.533s1.114.038 2.563.08m-2.591-.466s1.514.043 2.36.065m-2.4-.433s1.414.002 2.083.022m-2.143-.388h1.838m13.319 3.13s5.13.024 12.64-.143m-12.698-.342s3.523.043 11.015-.046m-11.155-.479s7.256.136 9.732.06m-9.8-.497s6.258.1 8.28.035m-8.335-.461s5.32.074 6.923.056m-6.96-.441s4.284.043 5.13.045m-5.179-.411s2.682-.02 3.351-.016m-3.42-.395s1.402.01 1.838 0"
3140
+ fill="none"
3141
+ stroke="#000"
3142
+ stroke-linecap="round"
3143
+ stroke-miterlimit="3.864"
3144
+ stroke-width=".198"
3145
+ />
3146
+ <path
3147
+ d="M2143.108 1204.16c.66-6.117 1.664-16.554-10.437-28.31 4.47-4.648 10.437-7.795 19.884-7.616 9.447.149 16.884-.18 25.505 7.766-3.807 3.149-14.244 12.086-9.942 28.16z"
3148
+ fill="#f0e53c"
3149
+ />
3150
+ <path
3151
+ d="M2143.108 1204.16c.66-6.117 1.664-16.554-10.437-28.31 4.47-4.648 10.437-7.795 19.884-7.616 9.447.149 16.884-.18 25.505 7.766-3.807 3.149-14.244 12.086-9.942 28.16z"
3152
+ fill="none"
3153
+ stroke="#473125"
3154
+ stroke-width=".276"
3155
+ />
3156
+ <path
3157
+ d="M2179.162 1204.629l1.188-3.188c.332 1.33.437 2.344.557 4.03l1.324-3.2c.667 1.463.914 4.315.914 4.315l.84-3.173c1.613 2.388 3.579 6.35 4.047 8.675l.229-3.937 1.258 4.998.4-3.053c1.43 4.316 2.185 4.511 1.282 11.14-.898 6.583-6.155 10.644-8.391 11.437-1.268.45-2 1.937-6.055 3.513-3.038 1.178-4.89.749-6.372 1.229-1.5.51-3.535 1.554-7.086 1.344-4.065-.242-3.268-.531-6.17-.773-2.488-.206-5.053.663-9.027-.391-3.697-.981-8.783-5.414-11.833-8.277-3.265-3.064-5.891-6.93-7.63-11.987l1.65.562c-1.618-3.223-1.826-6.794-1.826-6.794l1.583.864s-.343-1.712-.277-3.263l2.18 1.653s-.49-2.253-.332-3.921c0 0 1.16 1.014 2.162 2.087 0 0-.155-2.494.099-4.181l2.11 2.509s-.048-2.142.25-4.037l1.826 2.59s.068-1.944.54-4.015l1.754 2.741s.117-1.816.73-3.794l1.713 2.808c.476-2.062.498-2.509 1.728-4.686l1.952 3.581s.797-2.803 2.385-4.686l1.74 3.898s.313-2.08 1.964-4.408l1.827 4.154s.392-2.235 1.915-4.393c0 0 1.26 2.21 1.892 4.393l2.254-4.393s1.42 2.066 2.046 4.783l2.236-4.176s1.22 2.36 1.835 4.637l1.575-4.434c.546 1.354 1.285 3.237 1.542 4.706l1.057-4.146s.875 2.012 1.158 4.443l1.37-3.676s.707 2.121.77 4.072l1.225-3.345s.479 1.904.542 3.821l1.137-3.184s.496 1.82.604 3.786l1.006-3.133s.494 1.654.603 3.874"
3158
+ fill="#f0e53c"
3159
+ />
3160
+ <path
3161
+ d="M2179.162 1204.629l1.188-3.188c.332 1.33.437 2.344.557 4.03l1.324-3.2c.667 1.463.914 4.315.914 4.315l.84-3.173c1.613 2.388 3.579 6.35 4.047 8.675l.229-3.937 1.258 4.998.4-3.053c1.43 4.316 2.185 4.511 1.282 11.14-.898 6.583-6.155 10.644-8.391 11.437-1.268.45-2 1.937-6.055 3.513-3.038 1.178-4.89.749-6.372 1.229-1.5.51-3.535 1.554-7.086 1.344-4.065-.242-3.268-.531-6.17-.773-2.488-.206-5.053.663-9.027-.391-3.697-.981-8.783-5.414-11.833-8.277-3.265-3.064-5.891-6.93-7.63-11.987l1.65.562c-1.618-3.223-1.826-6.794-1.826-6.794l1.583.864s-.343-1.712-.277-3.263l2.18 1.653s-.49-2.253-.332-3.921c0 0 1.16 1.014 2.162 2.087 0 0-.155-2.494.099-4.181l2.11 2.509s-.048-2.142.25-4.037l1.826 2.59s.068-1.944.54-4.015l1.754 2.741s.117-1.816.73-3.794l1.713 2.808c.476-2.062.498-2.509 1.728-4.686l1.952 3.581s.797-2.803 2.385-4.686l1.74 3.898s.313-2.08 1.964-4.408l1.827 4.154s.392-2.235 1.915-4.393c0 0 1.26 2.21 1.892 4.393l2.254-4.393s1.42 2.066 2.046 4.783l2.236-4.176s1.22 2.36 1.835 4.637l1.575-4.434c.546 1.354 1.285 3.237 1.542 4.706l1.057-4.146s.875 2.012 1.158 4.443l1.37-3.676s.707 2.121.77 4.072l1.225-3.345s.479 1.904.542 3.821l1.137-3.184s.496 1.82.604 3.786l1.006-3.133s.494 1.654.603 3.874z"
3162
+ fill="none"
3163
+ stroke="#473125"
3164
+ stroke-miterlimit="10"
3165
+ stroke-width=".276"
3166
+ />
3167
+ <path
3168
+ d="M2133.92 1209.08c3.674 8.17 12.449 16.49 20.603 18.29m-21.946-15.877c2.083 3.343 6.977 9.28 12.608 12.4m-14.821-11.367c1.802 2.7 9.039 10.678 16.77 13.392m-17.001-10.573c6.364 6.793 14.246 13.275 24.03 12.615m-23.459-9.468c5.283 5.222 14.48 11.49 24.292 10.02m-23.899-7.227c5.405 4.38 15.827 11.452 24.352 7.576m-22.189-3.919c4.076 2.909 15.026 9.372 23.253 4.573m-19.846-.84c5.589 3.362 14.645 5.635 19.532 1.485m-15.879 1.829c3.778 2.189 11.611 2.98 15.926-1.26m-7.963 6.445c3.836-1.977 8.121-2.055 9.963-7.463m-3.25 7.917c1.653-1.652 2.903-3.903 3.158-6.393m-14.056 3.903c4.851 1.08 11.192-1.92 12.438-3.75m-5.053 6.24c2.04-1.05 5.278-3.321 6.057-5.54m4.86 6.285c-1.995-2.49-3.342-6.263-3.837-9.112m8.828 8.542c-2.938-1.498-5.233-2.519-6.947-6.319m12.144 4.911c-4.552-.652-9.328-3.685-12.342-7.523m19.836 4.945c-5.421.05-6.747-1.106-11.493-2.215m20.652-7.517c-2.412 5.956-7.624 8.626-15.586 7.774m-9.765-2.977c3.153 1.334 6.822 1.628 10.195 1.697m1.411.001c8.022-.3 13.868-8.936 14.08-16.554m-12.925 14.904c6.304-2.043 11.365-8.426 11.425-15.323m-5.54 16.123c5.54-2.813 7.34-8.006 7.834-13.98m-18.608 11.358c7.902-1.11 14.564-8.06 14.83-16.08m-15.07 17.657c7.243-.916 13.897-5.922 15.307-12.818m-23.09 12.163c2.641.48 3.537.549 6.486.729m-7.233-1.717c3.763-.42 6.214-1.265 8.95-2.474m-9.462 2.113c1.8-.51 4.248-2.054 5.673-3.224m-6.716 1.814c1.616-1.097 2.868-1.813 4.942-3.349m-2.856-2.018c-1.52 1.855-2.654 4.049-3.77 5.927m.659-5.342c-.496 1.199-1.154 2.549-1.648 3.794m-1.3-3.794c-.444 1.664-.531 3.225-.155 5.106m-5.117-10.069c.854 3.718 1.87 6.359 4.277 9.506m-9.492-10.533c1.975 4.078 5.866 9.129 9.522 11.769m-13.803-10.923c1.978 3.146 7.229 9.047 13.952 11.381m-16.221-11.2c2.682 3.718 8.968 10.069 16.356 12.086m16.555-3.659c6.64-2.82 9.775-6.657 10.855-13.734m-11.605 12.305c5.046-3.718 8.967-10.829 9.434-18.364m-12.769 18.473c6.243-4.048 10.062-10.793 10.726-18.779m-12.935 17.431c5.259-4.373 8.123-9.971 8.527-17.185m-2.983 13.824c3.096-3.988 4.403-8.152 4.724-12.95m-.661 15.579c3.005-2.853 5.152-6.866 6.304-12.645m-19.143 14.245c5.402-3.928 9.36-11.494 9.843-18.232m-9.35 14.885c3.257-4.308 4.96-8.839 5.286-15.798m-6.766 12.997c2.234-4.333 2.879-6.926 3.556-13.164m-7.123 11.276c.665-4.47 1.454-10.017 1.243-15.325m-3.988 19.794c-.139-5.013.966-11.107 1.215-16.735m-3.351 15.061c-1.162-6.56-.38-9.434-.247-14.641m-2.212 11.665c-.657-3.93-1.324-6.17-1.274-11.665m2.402 19.258c-1.79-2.795-4.61-9.277-5.555-12.105-.648-1.946-1.112-4.513-1.057-6.582m-.432 10.314c-1.812-3.78-2.414-5.098-3.173-9.235m-2.402.989c.478 2.568 2.035 6.616 3.16 8.415m-5.465-7.083c.255 1.83 1.965 5.88 3.337 7.529m-5.472-6.293c.956 2.836 1.732 4.48 3.308 6.64m18.387 5.643c.335-1.16.905-1.884 1.405-4.519m1.325 11.484c2.423-.589 3.899-1.424 5.249-2.443m-3.261 5.31c1.123.68 4.151 2.09 4.991 2.658m-8.024-3.141c.43.75.47 1 .879 1.913m-2.426-2.662c-.614 1.141-.407.93-1.172 1.949m.619-1.703c-1.722.658-3.193 1.782-6.525 1.973m6.797-2.491c-.755-.058-1.882-.388-2.585-.596m3.058-.871c-.33-1.26-.31-3.755.66-6.718m-.195 6.122c.284-.96 2.592-5.13 3.057-6.029m-1.856 6.864c.577-.835 1.552-.918 2.233-1.266m-2.399 2.527c.954.167 1.365.719 2.234 1.139m-2.486-1.831c1.076-.339 4.263.271 5.44.091m-6.546.899c-.215.901-.657 1.991-1.168 2.76m3.351 1.773c.377.82 1.3 2.819 2.699 3.937m-18.149-21.826c1.83 3.161 4.397 5.635 7.305 8.56m8.52-3.863c.45-.955 1.035-1.837 1.645-2.85m-15.514-20.038c-.338-11.813-4.495-17.506-8.52-24.681m10.527 23.605c-.409-5.552-.838-7.98-1.678-11.16m-.42-1.678c-1.656-4.287-3.463-8.187-6-12.085m-6.342 3.898c2.896 3.448 6.134 7.616 8.113 12.174m-6.15-13.509c2.657 3.8 4.637 7.203 6.826 11.86m21.181 7.902c.953-4.63 1.568-7.135 3.247-10.854m-5.971 10.39c1.274-7.648 3.164-15.084 7.872-21.203m-1.546 9.917c1.557-3.288 3.523-5.638 5.681-8.148m-16.97 20.843c.164-7.888-.715-17.533-.715-25.39m-.948 22.076c-.224-7.871-1.168-15.153-1.915-22.076m7.157 21.671c.467-4.918 1.55-15.029 5.118-20.707m-6.95 23.017c.226-6.868.37-16.156 1.49-23.655m-14.422.142c1.07 2.83 2.504 7.501 3.44 11.052m-6.08-10.301c1.808 3.63 4.458 8.956 5.609 13.5m2.241-14.719c.46 2.956 1.19 6.718 1.619 10.613m-.655 16.936c0-3.449-.593-9.595-1.182-13.345m14.89 9.366c.658-2.906 1.095-4.364 1.981-6.816m-4.8 12.025c.525-3.51 1.166-6.526 1.902-9.776m3.9-.807c.81-2.055 1.452-3.478 3.389-5.911m-7.04 5.621c1.251-4.314 1.866-5.69 3.526-9.044m.592-1.059a31.765 31.765 0 012.922-4.314m0 6.421c.884-1.195 2.564-2.666 3.7-3.862m-32.337 13.586c.974 2.677 1.214 4.761 1.55 8.484m1.355 2.928c-.016-1.2-.235-4.033-.47-5.477m9.447 2.204c.104-1.32.029-3.103 0-4.452m-1.737-1.858c-.156-3.538-.61-7.89-.806-9.419m-2.649-2.638c-.373-2.592-1.099-5.655-1.488-6.886m-1.484 4.816c-.89-2.364-1.604-4.291-2.598-6.371m17.436 27.333c.427-2.908.722-4.572 1.443-7.706m.353 9.402c.23-1.528.442-3.148.685-4.447m3.82-10.099c.743-1.874 1.6-3.076 2.63-4.41m-11.805 47.638c.375-.645.375-.645.705-1.139m-.611 1.89c.718.426 1.164 1.141 1.436 1.664m1.197-.252c1.287 1.136 2.205 1.43 3.782 2.42m-3.336-3.255c1.28.502 3.336 1.821 5.613 2.477m-8.518-3.455c.951-.147 2.362.027 3.746.25m-4.436-.76c.287-.922 2.483-4.8 3.282-6.076m-3.761 6.11c-.514-1.202-2.646-2.362-3.987-4.437m3.763 4.673c-1.213-.56-3.713-1.173-5.643-2.454m4.791 3.291c-.776.062-1.418-.288-2.181-.37m2.283 3.595c-1.446 2.108-3.604 2.776-4.239 3.058m5.881-6.315c.501 1.08.848 2.422 1.432 3.742m-1.621-1.507c.114.872.378 1.409.378 2.373m1.867-2.68c.302.456.599 1.155 1.196 1.814m-1.196-3.965c1.117.148 1.543.29 2.63.52m-.86-3.292c2.432-1.067 5.753-3.682 7.63-5.762m-9.586 6.007c.553-.75 1.834-2.189 2.448-2.729m-4.582 1.978c.362-2.458.7-4.462 1.9-6.619m-3.936 4.813c-.825-1.63-1.32-3.484-1.575-4.7m-2.367 8.966a18.75 18.75 0 01-4.137-1.037m4.764 2.903c-1.855.411-6.07-.075-7.936-.75m13.74 5.159c.13 1.229-.253 3.43-.253 4.12m3.697-5.214c.826 1.147 2.268 2.653 5.387 3.751m-1.692-3.834c3.576 2.52 8.525 2.938 10.55 3.237m-7.577-11.686c1.434-.93 2.782-1.893 4.097-3.072m-6.217 2.577c1.979-1.43 3.432-2.77 4.902-4.303m.811-2.481c1.188-1.618 2.824-5.001 3.258-7.026m.206-1.127c.36-1.618.703-4.655.72-6.244m-8.862 17.312c5.548-5.652 6.998-12.917 7.167-17.915m-7.913 15.412c2.276-3.466 4.314-8.277 4.613-13.532m-6.004 10.133c1.825-3.669 2.631-10.232 2.346-13.957m9.964 23.622c4.275-2.879 6.294-6.267 7.145-10.315m.242-1.217c.136-1.462.275-2.18.136-4.356m-1.224 1.742c.113-1.101.063-3.026-.069-3.807m-.157 19.911c2.172-1.8 4.174-6.363 4.344-8.009m-3.84 9.987c1.437-1.191 3.536-3.757 4.578-7.7m.367 3.795c.314-.75.616-2.019.782-2.83m-41.662-21.805c-.465 3.786.063 8.288 1.558 13.539m15.429-14.754c.136-2.058.479-6.04 1.848-9.761m-.955 7.995c.03-1.764.708-5.604 1.305-7.178m-2.964 7.842c.068-1.024.176-1.66.353-3.008m-1.702-5.667c.503-2.186 1.103-3.938 1.805-5.723m.931-2.666c.585-1.261 1.712-3.45 2.43-4.65"
3169
+ fill="none"
3170
+ stroke="#473125"
3171
+ stroke-linecap="round"
3172
+ stroke-width=".248"
3173
+ />
3174
+ <path d="M2194.754 1315.191s.154-.721.515-1.103c.403-.426 1.064-.437 1.91-.305.72.112.805.28 1.129.663l.18-3.248-3.734.258z" fill="#292723" />
3175
+ <path
3176
+ d="M2115.954 1627.398c-7.588-8.623-2.91-14.875-19.718-17.559-2.954-.479-6.673 1.02-9.461-2.458-.585-.735-.705-2.865-1.321-3.284-2.938-2.039-2.307-4.889-1.348-6.944 2.879 5.61 3.343 1.756 7.81 4.5 3.39 2.083 4.11 3.508 9.883 3.87-.3-4.155-2.894-6.329-3.6-9.434-.718-3.149.932-7.45 4.545-7.242-2.624 5.024 2.803 3.33 2.158 7.602-.81 5.294 3.794 10.782 7.123 8.907 3.479-1.964 10.42-4.768 9.52-9.37 2.88 2.907 2.536 6.506-.148 8.665-3.06 2.475-7.827 3.134-5.563 11.336 1.169 4.258 6.973 9.821 8.92 14.47z"
3177
+ fill="#f0e53c"
3178
+ />
3179
+ <path
3180
+ d="M2115.954 1627.398c-7.588-8.623-2.91-14.875-19.718-17.559-2.954-.479-6.673 1.02-9.461-2.458-.585-.735-.705-2.865-1.321-3.284-2.938-2.039-2.307-4.889-1.348-6.944 2.879 5.61 3.343 1.756 7.81 4.5 3.39 2.083 4.11 3.508 9.883 3.87-.3-4.155-2.894-6.329-3.6-9.434-.718-3.149.932-7.45 4.545-7.242-2.624 5.024 2.803 3.33 2.158 7.602-.81 5.294 3.794 10.782 7.123 8.907 3.479-1.964 10.42-4.768 9.52-9.37 2.88 2.907 2.536 6.506-.148 8.665-3.06 2.475-7.827 3.134-5.563 11.336 1.169 4.258 6.973 9.821 8.92 14.47z"
3181
+ fill="none"
3182
+ stroke="#473125"
3183
+ stroke-width="1.048"
3184
+ />
3185
+ <path
3186
+ d="M2133.108 1600.992c0 4.064 1.453 6.478 5.367 6.028 4.558-.525 14.32-3.779 17.65.78 2.113 2.91 1.423 8.668 1.364 12.16 2.083-.03 4.153-.09 6.252-.119-.765-3.899-2.489-11.217-.749-15.055 1.753-3.854 8.005-2.983 7.196-7.828 1.95-1.394 1.875-4.062.494-6.132-.464 2.88-2.187 2.4-3.659 3.614-.658.554-2.294.15-3.282.93-.796.63-1.02 1.724-1.56 2.084-5.504 3.764-4.843-2.879-6.028-4.844-1.41-2.354.36-5.248-3.748-4.843-.569-.915-1.41-2.099.075-3.643-8.366-1.86-.375 9.806-.78 13.854-3.524.405-5.383-7.977-10.736-5.907-.915-.765-2.025-2.429-1.485-4.273-2.488 1.873-2.608 4.708-.345 7.167-3.267 4.723 6.553 4.198 10.347 8.006.105-.029.284.046.15-.014-3.853.63-6.163-1.799-9.447-2.1-3.058-.269-3.763 2.655-7.076.135"
3187
+ fill="#f0e53c"
3188
+ />
3189
+ <path
3190
+ d="M2133.108 1600.992c0 4.064 1.453 6.478 5.367 6.028 4.558-.525 14.32-3.779 17.65.78 2.113 2.91 1.423 8.668 1.364 12.16 2.083-.03 4.153-.09 6.252-.119-.765-3.899-2.489-11.217-.749-15.055 1.753-3.854 8.005-2.983 7.196-7.828 1.95-1.394 1.875-4.062.494-6.132-.464 2.88-2.187 2.4-3.659 3.614-.658.554-2.294.15-3.282.93-.796.63-1.02 1.724-1.56 2.084-5.504 3.764-4.843-2.879-6.028-4.844-1.41-2.354.36-5.248-3.748-4.843-.569-.915-1.41-2.099.075-3.643-8.366-1.86-.375 9.806-.78 13.854-3.524.405-5.383-7.977-10.736-5.907-.915-.765-2.025-2.429-1.485-4.273-2.488 1.873-2.608 4.708-.345 7.167-3.267 4.723 6.553 4.198 10.347 8.006.105-.029.284.046.15-.014-3.853.63-6.163-1.799-9.447-2.1-3.058-.269-3.763 2.655-7.076.135z"
3191
+ fill="none"
3192
+ stroke="#473125"
3193
+ stroke-width="1.048"
3194
+ />
3195
+ <path
3196
+ d="M2119.237 1730.093c-5.248 4.98-10.825 8.952-18.112 18.354-7.288 9.416-33.483 29.838-61.507 39.78-28.01 9.956-75.707 33.767-56.44 5.623 1.455-1.425-.163-2.729-4.467-.375-4.288 2.354-12.745 10.481-20.002 12.564-7.258 2.1-46.333 1.831-57.16-4.153-10.84-5.966-3.598-9.295 10.812-15.144 14.395-5.848 41.894-17.887 58.132-30.453 16.225-12.58 34.563-23.572 41.896-27.499 7.332-3.93 4.557-3.675 10.795-3.93 6.224-.255 57.189-4.707 64.177-36.136-4.53-3.404-34.113-57.352-13.436-60.502 20.692-3.133 35.492-2.67 38.16-1.619l-.99-3.929s6.163 1.815 8.264-2.368c3.147 1.83 5.562 8.141 10.795 8.395 5.249.271 8.726 1.095 12.91-.733 4.184-1.83 12.566-8.907 14.41-12.566 2.353-.525 3.643.54 5.232-1.049 1.41-1.409 5.758 7.332 5.758 12.835 0 5.487 4.979 4.184 8.112.255 3.149-3.93 12.836-29.854 18.339-29.585 5.503.255 6.027 2.88 7.857 3.93 2.624-1.845 6.55.51 8.382 4.183 5.757-1.05 12.834 2.1 12.834 9.431 6.283-.525 10.21 1.83 10.21 7.333 3.93 0 10.738 2.608 10.467 8.382 3.405.523 11.53 5.487 6.029 10.465-5.503 4.978-45.824 26.72-62.062 31.683-16.238 4.978-24.097 9.702-24.352 13.885-.268 4.198 17.274 7.332 23.827 24.351 6.553 17.033-8.382 23.317.78 29.074 9.176 5.758 35.626 22.777 65.209 32.477 29.6 9.687 72.799 26.706 63.907 29.585-8.906 2.88-30.903 8.38-48.972 9.16-18.083.796-76.216 1.576-93.49-4.182-17.287-5.758-33.003-8.907-43.213-34.563-10.212-25.67-8.382-42.434-12.311-48.972z"
3197
+ />
3198
+ <path
3199
+ d="M2119.237 1730.093c-5.248 4.98-10.825 8.952-18.112 18.354-7.288 9.416-33.483 29.838-61.507 39.78-28.01 9.956-75.707 33.767-56.44 5.623 1.455-1.425-.163-2.729-4.467-.375-4.288 2.354-12.745 10.481-20.002 12.564-7.258 2.1-46.333 1.831-57.16-4.153-10.84-5.966-3.598-9.295 10.812-15.144 14.395-5.848 41.894-17.887 58.132-30.453 16.225-12.58 34.563-23.572 41.896-27.499 7.332-3.93 4.557-3.675 10.795-3.93 6.224-.255 57.189-4.707 64.177-36.136-4.53-3.404-34.113-57.352-13.436-60.502 20.692-3.133 35.492-2.67 38.16-1.619l-.99-3.929s6.163 1.815 8.264-2.368c3.147 1.83 5.562 8.141 10.795 8.395 5.249.271 8.726 1.095 12.91-.733 4.184-1.83 12.566-8.907 14.41-12.566 2.353-.525 3.643.54 5.232-1.049 1.41-1.409 5.758 7.332 5.758 12.835 0 5.487 4.979 4.184 8.112.255 3.149-3.93 12.836-29.854 18.339-29.585 5.503.255 6.027 2.88 7.857 3.93 2.624-1.845 6.55.51 8.382 4.183 5.757-1.05 12.834 2.1 12.834 9.431 6.283-.525 10.21 1.83 10.21 7.333 3.93 0 10.738 2.608 10.467 8.382 3.405.523 11.53 5.487 6.029 10.465-5.503 4.978-45.824 26.72-62.062 31.683-16.238 4.978-24.097 9.702-24.352 13.885-.268 4.198 17.274 7.332 23.827 24.351 6.553 17.033-8.382 23.317.78 29.074 9.176 5.758 35.626 22.777 65.209 32.477 29.6 9.687 72.799 26.706 63.907 29.585-8.906 2.88-30.903 8.38-48.972 9.16-18.083.796-76.216 1.576-93.49-4.182-17.287-5.758-33.003-8.907-43.213-34.563-10.212-25.67-8.382-42.434-12.311-48.972z"
3200
+ fill="none"
3201
+ stroke="#59595b"
3202
+ stroke-width="1.571"
3203
+ />
3204
+ <path
3205
+ d="M2087.284 1685.05a4.216 4.216 0 00-4.004 2.94c-8.816 28.144-42.943 30.917-59.797 32.597-2.848.286-7.407.69-9.206 1.724-21.097 12.056-54.82 37.306-78.48 50.577-21.037 11.785-67.159 24.335-66.636 26.6.525 2.25 49.123-8.816 71.208-21.203 21.863-12.265 63.081-36.796 77.416-48.057 1.485-.195 3.39-.39 5.547-.599 18.654-1.844 57.46-5.698 67.955-39.136a4.19 4.19 0 00-4.003-5.443"
3206
+ fill="#fff"
3207
+ />
3208
+ <path
3209
+ d="M2087.284 1685.05a4.216 4.216 0 00-4.004 2.94c-8.816 28.144-42.943 30.917-59.797 32.597-2.848.286-7.407.69-9.206 1.724-21.097 12.056-54.82 37.306-78.48 50.577-21.037 11.785-67.159 24.335-66.636 26.6.525 2.25 49.123-8.816 71.208-21.203 21.863-12.265 63.081-36.796 77.416-48.057 1.485-.195 3.39-.39 5.547-.599 18.654-1.844 57.46-5.698 67.955-39.136a4.19 4.19 0 00-4.003-5.443z"
3210
+ fill="none"
3211
+ stroke="#909294"
3212
+ stroke-width="1.571"
3213
+ />
3214
+ <path
3215
+ d="M1883.017 1805.26c-8.501 3.944-.48 6.913 14.155 1.05 6.448-2.593 20.527-8.592 32.462-16.763 14.935-10.211-39.301 12.31-46.617 15.713"
3216
+ fill="#fff"
3217
+ />
3218
+ <path
3219
+ d="M1883.017 1805.26c-8.501 3.944-.48 6.913 14.155 1.05 6.448-2.593 20.527-8.592 32.462-16.763 14.935-10.211-39.301 12.31-46.617 15.713z"
3220
+ fill="none"
3221
+ stroke="#909294"
3222
+ stroke-width="1.571"
3223
+ />
3224
+ <path
3225
+ d="M2084.15 1682.262c-1.35 0-2.667.645-3.478 1.844-1.29 1.919-.794 4.528 1.125 5.818 13.644 9.222 30.093 25.566 33.992 36.99 1.544 4.515 2.758 10.437 4.049 16.705 2.413 11.8 4.257 26.945 10.392 37.8 11.138 19.703 26.854 27.62 52.059 31.728 30.753 5.009 93.879 5.714 116.312-.45 20.96-5.742 63.934-21.426 63.14-23.616-.78-2.174-43.033 9.417-65.36 15.535-21.127 5.788-83.414 5.039-112.758.255-26.15-4.26-35.402-15.19-43.618-29.734-5.487-9.701-9.672-22.012-11.966-33.198-1.334-6.537-2.594-12.715-4.32-17.737-5.247-15.34-25.144-33.048-37.23-41.22a4.202 4.202 0 00-2.338-.72"
3226
+ fill="#fff"
3227
+ />
3228
+ <path
3229
+ d="M2084.15 1682.262c-1.35 0-2.667.645-3.478 1.844-1.29 1.919-.794 4.528 1.125 5.818 13.644 9.222 30.093 25.566 33.992 36.99 1.544 4.515 2.758 10.437 4.049 16.705 2.413 11.8 4.257 26.945 10.392 37.8 11.138 19.703 26.854 27.62 52.059 31.728 30.753 5.009 93.879 5.714 116.312-.45 20.96-5.742 63.934-21.426 63.14-23.616-.78-2.174-43.033 9.417-65.36 15.535-21.127 5.788-83.414 5.039-112.758.255-26.15-4.26-35.402-15.19-43.618-29.734-5.487-9.701-9.672-22.012-11.966-33.198-1.334-6.537-2.594-12.715-4.32-17.737-5.247-15.34-25.144-33.048-37.23-41.22a4.202 4.202 0 00-2.338-.72z"
3230
+ fill="none"
3231
+ stroke="#909294"
3232
+ stroke-width="2.095"
3233
+ />
3234
+ <path
3235
+ d="M1874.02 1798.859c-8.893 2.879-1.289 6.792 13.93 2.744 6.717-1.77 21.427-6.029 34.277-12.686 16.06-8.322-40.516 7.452-48.208 9.942"
3236
+ fill="#fff"
3237
+ />
3238
+ <path
3239
+ d="M1874.02 1798.859c-8.893 2.879-1.289 6.792 13.93 2.744 6.717-1.77 21.427-6.029 34.277-12.686 16.06-8.322-40.516 7.452-48.208 9.942z"
3240
+ fill="none"
3241
+ stroke="#909294"
3242
+ stroke-width="1.571"
3243
+ />
3244
+ <path
3245
+ d="M1893.378 1810.299c-8.083 4.692.164 6.913 14.2-.254 6.176-3.181 19.657-10.453 30.797-19.674 13.931-11.545-38.01 15.864-44.997 19.928"
3246
+ fill="#fff"
3247
+ />
3248
+ <path
3249
+ d="M1893.378 1810.299c-8.083 4.692.164 6.913 14.2-.254 6.176-3.181 19.657-10.453 30.797-19.674 13.931-11.545-38.01 15.864-44.997 19.928z"
3250
+ fill="none"
3251
+ stroke="#909294"
3252
+ stroke-width="1.571"
3253
+ />
3254
+ <path
3255
+ d="M1904.623 1811.873c-7.932 4.978.405 6.913 14.17-.734 6.073-3.39 19.282-11.125 30.108-20.722 13.511-12.027-37.44 17.168-44.278 21.456"
3256
+ fill="#fff"
3257
+ />
3258
+ <path
3259
+ d="M1904.623 1811.873c-7.932 4.978.405 6.913 14.17-.734 6.073-3.39 19.282-11.125 30.108-20.722 13.511-12.027-37.44 17.168-44.278 21.456z"
3260
+ fill="none"
3261
+ stroke="#909294"
3262
+ stroke-width="1.571"
3263
+ />
3264
+ <path
3265
+ d="M1916.365 1811.977c-7.903 5.024.435 6.913 14.169-.809 6.057-3.404 19.237-11.2 30.004-20.873 13.465-12.069-37.351 17.35-44.173 21.682"
3266
+ fill="#fff"
3267
+ />
3268
+ <path
3269
+ d="M1916.365 1811.977c-7.903 5.024.435 6.913 14.169-.809 6.057-3.404 19.237-11.2 30.004-20.873 13.465-12.069-37.351 17.35-44.173 21.682z"
3270
+ fill="none"
3271
+ stroke="#909294"
3272
+ stroke-width="1.571"
3273
+ />
3274
+ <path
3275
+ d="M1930.669 1812.143c-7.812 5.157.554 6.897 14.155-1.08 5.997-3.508 19.027-11.546 29.614-21.397 13.255-12.31-37.022 18.01-43.77 22.477"
3276
+ fill="#fff"
3277
+ />
3278
+ <path
3279
+ d="M1930.669 1812.143c-7.812 5.157.554 6.897 14.155-1.08 5.997-3.508 19.027-11.546 29.614-21.397 13.255-12.31-37.022 18.01-43.77 22.477z"
3280
+ fill="none"
3281
+ stroke="#909294"
3282
+ stroke-width="1.571"
3283
+ />
3284
+ <path
3285
+ d="M1945.303 1812.533c-7.467 5.638.99 6.853 14.064-1.95 5.758-3.883 18.264-12.73 28.22-23.21 12.446-13.137-35.837 20.286-42.284 25.16"
3286
+ fill="#fff"
3287
+ />
3288
+ <path
3289
+ d="M1945.303 1812.533c-7.467 5.638.99 6.853 14.064-1.95 5.758-3.883 18.264-12.73 28.22-23.21 12.446-13.137-35.837 20.286-42.284 25.16z"
3290
+ fill="none"
3291
+ stroke="#909294"
3292
+ stroke-width="1.571"
3293
+ />
3294
+ <path
3295
+ d="M1961.254 1812.908c-5.783 5.633 1.575 5.775 11.81-3.204 4.526-3.955 14.276-12.88 21.677-22.962 9.25-12.618-28.482 21.285-33.487 26.166"
3296
+ fill="#fff"
3297
+ />
3298
+ <path
3299
+ d="M1961.254 1812.908c-5.783 5.633 1.575 5.775 11.81-3.204 4.526-3.955 14.276-12.88 21.677-22.962 9.25-12.618-28.482 21.285-33.487 26.166z"
3300
+ fill="none"
3301
+ stroke="#909294"
3302
+ stroke-width="1.571"
3303
+ />
3304
+ <path
3305
+ d="M1974.992 1810.674c-4.902 6.432 2.4 5.487 11.2-4.903 3.884-4.574 8.682-8.667 14.5-19.733 7.287-13.854-21.487 19.073-25.7 24.636"
3306
+ fill="#fff"
3307
+ />
3308
+ <path
3309
+ d="M1974.992 1810.674c-4.902 6.432 2.4 5.487 11.2-4.903 3.884-4.574 8.682-8.667 14.5-19.733 7.287-13.854-21.487 19.073-25.7 24.636z"
3310
+ fill="none"
3311
+ stroke="#909294"
3312
+ stroke-width="1.571"
3313
+ />
3314
+ <path
3315
+ d="M1982.115 1810.718c-5.34 6.072 2.023 5.653 11.545-4.078 4.199-4.288 13.24-13.929 19.853-24.56 8.262-13.287-26.78 23.39-31.398 28.638"
3316
+ fill="#fff"
3317
+ />
3318
+ <path
3319
+ d="M1982.115 1810.718c-5.34 6.072 2.023 5.653 11.545-4.078 4.199-4.288 13.24-13.929 19.853-24.56 8.262-13.287-26.78 23.39-31.398 28.638z"
3320
+ fill="none"
3321
+ stroke="#909294"
3322
+ stroke-width="1.571"
3323
+ />
3324
+ <path
3325
+ d="M1990.502 1810.897c-5.8 5.822 2.483 6.202 12.76-3.07 4.517-4.087 17.783-18.354 25.136-28.685 9.203-12.921-32.893 26.73-37.896 31.755"
3326
+ fill="#fff"
3327
+ />
3328
+ <path
3329
+ d="M1990.502 1810.897c-5.8 5.822 2.483 6.202 12.76-3.07 4.517-4.087 17.783-18.354 25.136-28.685 9.203-12.921-32.893 26.73-37.896 31.755z"
3330
+ fill="none"
3331
+ stroke="#909294"
3332
+ stroke-width="1.571"
3333
+ />
3334
+ <path
3335
+ d="M2015.386 1796.918c-5.406 6.004 1.948 5.657 11.582-3.953 4.243-4.252 9.353-7.931 16.092-18.47 8.4-13.201-22.996 17.219-27.674 22.423"
3336
+ fill="#fff"
3337
+ />
3338
+ <path
3339
+ d="M2015.386 1796.918c-5.406 6.004 1.948 5.657 11.582-3.953 4.243-4.252 9.353-7.931 16.092-18.47 8.4-13.201-22.996 17.219-27.674 22.423z"
3340
+ fill="none"
3341
+ stroke="#909294"
3342
+ stroke-width="1.571"
3343
+ />
3344
+ <path
3345
+ d="M2025.342 1796.16c-5.181 6.209 2.152 5.599 11.42-4.372 4.089-4.395 12.894-14.266 19.217-25.062 7.919-13.478-26.155 24.07-30.637 29.435"
3346
+ fill="#fff"
3347
+ />
3348
+ <path
3349
+ d="M2025.342 1796.16c-5.181 6.209 2.152 5.599 11.42-4.372 4.089-4.395 12.894-14.266 19.217-25.062 7.919-13.478-26.155 24.07-30.637 29.435z"
3350
+ fill="none"
3351
+ stroke="#909294"
3352
+ stroke-width="1.571"
3353
+ />
3354
+ <path
3355
+ d="M2036.252 1794.2c-4.602 6.645 2.657 5.372 10.978-5.39 3.672-4.758 11.537-15.381 16.871-26.708 6.665-14.144-23.872 26.34-27.849 32.099"
3356
+ fill="#fff"
3357
+ />
3358
+ <path
3359
+ d="M2036.252 1794.2c-4.602 6.645 2.657 5.372 10.978-5.39 3.672-4.758 11.537-15.381 16.871-26.708 6.665-14.144-23.872 26.34-27.849 32.099z"
3360
+ fill="none"
3361
+ stroke="#909294"
3362
+ stroke-width="1.571"
3363
+ />
3364
+ <path
3365
+ d="M2050.009 1786.652c-4.199 6.913 4.183 4.949 11.875-6.281 3.389-4.949 9.401-15.775 14.049-27.38 5.833-14.529-22.296 27.695-25.924 33.661"
3366
+ fill="#fff"
3367
+ />
3368
+ <path
3369
+ d="M2050.009 1786.652c-4.199 6.913 4.183 4.949 11.875-6.281 3.389-4.949 9.401-15.775 14.049-27.38 5.833-14.529-22.296 27.695-25.924 33.661z"
3370
+ fill="none"
3371
+ stroke="#909294"
3372
+ stroke-width="1.571"
3373
+ />
3374
+ <path
3375
+ d="M2064.748 1776.816c-3.194 5.878 3.75 4.559 9.67-4.962 2.61-4.2 7.138-13.435 10.497-23.422 4.199-12.49-17.408 23.302-20.167 28.384"
3376
+ fill="#fff"
3377
+ />
3378
+ <path
3379
+ d="M2064.748 1776.816c-3.194 5.878 3.75 4.559 9.67-4.962 2.61-4.2 7.138-13.435 10.497-23.422 4.199-12.49-17.408 23.302-20.167 28.384z"
3380
+ fill="none"
3381
+ stroke="#909294"
3382
+ stroke-width="1.571"
3383
+ />
3384
+ <path
3385
+ d="M2075.769 1771.929c-2.79 6.162 4.258 7.137 9.52-2.79 2.31-4.377 6.165-14.095 8.758-24.755 3.24-13.331-15.88 22.222-18.278 27.545"
3386
+ fill="#fff"
3387
+ />
3388
+ <path
3389
+ d="M2075.769 1771.929c-2.79 6.162 4.258 7.137 9.52-2.79 2.31-4.377 6.165-14.095 8.758-24.755 3.24-13.331-15.88 22.222-18.278 27.545z"
3390
+ fill="none"
3391
+ stroke="#909294"
3392
+ stroke-width="1.571"
3393
+ />
3394
+ <path
3395
+ d="M2087.823 1763.097c-2.277 6.281 4.396 3.943 8.833-6.343 1.95-4.543 3.613-9.612 4.183-12.655 2.4-12.956-11.034 13.57-13.015 18.998"
3396
+ fill="#fff"
3397
+ />
3398
+ <path
3399
+ d="M2087.823 1763.097c-2.277 6.281 4.396 3.943 8.833-6.343 1.95-4.543 3.613-9.612 4.183-12.655 2.4-12.956-11.034 13.57-13.015 18.998z"
3400
+ fill="none"
3401
+ stroke="#909294"
3402
+ stroke-width="1.571"
3403
+ />
3404
+ <path d="M2098.17 1751.941c.465 9.505 9.972-12.311 10.06-15.414.092-3.329-10.21 12.16-10.06 15.414" fill="#fff" />
3405
+ <path
3406
+ d="M2098.17 1751.941c.465 9.505 9.972-12.311 10.06-15.414.092-3.329-10.21 12.16-10.06 15.414z"
3407
+ fill="none"
3408
+ stroke="#909294"
3409
+ stroke-width="1.571"
3410
+ />
3411
+ <path d="M2104.573 1746.602c-1.71 6.883 7.497-7.436 7.587-10.54.09-3.33-6.837 7.497-7.587 10.54" fill="#fff" />
3412
+ <path
3413
+ d="M2104.573 1746.602c-1.71 6.883 7.497-7.436 7.587-10.54.09-3.33-6.837 7.497-7.587 10.54z"
3414
+ fill="none"
3415
+ stroke="#909294"
3416
+ stroke-width="1.571"
3417
+ />
3418
+ <path d="M2281.596 1781.42c8.637.135 28.548 1.11 28.548 2.91 0 1.813-16.763 6.267-35.1 5.742-18.325-.525-27.485-9.177 6.552-8.652" fill="#fff" />
3419
+ <path
3420
+ d="M2281.596 1781.42c8.637.135 28.548 1.11 28.548 2.91 0 1.813-16.763 6.267-35.1 5.742-18.325-.525-27.485-9.177 6.552-8.652z"
3421
+ fill="none"
3422
+ stroke="#909294"
3423
+ stroke-width="1.571"
3424
+ />
3425
+ <path
3426
+ d="M2259.975 1772.559c8.59.869 28.34 3.508 28.188 5.308-.15 1.799-17.229 4.827-35.447 2.759-18.218-2.085-26.63-11.456 7.26-8.067"
3427
+ fill="#fff"
3428
+ />
3429
+ <path
3430
+ d="M2259.975 1772.559c8.59.869 28.34 3.508 28.188 5.308-.15 1.799-17.229 4.827-35.447 2.759-18.218-2.085-26.63-11.456 7.26-8.067z"
3431
+ fill="none"
3432
+ stroke="#909294"
3433
+ stroke-width="1.571"
3434
+ />
3435
+ <path
3436
+ d="M2278.448 1791.645c4.257 1.321 34.456 1.906 42.164 3.134 7.706 1.23.27-9.685-21.728-7.587-21.997 2.084-29.598 1.56-20.436 4.453"
3437
+ fill="#fff"
3438
+ />
3439
+ <path
3440
+ d="M2278.448 1791.645c4.257 1.321 34.456 1.906 42.164 3.134 7.706 1.23.27-9.685-21.728-7.587-21.997 2.084-29.598 1.56-20.436 4.453z"
3441
+ fill="none"
3442
+ stroke="#909294"
3443
+ stroke-width="1.571"
3444
+ />
3445
+ <path d="M2305.317 1795.59c6.463.089 21.367.869 21.383 2.489 0 1.618-12.522 5.667-26.24 5.261-13.72-.388-20.634-8.08 4.857-7.75" fill="#fff" />
3446
+ <path
3447
+ d="M2305.317 1795.59c6.463.089 21.367.869 21.383 2.489 0 1.618-12.522 5.667-26.24 5.261-13.72-.388-20.634-8.08 4.857-7.75z"
3448
+ fill="none"
3449
+ stroke="#909294"
3450
+ stroke-width="1.571"
3451
+ />
3452
+ <path
3453
+ d="M2226.867 1769.23c3.628 1.229 29.465 1.769 36.06 2.893 6.598 1.125.226-8.906-18.592-6.986-18.818 1.933-25.31 1.454-17.468 4.093"
3454
+ fill="#fff"
3455
+ />
3456
+ <path
3457
+ d="M2226.867 1769.23c3.628 1.229 29.465 1.769 36.06 2.893 6.598 1.125.226-8.906-18.592-6.986-18.818 1.933-25.31 1.454-17.468 4.093z"
3458
+ fill="none"
3459
+ stroke="#909294"
3460
+ stroke-width="1.571"
3461
+ />
3462
+ <path
3463
+ d="M2212.802 1763.097c3.748 1.14 30.408 1.634 37.2 2.684 6.808 1.048.24-8.293-19.178-6.509-19.403 1.8-26.105 1.35-18.022 3.825"
3464
+ fill="#fff"
3465
+ />
3466
+ <path
3467
+ d="M2212.802 1763.097c3.748 1.14 30.408 1.634 37.2 2.684 6.808 1.048.24-8.293-19.178-6.509-19.403 1.8-26.105 1.35-18.022 3.825z"
3468
+ fill="none"
3469
+ stroke="#909294"
3470
+ stroke-width="1.366"
3471
+ />
3472
+ <path
3473
+ d="M2198.738 1753.545c3.073 1.65 25.835 4.512 31.532 6.327 5.698 1.815 1.17-9.73-15.653-9.28-16.823.464-22.508-.646-15.879 2.953"
3474
+ fill="#fff"
3475
+ />
3476
+ <path
3477
+ d="M2198.738 1753.545c3.073 1.65 25.835 4.512 31.532 6.327 5.698 1.815 1.17-9.73-15.653-9.28-16.823.464-22.508-.646-15.879 2.953z"
3478
+ fill="none"
3479
+ stroke="#909294"
3480
+ stroke-width="1.377"
3481
+ />
3482
+ <path
3483
+ d="M2181.629 1742.69c2.174 1.89 19.687 6.462 23.93 8.681 4.229 2.234 2.31-9.507-11.005-10.36-13.315-.856-17.633-2.37-12.925 1.68"
3484
+ fill="#fff"
3485
+ />
3486
+ <path
3487
+ d="M2181.629 1742.69c2.174 1.89 19.687 6.462 23.93 8.681 4.229 2.234 2.31-9.507-11.005-10.36-13.315-.856-17.633-2.37-12.925 1.68z"
3488
+ fill="none"
3489
+ stroke="#909294"
3490
+ stroke-width="1.571"
3491
+ />
3492
+ <path
3493
+ d="M2177.91 1734.818c2.189 1.888 19.702 6.462 23.93 8.697 4.229 2.218 2.326-9.523-10.99-10.377-13.331-.84-17.648-2.369-12.94 1.68"
3494
+ fill="#fff"
3495
+ />
3496
+ <path
3497
+ d="M2177.91 1734.818c2.189 1.888 19.702 6.462 23.93 8.697 4.229 2.218 2.326-9.523-10.99-10.377-13.331-.84-17.648-2.369-12.94 1.68z"
3498
+ fill="none"
3499
+ stroke="#909294"
3500
+ stroke-width="1.571"
3501
+ />
3502
+ <path
3503
+ d="M2179.724 1727.56c2.175 1.889 19.703 6.463 23.932 8.697 4.228 2.219 2.308-9.521-11.006-10.377-13.316-.84-17.633-2.37-12.926 1.68"
3504
+ fill="#fff"
3505
+ />
3506
+ <path
3507
+ d="M2179.724 1727.56c2.175 1.889 19.703 6.463 23.932 8.697 4.228 2.219 2.308-9.521-11.006-10.377-13.316-.84-17.633-2.37-12.926 1.68z"
3508
+ fill="none"
3509
+ stroke="#909294"
3510
+ stroke-width="1.571"
3511
+ />
3512
+ <path
3513
+ d="M2178.645 1720.858c2.294 1.739 20.047 5.217 24.41 7.183 4.363 1.963 1.725-9.643-11.62-9.658-13.345-.014-17.754-1.275-12.79 2.475"
3514
+ fill="#fff"
3515
+ />
3516
+ <path
3517
+ d="M2178.645 1720.858c2.294 1.739 20.047 5.217 24.41 7.183 4.363 1.963 1.725-9.643-11.62-9.658-13.345-.014-17.754-1.275-12.79 2.475z"
3518
+ fill="none"
3519
+ stroke="#909294"
3520
+ stroke-width="1.571"
3521
+ />
3522
+ <path
3523
+ d="M2177.774 1712.866c2.296 1.74 20.05 5.217 24.412 7.167 4.363 1.964 1.725-9.642-11.62-9.656-13.346-.015-17.754-1.274-12.792 2.489"
3524
+ fill="#fff"
3525
+ />
3526
+ <path
3527
+ d="M2177.774 1712.866c2.296 1.74 20.05 5.217 24.412 7.167 4.363 1.964 1.725-9.642-11.62-9.656-13.346-.015-17.754-1.274-12.792 2.489z"
3528
+ fill="none"
3529
+ stroke="#909294"
3530
+ stroke-width="1.571"
3531
+ />
3532
+ <path
3533
+ d="M2173.083 1707.452c2.504 1.41 20.587 2.444 25.16 3.778 4.588 1.35.404-9.776-12.82-7.976-13.225 1.8-17.768 1.155-12.34 4.198"
3534
+ fill="#fff"
3535
+ />
3536
+ <path
3537
+ d="M2173.083 1707.452c2.504 1.41 20.587 2.444 25.16 3.778 4.588 1.35.404-9.776-12.82-7.976-13.225 1.8-17.768 1.155-12.34 4.198z"
3538
+ fill="none"
3539
+ stroke="#909294"
3540
+ stroke-width="1.571"
3541
+ />
3542
+ <path d="M2167.43 1700.51c-4.709 2.534 15.64.57 19.326 1.574 3.69.99 9.956-6.793-1.784-7.077-8.906-.226-17.543 5.503-17.543 5.503" fill="#fff" />
3543
+ <path
3544
+ d="M2167.43 1700.51c-4.709 2.534 15.64.57 19.326 1.574 3.69.99 9.956-6.793-1.784-7.077-8.906-.226-17.543 5.503-17.543 5.503z"
3545
+ fill="none"
3546
+ stroke="#909294"
3547
+ stroke-width="1.571"
3548
+ />
3549
+ <path
3550
+ d="M2164.626 1697.975c-3.42 3.315 13.18-2.174 16.464-1.844 3.283.33 6.927-8.382-2.94-6.612-7.481 1.351-13.524 8.456-13.524 8.456"
3551
+ fill="#fff"
3552
+ />
3553
+ <path
3554
+ d="M2164.626 1697.975c-3.42 3.315 13.18-2.174 16.464-1.844 3.283.33 6.927-8.382-2.94-6.612-7.481 1.351-13.524 8.456-13.524 8.456z"
3555
+ fill="none"
3556
+ stroke="#909294"
3557
+ stroke-width="1.452"
3558
+ />
3559
+ <path
3560
+ d="M2161.026 1694.633c-.899 4.333 11.937-4.798 15.115-5.144 3.164-.345 4.618-9.565-4.273-5.833-6.748 2.834-10.842 10.977-10.842 10.977"
3561
+ fill="#fff"
3562
+ />
3563
+ <path
3564
+ d="M2161.026 1694.633c-.899 4.333 11.937-4.798 15.115-5.144 3.164-.345 4.618-9.565-4.273-5.833-6.748 2.834-10.842 10.977-10.842 10.977z"
3565
+ fill="none"
3566
+ stroke="#909294"
3567
+ stroke-width="1.424"
3568
+ />
3569
+ <path
3570
+ d="M2058.21 1651.538c-5.321-8.816-2.744-18.309 5.729-21.997 10.616-4.632 14.514.555 21.516 7.527 3.794 3.765 12.326 10.542 5.518 16.51 5.953 1.02 7.752 7.647 3.389 10.555 8.352 7.227-.06 18.414-9.386 18.084-2.864 5.712-9.823 7.243-12.91.794-11.321 3.194-17.588-12.624-13.061-21.006z"
3571
+ fill="#fff"
3572
+ />
3573
+ <path
3574
+ d="M2058.21 1651.538c-5.321-8.816-2.744-18.309 5.729-21.997 10.616-4.632 14.514.555 21.516 7.527 3.794 3.765 12.326 10.542 5.518 16.51 5.953 1.02 7.752 7.647 3.389 10.555 8.352 7.227-.06 18.414-9.386 18.084-2.864 5.712-9.823 7.243-12.91.794-11.321 3.194-17.588-12.624-13.061-21.006z"
3575
+ fill="none"
3576
+ stroke="#909294"
3577
+ stroke-width="1.424"
3578
+ />
3579
+ <path
3580
+ d="M2048.553 1666.728c2.596-1.05 4.95-.27 9.657 1.05 4.724 1.304 12.836-.795 12.055-9.177-.794-8.367-7.121-13.614-14.814-10.99-7.707 2.623-18.023 5.502-23.347 5.502-5.308 0-16.043-.525-19.716 7.332-3.658 7.857-2.878 5.758-4.978 6.538-2.085.794-3.404 7.602-1.305 10.481 2.1 2.88 11.516 12.91 19.898 11.815 8.382-1.08 10.48-4.229 15.458-14.169 4.964-9.957 7.092-8.382 7.092-8.382"
3581
+ fill="#f4ac64"
3582
+ />
3583
+ <path
3584
+ d="M2048.553 1666.728c2.596-1.05 4.95-.27 9.657 1.05 4.724 1.304 12.836-.795 12.055-9.177-.794-8.367-7.121-13.614-14.814-10.99-7.707 2.623-18.023 5.502-23.347 5.502-5.308 0-16.043-.525-19.716 7.332-3.658 7.857-2.878 5.758-4.978 6.538-2.085.794-3.404 7.602-1.305 10.481 2.1 2.88 11.516 12.91 19.898 11.815 8.382-1.08 10.48-4.229 15.458-14.169 4.964-9.957 7.092-8.382 7.092-8.382z"
3585
+ fill="none"
3586
+ stroke="#473125"
3587
+ stroke-width="1.424"
3588
+ />
3589
+ <path
3590
+ d="M1991.17 1662.53c-.78 4.453 3.404 13.404 11.786 13.36 11.292-.06 12.58-8.637 12.58-10.992 0-2.368-8.936-2.099-10.496-.524-1.559 1.558-7.572 3.657-13.87-1.844"
3591
+ fill="#f0e53c"
3592
+ />
3593
+ <path
3594
+ d="M1991.17 1662.53c-.78 4.453 3.404 13.404 11.786 13.36 11.292-.06 12.58-8.637 12.58-10.992 0-2.368-8.936-2.099-10.496-.524-1.559 1.558-7.572 3.657-13.87-1.844z"
3595
+ fill="none"
3596
+ stroke="#473125"
3597
+ stroke-width="1.424"
3598
+ />
3599
+ <path
3600
+ d="M1994.575 1657.49c6.627-2.787 20.737-3.853 20.183 1.905-.54 5.758-7.35 4.184-8.397 2.085-1.035-2.085-5.233-3.66-11.786-3.99"
3601
+ fill="#f0e53c"
3602
+ />
3603
+ <path
3604
+ d="M1994.575 1657.49c6.627-2.787 20.737-3.853 20.183 1.905-.54 5.758-7.35 4.184-8.397 2.085-1.035-2.085-5.233-3.66-11.786-3.99z"
3605
+ fill="none"
3606
+ stroke="#473125"
3607
+ stroke-width="1.424"
3608
+ />
3609
+ <path
3610
+ d="M2008.205 1675.89c2.354 4.453 9.942 12.174 16.749 11.32 6.808-.84 10.406-1.334 12.28-4.438 2.655 2.549 2.174 6.478.45 7.527-1.725 1.05-3.404 1.98-5.58 3.869-2.173 1.889-6.776.585-8.92-1.514-2.158-2.1-1.364.524-6.597-1.305-5.248-1.844-.796-2.37-6.553-3.42-5.758-1.033-10.825-4.182-6.718-9.94 4.094-5.758 4.889-2.1 4.889-2.1"
3611
+ fill="#473125"
3612
+ />
3613
+ <path
3614
+ d="M2008.205 1675.89c2.354 4.453 9.942 12.174 16.749 11.32 6.808-.84 10.406-1.334 12.28-4.438 2.655 2.549 2.174 6.478.45 7.527-1.725 1.05-3.404 1.98-5.58 3.869-2.173 1.889-6.776.585-8.92-1.514-2.158-2.1-1.364.524-6.597-1.305-5.248-1.844-.796-2.37-6.553-3.42-5.758-1.033-10.825-4.182-6.718-9.94 4.094-5.758 4.889-2.1 4.889-2.1z"
3615
+ fill="none"
3616
+ stroke="#272425"
3617
+ stroke-width="1.424"
3618
+ />
3619
+ <path d="M2013.528 1674.06c3.059-1.05 7.766 7.333 13.524 1.305" fill="none" stroke="#272425" stroke-linecap="round" stroke-width="1.424" />
3620
+ <path
3621
+ d="M2016.316 1673.266a2.618 2.618 0 002.624 2.624c1.44 0 2.608-1.17 2.608-2.624a2.61 2.61 0 00-2.608-2.61 2.615 2.615 0 00-2.624 2.61"
3622
+ fill="#272425"
3623
+ />
3624
+ </g>
3625
+ </svg>