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,45 @@
1
+ <svg viewBox="-66.5 0 900 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <clipPath id="d">
4
+ <use height="267" width="400" xlink:href="#a"/>
5
+ </clipPath>
6
+ <clipPath clipPathUnits="userSpaceOnUse" id="c">
7
+ <path d="M-66.5 0h400v267h-400z"/>
8
+ </clipPath>
9
+ <path
10
+ d="M146.396 44.921l-.624-.267zm17.833 176.42l-2.407-1.425-7.133 1.782-6.242-3.92v1.514l-1.516-2.049 1.784-1.782-.268-5.346h2.05l1.25-3.564 1.426-.624-1.16-1.782 1.784-.624-.268-2.673-1.783-.89 2.318-.268-1.426-6.504-3.567-3.564-2.14.89.892 2.941h-7.4l-6.242-2.673-2.407-1.158-11.859-2.673-.892 1.425-4.19.357h-1.16l-1.783 2.94-5.082-3.564-2.675.89.357 2.407-6.598-3.564-.268 2.316-6.508-2.94-.357.267-3.21 1.248-.624-2.406-7.757-3.831-8.292-2.674-1.516-6.86v-1.515l-3.21-5.88 1.427-7.129-2.675-.89-.892-3.03 4.458-.535h-2.05l.267-4.455-6.509 2.05-.267-1.783-.892 3.297-3.567 1.426-2.407-2.317-.892-2.406-.891-4.722 2.05-1.515.892 1.159.624-1.426-1.515-10.692 2.407.534 1.159-11.226.357-.357 2.318-1.425-2.942.267-1.16-2.673 5.35-5.97-4.815-.891-3.566 3.564-1.427-4.099-2.14 2.94-.535-2.049-2.674.891-1.784.892 1.427-5.347-1.16-.623.625-1.515-1.516.356-.267-3.029h5.617l-.268-1.426h-1.783l-3.299-5.702-1.783.624-1.16-2.05-.623 1.782-1.784-1.247 1.784-1.158-2.675-.891.624-1.515-2.14-1.159-.535-4.722-2.14-.624 1.248-.89-2.407-6.238.267-2.049.892-6.237h1.783l-.535 3.831 4.458 6.237 3.21 4.188 6.598 1.782v.267l.892-1.514 3.567 4.187 1.783 2.05.891.89 10.076 4.812 1.783.891.624.535 4.726 5.702 2.675-1.247 19.615-4.455.625-3.564L97 94.55l-.267-1.159.891-.623 4.191-1.515v-4.099l1.427-1.515 1.783-6.86-.892-2.673 4.19-10.069V59.8h2.052l2.407-3.564 2.942-.891.357-3.297 4.102-4.99 1.783.892 8.381-3.03.892-.89 1.783-1.783-.624-2.94h1.783l.892 4.722 9.183 2.139 1.516-1.515.624.267 8.025 1.782.267-.267 4.191-2.406.268 2.673 3.566.357 2.943 2.316.624.624 4.458 3.831 5.35.357 3.299.534 4.101-1.425.357 2.673 1.783 1.158 1.427-2.673h1.783l1.248 6.86 1.427.268-.268 2.406-.267.267h.535l3.566-1.782 3.3-1.158 9.183 3.207 1.783-.534.624 3.207 2.408.357-.624-1.515h2.05l.624 3.297 2.408-2.673 5.617 3.564 1.516 6.504-2.407.624.624 4.99.891 1.514 6.242 15.771-3.3 2.94-.267 3.565-2.675 3.296 2.943 2.05-1.16.89 2.675 2.674 4.102.624 1.248 1.782 1.16 2.316 2.942 1.248 3.566-2.406 2.408.267-2.943 4.188 2.943 7.752-3.567 2.94 1.516 4.722-.892 4.188 1.783 2.406 4.726.891-4.726 6.504.892 1.159 1.16 1.247-2.052 3.208 2.051 1.247-10.432 8.554 2.408 5.97-.625 3.564-3.566 1.158-.892 3.03-4.101 1.782-1.248 3.83-.892 2.05 4.19 2.139-6.24.534 1.515 3.297-3.032 2.94-4.725.891-1.516 2.673 3.566 1.782-6.776 6.238 2.05 3.296-5.349-1.158-5.974 3.564-8.024 3.831-1.784 2.673-1.159-.89 1.16-2.674-5.35 2.05-1.16-2.05-8.024 4.723-3.567-1.159-6.509 1.159-1.783-.891M166.28 50l-.625-.624h-.267v.357h.624l.268.267zm-2.051 171.342l1.783.89zm0 0l1.783.89M39.044 98.74l.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673l-.892.89 1.783 1.248zm8.024 19.068l.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673l-.892.89 1.783 1.248zm8.024 19.068l.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673l-.892.89 1.783 1.248zm5.35-6.237v-2.317l-2.051.535.267 1.514zm-2.319-6.505l.535 1.159 1.249-2.673-1.784 1.247zm2.319 6.505v-2.317l-2.051.535.267 1.514zm-2.319-6.505l.535 1.159 1.249-2.673-1.784 1.247zm2.319 6.505v-2.317l-2.051.535.267 1.514zm-2.319-6.505l.535 1.159 1.249-2.673-1.784 1.247zm31.742 90.884l-2.05.267-1.784 2.406 2.943-.624.891-2.05zm0 0l-2.05.267-1.784 2.406 2.943-.624.891-2.05zm0 0l-2.05.267-1.784 2.406 2.943-.624.891-2.05zm2.14-60.322l-.624-.534-1.783-.891 1.783.89z"
11
+ fill="#fff"
12
+ id="a"
13
+ transform="translate(0 -1.5)"
14
+ />
15
+ <g fill="none" id="e">
16
+ <circle cx="133.5" cy="133.5" r="49.5"/>
17
+ <circle cx="133.5" cy="133.5" r="92.5"/>
18
+ <circle cx="133.5" cy="133.5" r="133"/>
19
+ <path d="M-100 133.5h467M133.5-100v467" id="b"/>
20
+ <use height="267" transform="rotate(30 133.5 133.5)" width="400" xlink:href="#b"/>
21
+ <use height="267" transform="rotate(60 133.5 133.5)" width="400" xlink:href="#b"/>
22
+ </g>
23
+ </defs>
24
+ <g clip-path="url(#c)" transform="matrix(2.25 0 0 2.25 83.125 -.75)">
25
+ <path d="M-66.5.333h400V267h-400z" fill="#072b5f"/>
26
+ <g fill="none" stroke="#fff" stroke-width="2">
27
+ <circle cx="133.5" cy="133.5" r="49.5"/>
28
+ <circle cx="133.5" cy="133.667" r="92.06" stroke-width="1.99"/>
29
+ <circle cx="133.5" cy="133.667" r="132.118" stroke-width="1.987"/>
30
+ <path d="M-100 133.5h467M133.5-100v467"/>
31
+ <use height="267" transform="rotate(30 133.5 133.5)" width="400" xlink:href="#b"/>
32
+ <use height="267" transform="rotate(60 133.5 133.5)" width="400" xlink:href="#b"/>
33
+ </g>
34
+ <use height="267" transform="matrix(1 0 0 .99875 0 .333)" width="400" xlink:href="#a"/>
35
+ <use
36
+ clip-path="url(#d)"
37
+ height="267"
38
+ stroke="#072b5f"
39
+ stroke-width="2"
40
+ transform="matrix(.99795 0 0 .9967 .195 .655)"
41
+ width="400"
42
+ xlink:href="#e"
43
+ />
44
+ </g>
45
+ </svg>
@@ -0,0 +1,66 @@
1
+ <svg viewBox="0 0 800 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <path d="M0 0h800v500H0z" fill="#74acdf"/>
3
+ <path d="M0 166.67h800v166.67H0z" fill="#fff"/>
4
+ <g id="c">
5
+ <path
6
+ d="M396.84 251.31l28.454 61.992s.49 1.185 1.28.859c.79-.327.299-1.512.299-1.512l-23.715-63.956m-.68 24.12c-.347 9.428 5.452 14.613 4.694 23.032-.757 8.42 3.867 13.18 4.94 16.454 1.073 3.274-1.16 5.232-.198 5.698.963.466 3.07-2.12 2.383-6.775-.687-4.655-4.22-6.037-3.39-16.32.83-10.283-4.206-12.678-2.98-22.058"
7
+ fill="#f6b40e"
8
+ id="a"
9
+ stroke="#85340a"
10
+ stroke-width="1.112"
11
+ />
12
+ <use transform="rotate(22.5 400 250)" xlink:href="#a"/>
13
+ <use transform="rotate(45 400 250)" xlink:href="#a"/>
14
+ <use transform="rotate(67.5 400 250)" xlink:href="#a"/>
15
+ <path
16
+ d="M404.31 274.41c.453 9.054 5.587 13.063 4.579 21.314 2.213-6.525-3.124-11.583-2.82-21.22m-7.649-23.757l19.487 42.577-16.329-43.887"
17
+ fill="#85340a"
18
+ id="b"
19
+ />
20
+ <use transform="rotate(22.5 400 250)" xlink:href="#b"/>
21
+ <use transform="rotate(45 400 250)" xlink:href="#b"/>
22
+ <use transform="rotate(67.5 400 250)" xlink:href="#b"/>
23
+ </g>
24
+ <use transform="rotate(90 400 250)" xlink:href="#c"/>
25
+ <use transform="rotate(180 400 250)" xlink:href="#c"/>
26
+ <use transform="rotate(270 400 250)" xlink:href="#c"/>
27
+ <circle cx="400" cy="250" fill="#f6b40e" r="27.778" stroke="#85340a" stroke-width="1.5"/>
28
+ <path
29
+ d="M409.47 244.06c-1.897 0-3.713.822-4.781 2.531 2.136 1.923 6.856 2.132 10.062-.219a7.333 7.333 0 00-5.281-2.312zm-.031.438c1.846-.034 3.571.814 3.812 1.656-2.136 2.35-5.55 2.146-7.687.437.935-1.495 2.439-2.067 3.875-2.094z"
30
+ fill="#843511"
31
+ id="h"
32
+ />
33
+ <use transform="matrix(-1 0 0 1 800.25 0)" xlink:href="#d"/>
34
+ <use transform="matrix(-1 0 0 1 800.25 0)" xlink:href="#e"/>
35
+ <use transform="translate(18.862)" xlink:href="#f"/>
36
+ <use transform="matrix(-1 0 0 1 800.25 0)" xlink:href="#g"/>
37
+ <path
38
+ d="M395.75 253.84c-.913.167-1.563.977-1.563 1.906 0 1.062.878 1.906 1.938 1.906a1.89 1.89 0 001.563-.812c.739.556 1.764.615 2.312.625.084.002.193 0 .25 0 .548-.01 1.573-.069 2.313-.625.36.516.935.812 1.562.812 1.06 0 1.938-.844 1.938-1.906 0-.929-.65-1.74-1.563-1.906.513.18.844.676.844 1.219a1.28 1.28 0 01-1.281 1.281c-.68 0-1.242-.54-1.282-1.219-.208.417-1.034 1.655-2.656 1.719-1.622-.064-2.447-1.302-2.656-1.719-.04.679-.6 1.219-1.281 1.219a1.28 1.28 0 01-1.281-1.281c0-.542.33-1.038.843-1.219zm2.09 5.69c-2.138 0-2.983 1.937-4.906 3.219 1.068-.427 1.91-1.27 3.406-2.125 1.496-.855 2.772.187 3.625.187h.031c.853 0 2.13-1.041 3.625-.187 1.497.856 2.369 1.698 3.438 2.125-1.924-1.282-2.8-3.219-4.938-3.219-.426 0-1.271.23-2.125.656h-.031c-.853-.426-1.698-.656-2.125-.656z"
39
+ fill="#85340a"
40
+ />
41
+ <path
42
+ d="M397.12 262.06c-.844.037-1.96.207-3.563.688 3.848-.855 4.697.437 6.407.437h.03c1.71 0 2.56-1.292 6.407-.438-4.274-1.282-5.124-.437-6.406-.437h-.031c-.802 0-1.437-.312-2.844-.25z"
43
+ fill="#85340a"
44
+ />
45
+ <path
46
+ d="M393.75 262.72c-.248.003-.519.005-.813.031 4.488.428 2.331 3 7.032 3h.03c4.702 0 2.575-2.572 7.063-3-4.7-.426-3.214 2.344-7.062 2.344h-.031c-3.608 0-2.496-2.421-6.22-2.375zm10.1 6.94a3.848 3.848 0 00-3.846-3.846 3.848 3.848 0 00-3.847 3.846 3.955 3.955 0 013.847-3.04 3.952 3.952 0 013.846 3.04z"
47
+ fill="#85340a"
48
+ />
49
+ <path
50
+ d="M382.73 244.02c4.915-4.273 11.11-4.915 14.53-1.709.837 1.121 1.373 2.32 1.593 3.57.43 2.433-.33 5.062-2.236 7.756.215-.001.643.212.856.427 1.697-3.244 2.297-6.577 1.74-9.746a13.815 13.815 0 00-.67-2.436c-4.7-3.845-11.11-4.272-15.81 2.138z"
51
+ fill="#85340a"
52
+ id="e"
53
+ />
54
+ <path
55
+ d="M390.42 242.74c2.777 0 3.419.642 4.7 1.71 1.284 1.068 1.924.854 2.137 1.068.213.215 0 .854-.426.64s-1.284-.64-2.564-1.708c-1.283-1.07-2.563-1.069-3.846-1.069-3.846 0-5.983 3.205-6.41 2.991-.426-.214 2.137-3.632 6.41-3.632z"
56
+ fill="#85340a"
57
+ id="d"
58
+ />
59
+ <use transform="translate(-19.181)" xlink:href="#h"/>
60
+ <circle cx="390.54" cy="246.15" fill="#85340a" id="f" r="1.923"/>
61
+ <path
62
+ d="M385.29 247.44c3.633 2.778 7.265 2.564 9.402 1.282 2.136-1.282 2.136-1.709 1.71-1.709-.427 0-.853.427-2.564 1.281-1.71.856-4.273.856-8.546-.854z"
63
+ fill="#85340a"
64
+ id="g"
65
+ />
66
+ </svg>
@@ -0,0 +1,225 @@
1
+ <svg viewBox="0 0 1000 500" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h1000v500H0z" fill="#006"/>
3
+ <path d="M0 250L1000 0v500L0 250z" fill="#BD1021"/>
4
+ <path d="M107.14 250L1000 26.79v446.42" fill="#FFF"/>
5
+ <path
6
+ d="M766.471 277.926c6.665.512 6.437 7.12 6.437 7.12l23.602.526c3.019-8.229 6.152-7.276 11.886-3.212 5.448 3.861 11.393 5.585 11.393 5.585 2.279-11.81 19.026-9.422 19.026-9.422 7.14-17.054 7.747-16.827 3.494-18.987-4.253-2.16-5.988-5.814-5.988-5.814-4.037-4.873-6.164-11.922-6.62-16.246-.456-4.324-5.469 2.164-6.38.799-.911-1.364-8.355-.568-8.355-.568 1.823 1.933-4.405.796-4.405.796.608.455 0 2.274 0 2.274-.608-.796-5.317-1.592-5.317-1.592-.456 1.023-1.519 2.16-1.519 2.16-2.582-1.137-7.747-.91-7.747-.91-7.595-.114-12.152 2.274-14.279 3.525s-9.722 5.116-15.95 11.142-9.722 5.344-9.722 5.344c-1.823 6.708-16.709 14.894-16.709 14.894-2.43 2.16-9.874 3.183-13.671 0s0-8.868 0-8.868c1.405-2.658 2.798-2.548 2.953-11.77.105-6.236 6.542-11.182 13.149-18.43 8.078-8.861 19.368-23.449 19.368-23.449.057 4.477 2.506 5.202 2.506 5.202 2.222-4.562 5.412-8.229 5.412-8.229.171.384.627.64.627.64 2.506-3.411 4.044-4.775 4.044-4.775-.854-.341-7.861 0-14.412 5.713-6.551 5.713-11.051 3.795-11.051 3.795-4.557-1.45-4.956-4.946-4.956-4.946-3.327-14.317 9.741-24.558 9.741-24.558-17.545-4.178-4.899-26.434 16.861-35.899s21.532-13.729 21.532-13.729c1.253 1.45 2.279 4.008 2.279 4.008.228-.171 1.823-2.558 14.355-8.101 12.532-5.543 18.57-10.318 18.57-10.318 1.595 3.07 1.253 5.287 1.253 5.287 34.292-12.023 68.072-39.608 68.072-39.608.968 2.302.456 5.798.456 5.798 5.582-5.159 25.748-17.182 25.748-17.182.342 7.674-5.981 10.616-5.981 10.616.684 1.109 1.082 3.112 1.082 3.112 3.304-1.791 18.684-12.535 18.684-12.535 5.639 4.86.513 12.833.513 12.833 1.994-.298 3.475-2.046 3.475-2.046 1.424 8.271-7.747 15.562-7.747 15.562 1.595.043 4.272-1.535 4.272-1.535-1.709 9.039-18.855 19.058-18.855 19.058 2.506 2.217.114 5.159-1.937 6.481s-5.696 4.221-4.557 5.415 8.716-4.136 8.716-4.136c1.31 3.795-8.431 11.256-8.431 11.256 6.779.895 25.634-7.674 25.634-7.674-1.538 7.291-8.659 12.961-17.431 16.244-8.773 3.283-8.317 3.795-8.317 3.795 1.538 1.236 13.671-2.302 13.671-2.302-3.646 8.143-16.292 13.729-16.292 13.729 3.475 2.942 8.203-.469 12.931-3.709s11.165-6.012 18.285-8.399c7.121-2.388 12.133-.597 12.133-.597 5.924-1.876 10.937.767 10.937.767 11.393.938 12.532 5.074 12.532 5.074 1.253.298 2.222.81 5.127 2.942s2.734 8.74 2.62 11.981c-.114 3.24-1.025 3.24-1.595 4.136s-.627 1.919-.627 3.155-2.848 8.911-20.45 8.996c-17.602.085-26.678 0-26.678 0-1.453 0-3.19.853-3.19.853-7.405 3.667-3.494-2.501-12.304 4.747-8.81 7.248-13.292 5.997-13.292 5.997-1.443 1.734-10.671 10.318-15.95 13.729-5.279 3.411-4.329 3.098.266 5.088s11.545 0 11.545 0c-4.443 2.956-1.367 4.32-1.367 4.32 5.848-3.553 9.38-2.245 9.38-2.245 1.861 5.088-4.823 13.132-4.823 13.132 2.582.341 7.443 0 7.443 0-1.177 3.439-6.038 7.22-9.608 8.385-3.57 1.165-2.924 1.62-1.861 3.78s.152 4.349.152 4.349c-6.228-4.32-6.456-.455-6.456-.455-.719 5.12-.608 12.45-.608 12.45-4.405-2.217-4.633.739-4.633.739-1.139 4.661-6.532 10.062-6.532 10.062-.228-2.899-2.886-3.638-2.886-3.638-2.81 5.4-7.975 8.641-7.975 8.641-.684 4.661.608 11.199.608 11.199-3.342-.682-4.557-.625-5.089.171s.76 1.194.76 1.194l43.521 1.08c.608.057 3.19.341 3.266 5.059.076 4.718-3.798 4.946-3.798 4.946l-47.622-1.137s.228 1.307-2.279 2.615-1.671-1.478-2.355 4.377c-.684 5.855-10.178-.455-10.178-.455-1.519 2.274-5.241 5.23-5.241 5.23-2.127-6.424-4.329-8.413-7.747-2.842s6.152 4.605 6.152 4.605 55.901-8.243 58.939-8.527 6.38-.114 7.747 4.15-6.76 4.946-6.76 4.946l-57.344 6.253c-1.215 3.411-6 3.127-6 3.127.38 3.24-3.038 5.287-4.785 6.481-1.747 1.194-7.215.625-7.215.625-6.684 4.548-9.95.966-9.95.966-4.329 1.876-7.064 1.08-10.633-.455-3.57-1.535-3.266-5.855-3.266-5.855l-36.191 3.752a8.752 8.752 0 00-2.886 1.734c1.291 1.649-2.592 5.479-2.592 5.479 1.082.746 3.161 2.835 3.446 7.355.301 4.781-5.839 5.585-2.763 8.911s8.687.576 14.953-2.43 12.418-2.622 15.095-2.601c2.677.021 10.14 1.897 14.782 3.539 4.643 1.641 6.238.661 6.551-1.727s2.393-3.07 2.393-3.07c-.57 2.345.684 3.39.684 3.39 1.794.128 4.927-1.62 4.927-1.62-.285 1.727-2.563 2.814-2.563 2.814-4.557 3.048 1.709 1.919 1.709 1.919 12.475-2.558 16.918-2.302 20.165-1.961s18.57 6.864 18.57 6.864c.57-1.535.171-5.329.171-5.329 3.931 1.066 5.526 3.326 5.526 3.326 1.481-1.62.513-4.349.513-4.349 12.646 7.077-2.62 10.275-6.665 11.639-4.044 1.364-3.987 3.027-3.987 3.027 3.361-1.066 5.696-1.45 8.488-1.663 2.791-.213 1.823-.043 8.488-1.364 6.665-1.322 10.083 1.492 10.083 1.492-5.582.298-7.234 1.961-7.234 1.961 3.532 2.43.171 4.477.171 4.477-5.07-6.395-9.399.256-9.399.256 1.737-.256 6.836.81 8.288 1.727 1.124.709 3.76 2.004 7.035 3.517 4.625 2.137 3.76.767 7.348 2.132s2.222 4.818 2.222 4.818c-1.538-2.814-4.842-3.795-4.842-3.795-.285 3.795-4.101 4.434-4.101 4.434 4.671-5.202-5.412-7.461-10.14-7.376s-8.26 3.112-8.26 3.112c9.513 8.911 16.121 6.012 16.121 6.012-1.196 3.24-9.057 1.961-9.057 1.961 3.646 2.771 3.247 4.733 3.247 4.733-1.937-1.876-5.127-.938-11.962-5.372s-12.931-2.984-12.931-2.984c6.665 7.12-2.449 11.341-2.449 11.341-3.361 1.919 1.424 4.519 1.424 4.519-4.215.767-4.785-3.453-4.785-3.453-2.222-.426-5.412 2.26-5.412 2.26.228-4.349 5.924-2.174 6.095-6.694s-5.298-8.015-21.419-5.798-20.849-2.942-20.849-2.942c-1.367.043-1.652 1.407-1.652 1.407 2.677 2.558 3.874 3.624 3.418 5.415-.456 1.791.854 2.388.854 2.388-2.962-.171-3.19-3.709-3.19-3.709-.057 1.45-.684 1.578-1.652 3.112-.968 1.535-.057 3.496-.057 3.496-1.253-1.109-3.532-2.43-1.367-5.585 1.667-2.43-3.475-5.543-3.475-5.543-1.994-2.046-7.291-.128-7.291-.128-10.994 2.174-17.431-4.775-17.431-4.775-1.253 0-3.646-.682-3.646-.682-11.621 5.202-21.817-6.054-21.817-6.054-8.772 1.663-12.76-2.558-15.437-6.694-2.677-4.136-3.19-4.477-6.722-6.608-3.532-2.132-6.833-8.163-3.589-11.341 2.829-2.771 1.994-3.411 1.994-3.411-4.557-7.66 8.127-10.13 8.355-11.963.332-2.675 2.981-4.366 5.829-4.537 2.848-.171 2.848.085 4.728-1.833 1.88-1.919 5.469.469 5.469.469.741-.554 7.007-5.415 12.589-2.899 5.583 2.516 10.197.725 10.197.725 3.931-.853 36.571-5.287 36.571-5.287 2.108-3.155 3.589-6.95 12.589-8.996 9-2.046 15.836-7.632 15.836-7.632-1.595-1.705-4.272-1.62-5.639-1.791-1.367-.171-4.215-2.601-4.215-2.601-1.652.725-2.499.37-14.298 7.546-10.538 6.41-10.842-6.309-10.842-6.309l-22.994.042c-.399 4.86-4.101 6.779-4.101 6.779l-8.374.426c-4.671-2.473-4.728-10.701-4.728-10.701-25.292.384-39.362 9.422-39.362 9.422-28.653-14.667-51.097-17.992-51.097-17.992 34.805-3.795 53.204-13.473 53.204-13.473 19.197 11.512 37.255 11.81 37.255 11.81.684-6.95 5.355-8.655 5.355-8.655l5.296.288z"
7
+ />
8
+ <path
9
+ d="M725.09 335.68c-7.273 4.265-5.958 6.594-5.325 7.904.646 1.336.721 2.615-1.253 4.605-1.975 1.99-1.785 2.681-1.785 2.681.304 7.069 5.311 8.57 7.399 10.304 1.749 1.452 4.715 6.002 4.715 6.002 3.722 5.344 7.671 5.4 10.595 5.4s2.664-.248 1.177-1.563c-1.398-1.237-4.329-3.638-4.329-3.638 3.911 1.364 7.633 5.457 7.633 5.457 7.39 8.086 14.203 7.021 17.203 6.623s2.468-2.132 2.468-2.132c-.158-.288-3.076-.512-3.076-.512-11.089-1.052-14.431-8.328-14.431-8.328 6.684 6.566 17.165 7.902 20.393 7.781s3.038.803 2.354.974-1.671 0-3.152-.114-1.481.256-1.139.881 1.737.689 3.503.625.342.128 4.927 3.688c4.586 3.56 16.007.682 16.007.682-7.377-1.833-8.402-5.159-8.402-5.159-10.026 1.172-14.099-4.839-14.099-4.839-1.794-1.791-7.151-4.56-7.151-4.56-5.666-2.432-6.549-7.56-6.549-7.56 1.595 2.27 4.7 4.872 8.63 5.959s5.041 1.663 5.041 1.663c-1.88.277-2.991-.341-2.991-.341-3.931-1.151-1.709.448-1.709.448 4.329 3.453 5.526 3.198 5.526 3.198 11.364 1.172 5.725-3.368 5.725-3.368 8.089 1.919 9.428-1.109 9.428-1.109 1.68 3.56 7.804 2.281 7.804 2.281-8.146 3.922-1.965 2.802-1.965 2.802 8.231-1.544 9.845.552 9.845.552 2.228 2.072 4.481 1.784 4.481 1.784s1.481.043 4.614.67 7.918 3.295 12.475 2.731 5.298.866 5.298.866c-.854-.295-2.848-.6-6.38.978s-9.627 2.089-18.513 0-9.57-1.833-9.57-1.833c2.108 1.577 3.987 3.795 4.386 5.329s1.937 1.62 1.937 1.62c.627-1.961 3.304-2.814 3.304-2.814 1.753 1.62 6.437 3.752 6.437 3.752.513-1.066 0-1.812 0-1.812 3.418 3.262 7.405 2.281 7.405 2.281 1.081-.765.741-2.601.741-2.601 1.367-.043 1.595.81 2.563 1.45s4.044.213 4.044.213c-1.139-.469-1.937-2.217-1.937-2.217 4.5-3.112 14.241-1.748 14.241-1.748 7.035 1.236 6.152 5.841 6.152 5.841 1.424.682 3.304 2.814 3.304 2.814.598-1.62.057-3.262.057-3.262 3.219 1.535 3.902 5.287 3.902 5.287 3.731-4.264-3.56-9.06-3.56-9.06 3.532-.448 7.434-.128 9.798.213s5.753 1.578 8.516 3.88 7.719 3.368 7.719 3.368c-.152-.951-2.791-2.558-3.389-2.899s-.854-1.172-.854-1.172c2.421.426 4.101.213 4.101.213-8.516-5.202-10.652-7.674-10.652-7.674 3.19.405 4.956-1.578 4.956-1.578-6.722.149-6.95-1.599-6.95-1.599.826.234 3.874.981 7.89.192s9.598.021 9.598.021c-2.905-4.669-14.156-3.88-17.744-3.688s-4.984-.277-4.984-.277c.57-.277 1.168-.874 3.987-.895 2.82-.021 5.582.213 8.772-1.983s7.567-1.471 7.567-1.471c-1.063-2.103-6.114-2.842-10.557 0s-8.469 1.933-8.469 1.933c7.026-.995 9.076-3.468 9.076-3.468-2.127-.512-3.304.171-7.519.995s-5.355-.625-5.355-.625c4.633-2.757 7.861-3.866 7.861-3.866-3.949-.824-7.595-2.51-7.595-2.51-4.101 3.857-7.291 6.034-15.152 1.913s-11.962-3.638-11.962-3.638c6.912-4.093 14.013-2.331 19.178.767s6.646.568 6.646.568c-1.633-1.023-1.405-1.904-1.405-1.904 12.532 6.395 17.963 2.416 20.735.54s-1.253-4.377-1.253-4.377c-.266 4.065-5.393 5.912-9.418 4.548s-7.747-3.098-13.538-5.514-13.045-1.165-19.805.256-7.633.739-8.241.199-.949-2.189-4.405-.767c-3.456 1.421-11.507-2.359-16.52-3.553s-13.219-.541-20.317 3.354-10.595 2.928-12.722 1.961-3.456-3.638-1.177-6.026 2.468-3.041 2.279-6.481c-.19-3.439-3.57-5.486-3.57-5.486 3.114-3.212 3.874-3.922 2.81-5.315-1.063-1.393.608-1.364 2.393-2.16s.987-.91.57-1.961c-.418-1.052-1.443-.881-1.443-.881-4.139.171-6.418-.966-6.418-.966-6.855-3.155-13.216 2.984-13.216 2.984-3.894-2.983-4.785-1.052-5.469-.313s-2.051 1.251-3.874 1.421c-1.658.155-4.164.804-5.033 2.353 0 0-.768 1.245.19 2.608 0 0 1.064 1.605-.872 3.544-1.937 1.94-2.62 2.409-2.022 4.242s.427 3.24-.313 4.434c0 0-.883-1.023-.655-2.281s.228-1.983-.057-2.665c0 0-1.908 1.876-2.25 3.219 0 0-.797-2.068 1.965-4.839s4.021-4.151 3.247-5.223c-.57-.789-2.591.488-3.077.773z"
10
+ fill="#FFC221"
11
+ />
12
+ <path d="M732.94 366.24s-3.456-2.643-3.038-6.31.348-4.121-.035-4.889c0 0-.63.365-.611 1.791.018 1.338-.172 2.729-.304 2.984 0 0-1.785-3.041-2.506-3.61 0 0 .608-3.183-.38-4.548-.987-1.364-1.943-1.45-3.076-1.023-1.568.59-2.752 2.047 2.517 6.367 0 0 1.964 1.563 3.332 5.031 1.367 3.468 3.646 4.008 4.101 4.207zm17.128-10.147s-.266-2.075 1.595-5.742.745-6.391.327-7.301-.669-.572 1.208-2.148c2.31-1.939-.89-4.387 2.908-7.787 0 0 2.506-2.149 3.076-3.03 0 0-4.025 2.16-6.646 3.24-2.62 1.08-12.646 5.997-10.443 9.294s1.975 3.468 1.633 4.832c0 0-5.962-3.155-3.874-8.271 0 0 .947-2.061 3.456-4.377 2.279-2.103.911.455 5.544-2.189 0 0 3.684-2.189 5.62-5.145 0 0-2.43 1.535-3.304 1.791 0 0-5.355.966-7.519 3.24-2.165 2.274-6.76 6.225-5.203 10.63 0 0-5.355-.654-6.57-6.225 0 0-9.912 12.222 10.899 17.907.001.002 3.799 1.011 7.293 1.281z"/>
13
+ <path
14
+ d="M841.606 315.23c7.772-1.175 52.815-7.982 56.908-8.397 4.481-.455 6.197-1.053 7.671 2.558 1.671 4.093-6.152 4.15-6.152 4.15l-53.699 6.088c-2.634.304-3.223-.701-3.223-.701-.465-.858-1.363-2-1.982-2.748 0-.001-.707-.771.477-.95z"
15
+ fill="#FFC221"
16
+ />
17
+ <path
18
+ d="M731.61 339.66s-5.81 12.236 17.032 15.263c0 0 .057-1.364.968-3.283s2.905-5.798 1.025-8.314 1.538-1.194 2.051-4.477-.342-2.814 1.253-4.946c0 0-7.177 2.601-9.912 5.756-2.734 3.155 3.703 5.543-.114 8.996 0 0-3.19-1.151-5.07-4.605.002.001-4.441.087-7.233-4.39z"
19
+ fill="#5A3719"
20
+ />
21
+ <path d="M753.94 354.69s5.639 4.882 12.361 4.669 9.57-2.004 11.279-4.669c0 0 1.307 2.065 1.31 3.432 0 0 5.81-4.818 15.836-.64s6.95 3.03 9.171 3.327c0 0-4.262-.758-14.013 3.708-10.025 4.592-36.172 3.027-35.944-9.827z"/>
22
+ <path
23
+ d="M744.597 333.096s2.535.384 5.07-2.473c0 0-3.418.64-5.07 2.473zm-19.155 22.725s-4.713-3.709-1.694-4.434c0 0 2.15-.341 1.694 4.434z"
24
+ fill="#5A3719"
25
+ />
26
+ <path d="M828.049 379.017s2.506-4.48 9.741-4.48 8.089 3.326 17.203 3.965c0 0-10.944 3.084-18.57.256-3.987-1.478-7.576-.249-8.374.259z"/>
27
+ <path
28
+ d="M756.446 357.952s10.823 6.566 20.45-.554c0 0 .798.767 1.481 2.515 0 0 7.291-7.036 20.336.554 0 0-1.603-.178-7.747 2.473-8.004 3.454-28.026 5.714-34.52-4.988z"
29
+ fill="#5A3719"
30
+ />
31
+ <path d="M798.2 364.604s10.367 1.202 19.14.682c5.39-.319 11.222-1.306 8.317.52-2.905 1.825-1.481 1.996 10.937.845s-.114 2.345 8.431 3.453c0-.001-20.71 10.573-46.825-5.5z"/>
32
+ <path
33
+ d="M825.429 357.995s6.095-2.217 11.735.426c5.639 2.643 4.785 2.857 8.545 3.24 0 0-2.62 3.752-8.829.725-6.21-3.027-7.855-3.611-11.451-4.391zm6.779 18.717s5.98-2.983 12.591.118c.827.388 2.631 1.137 4.327 1.502 0 0-5.065 1.57-10.254-.043-2.157-.67-3.873-1.193-6.664-1.577zm-29.565-10.702s13.33 1.236 20.564-.205c0 0-8.374 4.042 12.646 2.166 0 0 4.671-.512 4.101.213s-.911 1.279 1.367 1.961c.001.001-15.607 6.993-38.678-4.135z"
34
+ fill="#5A3719"
35
+ />
36
+ <path d="M736.05 354.69s.114 1.023 3.076 2.345 4.557 3.688 5.184 4.967 2.136 3.193 4.586 3.803c0 0-10.45 2.181-15.133-3.255 0 0-3.551-3.916 2.174-7.86"/>
37
+ <path
38
+ d="M818.31 378.8s-4.158-.256-9.798-2.217c-5.639-1.961-7.121-.298-10.31-2.686-3.19-2.388-9.627-.895-10.823-.725-1.196.171-4.614 0-.342-2.771 0 0-3.418-.085-4.728-1.791 0 0-1.538 1.492-7.291.938 0 0 2.563 4.026-7.747 2.866 0 0 3.076 3.572 6.779 4.297s5.247.485 7.633-.213c0 0-.684 3.112 4.101 4.306s5.753 2.132 8.203 3.112c0 0 .342-2.004-6.038-6.651 0 0 3.418-.171 8.317 1.023 4.897 1.194 16.005 4.051 22.044.512zm2.582 4.775s1.025 2.388 4.177 1.848 8.336-1.464 13.349 1.094c0 0 .854-4.264-9.209-4.562 0 0-6.304.341-8.317 1.62zm-85.218-27.372s-3.874 3.183-.361 6.495c3.209 3.025 8.165 2.757 10.538 2.672 0 0-1.424-.81-2.677-2.686s-1.296-3.144-3.931-4.349c-2.734-1.25-3.057-1.577-3.569-2.132zm-4.064-16.542s-5.81 12.236 17.032 15.263c0 0 .057-1.364.968-3.283s2.905-5.798 1.025-8.314 1.538-1.194 2.051-4.477-.342-2.814 1.253-4.946c0 0-7.177 2.601-9.912 5.756-2.734 3.155 3.703 5.543-.114 8.996 0 0-3.19-1.151-5.07-4.605.002.001-4.441.087-7.233-4.39z"
39
+ fill="#5A3719"
40
+ />
41
+ <path d="M791.65 367.89s4.785-.767 16.975 3.795 17.26 3.411 19.083 3.283c0 0-6.876 3.592-17.526-1.097-9.417-4.147-10.044-2.57-18.532-5.981z"/>
42
+ <path
43
+ d="M867.962 365.158s2.783-.095 4.405.668c0 0 1.063-.91 3.608-1.18 0 0-1.671-1.677-8.013.512zm-8.335-6.75s2.791-.128 3.627-1.464c0 0-1.405-1.791-3.551-2.643 0-.001.436 1.904-.076 4.107zm-93.668-31.153s-.513-1.364 2.392-1.791c2.905-.426 40.881-5.841 40.881-5.841s2.013-.003 2.298 1.322c.308 1.432-.228 2.503-9.399 3.575s-33.381 4.099-33.381 4.099-2.564.427-2.791-1.364z"
44
+ fill="#FFC221"
45
+ />
46
+ <path
47
+ d="M803.004 325.621s0 5.372 5.469 6.168c5.306.772 7.13-.331 8.545-3.125.371-.734 1.999-6.343-.357-6.771-.926-.168-2.569-.072-3.744.43-1.83.782-3.528 1.698-2.924 2.615 1.291 1.961 1.543 2.416 1.063 2.558-1.312.389-2.277-.764-2.544-1.563-.333-.996.723-1.637-2.848-1.109-1.46.216-2.66.171-2.66.797z"
48
+ fill="#FFC221"
49
+ />
50
+ <path
51
+ d="M825.752 321.491c2.794.322 2.582 6.233-.76 8.905-3.599 2.877-7.033 1.848-7.033 1.848-1.816-.767-1.588-.512-.183-2.643 1.33-2.018 1.957-4.734 1.215-6.623-.237-.604.418-1.094 1.345-1.293.002-.001 2.53-.527 5.416-.194z"
52
+ fill="#FFC221"
53
+ />
54
+ <path
55
+ d="M828.182 322.011s1.994 2.509-.495 7.134c0 0-1.1 1.364 1.368 1.165s7.975-2.842 7.405-6.225c0 0-.19-.824-1.633-.739-1.443.085-.266-.796.342-.966s2.487-.867-2.392-4.008c0 0-.805-.725-1.747-.426-.744.236-3.343 1.302-3.343 2.814.001.62.495 1.251.495 1.251z"
56
+ fill="#FFC221"
57
+ />
58
+ <path
59
+ d="M833.518 317.761s3.893 2.79 3.874 3.619c-.019.829-.361 1.952.665 1.853 1.025-.099 5.241-.995 4.082-3.78-1.158-2.786-2.317-3.766-4.272-4.448-1.956-.682-2.449.242-4.12 1.506-.001 0-1.216.739-.229 1.25zm-21.058 3.937s.646-2.075-2.848-2.842c0 0 1.481-1.222 4.443-.568 2.942.649 2.628 2.587 2.605 2.842 0 0-2.301-.086-4.2.568zm7.596-.483s4.048-.709 5.848-.483c0 0-1.994-4.462-7.386-2.942 0 0 1.936 2.189 1.538 3.425zm6.93-1.109s0-1.364 3.437-2.729c0 0-1.668-1.57-3.987-1.421-2.658.171-3.19 1.137-3.19 1.137s2.886 1.002 3.74 3.013zm1.348-4.661s2.127.54 3.456 1.677c0 0 2.016-2.2 3.722-2.672 0 0-3.342-1.791-7.178.995z"
60
+ fill="#FFC221"
61
+ />
62
+ <path
63
+ d="M716.514 304.701s9.383-7.95 14.64-6.992c5.256.957 2.62.298 8.374-.597 5.753-.895 11.678-1.492 14.07-1.194 0 0-6.95-4.988-19.368-4.903 0 0-8.772 3.027-14.811 7.035 0 0-11.621-6.481-23.64-2.601 0 0 13.045 4.732 20.735 9.252z"
64
+ fill="#5A3719"
65
+ />
66
+ <path
67
+ d="M816.286 318.472l1.566-.263s2.644 3.274.723 3.311c-1.501.03-.894-.462-1.178-1.414-.285-.952-.797-1.378-1.111-1.634zm-11.791.256s-.94 1.169.826.895c2.151-.333 1.737.072 4.101-1.528 0 0 1.453-1.542 4.158-.582 0 0 2.279.746 4.13-.149s2.279-.831 3.275-.746c.997.085.93.3 2.26-.671 1.329-.971 3.636-.225 5.089-1.44 1.453-1.215 3.275-.192 0-2.537 0 0-.684-.682-.627-1.258 0 0 1.253.362 2.25 1.258.997.895 2.649.618 2.934.469 0 0 .171-2.921 3.076-5.607 2.905-2.686 2.934-2.899 1.225-2.921-1.709-.021-4.586-.682-5.554 0s-9.485 6.267-14.44 7.205c-4.956.939-9.513 2.346-12.703 7.612zm-132.242-30.555s15.209 3.922 18.627 5.571c0 0 .816-2.544-6.095-4.534 0 0 16.785-.512 34.558 7.561 0 0 8.567-7.346 36.137-5.072 0 0 .054-2.435.244-4.308 0 0-19.368-.568-37.141-11.369 0-.001-15.911 7.83-46.33 12.151zm84.534 7.347c-1.063-15.548 4.899-16.94 4.899-16.94s2.808.016 5.848.483c0 0-4.709 5.599-3.456 16.713 0 0 .494 1.791-3.494 1.791-3.924 0-3.797-2.047-3.797-2.047z"
68
+ fill="#FFC221"
69
+ />
70
+ <path
71
+ d="M760.85 305.81s-2.886-2.956-3.19-6.367c0 0-.076-.881 2.848-.796s3.306-.281 4.025 1.421c.7 1.655 2.544 5.145 3 5.543l-6.683.199z"
72
+ fill="#5A3719"
73
+ />
74
+ <path
75
+ d="M767.096 298.048a36.973 36.973 0 01-.321-5.91c.19-8.669 1.629-7.899 2.199-6.818l2.966.054s-2.165-9.778-4.709-4.065c-2.5 5.612-2.317 9.266-2.013 13.7.175 2.554.512 4.144.797 5.1l1.081-2.061z"
76
+ fill="#FFC221"
77
+ />
78
+ <path
79
+ d="M800.593 298.071s5.725.874-3.048 2.963c0 0 .427 10.6 10.795 3.176 0 0 6.124-3.915 10.367-5.507 0 0 2.136-.739 1.88-2.338 0 0 .171-1.883-2.051-1.514 0 0-1.75.041-2.877-.37 0 0-1.225-1.442-2.051-.888s-2.763.234-1.253 2.068c1.51 1.833 1.965 1.364 2.706.831.741-.533 4.016-1.833.997.874s-5.383-1.492-6.352-2.26l-9.113 2.965zm-28.653 1.201l-2.544-.057s-1.367 2.047-2.3-1.167l-1.08 2.06s3.152 11.382 5.924-.836z"
80
+ fill="#5A3719"
81
+ />
82
+ <path
83
+ d="M768.332 286.14s-1.291 7.447.342 12.052l27.533.512s-.342-5.344.076-12.563h-3.911s-.532 5.997-.038 9.692l-.645.013s-.494-5.186.037-9.705h-3.228s-.532 5.543-.114 9.749h-.608s-.456-4.86.076-9.749h-3.19s-.586 5.02.041 9.68l-.762-.016s-.646-5.088.038-9.664h-3.532s-.873 4.69-.038 9.721h-.722s-.797-4.804.076-9.721h-3.532s-.835 5.315-.114 9.721h-.684s-.57-5.145.19-9.721h-3.304s-.873 4.491-.152 9.721h-.722s-.532-3.894.152-9.721h-3.265zm29.09 13.587s-.762-13.474 1.823-16.94c2.585-3.466 3.114-2.786 7.519 0 4.405 2.785 10.102 5.798 11.013 6.139.911.341 2.203.682 2.203 3.127s.456 3.183-3.342.114c-.569-.46-2.345-2.085-3.627-2.494-3.403-1.086.818.762 2.032 2.494 1.029 1.468 1.823 1.307-.835 1.99s-11.849 3.751-16.786 5.57z"
84
+ fill="#FFC221"
85
+ />
86
+ <path d="M807.06 290.08s-1.994-2.519.541-3.095 2.734 3.986 3.161 6.736c.428 2.75-3.189-2.779-3.702-3.641zm-3.702 11.742s-2.962 1.087-1.025 2.046 7.405-3.581 5.526-3.283c-1.881.299-4.501 1.237-4.501 1.237zm4.016-4.157s2.62-.256 2.108.874c-.513 1.13-1.453.412-1.851.163-.4-.248-2.251-.888-.257-1.037z"/>
87
+ <path
88
+ d="M821.328 294.141s.703 5.13 5.108 6.431c0 0 2.544.632 2.013-1.613 0 0-.437-1.876-.797-2.658-.361-.782-2.127-1.279-2.317-1.364s-.418-.625.798-.227c1.215.398 1.405.441 1.31-.412-.095-.853-.81-.51-1.926-1.055-.429-.21.046-.494.502-.394.456.099 1.538.426 1.557-1.336 0 0 .241-.98-1.101-1.052-1.462-.078-1.348-.732-.892-.831.456-.099 1.986.961 2.411-.782.437-1.791-2.108-.76-1.766-1.684s2.145.528 2.295-.568c.145-1.066 1.602-1.53-.879-1.874-1.177-.163-.089-.685 1.233-.499 1.415.199 2.269-1.549 3.086-2.118.817-.568 5.431-3.325-.721-2.416-6.153.909-7.956 3.894-8.355 4.491-.401.596-2.11 4.12-1.559 9.961z"
89
+ fill="#FFC221"
90
+ />
91
+ <path
92
+ d="M835.661 298.117c.791-.152 1.538.063 1.807.614 1.013 2.078-1.31 1.336-2.601 2.871s-1.329 1.222-3.152.685c-1.823-.537-2.506-3.3-2.506-3.3-.204-.848.584-.92 1.528-.812-.001.001 3.022.309 4.924-.058zm-6.662-1.105s.128.622 1.172.707c1.044.085 4.078.348 5.882-.234 0 0 .665-.131.366-1.306 0 0-.024-.762-1.648-.453s-3.973 0-4.756-.171c-.783-.17-1.42.015-1.016 1.457zm-.247-3.723s-.057 1.62 1.576 1.833c1.633.213 3.666.205 4.513.038.646-.128 1.81-.364 1.905-1.317.095-.952.361-1.663-1.652-1.165-2.013.497-4.443.171-4.69.114-.247-.057-1.614-.47-1.652.497zm.741-3.269s-.399.739-.342 1.45c.057.711 1.234.952 3.361.981s4.025-.284 4.158-.995c.133-.711.646-1.535-1.025-1.279-1.671.256-3.779.327-4.614-.014-.836-.342-1.398-.46-1.538-.143z"
93
+ fill="#FFC221"
94
+ />
95
+ <path d="M907.571 298.263s-.028 1.482 1.139 2.942l-59.029-1.695s.862-.533 1.082-2.832l56.808 1.585z" fill="#5A3719"/>
96
+ <path
97
+ d="M829.967 287.576s-.513 1.492.551 1.791c1.063.298 2.886.625 5.298.242 0 0 1.215.085 1.633-1.208s.375-.568-3.059-1.251c0 0-1.081-.315 2.053-.327 0 0 1.747.057 2.013-.242.266-.298 2.582-2.132-.418-2.018-3 .114-1.519-.526 0-.526s1.994.313 2.487-.171c.494-.483.038-.156-.779-.981-.816-.824-.247-.583.342-.128s.949.597 1.614.014c.665-.583-.513-1.435 0-1.336.513.099.76 1.073 2.696.135s4.557-.448 5.269.085c.712.533 2.734 1.215 3.959-.043s-1.453-2.281-.313-2.452 1.937.234 2.393-.682c.456-.917-1.766-1.791.37-2.366 2.136-.576.342-6.566-.399-7.12 0 0-2.392 1.407-5.013 5.649s-4.158 6.715-7.719 5.415c-5.136-1.876-7.761.821-8.556 1.307-1.232.753 2.575 1.123.354 1.165-2.222.043-2.222.234-2.449.576-.228.341-.029.64.37.661.399.021 1.253.874-.114.831-1.367-.043-2.336-.256-1.934 1.197 0 0 .025.317.823.402.797.085 1.082.917-.399.917-.95.002-1.045.37-1.073.464zm5.459 14.801s-1.054.746.399.831 2.222.362 2.677-.416c.456-.778 2.421-.458 1.111-1.546-1.31-1.086-2.193-.468-4.187 1.131z"
98
+ fill="#FFC221"
99
+ />
100
+ <path
101
+ d="M841.52 284.62s4.915-4.626 9.023-1.492 4.506 3.603 4.563 3.667.484.405-.627 1.386-.029.959 1.196.362 1.31-.043 1.908.618 1.398 1.045-.497 1.066-5.968 0-5.968 0-2.763.234-1.367-.895c1.396-1.13 1.196-2.473.484-2.558s-.057.682-.484 1.215-1.396 1.023-2.364 1.002-1.823.701-.285 1.257c1.538.555-.171.919-.968.897s-4.643.298-.74.767c3.902.469-.352.356 2.506 1.989 3.161 1.806.883 5.643-.313 5.984 0 0-1.31.713.342.516 1.652-.196 2.563-.431 1.396.464-1.168.895-3.503 3.88-6.75 1.599 0 0-1.481-.703 1.168-.831s-2.165-.694-2.962-1.232-3.845-3.65-1.937-3.266 1.225-.725.085-1.13-1.367-2.153-.085-1.769 2.791 1.098 3.817 1.05c1.025-.048.741-.475-1.453-1.157-2.193-.682-3.105-.789-2.592-2.643s2.905.725 2.336-.661-2.649-.703-1.538-2.537c1.111-1.833 1.367-1.045 1.88-.81s1.333.06-.114-1.023c-.913-.684.082-1.609.34-1.835z"
102
+ fill="#FFC221"
103
+ />
104
+ <path d="M845.053 285.899s-.029-.618.854-.512c.883.107.655-.32.911-.448s2.466.658.399 1.407c-.764.277-1.964.079-2.164-.447z"/>
105
+ <path
106
+ d="M849.753 291.143s-1.661.846-.157 2.589c1.282 1.486 1.275 1.957 1.168 2.945-.108.988 56.807 1.585 56.807 1.585s-.1-3.656 2.336-5.713c0 .001-31.102-.724-60.154-1.406z"
107
+ fill="#FFC221"
108
+ />
109
+ <path
110
+ d="M908.54 297.261s.231-3.084 1.937-4.106c.94-.563 2.18-.235 2.721 2.251.77 3.536-2.227 6.544-3.618 5.201-1.325-1.278-1.04-3.346-1.04-3.346z"
111
+ fill="#5A3719"
112
+ />
113
+ <path
114
+ d="M843.32 310.56s3.788-3.219 4.358-4.669c0 0 10.254 7.264 9.627.594 0 0 .029-1.788.313-3.493 0 0 3.707.364 4.272-2.596l-9.57-.282s-.997-.213-2.478 1.386-4.529 3.349-7.377 1.823c0 0-1.192-1.035-2.405-.161s-1.27 1.13-.273 2.068c.998.939 3.134 3.817 3.533 5.33zm22.017-20.06l-5.611-.213s-2.051-2.878-6.038-6.076c0 0-1.168-.512 1.082-2.302 2.25-1.791 2.905-3.709 2.991-4.583s-.142-2.238.712-1.194c.854 1.045 6.665 6.289 7.491 4.733s.968-2.281 1.111-2.75.342-1.919 1.168-.405 1.393 1.127 1.424 5.052c0 0 .142 3.88.741 5.287-.002 0-7.35-2.354-5.071 2.451zm-24.353-11.938s4.272 2.388 6.38-.853c2.108-3.24 3.532-3.752 1.937-6.864s.044-4.562 1.247-5.841 2.228-1.066 2.399-6.012 3.589-6.608 5.127-8.143 5.412-3.88-.456-4.86c-5.867-.981-17.488-4.008-20.507-8.527s-4.386-1.833-4.443-1.663c-.057.171-1.025 3.496 1.994 9.508s5.582 9.877 8.488 11.824c2.905 1.947 5.526 3.013 4.044 7.021-1.482 4.007-4.045 11.17-6.21 14.41z"
115
+ fill="#7B3C20"
116
+ />
117
+ <path
118
+ d="M856.76 265.78s.741 10.275 8.26 13.942c0 0 1.709-4.008 1.025-7.973 0 0 2.449.213 3.133 1.322 0 0 .114-2.984-3.418-4.072-3.532-1.087-1.823-7.781-.57-8.548s.854-2.103 0-3.311-1.082-3.041 1.88-2.274 2.506-.81.741-2.26-1.709-3.24.797-3.24 6.665-2.43 4.158-3.198c-2.506-.767-3.304-1.577.114-2.558s5.07-2.217 2.506-2.515c-2.563-.298-4.272-1.194-1.766-1.62s-.456-2.984-3.361-3.112-9.171 1.066-4.215-2.899-7.121-1.066-2.165-3.667-1.652-1.45-2.563-1.492-.901 0-.565-1.322c.337-1.322-.689-1.919-2.113-1.109s-1.424.81-1.367-1.023-1.709-.469-2.791 0-3.817 2.515-4.899 1.407-1.709-2.26-5.07-.213c-3.361 2.046-2.563.213-2.506-.682s1.31-4.434-3.304-.64c-4.614 3.795-.854-4.093-4.5-1.407s-4.044 3.155-4.614 1.961-1.26-2.174-5.273.384-1.05-1.535-.481-2.43 2.279-6.694-1.253-2.174c0 0-1.709 3.155-5.526-2.473 0 0-4.044 5.591-5.07 3.115-1.025-2.475-2.051-2.731-3.361-1.111s-.342-.085-.911-1.45-.911-3.88-7.633 1.023 2.336 1.322-2.791 3.539-17.488 9.209-6.152 7.589-5.526 4.434-1.595 5.543 2.677 4.519 17.431.469 12.361-.64 19.88-3.88-1.709 1.109 8.374.895c10.083-.213 1.709.043 3.646 2.132s10.481 7.035 18.456 7.845 9.912-2.174 7.633 1.279-3.076 4.775-4.443 5.969-5.127 3.922-5.184 8.698c-.057 4.775-6.266 5.543-3.987 10.829a600.8 600.8 0 005.413-5.288z"
119
+ fill="#5A3719"
120
+ />
121
+ <path
122
+ d="M869.88 277.27s-1.823-1.279-1.785-3.553c0 0 1.291.227 1.785 1.052 0 0 4.595-5.202-.893-7.077-5.487-1.876-2.754-6.85-.893-6.879s2.185-.54.618-2.615-1.453-2.16 1.661-2.7 2.691-1.194 1.307-1.961c-1.383-.767-2.444-2.018-2.444-2.018s8.808-3.837 5.959-5.599 0-1.307 2.544-3.127c2.544-1.819 2.886-2.16 3.266-2.871 0 0-2.515.256-4.371-.114 0 0 2.198-1.08 0-2.871-2.199-1.791-3.11-3.411-6.604-2.587s-2.355-.341-.987-1.791c1.367-1.45.721-2.274-1.747-2.643 0 0 .304-1.478 2.165-3.326 0 0-4.747.341-6.342-.483 0 0 1.899-1.307 2.051-2.871 0 0-2.62.853-5.924.54 0 0 1.937-1.677 1.937-3.155 0 0-5.734 1.279-8.393 3.297 0 0-.57-.114-1.025-.739-.456-.625-.798-1.251-7.14.767 0 0 .722-2.814 2.241-3.951s1.291-3.411-8.583 2.757c0 0-1.329-.796-2.43-3.752 0 0-2.127 3.013-3.76 4.036 0 0-1.367.574-1.196-1.347s-.968-.552-1.994 0c-1.025.552-1.709 1.916-1.196-1.964s-1.367-4.69-1.367-4.69-3.076 4.349-4.842 4.818c0 0-3.247-3.155-4.386-5.244s-1.139-2.857-2.279.767c-1.139 3.624-2.563 3.922-2.563 3.922s-1.937-1.663-2.165-2.558c0 0-.342.981-.968 1.407 0 0-1.709-2.004-1.652-4.903 0 0-10.595 5.841-11.905 9.38 0 0-10.026-.597-14.184.171 0 0 1.025-3.24 3.646-4.86 0 0-2.62-.298-2.734-2.984 0 0 2.108.298 3.418-.043s-1.823-4.136 1.481-4.221 5.412 1.577 3.93-2.814c-1.481-4.391-.797-4.391-.797-4.391s5.753 3.411 6.665 2.558-.741-2.686 4.386-1.833 3.703-2.089 5.696-2.217c1.994-.128 3.076 1.279 1.823-8.015s6.209 4.605 1.139-9.422c0 0-1.282-4.242-4.329-6.054 0 0-.684 3.07-4.13.362s-10.225-3.667-7.377-5.798c2.848-2.132 4.187-4.988 3.361-6.779 0 0-3.359 3.511-9.2 1.002-4.614-1.983-5.582 1.663-10.31.597 0 0 .085-1.215 4.073-4.349s-2.307 1.045-4.785 1.599-3.19.107 2.051-3.944c5.241-4.05 15.608-11.213 14.184-17.097 0 0 2.449 3.112 8.886.853s11.222-3.07 13.159-6.395c1.937-3.326 7.007-6.694 8.317-7.419s3.076-1.236 1.082 1.919-5.241 8.57-14.127 12.236c-8.886 3.667-12.304 6.353-13.899 8.271-1.595 1.919-9.684 6.225-4.443 5.5s14.355.128 10.083-1.109c-4.272-1.236-9.114.767-5.184-2.814s4.614-4.775 10.31-7.163 12.019-7.845 11.393-2.047c-.627 5.798-11.222 11.981-13.842 13.856-2.62 1.876-1.652 1.578-1.595 2.345s-.399 2.345-1.481 3.07-.741 1.535-.456 3.155-.285 2.26.513 2.515 1.595.384 1.823 1.535.826 1.3 2.364 1.172 2.506.021 2.62.917c.114.895 1.566 2.11 1.737-.618.171-2.729 1.168-3.262-1.623-2.004s-3.389.81-3.332-.49-.256-1.002-1.424-1.109-1.567-1.748.513-2.835c2.079-1.087 2.051.021 4.643-2.132s2.592-2.75 2.991-3.752-3.703 2.921-5.668 3.816-1.453-.618-1.111-2.857 5.241-5.159 7.491-5.202 7.32 1.279 5.127 4.349-8.402 6.715-5.725 6.992 3.105-.767 4.643.597.114 4.136-.598 5.607-2.193 3.326-2.848 3.667c0 0-2.82-5.031-2.734-1.045s-.598 5.415 0 5.564 3.731 2.238 4.728 2.281-5.412 3.006-2.734 3.198c2.677.192 6.921-1.172 8.402-3.944 0 0-5.44-1.322-7.633-3.368 0 0 6.352-1.492 4.586-7.61 0 0 6.323 1.727 3.589 4.583-2.734 2.857-4.386 2.43-2.022 3.24s3.532 1.492 3.532 1.492 1.617.81.68 2.132-.965 3.326-.168 3.283 3.475-1.279 1.225-2.643 2.563-1.13.513-2.281c-2.051-1.151-2.592-1.428-3.133-1.983-.541-.554 25.748-15.967 12.475-10.19 0 0 2.763-5.99 6.636-6.012s4.158 3.048 1.965 5.372-3.617 5.948-8.772 6.8c0 0 7.367 3.61-1.339 9.508 0 0-1.889.895-1.206 1.549.684.654 5.848-2.274 6.57-3.922.722-1.649 1.823-2.928 3.798-3.894s11.697-7.589 14.621-12.592 3.722-5.173 9.418-9.749 4.709-3.667 5.431-4.775 1.025-2.928 3.646-4.406 12.798-7.134 15.988-9.437c3.19-2.302 9.722-6.537 12.532-10.119 2.81-3.581 10.378-8.156 12.266-7.305 1.889.851-.19 3.525-4.633 6.907s-15.456 12.279-17.241 13.643-11.127 8.186-14.621 8.641-3.114 1.677-5.203 3.951-6.912 7.049-8.545 8.357c-1.633 1.307-5.507 3.979-5.734 5.855-.228 1.876.684 2.103-2.43 5.031s-12.228 9.55-15.532 10.602c0 0 5.848 1.933 2.354 5.884s-3.266 3.382-3.532 3.638c0 0 8.88-1.307 2.582 5.599 0 0-1.215 1.99 1.595-.085 3.004-2.218 1.709-5.258 1.367-5.685 0 0 4.709-2.928 10.14-3.013s5.241-.455.38-1.848c0 0 3.456-4.207 6.38-2.132s1.975 3.269-1.101 4.917c-3.076 1.649-7.633 2.331-11.013 4.207 0 0 6.418 1.251 9.874-1.364s3.608-1.307 4.063-.853c.456.455.836 1.307-.684 3.496s-1.671 2.302-1.595 2.786c.076.483-.114 1.99-3.228 2.501-3.114.512-4.519 1.819-3.456 3.297s1.101 5.145-1.557 4.804-1.937-2.444-2.962-3.269c-1.025-.824-2.468-2.103-7.102.313-4.633 2.416-5.013-.455-4.785-1.961 0 0-3 2.615-5.507.199-2.506-2.416-.228-3.354 1.215-4.576s7.329-3.78 3.798-3.326-8.81.682-10.026-2.046c-1.215-2.729 2.62-2.416 3.228-2.16s3.114 2.274 3.19-.37c.076-2.643 3.987-2.928 2.658-3.468s-3.19 1.137-3.722 1.791c0 0-2.734-3.809-7.139-2.558s1.405.739 2.582.938.494 2.388-3.456 5.941-2.165 2.473.76 2.473c2.924 0 10.102.028 5.924 3.439s-5.848 5.116-8.013 4.519.266-2.018 1.215-2.615 1.519-1.649-.532-.881-2.772.91-4.405-1.99c-1.633-2.899-.949-2.046-.266-3.951.684-1.904 2.279-3.922.38-3.212s-1.709.767-1.557-1.421c.152-2.189-2.165-2.672-2.165-2.672s.911 2.189.076 3.581-.873 1.876.494 2.245c1.367.37 2.658 1.535.797 2.814s-1.633 1.109-.456 1.876 2.886 1.649 1.063 3.439-.304 1.251.608 1.251 2.974.767 3.006 2.53c.032 1.762-.12 2.189 2.842.54s8.886-1.45 8.81.853c-.076 2.302-.76 2.871 2.393.91s4.557 1.848 6.722 0 3.532-3.638 6.038-.483 1.725 4.109-1.329 6.338 1.481.512 3.798-.682 8.81-1.99 12.532-.341 4.785 1.279 7.519.142 4.139-1.393 8.279 1.364c4.139 2.757 7.367 3.269 9.532 3.212 0 0-4.595 1.791-9.76 2.132s-7.747 1.307-8.772 2.103c0 0 3.106 1.876 3.718 4.178 0 0 3.384-.455 5.055.227 0 0-.873 2.444 1.215 3.752 2.089 1.307 3.532 1.791 1.975 3.581-1.557 1.791 2.393 1.023.152 3.553s-2.848 3.809-2.924 5.855c-.076 2.047.494 2.359-1.519 2.558s.342 2.444-.57 5.116c-.911 2.672-6.532 2.388-6.304 9.55 0 0 1.557-3.496 4.899-6.566s3.456-3.354 3.38-5.202-.228-1.421 1.557-2.814-.797-2.7.987-4.69c1.785-1.99.228-1.592 2.317-3.61s-1.823-2.274.304-4.349-5.127-4.434-3.038-5.77 5.696-3.183-6.456-2.984c0 0 2.924-4.832 13.178-3.78 0 0-2.696 1.904-2.924 3.78 0 0 1.177.597 1.899.767 0 0-.397 1.375-2.354 3.041 0 0 5.431 3.041 6.304 4.832 0 0-3.304 1.023-4.139 2.473 0 0 1.443 1.649 1.937 3.78 0 0-3.684-.455-4.177 2.302-.494 2.757-1.595.881-1.595 2.501s.114 2.274-1.177 2.53-.228 1.62 0 2.53.646 2.984.456 3.638c0 0-1.861.028-2.734.284 0 0 .57 3.951-1.633 4.519s1.177 1.364-1.177 1.791c-2.355.426-2.051.568-4.937 5.742 0 0 2.468-1.393 5.013-3.07 2.544-1.677-.19-1.165 4.025-5.315s3.456-4.463 3.114-6.566-.418-3.809 1.101-5.798c1.519-1.99 2.013-4.264 7.405-3.979 0 0-1.595-3.588-3.57-4.522 0 0 2.582-1.788 5.317-2.043 0 0-2.393-2.871-7.291-5.656 0 0 4.025-3.468 4.975-5.116 0 0-1.861.284-3.342-.057 0 0 .698-1.659 4.329-4.036 0 0 1.937 1.876 1.861 3.837 0 0 6.228-3.581 9.76-3.183 0 0 1.785 4.491-6.874 12.904 0 0 5.355.512 7.633.199 0 0-1.291 4.15-7.785 6.594s1.404 5.301-5.241 4.804-4.595 1.791-4.405 5.173.418 6.85.266 7.788c0 0-5.317-1.734-5.203 3.411s-2.734 6.225-3.304 6.708c0 0-1.543-1.379-3.874-2.189-.005.005-3.303 6.267-8.626 9.925z"
123
+ fill="#5A3719"
124
+ />
125
+ <path
126
+ d="M862.28 212.78s1.823-.298 4.899 1.62 6.095-2.046 2.677-3.07.057-2.217 3.133.256 4.272 1.236 5.412.384 2.506-1.322.399-2.771c-2.108-1.45 1.424-.767 3.019.256s.968 2.089.741 2.388-.399 3.624 2.734.512 4.671-6.225 4.614-7.76c0 0 1.709 1.066 1.937 3.027s2.62-1.066 3.418-2.132c.797-1.066 2.165-3.756 1.994-5.779 0 0 2.108 3.26 5.241 0s1.766-1.213 5.526-2.194 8.488-3.752 11.051-6.864 2.734-1.023 6.038-1.791c3.304-.767 9.969-5.372 10.595-7.888.627-2.515.513-4.05-.456-3.198s-.57.171-1.994-.725c-1.424-.895-3.532 1.151-3.532 1.151s2.108 1.62.513 2.302-3.133 2.942-6.152 2.089-6.152 2.771-6.152 2.771 2.62 2.174-.911 3.539c-3.532 1.364-2.962 1.833-5.127.341 0 0-3.76 4.775-5.924 5.756 0 0-1.025-.085-1.709-.981 0 0-2.449 2.771-3.703 3.326 0 0-1.538-1.492-2.962-1.961 0 0-2.962 3.667-5.469 4.818 0 0-.741-1.364-2.336-2.302 0 0-.788 4.796-6.038 7.632 0 0 .342-1.279-2.279-3.027 0 0-6.494 5.628-9.057 6.182s-.171-1.194.171-1.919 1.937-3.112-1.196-4.093-2.62.682-3.304.981c-.684.298-.741-.554-2.848-.256-2.108.298-1.766 1.236-2.677 1.578-.911.341-4.557-.597-4.386 1.833s1.88 4.093-1.31 5.5c-3.192 1.407 1.195 1.109 5.41.469z"
127
+ fill="#7B3C20"
128
+ />
129
+ <path
130
+ d="M875.44 205.92s.741-3.07-1.937-4.562c0 0 17.203-2.643 4.215-9.209 0 0 15.437-3.198 11.792-8.143-3.646-4.946-7.19-3.837-7.725-3.752s3.282-2.857 4.307-2.473 13.444 5.159 10.254 1.066-2.905-3.837-3.418-5.031c0 0 4.101 0 10.311 6.054 0 0 1.31-1.364 1.139-3.837 0 0 4.443 1.236 5.81 2.558 0 0 .741-1.535.456-2.388 0 0 3.817 2.046 5.127 4.221 0 0 1.766-1.535 2.051-3.283 0 0 3.817 1.578 4.785 2.771 0 0 1.253-1.663.797-4.05 0 0 6.323 1.876 7.177-2.046 0 0 6.361 1.379 2.227 3.855-5.313 3.183-.537-.785-5.987 3.009-4.226 2.942-6.589 6.395-8.621 5.685-1.493-.522-3.285 3.823-5.336 1.691s-2.051-1.151-3.475 1.066-3.646 4.477-3.646 4.477-1.109-.64-1.95-1.492c0 0-1.24 2.046-2.835 3.581 0 0-1.253-1.663-3.247-2.686 0 0-3.133 3.624-5.07 4.86 0 0-1.823-1.791-3.76-2.388 0 0-.285 4.903-4.101 7.419 0 0-.797-1.62-3.247-2.601.002 0-1.935 3.1-6.093 5.628z"
131
+ fill="#5A3719"
132
+ />
133
+ <path
134
+ d="M866.39 198.41s-2.09 1.606-.741 3.326c1.349 1.719 1.424-.298 3.133-.469s22.786-3.795 3.703-9.508c0 0 .797-.725 4.101-1.023s15.266-3.539 9.684-7.802c-5.582-4.264-10.225 1.449-5.526-3.667 3.76-4.093.741-6.097.741-6.097s-11.108 7.419-13.557 8.783-5.981 3.965-1.823 5.329 7.007-4.519 7.405-3.198c.399 1.322-8.374 6.182-7.12 8.442 1.253 2.26.968 4.136 3.133 3.709 2.165-.426 8.032 1.109 3.247.938s-6.38 1.237-6.38 1.237z"
135
+ fill="#5A3719"
136
+ />
137
+ <path d="M874.02 187.798s-1.937 1.361.627.679c2.563-.682 7.69-1.791 6.722-3.112-.97-1.322-4.387.262-7.349 2.433z"/>
138
+ <path
139
+ d="M907.86 165.8s9.798-.256 13.842 2.473 5.981 4.519 7.177 4.903c0 0-.171 3.709-6.437 1.066 0 0 .342 1.791-.342 3.539 0 0-2.336-1.535-5.013-2.217 0 0-.456 1.407-1.31 2.217 0 0-2.791-2.814-5.924-3.667 0 0-.627 1.407-1.196 1.919 0 0-3.361-1.919-5.924-1.876 0 0 .513 2.047 0 2.857 0 0-7.121-5.585-13.444-4.86 0 0 3.076 4.477 5.07 6.694 0 0-12.817-1.023-10.709-7.93s-.171-5.172 8.203-5.123 16.007.005 16.007.005z"
140
+ fill="#7B3C20"
141
+ />
142
+ <path
143
+ d="M847.76 184.88s-1.481 1.207 0 2.231c1.481 1.023 6.551-2.643 7.234-3.155.684-.512 2.506-.426 0 1.45s-5.07 3.922-6.665 5.969c0 0 8.488-2.302 14.013-7.077s-.257-1.682 9.171-6.225 14.355-11.853 9.285-11.085c-5.07.767-9.627 6.566-13.557 8.783s-6.152 2.515-5.526 1.236c.627-1.279 3.532-.767 8.943-5.116 5.412-4.349 4.215-4.05 4.272-5.585s-2.051-5.329 6.095-9.593 33.495-19.101 35.659-24.174c0 0-7.405.81-17.146 8.015s-14.956 10.574-17.646 11.469-2.348.298-4.114 2.388c-1.766 2.089-11.393 11.384-13.159 12.748s-2.279 2.26-2.43 5.041c-.066 1.267-11.068 9.554-14.429 12.68z"
144
+ fill="#5A3719"
145
+ />
146
+ <path
147
+ d="M881.25 165.56s-1.88.873-3.703 0-1.253-4.796 3.133-7.141 12.361-5.841 16.406-6.353c0 0-.57 5.074-13.159 9.337 0 0 .798 2.642-2.677 4.157z"
148
+ fill="#5A3719"
149
+ />
150
+ <path
151
+ d="M885.7 162.26s.366 1.248 0 2.388c0 0 23.412 2.26 35.489-11.981 0 0-16.577 1.535-23.184 5.5 0 0 4.158-5.202 16.577-9.508 12.418-4.306 17.488-9.636 18.57-12.577 0 0-15.705 5.5-23.184 5.5 0 0-1.481-.043-2.905.767s-11.45 8.101-14.127 9.337c0 0 5.639-.469 7.633-2.302-.001 0-3.92 10.539-14.869 12.876z"
152
+ fill="#AA5323"
153
+ />
154
+ <path
155
+ d="M840.87 175.64s-3.019 2.132-1.766 3.198 3.411 1.279 8-2.558 15.697-13.388 8.678-13.771c0 0-8.988-.554-8.678 4.946.314 5.554-5.783 7.836-6.234 8.185zm-20.735-3.241s5.924 3.453 3.703 6.31c0 0 18.172-15.434 13.045-18.76s-9.171 2.942-7.918 3.581c1.253.64 3.93-.554 2.962.64s-10.652 7.718-11.792 8.229zm-4.728-4.988s3.987 1.194 4.158 2.899 12.019-8.357 8.886-12.577c-1.437-1.935-8.032-2.729-8.317 1.066s5.924-.384 3.76 2.345c-2.838 3.578-7.632 5.67-8.487 6.267zm42.642-8.408s-2.539 1.842-.26 2.951 3.76-.64 4.899-1.663 6.779-5.159 8.089-7.802 3.247-3.453 5.298-4.818c2.051-1.364 16.52-8.57 25.406-16.543s5.184-5.926 14.412-11.043c9.228-5.116 15.266-9.806 17.203-15.349 0 0-4.272 1.407-8.032 3.837s-12.247 7.76-13.956 8.484-4.101.853-5.355 2.174c-1.253 1.322-1.139 2.899-5.583 6.566-4.443 3.667-27.4 19.868-30.191 22.17-2.791 2.305-11.93 11.036-11.93 11.036z"
156
+ fill="#5A3719"
157
+ />
158
+ <path
159
+ d="M839.58 164.37s2.506-1.382 7.215-1.06c4.709.321 23.317-17.699 28.71-21.337s22.254-15.804 24.533-18.021 2.658-4.605 4.633-5.912 3.798-1.137 8.355-3.752 26.431-15.69 25.14-23.307c0 0-32.583 19.555-40.103 25.922-7.519 6.367-28.406 20.806-32.128 23.137s-6.684 6.367-12.912 11.426-12.379 9.322-13.443 12.904z"
160
+ fill="#AA5323"
161
+ />
162
+ <path
163
+ d="M832.74 157.44s6.03-.617 6.836 2.331c0 0 12.912-8.868 15.874-12.506s-.987-1.535 6.38-6.367 31.824-21.943 35.318-25.013 10.102-7.106 15.418-10.687c5.317-3.581 26.128-13.757 23.773-22.114 0 0-15.266 10.232-18.684 12.45-3.418 2.217-4.861.966-8.355 3.695s-11.165 8.186-12.532 9.891-13.064 10.687-18.76 14.496-18.456 11.199-24.609 16.543c-6.153 5.343-18.077 15.235-20.659 17.281z"
164
+ fill="#AA5323"
165
+ />
166
+ <path
167
+ d="M813.95 155.69s3.051.044 3.962 1.238c0 0 5.64-4.947 11.64-.058 0 0 22.026-14.894 24.229-18.646s5.772-3.809 14.355-10.062 13.975-8.868 19.672-13.302c5.696-4.434 10.481-9.437 14.583-12.108 4.101-2.672 14.431-9.437 12.684-15.292 0 0-8.355 4.775-13.823 10.744s-5.013.853-10.557 5.855c-5.545 5.003-14.127 11.824-21.267 15.349s-2.81 3.127-7.975 6.424-4.785 2.786-6.684 3.24c-1.899.455-4.785 1.819-6.684 4.036s-6.988 5.23-12.532 8.357c-5.545 3.126-19.178 11.241-21.603 14.225z"
168
+ fill="#AA5323"
169
+ />
170
+ <path
171
+ d="M820.59 144.26s-1.196-2.473.911-4.221c2.108-1.748 5.924-6.353 6.551-9.252s.171-2.43 6.266-4.946c6.095-2.515 19.937-8.996 27.742-13.814 7.804-4.818 19.653-12.577 22.102-14.453s8.393-6.054 10.804-8.015c0 0 1.158 3.283-1.462 5.543s-12.703 9.337-14.355 10.446-10.937 7.333-13.785 8.911-9.912 5.159-12.418 7.248-2.184 2.729-13.368 8.186-11.697 6.012-11.355 6.438 5.355-1.748 7.747-3.155c2.393-1.407 11.564-5.585 14.298-7.76 2.734-2.174 7.348-5.585 9.342-6.694s18.513-11 23.241-14.496 6.038-4.647 7.064-4.05c1.025.597 2.677.64.57 2.643-2.108 2.004-8.829 7.888-11.393 9.593-2.563 1.705-10.595 6.481-12.817 7.632s-3.076 3.283-4.329 4.178-4.899 3.496-9.342 4.519-5.241 4.349-8.146 6.225-23.579 13.004-24.206 13.558c0 0 1.25-1.28.338-4.264z"
172
+ fill="#AA5323"
173
+ />
174
+ <path
175
+ d="M892.13 97.834s-1.139 1.009-.513 1.578c.827.75 3.703 2.771 7.291-.789 3.589-3.56 13.23-11.32 16.356-13.153s4.607-3.581 4.493-6.097c.001 0-14.81 7.888-27.627 18.461zm20.393-1.364s2.279-3.795 7.861-7.376 13.963-8.795 15.095-10.062c0 0 1.994 2.26-2.392 5.031s-12.931 8.442-13.956 9.252-2.734 2.046-6.608 3.155z"
176
+ fill="#AA5323"
177
+ />
178
+ <path
179
+ d="M799 137.78s-6.209 3.326-3.987 5.415 5.526 1.45 6.893.853 3.987-1.236 4.386-1.364 5.81-1.663 7.177-4.178 5.013-5.415 7.918-7.504 3.93-4.178 3.532-5.67c-.001-.001-24.453 11.55-25.919 12.448zm-36.913 28.694s4.29-2.551 10.311-.938c0 0-.285-1.467-1.196-2.226 0 0 7.291-1.91 8.886-5.15s1.937-2.558 3.361-3.496 11.279-8.868 10.14-10.574-1.367-3.922-2.222-4.818c0 0-2.051 2.814-11.621 7.461s-20.222 8.143-27.969 18.589-6.95 16.5 2.506 19.143c0 0 6.665-4.178 22.9-2.729 16.235 1.45 21.76 7.546 22.786 8.655 1.025 1.109 4.329 5.116 1.139 11.895 0 0 3.247 1.407 3.532-1.705s.456-2.388 1.196-1.919c.741.469 1.652.554 1.31-1.833-.342-2.388-1.481-7.717-2.962-9.55s.171-1.023 1.139-.64c.968.384 4.386 3.155 2.336-1.961-2.051-5.116-2.563-2.601-2.62-2.345s-.456 1.535-4.899-1.791-8.488-4.946-11.507-5.798-.911-.853.854-1.492c1.766-.64 4.158-1.023 4.956-2.984 0 0-1.766.426-5.013-.725s-9.741-1.279-14.982 2.643c0 0 1.652-6.054-3.133-5.713s-8.146.213-13.216 4.221c0 0-.285-6.097 4.5-9.252s4.158-1.236 6.836-2.046 2.905-3.496 1.766-4.349c0 0 6.266 1.066 16.804-7.674 0 0-5.662 7.419-12.544 8.911 0 0-1.09 3.949-7.337 4.818-6.246.869-6.094 4.477-6.037 5.372z"
180
+ fill="#7B3C20"
181
+ />
182
+ <path
183
+ d="M744.1 202.61s3.074-18.372 20.279-19.702c15.076-1.165 19.861.711 22.862 1.677s10.329 3.127 7.481 5.486-4.481 1.933-4.481 1.933 3.304-3.667.304-4.292-3.266 1.194-3.684 2.729-.608 3.382-2.089 4.576c0 0-1.519-1.762-3.684-.227s-.304 1.592.57 1.336c.873-.256 2.013-.711 1.785.625s-1.443 3.638-5.013 5.514-3.38 1.762-7.633 2.444-8.203 2.359-13.633 7.021c-5.431 4.661-11.374 3.106-12.57-2.103-1.025-4.467-.494-7.017-.494-7.017z"
184
+ fill="#5A3719"
185
+ />
186
+ <path d="M763.794 202.035s1.652-3.624-1.31-5.287c0 0-9.058 1.553-11.735-1.194 0 0 9.855-.512 15.95-2.899 6.095-2.388 4.272-4.05 2.165-4.434-2.108-.384-5.981.554-6.38 2.473 0 0-1.196-2.046.342-3.411s3.931-1.62 6.095-.981c2.165.64 4.101 1.578 11.222-2.132 0 0 4.101.938 4.215 3.709.114 2.771-.285 3.922-.627 4.349-.342.426-.854 1.236-1.709 1.151-.854-.085-1.937-.298-3.019 1.62-1.082 1.919-1.732 3.581-3.543 4.86 0 0 2.119-5.969-3.122-7.376 0 0-4.329 2.558-7.633 2.686 0 .002 4.216 3.924-.911 6.866z"/>
187
+ <path d="M773.25 191.078s-1.994-2.196.627-2.43c2.62-.234 6.095 1.684 5.412 3.304-.684 1.62-3.76 1.556-6.039-.874z" fill="#5A3719"/>
188
+ <path
189
+ d="M921.3 161.96s-4.785 1.364-.342 4.306 6.608 5.5 9.855 6.353 6.608 2.046 6.551 5.287c-.057 3.24-.684 4.519-2.449 6.736-1.766 2.217.968 3.198 3.304 1.919s4.329-1.961 5.867-2.857 4.101-.767 1.766.426c-2.336 1.194-4.785 1.919-1.766 2.004s21.191.426 25.007-.81 8.772-1.62 9.228-6.566c0 0 .171-2.196 1.595-3.112 1.424-.917 2.393-3.027.313-1.599-2.079 1.428-3.674 2.153-4.073 1.727s-.513-.725.997-1.428 2.364-.043 3.76-2.11c1.396-2.068 1.259-1.727.516-2.515-.744-.789-2.31-1.364-1.541-2.366s1.538-3.986-1.794-2.238-9.893 6.253-12.931 6.964-5.355 1.635-9.456 2.466-6.646 1.712-11.013 4.128-4.063-1.334-3.304-1.847c0 0 1.671 2.927 6.114-.882s2.997-.238 13.861-3.809 8.203-4.15 12.456-6.367 8.279-2.302 5.317-5.258-3.304-3.212-7.139 0c-3.836 3.212-14.431 8.385-20.773 8.527 0 0 24.495-10.574 21.988-12.108-2.506-1.535-5.203-2.899-6.912-3.269s-2.165-.796-6.114.966-4.595 2.189-5.734 2.302-4.443.767-9.114 3.183-7.177 3.382-10.292 5.287c0 0 2.165-4.377 11.811-7.276s14.583-5.571 13.519-6.054c-1.063-.483-3.456-.881-5.279-.597s-1.291-.142-7.177 2.189-3.38 1.819-8.127 2.842-6.684 2.075-9.038 3.07c0 0 .96-1.28 4.158-2.452 1.643-.601-1.798-1.221 2.763-1.406.372-.015.828.093 1.281-.036 5.896-1.691 12.342-4.008 11.355-4.178-.987-.171-6.722-.767-12.532 1.904-5.81 2.672-3.152 1.762-5.203 2.189-2.051.426-6.38 3.155-7.823 4.32-1.444 1.164-3.456 2.045-3.456 2.045z"
190
+ fill="#FFF"
191
+ />
192
+ <path d="M777.84 188.43s2.279.682 2.848 2.281 1.994-.703 1.937-1.428-1.453-3.922-3.931-2.43-1.235 1.439-.854 1.577z" fill="#5A3719"/>
193
+ <path
194
+ d="M771.484 220.027s4.863-2.287 8.943-2.004c0 0-1.595-5.756 1.253-4.775 2.848.981 2.051.597 2.62.554 0 0 .171-3.795-.57-5.287 0 0 2.905.682 5.867.725 0 0-2.791-5.457.285-9.209 0 0 1.689 3.581 5.487 4.477 0 0 .018-1.535 0-3.155 0 0 2.26-.256 4.026.682s3.247-9.891-1.994-12.279c0 0-1.253 2.046-6.152 3.07-4.899 1.023-4.859 2.007-6.873 5.694s-3.779 3.729-7.881 6.372c-4.101 2.643-6.594 8.015-6.829 8.484.002 0 2.16 2.643 1.818 6.651z"
195
+ fill="#7B3C20"
196
+ />
197
+ <path
198
+ d="M934.91 157.12c1.781-.312-1.798-1.221 2.763-1.406.372-.015.828.093 1.281-.036 5.896-1.691 12.342-4.008 11.355-4.178-.987-.171-6.722-.767-12.532 1.904-5.81 2.672-3.152 1.762-5.203 2.189-2.051.426-6.38 3.155-7.823 4.32s-3.456 2.046-3.456 2.046-4.785 1.364-.342 4.306 6.608 5.5 9.855 6.353 6.608 2.046 6.551 5.287c-.057 3.24-.684 4.519-2.449 6.736-1.766 2.217.968 3.198 3.304 1.919s4.329-1.961 5.867-2.857 4.101-.767 1.766.426c-2.336 1.194-4.785 1.919-1.766 2.004s21.191.426 25.007-.81 8.772-1.62 9.228-6.566c0 0 .171-2.196 1.595-3.112 1.424-.917 2.393-3.027.313-1.599-2.079 1.428-3.674 2.153-4.073 1.727s-.513-.725.997-1.428 2.364-.043 3.76-2.11c1.396-2.068 1.259-1.727.516-2.515-.382-.405-.98-.753-1.368-1.132 0 0-1.094-.957-2.366-.147s-6.855 3.169-9.095 3.439c-2.241.27-4.557 1.222-8.583 3.183s-10.709 5.955-11.773 2.245c0 0-2.915 1.04-3.551 1.364-4.489 2.288-4.097-.959-3.304-1.847 0 0-2.354 2.643-2.26.241.095-2.402 1.614-1.99 4.234-2.757s6.76-2.473 5.051-3.894-3.513 1.411-5.412 2.276-5.696 1.632-6.285-1.125-.57-4.676-5.715-4.974-4.956-3.51-3.551-4.889 2.641-3.738 7.464-4.583z"
199
+ fill="#999"
200
+ />
201
+ <path d="M951.263 182.053s8.013-3.695 15.38-5.429c7.367-1.734 1.595.227.342.625s-12.722 4.178-15.418 5.429c-2.697 1.251-2.141.181-.304-.625zm1.861 1.62s9-2.984 10.671-1.734c1.671 1.251.304.625-1.671.91-1.975.284-7.405 1.194-8.848 1.165-1.444-.028-.152-.341-.152-.341zm14.431-3.126s1.709-.313 1.899.313c.19.625-.76.711-1.709.597-.95-.114-1.785-.655-.19-.91z"/>
202
+ <path
203
+ d="M729.838 258.967s-.336-7.902 3.651-11.91 23.355-24.163 26.317-29.797c0 0 2.506 1.742 2.62 4.94 0 0 3.247-5.592 5.81-7.699 0 0 2.279 2.327 1.88 6.974 0 0 4.671-2.473 11.906-2.515 0 0-2.677 3.155-2.791 4.988 0 0 10.026-1.109 15.266-.256 0 0-13.785 7.717-9.912 8.399s7.918-.043 7.918-.043-4.386 4.477-11.393 5.372c0 0 8.886-.128 10.652 1.876 0 0-8.659 1.322-15.608 6.608 0 0-.649-.298-.695-2.26 0 0-.216 1.748-2.21 3.411s-6.779 5.202-8.545 6.992c-1.766 1.791-5.07 5.329-8.602 5.159 0 0 .797-2.729-1.823-3.581-2.62-.853-5.639-.256-7.747 2.004 0 0-9.342.128-12.304.554 0 0 2.108-3.368 4.044-3.283 1.937.085 9.741 1.151 10.424-4.178.684-5.329-5.013-3.922-2.848-7.077s1.652-3.027 1.709-3.326c0 0-1.766.981-2.791 3.795s-1.766 4.988-5.469 7.802c-3.703 2.814-5.236 4.518-6.261 6.479.002.002-1.687.237-3.198.572z"
204
+ fill="#FFF"
205
+ />
206
+ <path
207
+ d="M738.82 254.19s.304-1.08 3.038-1.535 2.848-1.762 2.506-2.331-1.975-.568.684-3.581c0 0 .949.256 1.595.995s3.645 7.163-7.823 6.452z"
208
+ fill="#FFF"
209
+ />
210
+ <path
211
+ d="M732.257 248.61c.142 5.265 7.042 3.309 7.042 3.309-2.458 1.868-3.961 3.247-4.993 4.537.456-2.558-3.891-3.198-3.891-3.198.358-1.564.93-3.219 1.842-4.648zm25.371-28.138c.999-1.307 1.756-2.406 2.179-3.211 0 0 2.506 1.742 2.62 4.94 0 0 3.247-5.592 5.81-7.699 0 0 2.279 2.327 1.88 6.974 0 0 4.671-2.473 11.905-2.515 0 0-2.677 3.155-2.791 4.988 0 0 10.026-1.109 15.266-.256 0 0-13.785 7.717-9.912 8.399 3.874.682 7.918-.043 7.918-.043s-4.386 4.477-11.393 5.372c0 0 8.886-.128 10.652 1.876 0 0-2.53.386-5.952 1.576 0 0-2.555-2.4-9.96-2.059 0 0 5.76-3.223 10.329-4.264 0 0-2.013-2.643-5.165-.227 0 0-6.266-4.32-1.101-7.987 0 0-3.646-.767-6.038.938 0 0 .114-2.956 2.772-4.292 0 0-7.026-1.137-8.772 4.036 0 0-1.329-2.132-.722-4.548 0 0-4.253 2.446-6.19 5.217.002.001-.639-5.254-3.335-7.215m-13.616 33.416c-1.261.31-2.949.443-5.187.304 0 0 .192-.681 1.639-1.189 0 0 .415.864 3.548.885"
212
+ fill="#999"
213
+ />
214
+ <path d="M756.787 233.969s3.19 2.515 4.329 4.05c0 0 2.905-2.047 3.987-3.709 0 0 2.279 1.492 3.076 3.709 0 0 1.595-1.109 1.937-2.643 0 0 4.022.853 5.343 2.174 0 0 .615-3.88 0-6.31 0 0 2.803.213 4.512.938 0 0-1.589-2.558 6.525-5.841 0 0-6.136 1.317-8.462 4.008 0 0-2.62.128-3.76-.682 0 0 .171 3.922.057 5.798 0 0-1.581-.64-4.664-1.364 0 0-.747 1.279-1.26 1.577 0 0-1.937-1.535-2.791-3.496 0 0-2.963 2.691-4.101 3.837 0 0-2.791-1.961-4.728-2.046z"/>
215
+ <path
216
+ d="M738.44 273.88s1.253.597 4.215-1.791 11.336-7.717 12.133-11.981-2.677-4.519-5.412-3.283c-2.734 1.236-1.595 3.624-1.481 4.391s.171 3.752-4.272 7.888c-4.443 4.137-5.183 4.776-5.183 4.776z"
217
+ fill="#FFC221"
218
+ />
219
+ <path
220
+ d="M737.477 275.24s-6.722-2.814-.684-5.841 8.716-3.837 9.399-6.353c.684-2.516.285-2.089-1.937-1.023s-10.766 4.903-12.076 1.322c0 0 3.532 1.364 7.918-.767s7.975-2.771 5.184-3.667c-2.791-.895-12.874.213-14.526.682-1.652.469-1.253.384-1.538 2.046-.285 1.663-2.165 5.159-2.848 6.182-.684 1.023-2.336 5.287.741 7.163 3.075 1.876 7.951 1.747 10.367.256z"
221
+ fill="#FFC221"
222
+ />
223
+ <path d="M734.858 260.573s-1.54.213-1.255.81c.285.597.687.512 1.255.554s1.423-.298 1.536-.682c.114-.383-.965-.809-1.536-.682z"/>
224
+ <path d="M737.078 273.748s-3.19-1.535.399-3.496 7.462-3.837 7.975-4.647c0-.001-1.709 2.429-8.374 8.143z" fill="#FFF"/>
225
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 9 6" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h9v6H0z" fill="#ed2939"/>
3
+ <path d="M0 2h9v2H0z" fill="#fff"/>
4
+ </svg>
@@ -0,0 +1,32 @@
1
+ <svg viewBox="0 0 10080 5040" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <clipPath id="b">
4
+ <path d="M0 0h6v3H0z"/>
5
+ </clipPath>
6
+ <clipPath id="c">
7
+ <path d="M0 0v1.5h6V3zm6 0H3v3H0z"/>
8
+ </clipPath>
9
+ <path
10
+ d="M0-360l69.421 215.845 212.038-80.301L155.99-35.603l194.985 115.71-225.881 19.651 31.105 224.59L0 160l-156.198 164.349 31.105-224.59-225.881-19.651 194.986-115.711-125.471-188.853 212.038 80.301z"
11
+ id="a"
12
+ />
13
+ <path
14
+ d="M0-210L54.86-75.508l144.862 10.614L88.765 28.842l34.67 141.052L0 93.334l-123.435 76.56 34.67-141.052-110.957-93.736L-54.86-75.508z"
15
+ id="e"
16
+ />
17
+ <use id="d" transform="scale(2.1)" xlink:href="#a"/>
18
+ </defs>
19
+ <path d="M0 0h10080v5040H0z" fill="#012169"/>
20
+ <path clip-path="url(#b)" d="M0 0l6 3m0-3L0 3" stroke="#fff" stroke-width=".6" transform="scale(840)"/>
21
+ <path clip-path="url(#c)" d="M0 0l6 3m0-3L0 3" stroke="#e4002b" stroke-width=".4" transform="scale(840)"/>
22
+ <path d="M2520 0v2520M0 1260h5040" stroke="#fff" stroke-width="840"/>
23
+ <path d="M2520 0v2520M0 1260h5040" stroke="#e4002b" stroke-width="504"/>
24
+ <g fill="#fff">
25
+ <use x="2520" xlink:href="#d" y="3780"/>
26
+ <use x="7560" xlink:href="#a" y="4200"/>
27
+ <use x="6300" xlink:href="#a" y="2205"/>
28
+ <use x="7560" xlink:href="#a" y="840"/>
29
+ <use x="8680" xlink:href="#a" y="1869"/>
30
+ <use x="8064" xlink:href="#e" y="2730"/>
31
+ </g>
32
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 27 18" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h27v18H0V0z" fill="#418fde"/>
3
+ <path d="M0 12h27v1H0v1h27v1H0v-3z" fill="#ffd100"/>
4
+ <path
5
+ d="M4.625 3.375L4 1.35l-.625 2.025L1.35 4l2.025.625L4 6.65l.625-2.025L6.65 4z"
6
+ fill="#EF3340"
7
+ stroke="#FFF"
8
+ stroke-miterlimit="10"
9
+ stroke-width=".2"
10
+ />
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 26 17" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h26v17H0z" fill="#0064AD"/>
3
+ <g fill="#FFD300">
4
+ <path d="M8 0h5v17H8z"/>
5
+ <path d="M0 6h26v5H0z"/>
6
+ </g>
7
+ <g fill="#Da0e15">
8
+ <path d="M9.5 0h2v17H9.5z"/>
9
+ <path d="M0 7.5h26v2H0z"/>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 1200 600" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h1200v600H0z" fill="#3f9c35"/>
3
+ <path d="M0 0h1200v400H0z" fill="#ed2939"/>
4
+ <path d="M0 0h1200v200H0z" fill="#00b9e4"/>
5
+ <circle cx="580" cy="300" fill="#fff" r="90"/>
6
+ <circle cx="600" cy="300" fill="#ed2939" r="75"/>
7
+ <path
8
+ d="M680 250l9.567 26.903 25.788-12.258-12.258 25.788L730 300l-26.903 9.567 12.258 25.788-25.788-12.258L680 350l-9.567-26.903-25.788 12.258 12.258-25.788L630 300l26.903-9.567-12.258-25.788 25.788 12.258L680 250z"
9
+ fill="#fff"
10
+ />
11
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg viewBox="0 0 16 8" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path d="M0 0h16v8H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)">
8
+ <path d="M0 0h16v8H0z" fill="#002395"/>
9
+ <path d="M4.24 0h8v8z" fill="#fecb00"/>
10
+ <g id="c">
11
+ <path d="M2.353.525L2.8-.85 3.247.525l-1.17-.85h1.446z" fill="#fff" id="b"/>
12
+ <use x="1" xlink:href="#b" y="1"/>
13
+ <use x="2" xlink:href="#b" y="2"/>
14
+ </g>
15
+ <use x="3" xlink:href="#c" y="3"/>
16
+ <use x="6" xlink:href="#c" y="6"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24000 16000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Flag of Barbados</title>
3
+ <rect fill="#00267f" height="16000" width="24000"/>
4
+ <rect fill="#ffc726" height="16000" width="8000" x="8000"/>
5
+ <path
6
+ d="M 12000,4124 C 11740,4833 11475,5571 10908,6136 C 11084,6078 11392,6026 11590,6031 L 11590,9013 L 10748,9138 C 10718,9135 10708,9088 10708,9024 C 10627,8098 10408,7320 10156,6515 C 10138,6405 9819,5985 10065,6059 C 10095,6063 10424,6197 10372,6133 C 9924,5669 9269,5335 8633,5236 C 8577,5222 8544,5250 8594,5315 C 9438,6614 10144,8147 10138,9966 C 10466,9966 11261,9772 11590,9772 C 11590,9772 11590,11876 11590,11876 L 12005,11876 12100, 6000 z"
7
+ fill="#000"
8
+ id="h"
9
+ />
10
+ <use transform="translate(24000,0) scale(-1,1)" xlink:href="#h"/>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 20 12" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h20v12H0z" fill="#006a4e"/>
3
+ <circle cx="9" cy="6" fill="#f42a41" r="4"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 45 39" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h45v39H0z" fill="#ED2939"/>
3
+ <path d="M0 0h30v39H0z" fill="#FAE042"/>
4
+ <path d="M0 0h15v39H0z"/>
5
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <path d="M0 0h900v600H0z" fill="#009e49"/>
3
+ <path d="M0 0h900v300H0z" fill="#ef2b2d"/>
4
+ <g fill="#fcd116" transform="translate(450 300)">
5
+ <g id="b">
6
+ <path d="M0-100V0h50" id="a" transform="rotate(18 0 -100)"/>
7
+ <use transform="scale(-1 1)" xlink:href="#a"/>
8
+ </g>
9
+ <use transform="rotate(72)" xlink:href="#b"/>
10
+ <use transform="rotate(144)" xlink:href="#b"/>
11
+ <use transform="rotate(216)" xlink:href="#b"/>
12
+ <use transform="rotate(288)" xlink:href="#b"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 5 3" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h5v3H0z" fill="#fff"/>
3
+ <path d="M0 1h5v2H0z" fill="#00966E"/>
4
+ <path d="M0 2h5v1H0z" fill="#D62612"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 1500 900" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h1500v900H0" fill="#fff"/>
3
+ <path d="M1500 0H375l225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90h1125" fill="#ce1126"/>
4
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg viewBox="0 0 500 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <g fill="#1eb53a" id="b">
4
+ <g id="s">
5
+ <g id="t">
6
+ <g id="c">
7
+ <path d="M0,-20V0H20" id="h" transform="rotate(30,0,-20)"/>
8
+ <use transform="scale(-1,1)" xlink:href="#h"/>
9
+ </g>
10
+ <use transform="rotate(120)" xlink:href="#c"/>
11
+ <use transform="rotate(240)" xlink:href="#c"/>
12
+ </g>
13
+ <use transform="rotate(180)" xlink:href="#t"/>
14
+ </g>
15
+ <use fill="#ce1126" transform="scale(0.82)" xlink:href="#s"/>
16
+ </g>
17
+ <use id="star" x="250" xlink:href="#b" y="106"/>
18
+ </defs>
19
+ <path d="M0,0H500L0,300H500z" fill="#ce1126"/>
20
+ <path d="M0,0V300L500,0V300z" fill="#1eb53a"/>
21
+ <path d="M0,0 500,300M500,0 0,300" stroke="#fff" stroke-width="40"/>
22
+ <circle cx="250" cy="150" fill="#fff" r="85"/>
23
+ <use xlink:href="#star"/>
24
+ <use transform="rotate(120,250,150)" xlink:href="#star"/>
25
+ <use transform="rotate(240,250,150)" xlink:href="#star"/>
26
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 3 2" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h3v2H0z" fill="#E8112D"/>
3
+ <path d="M0 0h3v1H0z" fill="#FCD116"/>
4
+ <path d="M0 0h1.2v2H0z" fill="#008751"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 3 2" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h3v2H0z" fill="#EC1920"/>
3
+ <path d="M0 0h2v2H0z" fill="#fff"/>
4
+ <path d="M0 0h1v2H0z" fill="#051440"/>
5
+ </svg>