iss-ctrl 0.0.2 → 0.0.3

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 (1034) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.json +90 -0
  3. package/README.md +25 -24
  4. package/angular.json +190 -0
  5. package/bun.lock +1998 -0
  6. package/package.json +48 -19
  7. package/projects/iss/.eslintrc.json +37 -0
  8. package/projects/iss/README.md +24 -0
  9. package/projects/iss/ng-package.json +10 -0
  10. package/projects/iss/package.json +17 -0
  11. package/projects/iss/src/components/controls/base/control.base.ts +77 -0
  12. package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
  13. package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
  14. package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
  15. package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
  16. package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
  17. package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
  18. package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
  19. package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
  20. package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
  21. package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
  22. package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
  23. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
  24. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
  25. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
  26. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
  27. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
  28. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
  29. package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
  30. package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
  31. package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
  32. package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
  33. package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
  34. package/projects/iss/src/components/controls/input/input.control.ts +95 -0
  35. package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
  36. package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
  37. package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
  38. package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
  39. package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
  40. package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
  41. package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
  42. package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
  43. package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
  44. package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
  45. package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
  46. package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
  47. package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
  48. package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
  49. package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
  50. package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
  51. package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
  52. package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
  53. package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
  54. package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
  55. package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
  56. package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
  57. package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
  58. package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
  59. package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
  60. package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
  61. package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
  62. package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
  63. package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
  64. package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
  65. package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
  66. package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
  67. package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
  68. package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
  69. package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
  70. package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
  71. package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
  72. package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
  73. package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
  74. package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
  75. package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
  76. package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
  77. package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
  78. package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
  79. package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
  80. package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
  81. package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
  82. package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
  83. package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
  84. package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
  85. package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
  86. package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
  87. package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
  88. package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
  89. package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
  90. package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
  91. package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
  92. package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
  93. package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
  94. package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
  95. package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
  96. package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
  97. package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
  98. package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
  99. package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
  100. package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
  101. package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
  102. package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
  103. package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
  104. package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
  105. package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
  106. package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
  107. package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
  108. package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
  109. package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
  110. package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
  111. package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
  112. package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
  113. package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
  114. package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
  115. package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
  116. package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
  117. package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
  118. package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
  119. package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
  120. package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
  121. package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
  122. package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
  123. package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
  124. package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
  125. package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
  126. package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
  127. package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
  128. package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
  129. package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
  130. package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
  131. package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
  132. package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
  133. package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
  134. package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
  135. package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
  136. package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
  137. package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
  138. package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
  139. package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
  140. package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
  141. package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
  142. package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
  143. package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
  144. package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
  145. package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
  146. package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
  147. package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
  148. package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
  149. package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
  150. package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
  151. package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
  152. package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
  153. package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
  154. package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
  155. package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
  156. package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
  157. package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
  158. package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
  159. package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
  160. package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
  161. package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
  162. package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
  163. package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
  164. package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
  165. package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
  166. package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
  167. package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
  168. package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
  169. package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
  170. package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
  171. package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
  172. package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
  173. package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
  174. package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
  175. package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
  176. package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
  177. package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
  178. package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
  179. package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
  180. package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
  181. package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
  182. package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
  183. package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
  184. package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
  185. package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
  186. package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
  187. package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
  188. package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
  189. package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
  190. package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
  191. package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
  192. package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
  193. package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
  194. package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
  195. package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
  196. package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
  197. package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
  198. package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
  199. package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
  200. package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
  201. package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
  202. package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
  203. package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
  204. package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
  205. package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
  206. package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
  207. package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
  208. package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
  209. package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
  210. package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
  211. package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
  212. package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
  213. package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
  214. package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
  215. package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
  216. package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
  217. package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
  218. package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
  219. package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
  220. package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
  221. package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
  222. package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
  223. package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
  224. package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
  225. package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
  226. package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
  227. package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
  228. package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
  229. package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
  230. package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
  231. package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
  232. package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
  233. package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
  234. package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
  235. package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
  236. package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
  237. package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
  238. package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
  239. package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
  240. package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
  241. package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
  242. package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
  243. package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
  244. package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
  245. package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
  246. package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
  247. package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
  248. package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
  249. package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
  250. package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
  251. package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
  252. package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
  253. package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
  254. package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
  255. package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
  256. package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
  257. package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
  258. package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
  259. package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
  260. package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
  261. package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
  262. package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
  263. package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
  264. package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
  265. package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
  266. package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
  267. package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
  268. package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
  269. package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
  270. package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
  271. package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
  272. package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
  273. package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
  274. package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
  275. package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
  276. package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
  277. package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
  278. package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
  279. package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
  280. package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
  281. package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
  282. package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
  283. package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
  284. package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
  285. package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
  286. package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
  287. package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
  288. package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
  289. package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
  290. package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
  291. package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
  292. package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
  293. package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
  294. package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
  295. package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
  296. package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
  297. package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
  298. package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
  299. package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
  300. package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
  301. package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
  302. package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
  303. package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
  304. package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
  305. package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
  306. package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
  307. package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
  308. package/projects/iss/src/components/controls/select/select.control.ts +261 -0
  309. package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
  310. package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
  311. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
  312. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
  313. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
  314. package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
  315. package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
  316. package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
  317. package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
  318. package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
  319. package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
  320. package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
  321. package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
  322. package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
  323. package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
  324. package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
  325. package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
  326. package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
  327. package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
  328. package/projects/iss/src/components/outlet/outlet.ts +152 -0
  329. package/projects/iss/src/components/shared/hints.component.ts +38 -0
  330. package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
  331. package/projects/iss/src/events/event-handler.service.ts +47 -0
  332. package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
  333. package/projects/iss/src/events/load/load-event.service.ts +26 -0
  334. package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
  335. package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
  336. package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
  337. package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
  338. package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
  339. package/projects/iss/src/events/show/show-event.service.ts +11 -0
  340. package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
  341. package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
  342. package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
  343. package/projects/iss/src/public-api.ts +102 -0
  344. package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
  345. package/projects/iss/src/shared/classes/field-action.ts +28 -0
  346. package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
  347. package/projects/iss/src/shared/classes/field-config.ts +113 -0
  348. package/projects/iss/src/shared/classes/field-option.ts +9 -0
  349. package/projects/iss/src/shared/classes/field-validation.ts +15 -0
  350. package/projects/iss/src/shared/classes/form-field.ts +94 -0
  351. package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
  352. package/projects/iss/src/shared/constants/date.const.ts +18 -0
  353. package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
  354. package/projects/iss/src/shared/constants/provider.const.ts +7 -0
  355. package/projects/iss/src/shared/constants/regex.const.ts +1 -0
  356. package/projects/iss/src/shared/constants/validation.const.ts +115 -0
  357. package/projects/iss/src/shared/indexes/components.index.ts +27 -0
  358. package/projects/iss/src/shared/indexes/services.index.ts +11 -0
  359. package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
  360. package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
  361. package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
  362. package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
  363. package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
  364. package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
  365. package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
  366. package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
  367. package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
  368. package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
  369. package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
  370. package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
  371. package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
  372. package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
  373. package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
  374. package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
  375. package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
  376. package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
  377. package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
  378. package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
  379. package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
  380. package/projects/iss/src/shared/services/loader.service.ts +51 -0
  381. package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
  382. package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
  383. package/projects/iss/src/shared/tokens/field.token.ts +4 -0
  384. package/projects/iss/src/shared/tokens/host.token.ts +3 -0
  385. package/projects/iss/src/shared/tokens/language.token.ts +3 -0
  386. package/projects/iss/src/shared/tokens/url.token.ts +3 -0
  387. package/projects/iss/src/shared/types/iso2.type.ts +244 -0
  388. package/projects/iss/src/shared/types/validation.type.ts +3 -0
  389. package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
  390. package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
  391. package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
  392. package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
  393. package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
  394. package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
  395. package/projects/iss/src/validators/core.validator.ts +39 -0
  396. package/projects/iss/src/validators/file.validator.ts +100 -0
  397. package/projects/iss/src/validators/time.validator.ts +31 -0
  398. package/projects/iss/tsconfig.lib.json +13 -0
  399. package/projects/iss/tsconfig.lib.prod.json +9 -0
  400. package/projects/iss/tsconfig.spec.json +13 -0
  401. package/projects/iss/upgrade.scss +68 -0
  402. package/projects/playground/.eslintrc.json +37 -0
  403. package/projects/playground/public/favicon.ico +0 -0
  404. package/projects/playground/public/flags/ad.svg +282 -0
  405. package/projects/playground/public/flags/ae.svg +6 -0
  406. package/projects/playground/public/flags/af.svg +9 -0
  407. package/projects/playground/public/flags/ag.svg +15 -0
  408. package/projects/playground/public/flags/ai.svg +35 -0
  409. package/projects/playground/public/flags/al.svg +7 -0
  410. package/projects/playground/public/flags/am.svg +5 -0
  411. package/projects/playground/public/flags/ao.svg +19 -0
  412. package/projects/playground/public/flags/aq.svg +45 -0
  413. package/projects/playground/public/flags/ar.svg +66 -0
  414. package/projects/playground/public/flags/as.svg +225 -0
  415. package/projects/playground/public/flags/at.svg +4 -0
  416. package/projects/playground/public/flags/au.svg +32 -0
  417. package/projects/playground/public/flags/aw.svg +11 -0
  418. package/projects/playground/public/flags/ax.svg +11 -0
  419. package/projects/playground/public/flags/az.svg +11 -0
  420. package/projects/playground/public/flags/ba.svg +18 -0
  421. package/projects/playground/public/flags/bb.svg +11 -0
  422. package/projects/playground/public/flags/bd.svg +4 -0
  423. package/projects/playground/public/flags/be.svg +5 -0
  424. package/projects/playground/public/flags/bf.svg +14 -0
  425. package/projects/playground/public/flags/bg.svg +5 -0
  426. package/projects/playground/public/flags/bh.svg +4 -0
  427. package/projects/playground/public/flags/bi.svg +26 -0
  428. package/projects/playground/public/flags/bj.svg +5 -0
  429. package/projects/playground/public/flags/bl.svg +5 -0
  430. package/projects/playground/public/flags/bm.svg +374 -0
  431. package/projects/playground/public/flags/bn.svg +70 -0
  432. package/projects/playground/public/flags/bo.svg +3625 -0
  433. package/projects/playground/public/flags/bq.svg +5 -0
  434. package/projects/playground/public/flags/br.svg +92 -0
  435. package/projects/playground/public/flags/bs.svg +5 -0
  436. package/projects/playground/public/flags/bt.svg +487 -0
  437. package/projects/playground/public/flags/bv.svg +11 -0
  438. package/projects/playground/public/flags/bw.svg +5 -0
  439. package/projects/playground/public/flags/by.svg +15 -0
  440. package/projects/playground/public/flags/bz.svg +629 -0
  441. package/projects/playground/public/flags/ca.svg +7 -0
  442. package/projects/playground/public/flags/cc.svg +33 -0
  443. package/projects/playground/public/flags/cd.svg +5 -0
  444. package/projects/playground/public/flags/cf.svg +7 -0
  445. package/projects/playground/public/flags/cg.svg +5 -0
  446. package/projects/playground/public/flags/ch.svg +4 -0
  447. package/projects/playground/public/flags/ci.svg +5 -0
  448. package/projects/playground/public/flags/ck.svg +29 -0
  449. package/projects/playground/public/flags/cl.svg +14 -0
  450. package/projects/playground/public/flags/cm.svg +15 -0
  451. package/projects/playground/public/flags/cn.svg +11 -0
  452. package/projects/playground/public/flags/co.svg +5 -0
  453. package/projects/playground/public/flags/cr.svg +1332 -0
  454. package/projects/playground/public/flags/cu.svg +6 -0
  455. package/projects/playground/public/flags/cv.svg +24 -0
  456. package/projects/playground/public/flags/cw.svg +16 -0
  457. package/projects/playground/public/flags/cx.svg +24 -0
  458. package/projects/playground/public/flags/cy.svg +13 -0
  459. package/projects/playground/public/flags/cz.svg +5 -0
  460. package/projects/playground/public/flags/de.svg +5 -0
  461. package/projects/playground/public/flags/dj.svg +6 -0
  462. package/projects/playground/public/flags/dk.svg +5 -0
  463. package/projects/playground/public/flags/dm.svg +198 -0
  464. package/projects/playground/public/flags/do.svg +238 -0
  465. package/projects/playground/public/flags/dz.svg +5 -0
  466. package/projects/playground/public/flags/ec.svg +1292 -0
  467. package/projects/playground/public/flags/ee.svg +5 -0
  468. package/projects/playground/public/flags/eg.svg +125 -0
  469. package/projects/playground/public/flags/eh.svg +12 -0
  470. package/projects/playground/public/flags/er.svg +9 -0
  471. package/projects/playground/public/flags/es.svg +445 -0
  472. package/projects/playground/public/flags/et.svg +16 -0
  473. package/projects/playground/public/flags/eu.svg +28 -0
  474. package/projects/playground/public/flags/fi.svg +5 -0
  475. package/projects/playground/public/flags/fj.svg +203 -0
  476. package/projects/playground/public/flags/fk.svg +922 -0
  477. package/projects/playground/public/flags/flags.png +0 -0
  478. package/projects/playground/public/flags/flags@2x.png +0 -0
  479. package/projects/playground/public/flags/fm.svg +16 -0
  480. package/projects/playground/public/flags/fo.svg +11 -0
  481. package/projects/playground/public/flags/fonts.css +271 -0
  482. package/projects/playground/public/flags/fr.svg +5 -0
  483. package/projects/playground/public/flags/ga.svg +5 -0
  484. package/projects/playground/public/flags/gb-eng.svg +7 -0
  485. package/projects/playground/public/flags/gb-nir.svg +15 -0
  486. package/projects/playground/public/flags/gb-sct.svg +11 -0
  487. package/projects/playground/public/flags/gb-wls.svg +16 -0
  488. package/projects/playground/public/flags/gb.svg +15 -0
  489. package/projects/playground/public/flags/gd.svg +11 -0
  490. package/projects/playground/public/flags/ge.svg +17 -0
  491. package/projects/playground/public/flags/gf.svg +5 -0
  492. package/projects/playground/public/flags/gg.svg +8 -0
  493. package/projects/playground/public/flags/gh.svg +6 -0
  494. package/projects/playground/public/flags/gi.svg +69 -0
  495. package/projects/playground/public/flags/gl.svg +4 -0
  496. package/projects/playground/public/flags/gm.svg +7 -0
  497. package/projects/playground/public/flags/gn.svg +5 -0
  498. package/projects/playground/public/flags/gp.svg +5 -0
  499. package/projects/playground/public/flags/gq.svg +88 -0
  500. package/projects/playground/public/flags/gr.svg +4 -0
  501. package/projects/playground/public/flags/gs.svg +693 -0
  502. package/projects/playground/public/flags/gt.svg +317 -0
  503. package/projects/playground/public/flags/gu.svg +58 -0
  504. package/projects/playground/public/flags/gw.svg +13 -0
  505. package/projects/playground/public/flags/gy.svg +7 -0
  506. package/projects/playground/public/flags/hk.svg +17 -0
  507. package/projects/playground/public/flags/hm.svg +32 -0
  508. package/projects/playground/public/flags/hn.svg +10 -0
  509. package/projects/playground/public/flags/hr.svg +282 -0
  510. package/projects/playground/public/flags/ht.svg +1470 -0
  511. package/projects/playground/public/flags/hu.svg +5 -0
  512. package/projects/playground/public/flags/id.svg +4 -0
  513. package/projects/playground/public/flags/ie.svg +5 -0
  514. package/projects/playground/public/flags/il.svg +5 -0
  515. package/projects/playground/public/flags/im.svg +33 -0
  516. package/projects/playground/public/flags/in.svg +25 -0
  517. package/projects/playground/public/flags/io.svg +895 -0
  518. package/projects/playground/public/flags/iq.svg +12 -0
  519. package/projects/playground/public/flags/ir.svg +31 -0
  520. package/projects/playground/public/flags/is.svg +5 -0
  521. package/projects/playground/public/flags/it.svg +5 -0
  522. package/projects/playground/public/flags/je.svg +40 -0
  523. package/projects/playground/public/flags/jm.svg +9 -0
  524. package/projects/playground/public/flags/jo.svg +10 -0
  525. package/projects/playground/public/flags/jp.svg +4 -0
  526. package/projects/playground/public/flags/ke.svg +28 -0
  527. package/projects/playground/public/flags/kg.svg +7 -0
  528. package/projects/playground/public/flags/kh.svg +133 -0
  529. package/projects/playground/public/flags/ki.svg +54 -0
  530. package/projects/playground/public/flags/km.svg +13 -0
  531. package/projects/playground/public/flags/kn.svg +24 -0
  532. package/projects/playground/public/flags/kp.svg +16 -0
  533. package/projects/playground/public/flags/kr.svg +16 -0
  534. package/projects/playground/public/flags/kw.svg +6 -0
  535. package/projects/playground/public/flags/ky.svg +153 -0
  536. package/projects/playground/public/flags/kz.svg +49 -0
  537. package/projects/playground/public/flags/la.svg +5 -0
  538. package/projects/playground/public/flags/lb.svg +8 -0
  539. package/projects/playground/public/flags/lc.svg +6 -0
  540. package/projects/playground/public/flags/li.svg +79 -0
  541. package/projects/playground/public/flags/lk.svg +50 -0
  542. package/projects/playground/public/flags/lr.svg +15 -0
  543. package/projects/playground/public/flags/ls.svg +32 -0
  544. package/projects/playground/public/flags/lt.svg +5 -0
  545. package/projects/playground/public/flags/lu.svg +5 -0
  546. package/projects/playground/public/flags/lv.svg +4 -0
  547. package/projects/playground/public/flags/ly.svg +8 -0
  548. package/projects/playground/public/flags/ma.svg +4 -0
  549. package/projects/playground/public/flags/mc.svg +4 -0
  550. package/projects/playground/public/flags/md.svg +102 -0
  551. package/projects/playground/public/flags/me.svg +240 -0
  552. package/projects/playground/public/flags/mf.svg +5 -0
  553. package/projects/playground/public/flags/mg.svg +5 -0
  554. package/projects/playground/public/flags/mh.svg +18 -0
  555. package/projects/playground/public/flags/mk.svg +6 -0
  556. package/projects/playground/public/flags/ml.svg +5 -0
  557. package/projects/playground/public/flags/mm.svg +12 -0
  558. package/projects/playground/public/flags/mn.svg +12 -0
  559. package/projects/playground/public/flags/mo.svg +13 -0
  560. package/projects/playground/public/flags/mp.svg +2919 -0
  561. package/projects/playground/public/flags/mq.svg +5 -0
  562. package/projects/playground/public/flags/mr.svg +5 -0
  563. package/projects/playground/public/flags/ms.svg +59 -0
  564. package/projects/playground/public/flags/mt.svg +52 -0
  565. package/projects/playground/public/flags/mu.svg +6 -0
  566. package/projects/playground/public/flags/mv.svg +8 -0
  567. package/projects/playground/public/flags/mw.svg +24 -0
  568. package/projects/playground/public/flags/mx.svg +1129 -0
  569. package/projects/playground/public/flags/my.svg +12 -0
  570. package/projects/playground/public/flags/mz.svg +50 -0
  571. package/projects/playground/public/flags/na.svg +17 -0
  572. package/projects/playground/public/flags/nc.svg +5 -0
  573. package/projects/playground/public/flags/ne.svg +6 -0
  574. package/projects/playground/public/flags/nf.svg +8 -0
  575. package/projects/playground/public/flags/ng.svg +4 -0
  576. package/projects/playground/public/flags/ni.svg +281 -0
  577. package/projects/playground/public/flags/nl.svg +5 -0
  578. package/projects/playground/public/flags/no.svg +11 -0
  579. package/projects/playground/public/flags/np.svg +33 -0
  580. package/projects/playground/public/flags/nr.svg +8 -0
  581. package/projects/playground/public/flags/nu.svg +23 -0
  582. package/projects/playground/public/flags/nz.svg +37 -0
  583. package/projects/playground/public/flags/om.svg +307 -0
  584. package/projects/playground/public/flags/pa.svg +15 -0
  585. package/projects/playground/public/flags/pe.svg +767 -0
  586. package/projects/playground/public/flags/pf.svg +38 -0
  587. package/projects/playground/public/flags/pg.svg +16 -0
  588. package/projects/playground/public/flags/ph.svg +28 -0
  589. package/projects/playground/public/flags/pk.svg +7 -0
  590. package/projects/playground/public/flags/pl.svg +4 -0
  591. package/projects/playground/public/flags/pm.svg +5 -0
  592. package/projects/playground/public/flags/pn.svg +131 -0
  593. package/projects/playground/public/flags/pr.svg +6 -0
  594. package/projects/playground/public/flags/ps.svg +6 -0
  595. package/projects/playground/public/flags/pt.svg +79 -0
  596. package/projects/playground/public/flags/pw.svg +4 -0
  597. package/projects/playground/public/flags/py.svg +192 -0
  598. package/projects/playground/public/flags/qa.svg +7 -0
  599. package/projects/playground/public/flags/re.svg +5 -0
  600. package/projects/playground/public/flags/ro.svg +5 -0
  601. package/projects/playground/public/flags/rs.svg +1143 -0
  602. package/projects/playground/public/flags/ru.svg +5 -0
  603. package/projects/playground/public/flags/rw.svg +17 -0
  604. package/projects/playground/public/flags/sa.svg +23 -0
  605. package/projects/playground/public/flags/sb.svg +30 -0
  606. package/projects/playground/public/flags/sc.svg +7 -0
  607. package/projects/playground/public/flags/sd.svg +6 -0
  608. package/projects/playground/public/flags/se.svg +5 -0
  609. package/projects/playground/public/flags/sg.svg +15 -0
  610. package/projects/playground/public/flags/sh.svg +15 -0
  611. package/projects/playground/public/flags/si.svg +30 -0
  612. package/projects/playground/public/flags/sj.svg +11 -0
  613. package/projects/playground/public/flags/sk.svg +21 -0
  614. package/projects/playground/public/flags/sl.svg +5 -0
  615. package/projects/playground/public/flags/sm.svg +847 -0
  616. package/projects/playground/public/flags/sn.svg +15 -0
  617. package/projects/playground/public/flags/so.svg +13 -0
  618. package/projects/playground/public/flags/sr.svg +6 -0
  619. package/projects/playground/public/flags/ss.svg +8 -0
  620. package/projects/playground/public/flags/st.svg +16 -0
  621. package/projects/playground/public/flags/stc-icons.css +1 -0
  622. package/projects/playground/public/flags/sv.svg +3368 -0
  623. package/projects/playground/public/flags/sx.svg +172 -0
  624. package/projects/playground/public/flags/sy.svg +6 -0
  625. package/projects/playground/public/flags/sz.svg +54 -0
  626. package/projects/playground/public/flags/tc.svg +88 -0
  627. package/projects/playground/public/flags/td.svg +5 -0
  628. package/projects/playground/public/flags/tf.svg +18 -0
  629. package/projects/playground/public/flags/tg.svg +15 -0
  630. package/projects/playground/public/flags/th.svg +5 -0
  631. package/projects/playground/public/flags/tj.svg +32 -0
  632. package/projects/playground/public/flags/tk.svg +25 -0
  633. package/projects/playground/public/flags/tl.svg +6 -0
  634. package/projects/playground/public/flags/tm.svg +349 -0
  635. package/projects/playground/public/flags/tn.svg +9 -0
  636. package/projects/playground/public/flags/to.svg +8 -0
  637. package/projects/playground/public/flags/tr.svg +6 -0
  638. package/projects/playground/public/flags/tt.svg +5 -0
  639. package/projects/playground/public/flags/tv.svg +18 -0
  640. package/projects/playground/public/flags/tw.svg +12 -0
  641. package/projects/playground/public/flags/tz.svg +13 -0
  642. package/projects/playground/public/flags/ua.svg +4 -0
  643. package/projects/playground/public/flags/ug.svg +46 -0
  644. package/projects/playground/public/flags/um.svg +25 -0
  645. package/projects/playground/public/flags/us.svg +25 -0
  646. package/projects/playground/public/flags/uy.svg +138 -0
  647. package/projects/playground/public/flags/uz.svg +30 -0
  648. package/projects/playground/public/flags/va.svg +277 -0
  649. package/projects/playground/public/flags/vc.svg +9 -0
  650. package/projects/playground/public/flags/ve.svg +28 -0
  651. package/projects/playground/public/flags/vg.svg +96 -0
  652. package/projects/playground/public/flags/vi.svg +311 -0
  653. package/projects/playground/public/flags/vn.svg +12 -0
  654. package/projects/playground/public/flags/vu.svg +20 -0
  655. package/projects/playground/public/flags/wf.svg +7 -0
  656. package/projects/playground/public/flags/ws.svg +14 -0
  657. package/projects/playground/public/flags/xk.svg +11 -0
  658. package/projects/playground/public/flags/ye.svg +5 -0
  659. package/projects/playground/public/flags/yt.svg +5 -0
  660. package/projects/playground/public/flags/za.svg +17 -0
  661. package/projects/playground/public/flags/zm.svg +20 -0
  662. package/projects/playground/public/flags/zw.svg +130 -0
  663. package/projects/playground/src/app/app.component.ts +119 -0
  664. package/projects/playground/src/app/app.config.ts +51 -0
  665. package/projects/playground/src/app/app.routes.ts +41 -0
  666. package/projects/playground/src/app/login.service.ts +21 -0
  667. package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
  668. package/projects/playground/src/components/attachment.component.ts +35 -0
  669. package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
  670. package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
  671. package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
  672. package/projects/playground/src/components/date-picker-container.component.ts +22 -0
  673. package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
  674. package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
  675. package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
  676. package/projects/playground/src/components/datetime-container.component.ts +25 -0
  677. package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
  678. package/projects/playground/src/components/input-container.component.ts +35 -0
  679. package/projects/playground/src/components/input-wrapper.component.ts +41 -0
  680. package/projects/playground/src/components/mobile-container.component.ts +23 -0
  681. package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
  682. package/projects/playground/src/components/note-wrapper.component.ts +37 -0
  683. package/projects/playground/src/components/outlet-container.component.ts +144 -0
  684. package/projects/playground/src/components/plate-container.component.ts +22 -0
  685. package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
  686. package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
  687. package/projects/playground/src/components/select-container.component.ts +31 -0
  688. package/projects/playground/src/components/select-wrapper.component.ts +48 -0
  689. package/projects/playground/src/components/ships-container.component.ts +23 -0
  690. package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
  691. package/projects/playground/src/components/textarea-container.component.ts +23 -0
  692. package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
  693. package/projects/playground/src/components/time-picker-container.component.ts +23 -0
  694. package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
  695. package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
  696. package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
  697. package/projects/playground/src/eServices/create-request.component.ts +28 -0
  698. package/projects/playground/src/eServices/e-service.component.ts +112 -0
  699. package/projects/playground/src/eServices/view-request.component.ts +13 -0
  700. package/projects/playground/src/index.html +13 -0
  701. package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
  702. package/projects/playground/src/main.ts +8 -0
  703. package/projects/playground/src/services/ss.service.ts +62 -0
  704. package/projects/playground/src/styles.scss +33 -0
  705. package/projects/playground/src/validators/customValidator.validator.ts +10 -0
  706. package/projects/playground/tsconfig.app.json +15 -0
  707. package/tsconfig.json +31 -0
  708. package/components/autocomplete/autocomplete.component.d.ts +0 -6
  709. package/components/base-ctrl.d.ts +0 -33
  710. package/components/checkbox/checkbox.component.d.ts +0 -16
  711. package/components/chips/chips.component.d.ts +0 -6
  712. package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
  713. package/components/date-picker/date-adapter.d.ts +0 -37
  714. package/components/date-picker/date-picker.component.d.ts +0 -15
  715. package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
  716. package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
  717. package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
  718. package/components/file-picker/file-picker.component.d.ts +0 -17
  719. package/components/hints/hints.component.d.ts +0 -9
  720. package/components/input/input.component.d.ts +0 -8
  721. package/components/mobile/COUNTRIES.d.ts +0 -2
  722. package/components/mobile/mobile.component.d.ts +0 -26
  723. package/components/mobile/phone.service.d.ts +0 -17
  724. package/components/note/note.component.d.ts +0 -6
  725. package/components/plate-number/plate-number.component.d.ts +0 -16
  726. package/components/radio/radio.component.d.ts +0 -11
  727. package/components/select/select.component.d.ts +0 -20
  728. package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
  729. package/components/textarea/textarea.component.d.ts +0 -6
  730. package/components/time-picker/time-picker.component.d.ts +0 -19
  731. package/components/toggle-button/toggle-button.component.d.ts +0 -16
  732. package/directives/droppable.directive.d.ts +0 -10
  733. package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
  734. package/esm2022/components/base-ctrl.mjs +0 -93
  735. package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
  736. package/esm2022/components/chips/chips.component.mjs +0 -17
  737. package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
  738. package/esm2022/components/date-picker/date-adapter.mjs +0 -183
  739. package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
  740. package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
  741. package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
  742. package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
  743. package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
  744. package/esm2022/components/hints/hints.component.mjs +0 -66
  745. package/esm2022/components/input/input.component.mjs +0 -32
  746. package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
  747. package/esm2022/components/mobile/mobile.component.mjs +0 -141
  748. package/esm2022/components/mobile/phone.service.mjs +0 -99
  749. package/esm2022/components/note/note.component.mjs +0 -17
  750. package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
  751. package/esm2022/components/radio/radio.component.mjs +0 -40
  752. package/esm2022/components/select/select.component.mjs +0 -123
  753. package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
  754. package/esm2022/components/textarea/textarea.component.mjs +0 -17
  755. package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
  756. package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
  757. package/esm2022/directives/droppable.directive.mjs +0 -39
  758. package/esm2022/interfaces/country.interface.mjs +0 -2
  759. package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
  760. package/esm2022/interfaces/hint.interface.mjs +0 -2
  761. package/esm2022/interfaces/iso2.interface.mjs +0 -2
  762. package/esm2022/interfaces/mobile.interface.mjs +0 -2
  763. package/esm2022/interfaces/option.interface.mjs +0 -2
  764. package/esm2022/interfaces/time.interface.mjs +0 -2
  765. package/esm2022/iss-ctrl.mjs +0 -5
  766. package/esm2022/pipes/select-status.pipe.mjs +0 -18
  767. package/esm2022/public-api.mjs +0 -20
  768. package/fesm2022/iss-ctrl.mjs +0 -3658
  769. package/fesm2022/iss-ctrl.mjs.map +0 -1
  770. package/index.d.ts +0 -5
  771. package/interfaces/country.interface.d.ts +0 -10
  772. package/interfaces/date-range-emission-object.d.ts +0 -5
  773. package/interfaces/hint.interface.d.ts +0 -5
  774. package/interfaces/iso2.interface.d.ts +0 -1
  775. package/interfaces/mobile.interface.d.ts +0 -11
  776. package/interfaces/option.interface.d.ts +0 -4
  777. package/interfaces/time.interface.d.ts +0 -5
  778. package/pipes/select-status.pipe.d.ts +0 -8
  779. package/public-api.d.ts +0 -19
  780. package/src/components/mobile/flags/ad.svg +0 -154
  781. package/src/components/mobile/flags/ae.svg +0 -1
  782. package/src/components/mobile/flags/af.svg +0 -1
  783. package/src/components/mobile/flags/ag.svg +0 -1
  784. package/src/components/mobile/flags/ai.svg +0 -1
  785. package/src/components/mobile/flags/al.svg +0 -1
  786. package/src/components/mobile/flags/am.svg +0 -1
  787. package/src/components/mobile/flags/ao.svg +0 -1
  788. package/src/components/mobile/flags/aq.svg +0 -1
  789. package/src/components/mobile/flags/ar.svg +0 -1
  790. package/src/components/mobile/flags/as.svg +0 -1
  791. package/src/components/mobile/flags/at.svg +0 -1
  792. package/src/components/mobile/flags/au.svg +0 -1
  793. package/src/components/mobile/flags/aw.svg +0 -1
  794. package/src/components/mobile/flags/ax.svg +0 -1
  795. package/src/components/mobile/flags/az.svg +0 -1
  796. package/src/components/mobile/flags/ba.svg +0 -1
  797. package/src/components/mobile/flags/bb.svg +0 -7
  798. package/src/components/mobile/flags/bd.svg +0 -1
  799. package/src/components/mobile/flags/be.svg +0 -1
  800. package/src/components/mobile/flags/bf.svg +0 -1
  801. package/src/components/mobile/flags/bg.svg +0 -1
  802. package/src/components/mobile/flags/bh.svg +0 -1
  803. package/src/components/mobile/flags/bi.svg +0 -26
  804. package/src/components/mobile/flags/bj.svg +0 -1
  805. package/src/components/mobile/flags/bl.svg +0 -1
  806. package/src/components/mobile/flags/bm.svg +0 -1
  807. package/src/components/mobile/flags/bn.svg +0 -58
  808. package/src/components/mobile/flags/bo.svg +0 -1
  809. package/src/components/mobile/flags/bq.svg +0 -1
  810. package/src/components/mobile/flags/br.svg +0 -1
  811. package/src/components/mobile/flags/bs.svg +0 -1
  812. package/src/components/mobile/flags/bt.svg +0 -466
  813. package/src/components/mobile/flags/bv.svg +0 -1
  814. package/src/components/mobile/flags/bw.svg +0 -1
  815. package/src/components/mobile/flags/by.svg +0 -1
  816. package/src/components/mobile/flags/bz.svg +0 -1
  817. package/src/components/mobile/flags/ca.svg +0 -1
  818. package/src/components/mobile/flags/cc.svg +0 -19
  819. package/src/components/mobile/flags/cd.svg +0 -1
  820. package/src/components/mobile/flags/cf.svg +0 -1
  821. package/src/components/mobile/flags/cg.svg +0 -5
  822. package/src/components/mobile/flags/ch.svg +0 -1
  823. package/src/components/mobile/flags/ci.svg +0 -1
  824. package/src/components/mobile/flags/ck.svg +0 -1
  825. package/src/components/mobile/flags/cl.svg +0 -14
  826. package/src/components/mobile/flags/cm.svg +0 -15
  827. package/src/components/mobile/flags/cn.svg +0 -1
  828. package/src/components/mobile/flags/co.svg +0 -5
  829. package/src/components/mobile/flags/cr.svg +0 -1
  830. package/src/components/mobile/flags/cu.svg +0 -6
  831. package/src/components/mobile/flags/cv.svg +0 -24
  832. package/src/components/mobile/flags/cw.svg +0 -16
  833. package/src/components/mobile/flags/cx.svg +0 -15
  834. package/src/components/mobile/flags/cy.svg +0 -1
  835. package/src/components/mobile/flags/cz.svg +0 -5
  836. package/src/components/mobile/flags/de.svg +0 -1
  837. package/src/components/mobile/flags/dj.svg +0 -1
  838. package/src/components/mobile/flags/dk.svg +0 -5
  839. package/src/components/mobile/flags/dm.svg +0 -1
  840. package/src/components/mobile/flags/do.svg +0 -1
  841. package/src/components/mobile/flags/dz.svg +0 -5
  842. package/src/components/mobile/flags/ec.svg +0 -519
  843. package/src/components/mobile/flags/ee.svg +0 -1
  844. package/src/components/mobile/flags/eg.svg +0 -78
  845. package/src/components/mobile/flags/eh.svg +0 -9
  846. package/src/components/mobile/flags/er.svg +0 -6
  847. package/src/components/mobile/flags/es.svg +0 -1
  848. package/src/components/mobile/flags/et.svg +0 -1
  849. package/src/components/mobile/flags/eu.svg +0 -1
  850. package/src/components/mobile/flags/fi.svg +0 -5
  851. package/src/components/mobile/flags/fj.svg +0 -1
  852. package/src/components/mobile/flags/fk.svg +0 -1
  853. package/src/components/mobile/flags/fm.svg +0 -16
  854. package/src/components/mobile/flags/fo.svg +0 -11
  855. package/src/components/mobile/flags/fr.svg +0 -1
  856. package/src/components/mobile/flags/ga.svg +0 -5
  857. package/src/components/mobile/flags/gb-eng.svg +0 -7
  858. package/src/components/mobile/flags/gb-nir.svg +0 -1
  859. package/src/components/mobile/flags/gb-sct.svg +0 -1
  860. package/src/components/mobile/flags/gb-wls.svg +0 -9
  861. package/src/components/mobile/flags/gb.svg +0 -1
  862. package/src/components/mobile/flags/gd.svg +0 -1
  863. package/src/components/mobile/flags/ge.svg +0 -1
  864. package/src/components/mobile/flags/gf.svg +0 -1
  865. package/src/components/mobile/flags/gg.svg +0 -8
  866. package/src/components/mobile/flags/gh.svg +0 -6
  867. package/src/components/mobile/flags/gi.svg +0 -54
  868. package/src/components/mobile/flags/gl.svg +0 -4
  869. package/src/components/mobile/flags/gm.svg +0 -7
  870. package/src/components/mobile/flags/gn.svg +0 -5
  871. package/src/components/mobile/flags/gp.svg +0 -1
  872. package/src/components/mobile/flags/gq.svg +0 -75
  873. package/src/components/mobile/flags/gr.svg +0 -1
  874. package/src/components/mobile/flags/gs.svg +0 -1
  875. package/src/components/mobile/flags/gt.svg +0 -214
  876. package/src/components/mobile/flags/gu.svg +0 -1
  877. package/src/components/mobile/flags/gw.svg +0 -13
  878. package/src/components/mobile/flags/gy.svg +0 -7
  879. package/src/components/mobile/flags/hk.svg +0 -1
  880. package/src/components/mobile/flags/hm.svg +0 -1
  881. package/src/components/mobile/flags/hn.svg +0 -1
  882. package/src/components/mobile/flags/hr.svg +0 -1
  883. package/src/components/mobile/flags/ht.svg +0 -1
  884. package/src/components/mobile/flags/hu.svg +0 -1
  885. package/src/components/mobile/flags/id.svg +0 -1
  886. package/src/components/mobile/flags/ie.svg +0 -1
  887. package/src/components/mobile/flags/il.svg +0 -1
  888. package/src/components/mobile/flags/im.svg +0 -1
  889. package/src/components/mobile/flags/in.svg +0 -1
  890. package/src/components/mobile/flags/io.svg +0 -1
  891. package/src/components/mobile/flags/iq.svg +0 -1
  892. package/src/components/mobile/flags/ir.svg +0 -31
  893. package/src/components/mobile/flags/is.svg +0 -1
  894. package/src/components/mobile/flags/it.svg +0 -1
  895. package/src/components/mobile/flags/je.svg +0 -1
  896. package/src/components/mobile/flags/jm.svg +0 -1
  897. package/src/components/mobile/flags/jo.svg +0 -7
  898. package/src/components/mobile/flags/jp.svg +0 -4
  899. package/src/components/mobile/flags/ke.svg +0 -23
  900. package/src/components/mobile/flags/kg.svg +0 -1
  901. package/src/components/mobile/flags/kh.svg +0 -116
  902. package/src/components/mobile/flags/ki.svg +0 -1
  903. package/src/components/mobile/flags/km.svg +0 -13
  904. package/src/components/mobile/flags/kn.svg +0 -1
  905. package/src/components/mobile/flags/kp.svg +0 -16
  906. package/src/components/mobile/flags/kr.svg +0 -1
  907. package/src/components/mobile/flags/kw.svg +0 -6
  908. package/src/components/mobile/flags/ky.svg +0 -1
  909. package/src/components/mobile/flags/kz.svg +0 -37
  910. package/src/components/mobile/flags/la.svg +0 -1
  911. package/src/components/mobile/flags/lb.svg +0 -5
  912. package/src/components/mobile/flags/lc.svg +0 -6
  913. package/src/components/mobile/flags/li.svg +0 -56
  914. package/src/components/mobile/flags/lk.svg +0 -1
  915. package/src/components/mobile/flags/lr.svg +0 -15
  916. package/src/components/mobile/flags/ls.svg +0 -23
  917. package/src/components/mobile/flags/lt.svg +0 -1
  918. package/src/components/mobile/flags/lu.svg +0 -1
  919. package/src/components/mobile/flags/lv.svg +0 -1
  920. package/src/components/mobile/flags/ly.svg +0 -8
  921. package/src/components/mobile/flags/ma.svg +0 -1
  922. package/src/components/mobile/flags/mc.svg +0 -1
  923. package/src/components/mobile/flags/md.svg +0 -1
  924. package/src/components/mobile/flags/me.svg +0 -93
  925. package/src/components/mobile/flags/mf.svg +0 -1
  926. package/src/components/mobile/flags/mg.svg +0 -1
  927. package/src/components/mobile/flags/mh.svg +0 -1
  928. package/src/components/mobile/flags/mk.svg +0 -1
  929. package/src/components/mobile/flags/ml.svg +0 -5
  930. package/src/components/mobile/flags/mm.svg +0 -12
  931. package/src/components/mobile/flags/mn.svg +0 -1
  932. package/src/components/mobile/flags/mo.svg +0 -10
  933. package/src/components/mobile/flags/mp.svg +0 -1
  934. package/src/components/mobile/flags/mq.svg +0 -1
  935. package/src/components/mobile/flags/mr.svg +0 -1
  936. package/src/components/mobile/flags/ms.svg +0 -1
  937. package/src/components/mobile/flags/mt.svg +0 -1
  938. package/src/components/mobile/flags/mu.svg +0 -1
  939. package/src/components/mobile/flags/mv.svg +0 -1
  940. package/src/components/mobile/flags/mw.svg +0 -24
  941. package/src/components/mobile/flags/mx.svg +0 -1
  942. package/src/components/mobile/flags/my.svg +0 -1
  943. package/src/components/mobile/flags/mz.svg +0 -13
  944. package/src/components/mobile/flags/na.svg +0 -1
  945. package/src/components/mobile/flags/nc.svg +0 -1
  946. package/src/components/mobile/flags/ne.svg +0 -6
  947. package/src/components/mobile/flags/nf.svg +0 -5
  948. package/src/components/mobile/flags/ng.svg +0 -4
  949. package/src/components/mobile/flags/ni.svg +0 -161
  950. package/src/components/mobile/flags/nl.svg +0 -1
  951. package/src/components/mobile/flags/no.svg +0 -1
  952. package/src/components/mobile/flags/np.svg +0 -33
  953. package/src/components/mobile/flags/nr.svg +0 -1
  954. package/src/components/mobile/flags/nu.svg +0 -1
  955. package/src/components/mobile/flags/nz.svg +0 -1
  956. package/src/components/mobile/flags/om.svg +0 -1
  957. package/src/components/mobile/flags/pa.svg +0 -1
  958. package/src/components/mobile/flags/pe.svg +0 -320
  959. package/src/components/mobile/flags/pf.svg +0 -1
  960. package/src/components/mobile/flags/pg.svg +0 -13
  961. package/src/components/mobile/flags/ph.svg +0 -1
  962. package/src/components/mobile/flags/pk.svg +0 -1
  963. package/src/components/mobile/flags/pl.svg +0 -1
  964. package/src/components/mobile/flags/pm.svg +0 -1
  965. package/src/components/mobile/flags/pn.svg +0 -1
  966. package/src/components/mobile/flags/pr.svg +0 -1
  967. package/src/components/mobile/flags/ps.svg +0 -1
  968. package/src/components/mobile/flags/pt.svg +0 -1
  969. package/src/components/mobile/flags/pw.svg +0 -1
  970. package/src/components/mobile/flags/py.svg +0 -1
  971. package/src/components/mobile/flags/qa.svg +0 -1
  972. package/src/components/mobile/flags/re.svg +0 -1
  973. package/src/components/mobile/flags/ro.svg +0 -1
  974. package/src/components/mobile/flags/rs.svg +0 -1
  975. package/src/components/mobile/flags/ru.svg +0 -1
  976. package/src/components/mobile/flags/rw.svg +0 -13
  977. package/src/components/mobile/flags/sa.svg +0 -1
  978. package/src/components/mobile/flags/sb.svg +0 -1
  979. package/src/components/mobile/flags/sc.svg +0 -7
  980. package/src/components/mobile/flags/sd.svg +0 -6
  981. package/src/components/mobile/flags/se.svg +0 -5
  982. package/src/components/mobile/flags/sg.svg +0 -11
  983. package/src/components/mobile/flags/sh.svg +0 -1
  984. package/src/components/mobile/flags/si.svg +0 -1
  985. package/src/components/mobile/flags/sj.svg +0 -1
  986. package/src/components/mobile/flags/sk.svg +0 -1
  987. package/src/components/mobile/flags/sl.svg +0 -1
  988. package/src/components/mobile/flags/sm.svg +0 -1
  989. package/src/components/mobile/flags/sn.svg +0 -1
  990. package/src/components/mobile/flags/so.svg +0 -1
  991. package/src/components/mobile/flags/sr.svg +0 -1
  992. package/src/components/mobile/flags/ss.svg +0 -1
  993. package/src/components/mobile/flags/st.svg +0 -1
  994. package/src/components/mobile/flags/sv.svg +0 -1
  995. package/src/components/mobile/flags/sx.svg +0 -1
  996. package/src/components/mobile/flags/sy.svg +0 -1
  997. package/src/components/mobile/flags/sz.svg +0 -1
  998. package/src/components/mobile/flags/tc.svg +0 -1
  999. package/src/components/mobile/flags/td.svg +0 -1
  1000. package/src/components/mobile/flags/tf.svg +0 -1
  1001. package/src/components/mobile/flags/tg.svg +0 -1
  1002. package/src/components/mobile/flags/th.svg +0 -1
  1003. package/src/components/mobile/flags/tj.svg +0 -1
  1004. package/src/components/mobile/flags/tk.svg +0 -1
  1005. package/src/components/mobile/flags/tl.svg +0 -1
  1006. package/src/components/mobile/flags/tm.svg +0 -1
  1007. package/src/components/mobile/flags/tn.svg +0 -9
  1008. package/src/components/mobile/flags/to.svg +0 -1
  1009. package/src/components/mobile/flags/tr.svg +0 -1
  1010. package/src/components/mobile/flags/tt.svg +0 -5
  1011. package/src/components/mobile/flags/tv.svg +0 -1
  1012. package/src/components/mobile/flags/tw.svg +0 -1
  1013. package/src/components/mobile/flags/tz.svg +0 -1
  1014. package/src/components/mobile/flags/ua.svg +0 -1
  1015. package/src/components/mobile/flags/ug.svg +0 -1
  1016. package/src/components/mobile/flags/um.svg +0 -1
  1017. package/src/components/mobile/flags/us.svg +0 -1
  1018. package/src/components/mobile/flags/uy.svg +0 -1
  1019. package/src/components/mobile/flags/uz.svg +0 -1
  1020. package/src/components/mobile/flags/va.svg +0 -1
  1021. package/src/components/mobile/flags/vc.svg +0 -1
  1022. package/src/components/mobile/flags/ve.svg +0 -1
  1023. package/src/components/mobile/flags/vg.svg +0 -1
  1024. package/src/components/mobile/flags/vi.svg +0 -1
  1025. package/src/components/mobile/flags/vn.svg +0 -1
  1026. package/src/components/mobile/flags/vu.svg +0 -1
  1027. package/src/components/mobile/flags/wf.svg +0 -1
  1028. package/src/components/mobile/flags/ws.svg +0 -1
  1029. package/src/components/mobile/flags/xk.svg +0 -1
  1030. package/src/components/mobile/flags/ye.svg +0 -1
  1031. package/src/components/mobile/flags/yt.svg +0 -1
  1032. package/src/components/mobile/flags/za.svg +0 -1
  1033. package/src/components/mobile/flags/zm.svg +0 -1
  1034. package/src/components/mobile/flags/zw.svg +0 -1
@@ -0,0 +1,895 @@
1
+ <svg viewBox="0 0 600 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <clipPath id="a">
3
+ <path d="m0 0v75h350v75h-50zm300 0h-150v200h-150v-50z"/>
4
+ </clipPath>
5
+ <clipPath id="b">
6
+ <path d="m0 0h300v150h-300z"/>
7
+ </clipPath>
8
+ <path d="m0 0h600v300h-600z" fill="#fff"/>
9
+ <path
10
+ d="m600 260.88c-6.723 4.045-12.499 13.498-30.36 13.498-35.711 0-44.641-19.902-71.427-19.902-17.856 0-26.785 19.902-44.641 19.902-35.715 0-44.643-19.902-71.429-19.902-17.857 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.428-19.902-17.858 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.429-19.902-17.858 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.428-19.902-17.858 0-23.215 14.182-33.929 14.182v25.621c10.714 0 16.071-14.181 33.929-14.181 26.785 0 35.714 19.901 71.428 19.901 17.857 0 26.785-19.901 44.643-19.901 26.785 0 35.715 19.901 71.429 19.901 17.857 0 26.785-19.901 44.643-19.901 26.785 0 35.714 19.901 71.428 19.901 17.857 0 26.786-19.901 44.643-19.901 26.786 0 35.714 19.901 71.429 19.901 17.856 0 26.785-19.901 44.641-19.901 26.786 0 35.716 19.901 71.427 19.901 17.861 0 23.637-5.64 30.36-9.684z"
11
+ fill="#012169"
12
+ id="c"
13
+ />
14
+ <use transform="translate(0 -49.753)" xlink:href="#c"/>
15
+ <use transform="translate(0 -99.507)" xlink:href="#c"/>
16
+ <use transform="translate(0 -149.26)" xlink:href="#c"/>
17
+ <use transform="translate(0 -199.01)" xlink:href="#c"/>
18
+ <use transform="translate(0 -248.77)" xlink:href="#c"/>
19
+ <path d="m0 0h290v152h-290z" fill="#fff" stroke-width=".98319"/>
20
+ <g clip-path="url(#b)">
21
+ <path d="m0 0h300v150h-300z" fill="#012169"/>
22
+ <path d="m0 0 300 150m0-150-300 150" stroke="#fff" stroke-width="30"/>
23
+ <path clip-path="url(#a)" d="m0 0 300 150m0-150-300 150" stroke="#c8102e" stroke-width="20"/>
24
+ <path d="m150 0v200m-150-125h350" stroke="#fff" stroke-width="50"/>
25
+ <path d="m150 0v200m-150-125h350" stroke="#c8102e" stroke-width="30"/>
26
+ </g>
27
+ <path d="m446.52 79.222-2.0691 204.16c-.27981 11.585 10.345 11.631 10.345 0l-2.0691-204.16z" fill="#a24300" stroke="#000" stroke-width=".75"/>
28
+ <g transform="matrix(.43857 0 0 .37683 122.2 25.058)">
29
+ <g transform="matrix(-.31451 .10485 -.13829 -.30324 1046.5 373.32)">
30
+ <g fill="none" id="d" stroke="#000">
31
+ <path
32
+ d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z"
33
+ fill="#006d00"
34
+ stroke="#000"
35
+ stroke-width="4.4527"
36
+ transform="translate(177.17 -224.05)"
37
+ />
38
+ <path d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)"/>
39
+ <path d="m425.2 868.11 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)"/>
40
+ <path d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)"/>
41
+ <path d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)"/>
42
+ <path d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)"/>
43
+ <path d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)"/>
44
+ <path d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)"/>
45
+ </g>
46
+ </g>
47
+ <use transform="matrix(.23652 -.28186 .29496 .22762 354.57 204.65)" xlink:href="#d"/>
48
+ <use transform="matrix(.15164 .33524 -.3329 .16731 907.54 -153.47)" xlink:href="#d"/>
49
+ <use transform="matrix(-.20952 .30246 -.3147 -.19945 1141.4 167.58)" xlink:href="#d"/>
50
+ <use transform="matrix(-.20772 -.25838 .23618 -.23515 689.99 567.28)" xlink:href="#d"/>
51
+ <g transform="matrix(-.36218 -.099472 -.20981 .31773 1222.4 -24.229)">
52
+ <g fill="none" id="e" stroke="#000">
53
+ <path
54
+ d="m460.63 549.21 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15z"
55
+ fill="#006d00"
56
+ stroke="#000"
57
+ stroke-width="3.3357"
58
+ transform="translate(283.46 -124.02)"
59
+ />
60
+ <path d="m467.21 584.65 28.855 124.02v336.62" transform="translate(283.46 -124.02)"/>
61
+ <path d="m436.23 885.83 59.833 88.582 60.682-88.582" transform="translate(283.46 -124.02)"/>
62
+ <path d="m434.53 814.96 61.53 88.582 60.682-88.582" transform="translate(283.46 -124.02)"/>
63
+ <path d="m435.38 744.1 60.682 88.582 59.833-88.582" transform="translate(283.46 -124.02)"/>
64
+ <path d="m432.84 690.94 63.228 70.866 53.149-70.866" transform="translate(283.46 -124.02)"/>
65
+ <path d="m425.2 637.8 70.866 70.865 45.406-70.865" transform="translate(283.46 -124.02)"/>
66
+ <path d="m436.12 593.24 53.15 86.886 35.327-95.478" transform="translate(283.46 -124.02)"/>
67
+ </g>
68
+ </g>
69
+ <use transform="matrix(.36088 .10411 .013211 .38052 452.76 -239.27)" xlink:href="#e"/>
70
+ <g fill="none" stroke="#000" transform="matrix(.046132 -.36474 .32602 .064796 386 315.21)">
71
+ <path
72
+ d="m354.33 531.5 88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.3 35.433-35.433-35.433 106.3 35.433-35.433-17.717 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.3 35.433 35.433-53.15-106.3 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433z"
73
+ fill="#006d00"
74
+ stroke="#000"
75
+ stroke-width="3.5227"
76
+ />
77
+ <path d="m378.96 560.02 63.952 95.497 17.716 53.15 8.859 45.205 8.858 78.811 9.315 70.866 8.401 141.74"/>
78
+ <path d="m425.2 903.54 63.665 70.866 50.749-88.583"/>
79
+ <path d="m417.08 814.96 70.579 88.583 50.75-88.583"/>
80
+ <path d="m407.48 752.44 70.867 80.235 45.948-88.583"/>
81
+ <path d="m372.05 637.8 88.583 70.866 25.831-70.866"/>
82
+ <path d="m360.62 602.36 82.296 53.149 10.515-53.149"/>
83
+ <path d="m389.76 690.94 81.095 70.866 33.946-70.866"/>
84
+ </g>
85
+ </g>
86
+ <path
87
+ color="#000000"
88
+ d="m451.75 194.52h28.445s1.8718-4.2495 2.0825-6.1319c.25312-2.2613.24523-2.9867-.2771-5.0698-.5411-2.1579-1.3267-3.6407-2.6787-5.0826-1.2751-1.3599-3.0713-2.2023-4.9109-2.6615-1.6408-.40957-3.4948-.5849-4.934-.26532-2.7338.60704-4.5099 1.5684-7.4818 2.5786-2.1438.72869-3.7824.97852-5.9501 1.111-1.3259.0811-2.8586-.27523-4.2952-.60528z"
89
+ fill="#fff"
90
+ opacity=".995"
91
+ />
92
+ <path
93
+ color="#000000"
94
+ d="m447.51 194.52h-28.446s-1.8714-4.2495-2.0821-6.1319c-.25312-2.2613-.24523-2.9867.2771-5.0698.54109-2.1579 1.3267-3.6407 2.6787-5.0826 1.2751-1.3599 3.0713-2.2023 4.9109-2.6615 1.6408-.40957 3.4948-.5849 4.934-.26532 2.7338.60704 4.5099 1.5684 7.4818 2.5786 2.1438.72869 3.7824.97852 5.9501 1.111 1.3259.0811 2.8583-.27523 4.295-.60528z"
95
+ fill="#fff"
96
+ opacity=".995"
97
+ />
98
+ <g transform="matrix(.44777 0 0 .48232 46.628 -169.53)">
99
+ <g transform="translate(-187.47 -.37816)">
100
+ <path
101
+ d="m1078.8 808.64c-9.0021.10633-18.004.28353-26.935.85059-6.5921.49618-14.106 1.0632-20.52 1.9847l-1.6303.28354c-4.0403.77971-4.6074 5.5997-2.4809 8.2224 4.3238 5.4225 29.948 9.64 60.215 9.64 30.231 0 55.856-4.2175 60.179-9.64 2.1265-2.6227 1.5594-7.4427-2.4809-8.2224l-1.6303-.28354c-6.3794-.92147-13.928-1.4885-20.52-1.9847-8.9312-.56706-17.933-.74426-26.935-.85059h-8.6122z"
102
+ fill="#fff"
103
+ />
104
+ <g>
105
+ <path d="m1093.5 813.82c-2.2328-.35442-4.2884-.81515-6.2376-1.3113-1.7012-.46073-3.2961-.95691-4.8555-1.4885.4608.74427 1.1341 1.4885 2.7644 2.0556-1.3113-.0354-3.0479.46073-3.6859.74427.638.24809 2.4455.74426 3.7568.70882-1.5948.56706-2.1973 1.3113-2.5518 2.0556 1.3823-.49618 2.8708-.95692 4.4302-1.3822 1.9847-.53162 4.0758-.99236 6.3794-1.3822z"/>
106
+ <path d="m1069.9 813.92c-2.2328-.28352-4.2884-.67337-6.2377-1.1341-1.7366-.38986-3.3669-.8506-4.8909-1.3468.4253.74426 1.1342 1.4531 2.7999 1.9847-1.3468 0-3.0479.56706-3.6504.8506.6379.24808 2.4454.67337 3.7567.6025-1.5594.6025-2.1619 1.3822-2.5163 2.1265 1.3822-.53161 2.8353-1.0632 4.3947-1.524 1.9847-.6025 4.0758-1.0987 6.344-1.5594z"/>
107
+ <path d="m1046.6 815.06c-2.2328-.14177-4.3593-.38985-6.344-.70883-1.7366-.28352-3.4024-.6025-4.9618-.99235.4962.70883 1.2405 1.3822 2.9416 1.7721-1.3113.10633-2.977.77971-3.5795 1.0987.6734.17721 2.4809.49618 3.7922.35442-1.524.70883-2.0556 1.524-2.3391 2.3037 1.3467-.63794 2.7644-1.2759 4.2884-1.8429 1.9138-.74427 3.9694-1.4177 6.2022-1.9847z"/>
108
+ <path d="m1117 814.28c-2.2328.31896-4.3239.67337-6.2731 1.1341-1.7367.38986-3.367.8506-4.8909 1.3822.4607-.74426 1.1341-1.4885 2.7998-1.9847-1.3113-.0354-3.0479-.56706-3.6504-.85059.6379-.24809 2.4454-.67339 3.7568-.63795-1.5595-.6025-2.162-1.3468-2.4809-2.1265 1.3822.56706 2.8353 1.0632 4.3947 1.5594 1.9493.56706 4.0403 1.0987 6.344 1.524z"/>
109
+ <path d="m1140.3 816.23c-2.2328.14177-4.3238.35442-6.3085.67339-1.7367.28353-3.4024.63794-4.9973 1.0278.5317-.70882 1.2759-1.3822 2.9771-1.7721-1.3468-.10632-3.0125-.77971-3.615-1.0987.6734-.21265 2.4809-.53162 3.8277-.35442-1.524-.70882-2.0911-1.524-2.3746-2.3037 1.3468.63795 2.7644 1.2404 4.2884 1.843 1.9138.70882 3.9694 1.3822 6.2022 1.9847z"/>
110
+ </g>
111
+ <path
112
+ d="m1087.5 818.92c-36.079 0-57.947 2.091-56.139 3.6859 12.653 5.2808 37.568 6.9819 56.139 7.0174 18.536-.0354 43.451-1.7366 56.104-7.0174 1.8075-1.5949-20.06-3.6859-56.104-3.6859z"
113
+ fill="#ccc"
114
+ />
115
+ <path
116
+ d="m1143.5 822.71c.319-.8506-1.0987-1.0987-2.5872-1.2759-5.777-.74427-12.192-1.2404-17.898-1.6658-8.9312-.56706-17.933-.74426-26.935-.85058h-17.26c-9.0021.10632-18.004.28352-26.935.85058-5.7061.4253-12.121.92148-17.898 1.6658-1.4885.1772-2.9062.42529-2.5872 1.2759"
117
+ fill="none"
118
+ stroke="#000"
119
+ stroke-width=".616"
120
+ />
121
+ <path
122
+ d="m1078.8 808.64c-9.0021.10633-18.004.28353-26.935.85059-6.5921.49618-14.106 1.0632-20.52 1.9847l-1.6303.28354c-4.0403.77971-4.6074 5.5997-2.4809 8.2224 4.3238 5.4225 29.948 9.64 60.215 9.64 30.231 0 55.856-4.2175 60.179-9.64 2.1265-2.6227 1.5594-7.4427-2.4809-8.2224l-1.6303-.28354c-6.3794-.92147-13.928-1.4885-20.52-1.9847-8.9312-.56706-17.933-.74426-26.935-.85059h-8.6122z"
123
+ fill="none"
124
+ stroke="#000"
125
+ stroke-width=".616"
126
+ />
127
+ </g>
128
+ <g transform="matrix(.5239 0 0 .5239 734.5 554.88)">
129
+ <g stroke-width="2.417" transform="matrix(.47385 0 0 .5 -169.17 117.35)">
130
+ <path
131
+ d="m1219.6 702.3 17.558-48.601 7.0916-20.121 17.575-10.352 17.8-38.344 8.3852-10.028 1.2943-35.329s-12.298-25.061-31.33-34.06c-27.225-12.874-64.179-11.103-64.179-11.103s-8.5364-21.396-24.193-29.722c-15.657-8.3261-33.042-10.333-51.289-10.333s-50.995 15.463-68.704 20.008c-9.2065 2.363-29.998 10.333-29.998 10.333s-20.792-7.9701-29.998-10.333c-17.709-4.5453-50.457-20.008-68.704-20.008-18.247 0-35.064 1.7049-51.289 10.333-15.089 8.0241-35.803 29.722-35.803 29.722s-23.717-3.051-40.379 6.4502c-20.783 11.851-35.428 36.778-35.428 36.778l1.4349 38.601 3.2727 14.755 13.43 14.63 17.507 29.548 12.543 29.142 13.425 38.035z"
132
+ fill="#c8102e"
133
+ fill-rule="evenodd"
134
+ />
135
+ <path
136
+ d="m1219.6 702.3 17.558-48.601 7.0916-20.121 17.575-10.352 17.8-38.344 8.3852-10.028 1.2943-35.329s-12.298-25.061-31.33-34.06c-27.225-12.874-64.179-11.103-64.179-11.103s-8.5364-21.396-24.193-29.722c-15.657-8.3261-33.042-10.333-51.289-10.333s-50.995 15.463-68.704 20.008c-9.2065 2.363-29.998 10.333-29.998 10.333s-20.792-7.9701-29.998-10.333c-17.709-4.5453-50.457-20.008-68.704-20.008-18.247 0-35.064 1.7049-51.289 10.333-15.089 8.0241-35.803 29.722-35.803 29.722s-23.717-3.051-40.379 6.4502c-20.783 11.851-35.428 36.778-35.428 36.778l1.4349 38.601 3.2727 14.755 13.43 14.63 17.507 29.548 12.543 29.142 13.425 38.035z"
137
+ fill="none"
138
+ stroke="#000"
139
+ stroke-width="2.417"
140
+ />
141
+ </g>
142
+ <g stroke-width="1.1765">
143
+ <g transform="translate(-139.77 75.518)">
144
+ <g transform="translate(-6.2835 10.459)">
145
+ <g transform="matrix(-1 0 0 1 923.9 0)">
146
+ <g stroke-width="1.1765">
147
+ <path
148
+ color="#000000"
149
+ d="m358.41 213.62c-9.0186 2.0007-18.587 5.9746-26.125 13.438-6.9868 6.9175-11.634 15.083-14.312 25-2.507 9.2816-2.5832 14.802-1.4688 24.045 1.434 11.893 8.75 23.83 8.75 23.83l12.611-2.25s-7.5991-16.016-8.4545-23.111c-1.0276-8.5228-.99559-11.257 1.125-19.108 2.1967-8.1331 5.3862-13.722 10.875-19.156 5.1768-5.1254 12.469-8.3005 19.938-10.031 6.6614-1.5437 14.188-2.2045 20.031-1 11.099 2.2879 18.309 5.9114 30.375 9.7188 8.7034 2.7464 15.356 3.688 24.156 4.1875 5.3829.30553 11.605-1.0373 17.438-2.2812s10.719-2.5312 10.719-2.5312l-3.2812-12.594s-4.6615 1.2344-10.156 2.4062-12.358 2.1227-13.969 2.0312c-8.297-.47093-13.168-1.1633-20.969-3.625-11.169-3.5243-19.074-7.4316-31.688-10.062-8.4994-1.7728-17.217-.76456-25.594 1.0938z"
150
+ fill="#fed100"
151
+ />
152
+ <path
153
+ color="#000000"
154
+ d="m358.41 213.62c-9.0186 2.0007-18.587 5.9746-26.125 13.438-6.9868 6.9175-11.634 15.083-14.312 25-2.507 9.2816-2.5832 14.802-1.4688 24.045 1.434 11.893 8.75 23.83 8.75 23.83l12.611-2.25s-7.5991-16.016-8.4545-23.111c-1.0276-8.5228-.99559-11.257 1.125-19.108 2.1967-8.1331 5.3862-13.722 10.875-19.156 5.1768-5.1254 12.469-8.3005 19.938-10.031 6.6614-1.5437 14.188-2.2045 20.031-1 11.099 2.2879 18.309 5.9114 30.375 9.7188 8.7034 2.7464 15.356 3.688 24.156 4.1875 5.3829.30553 11.605-1.0373 17.438-2.2812s10.719-2.5312 10.719-2.5312l-3.2812-12.594s-4.6615 1.2344-10.156 2.4062-12.358 2.1227-13.969 2.0312c-8.297-.47093-13.168-1.1633-20.969-3.625-11.169-3.5243-19.074-7.4316-31.688-10.062-8.4994-1.7728-17.217-.76456-25.594 1.0938z"
155
+ fill="none"
156
+ stroke="#000"
157
+ stroke-width="1.1765"
158
+ />
159
+ </g>
160
+ <g stroke-width=".88389">
161
+ <g transform="matrix(1.331 0 0 1.331 679.36 -1151.1)">
162
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
163
+ <path
164
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
165
+ fill="#fff"
166
+ stroke="#000"
167
+ stroke-width="1.7678"
168
+ transform="translate(0 -2.0633)"
169
+ />
170
+ </g>
171
+ </g>
172
+ <g transform="matrix(1.331 0 0 1.331 676 -1167.8)">
173
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
174
+ <path
175
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
176
+ fill="#fff"
177
+ stroke="#000"
178
+ stroke-width="1.7678"
179
+ transform="translate(0 -2.0633)"
180
+ />
181
+ </g>
182
+ </g>
183
+ <g transform="matrix(1.331 0 0 1.331 677.01 -1185.6)">
184
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
185
+ <path
186
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
187
+ fill="#fff"
188
+ stroke="#000"
189
+ stroke-width="1.7678"
190
+ transform="translate(0 -2.0633)"
191
+ />
192
+ </g>
193
+ </g>
194
+ <g transform="matrix(1.331 0 0 1.331 683.83 -1202.4)">
195
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
196
+ <path
197
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
198
+ fill="#fff"
199
+ stroke="#000"
200
+ stroke-width="1.7678"
201
+ transform="translate(0 -2.0633)"
202
+ />
203
+ </g>
204
+ </g>
205
+ <g transform="matrix(1.331 0 0 1.331 696.57 -1215.6)">
206
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
207
+ <path
208
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
209
+ fill="#fff"
210
+ stroke="#000"
211
+ stroke-width="1.7678"
212
+ transform="translate(0 -2.0633)"
213
+ />
214
+ </g>
215
+ </g>
216
+ <g transform="matrix(1.331 0 0 1.331 712.48 -1224.2)">
217
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
218
+ <path
219
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
220
+ fill="#fff"
221
+ stroke="#000"
222
+ stroke-width="1.7678"
223
+ transform="translate(0 -2.0633)"
224
+ />
225
+ </g>
226
+ </g>
227
+ <g transform="matrix(1.331 0 0 1.331 730.67 -1228.8)">
228
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
229
+ <path
230
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
231
+ fill="#fff"
232
+ stroke="#000"
233
+ stroke-width="1.7678"
234
+ transform="translate(0 -2.0633)"
235
+ />
236
+ </g>
237
+ </g>
238
+ <g transform="matrix(1.331 0 0 1.331 749.32 -1227.9)">
239
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
240
+ <path
241
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
242
+ fill="#fff"
243
+ stroke="#000"
244
+ stroke-width="1.7678"
245
+ transform="translate(0 -2.0633)"
246
+ />
247
+ </g>
248
+ </g>
249
+ <g transform="matrix(1.331 0 0 1.331 799.8 -1214.7)">
250
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
251
+ <path
252
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
253
+ fill="#fff"
254
+ stroke="#000"
255
+ stroke-width="1.7678"
256
+ transform="translate(0 -2.0633)"
257
+ />
258
+ </g>
259
+ </g>
260
+ <g transform="matrix(1.331 0 0 1.331 767.06 -1222.9)">
261
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
262
+ <path
263
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
264
+ fill="#fff"
265
+ stroke="#000"
266
+ stroke-width="1.7678"
267
+ transform="translate(0 -2.0633)"
268
+ />
269
+ </g>
270
+ </g>
271
+ <g transform="matrix(1.331 0 0 1.331 783.43 -1217.9)">
272
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
273
+ <path
274
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
275
+ fill="#fff"
276
+ stroke="#000"
277
+ stroke-width="1.7678"
278
+ transform="translate(0 -2.0633)"
279
+ />
280
+ </g>
281
+ </g>
282
+ </g>
283
+ </g>
284
+ <g stroke-width="1.1765">
285
+ <path
286
+ color="#000000"
287
+ d="m358.41 213.62c-9.0186 2.0007-18.587 5.9746-26.125 13.438-6.9868 6.9175-11.634 15.083-14.312 25-2.507 9.2816-2.5832 14.802-1.4688 24.045 1.434 11.893 8.75 23.83 8.75 23.83l12.611-2.25s-7.5991-16.016-8.4545-23.111c-1.0276-8.5228-.99559-11.257 1.125-19.108 2.1967-8.1331 5.3862-13.722 10.875-19.156 5.1768-5.1254 12.469-8.3005 19.938-10.031 6.6614-1.5437 14.188-2.2045 20.031-1 11.099 2.2879 18.309 5.9114 30.375 9.7188 8.7034 2.7464 15.356 3.688 24.156 4.1875 5.3829.30553 11.605-1.0373 17.438-2.2812s10.719-2.5312 10.719-2.5312l-3.2812-12.594s-4.6615 1.2344-10.156 2.4062-12.358 2.1227-13.969 2.0312c-8.297-.47093-13.168-1.1633-20.969-3.625-11.169-3.5243-19.074-7.4316-31.688-10.062-8.4994-1.7728-17.217-.76456-25.594 1.0938z"
288
+ fill="#fed100"
289
+ />
290
+ <path
291
+ color="#000000"
292
+ d="m358.41 213.62c-9.0186 2.0007-18.587 5.9746-26.125 13.438-6.9868 6.9175-11.634 15.083-14.312 25-2.507 9.2816-2.5832 14.802-1.4688 24.045 1.434 11.893 8.75 23.83 8.75 23.83l12.611-2.25s-7.5991-16.016-8.4545-23.111c-1.0276-8.5228-.99559-11.257 1.125-19.108 2.1967-8.1331 5.3862-13.722 10.875-19.156 5.1768-5.1254 12.469-8.3005 19.938-10.031 6.6614-1.5437 14.188-2.2045 20.031-1 11.099 2.2879 18.309 5.9114 30.375 9.7188 8.7034 2.7464 15.356 3.688 24.156 4.1875 5.3829.30553 11.605-1.0373 17.438-2.2812s10.719-2.5312 10.719-2.5312l-3.2812-12.594s-4.6615 1.2344-10.156 2.4062-12.358 2.1227-13.969 2.0312c-8.297-.47093-13.168-1.1633-20.969-3.625-11.169-3.5243-19.074-7.4316-31.688-10.062-8.4994-1.7728-17.217-.76456-25.594 1.0938z"
293
+ fill="none"
294
+ stroke="#000"
295
+ stroke-width="1.1765"
296
+ />
297
+ </g>
298
+ <g stroke-width=".88389">
299
+ <g transform="matrix(1.331 0 0 1.331 679.36 -1151.1)">
300
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
301
+ <path
302
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
303
+ fill="#fff"
304
+ stroke="#000"
305
+ stroke-width="1.7678"
306
+ transform="translate(0 -2.0633)"
307
+ />
308
+ </g>
309
+ </g>
310
+ <g transform="matrix(1.331 0 0 1.331 676 -1167.8)">
311
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
312
+ <path
313
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
314
+ fill="#fff"
315
+ stroke="#000"
316
+ stroke-width="1.7678"
317
+ transform="translate(0 -2.0633)"
318
+ />
319
+ </g>
320
+ </g>
321
+ <g transform="matrix(1.331 0 0 1.331 677.01 -1185.6)">
322
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
323
+ <path
324
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
325
+ fill="#fff"
326
+ stroke="#000"
327
+ stroke-width="1.7678"
328
+ transform="translate(0 -2.0633)"
329
+ />
330
+ </g>
331
+ </g>
332
+ <g transform="matrix(1.331 0 0 1.331 683.83 -1202.4)">
333
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
334
+ <path
335
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
336
+ fill="#fff"
337
+ stroke="#000"
338
+ stroke-width="1.7678"
339
+ transform="translate(0 -2.0633)"
340
+ />
341
+ </g>
342
+ </g>
343
+ <g transform="matrix(1.331 0 0 1.331 696.57 -1215.6)">
344
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
345
+ <path
346
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
347
+ fill="#fff"
348
+ stroke="#000"
349
+ stroke-width="1.7678"
350
+ transform="translate(0 -2.0633)"
351
+ />
352
+ </g>
353
+ </g>
354
+ <g transform="matrix(1.331 0 0 1.331 712.48 -1224.2)">
355
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
356
+ <path
357
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
358
+ fill="#fff"
359
+ stroke="#000"
360
+ stroke-width="1.7678"
361
+ transform="translate(0 -2.0633)"
362
+ />
363
+ </g>
364
+ </g>
365
+ <g transform="matrix(1.331 0 0 1.331 730.67 -1228.8)">
366
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
367
+ <path
368
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
369
+ fill="#fff"
370
+ stroke="#000"
371
+ stroke-width="1.7678"
372
+ transform="translate(0 -2.0633)"
373
+ />
374
+ </g>
375
+ </g>
376
+ <g transform="matrix(1.331 0 0 1.331 749.32 -1227.9)">
377
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
378
+ <path
379
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
380
+ fill="#fff"
381
+ stroke="#000"
382
+ stroke-width="1.7678"
383
+ transform="translate(0 -2.0633)"
384
+ />
385
+ </g>
386
+ </g>
387
+ <g transform="matrix(1.331 0 0 1.331 799.8 -1214.7)">
388
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
389
+ <path
390
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
391
+ fill="#fff"
392
+ stroke="#000"
393
+ stroke-width="1.7678"
394
+ transform="translate(0 -2.0633)"
395
+ />
396
+ </g>
397
+ </g>
398
+ <g transform="matrix(1.331 0 0 1.331 767.06 -1222.9)">
399
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
400
+ <path
401
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
402
+ fill="#fff"
403
+ stroke="#000"
404
+ stroke-width="1.7678"
405
+ transform="translate(0 -2.0633)"
406
+ />
407
+ </g>
408
+ </g>
409
+ <g transform="matrix(1.331 0 0 1.331 783.43 -1217.9)">
410
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
411
+ <path
412
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
413
+ fill="#fff"
414
+ stroke="#000"
415
+ stroke-width="1.7678"
416
+ transform="translate(0 -2.0633)"
417
+ />
418
+ </g>
419
+ </g>
420
+ </g>
421
+ </g>
422
+ <g transform="translate(-3.4e-6)">
423
+ <g transform="matrix(1.21 0 0 1.21 213.62 155.72)">
424
+ <g stroke-width=".97228">
425
+ <path
426
+ d="m185.96 37.047c1.5672-1.9839 3.4392-3.4577 4.9565-5.4749 1.5941-2.1194 2.8103-4.7978 3.4354-7.503-2.771.69088-5.4494 1.9071-7.5688 3.5011-2.0172 1.5172-3.491 3.3892-5.4749 4.9565v-25.411c1.9839 1.5672 3.4577 3.4392 5.4749 4.9565 2.1194 1.5941 4.7978 2.8103 7.5688 3.5011-.62508-2.7052-1.8413-5.3836-3.4354-7.503-1.5172-2.0173-3.3892-3.491-4.9565-5.4749l28.152 9e-7c-1.5672 1.9839-3.4392 3.4577-4.9565 5.4749-1.5941 2.1194-2.8103 4.7978-3.4354 7.503 2.771-.69088 5.4494-1.9071 7.5688-3.5011 2.0172-1.5172 3.491-3.3892 5.4749-4.9565v25.411c-1.9839-1.5672-3.4577-3.4392-5.4749-4.9565-2.1194-1.5941-4.7978-2.8103-7.5688-3.5011.62508 2.7052 1.8413 5.3836 3.4354 7.503 1.5172 2.0173 3.3892 3.491 4.9565 5.4749z"
427
+ fill="#fed100"
428
+ stroke="#000"
429
+ stroke-width=".97228"
430
+ />
431
+ </g>
432
+ <g stroke-width=".73049" transform="matrix(1.331 0 0 1.331 562.93 -1417.2)">
433
+ <g stroke-width="1.461" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
434
+ <path
435
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
436
+ fill="#fff"
437
+ stroke="#000"
438
+ stroke-width="1.461"
439
+ transform="translate(0 -2.0633)"
440
+ />
441
+ </g>
442
+ </g>
443
+ </g>
444
+ <g transform="matrix(.94311 0 0 .94311 266.87 172.35)">
445
+ <g stroke-width=".67487" transform="matrix(1.8635 0 0 1.8334 97.192 -1597.7)">
446
+ <path
447
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
448
+ fill="#fed100"
449
+ transform="matrix(1.04 0 0 1.04 -2741.9 82.476)"
450
+ />
451
+ <path
452
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
453
+ fill="none"
454
+ stroke="#000"
455
+ stroke-width=".64894"
456
+ transform="matrix(1.04 0 0 1.04 -2741.9 82.476)"
457
+ />
458
+ </g>
459
+ <g stroke-width="1.2474">
460
+ <path d="m195.84 28.438v17.062h-17.062v8.6875h42.812v-8.6875h-17.094v-17.062z" fill="#fed100"/>
461
+ <path d="m195.84 28.437v17.062h-17.062v8.6875h42.812v-8.6875h-17.094v-17.062z" fill="none" stroke="#000" stroke-width="1.2474"/>
462
+ </g>
463
+ </g>
464
+ <g transform="translate(299.98 6.6836)">
465
+ <g stroke-width="1.1765" transform="translate(-39.304 193.4)">
466
+ <g>
467
+ <rect fill="#fed100" fill-rule="evenodd" height="71.72" ry="6.386" width="25.322" x="182.33" y="34.934"/>
468
+ <rect fill="none" height="71.72" ry="6.386" stroke="#000" stroke-width="1.1765" width="25.322" x="182.33" y="34.934"/>
469
+ </g>
470
+ <g transform="translate(-303.37 -281.42)">
471
+ <g stroke-width="1.1536">
472
+ <g transform="matrix(1.147 0 0 .90673 226.84 -537.15)">
473
+ <rect fill="#fed100" fill-rule="evenodd" height="79.256" ry="3.7999" width="7.0406" x="221.33" y="941.22"/>
474
+ <path
475
+ d="m224.85 941.22c1.9502 0 3.5203 1.6948 3.5203 3.7999v71.656c0 2.1051-1.57 3.7999-3.5203 3.7999s-3.5203-1.6948-3.5203-3.7999v-71.656c0-2.1052 1.57-3.7999 3.5203-3.7999z"
476
+ fill="none"
477
+ stroke="#000"
478
+ stroke-width="1.1536"
479
+ />
480
+ </g>
481
+ <g transform="matrix(1.147 0 0 .90673 232.09 -537.15)">
482
+ <rect fill="#fed100" fill-rule="evenodd" height="79.256" ry="3.7999" width="7.0406" x="240.49" y="941.22"/>
483
+ <rect fill="none" height="79.256" ry="3.7999" stroke="#000" stroke-width="1.1536" width="7.0406" x="240.49" y="941.22"/>
484
+ </g>
485
+ </g>
486
+ </g>
487
+ </g>
488
+ <g stroke-width=".88389" transform="translate(-25.575 194.49)">
489
+ <g transform="matrix(1.331 0 0 1.331 544.15 -1401.7)">
490
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
491
+ <path
492
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
493
+ fill="#fff"
494
+ stroke="#000"
495
+ stroke-width="1.7678"
496
+ transform="translate(0 -2.0633)"
497
+ />
498
+ </g>
499
+ </g>
500
+ <g transform="matrix(1.331 0 0 1.331 544.15 -1387.6)">
501
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
502
+ <path
503
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
504
+ fill="#fff"
505
+ stroke="#000"
506
+ stroke-width="1.7678"
507
+ transform="translate(0 -2.0633)"
508
+ />
509
+ </g>
510
+ </g>
511
+ <g transform="matrix(1.331 0 0 1.331 544.15 -1373.5)">
512
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
513
+ <path
514
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
515
+ fill="#fff"
516
+ stroke="#000"
517
+ stroke-width="1.7678"
518
+ transform="translate(0 -2.0633)"
519
+ />
520
+ </g>
521
+ </g>
522
+ <g transform="matrix(1.331 0 0 1.331 544.15 -1359.3)">
523
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
524
+ <path
525
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
526
+ fill="#fff"
527
+ stroke="#000"
528
+ stroke-width="1.7678"
529
+ transform="translate(0 -2.0633)"
530
+ />
531
+ </g>
532
+ </g>
533
+ <g transform="matrix(1.331 0 0 1.331 544.15 -1345.2)">
534
+ <g stroke-width="1.7678" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
535
+ <path
536
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
537
+ fill="#fff"
538
+ stroke="#000"
539
+ stroke-width="1.7678"
540
+ transform="translate(0 -2.0633)"
541
+ />
542
+ </g>
543
+ </g>
544
+ </g>
545
+ </g>
546
+ </g>
547
+ </g>
548
+ <g transform="translate(120.94 241.14)">
549
+ <g stroke-width="1.1765" transform="translate(467.6 -914.69)">
550
+ <g transform="translate(-5e-6)">
551
+ <path
552
+ d="m-147.29 1086.9c-6.7196 15.023-12.101 29.69-17.375 44.782h-216.62c-5.0982-14.589-10.297-30.282-16.708-44.782 0 0 13.482 18.865 23.578 23.427 5.6081 2.5339 12.623 3.2894 18.421 1.228 7.6415-2.7166 17.807-16.579 17.807-16.579s9.1411 10.698 15.351 13.509c5.8285 2.6378 12.644 2.745 19.035 2.4561 5.6554-.2556 11.92-.4688 16.579-3.6842 7.0552-4.8687 14.123-21.491 14.123-21.491s6.8378 13.078 12.281 17.807c4.4913 3.9023 10.131 6.8156 15.965 7.9824 5.8342 1.1668 12.21.7899 17.807-1.228 7.5879-2.7357 19.649-14.123 19.649-14.123s8.3017 10.296 14.123 12.895c5.6351 2.5153 12.414 3.2557 18.421 1.8421 6.3568-1.496 11.698-6.1001 16.579-10.439 4.3566-3.8723 10.988-13.602 10.988-13.602z"
553
+ fill="#fed100"
554
+ />
555
+ <path
556
+ d="m-147.29 1086.9c-6.7196 15.023-12.101 29.69-17.375 44.782h-216.62c-5.0982-14.589-10.297-30.282-16.708-44.782 0 0 13.482 18.865 23.578 23.427 5.6081 2.5339 12.623 3.2894 18.421 1.228 7.6415-2.7166 17.807-16.579 17.807-16.579s9.1411 10.698 15.351 13.509c5.8285 2.6378 12.644 2.745 19.035 2.4561 5.6554-.2556 11.92-.4688 16.579-3.6842 7.0552-4.8687 14.123-21.491 14.123-21.491s6.8378 13.078 12.281 17.807c4.4913 3.9023 10.131 6.8156 15.965 7.9824 5.8342 1.1668 12.21.7899 17.807-1.228 7.5879-2.7357 19.649-14.123 19.649-14.123s8.3017 10.296 14.123 12.895c5.6351 2.5153 12.414 3.2557 18.421 1.8421 6.3568-1.496 11.698-6.1001 16.579-10.439 4.3566-3.8723 10.988-13.602 10.988-13.602z"
557
+ fill="none"
558
+ stroke="#000"
559
+ />
560
+ </g>
561
+ <g fill="#fed100">
562
+ <path
563
+ d="m-272.65 1095.5s-4.9394 7.6033-7.9767 10.201c-4.2181 3.6078-6.9924 5.7811-12.411 7.4891-5.4087 1.7051-12.953 2.664-18.616 2.3538-5.4768-.3001-11.112-1.888-16.048-4.2795-4.2906-2.0787-11.127-8.1311-11.127-8.1311-3.3232 4.3118-7.5549 7.3405-11.583 9.5786-5.1507 2.8622-10.24 3.1201-15.586 2.832-10.867-.5858-21.005-7.3742-29.137-21.138-5.2727-12.47-11.338-25.099-18.912-38.342 8.7295-3.0896 18.903-4.7355 30.187-5.2706-4.5894 12.931-9.3504 25.528-7.6664 35.936 9.4806-7.1005 12.547-16.767 15.812-26.354l11.021 38.812c-6.6889-1.1728-3.1317-2.555-20.698-5.8849 3.5198 6.6368 11.578 14.832 20.462 15.639 5.9737.5425 10.31-1.3029 14.107-4.5963 2.7277-2.3659 5.2149-5.4949 5.1822-9.0197-.0187-2.0187-.0375-4.0374-.0562-6.0561-.012-1.2969-1.6125-3.1325-2.9094-3.1507-1.2358-.017-1.5777 1.9883-1.9076 3.1793-.66009 2.3832.66538 5.0369 0 7.4186-.73358 2.6258-2.1408 4.6993-4.4511 6.1467-1.9243 1.2057-6.5707 1.4838-6.5707 1.4838l1.4837-5.7229c1.0467-4.0374-2.8724-7.1709-3.8152-11.234-.60694-2.6153-.94144-5.5401 0-8.0544 1.0185-2.7201 3.0793-5.3675 5.7229-6.5707.96458-.439 2.1222-.499 3.1794-.4239 1.495.1062 4.4511 1.0598 4.4511 1.0598s-.84834-4.0909-.63587-6.5707c.25766-3.0073 2.805-8.578 4.2392-11.234 2.3814-4.41 6.1684-8.3832 6.6002-8.8102.41467.4172 4.5196 4.2377 7.2021 8.4713 1.6155 2.5496 3.2724 6.2339 3.7387 9.216.38449 2.459.24673 7.6588.24673 7.6588s4.3663-1.7928 5.8503-2.0028c1.0493-.1485 2.2084-.1692 3.2012.2017 2.7209 1.0164 4.9609 3.514 6.1662 6.1566 1.1141 2.4428.98388 5.3837.56036 8.0349-.65795 4.1187-3.0778 7.3053-1.7527 11.26l1.8782 5.6058s-4.6545.046-6.658-1.023c-2.4054-1.2833-3.9535-3.2539-4.868-5.8222-.82946-2.3296-.34811-5.1826-1.7879-7.1886-.63699-.8876-1.5285-1.8705-2.7601-1.7672-1.2925.1083-2.1999 2.2199-2.2542 3.5158l-.22864 5.4514c-.0702 1.6747.69287 3.4155 1.5896 4.7706 2.1974 3.3204 5.4675 5.3345 9.1576 6.8299 3.9967 1.6197 7.6011 2.2423 11.913 2.2927 3.5974.042 9.8497-.5472 13.258-1.6988 4.1991-1.4186 6.669-3.2207 9.9175-6.236 1.831-1.6996 3.0546-4.1683 3.8604-6.533.92812-2.7236.59391-7.4239.59391-7.4239-4.1784 1.5837-7.8112 3.7129-11.086 6.2006-3.7006 2.8115-6.9433 6.0809-9.9982 9.538l-.29696-46.919c4.3526 4.8016 7.5174 9.1023 11.87 12.718 3.6652 3.0451 5.5486 4.2065 9.2138 5.3958-1.047-3.7744-1.4007-6.064-4.1031-9.8384-3.7469-5.2332-7.3959-10.852-11.932-16.086 8.3534-1.3911 16.702-1.7662 25.167-1.7662 8.4647 0 16.813.3751 25.167 1.7662-4.5366 5.2332-8.1856 10.852-11.932 16.086-2.7024 3.7744-3.0561 6.064-4.1031 9.8384 3.6652-1.1893 5.5486-2.3507 9.2138-5.3958 4.3526-3.6162 7.5174-7.9169 11.87-12.718l-.29696 46.919c-3.0549-3.4571-6.2976-6.7265-9.9982-9.538-3.2744-2.4877-6.9073-4.6169-11.086-6.2006 0 0-.33421 4.7003.59391 7.4239.80584 2.3647 2.0294 4.8334 3.8604 6.533 3.2485 3.0153 5.7184 4.8174 9.9175 6.236 3.4084 1.1516 9.6607 1.7408 13.258 1.6988 4.3121-.05 7.9165-.673 11.913-2.2927 3.6901-1.4954 6.9603-3.5095 9.1576-6.8299.89676-1.3551 1.6598-3.0959 1.5896-4.7706l-.22864-5.4514c-.0543-1.2959-.96175-3.4075-2.2542-3.5158-1.2316-.1033-2.1231.8796-2.7601 1.7672-1.4398 2.006-.95841 4.859-1.7879 7.1886-.91448 2.5683-2.4626 4.5389-4.868 5.8222-2.0035 1.0689-6.658 1.023-6.658 1.023l1.8782-5.6058c1.3251-3.9548-1.0948-7.1414-1.7527-11.26-.42352-2.6512-.55373-5.5921.56036-8.0349 1.2052-2.6426 3.4453-5.1402 6.1662-6.1566.99278-.3709 2.1518-.3502 3.2012-.2017 1.484.21 5.8503 2.0028 5.8503 2.0028s-.13776-5.1998.24673-7.6588c.46625-2.9821 2.1232-6.6664 3.7387-9.216 2.6825-4.2336 6.7874-8.0541 7.2021-8.4713.43186.427 4.2188 4.4002 6.6002 8.8102 1.4342 2.6558 3.9815 8.2265 4.2392 11.234.21247 2.4798-.63587 6.5707-.63587 6.5707s2.9561-.9536 4.4511-1.0598c1.0571-.075 2.2148-.015 3.1794.4239 2.6436 1.2032 4.7044 3.8506 5.7229 6.5707.94144 2.5143.60694 5.4391 0 8.0544-.9429 4.0629-4.862 7.1964-3.8152 11.234l1.4837 5.7229s-4.6464-.2781-6.5707-1.4838c-2.3103-1.4474-3.7176-3.5209-4.4511-6.1467-.66538-2.3817.66009-5.0354 0-7.4186-.32991-1.191-.67182-3.1966-1.9076-3.1793-1.2969.018-2.8974 1.8538-2.9094 3.1507-.0187 2.0187-.0375 4.0374-.0562 6.0561-.0327 3.5248 2.4546 6.6538 5.1822 9.0197 3.7971 3.2934 8.1332 5.1388 14.107 4.5963 8.8838-.8067 16.942-9.0022 20.462-15.639-17.566 3.3299-14.009 4.7121-20.698 5.8849l11.021-38.812c3.2649 9.5868 6.3314 19.253 15.812 26.354 1.684-10.409-3.0771-23.006-7.6664-35.936 11.284.5351 21.457 2.181 30.187 5.2706-7.574 13.242-13.639 25.871-18.912 38.342-8.132 13.764-18.27 20.552-29.137 21.138-5.3463.2881-10.435.03-15.586-2.832-4.0277-2.2381-8.2594-5.2668-11.583-9.5786 0 0-6.8361 6.0524-11.127 8.1311-4.9362 2.3915-10.571 3.9794-16.048 4.2795-5.6626.3102-13.207-.6487-18.616-2.3538-5.4181-1.708-8.1925-3.8813-12.411-7.4891-3.0373-2.5978-7.9768-10.201-7.9768-10.201z"
564
+ />
565
+ <path d="m-365.99 1115.5c-10.867-.5858-21.005-7.3742-29.137-21.138-5.2727-12.47-11.338-25.099-18.912-38.342 8.7295-3.0896 18.903-4.7355 30.187-5.2706-4.5894 12.931-9.3504 25.528-7.6664 35.936 9.4806-7.1005 12.547-16.767 15.812-26.354l11.021 38.812c-6.6889-1.1728-3.1317-2.555-20.698-5.8849 3.5198 6.6368 11.578 14.832 20.462 15.639zm185.62-6.6014c8.8838-.8067 16.942-9.0022 20.462-15.639-17.566 3.3299-14.009 4.7121-20.698 5.8849l11.021-38.812c3.2649 9.5868 6.3314 19.253 15.812 26.354 1.684-10.409-3.0771-23.006-7.6664-35.936 11.284.5351 21.457 2.181 30.187 5.2706-7.574 13.242-13.639 25.871-18.912 38.342-8.132 13.764-18.27 20.552-29.137 21.138l-.20811.3835z"/>
566
+ <path
567
+ d="m-311.65 1115.5c-5.4768-.3001-11.112-1.888-16.048-4.2795-4.2906-2.0787-11.127-8.1311-11.127-8.1311-3.3232 4.3118-7.5549 7.3405-11.583 9.5786-5.1507 2.8622-10.24 3.1201-15.586 2.832l-.18752 1.8729 1.2556-8.4743c5.9737.5425 10.31-1.3029 14.107-4.5963 2.7277-2.3659 5.2149-5.4949 5.1822-9.0197-.0187-2.0187-.0375-4.0374-.0562-6.0561-.012-1.2969-1.6125-3.1325-2.9094-3.1507-1.2358-.017-1.5777 1.9883-1.9076 3.1793-.66009 2.3832.66538 5.0369 0 7.4186-.73358 2.6258-2.1408 4.6993-4.4511 6.1467-1.9243 1.2057-6.5707 1.4838-6.5707 1.4838l1.4837-5.7229c1.0467-4.0374-2.8724-7.1709-3.8152-11.234-.60694-2.6153-.94144-5.5401 0-8.0544 1.0185-2.7201 3.0793-5.3675 5.7229-6.5707.96458-.439 2.1222-.499 3.1794-.4239 1.495.1062 4.4511 1.0598 4.4511 1.0598s-.84834-4.0909-.63587-6.5707c.25766-3.0073 2.805-8.578 4.2392-11.234 2.3814-4.41 6.1684-8.3832 6.6002-8.8102.41467.4172 4.5196 4.2377 7.2021 8.4713 1.6155 2.5496 3.2724 6.2339 3.7387 9.216.38449 2.459.24673 7.6588.24673 7.6588s4.3663-1.7928 5.8503-2.0028c1.0493-.1485 2.2084-.1692 3.2012.2017 2.7209 1.0164 4.9609 3.514 6.1662 6.1566 1.1141 2.4428.98388 5.3837.56036 8.0349-.65795 4.1187-3.0778 7.3053-1.7527 11.26l1.8782 5.6058s-4.6545.046-6.658-1.023c-2.4054-1.2833-3.9535-3.2539-4.868-5.8222-.82946-2.3296-.34811-5.1826-1.7879-7.1886-.63699-.8876-1.5285-1.8705-2.7601-1.7672-1.2925.1083-2.1999 2.2199-2.2542 3.5158l-.22864 5.4514c-.0702 1.6747.69287 3.4155 1.5896 4.7706 2.1974 3.3204 5.4675 5.3345 9.1576 6.8299 3.9967 1.6197 7.6011 2.2423 11.913 2.2927z"
568
+ />
569
+ </g>
570
+ <path
571
+ color="#000000"
572
+ d="m-203.85 1095.1-.12597-.2106c-.15092-2.5694.71875-6.9687.71875-6.9687.48416-2.19 2.3616-4.533 4.6875-5.375 1.2538-.4542 2.7761-.6286 4.125.031.82261.4023 1.4858.7143 2.0312 1.2812.54546.567.88412 1.3124 1.25 2.375.53493 1.5537.30202 3.1738.0312 4.5626-.44672 2.2906-.39733 4.2935.25 5.8437.45703 1.0945 1.3768 1.9155 2.5625 2.625-.22033-.7834-.37923-1.1628-.5-2.0313-.17901-1.2874.0385-2.6168.53125-3.7812.85831-2.0281 2.0429-3.6268 2.8438-5.4062.76379-1.6972 1.1633-3.6202 1.0312-5.4376-.10893-1.4991-.55191-3.0476-1.4062-4.125-.92643-1.1682-2.3398-2.1368-3.75-2.4062-1.2546-.2397-3.3154.1873-4.9688.7188-1.6534.5314-2.9062 1.125-2.9062 1.125l-1.4688.6874.25-1.5937c.85923-5.3602 1.6184-8.0814 0-13.094-.66543-2.0609-1.7767-4.334-3.6562-6.9688-.91278-1.2796-1.932-2.8073-3.0938-4.2188-3.028 3.4471-5.1387 6.9398-6.3438 10.469-1.3192 3.8634-1.3714 8.9997-1.0625 13.125l.125 1.6562-1.4062-.8437s-1.5988-.9804-3.5312-1.9063c-1.9325-.9258-4.2874-1.7432-5.2812-1.6562-1.8738.1642-3.1245 1.0598-4.3438 2.625-1.0348 1.3285-1.2578 2.4801-1.4688 4.3125-.13326 1.1576.15826 3.3345.34375 4.75.21737 1.6588 1.194 3.4032 1.4688 5.5.0908.6926.30568 1.237.46875 1.9063.16307.6692.24456 1.4547.0625 2.375-.12584.6361-.31363 1.0959-.5625 1.875.4794-.2326.80884-.349 1.0625-.5313.92721-.6662 1.3036-1.8481 1.9062-3.2813.32438-.7714.3958-1.4641.4375-2.2812s.082-1.7776.5-2.8438c.71403-1.8212 1.5543-3.9841 3.4062-5.3124 1.516-1.0874 3.5384-1.3901 5.3125-.8438 1.0511.3237 1.8031.9723 2.3438 1.7188.54068.7464.9035 1.5624 1.2812 2.375.48369 1.0404.77286 2.5972 1 3.9687s.34375 2.5313.34375 2.5313l.0312.125-.0312.1562-1.2912 4.2919-1.6462-.371 1.25-4.1044c-.009-.08-.13324-1.0727-.34375-2.3437-.21876-1.3209-.54916-2.8976-.84375-3.5313-.38681-.832-.73471-1.5549-1.125-2.0937-.39029-.5389-.78661-.8838-1.4688-1.0938-1.2234-.3767-2.8111-.1469-3.8438.5938-1.3109.9402-2.1058 2.7599-2.8125 4.5624-.3069.7828-.3329 1.4876-.375 2.3126-.0421.8249-.0859 1.7845-.53125 2.8437-.55178 1.3122-1.0086 2.9284-2.5 4-1.099.7897-3.0938 1.5625-3.0938 1.5625l-1.75.7188.625-1.7813s.88084-2.613 1.0625-3.5313c.12572-.6355.0743-1.0946-.0625-1.6562-.13684-.5616-.3847-1.2139-.5-2.0938-.21737-1.6587-1.194-3.4031-1.4688-5.5-.17909-1.3665-.53139-3.5264-.34375-5.1562.21885-1.901.53791-3.5512 1.8125-5.1875 1.3961-1.7922 3.1655-3.0426 5.5312-3.25 1.8698-.1639 4.1696.8457 6.1875 1.8125 1.2979.6219 1.6923.9079 2.3438 1.2812-.21156-3.9597-.14729-8.5263 1.1562-12.344 1.382-4.0471 3.7495-8.0364 7.3438-11.906l.625-.6562.625.6562c1.6705 1.7979 2.812 3.7724 3.8438 5.2188 1.9668 2.757 3.1845 5.2023 3.9062 7.4375 1.5461 4.7882.97906 8.0566.25 12.469.56903-.2397.76782-.3717 1.75-.6874 1.7674-.5682 3.922-1.1053 5.7812-.75 1.9006.3631 3.6133 1.5272 4.7812 3 1.1593 1.4618 1.6553 3.3294 1.7812 5.0624.15624 2.1503-.31869 4.3508-1.1875 6.2813-.8989 1.9973-2.0879 3.5889-2.8438 5.375-.3806.8994-.56713 1.9427-.4375 2.875.19405 1.3955.9375 3.6563.9375 3.6563l.53125 1.5937-1.625-.5313c-2.5939-.8801-4.292-2.4739-5.125-4.4687s-.82906-4.3239-.34375-6.8125c.25477-1.3067.39044-2.6129.0312-3.6562-.33243-.9655-.57462-1.4378-.875-1.75-.30038-.3123-.76208-.5461-1.5625-.9376-.73896-.3616-1.881-.3063-2.8125.031-1.5454.5595-3.3949 2.6275-3.5625 4.0937-.29599 2.5891-1.0311 5.2222-2.2802 6.8634zm48.749-3.0516.4375-.875-.9375-.3126c-6.9794-2.2099-13.424-.5376-19.5 2.0313 2.4556-6.7087 4.3257-13.41 5.6562-20.125 6.6246 11.903 12.246 15.797 17.531 18.219l.96875.4376.21875-1.0626c1.5767-8.1269 1.6991-18.955-4.9688-35.062 7.4719.388 14.902 1.2839 22.281 4.5624l.6875-1.5624c-8.1013-3.5995-16.194-4.4939-24.188-4.8438l-1.375-.062.5625 1.25c6.8477 15.896 6.8487 26.242 5.4688 34.219-5.0785-2.4715-10.219-6.2041-16.781-18.719l-1.1562-2.1875-.4375 2.4375c-1.4254 7.8888-3.6496 15.789-6.6562 23.688l-.75 1.9375 1.875-.875c6.1366-2.7847 12.342-4.5981 19.031-2.8437l.16479.1033zm-233.06.2499c6.6798-1.7432 12.871.062 19 2.8437l1.875.875-.71875-1.9369c-3.0067-7.8982-5.2309-15.799-6.6562-23.688l-.4375-2.4375-1.1562 2.1875c-6.5652 12.52-11.732 16.247-16.812 18.719-1.3799-7.9764-1.3477-18.322 5.5-34.219l.53125-1.25-1.3438.062c-7.9939.3499-16.086 1.2443-24.188 4.8438l.6875 1.5624c7.3882-3.2825 14.8-4.1753 22.281-4.5624-6.6683 16.108-6.5455 26.935-4.9688 35.062l.1875 1.0626 1-.4376c5.2817-2.4203 10.913-6.3045 17.531-18.187 1.3302 6.7036 3.205 13.397 5.6562 20.094-6.076-2.5689-12.521-4.2412-19.5-2.0313l-.9375.3126.4375.875-.18112.091 2.2124.1594zm54.883 3.778-.97714-3.6524c.0174-.1541.11063-1.0311.3125-2.25.21876-1.3209.58041-2.8976.875-3.5313.38681-.832.73471-1.5549 1.125-2.0937.39029-.5389.78661-.8838 1.4688-1.0938 1.2234-.3767 2.7798-.1469 3.8125.5938 1.3109.9402 2.1371 2.7599 2.8438 4.5624.30688.7828.33289 1.4876.375 2.3126.0421.8249.0859 1.7845.53125 2.8437.55178 1.3122 1.0086 2.9284 2.5 4 1.099.7897 3.0938 1.5625 3.0938 1.5625l1.7188.7188-.59375-1.7813s-.88084-2.613-1.0625-3.5313c-.12572-.6355-.0743-1.0946.0625-1.6562.13684-.5616.35345-1.2139.46875-2.0938.21737-1.6587 1.194-3.4031 1.4688-5.5.17909-1.3665.56264-3.5264.375-5.1562-.21885-1.901-.53791-3.5512-1.8125-5.1875-1.3961-1.7922-3.1655-3.0426-5.5312-3.25-1.8698-.1639-4.1696.8457-6.1875 1.8125-1.2979.6219-1.6923.9079-2.3438 1.2812.21156-3.9597.14729-8.5263-1.1562-12.344-1.382-4.0471-3.7495-8.0364-7.3438-11.906l-.625-.6562-.625.6562c-1.6705 1.7979-2.8432 3.7724-3.875 5.2188-1.9668 2.757-3.1533 5.2023-3.875 7.4375-1.5461 4.7882-.97906 8.0566-.25 12.469-.56888-.24-.75927-.369-1.75-.6874-1.7674-.5682-3.922-1.1053-5.7812-.75-1.9006.3631-3.6133 1.5272-4.7812 3-1.1593 1.4618-1.6553 3.3294-1.7812 5.0624-.15624 2.1503.31869 4.3508 1.1875 6.2813.8989 1.9973 2.0879 3.5889 2.8438 5.375.38062.8994.53588 1.9427.40625 2.875-.19405 1.3955-.90625 3.6562-.90625 3.6563l-.53125 1.5937 1.625-.5313c2.5939-.8801 4.292-2.4739 5.125-4.4687s.82906-4.3239.34375-6.8125c-.25482-1.3067-.39049-2.6129-.0312-3.6562.33243-.9655.57462-1.4378.875-1.75.30038-.3123.73083-.5461 1.5312-.9376.73896-.3613 1.9122-.306 2.8438.031 1.5454.5595 3.2311 2.6503 3.5625 4.0937 0 0-4e-5.031 0 .031.008.042.80629 4.5089.6875 6.5313l2.0056.3547c-.16714-2.8298-1.0368-7.2291-1.0368-7.2291-.48416-2.19-2.3303-4.533-4.6562-5.375-1.2538-.454-2.8074-.6284-4.1562.031-.82261.4023-1.4545.7143-2 1.2812-.54546.567-.91537 1.3124-1.2812 2.375-.53498 1.5537-.30207 3.1738-.0312 4.5626.44672 2.2906.39733 4.2935-.25 5.8437-.45703 1.0945-1.3456 1.9155-2.5312 2.625.22033-.7834.37923-1.1628.5-2.0313.17901-1.2874-.0385-2.6168-.53125-3.7812-.85831-2.0281-2.0429-3.6268-2.8438-5.4062-.76379-1.6972-1.1946-3.6202-1.0625-5.4376.10893-1.4991.55191-3.0476 1.4062-4.125.92643-1.1682 2.3711-2.1368 3.7812-2.4062 1.2546-.2397 3.2841.1873 4.9375.7188 1.6534.5314 2.9375 1.125 2.9375 1.125l1.4688.6874-.28125-1.5937c-.85923-5.3602-1.5872-8.0814.0312-13.094.66543-2.0609 1.7454-4.334 3.625-6.9688.91332-1.2803 1.9623-2.8066 3.125-4.2188 3.0269 3.4463 5.1389 6.9405 6.3438 10.469 1.3192 3.8634 1.3401 8.9997 1.0312 13.125l-.0937 1.6562 1.4062-.8437s1.5675-.9804 3.5-1.9063c1.9325-.9258 4.3186-1.7433 5.3125-1.6562 1.8738.1642 3.1245 1.0598 4.3438 2.625 1.0348 1.3285 1.2578 2.4801 1.4688 4.3125.13326 1.1576-.18951 3.3345-.375 4.75-.21737 1.6588-1.1627 3.4032-1.4375 5.5-.0908.6926-.30568 1.237-.46875 1.9063-.16307.6692-.27581 1.4547-.0937 2.375.12584.6361.31363 1.0959.5625 1.875-.4794-.2326-.80884-.349-1.0625-.5313-.92721-.6662-1.3036-1.8481-1.9062-3.2813-.32438-.7714-.36454-1.4641-.40625-2.2812-.0417-.8171-.082-1.7776-.5-2.8438-.71403-1.8212-1.5543-3.9841-3.4062-5.3124-1.516-1.0874-3.5384-1.3901-5.3125-.8438-1.0511.3237-1.8343.9723-2.375 1.7188-.54068.7464-.87225 1.5624-1.25 2.375-.48369 1.0404-.77286 2.5972-1 3.9687s-.375 2.5312-.375 2.5313v.125l.0312.1562 1.0084 3.7462.49726.054 1.1589-.4284zm64.679-13.84.0312-1.0624 1.0312.25c4.755 1.1922 8.3902 2.8033 11.406 4.5937 3.8268 2.2716 6.6528 4.8219 9.625 7.2813l.5-28.219c-2.5327 2.7962-4.9097 5.7915-8.4062 8.1875-2.8555 1.9568-8.2095 4.5285-13.219 5.0937l-1.1875.125.25-1.1562c.70513-3.1804.68458-5.3889 2.2812-9.1562 1.5147-3.5739 4.7084-8.7569 11.062-17.438-5.4954-.6072-10.283-1.2812-17.438-1.2812-7.1521 0-11.913.6741-17.406 1.2812 6.3541 8.6807 9.5478 13.864 11.062 17.438 1.5967 3.7673 1.5761 5.9758 2.2812 9.1562l.25 1.1562-1.1875-.125c-5.0092-.5652-10.363-3.1369-13.219-5.0937-3.483-2.3867-5.8846-5.369-8.4062-8.1563l.5 28.156c2.9599-2.451 5.8126-4.987 9.625-7.25 3.0161-1.7904 6.62-3.4015 11.375-4.5937l1.0625-.25v1.0624l-1.7128 1.1975c-4.0153 1.1313-7.2253 2.4949-9.8498 4.0527-4.203 2.4949-7.2401 5.4082-10.812 8.25l-1.3438 1.0626-.0312-1.7188-.53125-32.188-.0625-2.125 1.5 1.5c3.2981 3.326 5.7705 6.9524 9.625 9.5937 2.3766 1.6287 7.0366 3.8066 11.312 4.5626-.47638-2.5632-.68619-4.5676-1.9688-7.5938-1.5022-3.5445-4.595-8.7401-11.656-18.281l-.875-1.1876 1.4688-.1562c6.0848-.6306 11.105-1.4688 19-1.4688l1e-4 6e-4c7.8948 0 12.915.8382 19 1.4688l1.5.1562-.875 1.1876c-7.0612 9.5411-10.185 14.737-11.688 18.281-1.2871 3.0368-1.4571 5.0479-1.9375 7.625 4.2776-.7549 8.9035-2.9643 11.281-4.5938 3.8545-2.6413 6.3582-6.2677 9.6562-9.5937l1.4688-1.5-.0312 2.125-.5625 32.188v1.7188l-1.375-1.0626c-3.5724-2.8418-6.5782-5.7551-10.781-8.25-2.6244-1.5578-5.8345-2.9214-9.8438-4.0312z"
573
+ />
574
+ <path
575
+ d="m-272.65 1095.5s-4.9394 7.6033-7.9767 10.201c-4.2181 3.6078-6.9924 5.7811-12.411 7.4891-5.4087 1.7051-12.953 2.664-18.616 2.3538-5.4768-.3001-11.112-1.888-16.048-4.2795-4.2906-2.0787-11.127-8.1311-11.127-8.1311-3.3232 4.3118-7.5549 7.3405-11.583 9.5786-5.1507 2.8622-10.24 3.1201-15.586 2.832-10.867-.5858-21.005-7.3742-29.137-21.138-5.2727-12.47-11.338-25.099-18.912-38.342 8.7295-3.0896 18.903-4.7355 30.187-5.2706-4.5894 12.931-9.3504 25.528-7.6664 35.936 9.4806-7.1005 12.547-16.767 15.812-26.354l11.021 38.812c-6.6889-1.1728-3.1317-2.555-20.698-5.8849 3.5198 6.6368 11.578 14.832 20.462 15.639 5.9737.5425 10.31-1.3029 14.107-4.5963 2.7277-2.3659 5.2149-5.4949 5.1822-9.0197-.0187-2.0187-.0375-4.0374-.0562-6.0561-.012-1.2969-1.6125-3.1325-2.9094-3.1507-1.2358-.017-1.5777 1.9883-1.9076 3.1793-.66009 2.3832.66538 5.0369 0 7.4186-.73358 2.6258-2.1408 4.6993-4.4511 6.1467-1.9243 1.2057-6.5707 1.4838-6.5707 1.4838l1.4837-5.7229c1.0467-4.0374-2.8724-7.1709-3.8152-11.234-.60694-2.6153-.94144-5.5401 0-8.0544 1.0185-2.7201 3.0793-5.3675 5.7229-6.5707.96458-.439 2.1222-.499 3.1794-.4239 1.495.1062 4.4511 1.0598 4.4511 1.0598s-.84834-4.0909-.63587-6.5707c.25766-3.0073 2.805-8.578 4.2392-11.234 2.3814-4.41 6.1684-8.3832 6.6002-8.8102.41467.4172 4.5196 4.2377 7.2021 8.4713 1.6155 2.5496 3.2724 6.2339 3.7387 9.216.38449 2.459.24673 7.6588.24673 7.6588s4.3663-1.7928 5.8503-2.0028c1.0493-.1485 2.2084-.1692 3.2012.2017 2.7209 1.0164 4.9609 3.514 6.1662 6.1566 1.1141 2.4428.98388 5.3837.56036 8.0349-.65795 4.1187-3.0778 7.3053-1.7527 11.26l1.8782 5.6058s-4.6545.046-6.658-1.023c-2.4054-1.2833-3.9535-3.2539-4.868-5.8222-.82946-2.3296-.34811-5.1826-1.7879-7.1886-.63699-.8876-1.5285-1.8705-2.7601-1.7672-1.2925.1083-2.1999 2.2199-2.2542 3.5158l-.22864 5.4514c-.0702 1.6747.69287 3.4155 1.5896 4.7706 2.1974 3.3204 5.4675 5.3345 9.1576 6.8299 3.9967 1.6197 7.6011 2.2423 11.913 2.2927 3.5974.042 9.8497-.5472 13.258-1.6988 4.1991-1.4186 6.669-3.2207 9.9175-6.236 1.831-1.6996 3.0546-4.1683 3.8604-6.533.92812-2.7236.59391-7.4239.59391-7.4239-4.1784 1.5837-7.8112 3.7129-11.086 6.2006-3.7006 2.8115-6.9433 6.0809-9.9982 9.538l-.29696-46.919c4.3526 4.8016 7.5174 9.1023 11.87 12.718 3.6652 3.0451 5.5486 4.2065 9.2138 5.3958-1.047-3.7744-1.4007-6.064-4.1031-9.8384-3.7469-5.2332-7.3959-10.852-11.932-16.086 8.3534-1.3911 16.702-1.7662 25.167-1.7662 8.4647 0 16.813.3751 25.167 1.7662-4.5366 5.2332-8.1856 10.852-11.932 16.086-2.7024 3.7744-3.0561 6.064-4.1031 9.8384 3.6652-1.1893 5.5486-2.3507 9.2138-5.3958 4.3526-3.6162 7.5174-7.9169 11.87-12.718l-.29696 46.919c-3.0549-3.4571-6.2976-6.7265-9.9982-9.538-3.2744-2.4877-6.9073-4.6169-11.086-6.2006 0 0-.33421 4.7003.59391 7.4239.80584 2.3647 2.0294 4.8334 3.8604 6.533 3.2485 3.0153 5.7184 4.8174 9.9175 6.236 3.4084 1.1516 9.6607 1.7408 13.258 1.6988 4.3121-.05 7.9165-.673 11.913-2.2927 3.6901-1.4954 6.9603-3.5095 9.1576-6.8299.89676-1.3551 1.6598-3.0959 1.5896-4.7706l-.22864-5.4514c-.0543-1.2959-.96175-3.4075-2.2542-3.5158-1.2316-.1033-2.1231.8796-2.7601 1.7672-1.4398 2.006-.95841 4.859-1.7879 7.1886-.91448 2.5683-2.4626 4.5389-4.868 5.8222-2.0035 1.0689-6.658 1.023-6.658 1.023l1.8782-5.6058c1.3251-3.9548-1.0948-7.1414-1.7527-11.26-.42352-2.6512-.55373-5.5921.56036-8.0349 1.2052-2.6426 3.4453-5.1402 6.1662-6.1566.99278-.3709 2.1518-.3502 3.2012-.2017 1.484.21 5.8503 2.0028 5.8503 2.0028s-.13776-5.1998.24673-7.6588c.46625-2.9821 2.1232-6.6664 3.7387-9.216 2.6825-4.2336 6.7874-8.0541 7.2021-8.4713.43186.427 4.2188 4.4002 6.6002 8.8102 1.4342 2.6558 3.9815 8.2265 4.2392 11.234.21247 2.4798-.63587 6.5707-.63587 6.5707s2.9561-.9536 4.4511-1.0598c1.0571-.075 2.2148-.015 3.1794.4239 2.6436 1.2032 4.7044 3.8506 5.7229 6.5707.94144 2.5143.60694 5.4391 0 8.0544-.9429 4.0629-4.862 7.1964-3.8152 11.234l1.4837 5.7229s-4.6464-.2781-6.5707-1.4838c-2.3103-1.4474-3.7176-3.5209-4.4511-6.1467-.66538-2.3817.66009-5.0354 0-7.4186-.32991-1.191-.67182-3.1966-1.9076-3.1793-1.2969.018-2.8974 1.8538-2.9094 3.1507-.0187 2.0187-.0375 4.0374-.0562 6.0561-.0327 3.5248 2.4546 6.6538 5.1822 9.0197 3.7971 3.2934 8.1332 5.1388 14.107 4.5963 8.8838-.8067 16.942-9.0022 20.462-15.639-17.566 3.3299-14.009 4.7121-20.698 5.8849l11.021-38.812c3.2649 9.5868 6.3314 19.253 15.812 26.354 1.684-10.409-3.0771-23.006-7.6664-35.936 11.284.5351 21.457 2.181 30.187 5.2706-7.574 13.242-13.639 25.871-18.912 38.342-8.132 13.764-18.27 20.552-29.137 21.138-5.3463.2881-10.435.03-15.586-2.832-4.0277-2.2381-8.2594-5.2668-11.583-9.5786 0 0-6.8361 6.0524-11.127 8.1311-4.9362 2.3915-10.571 3.9794-16.048 4.2795-5.6626.3102-13.207-.6487-18.616-2.3538-5.4181-1.708-8.1925-3.8813-12.411-7.4891-3.0373-2.5978-7.9768-10.201-7.9768-10.201z"
576
+ fill="none"
577
+ stroke="#000"
578
+ stroke-width="1.1765"
579
+ />
580
+ </g>
581
+ <g stroke-width=".80354" transform="translate(9e-6)">
582
+ <g transform="matrix(1.4641 0 0 1.4641 594.14 -1415.8)">
583
+ <g stroke-width="1.6071" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
584
+ <path
585
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
586
+ fill="#fff"
587
+ stroke="#000"
588
+ stroke-width="1.6071"
589
+ transform="translate(0 -2.0633)"
590
+ />
591
+ </g>
592
+ </g>
593
+ <g transform="matrix(1.4641 0 0 1.4641 472.65 -1405)">
594
+ <g stroke-width="1.6071" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
595
+ <path
596
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
597
+ fill="#fff"
598
+ stroke="#000"
599
+ stroke-width="1.6071"
600
+ transform="translate(0 -2.0633)"
601
+ />
602
+ </g>
603
+ </g>
604
+ <g transform="matrix(-1.4641 0 0 1.4641 -82.739 -1405)">
605
+ <g stroke-width="1.6071" transform="matrix(.5 0 0 .5 -1617.5 688.21)">
606
+ <path
607
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
608
+ fill="#fff"
609
+ stroke="#000"
610
+ stroke-width="1.6071"
611
+ transform="translate(0 -2.0633)"
612
+ />
613
+ </g>
614
+ </g>
615
+ </g>
616
+ <g stroke-width="1.1765" transform="translate(467.6 -914.69)">
617
+ <g transform="rotate(-3.1061 -337.06 1093.4)">
618
+ <path d="m-346.46 1090.7h16.902l2.1993 3.8065-2.1993 3.8064h-16.902l-2.7068-3.8064z" fill="#fed100"/>
619
+ <path d="m-346.46 1090.7h16.902l2.1993 3.8065-2.1993 3.8064h-16.902l-2.7068-3.8064z" fill="none" stroke="#000" stroke-width="1.1765"/>
620
+ </g>
621
+ <g transform="matrix(-.99853 -.054185 -.054185 .99853 -485.55 -16.657)">
622
+ <path d="m-346.46 1090.7h16.902l2.1993 3.8065-2.1993 3.8064h-16.902l-2.7068-3.8064z" fill="#f6e078"/>
623
+ <path
624
+ d="m-346.46 1090.7h16.902l2.1993 3.8065-2.1993 3.8064h-16.902l-2.7068-3.8064z"
625
+ fill="#fed100"
626
+ stroke="#000"
627
+ stroke-width="1.1765"
628
+ />
629
+ </g>
630
+ </g>
631
+ </g>
632
+ <g transform="translate(120.73 275.6)">
633
+ <g stroke-width="1.1765" transform="translate(-301.8 -173.48)">
634
+ <path
635
+ d="m390.39 381.08s12.056-.88424 33.297-2.0834c21.242-1.1992 44-1.8289 55.609-1.8289h35.387c11.245 0 34.538.62974 55.609 1.8289 21.071 1.1992 33.055 2.2045 33.055 2.2045l7.3876-33.005s-75.7-6.8309-113.75-6.8309-113.75 6.8309-113.75 6.8309z"
636
+ fill="#fed100"
637
+ fill-rule="evenodd"
638
+ />
639
+ <path
640
+ d="m496.5 341.73c38.012-.0193 76.02 2.041 113.86 6.2343l-6.9279 33.312c-37.64-3.3788-68.451-4.2827-106.51-4.5808m.5045-34.966c-38.012-.0193-76.02 2.041-113.86 6.2343l6.9279 33.312c37.64-3.3788 68.451-4.2827 106.51-4.5808"
641
+ fill="none"
642
+ stroke="#000"
643
+ stroke-width="1.1765"
644
+ />
645
+ </g>
646
+ <g stroke-width="1.33" transform="matrix(1.0111 0 0 .77383 772.99 -265.67)">
647
+ <path
648
+ color="#000000"
649
+ d="m-644.32 561.77-.0312.0312h-.0312c-13.369 1.2568-28.842 2.6278-42.344 5.0312-1.9091 2.9817-2.0675 5.7008 1.4062 7.875 12.963-2.3075 28.246-3.7112 41.625-4.9688 18.145-1.3742 36.44-2.2332 54.688-2.4688h35c10.916 0 33.968.8703 54.688 2.5 20.625 1.6223 41.688 4.9375 41.688 4.9375 3.5944-2.398 3.2039-5.0807 1.25-7.875 0 0-21.258-3.4064-42.312-5.0625-20.96-1.6487-43.984-2.5-55.312-2.5h-35c-18.464.0721-36.901 1.21-55.313 2.5001z"
650
+ fill="#fed100"
651
+ />
652
+ <path
653
+ color="#000000"
654
+ d="m-644.32 561.77-.0312.0312h-.0312c-13.369 1.2568-28.842 2.6278-42.344 5.0312-1.9091 2.9817-2.0675 5.7008 1.4062 7.875 12.963-2.3075 28.246-3.7112 41.625-4.9688 18.145-1.3742 36.44-2.2332 54.688-2.4688h35c10.916 0 33.968.8703 54.688 2.5 20.625 1.6223 41.688 4.9375 41.688 4.9375 3.5944-2.398 3.2039-5.0807 1.25-7.875 0 0-21.258-3.4064-42.312-5.0625-20.96-1.6487-43.984-2.5-55.312-2.5h-35c-18.464.0721-36.901 1.21-55.313 2.5001z"
655
+ fill="none"
656
+ stroke="#000"
657
+ stroke-width="1.33"
658
+ />
659
+ </g>
660
+ <g stroke-width="1.3793" transform="matrix(.94011 0 0 .77383 732.44 -231.28)">
661
+ <path
662
+ color="#000000"
663
+ d="m-644.32 561.77-.0312.0312h-.0312c-13.369 1.2568-28.842 2.6278-42.344 5.0312-1.9091 2.9817-2.0675 5.7008 1.4062 7.875 12.963-2.3075 28.246-3.7112 41.625-4.9688 18.145-1.3742 36.44-2.2332 54.688-2.4688h35c10.916 0 33.968.8703 54.688 2.5 20.625 1.6223 41.688 4.9375 41.688 4.9375 3.5944-2.398 3.2039-5.0807 1.25-7.875 0 0-21.258-3.4064-42.312-5.0625-20.96-1.6487-43.984-2.5-55.312-2.5h-35c-18.464.0721-36.901 1.21-55.313 2.5001z"
664
+ fill="#fed100"
665
+ />
666
+ <path
667
+ color="#000000"
668
+ d="m-644.32 561.77-.0312.0312h-.0312c-13.369 1.2568-28.842 2.6278-42.344 5.0312-1.9091 2.9817-2.0675 5.7008 1.4062 7.875 12.963-2.3075 28.246-3.7112 41.625-4.9688 18.145-1.3742 36.44-1.7781 54.688-2.0138h35c10.916 0 33.968.41526 54.688 2.045 20.625 1.6223 41.688 4.9375 41.688 4.9375 3.5944-2.398 3.2039-5.0807 1.25-7.875 0 0-21.258-3.4064-42.312-5.0625-20.96-1.6487-43.984-2.045-55.312-2.045h-35c-18.464.0721-36.901.75492-55.313 2.0451z"
669
+ fill="none"
670
+ stroke="#000"
671
+ stroke-width="1.3793"
672
+ />
673
+ </g>
674
+ <g transform="translate(.20976 .6899)">
675
+ <g stroke-width="2.6601" transform="translate(-302.32 -173.09)">
676
+ <g transform="matrix(.50554 0 0 .38692 -961.11 29.491)">
677
+ <rect fill="none" height="59.169" ry="3.0061" stroke="#000" stroke-width="2.6601" width="89.493" x="2840.1" y="823.57"/>
678
+ </g>
679
+ <g transform="matrix(.50554 0 0 .38692 -961.11 29.491)">
680
+ <g stroke-width="2.6601">
681
+ <rect fill="#012169" fill-rule="evenodd" height="43.637" ry="5.1773" stroke="#a0892c" width="70.263" x="2849.7" y="831.33"/>
682
+ <path
683
+ d="m2918.5 873.46c-.9358.93579-2.2301 1.5131-3.6642 1.5131h-59.908c-1.4341 0-2.7284-.57727-3.6642-1.5131-.9357-.93579-1.513-2.2301-1.513-3.6642v-33.282c0-1.4341.5773-2.7284 1.513-3.6642.9358-.93579 68.172 39.675 67.237 40.611z"
684
+ fill="#2b96f6"
685
+ fill-rule="evenodd"
686
+ stroke="#a0892c"
687
+ />
688
+ <g fill="#012169" fill-rule="evenodd" stroke="#000">
689
+ <path d="m2918.5 873.46c-.9358.93581-2.2301 1.5131-3.6642 1.5131h-59.908c-1.4341 0-2.7284-.57727-3.6642-1.5131-.9357-.93579-1.513-2.2301-1.513-3.6642v-33.282c0-1.4341.5773-2.7284 1.513-3.6642.4751-.47512 18.04 9.7588 35.096 20.073 16.539 10.001 32.601 20.077 32.14 20.538z"/>
690
+ <path d="m2918.5 832.84c.9357.93579 1.513 2.2301 1.513 3.6642v33.282c0 1.4341-.5773 2.7284-1.513 3.6642-.9358.93579-2.2301 1.5131-3.6642 1.5131h-59.908c-1.4341 0-2.7284-.57727-3.6642-1.5131-.9357-.93579 66.301-41.547 67.237-40.611z"/>
691
+ <path d="m2918.5 873.46c-.9358.93579-2.2301 1.5131-3.6642 1.5131h-59.908c-1.4341 0-2.7284-.57725-3.6642-1.5131-.4748-.47478 16.6-11.163 33.661-21.457 0 0 34.512 20.521 33.576 21.457z"/>
692
+ </g>
693
+ <rect fill="none" height="43.637" ry="5.1773" stroke="#000" width="70.263" x="2849.7" y="831.33"/>
694
+ <rect fill="#012169" fill-rule="evenodd" height="22.304" ry="0" stroke="#000" width="39.367" x="2865.2" y="841.29"/>
695
+ </g>
696
+ </g>
697
+ </g>
698
+ <g stroke-width="1.1765" transform="translate(-302.24 -173.09)">
699
+ <g stroke-width="1.4276" transform="matrix(.87076 -.01395 .01558 .77968 -53.131 133.63)">
700
+ <rect
701
+ fill="#fed100"
702
+ fill-rule="evenodd"
703
+ height="22.674"
704
+ ry="10.771"
705
+ stroke="#000"
706
+ stroke-width="1.4284"
707
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
708
+ width="35.829"
709
+ x="494.63"
710
+ y="340.21"
711
+ />
712
+ <rect
713
+ fill="#306947"
714
+ fill-rule="evenodd"
715
+ height="16.542"
716
+ ry="8.271"
717
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
718
+ width="29.954"
719
+ x="497.57"
720
+ y="343.28"
721
+ />
722
+ <rect
723
+ fill="none"
724
+ height="16.542"
725
+ ry="8.271"
726
+ stroke="#000"
727
+ stroke-width="1.4284"
728
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
729
+ width="29.954"
730
+ x="497.57"
731
+ y="343.28"
732
+ />
733
+ </g>
734
+ <g stroke-width="1.3612" transform="matrix(-.81814 .14282 .15467 .88602 852.1 11.28)">
735
+ <g>
736
+ <path d="m626.17 310.88-23.701-12.771 23.701-12.082 2.8814 13.147z" fill="#fed100" stroke="#000" stroke-width="1.3612"/>
737
+ <path d="m626.17 307.47-17.183-9.2586 17.183-8.759 5.657 8.5789z" fill="#c8102e"/>
738
+ <path d="m626.17 307.47-17.183-9.2586 22.66-.18009z" fill="#c8102e"/>
739
+ </g>
740
+ <path d="m452.4 250.56 22.953-.0249" fill="none" stroke="#000" stroke-width="1.3612" transform="translate(156.53 47.58)"/>
741
+ <path d="m626.17 307.47-17.183-9.2586 17.183-8.759 5.8371 8.3988z" fill="none" stroke="#000" stroke-width="1.3612"/>
742
+ </g>
743
+ <g stroke-width="1.4524" transform="translate(.77786 -117.02)">
744
+ <g transform="matrix(.9 0 0 .9 292.52 -504.08)">
745
+ <g transform="matrix(.9 0 0 .9 18.93 108.07)">
746
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
747
+ <path
748
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
749
+ fill="#fff"
750
+ stroke="#000"
751
+ stroke-width="3.2276"
752
+ transform="translate(0 -2.0633)"
753
+ />
754
+ </g>
755
+ </g>
756
+ <g transform="matrix(.9 0 0 .9 19.798 121.61)">
757
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
758
+ <path
759
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
760
+ fill="#fff"
761
+ stroke="#000"
762
+ stroke-width="3.2258"
763
+ transform="translate(0 -2.0633)"
764
+ />
765
+ </g>
766
+ </g>
767
+ </g>
768
+ <g transform="matrix(.9 0 0 .9 241.08 -501.27)">
769
+ <g transform="matrix(.9 0 0 .9 18.93 108.07)">
770
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
771
+ <path
772
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
773
+ fill="#fff"
774
+ stroke="#000"
775
+ stroke-width="3.2276"
776
+ transform="translate(0 -2.0633)"
777
+ />
778
+ </g>
779
+ </g>
780
+ <g transform="matrix(.9 0 0 .9 19.798 121.61)">
781
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
782
+ <path
783
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
784
+ fill="#fff"
785
+ stroke="#000"
786
+ stroke-width="3.2276"
787
+ transform="translate(0 -2.0633)"
788
+ />
789
+ </g>
790
+ </g>
791
+ </g>
792
+ </g>
793
+ <g transform="matrix(-1 0 0 1 994.39 0)">
794
+ <g stroke-width="1.4276" transform="matrix(.87076 -.01395 .01558 .77968 -53.131 133.63)">
795
+ <rect
796
+ fill="#fed100"
797
+ fill-rule="evenodd"
798
+ height="22.674"
799
+ ry="10.771"
800
+ stroke="#000"
801
+ stroke-width="1.4284"
802
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
803
+ width="35.829"
804
+ x="494.63"
805
+ y="340.21"
806
+ />
807
+ <rect
808
+ fill="#306947"
809
+ fill-rule="evenodd"
810
+ height="16.542"
811
+ ry="8.271"
812
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
813
+ width="29.954"
814
+ x="497.57"
815
+ y="343.28"
816
+ />
817
+ <rect
818
+ fill="none"
819
+ height="16.542"
820
+ ry="8.271"
821
+ stroke="#000"
822
+ stroke-width="1.4284"
823
+ transform="matrix(.99582 -.091287 .13843 .99037 0 0)"
824
+ width="29.954"
825
+ x="497.57"
826
+ y="343.28"
827
+ />
828
+ </g>
829
+ <g stroke-width="1.3612" transform="matrix(-.81814 .14282 .15467 .88602 852.1 11.28)">
830
+ <g>
831
+ <path d="m626.17 310.88-23.701-12.771 23.701-12.082 2.8814 13.147z" fill="#fed100" stroke="#000" stroke-width="1.3612"/>
832
+ <path d="m626.17 307.47-17.183-9.2586 17.183-8.759 5.657 8.5789z" fill="#c8102e"/>
833
+ <path d="m626.17 307.47-17.183-9.2586 22.66-.18009z" fill="#c8102e"/>
834
+ </g>
835
+ <path d="m452.4 250.56 22.953-.0249" fill="none" stroke="#000" stroke-width="1.3612" transform="translate(156.53 47.58)"/>
836
+ <path d="m626.17 307.47-17.183-9.2586 17.183-8.759 5.8371 8.3988z" fill="none" stroke="#000" stroke-width="1.3612"/>
837
+ </g>
838
+ <g stroke-width="1.4524" transform="translate(.77786 -117.02)">
839
+ <g transform="matrix(.9 0 0 .9 292.52 -504.08)">
840
+ <g transform="matrix(.9 0 0 .9 18.93 108.07)">
841
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
842
+ <path
843
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
844
+ fill="#fff"
845
+ stroke="#000"
846
+ stroke-width="3.2276"
847
+ transform="translate(0 -2.0633)"
848
+ />
849
+ </g>
850
+ </g>
851
+ <g transform="matrix(.9 0 0 .9 19.798 121.61)">
852
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
853
+ <path
854
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
855
+ fill="#fff"
856
+ stroke="#000"
857
+ stroke-width="3.2276"
858
+ transform="translate(0 -2.0633)"
859
+ />
860
+ </g>
861
+ </g>
862
+ </g>
863
+ <g transform="matrix(.9 0 0 .9 241.08 -501.27)">
864
+ <g transform="matrix(.9 0 0 .9 18.93 108.07)">
865
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
866
+ <path
867
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
868
+ fill="#fff"
869
+ stroke="#000"
870
+ stroke-width="3.2276"
871
+ transform="translate(0 -2.0633)"
872
+ />
873
+ </g>
874
+ </g>
875
+ <g transform="matrix(.9 0 0 .9 19.798 121.61)">
876
+ <g stroke-width="3.2276" transform="matrix(.45 0 0 .45 -1021.1 731)">
877
+ <path
878
+ d="m2700.2 785.03a10.489 10.66 0 11-20.977 0 10.489 10.66 0 1120.977 0z"
879
+ fill="#fff"
880
+ stroke="#000"
881
+ stroke-width="3.2276"
882
+ transform="translate(0 -2.0633)"
883
+ />
884
+ </g>
885
+ </g>
886
+ </g>
887
+ </g>
888
+ </g>
889
+ </g>
890
+ </g>
891
+ </g>
892
+ </g>
893
+ </g>
894
+ </g>
895
+ </svg>