@usssa/component-library 1.0.0-alpha.7 → 1.0.0-alpha.71

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 (734) hide show
  1. package/README.md +5 -2
  2. package/dist/component-library/App.vue +9 -0
  3. package/dist/component-library/assets/files.png +0 -0
  4. package/dist/component-library/assets/logo.svg +19 -0
  5. package/dist/component-library/assets/no-result.png +0 -0
  6. package/dist/component-library/assets/quasar-logo-vertical.svg +15 -0
  7. package/dist/component-library/boot/.gitkeep +0 -0
  8. package/dist/component-library/boot/google-maps.js +11 -0
  9. package/{src → dist/component-library}/components/core/UAvatar.vue +21 -2
  10. package/{src → dist/component-library}/components/core/UBannerStd.vue +8 -6
  11. package/dist/component-library/components/core/UBreadCrumbs.vue +67 -0
  12. package/{src → dist/component-library}/components/core/UBtnIcon.vue +24 -14
  13. package/{src → dist/component-library}/components/core/UBtnStd.vue +35 -31
  14. package/dist/component-library/components/core/UBtnToggle.vue +68 -0
  15. package/{src → dist/component-library}/components/core/UCheckboxStd.vue +25 -8
  16. package/{src → dist/component-library}/components/core/UChip.vue +30 -4
  17. package/dist/component-library/components/core/UDialogStd.vue +242 -0
  18. package/dist/component-library/components/core/UDrawer.vue +215 -0
  19. package/dist/component-library/components/core/UInnerLoader.vue +58 -0
  20. package/dist/component-library/components/core/UInputAddressLookup.vue +466 -0
  21. package/dist/component-library/components/core/UInputPhoneStd.vue +295 -0
  22. package/{src → dist/component-library}/components/core/UInputTextStd.vue +111 -84
  23. package/dist/component-library/components/core/UInputTypeaheadAdvanceSearch.vue +59 -0
  24. package/dist/component-library/components/core/UMenuButtonStd.vue +274 -0
  25. package/dist/component-library/components/core/UMenuDropdown.vue +75 -0
  26. package/dist/component-library/components/core/UMenuDropdownAdvancedSearch.vue +299 -0
  27. package/dist/component-library/components/core/UMenuItem.vue +133 -0
  28. package/dist/component-library/components/core/UMenuSearch.vue +682 -0
  29. package/{src → dist/component-library}/components/core/UMultiSelectStd.vue +29 -38
  30. package/dist/component-library/components/core/UPagination.vue +104 -0
  31. package/dist/component-library/components/core/URadioBtn.vue +116 -0
  32. package/{src → dist/component-library}/components/core/URadioStd.vue +7 -3
  33. package/{src → dist/component-library}/components/core/USelectStd.vue +66 -51
  34. package/dist/component-library/components/core/UTabBtnStd.vue +176 -0
  35. package/dist/component-library/components/core/UTable/UTable.vue +93 -0
  36. package/dist/component-library/components/core/UTable/UTd.vue +63 -0
  37. package/dist/component-library/components/core/UTable/UTh.vue +48 -0
  38. package/dist/component-library/components/core/UTable/UTr.vue +20 -0
  39. package/dist/component-library/components/core/UTableStd.vue +797 -0
  40. package/{src → dist/component-library}/components/core/UTabsStd.vue +17 -5
  41. package/{src → dist/component-library}/components/core/UToggleStd.vue +30 -20
  42. package/dist/component-library/components/core/UToolbar.vue +94 -0
  43. package/{src → dist/component-library}/components/core/UTooltip.vue +20 -1
  44. package/dist/component-library/components/core/UUploader.vue +494 -0
  45. package/dist/component-library/components/index.js +75 -0
  46. package/dist/component-library/composables/useNotify.js +79 -0
  47. package/dist/component-library/composables/useOverlayLoader.js +23 -0
  48. package/dist/component-library/css/app.sass +159 -0
  49. package/dist/component-library/css/colors.sass +101 -0
  50. package/dist/component-library/css/media.sass +1 -0
  51. package/dist/component-library/css/quasar.variables.sass +119 -0
  52. package/dist/component-library/css/typography.sass +0 -0
  53. package/dist/component-library/css/vars/colors.variables.sass +126 -0
  54. package/dist/component-library/utils/data.ts +146 -0
  55. package/dist/spa/assets/AdvancedSearch.de59bb9d.js +29 -0
  56. package/dist/spa/assets/Avatar.7cf79270.js +9 -0
  57. package/dist/spa/assets/AvatarGroup.eb5af39d.js +9 -0
  58. package/dist/spa/assets/BadgeStd.184a1b2a.js +6 -0
  59. package/dist/spa/assets/BannerPage.c968ad8a.js +10 -0
  60. package/dist/spa/assets/BreadCrumbs.55acbd3f.js +12 -0
  61. package/dist/spa/assets/BtnIcon.dba0a485.js +10 -0
  62. package/dist/spa/assets/BtnStd.f05051b4.js +11 -0
  63. package/dist/spa/assets/BtnToggle.6c9c8151.js +15 -0
  64. package/dist/spa/assets/CheckBox.cdc44310.js +7 -0
  65. package/dist/spa/assets/Chip.4600dd74.js +15 -0
  66. package/dist/spa/assets/ComponentBase.12832350.js +1 -0
  67. package/dist/spa/assets/Dialog.9166896f.js +34 -0
  68. package/dist/spa/assets/Drawer.97a89461.js +9 -0
  69. package/dist/spa/assets/ErrorNotFound.2590a73e.js +1 -0
  70. package/dist/spa/assets/IndexPage.b88ccb65.js +1 -0
  71. package/dist/spa/assets/InnerLoader.f7ebfa9a.js +9 -0
  72. package/dist/spa/assets/InputAddressLookup.0436a51c.js +8 -0
  73. package/dist/spa/assets/InputPhone.e5884440.js +23 -0
  74. package/dist/spa/assets/InputText.edb91c55.js +20 -0
  75. package/dist/spa/assets/InputTypeaheadAdvanceSearch-fcfeae79.css +1 -0
  76. package/dist/spa/assets/InputTypeaheadAdvanceSearch.4717bbba.js +28 -0
  77. package/dist/spa/assets/KFOkCnqEu92Fr1MmgVxIIzQ-34e9582c.woff +0 -0
  78. package/dist/spa/assets/KFOlCnqEu92Fr1MmEU9fBBc--9ce7f3ac.woff +0 -0
  79. package/dist/spa/assets/KFOlCnqEu92Fr1MmSU5fBBc--bf14c7d7.woff +0 -0
  80. package/dist/spa/assets/KFOlCnqEu92Fr1MmWUlfBBc--e0fd57c0.woff +0 -0
  81. package/dist/spa/assets/KFOlCnqEu92Fr1MmYUtfBBc--f6537e32.woff +0 -0
  82. package/dist/spa/assets/KFOmCnqEu92Fr1Mu4mxM-f2abf7fb.woff +0 -0
  83. package/dist/spa/assets/MainLayout.357afcde.js +1 -0
  84. package/dist/spa/assets/MenuButton.87cc297d.js +30 -0
  85. package/dist/spa/assets/MenuDropdown-8577dac0.css +1 -0
  86. package/dist/spa/assets/MenuDropdown.95e39a63.js +6 -0
  87. package/dist/spa/assets/MenuItem.cd415f5e.js +7 -0
  88. package/dist/spa/assets/MultiSelectStd.ab5f68f2.js +17 -0
  89. package/dist/spa/assets/NotifyPage.a8a23aa7.js +17 -0
  90. package/dist/spa/assets/OverlayLoader.6ca7eedc.js +17 -0
  91. package/dist/spa/assets/Pagination.8d22767d.js +8 -0
  92. package/dist/spa/assets/QBtnDropdown.16a8ed64.js +1 -0
  93. package/dist/spa/assets/QBtnGroup.fe8403c7.js +1 -0
  94. package/dist/spa/assets/QCheckbox.9b7a1560.js +1 -0
  95. package/dist/spa/assets/QInnerLoading.0dd667f1.js +1 -0
  96. package/dist/spa/assets/QInput.50fc7274.js +1 -0
  97. package/dist/spa/assets/QItemLabel.76302e79.js +1 -0
  98. package/dist/spa/assets/QLayout.e447a044.js +1 -0
  99. package/dist/spa/assets/QList.05f5e5f4.js +1 -0
  100. package/dist/spa/assets/QPage.48d09174.js +1 -0
  101. package/dist/spa/assets/QRadio.e8cb7e78.js +1 -0
  102. package/dist/spa/assets/QResizeObserver.b1614200.js +1 -0
  103. package/dist/spa/assets/QScrollObserver.d587f1b8.js +1 -0
  104. package/dist/spa/assets/QSelect.fe2d93ab.js +1 -0
  105. package/dist/spa/assets/QSpinnerFacebook.58c9b43e.js +1 -0
  106. package/dist/spa/assets/QSpinnerGears.52cf4e8a.js +1 -0
  107. package/dist/spa/assets/QTabPanels.f5f8c6c0.js +1 -0
  108. package/dist/spa/assets/Radio.78b405a0.js +7 -0
  109. package/dist/spa/assets/RadioBtn.6b75781c.js +10 -0
  110. package/dist/spa/assets/SelectStd.31c84d23.js +25 -0
  111. package/dist/spa/assets/TabButtonPage-baa27375.css +1 -0
  112. package/dist/spa/assets/TabButtonPage.272c1d85.js +7 -0
  113. package/dist/spa/assets/TablePage.8f8d75c7.js +43 -0
  114. package/dist/spa/assets/TabsPage.f93ec4e1.js +9 -0
  115. package/dist/spa/assets/TogglePage.ad3af356.js +9 -0
  116. package/dist/spa/assets/Toolbar.efb14aff.js +6 -0
  117. package/dist/spa/assets/TooltipPage.5016a519.js +8 -0
  118. package/dist/spa/assets/UAvatar.ebe4476e.js +1 -0
  119. package/dist/spa/assets/UAvatar.vue_vue_type_style_index_0_lang-32508bf5.css +1 -0
  120. package/dist/spa/assets/UBadgeStd.ff9500bf.js +1 -0
  121. package/dist/spa/assets/UBtnIcon.fed8e2d3.js +1 -0
  122. package/dist/spa/assets/UBtnIcon.vue_vue_type_style_index_0_lang-56a6b988.css +1 -0
  123. package/dist/spa/assets/UBtnStd.baa23914.js +1 -0
  124. package/dist/spa/assets/UBtnStd.vue_vue_type_style_index_0_lang-c784b5c5.css +1 -0
  125. package/dist/spa/assets/UBtnToggle.vue_vue_type_style_index_0_lang-95ab84d9.css +1 -0
  126. package/dist/spa/assets/UBtnToggle.vue_vue_type_style_index_0_lang.b6e311b1.js +1 -0
  127. package/dist/spa/assets/UCheckboxStd.981cde7b.js +1 -0
  128. package/dist/spa/assets/UChip.3c562a29.js +1 -0
  129. package/dist/spa/assets/UDialogStd.vue_vue_type_style_index_0_lang-239a8687.css +1 -0
  130. package/dist/spa/assets/UDialogStd.vue_vue_type_style_index_0_lang.6781eb15.js +1 -0
  131. package/dist/spa/assets/UDrawer.vue_vue_type_style_index_0_lang-d4123556.css +1 -0
  132. package/dist/spa/assets/UDrawer.vue_vue_type_style_index_0_lang.3137cbdf.js +1 -0
  133. package/dist/spa/assets/UInnerLoader.vue_vue_type_style_index_0_scoped_true_lang-59151377.css +1 -0
  134. package/dist/spa/assets/UInputPhoneStd.e419407f.js +1 -0
  135. package/dist/spa/assets/UInputPhoneStd.vue_vue_type_style_index_0_lang-a3b35f3a.css +1 -0
  136. package/dist/spa/assets/UInputPhoneStd.vue_vue_type_style_index_0_lang.7744db79.js +1 -0
  137. package/dist/spa/assets/UMenuButtonStd.4850f84a.js +1 -0
  138. package/dist/spa/assets/UMenuButtonStd.vue_vue_type_style_index_0_lang-1b7d9814.css +1 -0
  139. package/dist/spa/assets/UMenuDropdown.a7476524.js +1 -0
  140. package/dist/spa/assets/UMenuDropdown.vue_vue_type_style_index_0_lang-46f87e45.css +1 -0
  141. package/dist/spa/assets/UMenuDropdownAdvancedSearch.7152fb37.js +1 -0
  142. package/dist/spa/assets/UMenuItem.02d90275.js +1 -0
  143. package/dist/spa/assets/UMenuItem.vue_vue_type_style_index_0_lang-60a38094.css +1 -0
  144. package/dist/spa/assets/UMenuItem.vue_vue_type_style_index_0_lang.c2f17c3c.js +1 -0
  145. package/dist/spa/assets/UMultiSelectStd.db798609.js +1 -0
  146. package/dist/spa/assets/UPagination.1f398543.js +1 -0
  147. package/dist/spa/assets/UPagination.vue_vue_type_style_index_0_lang-899d1a61.css +1 -0
  148. package/dist/spa/assets/UPagination.vue_vue_type_style_index_0_lang.3b1981d4.js +1 -0
  149. package/dist/spa/assets/URadioStd.d5242739.js +1 -0
  150. package/dist/spa/assets/USelectStd.37ad092f.js +1 -0
  151. package/dist/spa/assets/UTabBtnStd.c36b985f.js +1 -0
  152. package/dist/spa/assets/UTableStd.vue_vue_type_style_index_0_lang-8e0e60d8.css +1 -0
  153. package/dist/spa/assets/UTableStd.vue_vue_type_style_index_0_lang.1445b586.js +1 -0
  154. package/dist/spa/assets/UTooltip-efa029a7.css +1 -0
  155. package/dist/spa/assets/UTooltip.6c9e5509.js +1 -0
  156. package/dist/spa/assets/UUploader.vue_vue_type_style_index_0_lang-2ae7b445.css +1 -0
  157. package/dist/spa/assets/UUploader.vue_vue_type_style_index_0_lang.742209ec.js +1 -0
  158. package/dist/spa/assets/Uploader.f9bba02b.js +18 -0
  159. package/dist/spa/assets/ad-5d1a748c.svg +150 -0
  160. package/dist/spa/assets/ad-bf25de34.svg +148 -0
  161. package/dist/spa/assets/ae-3bc52a4a.svg +6 -0
  162. package/dist/spa/assets/ae-ad238db3.svg +6 -0
  163. package/dist/spa/assets/af-442967f4.svg +81 -0
  164. package/dist/spa/assets/af-efdbd7fb.svg +81 -0
  165. package/dist/spa/assets/ag-00232b7b.svg +14 -0
  166. package/dist/spa/assets/ag-13128213.svg +14 -0
  167. package/dist/spa/assets/ai-06aeb7cf.svg +29 -0
  168. package/dist/spa/assets/ai-859fb00e.svg +29 -0
  169. package/dist/spa/assets/al-55b3378b.svg +5 -0
  170. package/dist/spa/assets/al-57743b2d.svg +5 -0
  171. package/dist/spa/assets/am-57edcffa.svg +5 -0
  172. package/dist/spa/assets/am-efb6cdaa.svg +5 -0
  173. package/dist/spa/assets/ao-4321af76.svg +13 -0
  174. package/dist/spa/assets/ao-7d6acaf8.svg +13 -0
  175. package/dist/spa/assets/aq-454424bf.svg +5 -0
  176. package/dist/spa/assets/aq-733794b7.svg +5 -0
  177. package/dist/spa/assets/ar-77870402.svg +32 -0
  178. package/dist/spa/assets/ar-d6beeaa2.svg +32 -0
  179. package/dist/spa/assets/arab-cf7dc267.svg +109 -0
  180. package/dist/spa/assets/arab-e6c1aa2e.svg +109 -0
  181. package/dist/spa/assets/as-40fbde21.svg +73 -0
  182. package/dist/spa/assets/as-71f068fd.svg +72 -0
  183. package/dist/spa/assets/at-9ad44039.svg +4 -0
  184. package/dist/spa/assets/at-c0e5cb3c.svg +4 -0
  185. package/dist/spa/assets/au-1e6796ab.svg +8 -0
  186. package/dist/spa/assets/au-cbb2206c.svg +8 -0
  187. package/dist/spa/assets/aw-6cabd939.svg +186 -0
  188. package/dist/spa/assets/aw-e3a9f113.svg +186 -0
  189. package/dist/spa/assets/ax-1f2bddd3.svg +18 -0
  190. package/dist/spa/assets/ax-4702b3f0.svg +18 -0
  191. package/dist/spa/assets/az-270a8348.svg +8 -0
  192. package/dist/spa/assets/az-33ad245b.svg +8 -0
  193. package/dist/spa/assets/ba-07eced7b.svg +12 -0
  194. package/dist/spa/assets/ba-b321fe9b.svg +12 -0
  195. package/dist/spa/assets/bb-46cfd88a.svg +6 -0
  196. package/dist/spa/assets/bb-9db91e5b.svg +6 -0
  197. package/dist/spa/assets/bd-1aabb4a7.svg +4 -0
  198. package/dist/spa/assets/bd-90f8f20e.svg +4 -0
  199. package/dist/spa/assets/be-ba60828a.svg +7 -0
  200. package/dist/spa/assets/be-d6aff6fa.svg +7 -0
  201. package/dist/spa/assets/bf-606b17ad.svg +7 -0
  202. package/dist/spa/assets/bf-62cdc2bd.svg +7 -0
  203. package/dist/spa/assets/bg-4943a69e.svg +5 -0
  204. package/dist/spa/assets/bg-b6d979fc.svg +5 -0
  205. package/dist/spa/assets/bh-102fe27e.svg +4 -0
  206. package/dist/spa/assets/bh-7a519f58.svg +4 -0
  207. package/dist/spa/assets/bi-5ef1a56b.svg +15 -0
  208. package/dist/spa/assets/bi-9508881d.svg +15 -0
  209. package/dist/spa/assets/bj-0a46cbae.svg +14 -0
  210. package/dist/spa/assets/bj-2cbd6426.svg +14 -0
  211. package/dist/spa/assets/bl-025f596f.svg +7 -0
  212. package/dist/spa/assets/bl-d511eb84.svg +5 -0
  213. package/dist/spa/assets/bm-2cbe2ec8.svg +97 -0
  214. package/dist/spa/assets/bm-45607c46.svg +97 -0
  215. package/dist/spa/assets/bn-03fb1b01.svg +36 -0
  216. package/dist/spa/assets/bn-9b051c56.svg +36 -0
  217. package/dist/spa/assets/bo-9936b5b0.svg +674 -0
  218. package/dist/spa/assets/bo-e4882f15.svg +674 -0
  219. package/dist/spa/assets/bq-23881e6c.svg +5 -0
  220. package/dist/spa/assets/bq-83723941.svg +5 -0
  221. package/dist/spa/assets/br-45531de3.svg +45 -0
  222. package/dist/spa/assets/br-a2e451e4.svg +45 -0
  223. package/dist/spa/assets/bs-1f179c39.svg +13 -0
  224. package/dist/spa/assets/bs-58cdb6c9.svg +13 -0
  225. package/dist/spa/assets/bt-04653c4c.svg +89 -0
  226. package/dist/spa/assets/bt-95eb672d.svg +89 -0
  227. package/dist/spa/assets/bv-342b164c.svg +13 -0
  228. package/dist/spa/assets/bv-d972d58c.svg +13 -0
  229. package/dist/spa/assets/bw-180bfa4e.svg +7 -0
  230. package/dist/spa/assets/bw-6c89aad0.svg +7 -0
  231. package/dist/spa/assets/by-62959532.svg +18 -0
  232. package/dist/spa/assets/by-b5007565.svg +18 -0
  233. package/dist/spa/assets/bz-7d9d2ef3.svg +145 -0
  234. package/dist/spa/assets/bz-c5182369.svg +145 -0
  235. package/dist/spa/assets/ca-5e8736c4.svg +4 -0
  236. package/dist/spa/assets/ca-6f183784.svg +4 -0
  237. package/dist/spa/assets/cc-51906da2.svg +19 -0
  238. package/dist/spa/assets/cc-6ab691df.svg +19 -0
  239. package/dist/spa/assets/cd-64c360bd.svg +12 -0
  240. package/dist/spa/assets/cd-ad93c1af.svg +5 -0
  241. package/dist/spa/assets/cefta-0c277cae.svg +13 -0
  242. package/dist/spa/assets/cefta-bfefb0f6.svg +13 -0
  243. package/dist/spa/assets/cf-1b58dc20.svg +15 -0
  244. package/dist/spa/assets/cf-2e16b1cf.svg +15 -0
  245. package/dist/spa/assets/cg-628dcfc7.svg +12 -0
  246. package/dist/spa/assets/cg-9accb522.svg +12 -0
  247. package/dist/spa/assets/ch-ac676cd3.svg +9 -0
  248. package/dist/spa/assets/ch-be4b8257.svg +9 -0
  249. package/dist/spa/assets/ci-4ecfea70.svg +7 -0
  250. package/dist/spa/assets/ci-c3f20b8e.svg +7 -0
  251. package/dist/spa/assets/ck-b17c039f.svg +9 -0
  252. package/dist/spa/assets/ck-e5457495.svg +9 -0
  253. package/dist/spa/assets/cl-b1ef63f1.svg +13 -0
  254. package/dist/spa/assets/cl-bcf0ccdf.svg +13 -0
  255. package/dist/spa/assets/cm-0899a610.svg +15 -0
  256. package/dist/spa/assets/cm-c9a327dc.svg +15 -0
  257. package/dist/spa/assets/cn-981da9bd.svg +11 -0
  258. package/dist/spa/assets/cn-b63401f4.svg +11 -0
  259. package/dist/spa/assets/co-596558a2.svg +7 -0
  260. package/dist/spa/assets/co-6bab3c96.svg +7 -0
  261. package/dist/spa/assets/cp-7dfc8de4.svg +7 -0
  262. package/dist/spa/assets/cp-bd880fc5.svg +7 -0
  263. package/dist/spa/assets/cr-4775ef01.svg +7 -0
  264. package/dist/spa/assets/cr-b70b33c4.svg +7 -0
  265. package/dist/spa/assets/cu-0234085b.svg +13 -0
  266. package/dist/spa/assets/cu-15013e0b.svg +13 -0
  267. package/dist/spa/assets/cv-1f908f34.svg +13 -0
  268. package/dist/spa/assets/cv-2fa67e0a.svg +13 -0
  269. package/dist/spa/assets/cw-c845d0ca.svg +14 -0
  270. package/dist/spa/assets/cw-f4df53da.svg +14 -0
  271. package/dist/spa/assets/cx-55f4387a.svg +15 -0
  272. package/dist/spa/assets/cx-ae25f09c.svg +15 -0
  273. package/dist/spa/assets/cy-591e4d4e.svg +6 -0
  274. package/dist/spa/assets/cy-c74cf841.svg +6 -0
  275. package/dist/spa/assets/cz-5a462b5f.svg +5 -0
  276. package/dist/spa/assets/cz-d601fcc2.svg +5 -0
  277. package/dist/spa/assets/data.f2552e6f.js +1 -0
  278. package/dist/spa/assets/de-c02c7eec.svg +5 -0
  279. package/dist/spa/assets/de-efd480af.svg +5 -0
  280. package/dist/spa/assets/dg-25d279ba.svg +130 -0
  281. package/dist/spa/assets/dg-6f80e54a.svg +130 -0
  282. package/dist/spa/assets/dj-2a22d382.svg +13 -0
  283. package/dist/spa/assets/dj-84b1dd7e.svg +13 -0
  284. package/dist/spa/assets/dk-4d7c9c44.svg +5 -0
  285. package/dist/spa/assets/dk-d2847c0b.svg +5 -0
  286. package/dist/spa/assets/dm-3eb04b16.svg +152 -0
  287. package/dist/spa/assets/dm-e7be9ce0.svg +152 -0
  288. package/dist/spa/assets/do-277d6b3c.svg +121 -0
  289. package/dist/spa/assets/do-db682b45.svg +123 -0
  290. package/dist/spa/assets/dz-73f56cc7.svg +5 -0
  291. package/dist/spa/assets/dz-9ea0cf93.svg +5 -0
  292. package/dist/spa/assets/eac-0c899038.svg +48 -0
  293. package/dist/spa/assets/eac-efa22f50.svg +48 -0
  294. package/dist/spa/assets/ec-0d21faad.svg +138 -0
  295. package/dist/spa/assets/ec-da347b6c.svg +138 -0
  296. package/dist/spa/assets/ee-25642310.svg +5 -0
  297. package/dist/spa/assets/ee-9fbc0f51.svg +5 -0
  298. package/dist/spa/assets/eg-c5997f42.svg +38 -0
  299. package/dist/spa/assets/eg-dde2f9b7.svg +38 -0
  300. package/dist/spa/assets/eh-a957f2ae.svg +16 -0
  301. package/dist/spa/assets/eh-cc2bf737.svg +11 -0
  302. package/dist/spa/assets/er-1e5d7569.svg +13 -0
  303. package/dist/spa/assets/er-fb5f4394.svg +8 -0
  304. package/dist/spa/assets/es-1d6bfb57.svg +547 -0
  305. package/dist/spa/assets/es-28172513.svg +544 -0
  306. package/dist/spa/assets/es-ct-11229703.svg +4 -0
  307. package/dist/spa/assets/es-ct-95f4033c.svg +4 -0
  308. package/dist/spa/assets/es-ga-4bbb0eb3.svg +187 -0
  309. package/dist/spa/assets/es-ga-5642a44f.svg +187 -0
  310. package/dist/spa/assets/es-pv-70a6e0fb.svg +5 -0
  311. package/dist/spa/assets/es-pv-f608b2f3.svg +5 -0
  312. package/dist/spa/assets/et-43d5922f.svg +14 -0
  313. package/dist/spa/assets/et-e3751fb4.svg +14 -0
  314. package/dist/spa/assets/eu-019d50bf.svg +28 -0
  315. package/dist/spa/assets/eu-67040ccd.svg +28 -0
  316. package/dist/spa/assets/fi-012edd98.svg +5 -0
  317. package/dist/spa/assets/fi-f4064089.svg +5 -0
  318. package/dist/spa/assets/files-d47aa854.png +0 -0
  319. package/dist/spa/assets/fj-2c027e36.svg +120 -0
  320. package/dist/spa/assets/fj-8db000da.svg +123 -0
  321. package/dist/spa/assets/fk-8b68c7b9.svg +89 -0
  322. package/dist/spa/assets/fk-d7a1f432.svg +90 -0
  323. package/dist/spa/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNa-fd84f88b.woff +0 -0
  324. package/dist/spa/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ-4a4dbc62.woff2 +0 -0
  325. package/dist/spa/assets/fm-23db3e9f.svg +11 -0
  326. package/dist/spa/assets/fm-3113102b.svg +11 -0
  327. package/dist/spa/assets/fo-40e76821.svg +12 -0
  328. package/dist/spa/assets/fo-ec85991b.svg +12 -0
  329. package/dist/spa/assets/format.93f46e0e.js +1 -0
  330. package/dist/spa/assets/fr-5cdc5047.svg +5 -0
  331. package/dist/spa/assets/fr-8cdacc8d.svg +5 -0
  332. package/dist/spa/assets/ga-cb2951db.svg +7 -0
  333. package/dist/spa/assets/ga-f7b775c4.svg +7 -0
  334. package/dist/spa/assets/gb-c8be1e72.svg +7 -0
  335. package/dist/spa/assets/gb-c9024642.svg +7 -0
  336. package/dist/spa/assets/gb-eng-2dd36838.svg +5 -0
  337. package/dist/spa/assets/gb-eng-53797ba9.svg +5 -0
  338. package/dist/spa/assets/gb-nir-a34747d6.svg +132 -0
  339. package/dist/spa/assets/gb-nir-fa653b48.svg +131 -0
  340. package/dist/spa/assets/gb-sct-19ed371e.svg +4 -0
  341. package/dist/spa/assets/gb-sct-7b55bce7.svg +4 -0
  342. package/dist/spa/assets/gb-wls-3a95845d.svg +9 -0
  343. package/dist/spa/assets/gb-wls-d3c5b996.svg +9 -0
  344. package/dist/spa/assets/gd-05f835f1.svg +27 -0
  345. package/dist/spa/assets/gd-ecf92e0e.svg +27 -0
  346. package/dist/spa/assets/ge-3821d90a.svg +6 -0
  347. package/dist/spa/assets/ge-86bad43b.svg +6 -0
  348. package/dist/spa/assets/gf-7643aaa7.svg +5 -0
  349. package/dist/spa/assets/gf-cb5464e2.svg +5 -0
  350. package/dist/spa/assets/gg-ca797ce5.svg +9 -0
  351. package/dist/spa/assets/gg-ea806b48.svg +9 -0
  352. package/dist/spa/assets/gh-53c55ca4.svg +6 -0
  353. package/dist/spa/assets/gh-5797d82d.svg +6 -0
  354. package/dist/spa/assets/gi-19c80ad2.svg +32 -0
  355. package/dist/spa/assets/gi-9fde3a8d.svg +32 -0
  356. package/dist/spa/assets/gl-15a60b07.svg +4 -0
  357. package/dist/spa/assets/gl-debe7773.svg +4 -0
  358. package/dist/spa/assets/gm-2aa3fad4.svg +14 -0
  359. package/dist/spa/assets/gm-726e760b.svg +9 -0
  360. package/dist/spa/assets/gn-8d20e686.svg +7 -0
  361. package/dist/spa/assets/gn-ee01e7dd.svg +7 -0
  362. package/dist/spa/assets/google-maps-09de8f0f.css +1 -0
  363. package/dist/spa/assets/google-maps.b98ab36f.js +19 -0
  364. package/dist/spa/assets/gp-5f0e3566.svg +5 -0
  365. package/dist/spa/assets/gp-ee9d78d0.svg +5 -0
  366. package/dist/spa/assets/gq-26bda313.svg +23 -0
  367. package/dist/spa/assets/gq-b8d96a07.svg +23 -0
  368. package/dist/spa/assets/gr-a184070f.svg +16 -0
  369. package/dist/spa/assets/gr-a4519d98.svg +16 -0
  370. package/dist/spa/assets/gs-ba7c7e0d.svg +133 -0
  371. package/dist/spa/assets/gs-e1a62dac.svg +132 -0
  372. package/dist/spa/assets/gt-60de265e.svg +204 -0
  373. package/dist/spa/assets/gt-6a60b637.svg +204 -0
  374. package/dist/spa/assets/gu-2301db56.svg +23 -0
  375. package/dist/spa/assets/gu-e5cb4dff.svg +23 -0
  376. package/dist/spa/assets/gw-6b81a234.svg +13 -0
  377. package/dist/spa/assets/gw-8838eee6.svg +15 -0
  378. package/dist/spa/assets/gy-4564fd57.svg +9 -0
  379. package/dist/spa/assets/gy-5bd7a7b3.svg +9 -0
  380. package/dist/spa/assets/hk-cb99edfd.svg +8 -0
  381. package/dist/spa/assets/hk-d9d142b2.svg +8 -0
  382. package/dist/spa/assets/hm-6c716b74.svg +8 -0
  383. package/dist/spa/assets/hm-b57fb521.svg +8 -0
  384. package/dist/spa/assets/hn-545c93c9.svg +18 -0
  385. package/dist/spa/assets/hn-67130fa0.svg +18 -0
  386. package/dist/spa/assets/hr-969d4f47.svg +58 -0
  387. package/dist/spa/assets/hr-a661f42b.svg +56 -0
  388. package/dist/spa/assets/ht-2d5cc356.svg +116 -0
  389. package/dist/spa/assets/ht-d4bab839.svg +116 -0
  390. package/dist/spa/assets/hu-9e6bc6d7.svg +7 -0
  391. package/dist/spa/assets/hu-ffc4edd5.svg +7 -0
  392. package/dist/spa/assets/ic-4e5a5e63.svg +7 -0
  393. package/dist/spa/assets/ic-9a584e04.svg +7 -0
  394. package/dist/spa/assets/id-5cd3acc4.svg +4 -0
  395. package/dist/spa/assets/id-b8cd30f2.svg +4 -0
  396. package/dist/spa/assets/ie-860168f5.svg +7 -0
  397. package/dist/spa/assets/ie-f82568d7.svg +7 -0
  398. package/dist/spa/assets/il-04a099ac.svg +14 -0
  399. package/dist/spa/assets/il-8cf0b4af.svg +14 -0
  400. package/dist/spa/assets/im-14dd48d6.svg +36 -0
  401. package/dist/spa/assets/im-6f212528.svg +36 -0
  402. package/dist/spa/assets/in-455c32f2.svg +25 -0
  403. package/dist/spa/assets/in-91185efa.svg +25 -0
  404. package/dist/spa/assets/index-62169f89.css +5 -0
  405. package/dist/spa/assets/index.fbe934e4.js +21 -0
  406. package/dist/spa/assets/io-0561beab.svg +130 -0
  407. package/dist/spa/assets/io-563ebc69.svg +130 -0
  408. package/dist/spa/assets/iq-4ab12323.svg +10 -0
  409. package/dist/spa/assets/iq-b6c0c264.svg +10 -0
  410. package/dist/spa/assets/ir-83523f8f.svg +219 -0
  411. package/dist/spa/assets/ir-cb363e09.svg +219 -0
  412. package/dist/spa/assets/is-4ef2de6f.svg +12 -0
  413. package/dist/spa/assets/is-e1e1c200.svg +12 -0
  414. package/dist/spa/assets/it-03086f2e.svg +7 -0
  415. package/dist/spa/assets/it-9fa88118.svg +7 -0
  416. package/dist/spa/assets/je-15a1bfeb.svg +62 -0
  417. package/dist/spa/assets/je-dbdfee3f.svg +62 -0
  418. package/dist/spa/assets/jm-43b63284.svg +8 -0
  419. package/dist/spa/assets/jm-f837df1a.svg +8 -0
  420. package/dist/spa/assets/jo-0ec98db3.svg +16 -0
  421. package/dist/spa/assets/jo-e3a570d5.svg +16 -0
  422. package/dist/spa/assets/jp-2bd3a486.svg +11 -0
  423. package/dist/spa/assets/jp-bfea80ba.svg +11 -0
  424. package/dist/spa/assets/ke-699163d8.svg +23 -0
  425. package/dist/spa/assets/ke-e19798c3.svg +23 -0
  426. package/dist/spa/assets/kg-177caf2d.svg +15 -0
  427. package/dist/spa/assets/kg-1afbc240.svg +15 -0
  428. package/dist/spa/assets/kh-65671aad.svg +61 -0
  429. package/dist/spa/assets/kh-706c89a1.svg +61 -0
  430. package/dist/spa/assets/ki-7d34b300.svg +36 -0
  431. package/dist/spa/assets/ki-7f62d1b7.svg +36 -0
  432. package/dist/spa/assets/km-5816e126.svg +16 -0
  433. package/dist/spa/assets/km-81e1befb.svg +16 -0
  434. package/dist/spa/assets/kn-0832acb7.svg +14 -0
  435. package/dist/spa/assets/kn-dc5eff37.svg +14 -0
  436. package/dist/spa/assets/kp-3ebcde57.svg +15 -0
  437. package/dist/spa/assets/kp-c0815d9c.svg +15 -0
  438. package/dist/spa/assets/kr-7a6cd5b5.svg +24 -0
  439. package/dist/spa/assets/kr-b6296bfd.svg +17 -0
  440. package/dist/spa/assets/kw-172a4281.svg +13 -0
  441. package/dist/spa/assets/kw-adea2b13.svg +13 -0
  442. package/dist/spa/assets/ky-cedf3c90.svg +103 -0
  443. package/dist/spa/assets/ky-ea74f388.svg +103 -0
  444. package/dist/spa/assets/kz-bf7d31b6.svg +36 -0
  445. package/dist/spa/assets/kz-ff45b584.svg +36 -0
  446. package/dist/spa/assets/la-da591b98.svg +12 -0
  447. package/dist/spa/assets/la-db27f2de.svg +12 -0
  448. package/dist/spa/assets/lb-251c575c.svg +15 -0
  449. package/dist/spa/assets/lb-4c0ca1b7.svg +15 -0
  450. package/dist/spa/assets/lc-99645e00.svg +8 -0
  451. package/dist/spa/assets/lc-f967e635.svg +8 -0
  452. package/dist/spa/assets/li-42289cca.svg +43 -0
  453. package/dist/spa/assets/li-6dbe6c67.svg +43 -0
  454. package/dist/spa/assets/lk-11a11427.svg +22 -0
  455. package/dist/spa/assets/lk-7cacc04f.svg +22 -0
  456. package/dist/spa/assets/lr-144dca7c.svg +14 -0
  457. package/dist/spa/assets/lr-69f2ce4b.svg +14 -0
  458. package/dist/spa/assets/ls-83d2e415.svg +8 -0
  459. package/dist/spa/assets/ls-a9f631a2.svg +8 -0
  460. package/dist/spa/assets/lt-8ef0e9cb.svg +7 -0
  461. package/dist/spa/assets/lt-dc040199.svg +7 -0
  462. package/dist/spa/assets/lu-02b43c1a.svg +5 -0
  463. package/dist/spa/assets/lu-a0a530e3.svg +5 -0
  464. package/dist/spa/assets/lv-15d4e812.svg +6 -0
  465. package/dist/spa/assets/lv-f4e0567e.svg +6 -0
  466. package/dist/spa/assets/ly-47d96b6e.svg +13 -0
  467. package/dist/spa/assets/ly-66bc7151.svg +13 -0
  468. package/dist/spa/assets/ma-28cfcdec.svg +4 -0
  469. package/dist/spa/assets/ma-8f1a0be2.svg +4 -0
  470. package/dist/spa/assets/mc-690c23fe.svg +6 -0
  471. package/dist/spa/assets/mc-c3aaba7e.svg +6 -0
  472. package/dist/spa/assets/md-72e632c4.svg +70 -0
  473. package/dist/spa/assets/md-969c6b9c.svg +71 -0
  474. package/dist/spa/assets/me-2d8a2d92.svg +116 -0
  475. package/dist/spa/assets/me-60100433.svg +118 -0
  476. package/dist/spa/assets/mf-137b371d.svg +5 -0
  477. package/dist/spa/assets/mf-65d7d1af.svg +5 -0
  478. package/dist/spa/assets/mg-59246c21.svg +7 -0
  479. package/dist/spa/assets/mg-f16ffe66.svg +7 -0
  480. package/dist/spa/assets/mh-96d7c0b9.svg +7 -0
  481. package/dist/spa/assets/mh-e0445f99.svg +8 -0
  482. package/dist/spa/assets/mk-22488dc8.svg +5 -0
  483. package/dist/spa/assets/mk-8faba052.svg +5 -0
  484. package/dist/spa/assets/ml-34021383.svg +7 -0
  485. package/dist/spa/assets/ml-49e84081.svg +7 -0
  486. package/dist/spa/assets/mm-c0b2e23a.svg +12 -0
  487. package/dist/spa/assets/mm-ea2756fc.svg +10 -0
  488. package/dist/spa/assets/mn-adf2695f.svg +14 -0
  489. package/dist/spa/assets/mn-ec89ba7f.svg +14 -0
  490. package/dist/spa/assets/mo-72c3a2b0.svg +9 -0
  491. package/dist/spa/assets/mo-cfdee80e.svg +9 -0
  492. package/dist/spa/assets/mp-075ddcdb.svg +86 -0
  493. package/dist/spa/assets/mp-732180a3.svg +86 -0
  494. package/dist/spa/assets/mq-94315e14.svg +5 -0
  495. package/dist/spa/assets/mq-e58f7279.svg +5 -0
  496. package/dist/spa/assets/mr-4ccf1997.svg +6 -0
  497. package/dist/spa/assets/mr-7f3c3ca0.svg +6 -0
  498. package/dist/spa/assets/ms-497011d5.svg +29 -0
  499. package/dist/spa/assets/ms-4c60b890.svg +25 -0
  500. package/dist/spa/assets/mt-796f6bfa.svg +58 -0
  501. package/dist/spa/assets/mt-98fb7512.svg +56 -0
  502. package/dist/spa/assets/mu-3a73b077.svg +8 -0
  503. package/dist/spa/assets/mu-51f86810.svg +8 -0
  504. package/dist/spa/assets/mv-5546d527.svg +6 -0
  505. package/dist/spa/assets/mv-ecc358a3.svg +6 -0
  506. package/dist/spa/assets/mw-81a7fe8f.svg +10 -0
  507. package/dist/spa/assets/mw-fbc58ca2.svg +15 -0
  508. package/dist/spa/assets/mx-0a06e057.svg +382 -0
  509. package/dist/spa/assets/mx-25aed782.svg +377 -0
  510. package/dist/spa/assets/my-da82a094.svg +26 -0
  511. package/dist/spa/assets/my-f0de0c63.svg +18 -0
  512. package/dist/spa/assets/mz-207c2ddc.svg +21 -0
  513. package/dist/spa/assets/mz-b77277e6.svg +21 -0
  514. package/dist/spa/assets/na-caa43fcd.svg +16 -0
  515. package/dist/spa/assets/na-eee4a9b1.svg +16 -0
  516. package/dist/spa/assets/nc-7a04d17c.svg +12 -0
  517. package/dist/spa/assets/nc-f8b9e240.svg +13 -0
  518. package/dist/spa/assets/ne-4b91653d.svg +6 -0
  519. package/dist/spa/assets/ne-c92686fc.svg +6 -0
  520. package/dist/spa/assets/nf-1d8411d2.svg +11 -0
  521. package/dist/spa/assets/nf-298cf95f.svg +9 -0
  522. package/dist/spa/assets/ng-a41dbb75.svg +6 -0
  523. package/dist/spa/assets/ng-b7a2a45a.svg +6 -0
  524. package/dist/spa/assets/ni-979c81b0.svg +129 -0
  525. package/dist/spa/assets/ni-f3892526.svg +129 -0
  526. package/dist/spa/assets/nl-8f691f17.svg +5 -0
  527. package/dist/spa/assets/nl-d99b87e8.svg +5 -0
  528. package/dist/spa/assets/no-55fc1564.svg +7 -0
  529. package/dist/spa/assets/no-ceea17af.svg +7 -0
  530. package/dist/spa/assets/no-result-1473e903.png +0 -0
  531. package/dist/spa/assets/np-09078387.svg +13 -0
  532. package/dist/spa/assets/np-18044dd9.svg +18 -0
  533. package/dist/spa/assets/nr-c0fc69e7.svg +12 -0
  534. package/dist/spa/assets/nr-f1de4b06.svg +12 -0
  535. package/dist/spa/assets/nu-835c94f3.svg +10 -0
  536. package/dist/spa/assets/nu-93e802ac.svg +10 -0
  537. package/dist/spa/assets/nz-794a2c8c.svg +36 -0
  538. package/dist/spa/assets/nz-9e6e1d5e.svg +36 -0
  539. package/dist/spa/assets/om-bd5e4e78.svg +115 -0
  540. package/dist/spa/assets/om-fd3c723f.svg +115 -0
  541. package/dist/spa/assets/pa-0a61ba05.svg +13 -0
  542. package/dist/spa/assets/pa-6181586e.svg +14 -0
  543. package/dist/spa/assets/pc-502e1da5.svg +33 -0
  544. package/dist/spa/assets/pc-540c3f0b.svg +33 -0
  545. package/dist/spa/assets/pe-c9852484.svg +4 -0
  546. package/dist/spa/assets/pe-e9dd299d.svg +4 -0
  547. package/dist/spa/assets/pf-2e2af3a6.svg +18 -0
  548. package/dist/spa/assets/pf-7568f177.svg +19 -0
  549. package/dist/spa/assets/pg-39b3e01c.svg +9 -0
  550. package/dist/spa/assets/pg-7a1f4e7a.svg +16 -0
  551. package/dist/spa/assets/ph-37c54f47.svg +6 -0
  552. package/dist/spa/assets/ph-4cccf403.svg +6 -0
  553. package/dist/spa/assets/pk-490b17d5.svg +15 -0
  554. package/dist/spa/assets/pk-d4949a03.svg +15 -0
  555. package/dist/spa/assets/pl-369bb3e1.svg +6 -0
  556. package/dist/spa/assets/pl-698cda1f.svg +6 -0
  557. package/dist/spa/assets/plugin-vue_export-helper.21dcd24c.js +1 -0
  558. package/dist/spa/assets/pm-10cc79ca.svg +5 -0
  559. package/dist/spa/assets/pm-498e2e96.svg +5 -0
  560. package/dist/spa/assets/pn-2abb59c8.svg +53 -0
  561. package/dist/spa/assets/pn-e4bc9080.svg +53 -0
  562. package/dist/spa/assets/position-engine.8d40bcd7.js +1 -0
  563. package/dist/spa/assets/pr-044ecbaa.svg +13 -0
  564. package/dist/spa/assets/pr-968c343f.svg +13 -0
  565. package/dist/spa/assets/ps-20efb813.svg +15 -0
  566. package/dist/spa/assets/ps-3045c52b.svg +15 -0
  567. package/dist/spa/assets/pt-55239976.svg +57 -0
  568. package/dist/spa/assets/pt-9c5ea4ae.svg +57 -0
  569. package/dist/spa/assets/pw-77185a59.svg +11 -0
  570. package/dist/spa/assets/pw-a61ab9d9.svg +11 -0
  571. package/dist/spa/assets/py-20b8e698.svg +157 -0
  572. package/dist/spa/assets/py-ce36335f.svg +156 -0
  573. package/dist/spa/assets/qa-d151a4cb.svg +4 -0
  574. package/dist/spa/assets/qa-fb955ef3.svg +4 -0
  575. package/dist/spa/assets/re-7b5a5202.svg +5 -0
  576. package/dist/spa/assets/re-a5347d1a.svg +7 -0
  577. package/dist/spa/assets/ro-17a3a747.svg +7 -0
  578. package/dist/spa/assets/ro-b56a867a.svg +7 -0
  579. package/dist/spa/assets/rs-840a9b00.svg +292 -0
  580. package/dist/spa/assets/rs-f1704888.svg +296 -0
  581. package/dist/spa/assets/rtl.6c6ec198.js +1 -0
  582. package/dist/spa/assets/ru-7100aaae.svg +5 -0
  583. package/dist/spa/assets/ru-b89b2309.svg +5 -0
  584. package/dist/spa/assets/rw-9512100a.svg +13 -0
  585. package/dist/spa/assets/rw-ada409bb.svg +13 -0
  586. package/dist/spa/assets/sa-07dd2814.svg +25 -0
  587. package/dist/spa/assets/sa-81db5d62.svg +25 -0
  588. package/dist/spa/assets/sb-b34eabf3.svg +13 -0
  589. package/dist/spa/assets/sb-d089e4d9.svg +13 -0
  590. package/dist/spa/assets/sc-30cdbe42.svg +7 -0
  591. package/dist/spa/assets/sc-4363a818.svg +7 -0
  592. package/dist/spa/assets/sd-25b3fa24.svg +13 -0
  593. package/dist/spa/assets/sd-61d673be.svg +13 -0
  594. package/dist/spa/assets/se-73e67d57.svg +4 -0
  595. package/dist/spa/assets/se-b3b5071e.svg +4 -0
  596. package/dist/spa/assets/sg-25de9044.svg +13 -0
  597. package/dist/spa/assets/sg-4aa6c197.svg +13 -0
  598. package/dist/spa/assets/sh-559acea1.svg +7 -0
  599. package/dist/spa/assets/sh-ac-0f40c2bc.svg +690 -0
  600. package/dist/spa/assets/sh-ac-16e23419.svg +689 -0
  601. package/dist/spa/assets/sh-ccb1ab63.svg +7 -0
  602. package/dist/spa/assets/sh-hl-406181ee.svg +164 -0
  603. package/dist/spa/assets/sh-hl-68d0949b.svg +164 -0
  604. package/dist/spa/assets/sh-ta-279da87c.svg +76 -0
  605. package/dist/spa/assets/sh-ta-4ac8d5d3.svg +76 -0
  606. package/dist/spa/assets/si-4d8dd01a.svg +18 -0
  607. package/dist/spa/assets/si-c73e4b63.svg +18 -0
  608. package/dist/spa/assets/sj-880802e4.svg +7 -0
  609. package/dist/spa/assets/sj-b60dad0e.svg +7 -0
  610. package/dist/spa/assets/sk-933c0e9f.svg +9 -0
  611. package/dist/spa/assets/sk-e82f6617.svg +9 -0
  612. package/dist/spa/assets/sl-d0c384b0.svg +7 -0
  613. package/dist/spa/assets/sl-feb8b966.svg +12 -0
  614. package/dist/spa/assets/sm-3c448abb.svg +75 -0
  615. package/dist/spa/assets/sm-e6a39dc7.svg +73 -0
  616. package/dist/spa/assets/sn-2c7a8737.svg +8 -0
  617. package/dist/spa/assets/sn-6437db13.svg +8 -0
  618. package/dist/spa/assets/so-249e1acb.svg +11 -0
  619. package/dist/spa/assets/so-cdd8759b.svg +11 -0
  620. package/dist/spa/assets/sr-5194a6af.svg +6 -0
  621. package/dist/spa/assets/sr-81b54581.svg +6 -0
  622. package/dist/spa/assets/ss-2f87b259.svg +8 -0
  623. package/dist/spa/assets/ss-f7ac7017.svg +8 -0
  624. package/dist/spa/assets/st-73d3798d.svg +16 -0
  625. package/dist/spa/assets/st-880c17f9.svg +16 -0
  626. package/dist/spa/assets/sv-94e59678.svg +594 -0
  627. package/dist/spa/assets/sv-fc3bb719.svg +594 -0
  628. package/dist/spa/assets/sx-514cc8e6.svg +56 -0
  629. package/dist/spa/assets/sx-7937e634.svg +56 -0
  630. package/dist/spa/assets/sy-097f5f00.svg +6 -0
  631. package/dist/spa/assets/sy-9f4f226b.svg +6 -0
  632. package/dist/spa/assets/sz-cc06803f.svg +34 -0
  633. package/dist/spa/assets/sz-f2832775.svg +34 -0
  634. package/dist/spa/assets/tc-542bbd6b.svg +50 -0
  635. package/dist/spa/assets/tc-83c26721.svg +50 -0
  636. package/dist/spa/assets/td-19a278fb.svg +7 -0
  637. package/dist/spa/assets/td-f5c38f02.svg +7 -0
  638. package/dist/spa/assets/tf-0bf7174a.svg +15 -0
  639. package/dist/spa/assets/tf-9249adfa.svg +15 -0
  640. package/dist/spa/assets/tg-33598cd0.svg +14 -0
  641. package/dist/spa/assets/tg-ec624b49.svg +14 -0
  642. package/dist/spa/assets/th-329cc0d5.svg +7 -0
  643. package/dist/spa/assets/th-bb8a18d6.svg +7 -0
  644. package/dist/spa/assets/tj-29eb9e2b.svg +26 -0
  645. package/dist/spa/assets/tj-93a976af.svg +22 -0
  646. package/dist/spa/assets/tk-4c433207.svg +5 -0
  647. package/dist/spa/assets/tk-8040c00b.svg +5 -0
  648. package/dist/spa/assets/tl-09c763aa.svg +13 -0
  649. package/dist/spa/assets/tl-caf45b73.svg +13 -0
  650. package/dist/spa/assets/tm-257cc21c.svg +204 -0
  651. package/dist/spa/assets/tm-b6616048.svg +205 -0
  652. package/dist/spa/assets/tn-8e0274e5.svg +4 -0
  653. package/dist/spa/assets/tn-bddf1a6c.svg +4 -0
  654. package/dist/spa/assets/to-8f2f476b.svg +10 -0
  655. package/dist/spa/assets/to-b351703f.svg +10 -0
  656. package/dist/spa/assets/tr-256a1d6a.svg +8 -0
  657. package/dist/spa/assets/tr-d83c3693.svg +8 -0
  658. package/dist/spa/assets/tt-04c13dcd.svg +5 -0
  659. package/dist/spa/assets/tt-4be02a2c.svg +7 -0
  660. package/dist/spa/assets/tv-7415f816.svg +9 -0
  661. package/dist/spa/assets/tv-d94fa5f1.svg +9 -0
  662. package/dist/spa/assets/tw-931757f0.svg +34 -0
  663. package/dist/spa/assets/tw-c04cf00d.svg +32 -0
  664. package/dist/spa/assets/tz-0c1241a5.svg +15 -0
  665. package/dist/spa/assets/tz-fd317aba.svg +13 -0
  666. package/dist/spa/assets/ua-2d869c23.svg +6 -0
  667. package/dist/spa/assets/ua-fd9ad29b.svg +6 -0
  668. package/dist/spa/assets/ug-1c2dc80a.svg +30 -0
  669. package/dist/spa/assets/ug-cfbbc57e.svg +30 -0
  670. package/dist/spa/assets/um-32796aeb.svg +9 -0
  671. package/dist/spa/assets/um-60a63330.svg +9 -0
  672. package/dist/spa/assets/un-1bbe9b9f.svg +16 -0
  673. package/dist/spa/assets/un-8cf05f44.svg +16 -0
  674. package/dist/spa/assets/us-633325cb.svg +9 -0
  675. package/dist/spa/assets/us-e7be4240.svg +9 -0
  676. package/dist/spa/assets/use-dark.f9e4c52e.js +1 -0
  677. package/dist/spa/assets/use-tick.25cd130f.js +1 -0
  678. package/dist/spa/assets/use-timeout.68aa88bf.js +1 -0
  679. package/dist/spa/assets/uy-47656c0b.svg +28 -0
  680. package/dist/spa/assets/uy-560c003d.svg +28 -0
  681. package/dist/spa/assets/uz-62ce6f10.svg +30 -0
  682. package/dist/spa/assets/uz-8f09f1fe.svg +30 -0
  683. package/dist/spa/assets/va-3de11ade.svg +190 -0
  684. package/dist/spa/assets/va-78d508db.svg +190 -0
  685. package/dist/spa/assets/vc-31d13bf0.svg +8 -0
  686. package/dist/spa/assets/vc-4e0a8644.svg +8 -0
  687. package/dist/spa/assets/ve-5712f1c6.svg +26 -0
  688. package/dist/spa/assets/ve-9052562f.svg +26 -0
  689. package/dist/spa/assets/vg-7cd2b24c.svg +59 -0
  690. package/dist/spa/assets/vg-f56ce78b.svg +59 -0
  691. package/dist/spa/assets/vi-91e6caf9.svg +28 -0
  692. package/dist/spa/assets/vi-990cfac9.svg +28 -0
  693. package/dist/spa/assets/vn-23550372.svg +11 -0
  694. package/dist/spa/assets/vn-7b590ecf.svg +11 -0
  695. package/dist/spa/assets/vu-03137169.svg +21 -0
  696. package/dist/spa/assets/vu-f7bd4168.svg +21 -0
  697. package/dist/spa/assets/wf-ad34db05.svg +5 -0
  698. package/dist/spa/assets/wf-da8ca66e.svg +5 -0
  699. package/dist/spa/assets/ws-48d15d76.svg +7 -0
  700. package/dist/spa/assets/ws-6b1a7ebc.svg +7 -0
  701. package/dist/spa/assets/xk-b73926fa.svg +5 -0
  702. package/dist/spa/assets/xk-e5bdc61c.svg +5 -0
  703. package/dist/spa/assets/xx-5f776f5b.svg +4 -0
  704. package/dist/spa/assets/xx-84717c7a.svg +4 -0
  705. package/dist/spa/assets/ye-4ad43705.svg +7 -0
  706. package/dist/spa/assets/ye-8ff200c9.svg +7 -0
  707. package/dist/spa/assets/yt-5a57b00a.svg +5 -0
  708. package/dist/spa/assets/yt-f6ed4975.svg +5 -0
  709. package/dist/spa/assets/za-004caac0.svg +17 -0
  710. package/dist/spa/assets/za-1755a5e1.svg +17 -0
  711. package/dist/spa/assets/zm-32fbded9.svg +27 -0
  712. package/dist/spa/assets/zm-65843e27.svg +27 -0
  713. package/dist/spa/assets/zw-bc95d191.svg +21 -0
  714. package/dist/spa/assets/zw-de8ce588.svg +21 -0
  715. package/dist/spa/favicon.ico +0 -0
  716. package/dist/spa/icons/caret-down.svg +5 -0
  717. package/dist/spa/icons/chevron-left.svg +5 -0
  718. package/dist/spa/icons/chevron-right.svg +5 -0
  719. package/dist/spa/icons/favicon-128x128.png +0 -0
  720. package/dist/spa/icons/favicon-16x16.png +0 -0
  721. package/dist/spa/icons/favicon-32x32.png +0 -0
  722. package/dist/spa/icons/favicon-96x96.png +0 -0
  723. package/dist/spa/icons/logo-s.svg +13 -0
  724. package/dist/spa/icons/logo.svg +19 -0
  725. package/dist/spa/icons/visa.svg +4 -0
  726. package/dist/spa/images/logo.svg +19 -0
  727. package/dist/spa/index.html +3 -0
  728. package/dist/spa/js/maps.js +40 -0
  729. package/package.json +12 -6
  730. package/src/components/core/UTabBtnStd.vue +0 -153
  731. package/src/components/index.js +0 -24
  732. /package/{src → dist/component-library}/components/ComponentLink.vue +0 -0
  733. /package/{src → dist/component-library}/components/core/UAvatarGroup.vue +0 -0
  734. /package/{src → dist/component-library}/components/core/UBadgeStd.vue +0 -0
@@ -0,0 +1,19 @@
1
+ import{o as E,c as L,r as C,a as V,n as $e,b as we,m as be,t as ve,d as ee,e as _e}from"./index.fbe934e4.js";import{_ as x}from"./plugin-vue_export-helper.21dcd24c.js";var te=r=>{let e=!1,t;return()=>(e||(e=!0,t=r()),t)};class G{static isServer(){return typeof document=="undefined"}}function ke(r){const e=document.createElement("SCRIPT");if(typeof r!="object")throw new Error("options should be an object");Array.prototype.isPrototypeOf(r.libraries)&&(r.libraries=r.libraries.join(",")),r.v||(r.v=3.47),r.callback="vueGoogleMapsInit";let s="https://maps.googleapis.com/maps/api/js?"+Object.keys(r).map(n=>encodeURIComponent(n)+"="+encodeURIComponent(r[n])).join("&");return e.setAttribute("src",s),e.setAttribute("async",""),e.setAttribute("defer",""),e}let se=!1;function Oe(r){if(!G.isServer()){if(se)throw new Error("You already started the loading of google maps");{se=!0;const e=ke(r);document.head.appendChild(e)}}}var ue=(r,e,t)=>{for(let s of t){const n=`on${s.charAt(0).toUpperCase()}${s.slice(1)}`.replace(/[-_]+(.)?/g,(o,a)=>a?a.toUpperCase():"");r.$props[n]||r.$attrs[n]?e.addListener(s,o=>{r.$emit(s,o)}):(r.$gmapOptions.autobindAllEvents||r.$attrs[s])&&e.addListener(s,o=>{r.$emit(s,o)})}};function he(r,e,t,s=!1){let n=!1;function o(){n||(n=!0,r.$nextTick(()=>{n=!1,t()}))}for(let a of e)r.$watch(a,o,{immediate:s})}class re{static capitalizeFirstLetter(e){return e.charAt(0).toUpperCase()+e.slice(1)}}function W(r,e){return Object.keys(e).reduce((t,s)=>(r[s]!==void 0&&(t[s]=r[s]),t),{})}function q(r,e,t){for(let s in t){let{twoWay:n,type:o,trackProperties:a,noBind:c}=t[s];if(c)continue;const i="set"+re.capitalizeFirstLetter(s),p="get"+re.capitalizeFirstLetter(s),u=s.toLowerCase()+"_changed",l=r[s];if(typeof e[i]=="undefined")throw new Error(`${i} is not a method of (the Maps object corresponding to) ${r.$options._componentTag}`);o!==Object||!a?r.$watch(s,()=>{const h=r[s];e[i](h)},{immediate:typeof l!="undefined",deep:o===Object}):he(r,a.map(h=>`${s}.${h}`),()=>{e[i](r[s])},r[s]!==void 0),n&&(r.$gmapOptions.autobindAllEvents||r.$attrs[u])&&e.addListener(u,()=>{r.$emit(u,e[p]())})}}var Me={inject:{$mapPromise:{default:"abcdef"}},provide(){return this.$mapPromise.then(r=>{this.$map=r}),{}}};function k(r){const{mappedProps:e,name:t,ctr:s,ctrArgs:n,events:o,beforeCreate:a,afterCreate:c,props:i,...p}=r,u=`$${t}Promise`,l=`$${t}Object`;return Pe(!(p.props instanceof Array),"`props` should be an object, not Array"),{...typeof GENERATE_DOC!="undefined"?{$vgmOptions:r}:{},mixins:[Me],props:{...i,...K(e)},render(){return""},provide(){const h=this.$mapPromise.then(d=>{this.$map=d;const m={...this.options,map:d,...W(this,e)};if(delete m.options,a){const f=a.bind(this)(m);if(f instanceof Promise)return f.then(()=>({options:m}))}return{options:m}}).then(({options:d})=>{const m=s();return this[l]=n?new(Function.prototype.bind.call(m,null,...n(d,W(this,i||{})))):new m(d),q(this,this[l],e),ue(this,this[l],o),c&&c.bind(this)(this[l]),this[l]});return this[u]=h,{[u]:h}},unmounted(){this[l]&&this[l].setMap&&this[l].setMap(null)},...p}}function Pe(r,e){if(!r)throw new Error(e)}function K(r){return Object.entries(r).map(([e,t])=>{const s={};return"type"in t&&(s.type=t.type),"default"in t&&(s.default=t.default),"required"in t&&(s.required=t.required),[e,s]}).reduce((e,[t,s])=>(e[t]=s,e),{})}const Ae={draggable:{type:Boolean},editable:{type:Boolean},options:{twoWay:!1,type:Object},path:{type:Array,twoWay:!0}},je=["click","dblclick","drag","dragend","dragstart","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"];var Ce=k({mappedProps:Ae,props:{deepWatch:{type:Boolean,default:!1}},events:je,name:"polyline",ctr:()=>google.maps.Polyline,afterCreate(){let r=()=>{};this.$watch("path",e=>{if(e){r(),this.$polylineObject.setPath(e);const t=this.$polylineObject.getPath(),s=[],n=()=>{this.$emit("path_changed",this.$polylineObject.getPath())};s.push([t,t.addListener("insert_at",n)]),s.push([t,t.addListener("remove_at",n)]),s.push([t,t.addListener("set_at",n)]),r=()=>{s.map(([o,a])=>google.maps.event.removeListener(a))}}},{deep:this.deepWatch,immediate:!0})}});const Ee={draggable:{type:Boolean},editable:{type:Boolean},options:{type:Object},path:{type:Array,twoWay:!0,noBind:!0},paths:{type:Array,twoWay:!0,noBind:!0}},Le=["click","dblclick","drag","dragend","dragstart","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"];var xe=k({props:{deepWatch:{type:Boolean,default:!1}},events:Le,mappedProps:Ee,name:"polygon",ctr:()=>google.maps.Polygon,beforeCreate(r){r.path||delete r.path,r.paths||delete r.paths},afterCreate(r){let e=()=>{};this.$watch("paths",t=>{if(t){e(),r.setPaths(t);const s=()=>{this.$emit("paths_changed",r.getPaths())},n=[],o=r.getPaths();for(let a=0;a<o.getLength();a++){let c=o.getAt(a);n.push([c,c.addListener("insert_at",s)]),n.push([c,c.addListener("remove_at",s)]),n.push([c,c.addListener("set_at",s)])}n.push([o,o.addListener("insert_at",s)]),n.push([o,o.addListener("remove_at",s)]),n.push([o,o.addListener("set_at",s)]),e=()=>{n.map(([a,c])=>google.maps.event.removeListener(c))}}},{deep:this.deepWatch,immediate:!0}),this.$watch("path",t=>{if(t){e(),r.setPaths(t);const s=r.getPath(),n=[],o=()=>{this.$emit("path_changed",r.getPath())};n.push([s,s.addListener("insert_at",o)]),n.push([s,s.addListener("remove_at",o)]),n.push([s,s.addListener("set_at",o)]),e=()=>{n.map(([a,c])=>google.maps.event.removeListener(c))}}},{deep:this.deepWatch,immediate:!0})}});const ze={center:{type:Object,twoWay:!0,required:!0},radius:{type:Number,twoWay:!0},draggable:{type:Boolean,default:!1},editable:{type:Boolean,default:!1},options:{type:Object,twoWay:!1}},Be=["click","dblclick","drag","dragend","dragstart","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"];var We=k({mappedProps:ze,name:"circle",ctr:()=>google.maps.Circle,events:Be});const Se={bounds:{type:Object,twoWay:!0},draggable:{type:Boolean,default:!1},editable:{type:Boolean,default:!1},options:{type:Object,twoWay:!1}},Re=["click","dblclick","drag","dragend","dragstart","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"];var Te=k({mappedProps:Se,name:"rectangle",ctr:()=>google.maps.Rectangle,events:Re});const Ne={animation:{twoWay:!0,type:Number},attribution:{type:Object},clickable:{type:Boolean,twoWay:!0,default:!0},cursor:{type:String,twoWay:!0},draggable:{type:Boolean,twoWay:!0,default:!1},icon:{twoWay:!0},label:{},opacity:{type:Number,default:1},options:{type:Object},place:{type:Object},position:{type:Object,twoWay:!0},shape:{type:Object,twoWay:!0},title:{type:String,twoWay:!0},zIndex:{type:Number,twoWay:!0},visible:{twoWay:!0,default:!0}},R=["click","rightclick","dblclick","drag","dragstart","dragend","mouseup","mousedown","mouseover","mouseout"],Ue=k({mappedProps:Ne,events:R,name:"marker",ctr:()=>google.maps.Marker,inject:{$clusterPromise:{default:null}},emits:R,unmounted(){!this.$markerObject||(this.$clusterObject?this.$clusterObject.removeMarker(this.$markerObject,!0):this.$markerObject.setMap(null))},beforeCreate(r){return this.$clusterPromise&&(r.map=null),this.$clusterPromise},afterCreate(r){R.forEach(e=>{r.addListener(e,t=>{this.$emit(e,t)})}),this.$clusterPromise&&this.$clusterPromise.then(e=>{this.$clusterObject=e,e.addMarker(r)})}});function Fe(r,e,t,s,n,o){return E(),L("div",{onClick:e[0]||(e[0]=()=>{console.log("sdfsd")})},[C(r.$slots,"default")])}var Ze=x(Ue,[["render",Fe]]),ne=function r(e,t){if(e===t)return!0;if(e&&t&&typeof e=="object"&&typeof t=="object"){if(e.constructor!==t.constructor)return!1;var s,n,o;if(Array.isArray(e)){if(s=e.length,s!=t.length)return!1;for(n=s;n--!==0;)if(!r(e[n],t[n]))return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===t.toString();if(o=Object.keys(e),s=o.length,s!==Object.keys(t).length)return!1;for(n=s;n--!==0;)if(!Object.prototype.hasOwnProperty.call(t,o[n]))return!1;for(n=s;n--!==0;){var a=o[n];if(!r(e[a],t[a]))return!1}return!0}return e!==e&&t!==t};const oe=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array],T=1,P=8;class Y{static from(e){if(!(e instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[t,s]=new Uint8Array(e,0,2);if(t!==219)throw new Error("Data does not appear to be in a KDBush format.");const n=s>>4;if(n!==T)throw new Error(`Got v${n} data when expected v${T}.`);const o=oe[s&15];if(!o)throw new Error("Unrecognized array type.");const[a]=new Uint16Array(e,2,1),[c]=new Uint32Array(e,4,1);return new Y(c,a,o,e)}constructor(e,t=64,s=Float64Array,n){if(isNaN(e)||e<0)throw new Error(`Unpexpected numItems value: ${e}.`);this.numItems=+e,this.nodeSize=Math.min(Math.max(+t,2),65535),this.ArrayType=s,this.IndexArrayType=e<65536?Uint16Array:Uint32Array;const o=oe.indexOf(this.ArrayType),a=e*2*this.ArrayType.BYTES_PER_ELEMENT,c=e*this.IndexArrayType.BYTES_PER_ELEMENT,i=(8-c%8)%8;if(o<0)throw new Error(`Unexpected typed array class: ${s}.`);n&&n instanceof ArrayBuffer?(this.data=n,this.ids=new this.IndexArrayType(this.data,P,e),this.coords=new this.ArrayType(this.data,P+c+i,e*2),this._pos=e*2,this._finished=!0):(this.data=new ArrayBuffer(P+a+c+i),this.ids=new this.IndexArrayType(this.data,P,e),this.coords=new this.ArrayType(this.data,P+c+i,e*2),this._pos=0,this._finished=!1,new Uint8Array(this.data,0,2).set([219,(T<<4)+o]),new Uint16Array(this.data,2,1)[0]=t,new Uint32Array(this.data,4,1)[0]=e)}add(e,t){const s=this._pos>>1;return this.ids[s]=s,this.coords[this._pos++]=e,this.coords[this._pos++]=t,s}finish(){const e=this._pos>>1;if(e!==this.numItems)throw new Error(`Added ${e} items when expected ${this.numItems}.`);return D(this.ids,this.coords,this.nodeSize,0,this.numItems-1,0),this._finished=!0,this}range(e,t,s,n){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:o,coords:a,nodeSize:c}=this,i=[0,o.length-1,0],p=[];for(;i.length;){const u=i.pop()||0,l=i.pop()||0,h=i.pop()||0;if(l-h<=c){for(let g=h;g<=l;g++){const y=a[2*g],w=a[2*g+1];y>=e&&y<=s&&w>=t&&w<=n&&p.push(o[g])}continue}const d=h+l>>1,m=a[2*d],f=a[2*d+1];m>=e&&m<=s&&f>=t&&f<=n&&p.push(o[d]),(u===0?e<=m:t<=f)&&(i.push(h),i.push(d-1),i.push(1-u)),(u===0?s>=m:n>=f)&&(i.push(d+1),i.push(l),i.push(1-u))}return p}within(e,t,s){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:n,coords:o,nodeSize:a}=this,c=[0,n.length-1,0],i=[],p=s*s;for(;c.length;){const u=c.pop()||0,l=c.pop()||0,h=c.pop()||0;if(l-h<=a){for(let g=h;g<=l;g++)ie(o[2*g],o[2*g+1],e,t)<=p&&i.push(n[g]);continue}const d=h+l>>1,m=o[2*d],f=o[2*d+1];ie(m,f,e,t)<=p&&i.push(n[d]),(u===0?e-s<=m:t-s<=f)&&(c.push(h),c.push(d-1),c.push(1-u)),(u===0?e+s>=m:t+s>=f)&&(c.push(d+1),c.push(l),c.push(1-u))}return i}}function D(r,e,t,s,n,o){if(n-s<=t)return;const a=s+n>>1;de(r,e,a,s,n,o),D(r,e,t,s,a-1,1-o),D(r,e,t,a+1,n,1-o)}function de(r,e,t,s,n,o){for(;n>s;){if(n-s>600){const p=n-s+1,u=t-s+1,l=Math.log(p),h=.5*Math.exp(2*l/3),d=.5*Math.sqrt(l*h*(p-h)/p)*(u-p/2<0?-1:1),m=Math.max(s,Math.floor(t-u*h/p+d)),f=Math.min(n,Math.floor(t+(p-u)*h/p+d));de(r,e,t,m,f,o)}const a=e[2*t+o];let c=s,i=n;for(A(r,e,s,t),e[2*n+o]>a&&A(r,e,s,n);c<i;){for(A(r,e,c,i),c++,i--;e[2*c+o]<a;)c++;for(;e[2*i+o]>a;)i--}e[2*s+o]===a?A(r,e,s,i):(i++,A(r,e,i,n)),i<=t&&(s=i+1),t<=i&&(n=i-1)}}function A(r,e,t,s){N(r,t,s),N(e,2*t,2*s),N(e,2*t+1,2*s+1)}function N(r,e,t){const s=r[e];r[e]=r[t],r[t]=s}function ie(r,e,t,s){const n=r-t,o=e-s;return n*n+o*o}const Ie={minZoom:0,maxZoom:16,minPoints:2,radius:40,extent:512,nodeSize:64,log:!1,generateId:!1,reduce:null,map:r=>r},ae=Math.fround||(r=>e=>(r[0]=+e,r[0]))(new Float32Array(1)),M=2,_=3,U=4,v=5,me=6;class Ge{constructor(e){this.options=Object.assign(Object.create(Ie),e),this.trees=new Array(this.options.maxZoom+1),this.stride=this.options.reduce?7:6,this.clusterProps=[]}load(e){const{log:t,minZoom:s,maxZoom:n}=this.options;t&&console.time("total time");const o=`prepare ${e.length} points`;t&&console.time(o),this.points=e;const a=[];for(let i=0;i<e.length;i++){const p=e[i];if(!p.geometry)continue;const[u,l]=p.geometry.coordinates,h=ae(z(u)),d=ae(B(l));a.push(h,d,1/0,i,-1,1),this.options.reduce&&a.push(0)}let c=this.trees[n+1]=this._createTree(a);t&&console.timeEnd(o);for(let i=n;i>=s;i--){const p=+Date.now();c=this.trees[i]=this._createTree(this._cluster(c,i)),t&&console.log("z%d: %d clusters in %dms",i,c.numItems,+Date.now()-p)}return t&&console.timeEnd("total time"),this}getClusters(e,t){let s=((e[0]+180)%360+360)%360-180;const n=Math.max(-90,Math.min(90,e[1]));let o=e[2]===180?180:((e[2]+180)%360+360)%360-180;const a=Math.max(-90,Math.min(90,e[3]));if(e[2]-e[0]>=360)s=-180,o=180;else if(s>o){const l=this.getClusters([s,n,180,a],t),h=this.getClusters([-180,n,o,a],t);return l.concat(h)}const c=this.trees[this._limitZoom(t)],i=c.range(z(s),B(a),z(o),B(n)),p=c.data,u=[];for(const l of i){const h=this.stride*l;u.push(p[h+v]>1?ce(p,h,this.clusterProps):this.points[p[h+_]])}return u}getChildren(e){const t=this._getOriginId(e),s=this._getOriginZoom(e),n="No cluster with the specified id.",o=this.trees[s];if(!o)throw new Error(n);const a=o.data;if(t*this.stride>=a.length)throw new Error(n);const c=this.options.radius/(this.options.extent*Math.pow(2,s-1)),i=a[t*this.stride],p=a[t*this.stride+1],u=o.within(i,p,c),l=[];for(const h of u){const d=h*this.stride;a[d+U]===e&&l.push(a[d+v]>1?ce(a,d,this.clusterProps):this.points[a[d+_]])}if(l.length===0)throw new Error(n);return l}getLeaves(e,t,s){t=t||10,s=s||0;const n=[];return this._appendLeaves(n,e,t,s,0),n}getTile(e,t,s){const n=this.trees[this._limitZoom(e)],o=Math.pow(2,e),{extent:a,radius:c}=this.options,i=c/a,p=(s-i)/o,u=(s+1+i)/o,l={features:[]};return this._addTileFeatures(n.range((t-i)/o,p,(t+1+i)/o,u),n.data,t,s,o,l),t===0&&this._addTileFeatures(n.range(1-i/o,p,1,u),n.data,o,s,o,l),t===o-1&&this._addTileFeatures(n.range(0,p,i/o,u),n.data,-1,s,o,l),l.features.length?l:null}getClusterExpansionZoom(e){let t=this._getOriginZoom(e)-1;for(;t<=this.options.maxZoom;){const s=this.getChildren(e);if(t++,s.length!==1)break;e=s[0].properties.cluster_id}return t}_appendLeaves(e,t,s,n,o){const a=this.getChildren(t);for(const c of a){const i=c.properties;if(i&&i.cluster?o+i.point_count<=n?o+=i.point_count:o=this._appendLeaves(e,i.cluster_id,s,n,o):o<n?o++:e.push(c),e.length===s)break}return o}_createTree(e){const t=new Y(e.length/this.stride|0,this.options.nodeSize,Float32Array);for(let s=0;s<e.length;s+=this.stride)t.add(e[s],e[s+1]);return t.finish(),t.data=e,t}_addTileFeatures(e,t,s,n,o,a){for(const c of e){const i=c*this.stride,p=t[i+v]>1;let u,l,h;if(p)u=fe(t,i,this.clusterProps),l=t[i],h=t[i+1];else{const f=this.points[t[i+_]];u=f.properties;const[g,y]=f.geometry.coordinates;l=z(g),h=B(y)}const d={type:1,geometry:[[Math.round(this.options.extent*(l*o-s)),Math.round(this.options.extent*(h*o-n))]],tags:u};let m;p||this.options.generateId?m=t[i+_]:m=this.points[t[i+_]].id,m!==void 0&&(d.id=m),a.features.push(d)}}_limitZoom(e){return Math.max(this.options.minZoom,Math.min(Math.floor(+e),this.options.maxZoom+1))}_cluster(e,t){const{radius:s,extent:n,reduce:o,minPoints:a}=this.options,c=s/(n*Math.pow(2,t)),i=e.data,p=[],u=this.stride;for(let l=0;l<i.length;l+=u){if(i[l+M]<=t)continue;i[l+M]=t;const h=i[l],d=i[l+1],m=e.within(i[l],i[l+1],c),f=i[l+v];let g=f;for(const y of m){const w=y*u;i[w+M]>t&&(g+=i[w+v])}if(g>f&&g>=a){let y=h*f,w=d*f,b,Q=-1;const S=((l/u|0)<<5)+(t+1)+this.points.length;for(const ye of m){const O=ye*u;if(i[O+M]<=t)continue;i[O+M]=t;const X=i[O+v];y+=i[O]*X,w+=i[O+1]*X,i[O+U]=S,o&&(b||(b=this._map(i,l,!0),Q=this.clusterProps.length,this.clusterProps.push(b)),o(b,this._map(i,O)))}i[l+U]=S,p.push(y/g,w/g,1/0,S,-1,g),o&&p.push(Q)}else{for(let y=0;y<u;y++)p.push(i[l+y]);if(g>1)for(const y of m){const w=y*u;if(!(i[w+M]<=t)){i[w+M]=t;for(let b=0;b<u;b++)p.push(i[w+b])}}}}return p}_getOriginId(e){return e-this.points.length>>5}_getOriginZoom(e){return(e-this.points.length)%32}_map(e,t,s){if(e[t+v]>1){const a=this.clusterProps[e[t+me]];return s?Object.assign({},a):a}const n=this.points[e[t+_]].properties,o=this.options.map(n);return s&&o===n?Object.assign({},o):o}}function ce(r,e,t){return{type:"Feature",id:r[e+_],properties:fe(r,e,t),geometry:{type:"Point",coordinates:[De(r[e]),He(r[e+1])]}}}function fe(r,e,t){const s=r[e+v],n=s>=1e4?`${Math.round(s/1e3)}k`:s>=1e3?`${Math.round(s/100)/10}k`:s,o=r[e+me],a=o===-1?{}:Object.assign({},t[o]);return Object.assign(a,{cluster:!0,cluster_id:r[e+_],point_count:s,point_count_abbreviated:n})}function z(r){return r/360+.5}function B(r){const e=Math.sin(r*Math.PI/180),t=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return t<0?0:t>1?1:t}function De(r){return(r-.5)*360}function He(r){const e=(180-r*360)*Math.PI/180;return 360*Math.atan(Math.exp(e))/Math.PI-90}/*! *****************************************************************************
2
+ Copyright (c) Microsoft Corporation.
3
+
4
+ Permission to use, copy, modify, and/or distribute this software for any
5
+ purpose with or without fee is hereby granted.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
11
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
12
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
13
+ PERFORMANCE OF THIS SOFTWARE.
14
+ ***************************************************************************** */function qe(r,e){var t={};for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&e.indexOf(s)<0&&(t[s]=r[s]);if(r!=null&&typeof Object.getOwnPropertySymbols=="function")for(var n=0,s=Object.getOwnPropertySymbols(r);n<s.length;n++)e.indexOf(s[n])<0&&Object.prototype.propertyIsEnumerable.call(r,s[n])&&(t[s[n]]=r[s[n]]);return t}class ${static isAdvancedMarkerAvailable(e){return google.maps.marker&&e.getMapCapabilities().isAdvancedMarkersAvailable===!0}static isAdvancedMarker(e){return google.maps.marker&&e instanceof google.maps.marker.AdvancedMarkerElement}static setMap(e,t){this.isAdvancedMarker(e)?e.map=t:e.setMap(t)}static getPosition(e){if(this.isAdvancedMarker(e)){if(e.position){if(e.position instanceof google.maps.LatLng)return e.position;if(e.position.lat&&e.position.lng)return new google.maps.LatLng(e.position.lat,e.position.lng)}return new google.maps.LatLng(null)}return e.getPosition()}static getVisible(e){return this.isAdvancedMarker(e)?!0:e.getVisible()}}class H{constructor({markers:e,position:t}){this.markers=e,t&&(t instanceof google.maps.LatLng?this._position=t:this._position=new google.maps.LatLng(t))}get bounds(){if(this.markers.length===0&&!this._position)return;const e=new google.maps.LatLngBounds(this._position,this._position);for(const t of this.markers)e.extend($.getPosition(t));return e}get position(){return this._position||this.bounds.getCenter()}get count(){return this.markers.filter(e=>$.getVisible(e)).length}push(e){this.markers.push(e)}delete(){this.marker&&($.setMap(this.marker,null),this.marker=void 0),this.markers.length=0}}class Ke{constructor({maxZoom:e=16}){this.maxZoom=e}noop({markers:e}){return Ye(e)}}const Ye=r=>r.map(t=>new H({position:$.getPosition(t),markers:[t]}));class Je extends Ke{constructor(e){var{maxZoom:t,radius:s=60}=e,n=qe(e,["maxZoom","radius"]);super({maxZoom:t}),this.state={zoom:-1},this.superCluster=new Ge(Object.assign({maxZoom:this.maxZoom,radius:s},n))}calculate(e){let t=!1;const s={zoom:e.map.getZoom()};if(!ne(e.markers,this.markers)){t=!0,this.markers=[...e.markers];const n=this.markers.map(o=>{const a=$.getPosition(o),c=[a.lng(),a.lat()];return{type:"Feature",geometry:{type:"Point",coordinates:c},properties:{marker:o}}});this.superCluster.load(n)}return t||(this.state.zoom<=this.maxZoom||s.zoom<=this.maxZoom)&&(t=!ne(this.state,s)),this.state=s,t&&(this.clusters=this.cluster(e)),{clusters:this.clusters,changed:t}}cluster({map:e}){return this.superCluster.getClusters([-180,-90,180,90],Math.round(e.getZoom())).map(t=>this.transformCluster(t))}transformCluster({geometry:{coordinates:[e,t]},properties:s}){if(s.cluster)return new H({markers:this.superCluster.getLeaves(s.cluster_id,1/0).map(o=>o.properties.marker),position:{lat:t,lng:e}});const n=s.marker;return new H({markers:[n],position:$.getPosition(n)})}}class Qe{constructor(e,t){this.markers={sum:e.length};const s=t.map(o=>o.count),n=s.reduce((o,a)=>o+a,0);this.clusters={count:t.length,markers:{mean:n/t.length,sum:n,min:Math.min(...s),max:Math.max(...s)}}}}class Xe{render({count:e,position:t},s,n){const a=`<svg fill="${e>Math.max(10,s.clusters.markers.mean)?"#ff0000":"#0000ff"}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240" width="50" height="50">
15
+ <circle cx="120" cy="120" opacity=".6" r="70" />
16
+ <circle cx="120" cy="120" opacity=".3" r="90" />
17
+ <circle cx="120" cy="120" opacity=".2" r="110" />
18
+ <text x="50%" y="50%" style="fill:#fff" text-anchor="middle" font-size="50" dominant-baseline="middle" font-family="roboto,arial,sans-serif">${e}</text>
19
+ </svg>`,c=`Cluster of ${e} markers`,i=Number(google.maps.Marker.MAX_ZINDEX)+e;if($.isAdvancedMarkerAvailable(n)){const l=new DOMParser().parseFromString(a,"image/svg+xml").documentElement;l.setAttribute("transform","translate(0 25)");const h={map:n,position:t,zIndex:i,title:c,content:l};return new google.maps.marker.AdvancedMarkerElement(h)}const p={position:t,zIndex:i,title:c,icon:{url:`data:image/svg+xml;base64,${btoa(a)}`,anchor:new google.maps.Point(25,25)}};return new google.maps.Marker(p)}}function Ve(r,e){for(let t in e.prototype)r.prototype[t]=e.prototype[t]}class J{constructor(){Ve(J,google.maps.OverlayView)}}var j;(function(r){r.CLUSTERING_BEGIN="clusteringbegin",r.CLUSTERING_END="clusteringend",r.CLUSTER_CLICK="click"})(j||(j={}));const et=(r,e,t)=>{t.fitBounds(e.bounds)};class le extends J{constructor({map:e,markers:t=[],algorithmOptions:s={},algorithm:n=new Je(s),renderer:o=new Xe,onClusterClick:a=et}){super(),this.markers=[...t],this.clusters=[],this.algorithm=n,this.renderer=o,this.onClusterClick=a,e&&this.setMap(e)}addMarker(e,t){this.markers.includes(e)||(this.markers.push(e),t||this.render())}addMarkers(e,t){e.forEach(s=>{this.addMarker(s,!0)}),t||this.render()}removeMarker(e,t){const s=this.markers.indexOf(e);return s===-1?!1:($.setMap(e,null),this.markers.splice(s,1),t||this.render(),!0)}removeMarkers(e,t){let s=!1;return e.forEach(n=>{s=this.removeMarker(n,!0)||s}),s&&!t&&this.render(),s}clearMarkers(e){this.markers.length=0,e||this.render()}render(){const e=this.getMap();if(e instanceof google.maps.Map&&e.getProjection()){google.maps.event.trigger(this,j.CLUSTERING_BEGIN,this);const{clusters:t,changed:s}=this.algorithm.calculate({markers:this.markers,map:e,mapCanvasProjection:this.getProjection()});if(s||s==null){const n=new Set;for(const a of t)a.markers.length==1&&n.add(a.markers[0]);const o=[];for(const a of this.clusters)a.marker!=null&&(a.markers.length==1?n.has(a.marker)||$.setMap(a.marker,null):o.push(a.marker));this.clusters=t,this.renderClusters(),requestAnimationFrame(()=>o.forEach(a=>$.setMap(a,null)))}google.maps.event.trigger(this,j.CLUSTERING_END,this)}}onAdd(){this.idleListener=this.getMap().addListener("idle",this.render.bind(this)),this.render()}onRemove(){google.maps.event.removeListener(this.idleListener),this.reset()}reset(){this.markers.forEach(e=>$.setMap(e,null)),this.clusters.forEach(e=>e.delete()),this.clusters=[]}renderClusters(){const e=new Qe(this.markers,this.clusters),t=this.getMap();this.clusters.forEach(s=>{s.markers.length===1?s.marker=s.markers[0]:(s.marker=this.renderer.render(s,e,t),s.markers.forEach(n=>$.setMap(n,null)),this.onClusterClick&&s.marker.addListener("click",n=>{google.maps.event.trigger(this,j.CLUSTER_CLICK,s),this.onClusterClick(n,s,t)})),$.setMap(s.marker,t)})}}const F={maxZoom:{type:Number,twoWay:!1},batchSizeIE:{type:Number,twoWay:!1},calculator:{type:Function,twoWay:!1},enableRetinaIcons:{type:Boolean,twoWay:!1},gridSize:{type:Number,twoWay:!1},ignoreHidden:{type:Boolean,twoWay:!1},imageExtension:{type:String,twoWay:!1},imagePath:{type:String,twoWay:!1},imageSizes:{type:Array,twoWay:!1},minimumClusterSize:{type:Number,twoWay:!1},styles:{type:Array,twoWay:!1},zoomOnClick:{type:Boolean,twoWay:!1}},tt=["click","rightclick","dblclick","drag","dragstart","dragend","mouseup","mousedown","mouseover","mouseout"],st=k({mappedProps:F,events:tt,name:"cluster",ctr:()=>{if(typeof le=="undefined"){const r="MarkerClusterer is not installed!";throw console.error(r),new Error(r)}return le},ctrArgs:({map:r,...e})=>[r,[],e],afterCreate(r){const e=()=>{const t=r.getMarkers();r.clearMarkers(),r.addMarkers(t)};for(let t in F)F[t].twoWay&&this.$on(t.toLowerCase()+"_changed",e)},updated(){this.$clusterObject&&this.$clusterObject.repaint()},beforeUnmount(){this.$children&&this.$children.length&&this.$children.forEach(r=>{r.$clusterObject===this.$clusterObject&&(r.$clusterObject=null)}),this.$clusterObject&&this.$clusterObject.clearMarkers()}});function rt(r,e,t,s,n,o){return E(),L("div",null,[C(r.$slots,"default")])}var nt=x(st,[["render",rt]]);const ot={options:{type:Object,required:!1,default(){return{}}},position:{type:Object,twoWay:!0},zIndex:{type:Number,twoWay:!0}},it=["domready","click","closeclick","content_changed"],at=k({mappedProps:ot,events:it,name:"infoWindow",ctr:()=>google.maps.InfoWindow,props:{opened:{type:Boolean,default:!0}},inject:{$markerPromise:{default:null}},mounted(){const r=this.$refs.infoWindow;r.parentNode.removeChild(r)},beforeCreate(r){if(r.content=this.$refs.infoWindow,this.$markerPromise)return delete r.position,this.$markerPromise.then(e=>(this.$markerObject=e,e))},emits:["closeclick"],methods:{_openInfoWindow(){this.$infoWindowObject.close(),this.opened?this.$infoWindowObject.open(this.$map,this.$markerObject):this.$emit("closeclick")}},afterCreate(){this._openInfoWindow(),this.$watch("opened",()=>{this._openInfoWindow()})}}),ct={ref:"infoWindow"};function lt(r,e,t,s,n,o){return E(),L("div",ct,[C(r.$slots,"default")],512)}var pt=x(at,[["render",lt]]),ut={props:["resizeBus"],data(){return{_actualResizeBus:null}},created(){typeof this.resizeBus=="undefined"?this.$data._actualResizeBus=this.$gmapDefaultResizeBus:this.$data._actualResizeBus=this.resizeBus},methods:{_resizeCallback(){this.resize()},isFunction(r){return r&&{}.toString.call(r)==="[object Function]"},_delayedResizeCallback(){this.$nextTick(()=>this._resizeCallback())}},watch:{resizeBus(r){this.$data._actualResizeBus=r},"$data._actualResizeBus"(r,e){e&&e.$off("resize",this._delayedResizeCallback)}},unmounted(){this.$data._actualResizeBus&&this.isFunction(this.$data._actualResizeBus.$off)&&this.$data._actualResizeBus.$off("resize",this._delayedResizeCallback)}};function ht(r){let e=0;r(()=>{e+=1},()=>{e=Math.max(0,e-1)},()=>e===0)}const Z={center:{required:!0,twoWay:!0,type:Object,noBind:!0},zoom:{required:!1,twoWay:!0,type:Number,noBind:!0},heading:{type:Number,twoWay:!0},mapTypeId:{twoWay:!0,type:String},tilt:{twoWay:!0,type:Number},options:{type:Object,default(){return{}}}},pe=["bounds_changed","click","dblclick","drag","dragend","dragstart","idle","mousemove","mouseout","mouseover","resize","rightclick","tilesloaded"],dt=["panBy","panTo","panToBounds","fitBounds"].reduce((r,e)=>(r[e]=function(){this.$mapObject&&this.$mapObject[e].apply(this.$mapObject,arguments)},r),{}),mt={resize(){this.$mapObject&&google.maps.event.trigger(this.$mapObject,"resize")},resizePreserveCenter(){if(!this.$mapObject)return;const r=this.$mapObject.getCenter();google.maps.event.trigger(this.$mapObject,"resize"),this.$mapObject.setCenter(r)},_resizeCallback(){this.resizePreserveCenter()}},ft={mixins:[ut],props:K({...Z,...pe.reduce((r,e)=>({...r,[`on${e.charAt(0).toUpperCase()}${e.slice(1)}`.replace(/[-_]+(.)?/g,(t,s)=>s?s.toUpperCase():"")]:Function}),{})}),inheritAttrs:!1,provide(){return this.$mapPromise=new Promise((r,e)=>{this.$mapPromiseDeferred={resolve:r,reject:e}}),{$mapPromise:this.$mapPromise}},emits:["center_changed","zoom_changed","bounds_changed"],computed:{finalLat(){return this.center&&typeof this.center.lat=="function"?this.center.lat():this.center.lat},finalLng(){return this.center&&typeof this.center.lng=="function"?this.center.lng():this.center.lng},finalLatLng(){return{lat:this.finalLat,lng:this.finalLng}}},watch:{zoom(r){this.$mapObject&&this.$mapObject.setZoom(r)}},mounted(){return this.$gmapApiPromiseLazy().then(()=>{const r=this.$refs["vue-map"],e={...this.options,...W(this,Z)};return delete e.options,this.$mapObject=new google.maps.Map(r,e),q(this,this.$mapObject,Z),ue(this,this.$mapObject,pe),ht((t,s,n)=>{this.$mapObject.addListener("center_changed",()=>{n()&&this.$emit("center_changed",this.$mapObject.getCenter()),s()}),he(this,["finalLat","finalLng"],()=>{t(),this.$mapObject.setCenter(this.finalLatLng)})}),this.$mapObject.addListener("zoom_changed",()=>{this.$emit("zoom_changed",this.$mapObject.getZoom())}),this.$mapObject.addListener("bounds_changed",()=>{this.$emit("bounds_changed",this.$mapObject.getBounds())}),this.$mapPromiseDeferred.resolve(this.$mapObject),this.$mapObject}).catch(r=>{throw r})},methods:{...mt,...dt}},gt={class:"vue-map-hidden"};function yt(r,e,t,s,n,o){return E(),L("div",{class:we(["vue-map-container",r.$attrs.class])},[V("div",{ref:"vue-map",class:"vue-map",style:$e(r.$attrs.style?r.$attrs.style:"")},null,4),V("div",gt,[C(r.$slots,"default")]),C(r.$slots,"visible")],2)}var $t=x(ft,[["render",yt]]);const wt={options:{type:Object,twoWay:!1,default:()=>{}},data:{type:Array,twoWay:!0}},bt=[];var vt=k({mappedProps:wt,name:"heatmap",ctr:()=>google.maps.visualization.HeatmapLayer,events:bt}),_t=r=>{const e=r.addEventListener?r.addEventListener:r.attachEvent;function t(s,n){if(s==="keydown"){const o=n;n=function(a){const c=document.getElementsByClassName("pac-item-selected").length>0;if(a.which===13&&!c){const i=document.createEvent("Event");i.keyCode=40,i.which=40,o.apply(r,[i])}o.apply(r,[a])}}e.apply(r,[s,n])}r.addEventListener=t,r.attachEvent=t};const I={bounds:{type:Object},componentRestrictions:{type:Object,noBind:!0},types:{type:Array,default:function(){return[]}}},kt={selectFirstOnEnter:{required:!1,type:Boolean,default:!1},options:{type:Object}},Ot={mounted(){this.$gmapApiPromiseLazy().then(()=>{if(this.selectFirstOnEnter&&_t(this.$refs.input),typeof google.maps.places.Autocomplete!="function")throw new Error("google.maps.places.Autocomplete is undefined. Did you add 'places' to libraries when loading Google Maps?");const r={...W(this,I),...this.options};this.$autocomplete=new google.maps.places.Autocomplete(this.$refs.input,r),q(this,this.$autocomplete,I),this.$watch("componentRestrictions",e=>{e!==void 0&&this.$autocomplete.setComponentRestrictions(e)}),this.$autocomplete.addListener("place_changed",()=>{this.$emit("place_changed",this.$autocomplete.getPlace())})})},props:{...K(I),...kt}};function Mt(r,e,t,s,n,o){return E(),L("input",be({ref:"input"},r.$attrs,ve(r.$attrs,!0)),null,16)}var Pt=x(Ot,[["render",Mt]]);let ge=null;function At(r,e){e={installComponents:!0,autobindAllEvents:!1,...e},ge=ee({data:function(){return{gmapApi:null}}});const t=ee();let s=jt(e);r.mixin({created(){this.$gmapDefaultResizeBus=t,this.$gmapOptions=e,this.$gmapApiPromiseLazy=s}}),r.$gmapDefaultResizeBus=t,r.$gmapApiPromiseLazy=s,e.installComponents&&(r.component("GMapMap",$t),r.component("GMapMarker",Ze),r.component("GMapInfoWindow",pt),r.component("GMapCluster",nt),r.component("GMapPolyline",Ce),r.component("GMapPolygon",xe),r.component("GMapCircle",We),r.component("GMapRectangle",Te),r.component("GMapAutocomplete",Pt),r.component("GMapHeatmap",vt))}function jt(r){function e(){return ge.gmapApi={},window.google}if(r.load)return te(()=>G.isServer()?new Promise(()=>{}).then(e):new Promise((t,s)=>{try{window.vueGoogleMapsInit=t,Oe(r.load)}catch(n){s(n)}}).then(e));{const t=new Promise(s=>{G.isServer()||(window.vueGoogleMapsInit=s)}).then(e);return te(()=>t)}}var Lt=_e(({app:r})=>{r.use(At,{load:{key:"AIzaSyCUda4H5O67XNdBnIwRi3jiYrj41zTRbUk",libraries:"places"}})});export{Lt as default};
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gp" viewBox="0 0 512 512">
2
+ <path fill="#fff" d="M0 0h512v512H0z"/>
3
+ <path fill="#000091" d="M0 0h170.7v512H0z"/>
4
+ <path fill="#e1000f" d="M341.3 0H512v512H341.3z"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gp" viewBox="0 0 640 480">
2
+ <path fill="#fff" d="M0 0h640v480H0z"/>
3
+ <path fill="#000091" d="M0 0h213.3v480H0z"/>
4
+ <path fill="#e1000f" d="M426.7 0H640v480H426.7z"/>
5
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gq" viewBox="0 0 512 512">
2
+ <path fill="#e32118" d="M0 0h512v512H0z"/>
3
+ <path fill="#fff" d="M0 0h512v341.3H0z"/>
4
+ <path fill="#3e9a00" d="M0 0h512v170.7H0z"/>
5
+ <path fill="#0073ce" d="M0 0v512l160-256z"/>
6
+ <g stroke="#000">
7
+ <path fill="#fff" d="M215 204.5h81.7v85.6c0 28.8-37.5 6.6-40.7 22-5.6-15.8-40.8 7-40.8-23.7z"/>
8
+ <path fill="#73452b" stroke-width=".2" d="M261.7 298.4s-1 1.1-3 .3c-1.9-.9-2.1-54.9-2.1-54.9 4.3-4.7 7.7-6.1 7.7-6.1l2.5 2c-9.6 5-8.7 12-7.9 24.2.3 4.5.3 10.2 1.3 15.8 1.5 7 4.5 13 4.7 17.5.2 2.8-3.2 1.3-3.2 1.3z"/>
9
+ <path fill="#73452b" stroke-width=".2" d="M255.1 236.4h3.9c-3.3 31-.5 49.3-.5 58.2 0 3 1.7 4 1.5 4-3.8 4.3-5.8-.2-5.8-.2z"/>
10
+ <path fill="#a36629" stroke-width=".2" d="M249.1 298.4c-3.6 1.8-4-1.6-3.8-2 7.9-16 11.3-51.3 4-55.1l.5-3.4c2.7.8 5.3 4.4 5.3 4.4 1 39.5 0 55.7-.6 56.4-3.9 4-5.4-.7-5.6-1.1"/>
11
+ <path fill="none" stroke-width=".2" d="M249 297.8c-.7-3.4 5.5-12.2 5-21.3m5.4 7.5c1.9 5.3 2.8 10 2.3 14.5"/>
12
+ <path fill="#009a3b" stroke-width=".2" d="M267.7 221.9c1.3-1.5 1.3-1.5 3.6-1.5.4-3.2 5.8-3.2 6.2.8 4.3-.8 5.1 1.7 3.4 4.3 4-1 7.7 0 6.6 4.7 7.3 2 4.5 7 1.3 8-.4 3.3-3.4 4.4-7.5 3-5 3.7-8 2.4-10.4-1.2-5.8.8-6.2-.4-8.7-3.6-4.5 1.9-5.4 1.9-9.2-.5-.2 3-1.3 2.2-3.2 2 .2 3.8-1.3 5.5-4.7 4.2 2.5 5.4-4 7.7-7.3 3.2-3 .2-3.2-.6-4.7-1.7-1.2 4.3-6 3.7-6.8 1.3-6-.9-5.3-4-.4-4.3.4-3.4 3.4-2.7 5.3-2.3.2-2.1 1.5-1.7 2.6-1.3-.7-1.5-.2-2.3 1.7-2.8-2.8-3.6-1-4.9 1.7-6.2-1.5-3.4 1-3.2 3-3.4-.2-3.6.8-4.2 4.7-4.7-.5-1.2.2-2.3 2.3-2.3-1.3-3.6.4-4.5 4.3-3.8.6-5.3 12-2.8 11 4.4 3.3.5 4.3 1.1 5.2 3.7z"/>
13
+ <path fill="none" stroke-width=".2" d="M244.9 220c.8.4 1.9 0 2.1 2.3 1.7-3 3.8-1.3 3.8 2.1m11.8-6.2c-.9 1.3-4 1.3-3.7 4.7-1-1.5-3.1-1.9-4-.4m12.8-.6c0 .8-.2 3.4-1 4.7m14.2-1.1c.2.2-3 0-4.5 1m12.4 11.8c-.8-.4-2.6-1.5-3.8.2 0-.9 0-3.2-2.4-3.2m-1.2 6c0-2.2-.5-2.8-1-3.4m-6 .4c-1.8-1.3-3.5.6-3.5 1.7m-9-3.6c0-.9-.6-2.6.9-3.2m-25.2 12.1c.4-2.1 2-2.1 1.7-3.2-.2-1.7-2.1-3.2-4.5-.8m4.5.8c1.3-.4 2.6-.2 3 .5m-6.6-8.4c.9-.8 3-.6 4.3 0m0-5c1 0 3-.5 3.6 1.4 2.3-3.6 4-3.2 4.5-2.3m4.2-.5c1.7-.6 4.7 1.1 6.4 4 .9-2.2 2.2-1.8 3.5-2m8 2c2.8-1.2 4.5 1.4 5.4 2.4 1.3-1.7 2.3-1.7 3.6-1.7m-34.8 4.5c.7-1 2.2-1.3 3.2-.6-.2-2 1.1-2.8 2-2.4"/>
14
+ <path fill="gold" stroke-width=".8" d="m253.2 192.6-4.7.2-2.3 4.2-2.6-4-4.7.2 2.1-4.3-2.5-4 4.9-.2 2.1-4.2 2.6 4 4.7-.2-2.2 4.2zm-20 1.5-4.8 1.2-1.2 4.5-3.4-3.4-4.5 1.1 1.2-4.5-3.1-3.5 4.4-1.1 1.3-4.6 3.4 3.4 4.7-1-1.5 4.5zm-19.5 4-4.2 2.1-.3 4.8-4-2.6-4.3 2 .4-4.7-4-2.6 4.3-2.2.4-4.7 3.8 2.6 4.3-2-.2 4.7zm45.7-5.5 4.7.2 2.1 4.2 2.6-4 4.7.2-2.2-4.3 2.6-4-4.7-.2-2.4-4.2-2.5 4-4.7-.2 2.1 4.2zm20 1.5 4.5 1.2 1.3 4.5 3.4-3.4 4.5 1.1-1.3-4.5 3.4-3.5-4.7-1.1-1.3-4.6-3.4 3.4-4.4-1 1.2 4.5zm19.2 4 4.3 2.1.2 4.8 4-2.6 4.3 2-.2-4.7 3.8-2.6-4.2-2.2-.2-4.7-4 2.6-4.4-2 .5 4.7z"/>
15
+ <g fill="#fff" stroke-width=".8">
16
+ <path d="m304.4 288.4 5.3 7.7 5-7.3-3.5-6.1zm-34 22.4.5 7.7s2.1 0 4-.6c1.8-.7 3.3-2 3.3-2l-.3-4zm-28.5 0-.5 7.5s-1.9 0-3.8-.4a11 11 0 0 1-3.2-1.5l-2.1-5.2zm-34.4-22.4-5.5 7.7-6-9.8 4.5-4.7z"/>
17
+ <path d="M234.2 326.2c0 7.2 44 7.2 44 0V316c0 5.3-44 4.2-44 0z"/>
18
+ <path d="M195 302.5c3.8 19.6 39.2 20 39.2 20V316c-.8-2.6.6-3.5 6.4-4.3 2.4-.2 1.3-3.6 1.3-3.6s-15.4 2.7-26.3-1.5c-14.7-6-16.8-17.5-16.8-17.5s-1 9-3.9 13.4zm122.2 0c-3.6 19.6-39 20-39 20V316c.6-2.6-1-3.5-6.7-4.3-2.3-.2-1-3.6-1-3.6s15.3 2.7 26.2-1.5c14.5-6 16.2-17.5 16.2-17.5s1.5 9 4.3 13.4z"/>
19
+ <path d="M197.7 295c-9.8-5.3-2.1-10.8-1.3-26.6 1.5 9.6 12.4 13.6 11.1 19.8-4.5.2-6.6-6.6-8.7.9zm116.7 0c9.8-5.5 1.7-10.8.9-26.6-1.5 9.6-12.2 13.6-11 19.8 4.4.2 6.5-6.6 8.6.9l1.5 5.7z"/>
20
+ </g>
21
+ <path stroke="none" d="m203.7 302.3 1 .8-2.3 2.6c-1 1-1.2 1.7-.5 2.3.8.8 1.4.5 2.2-.4l2.6-2.7.8.8-2.5 3c-1.4 1.6-2.7 1.2-3.8.2-1-.8-1.5-2.1 0-3.7zm4.3 3.6 1 .7-.2 5 2.4-3.6 1 .7-3.4 5.5-1.3-.6.2-5.1-2.3 3.6-1-.6zm1.9 9 3-6 1 .6-2.7 5.8zm4.7-5.1-2.4 6.1 2.4.9c2.2.8 3.2-.2 3.9-2 .7-2 .4-3.3-1.8-4.2zm.8 1.5c2.2.7 2.4 1.6 1.8 3-.6 1.5-1.2 2-3.3 1zm6.2.8-3.8 5.8 1.5.4.8-1.5 2.6.6.2 1.5 1.5.2-1.5-6.8zm.4 1.5.5 2.6-1.7-.2zm3.3-1-.3 6.7h2.5c2.4 0 3-1.2 3.1-3.2 0-2-.7-3.2-3-3.3zm1.2 1.2c2.4 0 2.8.8 2.7 2.4 0 1.6-.4 2.3-2.8 2zm21.1 8.1v6.8h1.5v-2.5s1.3 0 2.4-.2c.8-.2 1.4-.8 1.4-2.1s-.7-2-2-2zm1.5 1 1.5.1c1.3 0 1 1.9 0 1.9h-1.5zm6.2-1-2.8 6.8h1.5l.7-1.7h2.8l.6 1.7h1.5l-2.8-6.8zm.7 1.5 1 2.6h-1.9zm3.6 4 3.6-4.4H260v-1h5.1v1l-3.8 4.5h3.8v1.3h-5.5zm21.5-13.2 1.3-.2.6 3.9c.3 1.3-.4 2.3-1.3 2.6-1.1.4-2.5 0-2.7-1.8l1-.2c.3 1.1.8 1.2 1.3 1 .4-.1.6-.8.5-1.4zm2.2-.3 1.2-.3.6 3.2c.3 1.4.7 2 1.6 1.8 1-.2 1.2-.8 1-2l-.8-3.4 1.3-.2.8 3.5c.5 2-.5 3-2 3.2-1.3.2-2.6-.1-3-2.1zm6.6 2.9 1-.4c.6 1 1.4.9 2 .6.9-.4 1-1.2.6-1.4-.7-.4-2.1.1-3-.2-.9-.3-1.3-.9-1.3-1.7.1-1 1-1.5 2-1.8 1-.3 2-.2 2.7 1l-1.2.5c-.5-.7-1-.7-1.5-.5-.4.2-1 .6-.7 1.2.3.4 1.9.1 2.7.1.9 0 1.6.7 1.7 1.5.1 1.1-.3 1.7-1.6 2.3-1.7.6-3.1-.1-3.4-1.2m5.7-5.3-1.7.8-.4-1 4.7-2 .4.9-1.7.8 2 4.7-1.1.7zm2.8-2.4 1-.6 3 5.5-1 .7zm7.3.4 1.2-.4a2.6 2.6 0 0 1-2.5 3.5c-3.2 0-3.6-3.6-3-4.8.8-2 3.2-1.9 4.3-.8l-1.1.8c-.7-.8-2.2-.3-2.3.5a3 3 0 0 0 1.6 3.1c1 .5 2.5-.7 1.8-1.9m-.7-4.4 1-.9 4 5.1-1.1.9zm4-3.2-1 .8 2.4 6.4 1-1-.6-1.3 1.9-1.7 1.3.6 1-.8zm.5 1.5 2.1 1-1.2 1.3z"/>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gq" viewBox="0 0 640 480">
2
+ <path fill="#e32118" d="M0 0h640v480H0z"/>
3
+ <path fill="#fff" d="M0 0h640v320H0z"/>
4
+ <path fill="#3e9a00" d="M0 0h640v160H0z"/>
5
+ <path fill="#0073ce" d="M0 0v480l180-240z"/>
6
+ <g stroke="#000">
7
+ <path fill="#fff" d="M281.6 191.8h76.6V272c0 27-35.2 6.2-38.2 20.6-5.2-14.8-38.2 6.6-38.2-22.2z"/>
8
+ <path fill="#73452b" stroke-width=".2" d="M325.4 279.8s-1 1-2.8.2c-1.8-.8-2-51.4-2-51.4 4-4.4 7.2-5.8 7.2-5.8l2.4 2c-9 4.6-8.2 11.2-7.4 22.6.2 4.2.2 9.6 1.2 14.8 1.4 6.6 4.2 12.2 4.4 16.4.2 2.6-3 1.2-3 1.2z"/>
9
+ <path fill="#73452b" stroke-width=".2" d="M319.2 221.6h3.6c-3 29-.4 46.2-.4 54.6 0 2.8 1.6 3.8 1.4 3.8-3.6 4-5.4-.2-5.4-.2z"/>
10
+ <path fill="#a36629" stroke-width=".2" d="M313.6 279.8c-3.4 1.6-3.8-1.6-3.6-2 7.4-15 10.6-48 3.8-51.6l.4-3.2c2.6.8 5 4.2 5 4.2 1 37 0 52.2-.6 52.8-3.6 3.8-5-.6-5.2-1"/>
11
+ <path fill="none" stroke-width=".2" d="M313.4 279.2c-.6-3.2 5.2-11.4 4.8-20m5 7c1.8 5 2.6 9.4 2.2 13.6"/>
12
+ <path fill="#009a3b" stroke-width=".2" d="M331 208c1.2-1.4 1.2-1.4 3.4-1.4.4-3 5.4-3 5.8.8 4-.8 4.8 1.6 3.2 4 3.8-1 7.2 0 6.2 4.4 6.8 1.8 4.2 6.6 1.2 7.6-.4 3-3.2 4-7 2.8-4.8 3.4-7.6 2.2-9.8-1.2-5.4.8-5.8-.4-8.2-3.4-4.2 1.8-5 1.8-8.6-.4-.2 2.8-1.2 2-3 1.8.2 3.6-1.2 5.2-4.4 4 2.4 5-3.8 7.2-6.8 3-2.8.2-3-.6-4.4-1.6-1.2 4-5.6 3.4-6.4 1.2-5.6-.8-5-3.8-.4-4 .4-3.2 3.2-2.6 5-2.2.2-2 1.4-1.6 2.4-1.2-.6-1.4-.2-2.2 1.6-2.6-2.6-3.4-1-4.6 1.6-5.8-1.4-3.2 1-3 2.8-3.2-.2-3.4.8-4 4.4-4.4-.4-1.2.2-2.2 2.2-2.2-1.2-3.4.4-4.2 4-3.6.6-5 11.2-2.6 10.4 4.2 3 .4 4 1 4.8 3.4z"/>
13
+ <path fill="none" stroke-width=".2" d="M309.6 206.2c.8.4 1.8 0 2 2.2 1.6-2.8 3.6-1.2 3.6 2m11-5.8c-.8 1.2-3.8 1.2-3.4 4.4-1-1.4-3-1.8-3.8-.4m12-.6c0 .8-.2 3.2-1 4.4m13.4-1c.2.2-2.8 0-4.2 1m11.6 11c-.8-.4-2.4-1.4-3.6.2 0-.8 0-3-2.2-3m-1.2 5.6c0-2-.4-2.6-.8-3.2m-5.8.4c-1.6-1.2-3.2.6-3.2 1.6m-8.4-3.4c0-.8-.6-2.4.8-3M302.8 230c.4-2 1.8-2 1.6-3-.2-1.6-2-3-4.2-.8m4.2.8c1.2-.4 2.4-.2 2.8.4m-6.2-7.8c.8-.8 2.8-.6 4 0m0-4.8c1 0 2.8-.4 3.4 1.4 2.2-3.4 3.8-3 4.2-2.2m4-.4c1.6-.6 4.4 1 6 3.8.8-2.2 2-1.8 3.2-2m7.6 2c2.6-1.2 4.2 1.2 5 2.2 1.2-1.6 2.2-1.6 3.4-1.6m-32.6 4.2c.6-1 2-1.2 3-.6-.2-1.8 1-2.6 1.8-2.2"/>
14
+ <path fill="gold" stroke-width=".7" d="m317.4 180.5-4.4.2-2.2 4-2.4-3.8-4.4.2 2-4-2.4-3.7 4.6-.2 2-4 2.4 3.8 4.4-.2-2 4zm-18.8 1.5-4.4 1-1.2 4.3-3.2-3.2-4.2 1 1.2-4.2-3-3.2 4.2-1.1 1.2-4.3 3.2 3.2 4.4-1-1.4 4.3zm-18.2 3.7-4 2-.2 4.4-3.8-2.4-4 2 .4-4.5-3.8-2.4 4-2 .4-4.5 3.6 2.5 4-2-.2 4.4zm42.8-5.2 4.4.2 2 4 2.4-3.8 4.4.2-2-4 2.4-3.7-4.4-.2-2.2-4-2.4 3.8-4.4-.2 2 4zM342 182l4.2 1 1.2 4.3 3.2-3.2 4.2 1-1.2-4.2 3.2-3.2-4.4-1.1-1.2-4.3-3.2 3.2-4.2-1 1.2 4.3zm18 3.7 4 2 .2 4.4 3.8-2.4 4 2-.2-4.5 3.6-2.4-4-2-.2-4.5-3.8 2.5-4-2 .4 4.4z"/>
15
+ <g fill="#fff" stroke-width=".7">
16
+ <path d="m365.4 270.4 5 7.2 4.6-6.8-3.2-5.8zm-31.8 21 .4 7.2s2 0 3.8-.6c1.6-.6 3-1.8 3-1.8l-.2-3.8zm-26.8 0-.4 7s-1.8 0-3.6-.4c-1.6-.4-3-1.4-3-1.4l-2-4.8zm-32.2-21-5.2 7.2-5.6-9.2 4.2-4.4z"/>
17
+ <path d="M299.6 305.8c0 6.8 41.2 6.8 41.2 0v-9.6c0 5-41.2 4-41.2 0z"/>
18
+ <path d="M262.8 283.6c3.6 18.4 36.8 18.8 36.8 18.8v-6.2c-.8-2.4.6-3.2 6-4 2.2-.2 1.2-3.4 1.2-3.4s-14.4 2.6-24.6-1.4c-13.8-5.6-15.8-16.4-15.8-16.4s-1 8.4-3.6 12.6zm114.6 0c-3.4 18.4-36.6 18.8-36.6 18.8v-6.2c.6-2.4-.8-3.2-6.2-4-2.2-.2-1-3.4-1-3.4s14.4 2.6 24.6-1.4c13.6-5.6 15.2-16.4 15.2-16.4s1.4 8.4 4 12.6z"/>
19
+ <path d="M265.4 276.6c-9.2-5-2-10.2-1.2-25 1.4 9 11.6 12.8 10.4 18.6-4.2.2-6.2-6.2-8.2.8zm109.4 0c9.2-5.2 1.6-10.2.8-25-1.4 9-11.4 12.8-10.2 18.6 4 .2 6-6.2 8 .8l1.4 5.4z"/>
20
+ </g>
21
+ <path stroke="none" d="m271 283.4 1 .8-2.2 2.4c-1 1-1.1 1.6-.5 2.2.7.7 1.3.4 2-.4l2.5-2.6.8.8-2.4 2.8c-1.3 1.5-2.5 1.2-3.6.2-.8-.8-1.4-2 0-3.5zm4 3.4 1 .6-.2 4.8 2.2-3.4 1 .6-3.2 5.2-1.2-.6.2-4.8-2.2 3.4-1-.6zm1.8 8.4 2.8-5.6 1 .6-2.6 5.4zm4.4-4.8-2.2 5.8 2.2.8c2 .7 3-.2 3.6-1.9.7-1.8.4-3-1.6-3.9zm.8 1.4c2 .7 2.2 1.5 1.6 3-.6 1.3-1 1.8-3 .8zm5.8.8-3.6 5.4 1.4.4.8-1.4 2.4.6.2 1.4 1.4.2-1.4-6.4zm.4 1.4.4 2.4-1.6-.2zm3-.9-.2 6.2h2.3c2.2.1 2.8-1 2.9-3 0-1.8-.7-3-2.9-3zm1.2 1c2.2.1 2.5.8 2.5 2.3-.1 1.5-.4 2.1-2.6 1.8v-4zm19.8 7.7v6.4h1.4v-2.4s1.2 0 2.2-.2c.7-.2 1.3-.7 1.3-2 0-1.2-.7-1.8-1.9-1.8zm1.4 1h1.4c1.1 0 1 1.8 0 1.8h-1.4zm5.8-1-2.6 6.4h1.4l.6-1.6h2.6l.6 1.6h1.4l-2.6-6.4zm.6 1.4 1 2.4h-1.8zm3.4 3.8 3.4-4.2h-3v-1h4.8v1L325 307h3.6v1.2h-5.2zm20.2-12.4 1.2-.2.6 3.6c.2 1.3-.4 2.1-1.3 2.5-1 .4-2.4 0-2.5-1.7l1-.2c.2 1 .6 1.1 1 1 .5-.2.7-.8.6-1.4zm2-.4 1.1-.2.6 3c.2 1.3.6 1.8 1.5 1.7 1-.2 1.1-.8.9-2l-.7-3.1 1.2-.2.8 3.3c.4 2-.6 2.7-2 3-1.1.2-2.4 0-2.8-2zm6.2 2.8 1-.4c.5.9 1.2.8 1.8.6.8-.4 1-1.1.5-1.4-.6-.3-2 .2-2.7 0-.9-.4-1.3-1-1.2-1.7 0-1 .8-1.4 1.7-1.7 1-.3 2-.2 2.7 1l-1.2.4c-.4-.7-1-.6-1.4-.4-.4.2-1 .5-.6 1 .2.5 1.7.2 2.5.2s1.4.6 1.5 1.3c.2 1.1-.2 1.7-1.5 2.2-1.5.6-2.9 0-3.1-1.1m5.4-5-1.6.8-.4-1 4.4-1.8.4.8-1.6.8 1.8 4.4-1 .6zm2.6-2.2 1-.6 2.8 5.2-1 .6zm6.8.4 1.2-.4a2.4 2.4 0 0 1-2.4 3.3c-3 0-3.4-3.4-2.9-4.5.8-1.9 3-1.8 4-.8l-1 .8c-.6-.8-2-.3-2 .4a2.7 2.7 0 0 0 1.4 3c1 .4 2.4-.8 1.7-1.8m-.6-4.2 1-.8 3.6 4.8-1 .8zm3.8-3-1 .8 2.2 6 1-1-.6-1.2 1.8-1.6 1.2.6 1-.8zm.4 1.4 2 1-1.2 1.2z"/>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gr" viewBox="0 0 640 480">
2
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 0h640v53.3H0z"/>
3
+ <path fill="#fff" fill-rule="evenodd" d="M0 53.3h640v53.4H0z"/>
4
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 106.7h640V160H0z"/>
5
+ <path fill="#fff" fill-rule="evenodd" d="M0 160h640v53.3H0z"/>
6
+ <path fill="#0d5eaf" d="M0 0h266.7v266.7H0z"/>
7
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 213.3h640v53.4H0z"/>
8
+ <path fill="#fff" fill-rule="evenodd" d="M0 266.7h640V320H0z"/>
9
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 320h640v53.3H0z"/>
10
+ <path fill="#fff" fill-rule="evenodd" d="M0 373.3h640v53.4H0z"/>
11
+ <g fill="#fff" fill-rule="evenodd" stroke-width="1.3">
12
+ <path d="M106.7 0H160v266.7h-53.3z"/>
13
+ <path d="M0 106.7h266.7V160H0z"/>
14
+ </g>
15
+ <path fill="#0d5eaf" d="M0 426.7h640V480H0z"/>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gr" viewBox="0 0 512 512">
2
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 0h512v57H0z"/>
3
+ <path fill="#fff" fill-rule="evenodd" d="M0 57h512v57H0z"/>
4
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 114h512v57H0z"/>
5
+ <path fill="#fff" fill-rule="evenodd" d="M0 171h512v57H0z"/>
6
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 228h512v56.9H0z"/>
7
+ <path fill="#fff" fill-rule="evenodd" d="M0 284.9h512v57H0z"/>
8
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 341.9h512v57H0z"/>
9
+ <path fill="#fff" fill-rule="evenodd" d="M0 398.9h512v57H0z"/>
10
+ <path fill="#0d5eaf" d="M0 0h284.9v284.9H0z"/>
11
+ <g fill="#fff" fill-rule="evenodd" stroke-width="1.3">
12
+ <path d="M114 0h57v284.9h-57z"/>
13
+ <path d="M0 114h284.9v57H0z"/>
14
+ </g>
15
+ <path fill="#0d5eaf" fill-rule="evenodd" d="M0 455h512v57H0z"/>
16
+ </svg>
@@ -0,0 +1,133 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-gs" viewBox="0 0 640 480">
2
+ <defs>
3
+ <linearGradient id="gs-b">
4
+ <stop offset="0" stop-color="#d5dfff"/>
5
+ <stop offset="1" stop-color="#fff"/>
6
+ </linearGradient>
7
+ <linearGradient id="gs-a">
8
+ <stop offset="0" stop-color="#474747"/>
9
+ <stop offset="1" stop-color="#f50"/>
10
+ </linearGradient>
11
+ <linearGradient xlink:href="#gs-a" id="gs-c" x1="109.3" x2="110.9" y1="218.5" y2="173.4" gradientTransform="matrix(1.178 0 0 .50849 388 38.3)" gradientUnits="userSpaceOnUse"/>
12
+ <linearGradient id="gs-d" x1="125.9" x2="126" y1="316.4" y2="337.2" gradientTransform="matrix(.96067 0 0 .6235 388 38.3)" gradientUnits="userSpaceOnUse">
13
+ <stop offset="0" stop-color="#b50000"/>
14
+ <stop offset="1" stop-color="#ffc500"/>
15
+ </linearGradient>
16
+ <linearGradient xlink:href="#gs-b" id="gs-e" x1="407.9" x2="456.4" y1="149.4" y2="147.4" gradientTransform="matrix(.4361 0 0 1.37349 388 38.3)" gradientUnits="userSpaceOnUse"/>
17
+ <linearGradient xlink:href="#gs-a" id="gs-f" x1="215.8" x2="229" y1="103" y2="103" gradientTransform="matrix(.57794 0 0 1.03641 388 38.3)" gradientUnits="userSpaceOnUse"/>
18
+ <linearGradient xlink:href="#gs-b" id="gs-g" x1="117.6" x2="78.2" y1="1040.4" y2="1003.7" gradientTransform="matrix(1.9991 0 0 .29962 388 38.3)" gradientUnits="userSpaceOnUse"/>
19
+ <linearGradient xlink:href="#gs-b" id="gs-h" x1="264.7" x2="255" y1="246" y2="226.4" gradientTransform="matrix(.69142 0 0 .86628 388 38.3)" gradientUnits="userSpaceOnUse"/>
20
+ </defs>
21
+ <path fill="#006" d="M0 0h640v480H0z"/>
22
+ <path fill="#6a4c2d" stroke="#000" d="M471 345s-2.6 6.8-4 6.8c-1.6 0-7-3-7-3s-3.9 6.4-6 6.7c-2 .4-7.4-.9-7.4-.9s-5.2 0-5.4-.7c-.2-.8.2-2.3.2-2.3s-7.5 6-9.1 5.6c-1.7-.3-7.3-7.4-7.3-7.4l-1 3.7-10.6-.4-9.3-6s-5.2 8.6-5.4 8.4c-.2-.1-9.1 2.1-9.1 2.1l-.6-1.7-6-3.5s4.7-6.5 4.7-6.7c0-.2-2.2-1-2.2-1l-3.4 2.8-6.9 4.5-6.9-3.2 3-5.6.4-4 5.4-8.3 66.2-64.3 32.6 60.2z"/>
23
+ <path fill="#fff" stroke="#000" d="m518 348.8 17.3-.6-7.4-3.6 65.7-2.5-9.3-3.5-8.2-11.2-34-2.5s-2.6-2-6.7-1c-.2-2.6-3.4-6-3.4-6l-21-1.7-13 9 8.8 22.6z"/>
24
+ <path fill="url(#gs-c)" stroke="#000" d="m451 156 1.8-6s3-5 3-7.4c0-2.2 2.3-4.9 2.3-4.9s6.9-2 8.4 2.3c7.4-11.3 16.2-.6 16.2-.6l2.4-2.8 5-6s7 6.5 7 7.6c.2 1.2 1.3.4 1.3.4l7.6-.6a9 9 0 0 0 2.9 8.2c2.7 1.6 5.1 11 5.1 11z"/>
25
+ <path fill="#656263" stroke="#000" d="M518 226.1c1.4-.8 5.5-2.1 5-8.2-.5-6-5.7-6.8-8.7-6.6-3 .2-5.5 2.8-5.5 2.8l-9.8-6.2s4.9-30.7 10-32.6c5-3.5 5.8-5 5.8-5.8 0-.9-1.8-2.9-1.8-2.9l-31.7-3.7-30 3.5s-2.2 3.6-2 5c.4 1.4.5 2.9 5.8 7 6 4.6 10 30.8 10 30.8s-8.3 4.2-8.9 3.6c-.5-.5-3-1-4.3-.8-1.3.2-5.7 2.5-5.7 8.2 0 5.8 4.4 9.1 4.4 9.1s28.6-3.3 32.9 4.6c4.1-9.5 31.3-6.2 34.6-7.8z"/>
26
+ <path stroke="#000" stroke-linejoin="round" d="M548.9 194.2s.3-3.3 2.7-4.9c2.4-1.6 18.2-2.4 22 0 3.8 2.4 5.2 14.1 5.2 14.1s2.4 4.1 2.6 7.2c.1 3 .5 5 .5 5s12.6 16.5 12.8 31.4c1.4 10.1 1.1 37.2-2.9 47.5a43.4 43.4 0 0 1-5.5 21.3s1.3 2.2 1.1 4.6c-.2 2.3-1.4 4.6-1.4 4.6l18.5 9.1-6.8-2.5 6.8 5.7-7.7-3.6 4.5 4.6c-.1-.2-11.2-5.1-11.2-5.1l5 4.7-8.5-4s5 5.5 5 5.2a91 91 0 0 0-7.4-3.2l.4 2.7s-5.8-.3-5.8-4.6a19 19 0 0 1-4.7-3.8l-13.2-2.2-14.9-44.6 3.5-75.2 1-3.8z"/>
27
+ <path fill="#fb0" stroke="#000" d="M539 434.8s-7.7-16-11.5-16.3c-3.4-6.6 12-60 41.7-63.1 16.3 1.3 1.3 18.8-9.4 13.4a44.7 44.7 0 0 0 6.7 11.5s-21.3 9.2-27.6 54.5zm-102.3 2.3s6.3-18.3 10.1-18.5c3.9-.2-10.1-60.9-40.6-61.3-16.4 1.3-1.3 18.9 9.5 13.5a44.8 44.8 0 0 1-6.8 11.5s21.5 9.2 27.8 54.8z"/>
28
+ <path fill="#00713d" stroke="#000" d="M464.6 323c0-.2-7.6 2.3-2.7 10.5.3-3.2 3.7-5 3.7-5s-5.1 6 .3 11.1c.7-4.8 3.8-6.3 3.8-6.3s-3.9 11.2 0 13.5c.5-4.5 3.3-6.5 3.3-6.5s-3.4 10-.3 12.3c.3-3.8 2.9-5.5 2.9-5.5s-1.5 10.5 2.5 11.2c0-3.7 3-7.3 3-7.3s-1.3 8.5 5 8.9c0-3.2 1.2-6.9 1.2-6.9s2.9 9 7 7.6v-7.7s2.7 8.6 7.7 7c-.7-2.4.3-5.3.3-5.3s2.6 5.4 7.4 3.6c.8-1.6-.2-4.8-.2-4.8s7 7.2 9 2.9c2.2-4.3-5.5-5.8-5.5-5.8h5.2s-1.7-4.4-8.7-5.4c2.4-1 4.9-.2 4.9-.2s-1.5-5.5-8.7-6.1c2.8-1 6-.3 6-.3s-1-5.2-9-6.7c1.3-1.4 4.7-1 4.7-1s-3.2-4.9-6.8-4.6c-3.6.3-36-3.3-36-3.2z"/>
29
+ <path fill="none" stroke="#3ec26d" stroke-linecap="round" d="M496.6 349.5s3 1.4 2.8 2.6m-1.1-4.9s3.7 2.6 3.6 4.5m-.3-5.8s2.9 1.8 3 4.7m1.9-3.6s1.4 3.2 1 3.8m1.9-2.1c.2 2.5-.2 2.8-.2 2.8m-36-18.5s3.5 2.2 3.2 5.3m-3.4-2.7s1.6 1.6 1.3 2.6m3-5.2s2.3 3.2 1.5 5.4m2.4-3.3s1 2 0 3m1.8-2.1s1.2 2 .1 2.7m-1.5 3.9s3.2.7 3.7 3.1m-1.8-5.3s3.4.2 3.8 3.8m.7-5.1s2.3 4 1.9 5.2m2.4-4.8s.9 3.7.2 5m2.6-3.5v4.3m-4.2-10.2s2 .8 2 2.9m-.1-4.8s2.7 1.5 2.5 4.5m.7-5.7s2.3 2.7 1.5 5.8m2.5-5.2s-.8 3.5-.4 4.9m3-2.5s-1.5 1.1-.7 2.6m-12.7 10.8s.5 2.6 0 3m-3.3-4.6s1.6 3 1 4.4m-4.6-4.5s1.9 2.2 1.8 4m-4.8-3.6s1.8 1.7 1.6 2.7m-3.1-.1s1.7 1.8 1.6 2.1"/>
30
+ <path fill="#fff" stroke="#000" d="m441.3 229.3 24.3-.5s16 0 17.7 5.2c3-6.9 17-6.5 17-6.5l25-.8.5 60.6c-5 23.6-22 40.2-40.7 47.3a62.3 62.3 0 0 1-41.2-47.7z"/>
31
+ <path fill="#006b00" stroke="#000" d="m450 229 35.3 94.2 32-96.2c-10 .6-31.2-1.6-33.9 7.5-4-8.1-26.4-4.9-33.5-5.5z"/>
32
+ <path fill="#ffc900" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M474 280c1.4.7 1.3-25.5 3.1-26.3l1.4-5.5c-1.5-2.7-8.4-2.6-11-.2l1.7 4.8c3.5 5.6 2.8 27.8 4.8 27.2z"/>
33
+ <path fill="#cdad56" stroke="#000" stroke-linejoin="round" d="M464.5 77s2.5-2.9 2.6-3.5c.2-.7 11.4-1.2 18-13.7 3.8-6.5 0-2.7 0-2.7L485 54s4.6-4.4 3-6.8c-1.8-2.4-1.2 3-4 3-2.7-.1-1.2-6-1.2-6s-.2-.6-1-1c-1.1.2-.8 2.2-1.8 2.4-1 .3-2-4.7-2-4.7s-1.7-2.3-3.1 4.8c.8 7.7 5.6 6.2 5.6 11.2 0 5-4.3 8.8-5.5 9-1.3 0-.8-4.3-.8-4.3s-.7-2-1.1-2c-.5 0 2.5-.5 2-6.1-1-6.8-1.8 1.6-3.6 1.2-1.9-.3-.5-6.2.2-7 .7-.6-.8-3.4-4.8 3.8-.3 3.6-.8-.9-1.6-.6-1.3 2.8-1.1 4.8.8 7.4 2.9 2.7 4.7 5.3 4.6 6.6-.1 1.4-1.6 4.5-3.7 4.5-2 0 .1-3.8 0-5 0-1.3-3.5-5.8-3.5-5.8s-2.4-3.9-2.1-4c.2-.1-.3-.7-1.4 3.3-1.1 4-2.5-2.6-2.5-2.6s-1.6 4.9 1.8 7.8c-2.6-.3-2.8.7-2.8.7 0 1.4 3.5 2 4 4.3.4 2.4-3.7 3.8-3.7 3.8s1.7 2.3 6.5-2.3c.1 3-1.8 5-1.8 5 1.6.7 2.8.6 3 2.5z"/>
34
+ <path fill="#cdad56" stroke="#000" stroke-linejoin="round" stroke-width=".9" d="M449 77s-2.2-3.2-2.3-3.8c0-.6-10.4.8-15.3-11.8-3.2-6 0-2.5 0-2.5l.2-2.9s-3.4-4.1-2-6.3c1.5-2.2 1 2.8 2.8 2.8 2.3-.1 1-5.4 1-5.4s.2-.6 1-.9c.9.1 1.3 3.2 2.1 3.4.9.2 2.7-3.6 3.3-4.4.8-.1.7-3.2 2 3.3-.7 6.9-6.4 5.5-6.4 10 0 4.6 3.6 8.1 4.7 8.2 1 .2.7-3.8.7-3.8s.6-1.8 1-1.8c.3 0-3.4.7-3-4.5.8-4.8 2.7.3 4.3 0 1.5-.3-.2-5 .2-5.8.1-.8 2.4-3.9 3.3 3 .3 3.3 2-2.7 2.7-2.5 1.2 2.6-.5 6-2.1 8.4-2.4 2.4-3.5 5-3.4 6.2 0 1.3.6 2.8 2.4 2.8 1.7 0 .5-2.2.6-3.3.1-1.1 3-4.8 3-4.8.6-1 .1-2.6.7-3.4 1 0 1.4-1.3 2.3 2.3 1 3.6 2.1-2.4 2.1-2.4s1.4 4.5-1.5 7.2c2.2-.3 2.4.6 2.4.6 0 1.2-1 1.7-1.4 4a3.7 3.7 0 0 0 1.1 3.3s-1.4 2.2-5.5-2a7 7 0 0 0 1.6 4.5c-1.4.7-2.4.6-2.6 2.3z"/>
35
+ <path fill="#ffc900" d="M511.3 243c-2-1.8-2.3-.2-3.4-.6-.5-.2-.9-.7-1.3-1.1-.4-.4-.9-.6-1.4-.8l-.6 1.7c-.2.6.6 1.5.6 2.4-.2 1.3-.7 2.3-2.3 2.7.5-.9.7-.9.6-2 0-.5-1.6-1.5-1.4-2 .2-.9.7-1.8.4-2.7-.7.5-1.5.2-2.2.5-.5.3-.6 1.3-1.3 1.7-.8.4-2.5.2-4-.6.9-.7 1.6-.2 2.5-1 .4-.2.4-1.7.9-2l1.9-1c-.4-.5-.4-1.2-.8-1.6-.4-.5-2.1-.4-2.5-.8-.8-1-.7-2.1-1.4-3 2 .7 1.7 1.7 2.2 1.6 1-.5 2-.5 2.5-.3s1.4 1.5 2 1.7l.6-1.9c.2-.6-.8-1.5-.7-2.1.4-1.1 1.4-2.1 1.8-3.3l.4 3.1c.1.6 1.2.9 1.2 1.4.1.6-.5 1.8-.5 2.4.6-.1 1.5 0 2-.2.7-.1 1-1.5 1.6-1.6 1.2-.2 2-.1 3.3 0-1 .9-1.6.8-2.1 1.6-.5.3.1 1.4-1.1 2.2-.5.3-1.8 0-2.2.3l1.2 1.3c.4.5 2.1.7 2.5 1.2.8.8 1.2 2 1 2.9zm-54.3 1c2-1.9 2.3-.2 3.4-.7.5-.2.9-.6 1.3-1 .4-.5.9-.6 1.4-.9l.6 1.8c.2.5-.6 1.5-.6 2.3.2 1.3.7 2.3 2.3 2.8-.5-1-.7-1-.6-2 0-.6 1.6-1.6 1.4-2.1-.2-.8-.7-1.8-.4-2.6.7.4 1.5.2 2.2.4.5.3.6 1.3 1.3 1.7.8.4 2.5.2 4-.6-.9-.7-1.6-.2-2.5-.9-.4-.3-.4-1.8-.9-2-.4-.4-1.5-.8-1.9-1.1.4-.5.4-1.2.8-1.6.4-.5 2.1-.4 2.5-.8.8-1 .7-2.1 1.4-3-2 .7-1.7 1.7-2.2 1.6-1-.4-2-.5-2.5-.3s-1.4 1.5-2 1.7l-.6-1.9c-.2-.5.9-1.5.7-2-.4-1.2-1.4-2.2-1.8-3.4l-.4 3.2c-.1.5-1.2.8-1.2 1.3-.1.6.5 1.9.5 2.4-.6-.1-1.5 0-2-.2-.7 0-1-1.4-1.6-1.6-1.2-.2-2-.1-3.3.1 1 .8 1.6.8 2.2 1.5.4.4-.2 1.5 1 2.2.5.3 1.8 0 2.2.3l-1.2 1.4c-.4.4-2.1.6-2.5 1-.8 1-1.2 2-1 3"/>
36
+ <path fill="#ffc900" stroke="#006b00" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5" d="M509.4 249.2c-1.9 1.5-14.3 4.6-14.4 15.3-.1 10.8 2.2 13.2-.1 13.5-4.5 0-5.1-12-5-17.3.1-5.3.3-4.5.3-4.5s3 .8 2.8 3.4c-.3 2.6 3-6.4 1.9-8.8 2 2 4.7 1.2 4.7 1 0 0-1.5-1.7-2.2-3-.6-1.1 2.3.8 2.3.8s.2-2-2.4-2c-3.3 0 .5-1 .5-1s2 1.7 3.2-.2a11 11 0 0 0-3.4-2.3s-1.8-3.4-4.2-4c-2.8-.7-2.5 1.2-5.7.9-.6 1.2-.6 1.4.7 1.8-2.2 1.5-1 4.4-1 4.4s3.4-1.4 3.3 1c-.1 2.5-2 2-3.3.5-1.2-.6-1.6.7-1.6.7l1.8 2s-3.4-.2-4.3 2.1c1.9-.1 3 .4 3 .4s-4 1.8-4.4 2.7c-.4 1-.5-1-.7-1l-3.8-1.4-1.3 5.9s2.6 2.5 4 1.7 4-3.3 5.5-2.6c-4.5 3.4-9 8.3-11.4 9-.6-.6-2.8-2.7-3.7-1.6-.9 1-.2 2.4 1 2.3 1-.2-3.8 1-2.8 3.1 1 2 1 1.9 1.8 1.4 1-.6-.7-.7 2.6-1.7s3.2-1.9 3.2-1.9-.7 1.5-2.5 2c-1.7.3-3.1.3-2.8.9.4.5 1.2 1.5 1 2-.3.6 3.6-2.8 4.7-.1 2.6-.2 4.4-3.4 3.1-5.3.2 2 1.4 2.7.7 3.7-.8.9 6-3.2 2.7-5.6.8 2 1 3.6 1 3.6s1.5 0 1.9-.6c.4-.6-.8 1.5-.3 1.9.5.4 3 2.7 2 4.3-.7-1-.8-2.4-1.6-2.3-.8.1-4 2.5-5.9 2.6-1.9.1 2.3 7 2.3 7s-2.9-.3-3.3 0c-.4.2-2.3-2.5-2.6-.9-.7 2 .6 1.2.6 1.2s-1.7-.8-2.6.2c-.9 1-1.7 1.9-1.1 2.3.6.4 3.4.4 3.8.3.4-.2-3.2.2-3.4.6-.3.4-.8 2 0 2.5.7.5 2.7-.3 2.8-.7.1-.4.2 1.5.2 1.5s3.3.3 3.3-3.1.3 2.4.3 2.4 3.3.6 3.4-2.8c.2-3.4.4 2.3.4 2.3s2.2-.7 2.2-1.2c0-.6-.1 6.7-1.7 8.8-2.4-1.6-4 1-4 1s.2 4 0 5c-.3 1 1.6-.6 1.7-1 .2-.4 2.5-1.5 2.6-1.7l.8-1.7s-.6 2-1.4 2.2c-1 .3-1.8 1.2-1.4 2 .3.9 1.7 1.4 2.2 2.2.6.8 2.3-4.7 2.3-4.7l.2 1.2s2.3-.6 2.5-1.7c.3-1-2.4-2-.2-3.8 2.1-1.7 0 1.7 0 1.7s.7 2.6 1.2 2.6c.6 0 1.8-5 .6-6.2-1.3-1.2 1.9 1.5 1.9 1.5s1.8-5-.2-5.7l-2.8-1s1-1.3.5-1.4c-.5-.2 2.7 3 3.2 2.1.5-.8 1.3-3.2-2.4-4.6-3.7-1.3-.1-5.1-.1-5.1s2.3 2.7 4 1.2c1.6-1.5-.2-1.5-.2-1.5s4.7-3 4.9-4.5c-1-.1-2.5.1-2.5.1s2.7-1.7 2-4.6c-1 1.5-2.4 1.5-2.4 1.5s2.3-2.3 2-4.5c-1.4 1.1-1.3 2-2.2 1.7-.9-.3-2.4-8.9 1.1-9.4 3.6-.6 1.7 4.2 1.8 4.2.2 0 5.4-2.2 0-5.7 1.3-.4 4 2 4 2s-1.2-6-7-2.3c1.5-1.5 2.4-2.4 3.5-2.2 1.2.3 5.3-.1 5.3-1.3-1-.8-3.2.4-4.4 0-1.1-.4 8.2-1.1 7.4-5.7"/>
37
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M469 252.7s5.1-2.9 7.6.7m2.1 5.4c-.1 0-1.8 1.8-2.2 1.8m5.6 3.9s4.8.4 7.8-4.6"/>
38
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M487.2 263s.4 2.7 1.2 2.7c.7 0-1.3.7-2 .2.8 1.2 1.3 3.4 0 4.2"/>
39
+ <path fill="#e80000" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M484.8 297.3s-1.6 1.9-3.7 2"/>
40
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M486.7 288.6s-1-5.5-.4-6.8c.4-1.8 2-2.5 3.4-4.8"/>
41
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M486.2 284.6s-1.3 3.3-6.9 2.2m8.4-10.3s.4 4.3-4.7 2.7m-1.5-22.2s-2 1.8-1.3 4.4"/>
42
+ <path fill="#006b00" d="M489.1 252.1s2.7-1 3.2-1.6a8 8 0 0 0 1.7-2.4c.2-.8-1.8-2-.8-3.8.7-.9 1.6-1 3 0 1.6 1-1.3-3-2.8-3.2-1.6-.1-2.6 1.1-3 .8-.4-.2.1 1.1-.5 1.1s1.3 1.1 1.2 1.8c-.2.7 2 3 1.9 3.5-.2.6-3.2 3.7-3.9 3.8"/>
43
+ <path fill="#ffc900" stroke="#ffc900" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5" d="M491 243.2c1.2-.3 1.4 0 1.2 1a3 3 0 0 1-1.1-1z"/>
44
+ <path fill="#e80000" stroke="#006b00" stroke-linejoin="round" stroke-width=".5" d="M483 303.7s-.5 2.9.5 3.1c0-1 .3-1.8.5-2.1zm-2.5-3.5c-1-.1-2.5.8-2 1.8.7-.7 1.4 0 2-.7v-1zm0-2s-1.5-.2-1.7.9c1-.2 1.4-.3 1.7 0z"/>
45
+ <path fill="#e80000" stroke="#006b00" stroke-linejoin="round" stroke-width=".6" d="M474.1 282.2s1 .3 1.2 1.3c.7-.4 1-2.6-1.2-1.3zm-2.3 2.4s2-1.2 2.1 0c-.4.3-.5.6-.8.7-.3 0-.8-.8-1.3-.7zm-.1 3.9s1.2-1 1.6-.4c.5.8-.4.7-.4.7zm-1.7-21.9s-1.5-.6-2.1.5c1 .2 1.3.5 1.8.9-.2-.5-.4-1.2.3-1.4zm-2.9 8.3s0-1.9 1-2.6c.4.3.5.7.8 1.2-.6.2-1.4.2-1.8 1.4zm3.9-1.3s-1.6.8-1 1.7c.5-.7 1.1-.5 1.1-.5v-1.2z"/>
46
+ <path fill="#ffc900" stroke="#006b00" stroke-linejoin="round" stroke-width=".6" d="M468.7 255.8c-.6.7.7 2.2 2.1 2 .4-1.6-1.7-2.5-2-2z"/>
47
+ <path fill="none" d="M468.7 252.6c-.3.8.9 1.9 1.5 1.6.3-.8-1.2-2.2-1.5-1.6"/>
48
+ <path fill="#e80000" stroke="#006b00" stroke-linejoin="round" stroke-width=".6" d="M470.2 254.6s.3 1.3 1.5 1a4 4 0 0 0-1-1.9c0 .3.1.8-.5.9zm.8 3.7s.7.8 2-.7c-.6.1-1.6-.4-1.6-.4s0 1-.4 1.1z"/>
49
+ <path fill="#ffc900" stroke="#006b00" stroke-linejoin="round" stroke-width=".6" d="M468.6 252.8c-.5.7.3 1.7 1.7 1.5.3-1.7-1.3-2-1.7-1.5z"/>
50
+ <path fill="url(#gs-d)" d="M469.2 246.3s5.5-1.6 8.4.8c3 2.3 3 .2 3 .2s4.2 1.6 5.4 1.2c1.2-.3-.9.2.8-.9 1.7-1-3.4.3-3.8-1.9-.8-1.3 0-3-1.7-2.4-1.2-1.6.8-2.7.3-4.4-1.2 1-1.9-.3-2.9 2-2.3-.5-.3-3.8-2.9-4.1 0 2.3-1.9 2.4-2 3.8-1.1.8-6 3.7-4.6 5.7"/>
51
+ <path fill="#c01500" stroke="#000" d="M406 425c3.6-1 22.9 4.2 30.3 12.2-1.6-14.3-5.5-25.1-5.5-25.1s-11.5-3.3-13-1.7a80.8 80.8 0 0 0-11.8 14.5zm-5.9-65.7c-1.3.2-2.7 1.1-4 3.4-1.6 3.8-2.7 13.5-5 15.8-2.2 2.2-4.3 2.4-4.3 4.5 0 2 .3 6.7 6.3 8.5 6.1.3 15.8-9.7 15.8-9.7s5-5.4 7-11.2c-11.7 4-20-6.8-15.8-11.3zm169.6 63.4a53 53 0 0 0-30.4 12.1c1.6-14.1 5.5-25 5.5-25 1.3-.3 11.3-3.2 12.8-1.6 2.3 2.4 9.7 9.7 12.1 14.5zm5.5-65.3c1.3.2 1.8 2 3 4.2 1.5 3.9 3 9.4 5.3 11.6 2.3 2.3 4.3 5.6 4.3 7.6s-.5 4.8-6.5 6.6c-6 .2-14.8-7.6-14.8-7.6s-5-5.3-7-11.2c11.7 4 19.2-6.3 15.7-11.2z"/>
52
+ <path fill="#fb0" stroke="#000" d="M393.4 412.5s12.1 8.4 12.4 12.2c32.7-48.5 116.1-63.6 163.7-3.4 6.3-8.3 12.8-11 12.8-11-50-65.4-149.7-57.3-189 2.2z"/>
53
+ <path fill="#1e5aa6" stroke="#000" d="m517.4 227 4.8-.1-8.5 10.8 10.2 11.9-20.1 25.3 19 22.8a57.9 57.9 0 0 1-7.8 14l-10.9-12L524 275l-16.2-18.4zm-68.1 2.2h-5l9.5 10.4-10.1 12.6 21 22.8-17.4 23.3c2 5 5 10.8 8.3 15l10.3-13.1-21.2-23.6 15.5-19.7z"/>
54
+ <path fill="#1e5aa6" stroke="#000" d="m473 290.4-7.6 10 26.8 31c4.8-2.4 8.5-5.1 12.5-8.4l-14-16.1 5.7-16.7 8.2 9.4-25.5 32.6c-4.3-1.8-9-4.6-13.3-8.2l13.5-17.1zm-8.3-15.5 4.8 6.1-3.1-8.3zm34.9 5.4 4-5.2-1.5-2z"/>
55
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M556 195s4.8-4 8.1-4"/>
56
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M556.7 194.5c.1-.1 28.1-4 29-5m-28.9 5.2 31.4-2.7m-31.5 2.8s33.3-1.5 35.3.2"/>
57
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M556.6 194.7s32.6.3 33.2 1m-33.1-1 31.4 2.6m-31.7-2.3s32 2.8 35 6.8"/>
58
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M593.1 207.5c0-.1-10.8-12.9-36.8-12.7"/>
59
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M556.4 195s18 1.3 23.7 7.6"/>
60
+ <path fill="none" stroke="#fff700" stroke-linecap="round" d="M556.7 194.8s11.7-2.2 23.9 12.5"/>
61
+ <path fill="url(#gs-e)" stroke="#000" d="M549.4 208.2s16.1.6 16.1 2.2-12 4.6-12.2 11.2c-.1 6.7 9.2 7.2 9.9 15.6.6 8.4-7.3 9.6-9 11.9-1.5 1-5.3 13-4.8 20 .5 6.9 2.5 30.5 6.2 35.3 2.8 2.2 7 9.3 11.7 7 4.6-2.1 1.4-10.2 1-12.4-.5-2.2 1.8-5.9 1.8-9.2 0-3.4-1.7-6-1.5-6.8.1-.8 12.8 3 12 15.5-.8 12.5-5.9 8.7-5.9 8.7s1.6 15.4-2.3 17.4c-7.2 3.8-12.4-.8-12.4-.8l.7 3.2-5.5-2.8s-7-10-8.5-14.5a126 126 0 0 1-2.9-28.5c.7-4.3 1.1-29.3.8-30.6-.3-1.2-1.6-22.1-.8-25.3.8-3.2 5.7-17.1 5.6-17.1z"/>
62
+ <path fill="#ff7000" stroke="#000" d="M532 204s11.2-10.9 17.7-9.6c3.3 0 .2 2.4.2 2.4s5.7.4 6.5 3c.1 1-2.7 1.4-2.7 1.4s2.3.5 2.5 2.5c.2 2.1-24 .5-24.3.4z"/>
63
+ <path fill="none" stroke="#000" d="M532.6 203.6s12-1.6 17.1-6.7"/>
64
+ <path fill="none" stroke="#000" d="M544.8 200.3s8.9-.4 8.9 1"/>
65
+ <path fill="#fff" stroke="#000" stroke-linejoin="round" d="M576.3 329.9s7.6-1.8 9.7-4.5c1.2-1 7.9 10-9.7 4.5z"/>
66
+ <path fill="none" stroke="#fff" stroke-linecap="round" d="M574.3 267s1 5.8-1.8 9.8c-1.4 1.6-5.7 4.3-5.7 6.2 0 1.9 1.6 4.4 1.3 6.6-.3 2.2-2.7 4.5-2.6 6.4 0 1.9 2.7 12 2.4 12.2m-7.6-60.2s-6 2-7.3 8"/>
67
+ <path fill="#c75b00" stroke="#000" d="M557.8 200.3s2 5.7 8.7.3c-4.3-5.9-8.7-.2-8.7-.3z"/>
68
+ <path d="M562.7 200c0 .3-.3.6-.7.6-.4 0-.7-.3-.7-.6s.3-.5.7-.5c.4 0 .7.2.7.5"/>
69
+ <path fill="#fff" stroke="#000" d="M503.4 187s12.6 13.7 20.7 13.5c1.5 4-3.7 7.8-5.7 9.5-4.2-1.3-8 .3-17.6-11.6.6-7.6 2.7-11 2.6-11.4zm17-31.8c1.7-5 5-9 7.8-9.5-.8-3.8 5.9-20.9 25.3-27.4 1.2 8.7-8.3 17.4-8.3 17.4s28.7-5 34.5-12.2c-.6 3.2-6.4 23.6-37 23.4 11.6 11-3.7 19.8-10.2 17.1 12-9.2-3.5-14.7-12-8.8z"/>
70
+ <path fill="#cccccd" stroke="#ccc" d="M530.2 148.1c5.8-3.7 7.9-3.7 12.7-3l-3.5.6s-.3.5 1.8 2.4c-2.4-.6-4.4-2-11 0z"/>
71
+ <path fill="none" stroke="#000" d="M528 145.7s11.4-6 17.8-10.2"/>
72
+ <path fill="#00f" stroke="#000" d="M518.2 210s15.7 4.3 17.5-18.2c-3.4-9.8-8.1-31-.9-37-6.6-4.6-14 .2-14 .2-.4 1-6.3 9.5 1.7 24.3-19-5-11.3 13-11.3 13 .8-3 10.9-5.6 13.4 8.8 1 3.6-6.8 9-6.4 9z"/>
73
+ <path fill="#00f" stroke="#000" d="M535.9 192s16.6-9 16.2-30c-14.2.4-19.2 18.6-19.2 18.6z"/>
74
+ <path fill="#fff" stroke="#000" d="M461.3 190.9s-12.3 10.7-19.3 7.3c-5.1 3-11.2-2.4-11.2-2.4s7 26.3 32.6 7.3a60.5 60.5 0 0 0-2-12.2z"/>
75
+ <path fill="#00f" stroke="#000" d="M441.9 197.7c1-5.5 5.3-8.2 8.8-3 4.6 1 9.2-18-7.2-14.8 4.6-24.7-9.2-33.9-9.2-33.9s-4.9 27.4-2.6 32.4c2.2 5-3.3-9.3-21-13.4-.3 20.7 19.8 30.3 19.8 30.3s5.6 5.2 11.4 2.4z"/>
76
+ <path fill="none" stroke="#000" d="M443.5 179.7s-7.7 6.6-6 15.5m-5.7-16.3s-1.8 6.3 2 15.4"/>
77
+ <path fill="none" stroke="#000" d="M430.6 196.4s3.6-5.8 11.3 1.6"/>
78
+ <path fill="#fff" stroke="#000" d="M432.1 156.3c0-.2-11.7 0-4.8 11.9-5.1 1.6-16.7-6-8.7-16-26.3-.7-37-13.3-37-24.9 7.7 8 26.2 4.8 32.7 9.7-8-7.4-6.4-17.7-6.4-17.7s22.4 6.7 26.4 26.6c-1.3 3.9-1.9 10.7-2.2 10.4z"/>
79
+ <path fill="none" stroke="#000" d="M414 136.5c4.4 4.4 15.5 5.7 21.1 10.6"/>
80
+ <path fill="#cccccd" stroke="#ccc" stroke-width=".7" d="M419.2 149.5s9.2-1.2 11.9 2c-3.6 0-4.8-.9-10 1 1.4-.7 1-2 1.8-2s-3.3-1-3.7-1z"/>
81
+ <path fill="#923f00" stroke="#000" d="M465 77.5s5.1-4.5 10.6-.5c-2.5 7.4-11.4 4.6-11.4 4.6s.3 3.7-.6 5.5c1.8 1.4 3.2 5.8 3.2 5.8s9.2-2.2 11.2 1.8c3.5-.5 6 0 6 0s7.2-1.8 9.7-1.8c2.5 0 10.5 2 11.3 3.6.7 1.4 3.4 11.4 5.2 11.2 1.8-.1-4.3 2.4-6-.1-1.6-2.5-1.1 3.3-1.1 3.3s5 5.3 5.6 6.5c.6 1.2-3.1 10.8-.3 17.5-2.5.2-2.7 2.8-2.7 2.8-.1 3-3.8 3.7-3.8 3.7l-1-4-2.4 1.5 1-3.1s3.4-8.3 3.7-11c.3-2.7-3.1-7.4-5.8-7.4-2.7 0-4.6 8.5-4.6 8.5s-1.3 6.3-.9 7l-1.8-2.1s-1.1 3.8-2 5c-1 1.2-2.9 1.6-2.9 1.6s-1.3-3.8-.8-5.3c.4-1.5 7.2-7.3 6.6-11.4-.6-4.2 0-3.2-.1-3.3-.2-.2-3.6-3.1-3.7-4.8-.2-1.6-4.5 2.1-10.1 1-1.7 3-2 10.5-2 10.5s-.5 9 .6 10c1.2 1.1-3 3.3-3 3.3l-2.9 4-1-2.3-2.1 1.5 1.2-3c-.1-2.3 2.9-8.4 2.9-13.6 0-5.2.3-10.8.3-10.8s-5.4-.3-5.3 5.4c.1 5.6-1.3 6-1 7.5.3 1.7 1.7 6.3 1.3 7.6-.4 1.4-2.2 1.8-2.2 1.8l-.5.7s-5.5 2.6-5.3 3.6l-.2-3-.3-4.3s3.3-2 3.3-7.2-.7-6-.6-7.2c.1-1.2.9-5.5.7-6-.1-.4-3 1.3-4 1.3-.9 0 1.7-3.1 2-5.4.3-2.2-3 2.1-5.7-.4 1.3-2.7 3.1-3.6 3.4-5.6.3-2.1-2 1.7-4.1.2.2-2 2.2-3.7 2.2-3.7s-1.7-.2-2.4 0c-1.3-.4 1.5-2.5 1.7-5.5.1-3-1.7-4.1-1.7-4.3 0-.1-3-2.6-3.4-3.7-.4-1-.4-2.2-.4-2.2s-5 3.6-10.7-4c5.3-4.5 11-1.2 11-1.2s1.5-4.2 8.3-3.9c6.8.3 8.2 4.2 7.9 3.8z"/>
82
+ <path fill="#00f" stroke="#000" d="M502.4 154.2c.1 0 12.6.4 12.7 7.1.2 6.7-3.8 5-4 5l-9-1.2z"/>
83
+ <path fill="#fffeff" stroke="#000" d="M490.3 152.4s15.6-.1 14.7 6.7c-.9 6.8-4.8 5.4-4.8 5.4l-7.6-.6z"/>
84
+ <path fill="#00f" stroke="#000" d="m481.5 151.7 9 .7s5.5.7 5.2 6c-.2 5.1-5.5 5.2-5.5 5.2l-8.8-.5z"/>
85
+ <path fill="#fff" stroke="#000" d="M460.4 154.2c-.2 0-12.6.4-12.8 7.1 0 6.7 3.9 5 4 5l9.1-1.2z"/>
86
+ <path fill="#00f" stroke="#000" d="M472.5 152.4s-15.6-.1-14.7 6.7c.8 6.8 4.8 5.4 4.8 5.4l7.5-.6z"/>
87
+ <path fill="#fff" stroke="#000" d="m481.3 151.7-9 .7s-5.5.7-5.3 6c.3 5.1 5.6 5.2 5.6 5.2l8.8-.5z"/>
88
+ <path fill="#5e0043" stroke="#000" d="M505.4 226.7s6.5-9.5 9.3-8.5c2.4.8.5 8.2-.6 8.9zm-44.4 1.7c-2.1-2.8-5-10.7-7.8-8.5-2.4.8-.6 8.2.6 8.9z"/>
89
+ <path fill="none" stroke="#000" d="M465.2 209.5s12.7 7.8 16.8 8c4.2.2 17.3-10.1 17.3-10.1"/>
90
+ <path fill="#5e0043" stroke="#000" d="m466.5 179 2.4-3 12.1 6 12.4-5.5 2.4 2.6-13.8 9.7z"/>
91
+ <path fill="#474747" stroke="#474747" stroke-linejoin="round" d="M456.8 178.8a51 51 0 0 1 10.3 18.7c1.4 7.9-.8-10.9-.8-10.9s9.7 4.8 10 7.8c.3 3 4.6-.2 4.8-.7l-28-18.2zm48-.5s-10.2 13.4-9 28c-2.1-7-.4-18.5-.4-18.5l-2.2 1.4s-2.4 9.9-5.3 11.4c-.5-1.2-.4-1.6-.4-1.6s-3.1 4-3.7 4.4c-.6.4.2 13.7.2 13.7s1 9.6 2.2 9.5a41 41 0 0 0-3 1.7l-1.3-25.6 2.9-2.9s3.8-4.7 4.1-9.2c-1.6 1.4-3.5 1.8-3.5 1.8s-.5 6.5-2 7.4c-1.6 1-1.6 2.6-1.6 2.6l-.4-8.5z"/>
92
+ <path fill="none" stroke="#000" stroke-linecap="round" d="m481.4 193.8 2 40.5"/>
93
+ <path fill="none" stroke="#000" d="M456.5 213.2s4.7 2.7 6.4 11c15.2-1.1 20 4.2 20 4.2s12.4-6 18.2-4.8c2-4.3 7.8-9.7 7.8-9.7"/>
94
+ <path fill="#b4b6b9" stroke="#000" d="m450.2 173.5 31.2 20.4 28.2-18.9s5.8-3.2 5.3-5.5c-.5-2.4-2.5-1.5-3.5-1-1 .3-29.5 20.5-29.5 20.5l-30.2-19.2s-2.2-.7-2.6.8c-.4 1.4.8 2.2 1.1 2.9z"/>
95
+ <path fill="#474747" stroke="#474747" stroke-linejoin="round" d="M506 168.2s-8-3.4-8-.5c0 3 .3 3.3 1.6 5.2 1.3 1.8-1 3-1 3l-.8-2c-.4-1.3-4.7-2.2-5-3.8-.5-1.5.8-3.9-1.7-4.2-2.6-.3-5.1 1-5.6 4a61 61 0 0 1-3.9 9.8l.5-15.6c5.6.4 16 1.6 24.1 2.6-2.4-.4 1 .1.8 1-.2.6-1 .7-1 .5zm-28.2-3.9a37 37 0 0 0-10.4 1.9c-1.8 1 3 2.7 2.3 4-.6 1.5-.7 4.4-3 3.8-2.2-.6-9.8-4.4-10-5.7-.3-1.2-1.8-1.3-1.8-1.3s21.8-3 22.9-2.7z"/>
96
+ <path fill="none" stroke="#000" d="M481.2 162.5v19.1m-14.7-41.7-9 14.6"/>
97
+ <path fill="url(#gs-f)" stroke="#000" d="M482.6 139.5s3.8 5.2 3.4 6.7c1.5 1.2 3.3 6 3.3 6"/>
98
+ <path fill="none" stroke="#000" d="M497.3 138.7s-8.2 11.6-8 12.5"/>
99
+ <path d="M455.1 83.4c-.2.6-1.2.9-2.3.6-1.1-.4-1.9-1.2-1.7-1.8.2-.7 1.3-1 2.4-.6 1 .3 1.8 1.1 1.6 1.8m3.4-.2c.2.6 1.2.9 2.3.5 1.1-.3 1.9-1.1 1.7-1.8-.2-.6-1.3-.9-2.4-.5-1 .3-1.8 1.1-1.6 1.8"/>
100
+ <path fill="#ff7000" stroke="#000" stroke-linejoin="round" d="M555 324s-3.2.5-3 .8c0 .3-9 .6-9.1.3-.2-.3-1.4 1.5-1.4 1.5l1.5-.9s2.2 2.3 2.8 2.1c.7-.1-.3 1 0 1.1.1.2.8-.4.8-.4l14.8-.2zm5.4 4.5-12 .4s-3.1 2.8-3.3 3.4c-.2.7 2 .9 2 .9l.6 2.3 1.6-.6s10.3 1.5 19.7-.6c4.8-1.6 5.7-3.6 2.3-4.9-3.3-1.2-10.8-.8-10.9-.9z"/>
101
+ <path fill="url(#gs-g)" stroke="#000" d="m519 353.4 21.7-1-4-3.4 59-2.4-2-4.7-66.1 2.7 8 3.7-18 .5.6 1.9-4.7-.2s5.3 2 5.4 3z"/>
102
+ <path fill="url(#gs-h)" stroke="#000" d="M543.4 232.9c-1.7-.9-9.4-2-17.9 3.6l.4 19.6s12.5-6.7 18.5-5.2c-.3-6-.3-13.8-1-18z"/>
103
+ <path fill="none" stroke="#000" d="m422.7 292.4-51.4 51m74.4-50.7-41.8 55m39.9-69.3-55.7 67.5m-1.7-.9 5.4-6.4m62.6-26.3-21.6 29.8m-.9 3.9.5 11.4m31.9-34.7-23 28.8m18.9-2.3 9.3-15.3m-5.7-2.9-11.2 12.6m7.8-24.6-7.6 9.3m-2.3-22.9s-23.3 34.1-22.9 37m20.5-41.4c-.6.3-20.1 26.2-20.1 26.2m-1.1 8.2-3.6 4.3m-4.5 6.5-5.4 7.1"/>
104
+ <path fill="#8a9396" stroke="#2b2b2b" d="M420.2 213.8s-1.6 5 0 7.5 11.5 22.5 11.5 22.5 6.8-8.3 9.3-8.5c2.4-.3 1.3 21.6 1.3 21.6s-4 3.8-6.5 3.6c-2.5-.2 6 8.6 5.8 16-.2 7.5-11.2 44.5-15.3 45.1-4 .7 1.8-6.7 1.6-8.8-.3-2-1.4-.6-2.3-2.9-.9-2.2 1.4-5.6 1-7.9-.5-2.2-2.6-1.8-2.8-3.4-.2-1.6 1.4-2 1.1-3.8-.2-1.8-2.7-1.4-2.4-3 .2-1.5.4-.8.2-3.8-.2-2.9-.7 2-3.2 2.3-2.5.2-4.5 5.9-4.5 5.9s-5 7-9.9 3.8c3 6.3.7 9-.5 9.2-1 .3 1 5-1.8 5.2-2.7.2 2 10.6-1 11.5 3.3 1.6.6 3.6.6 3.6s-7.8.7-6.1 10.9c-23-8.2-34.3-22.1-34-36.4.2-14.2 4.7-27 15.7-31.7 3.2-11.8 8.6-24.4 8.6-24.4s-.9-5.2-.2-8.6a17 17 0 0 1 3.8-6.7s-.4-8.2-.2-12.2 1.8-5.9 2-8.1c.2-2.3-.7-13.8 1.6-15.8 2.2-2 6.5-1.8 8.8-3.2 2.2-1.3 5.2-3.8 8.1-3.6 3 .2 5.4 2.3 5.4 2.3s11 0 11.7 4.2c.7 4.3-2.2 6-2.2 6s1.6 6-5.2 11.6z"/>
105
+ <path fill="#cecfcf" stroke="#2b2b2b" d="M410.4 198.2c.3.7-.5 1.8-1.8 2.5-1.4.7-2.7.8-3 .2-.4-.7.4-1.8 1.7-2.5 1.4-.8 2.7-.8 3-.2z"/>
106
+ <path d="M408.5 199.4c0 .4-.4.7-.8.7-.5 0-.9-.3-.9-.7 0-.5.4-.8.9-.8.4 0 .8.3.8.8"/>
107
+ <path fill="none" stroke="#2b2b2b" stroke-width=".5" d="M425 206.8s2.7 12.2-.5 20.7m1.4-26s5.3 7 4.6 15.8m-4.1-17.3c.1 0 4.5 3.7 4.3 6.3m-3.3-7.9s3 2 3.6 4.1"/>
108
+ <path fill="none" stroke="#000" d="M426 197.2s-10.5 17-9.1 27.7"/>
109
+ <path fill="none" stroke="#2b2b2b" stroke-width=".5" d="M426.7 196.6s-14 8.3-16.5 35.4"/>
110
+ <path fill="none" stroke="#000" d="m425.2 201.6-5.6 4.2"/>
111
+ <path fill="none" stroke="#2b2b2b" stroke-width=".5" d="M405 233.5s7.8-32.2 21.5-36.9"/>
112
+ <path fill="#2b2b2b" stroke="#2b2b2b" d="M431.9 244.4s7.4-9.3 9.1-9c1.7.4 1.2 21.6 1.2 21.6s-5.5 4.1-6.7 4c-1.2-.2 6.2 10 6 13.7-.1 3.8-.3 3.8-.3 3.8s0-2.2-1.7-5.8c-1.8-3.7-.7-7.8-12-17-2.7-5.6 5.6 3.5 7.3 2.1 1.7-1.3-3-13.2-3-13.4z"/>
113
+ <path fill="none" stroke="#2b2b2b" d="M418.7 192s-3.1.8-3.5 2c-.5 1.4-2.3 2.6-3.3 2.2-1-.4-2.8-2-2.8-2"/>
114
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" d="M401 202.9s-4.7 4.6-2.4 5.2c2.3.6 4.7-3.7 4.7-3.7s0 7.3 2 6.1c2-1.1 7.7-5.2 7.7-5.2s2-.2 2.5 0c.4.1 5.3 4.4 8.6 2.8-1.9 4.8-4 5.4-4 5.4s-3.4 4.4-7.8 3.4c-4.4-1-5.5-2.8-5.5-2.8s-3.7.2-4.8-1.5l-1.6-2.6s-2 2-2.7 1c-.5-1 0-6.7 3.3-8.1z"/>
115
+ <path fill="none" stroke="#2b2b2b" d="M427.5 196.4s-8.6-2.6-11.6 1.7c-3 4.2-2.3 6.6-.7 7"/>
116
+ <path d="M428.8 196.1c0 1-.7 1.9-1.6 1.9-1 0-1.6-.9-1.6-1.9 0-1 .7-1.8 1.6-1.8.9 0 1.6.8 1.6 1.8"/>
117
+ <path fill="#2b2b2b" stroke="#2b2b2b" d="M403.7 218.2s3.5 5.4 7.7 6.9-3 2.7-7.1 0c-3-4.2-2.2-7.2-2.2-7.2s.8-.8 1.6.3zm30.1 31.9s-9.9-13.7-12.7-14.5c-2.9-.7 2.2-1.3 5.2 1.6 3 3-.8-4.7-.8-4.7z"/>
118
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" d="M402.7 329.6c3.8-1 20.4 9.5 24 12.1 3.8 2.7 11.6 1 11.6 1s-3.6 2.2-5.8 2.7c-2.3.5 6.6.5 6.6.5s-21.1 5.9-42.6-5.4c-2-8.8 4.6-10.8 6.2-10.9z"/>
119
+ <path fill="#2b2b2b" stroke="#2b2b2b" d="M427 253.5s-2.9-.5-4.3-2.1c-1.4-1.7-3.4-5.7-5.5-7.4-2.1-1.6-12.6-7.4-16.4-7-3.8.4-5-.4-5.5-.9-.4-.5-2 .2-1.7 2.2.3 2-3 6.3-1.8 8.3a62 62 0 0 0 7.7 10.6c1 .3.4 4.8.4 4.8s4.8 4.9 6 5.1c1.2.3 2.5 1.2 2.3 2.4-.1 1.1-5.3 7.4-5.3 7.4s-5.5 3-5.6 4.5c0 1.7 1.4 5 5.8 6.1a41 41 0 0 0 16.8-.8c.6-1 1.6-7 1.2-7.7-.4-.6-3.3-2.4-4.8-2.2-1.5.3-2.9 1.5-2.7 1.8.1.3-2.1 1.4-2.1.3 0-1 4.4-6 4.8-5.5.4.4 6.6 1 7.8 4.1 1.1 3.1 1.1 5.4 4.4 5 3.2-.3 7.8-3.3 8.2-9.5a13 13 0 0 0-4.7-11c-1-.7-4.4-2.7-4.7-3.7-.2-1-1-4-.4-4.8z"/>
120
+ <path fill="#2b2b2b" stroke="#2b2b2b" d="M368.3 281s10.5-2.7 13.2-2.6c2.7 0 13 4.8 16 7.7 3 3 9 9.8 13 9.2 4-.6 5.2-1.4 5.2-1.4l-1.6 3s-3.2.9-4.9.5c-1.6-.4-4.8-1.5-8-4.6-3.1-3-13-11.5-21.3-10.9-8.3.6-13.1 8.8-13.1 8.8s0-4 .4-4.9c.3-.8-1.8 2-1.8 2z"/>
121
+ <path fill="#2b2b2b" stroke="#2b2b2b" d="M407 289.2s2.6.7 7 .7c4.3 0 6.6-1.9 6.6-1.9l-.3-1.7.7-2.3s3.3 3.3 3.3 4c0 .7-1.4 1-1.4 1l-.5-1.7-1.1 1.5s-6.3 5-9.8 4.2c-3.4-.7-6.6-3-5.7-3.5.9-.5 1.3-.3 1.2-.3zm-15.3 8.8s-3.8 0-5.5.8c-1.7.8-2.3 1.8-3.5 1.7-1.1-.2-2-1.6-1.7-2.2.5-1 2.8-2.2 7-1.9 4.3.4 3.7 1.6 3.7 1.6zm13.3 10.3c0-.2-.3-5.5-2.4-7.7a6.4 6.4 0 0 0-5.8-1.9c-1.2.3 4.2 2.7 4.8 4.2.5 1.6 2.3 6 1.8 7-.5 1-1.3-3-4.7-4.2-3.3-1.2-7.9-.5-7 1 1 1.4 4.7 0 6.6 3.3a60 60 0 0 1 3.3 6.5l.7-2.3 1.6-.4.3-4.4z"/>
122
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" d="m402.3 325.7-3.5-7s-1-4.3-4-5.5c-3-1.3-6.8-1-6.8.4-.1 1.5 6.2 3.4 6.6 4.2.4.8.2 2.2-.3 2.3-.6 0-3.4-1-4.8-.7-1.4.3-2.2 2.2-4.3 1.6-2.1-.5-3.9-7.2-3-8 .7-.6-1.6 1.3-2.1-.5-.5-1.7.7-7.2-.1-7.9-.8-.7-4.8-3-4.8-3.5-.1-.5.2-27 22.3-5-9.5-11.3-13.2-10-15-10.1-1.2 0-9.9.7-12 11.7-2.2 11-4.8 4.1-4.8 4.1s-.4 4.8 1.9 6.1c2.3 1.4-1.1 5.3-1.1 5.3s-4.2-10-3.5-14.5c-.9 3.5-.8 12.3 4.4 21.8a71.2 71.2 0 0 0 27.2 19.1c8-12.3 7.7-13.8 7.7-14z"/>
123
+ <path fill="#8a9396" stroke="#2b2b2b" stroke-linejoin="round" d="M387.8 325.8s4.4.5 5.6 2.8c1.3 2.3 1.8 5.8 1.8 5.8.8-1.5 1-2.7 2.6-3.8 1.5-1.1 2.6-1.3 2.5-2 0-.9-4.8-5.8-7.1-6.1-2.4-.3-6.5 2.6-6.5 2.6s-.8 1 1 .7z"/>
124
+ <path fill="none" stroke="#8a9396" stroke-linecap="round" d="M398 337.4s11.6 5.3 30.6 5.6"/>
125
+ <path fill="none" stroke="#2b2b2b" stroke-linecap="round" d="M436.7 283.6s-1 9.7-8.5 29"/>
126
+ <path fill="none" stroke="#2b2b2b" d="M435.2 289.6s-2.3 7-8.5 12.2"/>
127
+ <path d="m401.3 410.3 2-2.2.6.5-.1.2-.2.3v.2l.2.2 2.6 2.3.2.2h.2l.1-.2q.4-.4.5-.8.2-.4.1-.8 0-.5-.4-1l.8-.4 1.2 2-3.2 3.6-.6-.5.2-.3.1-.2v-.2l-.2-.2-2.6-2.3-.3-.2h-.1l-.3.2-.2.2zm4.4-4.9 3.7-3.6 1.8.9-.3.7-1-.2-.6.2q-.3.1-.6.5l-.7.6 1 1.1.3-.2q.3-.2.3-.4v-.2l-.2-.3-.2-.2.6-.6 1.8 1.9-.6.5-.2-.1-.3-.3h-.2l-.4.3-.2.2 1 1 .2.2h.1l.2-.2.4-.3.6-.8q.2-.4.1-1 0-.4-.3-.9l.8-.4 1 2.3-3.8 3.7-.6-.6h.2l.2-.4v-.2l-.2-.3-2.4-2.4-.3-.2h-.2l-.2.1-.2.2zm7.7-7.4q1.2-1 2.4-.9 1.3.1 2.2 1.2.6.7.8 1.5.2.9-.1 1.6-.3.8-1.1 1.5-1 .9-2.2.9-1.4 0-2.4-1.2-1-1-.8-2.3.1-1.3 1.2-2.3m.7.7q-.5.5-.5 1.2 0 .8.7 1.6t1.5 1q.6 0 1.1-.4.6-.4.6-1 0-.9-.8-1.7-.4-.5-1-.8-.4-.2-.9-.2-.4 0-.7.3m6.1-6.2.5-.3.1.1 2.9-2v-.2l.4-.3 1.9 1.3-.5.7-.7-.3q-.4-.2-.8-.1l-.4.1-.1.1v.2l2.1 3 .2.3h.3l.5-.3.4.7-2.4 1.8-.5-.7.1-.1.3-.3v-.2l-.1-.3-2.1-3-.2-.2-.1.1q-.2.1-.3.4-.2.3-.2.7l.1.8-.8.2zm5.6-3.5 4.4-2.8 1.7 1.3-.6.7-.8-.4h-.7q-.3 0-.7.3l-.8.5.8 1.3.2-.2.4-.2v-.3l-.1-.4-.1-.2.7-.4 1.3 2.3-.7.4-.1-.3-.3-.3h-.2l-.4.2-.3.1.8 1.3.1.2h.1l.3-.1.4-.3.8-.6.3-.9v-1l.8-.2.5 2.4-4.6 2.8-.4-.7.1-.1.3-.3q.1 0 0-.2v-.3l-1.8-2.9-.3-.3h-.1l-.3.1-.2.1zm6.2-3.8 3.5-1.8.7-.3q.4-.2.9-.1.4 0 .7.2l.5.6q.4.7.1 1.3-.2.6-.8 1l1.8.8h.1l.3.1h.3l.2-.1.3-.1.3.7-1.7 1-3-1.5-.5.2.6 1.1.2.4h.5l.2-.2.4.8-2.7 1.4-.4-.8.3-.1.2-.2.1-.2-.1-.3-1.6-3.1-.2-.2q0-.1-.2 0h-.3l-.2.1-.4-.7zm2.6-.2.7 1.4.8-.4q.5-.2.7-.5l.2-.4v-.5l-.4-.3h-.4l-.7.2zm4.4-3.4 3.6-1.6.7-.2h.9q.4 0 .7.2l.5.7q.3.6 0 1.2t-.9 1l1.8.9.4.1h.5l.2-.2.4.8-1.8.8-3-1.6-.4.2.5 1.1.2.4h.4l.3-.1.3.7-2.7 1.3-.4-.8.3-.1.2-.2.1-.2-.1-.3-1.4-3.2q0-.2-.2-.3h-.5l-.2.2-.3-.8zm2.6 0 .6 1.5.9-.4.7-.4q.2-.2.2-.5v-.4l-.3-.4h-.5l-.7.2-1 .4zm6.8-3.9 1.3-.5 3.4 3.9.4.3h.5l.2.8-2.7 1-.3-.8.2-.1q.2 0 .3-.2v-.2l-.2-.2-.4-.5-1.7.6v1l.3.1.4-.1.3.8-2.3.8-.3-.8q.2 0 .3-.2l.1-.1v-.4zm1 3.2 1.1-.4-1.1-1.4zm3.8-4.9 2.7-.8 2.1 3.3v-4l2.8-.7.2.8-.3.1q-.2 0-.3.2v.4l1 3.4.1.2.2.1h.6l.2.7-2.9.9-.2-.9h.2q.3 0 .3-.2l.1-.1v-.3l-1-3.7-.1 5.4-.8.2-2.8-4.4 1 3.7.1.1.2.1h.3l.3-.1.2.8-2.4.7-.3-.8h.3l.3-.2v-.5l-1-3.3v-.3l-.2-.1h-.6zm12.4-3.3 3.2-.6h1q.5 0 .8.2.4.2.6.5l.3.7q.1.8-.4 1.4-.5.7-1.5.9l-1 .2.2 1.1v.3h.8l.1.8-3 .6v-.8h.1l.4-.2v-.5l-.6-3.3v-.4l-.2-.1h-.6zm2.4.6.4 1.7h.5l.7-.3.3-.4v-.5q0-.4-.4-.6-.3-.1-.8 0zm4.2-1.8 3.8-.5h.8l.8.2q.4.2.6.5.3.3.3.7.1.7-.3 1.2-.5.5-1.1.8l1.4 1.3.3.2.2.1h.6v.8l-1.9.3-2.3-2.4h-.5l.2 1.2v.4l.2.2h.6v.8l-3 .4v-.9h.2l.3-.1.2-.2v-.3l-.5-3.5v-.3h-.8zm2.4.7.2 1.6h1l.7-.3.4-.3v-.5l-.1-.4-.4-.2h-.8zm8.8-1.9q1.4-.1 2.4.7 1 .9 1 2.3 0 1-.3 1.7-.4.7-1 1.2-.8.4-1.8.5-1.4 0-2.3-.6-1.1-.9-1.2-2.4 0-1.4.8-2.4.9-1 2.4-1m0 1q-.7 0-1 .6-.6.6-.5 1.7 0 1 .6 1.6.4.5 1.1.5.7 0 1.1-.6.5-.6.4-1.7 0-.7-.3-1.2-.2-.5-.6-.7-.4-.3-.8-.2m4.6-1.1h3.4l1 .1.7.4.4.6.2.8q0 .8-.6 1.3t-1.7.5h-1v1.5l.4.1h.3v.9h-3v-.9h.5l.1-.1v-.4l.1-3.4v-.4l-.1-.1h-.6zm2.3 1v1.8h.6l.7-.1.3-.3q.2-.2.2-.5 0-.5-.3-.7-.3-.2-.8-.2zm4.5-1 3.8.3.8.1.8.4q.3.2.5.6l.1.8q0 .7-.6 1-.5.5-1.2.6l1.2 1.5v.1l.2.3h.2l.3.1h.3v.9l-2-.1-1.9-2.8h-.5v1.6h.6v1l-3-.3v-.8h.6l.2-.2v-.3l.2-3.5v-.3l-.3-.2h-.4zm2.2 1.2-.1 1.6h.9q.5.1.8 0 .3 0 .4-.2.2-.2.2-.5v-.4l-.4-.3-.8-.1h-1zm5.4-.6 3 .4v.9h-.3q-.3-.1-.4 0l-.2.4-.4 3.4v.4h.1l.3.2h.3l-.1.9-3-.4.1-.9h.2q.3.1.4 0h.1l.1-.3.4-3.5v-.5h-.4l-.3-.1zm6.5.9 1.4.3 1 5q0 .4.2.5l.4.2-.2.8-2.9-.5.2-.8h.5l.1-.1v-1l-2-.3-.3.6v.2q-.1.1 0 .2h.1l.4.2-.1.8-2.4-.4.1-.8h.4l.2-.1.2-.3zm-.8 3.3 1.3.2-.3-1.8zm5.9-2.4 2.7.7.2 4 2-3.4 2.7.7-.2.8h-.3q-.2-.2-.3 0-.2 0-.2.3l-.9 3.4v.4l.3.1.3.1-.2.9-2.9-.8.2-.8h.3l.3.1h.2v-.4l1-3.7-2.7 4.7-.8-.3-.3-5.1-.9 3.6v.2l.1.2h.3l.3.1-.2.9-2.5-.6.2-.9h.3l.3.1h.1l.2-.4.8-3.4v-.4l-.3-.1-.3-.1zm12.5 3.5 3 1.1 1 .5.5.6.2.7-.1.8q-.3.7-1 1-.8.3-1.8 0l-1-.4-.4 1v.5l.3.2h.3l-.3.9-2.9-1 .3-.9h.2l.4.2h.1l.2-.4 1.2-3.2v-.5l-.3-.2h-.2zm1.7 1.7-.6 1.7.5.2.7.1.5-.1.3-.5q.1-.4-.1-.7-.2-.3-.6-.4zm4.6.6 3.5 1.6.7.4q.4.2.6.6l.3.7-.2.8q-.3.7-.9.9h-1.3l.5 1.9.2.3.1.2.3.2h.2l-.3.9-1.8-.8-.8-3.3-.5-.2-.5 1.1v.6l.2.1.3.2-.4.7-2.7-1.2.3-.8.3.1.3.1h.2l.1-.3 1.4-3.2.1-.3v-.2l-.2-.1h-.2l-.2-.1zm1.7 1.9-.7 1.5.9.3q.4.3.7.3l.5-.1q.2-.1.3-.4.1-.2 0-.4l-.1-.4-.7-.4-1-.4zm8.5 2.9q1.3.7 1.7 1.9.4 1.2-.3 2.5-.4.8-1.1 1.2-.7.5-1.6.5-.8 0-1.7-.5-1.2-.6-1.7-1.7-.5-1.3.3-2.6.6-1.3 1.9-1.7 1.2-.3 2.5.4m-.4.9q-.6-.4-1.3-.1-.7.3-1.2 1.3-.5.9-.4 1.7.1.6.8 1 .6.3 1.2 0 .7-.3 1.2-1.2.4-.7.4-1.2 0-.6-.2-1zm5 1.5.5.3v.2l3 1.9.1-.1.5.3-.5 2.2-.8-.2v-.8q0-.4-.2-.7l-.3-.4h-.2l-.1.2-1.9 3-.2.4v.1l.1.1.4.3-.4.7-2.6-1.6.5-.7.1.1.4.2h.1l.3-.4 2-3v-.3h-.1q-.2-.2-.6-.2l-.6.1-.7.4-.6-.6zm5.6 3.8 4.2 3-.6 2-.8-.2v-1l-.2-.6q-.2-.3-.6-.5l-.7-.6-1 1.3.3.2.4.2h.3l.2-.4.2-.2.6.5-1.5 2.1-.6-.4.1-.2.2-.4v-.2l-.4-.4-.3-.1-.8 1.1-.1.3.2.3.4.3 1 .4q.4.1.8 0 .5-.1 1-.5l.4.7-2 1.4-4.3-3 .5-.8.1.1.4.2h.2l.2-.3 2-2.8.2-.3v-.1l-.3-.3-.2-.1zm6.9 8.8 2.3 2-.5.6-.2-.1-.2-.2h-.2l-.3.3-1.2 1.5-.7-.6.1-.5-1-.2-.7-.5q-.7-.6-1-1.3-.2-.8 0-1.6 0-.8.6-1.6.6-.7 1.4-1 .8-.3 1.6-.1.8.1 1.5.6l.5.6.4.7.3-.1.5.4-.9 2-.8-.4v-1.1l-.1-.7-.4-.5-.8-.3-.9.2q-.4.2-.9.8l-.6 1v1.1q.1.4.5.7l.5.3h.5l.4-.2.1-.2.2-.3v-.1l-.3-.3-.2-.2zm6.7 2 1 1-1.9 4.8q-.2.3-.1.5l.2.3-.6.7-2-2 .5-.7.1.2.3.1h.2l.2-.3.2-.5-1.4-1.3-.6.3-.2.1v.3l.3.3-.6.6-1.7-1.6.6-.6.2.2h.2l.4-.1zm-2.4 2.3.9.9.7-1.7zm6.5 1.4.4.4-.1.2 2.4 2.5h.2l.4.3-1 2-.8-.3.2-.8v-.7q0-.3-.2-.5h-.2l-.2.1-2.5 2.5-.3.3v.2l.3.4-.6.6-2-2.2.6-.6v.2l.4.2h.2l.3-.2 2.6-2.5.1-.2v-.1l-.5-.3h-.7l-.8.2-.3-.8 2-1z"/>
128
+ <path fill="#012169" d="M0 0h320v240H0Z"/>
129
+ <path fill="#fff" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0Z"/>
130
+ <path fill="#c8102e" d="M212 140.5 320 220v20l-135.5-99.5Zm-92 10 3 17.5-96 72H0ZM320 0v1.5l-124.5 94 1-22L295 0ZM0 0l119.5 88h-30L0 21Z"/>
131
+ <path fill="#fff" d="M120.5 0v240h80V0ZM0 80v80h320V80Z"/>
132
+ <path fill="#c8102e" d="M0 96.5v48h320v-48ZM136.5 0v240h48V0Z"/>
133
+ </svg>
@@ -0,0 +1,132 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-gs" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="gs-b">
4
+ <stop offset="0" stop-color="#d5dfff"/>
5
+ <stop offset="1" stop-color="#fff"/>
6
+ </linearGradient>
7
+ <linearGradient id="gs-a">
8
+ <stop offset="0" stop-color="#474747"/>
9
+ <stop offset="1" stop-color="#f50"/>
10
+ </linearGradient>
11
+ <linearGradient xlink:href="#gs-a" id="gs-c" x1="109.3" x2="110.9" y1="218.5" y2="173.4" gradientTransform="matrix(1.03296 0 0 .44588 300.5 79.8)" gradientUnits="userSpaceOnUse"/>
12
+ <linearGradient id="gs-d" x1="125.9" x2="126" y1="316.4" y2="337.2" gradientTransform="matrix(.84238 0 0 .54673 300.5 79.8)" gradientUnits="userSpaceOnUse">
13
+ <stop offset="0" stop-color="#b50000"/>
14
+ <stop offset="1" stop-color="#ffc500"/>
15
+ </linearGradient>
16
+ <linearGradient xlink:href="#gs-b" id="gs-e" x1="407.9" x2="456.4" y1="149.4" y2="147.4" gradientTransform="matrix(.3824 0 0 1.20437 300.5 79.8)" gradientUnits="userSpaceOnUse"/>
17
+ <linearGradient xlink:href="#gs-a" id="gs-f" x1="215.8" x2="229" y1="103" y2="103" gradientTransform="matrix(.50678 0 0 .9088 300.5 79.8)" gradientUnits="userSpaceOnUse"/>
18
+ <linearGradient xlink:href="#gs-b" id="gs-g" x1="117.6" x2="78.2" y1="1040.4" y2="1003.7" gradientTransform="matrix(1.75297 0 0 .26273 300.5 79.8)" gradientUnits="userSpaceOnUse"/>
19
+ <linearGradient xlink:href="#gs-b" id="gs-h" x1="264.7" x2="255" y1="246" y2="226.4" gradientTransform="matrix(.60628 0 0 .75962 300.5 79.8)" gradientUnits="userSpaceOnUse"/>
20
+ </defs>
21
+ <path fill="#006" d="M0 0h512v512H0Z"/>
22
+ <path fill="#6a4c2d" stroke="#000" stroke-width=".9" d="M373.4 348.6s-2.3 6-3.6 6c-1.3 0-6-2.5-6-2.5s-3.5 5.5-5.3 5.8c-1.8.4-6.6-.8-6.6-.8s-4.5 0-4.7-.6c-.2-.7.2-2 .2-2s-6.6 5.2-8 4.9c-1.5-.3-6.4-6.5-6.4-6.5l-.8 3.2-9.3-.3-8.2-5.2s-4.6 7.5-4.8 7.3c-.1-.1-8 1.8-8 1.8l-.5-1.4-5.2-3.1s4-5.8 4-6l-1.9-.7-3 2.4-6 4-6-2.8 2.6-5 .3-3.6 4.8-7.1 58-56.4 28.6 52.8z"/>
23
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="m414.6 352 15-.5-6.3-3.2 57.5-2.2-8.1-3-7.2-9.8-29.8-2.3s-2.3-1.7-6-.8c0-2.3-2.9-5.4-2.9-5.4l-18.3-1.3-11.5 7.8 7.7 19.8z"/>
24
+ <path fill="url(#gs-c)" stroke="#000" stroke-width=".9" d="m355.8 182.9 1.5-5.2s2.7-4.5 2.7-6.5 2-4.3 2-4.3 6-1.7 7.4 2c6.5-9.9 14.2-.5 14.2-.5l2.1-2.5 4.3-5.3s6.2 5.8 6.3 6.8c0 1 1 .3 1 .3l6.7-.6a8 8 0 0 0 2.6 7.3c2.3 1.4 4.4 9.6 4.4 9.6z"/>
25
+ <path fill="#656263" stroke="#000" stroke-width=".9" d="M414.6 244.4c1.2-.7 4.8-1.8 4.3-7.2-.4-5.3-5-5.9-7.6-5.7a9.2 9.2 0 0 0-4.9 2.4l-8.5-5.4s4.3-27 8.8-28.6c4.3-3.1 5-4.4 5-5.1 0-.8-1.5-2.5-1.5-2.5l-27.8-3.3-26.3 3s-2 3.2-1.7 4.4c.2 1.3.3 2.6 5 6.2 5.2 4 8.8 27 8.8 27s-7.4 3.6-7.8 3.2c-.5-.4-2.7-.9-3.8-.7-1.2.2-5 2.1-5 7.2 0 5 3.8 8 3.8 8s25.1-3 28.9 4c3.6-8.4 27.5-5.5 30.3-6.9z"/>
26
+ <path stroke="#000" stroke-linejoin="round" stroke-width=".9" d="M441.6 216.5s.3-3 2.4-4.3c2-1.4 16-2.1 19.3 0 3.4 2 4.6 12.3 4.6 12.3s2 3.7 2.2 6.3l.4 4.4s11.2 14.5 11.3 27.6c1.2 8.8 1 32.6-2.5 41.6a38 38 0 0 1-4.9 18.6s1.1 2 1 4c-.1 2.2-1.2 4.1-1.2 4.1l16.2 8-6-2.2 6 5-6.8-3.2 4 4-9.8-4.4 4.3 4.2-7.4-3.5 4.3 4.5c-.1-.3-6.4-2.8-6.4-2.8l.3 2.4s-5-.3-5-4c-2.5-1.5-4.2-3.4-4.2-3.4l-11.5-2-13-39 3-66 .8-3.3z"/>
27
+ <path fill="#fb0" stroke="#000" stroke-width=".9" d="M433 427.4s-6.8-14-10.1-14.3c-3-5.7 10.5-52.6 36.5-55.3 14.3 1.2 1.2 16.5-8.2 11.8 1.1 4.1 5.8 10 5.8 10s-18.6 8-24 47.8zm-89.8 2s5.6-16 9-16.2c3.3-.2-9-53.4-35.7-53.8-14.4 1.2-1.2 16.6 8.3 11.9-1.1 4.2-5.9 10-5.9 10s18.8 8.2 24.3 48.1z"/>
28
+ <path fill="#00713d" stroke="#000" stroke-width=".9" d="M367.7 329.4c0-.1-6.6 2-2.4 9.2.4-2.8 3.3-4.5 3.3-4.5s-4.5 5.4.3 9.9c.6-4.3 3.3-5.6 3.3-5.6s-3.4 9.8 0 11.8c.4-3.9 3-5.6 3-5.6s-3.1 8.8-.4 10.8c.3-3.4 2.6-4.8 2.6-4.8s-1.4 9 2.1 9.7c.1-3.2 2.7-6.3 2.7-6.3s-1.2 7.4 4.4 7.8c0-2.9 1-6.1 1-6.1s2.6 8 6.2 6.6v-6.7s2.3 7.6 6.7 6.2c-.6-2.2.3-4.7.3-4.7s2.3 4.7 6.5 3.2c.7-1.4-.2-4.2-.2-4.2s6 6.3 8 2.5c1.8-3.8-5-5-5-5h4.6s-1.4-4-7.6-4.8c2.1-1 4.3-.2 4.3-.2s-1.3-4.9-7.6-5.4c2.4-.8 5.1-.2 5.1-.2s-.8-4.6-7.7-5.9c1-1.2 4-.8 4-.8s-2.8-4.3-6-4c-3 .2-31.6-3-31.5-3z"/>
29
+ <path fill="none" stroke="#3ec26d" stroke-linecap="round" stroke-width=".9" d="M395.8 352.6s2.5 1.2 2.5 2.3m-1-4.3s3.2 2.3 3.2 4m-.4-5.1s2.6 1.6 2.7 4m1.6-3s1.3 2.8.9 3.3m1.7-1.8c.2 2.2-.2 2.3-.2 2.3m-31.5-16.2s3 2 2.8 4.7m-3-2.3s1.4 1.3 1.1 2.2m2.6-4.5s2 2.8 1.4 4.7m2-2.9s1 1.7.1 2.7m1.6-1.9s1 1.8 0 2.4m-1.3 3.4s2.9.6 3.3 2.7m-1.6-4.7s3 .2 3.3 3.4m.6-4.5c.1 0 2 3.5 1.7 4.5m2.1-4.1s.8 3.2.2 4.3m2.3-3.1v3.8m-3.8-8.9s1.9.7 1.8 2.5m0-4.2s2.4 1.4 2.1 4m.6-5.1s2.1 2.5 1.3 5.2m2.3-4.6s-.7 3-.4 4.3m2.6-2.2s-1.3 1-.6 2.3m-11.1 9.4s.5 2.4 0 2.7m-2.9-4s1.4 2.6 1 3.9m-4.2-4s1.7 1.9 1.6 3.4m-4.2-3s1.6 1.4 1.5 2.3m-2.8-.1s1.5 1.5 1.4 1.9"/>
30
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="m347.3 247.2 21.3-.4s14 0 15.5 4.6c2.7-6.1 14.9-5.7 14.9-5.7l22-.8.4 53.2a56.9 56.9 0 0 1-35.7 41.4 54.5 54.5 0 0 1-36.1-41.8z"/>
31
+ <path fill="#006b00" stroke="#000" stroke-width=".9" d="m354.9 247 31 82.6 28-84.4c-8.7.6-27.4-1.4-29.7 6.6-3.6-7.1-23.2-4.3-29.3-4.8z"/>
32
+ <path fill="#ffc900" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M376 291.7c1.2.6 1.1-22.4 2.7-23.1l1.2-4.8c-1.3-2.4-7.4-2.2-9.6-.2a61 61 0 0 0 1.5 4.3c3 4.9 2.4 24.3 4.2 23.8z"/>
33
+ <path fill="#cdad56" stroke="#000" stroke-linejoin="round" stroke-width=".9" d="M367.7 113.7s2.2-2.5 2.3-3.1c0-.6 10-1 15.8-12 3.3-5.7 0-2.4 0-2.4l-.2-2.7s4-4 2.6-6c-1.5-2.1-1 2.7-3.4 2.6-2.4-.1-1.1-5.2-1.1-5.2s-.2-.6-.9-.9c-1 .1-.7 1.9-1.6 2-.9.3-1.7-4-1.7-4s-1.5-2-2.8 4.2c.7 6.7 5 5.4 5 9.7 0 4.4-3.8 7.8-4.9 8-1 0-.7-3.8-.7-3.8s-.6-1.8-1-1.8 2.2-.4 1.8-5.3c-.9-6-1.6 1.4-3.2 1-1.6-.2-.4-5.4.2-6 .6-.6-.7-3.1-4.1 3.3-.3 3-.7-.8-1.4-.6-1.2 2.5-1 4.2.7 6.5 2.5 2.3 4 4.6 4 5.8-.2 1.2-1.5 3.9-3.2 3.9-1.8 0 0-3.3 0-4.4-.1-1-3.1-5-3.1-5s-2.1-3.4-2-3.5c.3-.1-.1-.6-1.1 2.8-1 3.5-2.2-2.2-2.2-2.2s-1.4 4.2 1.6 6.8c-2.3-.3-2.5.6-2.5.6 0 1.2 3 1.7 3.5 3.8.4 2-3.2 3.3-3.2 3.3s1.5 2 5.7-2a6.5 6.5 0 0 1-1.6 4.4c1.4.6 2.5.5 2.7 2.2z"/>
34
+ <path fill="#cdad56" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="m354 113.7-2-3.3c0-.6-9 .6-13.4-10.4-2.8-5.3 0-2.2 0-2.2l.2-2.5s-3-3.7-1.7-5.6c1.3-1.9.7 2.5 2.4 2.5 2 0 .9-4.7.9-4.7s.2-.6.8-.8c.8 0 1.2 2.8 2 3 .7.2 2.2-3.2 2.7-4 .7 0 .7-2.7 1.8 3-.6 6-5.6 4.9-5.6 8.8 0 4 3.2 7.1 4.1 7.2 1 0 .6-3.4.6-3.4s.5-1.6.9-1.6c.3 0-3 .6-2.6-3.9.7-4.2 2.4.3 3.8 0 1.3-.3-.2-4.5.2-5.1 0-.6 2-3.4 2.8 2.7.3 2.8 1.8-2.4 2.4-2.3 1 2.3-.4 5.3-1.9 7.4-2 2.1-3 4.4-3 5.5.1 1 .6 2.4 2.2 2.4 1.5 0 .5-1.9.6-2.9 0-1 2.6-4.2 2.6-4.2.5-.8 0-2.3.6-3 .8 0 1.1-1.1 2 2 .8 3.2 1.9-2 1.9-2s1.1 3.9-1.4 6.2c2-.3 2.1.6 2.1.6 0 1-1 1.5-1.3 3.4-.3 2 1 3 1 3s-1.2 1.9-4.8-1.8a7 7 0 0 0 1.4 4c-1.2.5-2.1.5-2.3 2z"/>
35
+ <path fill="#ffc900" d="M408.7 259.3c-1.9-1.7-2-.2-3-.6-.4-.1-.8-.6-1.2-1-.3-.3-.7-.4-1.2-.6l-.5 1.5c-.1.5.5 1.3.5 2-.1 1.1-.6 2-2 2.4.4-.7.6-.8.5-1.7 0-.5-1.4-1.4-1.2-1.8.2-.8.6-1.6.3-2.3-.5.4-1.3.2-1.9.4-.4.2-.5 1.1-1.1 1.5-.7.3-2.2.1-3.5-.6.8-.6 1.4-.2 2.2-.8.4-.3.3-1.5.7-1.8l1.7-.9c-.3-.4-.3-1-.6-1.4-.4-.4-2-.3-2.3-.7-.7-.8-.5-1.8-1.2-2.6 1.8.6 1.5 1.5 2 1.4.8-.4 1.6-.5 2-.3.5.2 1.4 1.3 1.8 1.5l.6-1.6c.2-.5-.7-1.4-.6-1.9.4-1 1.2-1.9 1.5-2.9l.4 2.8c.1.4 1 .7 1.1 1.2 0 .5-.5 1.6-.4 2h1.8c.5-.2.8-1.4 1.3-1.5 1-.2 1.8-.1 2.9 0-.8.8-1.4.7-1.9 1.4-.4.3.2 1.3-1 2-.4.2-1.5-.1-1.9.2l1 1.2c.4.4 2 .5 2.3 1 .7.7 1 1.7.9 2.5m-47.7.8c1.9-1.6 2.1-.2 3-.6.5-.1.8-.6 1.2-1 .3-.3.7-.4 1.2-.6l.5 1.5c.2.5-.5 1.3-.5 2 .2 1.2.6 2 2 2.5-.4-.8-.6-.9-.5-1.8 0-.5 1.4-1.4 1.3-1.8-.3-.7-.7-1.6-.4-2.3.6.4 1.3.2 1.9.4.5.2.5 1.1 1.2 1.5.7.3 2.2.1 3.4-.6-.7-.6-1.4-.2-2.1-.7-.4-.3-.4-1.6-.8-1.9l-1.7-.9c.4-.4.3-1 .7-1.4.3-.4 1.9-.3 2.2-.7.7-.8.6-1.8 1.3-2.6-1.8.6-1.6 1.5-2 1.4-.9-.4-1.7-.5-2.2-.3-.4.2-1.3 1.3-1.7 1.5l-.6-1.6c-.2-.5.8-1.4.6-1.9-.3-1-1.2-1.8-1.5-2.8l-.4 2.7c0 .5-1 .7-1 1.2-.1.5.4 1.6.4 2h-1.8c-.5-.2-.9-1.4-1.4-1.5-1-.2-1.8-.1-2.8 0 .7.8 1.3.8 1.8 1.4.4.3-.1 1.3 1 2 .4.2 1.5-.1 1.9.2l-1 1.2c-.4.4-2 .6-2.3 1-.7.7-1 1.7-.9 2.5"/>
36
+ <path fill="#ffc900" stroke="#006b00" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5" d="M407 264.6c-1.7 1.4-12.5 4.1-12.6 13.5-.1 9.4 1.9 11.6-.1 11.8-4 0-4.5-10.5-4.4-15.1.1-4.7.2-4 .2-4s2.7.8 2.5 3c-.2 2.3 2.7-5.6 1.7-7.7 1.8 1.8 4.1 1 4.1 1 0-.2-1.3-1.6-1.9-2.7-.5-1 2 .6 2 .6s.1-1.8-2.1-1.7c-3 0 .5-1 .5-1s1.6 1.6 2.8 0c-1.3-1.4-3-2-3-2s-1.6-3-3.8-3.6c-2.4-.6-2 1-4.9.8-.5 1-.5 1.2.6 1.5-2 1.3-1 4-1 4s3.1-1.3 3 .8c-.1 2.2-1.8 1.8-3 .5-1-.6-1.3.6-1.3.6l1.6 1.6s-3 0-3.8 2a5 5 0 0 1 2.6.3s-3.5 1.6-3.8 2.4c-.4.8-.5-1-.6-1l-3.3-1.1-1.2 5.1s2.3 2.2 3.5 1.5c1.2-.7 3.5-2.8 4.8-2.2-3.9 3-7.8 7.2-10 7.8-.5-.4-2.4-2.4-3.2-1.4-.8 1-.2 2.1.8 2 1 0-3.2 1-2.3 2.8.8 1.8.7 1.6 1.5 1.2.8-.5-.7-.6 2.3-1.5 2.9-.8 2.8-1.6 2.8-1.6s-.6 1.3-2.2 1.6c-1.5.4-2.8.4-2.4.9.3.4 1 1.3.7 1.8-.2.4 3.3-2.5 4.2-.2 2.3 0 3.9-3 2.8-4.6 0 1.8 1.2 2.4.5 3.2-.6.8 5.3-2.7 2.4-4.9.8 1.8.9 3.2.9 3.2s1.3 0 1.7-.6c.3-.4-.7 1.4-.3 1.7.5.4 2.6 2.4 1.7 3.8-.5-.8-.7-2.1-1.3-2-.7.1-3.5 2.1-5.2 2.3-1.6 0 2 6.2 2 6.2s-2.5-.4-2.9-.2c-.3.3-2-2.1-2.3-.7-.6 1.8.5 1.1.5 1.1s-1.4-.7-2.2.1c-.8.9-1.6 1.7-1 2 .6.4 3 .4 3.4.3.3-.1-2.8.2-3 .6-.3.3-.7 1.7 0 2.1.6.5 2.3-.2 2.4-.6.1-.3.2 1.3.2 1.3s3 .3 3-2.7.2 2.1.2 2.1 2.9.5 3-2.5c0-3 .3 2 .3 2s2-.5 2-1-.2 6-1.5 7.8c-2.2-1.5-3.5.9-3.5.9s.1 3.5-.1 4.3c-.2.8 1.4-.5 1.5-.8.2-.4 2.2-1.4 2.3-1.6l.6-1.4s-.4 1.6-1.2 1.9c-.8.2-1.5 1-1.2 1.8.3.7 1.6 1.2 2 1.9.4.7 2-4.2 2-4.2l.1 1s2-.4 2.3-1.3c.2-1-2.2-1.8-.3-3.4 2-1.5 0 1.4 0 1.4s.7 2.3 1.2 2.3c.4 0 1.5-4.3.4-5.4l1.7 1.4s1.6-4.5-.1-5l-2.5-.9s1-1.2.5-1.3c-.5-.1 2.3 2.6 2.8 2 .4-.8 1-3-2.2-4.1-3.2-1.2 0-4.6 0-4.6s2 2.4 3.4 1.1c1.4-1.3-.1-1.3-.1-1.3s4.1-2.6 4.2-4l-2.1.2s2.3-1.6 1.8-4c-1 1.2-2.1 1.2-2.1 1.2s2-2 1.6-3.9c-1.2 1-1 1.7-1.9 1.4-.7-.2-2-7.7 1-8.2 3.2-.5 1.5 3.7 1.6 3.7.1 0 4.7-2 0-5 1.1-.4 3.5 1.8 3.5 1.8s-1-5.3-6-2c1.2-1.4 2-2.2 3-2 1 .3 4.5 0 4.5-1.1-.8-.8-2.7.3-3.8 0-1-.4 7.2-1 6.5-5z"/>
37
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M371.6 267.7s4.5-2.5 6.7.6m1.7 4.8s-1.5 1.6-1.8 1.6m4.9 3.4s4.1.4 6.8-4"/>
38
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M387.6 276.8s.3 2.4 1 2.4c.6 0-1.1.6-1.8.1.8 1 1.2 3 0 3.7"/>
39
+ <path fill="#e80000" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M385.4 306.8s-1.4 1.7-3.2 1.8"/>
40
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M387.1 299.2s-.9-4.8-.3-6c.3-1.5 1.8-2 2.9-4.1"/>
41
+ <path fill="none" stroke="#006b00" stroke-linecap="round" stroke-width=".5" d="M386.7 295.8s-1.1 2.8-6 1.9m7.3-9.1s.3 3.8-4.1 2.4m-1.4-19.6s-1.8 1.7-1 4"/>
42
+ <path fill="#006b00" d="M389.2 267.3s2.4-1 2.8-1.5a7 7 0 0 0 1.5-2.1c.2-.7-1.6-1.8-.7-3.4.6-.7 1.4-.8 2.7 0 1.3.9-1.2-2.6-2.6-2.7-1.3-.1-2.2 1-2.5.7-.4-.2 0 1-.5 1s1.1 1 1 1.5c0 .6 1.8 2.6 1.7 3.1-.1.5-2.8 3.2-3.4 3.4"/>
43
+ <path fill="#ffc900" stroke="#ffc900" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5" d="M391 259.4c1-.3 1.1 0 1 1-.5-.3-.7-.5-1-1"/>
44
+ <path fill="#e80000" stroke="#006b00" stroke-linejoin="round" stroke-width=".5" d="M383.8 312.5s-.4 2.5.5 2.7c0-1 .2-1.6.4-1.9l-1-.8zm-2.1-3.1c-.8 0-2.3.7-1.9 1.6.7-.7 1.4 0 1.8-.6.2-.2.2-.7.1-1zm0-1.7s-1.3-.3-1.5.7c.9-.1 1.2-.2 1.5 0zm-5.7-14.1s.8.3 1 1.2c.7-.4 1-2.3-1-1.2zm-2 2.1c.1 0 1.7-1 2 0-.4.3-.6.6-.9.6-.2 0-.6-.6-1-.6zm-.1 3.5s1-1 1.5-.4c.3.7-.4.6-.4.6zm-1.4-19.2s-1.4-.6-2 .4c1 .1 1.3.4 1.7.8-.2-.4-.3-1 .3-1.2zm-2.5 7.2s0-1.6.7-2.3c.4.3.5.6.8 1.1-.5.2-1.3.2-1.6 1.2zm3.4-1.2s-1.4.7-1 1.5c.5-.5 1-.3 1-.4v-1z"/>
45
+ <path fill="#ffc900" stroke="#006b00" stroke-linejoin="round" stroke-width=".5" d="M371.3 270.5c-.5.6.7 2 1.9 1.7.3-1.4-1.6-2.2-1.9-1.7z"/>
46
+ <path fill="none" d="M371.3 267.7c-.2.7.8 1.6 1.4 1.4.2-.7-1.1-2-1.4-1.4"/>
47
+ <path fill="#e80000" stroke="#006b00" stroke-linejoin="round" stroke-width=".5" d="M372.7 269.4s.2 1.1 1.2.8c-.1-.9-.9-1.5-.9-1.5 0 .2.2.6-.3.7zm.7 3.3s.5.7 1.7-.7c-.5.2-1.5-.3-1.5-.3s0 1-.2 1z"/>
48
+ <path fill="#ffc900" stroke="#006b00" stroke-linejoin="round" stroke-width=".5" d="M371.3 267.9c-.5.6.2 1.4 1.4 1.2.3-1.4-1.1-1.7-1.4-1.2z"/>
49
+ <path fill="url(#gs-d)" d="M371.8 262.1s4.8-1.3 7.3.7c2.6 2 2.6.2 2.6.2s3.7 1.4 4.8 1.1c1-.3-.8.1.7-.8s-3 .2-3.4-1.7c-.6-1.1.1-2.6-1.4-2.1-1.1-1.4.7-2.4.3-3.8-1.1.7-1.7-.3-2.6 1.6-2-.4-.3-3.2-2.5-3.5 0 2-1.7 2.2-1.8 3.3-1 .7-5.3 3.3-4 5"/>
50
+ <path fill="#c01500" stroke="#000" stroke-width=".9" d="M316.4 418.8c3-.8 20 3.7 26.5 10.7-1.4-12.5-4.8-22-4.8-22s-10.1-2.9-11.5-1.5c-2 2.1-8.1 8.5-10.2 12.8zm-5.2-57.6c-1.2.2-2.4 1-3.6 3-1.4 3.3-2.3 11.8-4.3 13.8s-3.8 2.2-3.8 4c0 1.8.2 6 5.6 7.5 5.3.2 13.8-8.5 13.8-8.5s4.4-4.8 6.1-9.9c-10.2 3.6-17.6-6-13.8-9.9zM460 416.8a46.8 46.8 0 0 0-26.8 10.6 108 108 0 0 1 4.8-21.8c1.2-.4 10-2.9 11.3-1.5 2 2.1 8.5 8.5 10.6 12.7zm4.7-57.2c1.2.2 1.6 1.7 2.6 3.7 1.3 3.3 2.7 8.2 4.7 10.2s3.7 4.8 3.7 6.6c0 1.8-.4 4.2-5.7 5.7-5.3.2-13-6.6-13-6.6s-4.3-4.7-6-9.8c10.2 3.5 16.8-5.6 13.7-9.8z"/>
51
+ <path fill="#fb0" stroke="#000" stroke-width=".9" d="M305.3 407.9s10.6 7.3 10.8 10.7c28.7-42.6 101.9-55.8 143.6-3a30.7 30.7 0 0 1 11.3-9.7c-44-57.3-131.3-50.2-165.7 2z"/>
52
+ <path fill="#1e5aa6" stroke="#000" stroke-width=".9" d="M414 245.2h4.2l-7.4 9.4 9 10.4-17.7 22.2 16.6 20c-1.8 4.5-4 8.6-6.8 12.3l-9.5-10.6 17.3-21.6-14.2-16.1zm-59.7 1.9-4.4.1 8.3 9-8.8 11.1 18.4 20-15.3 20.4a60 60 0 0 0 7.3 13.1l9-11.4-18.5-20.7 13.6-17.3z"/>
53
+ <path fill="#1e5aa6" stroke="#000" stroke-width=".9" d="m375 300.8-6.5 8.8 23.4 27.2c4.2-2.1 7.4-4.5 11-7.4l-12.2-14.1 5-14.7 7.1 8.3-22.4 28.6a48.9 48.9 0 0 1-11.6-7.2l11.8-15zm-7.2-13.6 4.2 5.4-2.7-7.3zm30.6 4.8 3.5-4.6-1.3-1.8z"/>
54
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M447.9 217.2s4.1-3.5 7-3.6"/>
55
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M448.5 216.7s24.7-3.5 25.4-4.3m-25.3 4.6c0-.2 27.5-2.4 27.5-2.4"/>
56
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M448.5 217s29.2-1.4 31 .1m-31.1-.1s28.6.1 29 .8m-28.9-.8 27.5 2.2m-27.8-2.1c.1 0 28 2.5 30.7 6"/>
57
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M480.4 228.1s-9.5-11.3-32.3-11"/>
58
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M448.2 217.2s15.8 1.1 20.8 6.6"/>
59
+ <path fill="none" stroke="#fff700" stroke-linecap="round" stroke-width=".9" d="M448.5 217s10.2-2 21 11"/>
60
+ <path fill="url(#gs-e)" stroke="#000" stroke-width=".9" d="M442 228.7s14.2.6 14.2 2c0 1.3-10.5 4-10.7 9.8-.1 5.9 8 6.3 8.6 13.6.6 7.4-6.3 8.5-7.7 10.5-1.4 1-4.8 11.3-4.3 17.5.4 6 2.2 26.8 5.4 31 2.5 1.9 6.2 8.1 10.3 6.2 4-2 1.2-9 .8-11-.4-2 1.7-5.1 1.7-8 0-3-1.6-5.3-1.4-6 .1-.7 11.2 2.6 10.5 13.6-.7 11-5.1 7.6-5.1 7.6s1.4 13.5-2.1 15.3c-6.2 3.4-10.8-.7-10.8-.7l.6 2.8-4.8-2.5s-6.1-8.7-7.5-12.6a110 110 0 0 1-2.5-25c.6-3.8 1-25.7.7-26.9-.3-1-1.4-19.4-.7-22.2.7-2.8 5-15 4.9-15z"/>
61
+ <path fill="#ff7000" stroke="#000" stroke-width=".9" d="M426.8 225s9.8-9.5 15.5-8.4c3 0 .2 2.1.2 2.1s5 .4 5.7 2.6c.1 1-2.4 1.3-2.4 1.3s2 .4 2.2 2.2c.2 1.8-21 .4-21.2.3z"/>
62
+ <path fill="none" stroke="#000" stroke-width=".9" d="M427.3 224.7s10.6-1.4 15-5.9"/>
63
+ <path fill="none" stroke="#000" stroke-width=".9" d="M438 221.8s7.8-.3 7.8.8"/>
64
+ <path fill="#fff" stroke="#000" stroke-linejoin="round" stroke-width=".9" d="M465.7 335.4s6.6-1.5 8.5-3.9c1-.8 6.9 8.8-8.5 4z"/>
65
+ <path fill="none" stroke="#fff" stroke-linecap="round" stroke-width=".9" d="M463.9 280.3s.8 5.1-1.6 8.6c-1.2 1.4-5 3.7-5 5.4 0 1.7 1.4 3.9 1.2 5.8-.3 2-2.4 4-2.3 5.6 0 1.6 2.4 10.5 2.1 10.7m-6.6-52.8s-5.3 1.8-6.4 7"/>
66
+ <path fill="#c75b00" stroke="#000" stroke-width=".9" d="M449.4 221.8s1.8 5 7.7.2c-3.8-5.1-7.7-.1-7.7-.2z"/>
67
+ <path d="M453.7 221.6c0 .2-.2.4-.6.4-.3 0-.6-.2-.6-.4 0-.3.3-.5.6-.5.4 0 .6.2.6.5"/>
68
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="M401.7 210.2s11 12 18.2 11.8c1.3 3.5-3.2 6.8-5 8.3-3.7-1.1-7 .3-15.4-10.2.5-6.6 2.3-9.7 2.2-10zm15-27.9c1.4-4.4 4.3-8 6.7-8.3-.6-3.4 5.3-18.4 22.3-24.1 1 7.7-7.3 15.2-7.3 15.2s25.1-4.3 30.2-10.7c-.5 2.9-5.6 20.7-32.4 20.6 10.2 9.6-3.2 17.3-9 15 10.6-8-3-13-10.5-7.7z"/>
69
+ <path fill="#cccccd" stroke="#ccc" stroke-width=".9" d="M425.3 176c5-3.2 6.9-3.2 11-2.6-3 .4-3 .6-3 .6s-.2.4 1.6 2c-2-.5-3.9-1.6-9.6 0z"/>
70
+ <path fill="none" stroke="#000" stroke-width=".9" d="M423.3 174s10-5.4 15.6-9"/>
71
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="M414.7 230.3s13.8 3.8 15.4-16c-3-8.6-7.2-27-.8-32.4-5.9-4-12.2.1-12.2.1-.4 1-5.6 8.4 1.4 21.4-16.7-4.4-9.9 11.3-9.9 11.3.7-2.5 9.5-4.8 11.7 7.8 1 3.1-6 8-5.6 7.8z"/>
72
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="M430.2 214.5s14.6-7.9 14.2-26.2c-12.4.2-16.8 16.3-16.8 16.3z"/>
73
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="M364.9 213.5s-10.8 9.4-17 6.4c-4.5 2.8-9.8-2-9.8-2s6.2 23 28.6 6.3a53 53 0 0 0-1.8-10.7z"/>
74
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="M347.8 219.5c1-4.8 4.7-7.1 7.7-2.6 4 .8 8-15.7-6.3-13 4-21.6-8-29.7-8-29.7s-4.3 24-2.4 28.4c2 4.4-2.8-8.2-18.3-11.7-.3 18 17.3 26.5 17.3 26.5s5 4.6 10 2.1z"/>
75
+ <path fill="none" stroke="#000" stroke-width=".9" d="M349.2 203.8s-6.7 5.7-5.2 13.5m-5-14.3s-1.6 5.6 1.8 13.5"/>
76
+ <path fill="none" stroke="#000" stroke-width=".9" d="M338 218.4s3-5.1 9.8 1.4"/>
77
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="M339.2 183.2c0-.1-10.3 0-4.1 10.4-4.6 1.5-14.8-5.2-7.7-14-23-.6-32.4-11.6-32.4-21.8 6.7 7 22.9 4.2 28.6 8.5-7-6.5-5.6-15.5-5.6-15.5s19.7 5.9 23.2 23.3c-1.2 3.4-1.7 9.4-2 9.1z"/>
78
+ <path fill="none" stroke="#000" stroke-width=".9" d="M323.4 165.8c3.8 3.9 13.5 5 18.5 9.3"/>
79
+ <path fill="#cccccd" stroke="#ccc" stroke-width=".6" d="M327.9 177.2s8-1 10.4 1.8c-3.2 0-4.2-.7-8.8 1 1.3-.7 1-1.9 1.7-1.9s-3-.9-3.3-.9z"/>
80
+ <path fill="#923f00" stroke="#000" stroke-width=".9" d="M368.1 114s4.4-3.8 9.3-.3c-2.2 6.5-10 4-10 4s.2 3.3-.6 4.8c1.6 1.2 2.9 5.1 2.9 5.1s8-2 9.8 1.6c3-.4 5.3 0 5.3 0s6.2-1.6 8.4-1.6c2.3 0 9.3 1.8 10 3.1.6 1.3 3 10 4.5 10 1.6-.2-3.8 2-5.2-.2-1.4-2.2-1 2.9-1 2.9s4.4 4.7 4.9 5.7-2.7 9.5-.3 15.4c-2.1.2-2.3 2.4-2.3 2.4-.1 2.6-3.4 3.3-3.4 3.3l-.8-3.5-2.2 1.3 1-2.8s3-7.2 3.2-9.6c.2-2.3-2.8-6.5-5.1-6.5s-4 7.4-4 7.4-1.2 5.6-.8 6.1l-1.6-1.8s-1 3.4-1.8 4.4c-.8 1-2.5 1.5-2.5 1.5s-1.1-3.4-.8-4.7c.4-1.3 6.4-6.4 6-10-.6-3.7 0-2.8-.2-2.9-.2-.1-3.1-2.7-3.3-4.2-.1-1.4-3.9 1.9-8.8.8-1.5 2.7-1.7 9.3-1.7 9.3s-.5 7.9.5 8.8c1 1-2.6 2.9-2.6 2.9l-2.6 3.5-1-2-1.7 1.2 1-2.6c0-2 2.5-7.4 2.5-12 0-4.5.4-9.3.4-9.3s-4.9-.3-4.7 4.6c.1 5-1.2 5.3-1 6.7.3 1.4 1.6 5.4 1.2 6.6-.4 1.2-2 1.6-2 1.6l-.3.6s-4.8 2.2-4.7 3.2l-.1-2.6-.3-3.8s2.9-1.8 2.9-6.4c0-4.6-.7-5.2-.5-6.2 0-1 .7-4.9.6-5.3-.1-.3-2.7 1-3.5 1-.8 0 1.4-2.6 1.7-4.6.2-2-2.6 1.8-5-.4 1.1-2.4 2.8-3.1 3-5 .3-1.8-1.8 1.6-3.6.3.1-1.7 2-3.2 2-3.2s-1.5-.2-2.1 0c-1.2-.4 1.3-2.2 1.4-4.9.1-2.6-1.4-3.6-1.4-3.7 0-.2-2.6-2.4-3-3.3-.4-.9-.4-2-.4-2s-4.3 3.2-9.4-3.4c4.6-4 9.6-1 9.6-1s1.3-3.7 7.3-3.5c6 .3 7.2 3.7 7 3.3z"/>
81
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="M400.9 181.4s11 .3 11.1 6.2c.1 5.9-3.3 4.3-3.4 4.3l-8-1z"/>
82
+ <path fill="#fffeff" stroke="#000" stroke-width=".9" d="M390.2 179.8s13.7-.1 13 5.8c-.8 6-4.3 4.8-4.3 4.8l-6.6-.5z"/>
83
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="m382.5 179.1 8 .7s4.7.6 4.5 5.2c-.2 4.6-4.9 4.7-4.9 4.7l-7.7-.5z"/>
84
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="M364 181.4c-.1 0-11 .3-11.2 6.2 0 5.9 3.4 4.3 3.5 4.3l8-1z"/>
85
+ <path fill="#00f" stroke="#000" stroke-width=".9" d="M374.6 179.8s-13.6-.1-12.9 5.8c.8 6 4.3 4.8 4.3 4.8l6.6-.5z"/>
86
+ <path fill="#fff" stroke="#000" stroke-width=".9" d="m382.3 179.1-7.9.7s-4.8.6-4.5 5.2c.2 4.6 4.8 4.7 4.8 4.7l7.7-.5z"/>
87
+ <path fill="#5e0043" stroke="#000" stroke-width=".9" d="M403.5 245s5.7-8.4 8.1-7.5c2.1.7.5 7.2-.5 7.8zm-39 1.5c-1.8-2.5-4.4-9.4-6.8-7.5-2 .7-.5 7.2.5 7.8z"/>
88
+ <path fill="none" stroke="#000" stroke-width=".9" d="M368.3 229.9s11 6.8 14.7 7c3.7.2 15.2-8.9 15.2-8.9"/>
89
+ <path fill="#5e0043" stroke="#000" stroke-width=".9" d="m369.4 203 2-2.6 10.7 5.4L393 201l2 2.3-12 8.5z"/>
90
+ <path fill="#474747" stroke="#474747" stroke-linejoin="round" stroke-width=".9" d="M360.9 203c.9 1 7.7 9.4 9 16.3 1.2 7-.7-9.5-.7-9.5s8.5 4.2 8.8 6.9c.2 2.6 4-.2 4.2-.7l-24.6-16zm42.1-.5s-9 11.8-8 24.6c-1.8-6.1-.3-16.3-.3-16.3l-2 1.3s-2 8.6-4.5 10c-.5-1-.4-1.4-.4-1.4s-2.7 3.5-3.3 3.9c-.5.3.2 12 .2 12s1 8.4 2 8.3a36 36 0 0 0-2.7 1.5l-1.1-22.5 2.5-2.5s3.4-4.1 3.6-8.1a8 8 0 0 1-3 1.6s-.5 5.7-1.8 6.5c-1.4.8-1.4 2.2-1.4 2.2l-.3-7.4z"/>
91
+ <path fill="none" stroke="#000" stroke-linecap="round" stroke-width=".9" d="m382.5 216.1 1.7 35.5"/>
92
+ <path fill="none" stroke="#000" stroke-width=".9" d="M360.7 233s4 2.5 5.5 9.7c13.4-1 17.5 3.8 17.5 3.8s11-5.3 16-4.3a39 39 0 0 1 6.8-8.5"/>
93
+ <path fill="#b4b6b9" stroke="#000" stroke-width=".9" d="m355 198.3 27.5 18 24.6-16.7s5.2-2.8 4.7-4.8c-.4-2-2.2-1.3-3-1-1 .4-25.9 18-25.9 18l-26.5-16.7s-2-.6-2.3.6c-.4 1.3.7 2 1 2.6z"/>
94
+ <path fill="#474747" stroke="#474747" stroke-linejoin="round" stroke-width=".9" d="M404 193.6s-7-3-7-.4.3 2.9 1.4 4.5c1.1 1.7-.9 2.7-.9 2.7l-.6-1.8c-.4-1.1-4.2-2-4.5-3.2-.4-1.4.8-3.5-1.5-3.7-2.2-.3-4.4.9-4.9 3.5-.4 2.5-3.3 8.6-3.3 8.6l.3-13.7c5 .3 14.2 1.4 21.2 2.2-2.1-.3.8.2.7.9-.2.6-.9.6-.8.4zm-24.7-3.4c-1.3 0-7.6.7-9.1 1.7-1.6.9 2.5 2.3 2 3.6-.5 1.2-.6 3.8-2.6 3.2-2-.5-8.6-3.8-8.8-5-.2-1-1.6-1.1-1.6-1.1s19.2-2.6 20-2.4z"/>
95
+ <path fill="none" stroke="#000" stroke-width=".9" d="M382.3 188.6v16.8m-12.9-36.6-7.9 12.9"/>
96
+ <path fill="url(#gs-f)" stroke="#000" stroke-width=".9" d="M383.5 168.5s3.4 4.6 3 5.9a18 18 0 0 1 2.9 5.3"/>
97
+ <path fill="none" stroke="#000" stroke-width=".9" d="M396.4 167.8s-7.2 10.1-7 10.9"/>
98
+ <path d="M359.4 119.3c-.1.6-1 .8-2 .5-1-.3-1.7-1-1.5-1.6.2-.6 1-.8 2-.5 1 .3 1.7 1 1.5 1.6m2.9-.3c.2.7 1.1.9 2.1.6 1-.3 1.6-1 1.5-1.6-.2-.6-1.1-.8-2-.5-1 .3-1.7 1-1.6 1.6z"/>
99
+ <path fill="#ff7000" stroke="#000" stroke-linejoin="round" stroke-width=".9" d="M447 330.2s-2.8.5-2.7.8c.1.2-7.8.5-8 .2-.1-.2-1.1 1.4-1.1 1.4l1.2-.8s2 2 2.6 1.8c.5-.1-.3.8-.1 1 .1.1.7-.4.7-.4l13-.2zm4.8 4.1-10.7.3s-2.6 2.4-2.8 3c-.2.6 1.7.7 1.7.7l.6 2 1.4-.5s9 1.4 17.3-.5c4.2-1.4 5-3.2 2-4.3-3-1-9.5-.7-9.5-.7z"/>
100
+ <path fill="url(#gs-g)" stroke="#000" stroke-width=".9" d="m415.4 356 19-.8-3.5-3 51.8-2.1-1.8-4.1-58 2.3 7 3.3-15.6.4.4 1.7-4-.2s4.5 1.8 4.7 2.6z"/>
101
+ <path fill="url(#gs-h)" stroke="#000" stroke-width=".9" d="M436.8 250.4c-1.5-.8-8.2-1.7-15.6 3.2l.3 17.1s10.9-5.9 16.2-4.5c-.3-5.3-.3-12.2-.9-15.8z"/>
102
+ <path fill="none" stroke="#000" stroke-width=".9" d="m331 302.5-45 44.8m65.1-44.5-36.6 48.3m35-60.8-48.9 59.1m-1.5-.8 4.8-5.5m54.9-23.1-19 26.2m-.8 3.4.5 10m28-30.4-20.1 25.1m16.5-1.9L372 339m-5-2.6-9.8 11m6.8-21.5-6.7 8.2m-1.9-20.1s-20.5 29.9-20.1 32.3m18-36.3c-.5.4-17.7 23-17.7 23m-1 7.3-3 3.7m-4 5.8-4.7 6.2"/>
103
+ <path fill="#8a9396" stroke="#2b2b2b" stroke-width=".9" d="M328.8 233.7s-1.4 4.3 0 6.5 10 19.8 10 19.8 6-7.3 8.2-7.5c2.2-.2 1.2 19 1.2 19s-3.6 3.3-5.8 3.1c-2.1-.2 5.4 7.5 5.2 14-.2 6.6-10 39-13.5 39.6-3.5.6 1.6-6 1.4-7.7-.2-1.8-1.2-.6-2-2.6s1.2-5 .8-7c-.4-1.9-2.1-1.5-2.3-2.9-.2-1.4 1.1-1.8 1-3.3-.3-1.6-2.4-1.2-2.2-2.6.2-1.4.4-.8.2-3.4-.2-2.5-.6 1.8-2.8 2-2.2.2-4 5.2-4 5.2s-4.3 6-8.7 3.3c2.6 5.6.6 8-.4 8.1-1 .2.8 4.4-1.5 4.6-2.4.2 1.7 9.3-1 10 3 1.4.6 3.2.6 3.2s-6.9.6-5.4 9.5c-20.1-7.1-30-19.4-29.8-31.8.2-12.5 4.1-23.8 13.8-28 2.8-10.2 7.5-21.3 7.5-21.3s-.8-4.5-.2-7.5c.6-3 3.4-6 3.4-6s-.4-7-.2-10.6c.2-3.6 1.6-5.1 1.8-7.1.2-2-.6-12 1.4-13.9 2-1.7 5.7-1.5 7.7-2.7 2-1.2 4.5-3.4 7-3.2 2.7.2 4.8 2 4.8 2s9.7 0 10.3 3.7c.6 3.8-2 5.2-2 5.2s1.4 5.3-4.5 10.3z"/>
104
+ <path fill="#cecfcf" stroke="#2b2b2b" stroke-width=".9" d="M320.2 220c.3.5-.4 1.5-1.6 2.2-1.2.6-2.4.7-2.7 0-.3-.5.4-1.5 1.6-2.1 1.2-.6 2.4-.7 2.7-.1z"/>
105
+ <path d="M318.5 221c0 .3-.3.6-.7.6-.4 0-.7-.3-.7-.6 0-.4.3-.7.7-.7.4 0 .7.3.7.7"/>
106
+ <path fill="none" stroke="#2b2b2b" stroke-width=".4" d="M333 227.5s2.4 10.7-.5 18.1m1.2-22.8s4.7 6.2 4.1 14m-3.6-15.3c.1 0 4 3.3 3.8 5.6m-2.9-7s2.6 1.8 3.2 3.6"/>
107
+ <path fill="none" stroke="#000" stroke-width=".9" d="M333.9 219s-9.2 15-8 24.4"/>
108
+ <path fill="none" stroke="#2b2b2b" stroke-width=".4" d="M334.5 218.6s-12.2 7.2-14.5 31"/>
109
+ <path fill="none" stroke="#000" stroke-width=".9" d="m333.1 223-4.8 3.6"/>
110
+ <path fill="none" stroke="#2b2b2b" stroke-width=".4" d="M315.5 251s6.8-28.3 18.8-32.4"/>
111
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-width=".9" d="M339 260.5s6.5-8.2 8-7.9c1.6.3 1.1 18.9 1.1 18.9s-4.8 3.6-5.9 3.5c-1-.2 5.4 8.7 5.3 12l-.3 3.4s0-2-1.5-5.2c-1.5-3.1-.6-6.8-10.4-14.8-2.5-5 4.8 3 6.3 1.8s-2.7-11.6-2.6-11.7z"/>
112
+ <path fill="none" stroke="#2b2b2b" stroke-width=".9" d="M327.5 214.5s-2.8.7-3.1 1.9c-.4 1-2 2.2-2.9 1.8-.9-.4-2.5-1.7-2.5-1.7"/>
113
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" stroke-width=".9" d="M312 224s-4.1 4.2-2.2 4.7c2 .4 4.1-3.3 4.1-3.3s0 6.4 1.8 5.4c1.7-1 6.8-4.6 6.8-4.6s1.8-.2 2.1 0c.4 0 4.7 3.8 7.6 2.5-1.6 4.2-3.5 4.7-3.5 4.7s-3 3.8-6.8 3c-3.9-1-4.9-2.5-4.9-2.5s-3.2.2-4.2-1.3-1.3-2.3-1.3-2.3-1.9 1.8-2.4 1c-.5-1 0-6 2.9-7.2z"/>
114
+ <path fill="none" stroke="#2b2b2b" stroke-width=".9" d="M335.2 218.3s-7.6-2.2-10.2 1.5c-2.6 3.8-2 5.9-.6 6.2"/>
115
+ <path d="M336.3 218.1c0 1-.6 1.6-1.4 1.6-.8 0-1.4-.7-1.4-1.6 0-.9.6-1.6 1.4-1.6.8 0 1.4.7 1.4 1.6"/>
116
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-width=".9" d="M314.3 237.5s3 4.7 6.8 6c3.7 1.3-2.6 2.5-6.3 0-2.6-3.7-2-6.3-2-6.3s.8-.7 1.5.3zm26.4 28s-8.6-12-11.1-12.7c-2.5-.7 1.9-1.2 4.5 1.4 2.7 2.5-.7-4.2-.7-4.2z"/>
117
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" stroke-width=".9" d="M313.5 335.2c3.3-.9 17.8 8.3 21 10.6 3.3 2.3 10.2.9 10.2.9s-3.2 1.9-5.2 2.3c-2 .5 5.9.5 5.9.5s-18.6 5.1-37.4-4.8c-1.7-7.7 4-9.4 5.5-9.5z"/>
118
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-width=".9" d="M334.7 268.5s-2.5-.5-3.7-2c-1.3-1.3-3-4.9-4.9-6.3-1.8-1.5-11-6.6-14.4-6.2-3.3.3-4.3-.4-4.7-.8-.4-.4-1.8.2-1.6 2 .3 1.6-2.5 5.4-1.5 7.2 1 1.8 5.8 9 6.7 9.3 1 .2.4 4.2.4 4.2s4.2 4.3 5.3 4.5c1 .3 2.1 1 2 2-.1 1-4.7 6.6-4.7 6.6s-4.8 2.5-4.9 4c0 1.4 1.2 4.3 5 5.3a36 36 0 0 0 14.9-.7 19 19 0 0 0 1-6.8c-.4-.5-3-2.1-4.3-1.9-1.3.3-2.4 1.3-2.3 1.6 0 .2-1.9 1.2-1.9.3 0-1 3.9-5.3 4.2-5 .4.4 5.9 1 6.9 3.7s1 4.7 3.8 4.4c2.9-.3 6.9-3 7.2-8.4.4-5.4-3.2-9.1-4-9.7-1-.5-4-2.3-4.2-3.1-.2-.8-.8-3.6-.3-4.2z"/>
119
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-width=".9" d="M283.3 292.6s9.2-2.4 11.6-2.3c2.3 0 11.3 4.2 14 6.8 2.5 2.5 7.9 8.6 11.4 8 3.5-.5 4.5-1.2 4.5-1.2l-1.4 2.6s-2.8.8-4.2.4c-1.5-.3-4.2-1.2-7-4-2.8-2.7-11.4-10-18.8-9.5-7.3.5-11.5 7.7-11.5 7.7s0-3.5.4-4.3c.3-.8-1.6 1.7-1.6 1.7z"/>
120
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-width=".9" d="M317.2 299.7s2.3.7 6.1.7 5.9-1.7 5.9-1.7l-.3-1.5.6-2s3 3 2.9 3.5c-.1.6-1.2.9-1.2.9l-.4-1.5-1 1.3s-5.6 4.4-8.6 3.7c-3-.6-5.8-2.6-5-3 .7-.5 1.1-.4 1-.4zm-13.4 7.8s-3.3 0-4.8.7-2 1.6-3 1.4c-1 0-1.8-1.4-1.5-2 .4-.7 2.3-1.8 6-1.5 3.8.3 3.3 1.4 3.3 1.4zm11.6 9c0-.1-.2-4.8-2-6.7a5.6 5.6 0 0 0-5.2-1.7c-1 .2 3.8 2.3 4.3 3.7.4 1.4 2 5.2 1.6 6.1-.5 1-1.2-2.7-4.1-3.7-3-1-7-.4-6.2.9.9 1.3 4.1 0 5.8 2.9 1.7 2.8 3 5.7 3 5.7l.5-2 1.4-.4.2-3.9z"/>
121
+ <path fill="#2b2b2b" stroke="#2b2b2b" stroke-linejoin="round" stroke-width=".9" d="m313 331.7-3-6s-1-3.9-3.5-5c-2.5-1-6-.8-6 .5s5.5 3 5.8 3.7c.4.7.2 1.9-.3 2-.4 0-2.9-1-4.1-.7-1.3.3-2 2-3.8 1.5-1.9-.5-3.4-6.4-2.7-7 .7-.6-1.4 1-1.8-.5-.4-1.5.6-6.3 0-7-.8-.5-4.3-2.6-4.3-3 0-.4.2-23.7 19.6-4.4-8.3-9.9-11.6-8.8-13.1-8.9-1.2 0-8.7.7-10.6 10.3-2 9.6-4.2 3.6-4.2 3.6s-.4 4.2 1.6 5.4c2 1.2-1 4.6-1 4.6s-3.5-8.8-3-12.7a30 30 0 0 0 4 19.1 62.4 62.4 0 0 0 23.7 16.8c7.1-10.8 6.8-12.1 6.8-12.3z"/>
122
+ <path fill="#8a9396" stroke="#2b2b2b" stroke-linejoin="round" stroke-width=".9" d="M300.3 331.8s4 .5 5 2.5c1.1 2 1.6 5.1 1.6 5.1.6-1.3 1-2.4 2.2-3.4 1.3-1 2.3-1 2.2-1.8 0-.7-4.1-5-6.2-5.2-2-.3-5.7 2.2-5.7 2.2s-.7 1 1 .6z"/>
123
+ <path fill="none" stroke="#8a9396" stroke-linecap="round" stroke-width=".9" d="M309.3 342s10.2 4.7 26.9 5"/>
124
+ <path fill="none" stroke="#2b2b2b" stroke-linecap="round" stroke-width=".9" d="M343.2 294.9s-.9 8.5-7.4 25.3"/>
125
+ <path fill="none" stroke="#2b2b2b" stroke-width=".9" d="M342 300.1s-2 6.1-7.5 10.7"/>
126
+ <path d="m312.2 406 1.8-2 .5.5-.1.2-.2.2v.1l.2.2 2.3 2 .2.2h.1l.2-.1.4-.7q.1-.4 0-.8 0-.3-.3-.8l.7-.4 1 1.9-2.7 3-.6-.4.2-.2.1-.2v-.2l-.2-.2-2.3-2-.2-.2h-.2l-.1.2-.2.2zm3.8-4.3 3.3-3.2 1.6.8-.3.6-.8-.1h-.6l-.5.5-.6.6 1 1 .1-.2.3-.4v-.2l-.2-.3-.2-.1.5-.5 1.6 1.6-.4.5-.2-.2-.3-.2h-.2l-.3.3-.2.2.9.9.1.1h.1l.2-.1.4-.4.5-.7v-.7q0-.5-.2-.9l.7-.3 1 2-3.4 3.2-.5-.5v-.1l.3-.3v-.2l-.2-.2-2.1-2.1-.3-.2h-.1l-.2.1-.2.2-.5-.5zm6.9-6.5q1-.9 2-.8 1.2 0 2 1 .5.6.7 1.4.1.7-.2 1.4-.2.7-1 1.3-.8.7-1.8.7-1.3 0-2.1-1t-.7-2q0-1.2 1-2zm.5.6q-.4.4-.4 1 0 .7.6 1.4t1.3.9q.6 0 1-.3.5-.4.5-1 0-.7-.6-1.4l-.9-.7-.8-.2q-.4 0-.7.3m5.4-5.4.4-.3h.1l2.6-1.7-.1-.2.4-.3 1.7 1.2-.5.6-.6-.3h-1.1v.4l1.8 2.5.2.3h.3l.4-.2.4.6-2.2 1.5-.4-.6h.1l.3-.3v-.2l-.2-.3-1.8-2.6-.1-.1h-.1q-.2.1-.3.4l-.1.6v.7l-.7.2-.5-2zm4.9-3.2 3.9-2.4 1.4 1.2-.5.6q-.3-.3-.7-.4h-.6q-.3 0-.6.3l-.7.4.7 1.2.2-.2.3-.2q.1-.1 0-.2v-.4l-.2-.2.6-.3 1.2 2-.6.3-.1-.2-.2-.3h-.2l-.4.2-.2.1.6 1 .1.3h.1l.3-.1.4-.3q.4-.2.6-.5l.3-.7v-1h.7l.4 2-4 2.4-.4-.6h.2l.2-.3q.1 0 0-.2v-.3l-1.6-2.5-.2-.3h-.1l-.3.1-.2.1zm5.5-3.3 3-1.5.6-.3.8-.1.6.2.5.5q.3.6 0 1.1-.2.6-.6 1l1.6.6.3.1h.4l.2-.2.4.7-1.6.8-2.6-1.3-.4.2.5 1 .2.3h.4l.2-.2.4.7-2.4 1.2-.3-.6.2-.2.2-.1v-.4l-1.5-2.8-.1-.2h-.4l-.2.2zm2.2-.1.6 1.2.8-.4.5-.4q.2-.1.2-.3v-.5l-.3-.2q-.2-.1-.4 0l-.6.2zm3.9-3 3.1-1.4.7-.2h.7q.4 0 .7.2l.4.6q.2.5 0 1-.3.6-.8 1l1.6.7.3.1h.5l.2-.1.3.6-1.6.7-2.6-1.4-.4.2.5 1 .1.3h.4l.3-.1.3.7-2.5 1-.3-.7h.2l.3-.2v-.4l-1.3-2.8-.1-.3h-.4l-.2.2zm2.2 0 .6 1.3.7-.4.7-.3.2-.4v-.4l-.3-.3q-.2-.1-.4 0l-.6.1zm6-3.4 1.2-.5 3 3.4.3.3h.4l.2.7-2.4.9-.2-.8h.1q.2 0 .3-.2v-.1l-.2-.3-.3-.4-1.5.6v.9h.6l.2.6-2 .7-.2-.7.3-.1v-.2l.1-.2zm.9 2.8 1-.4-1-1.2zm3.4-4.4 2.3-.7 1.8 3v-3.5l2.5-.7.2.7-.3.1q-.2 0-.2.2v.3l.8 3 .1.3h.7l.2.6-2.5.8-.2-.8h.2l.2-.1.1-.2v-.2l-1-3.2v4.7l-.7.2-2.4-3.9.9 3.2v.2h.7l.2.6-2.1.7-.2-.8h.2l.2-.1.1-.2v-.3l-.9-3v-.2h-.7zm10.8-2.8 2.8-.5 1-.1.6.2.5.5.3.6q.1.7-.3 1.2-.5.6-1.4.8l-1 .1.3 1v.3h.7l.1.7-2.6.5-.1-.7h.2l.3-.1v-.5l-.5-3-.1-.2-.1-.1h-.5zm2.1.5.3 1.5h.5l.6-.3q.2-.1.2-.3v-.5q0-.3-.3-.5zm3.7-1.5 3.3-.5h.7l.7.1q.4.2.6.5l.2.6q.1.7-.3 1.1-.4.4-1 .6l1.3 1.2.3.2h.7v.8l-1.7.2-2-2.1h-.4v1.1l.2.4q.2.1.4 0h.2l.1.8-2.6.3-.1-.7h.2l.3-.1v-.5l-.3-3v-.2l-.2-.1h-.5zm2 .6.3 1.4.8-.1.7-.2.3-.3v-.4l-.1-.4-.4-.2h-.6zm7.8-1.8q1.3 0 2.1.7.8.8 1 2 0 .8-.4 1.5-.3.6-1 1-.5.4-1.5.5-1.2 0-2-.6-1-.7-1-2t.7-2.1q.8-.9 2-1zm0 1q-.6 0-1 .4-.4.6-.3 1.6 0 .9.5 1.4.4.4 1 .4t1-.5q.4-.6.3-1.5 0-.7-.2-1-.2-.5-.6-.7-.3-.2-.7-.2zm4.1-1h3.8l.6.4.4.6.1.6q0 .7-.5 1.2t-1.5.5h-1v1l.1.2.1.1h.5v.8h-2.6v-.8h.5l.1-.1v-3.8h-.6zm2 .9v1.5h1.1l.3-.3.1-.5q0-.4-.3-.6l-.6-.1zm3.9-.9 3.3.2q.4 0 .7.2.4 0 .7.3l.5.5v.7q0 .6-.4 1-.5.3-1.1.4l1 1.4.2.2.2.1h.3l.2.1v.7H398l-1.6-2.5h-.4l-.1 1v.4l.1.1h.5v.8l-2.7-.2v-.7h.6l.1-.1v-.3l.3-3v-.3l-.1-.1h-.4l-.2-.1zm2 1-.2 1.5h1.6l.3-.3q.2-.1.2-.3l-.1-.4-.3-.3h-.7l-.9-.2zm4.8-.5 2.5.4v.7h-.6l-.2.4-.3 3v.4h.3l.3.1-.1.8-2.6-.4v-.7h.6l.1-.3.4-3v-.5h-.3l-.3-.1.1-.8zm5.6.8 1.2.2.9 4.5.1.4.4.1-.1.8-2.6-.5.1-.7h.5l.1-.1v-.8l-1.7-.3-.3.5-.1.2v.1l.1.1.4.1-.1.8-2.1-.4.1-.7h.3l.2-.1.2-.2zm-.7 2.9 1 .2-.2-1.6zm5.1-2 2.4.5.1 3.5 1.8-3 2.4.6-.2.7h-.5l-.2.3-.7 3q-.1.2 0 .2v.2h.2l.3.1-.2.8-2.5-.7.2-.7h.6v-.2l.9-3.3-2.4 4-.7-.1-.2-4.6-.8 3.2v.4h.3l.3.1-.2.7-2.2-.5.2-.7h.6l.2-.3.7-3v-.4h-.2l-.3-.1.2-.8zm11 3 2.7 1q.5.1.8.4.3.2.4.5l.2.6v.7q-.3.7-1 1-.6.2-1.5-.2l-.9-.3-.3 1-.1.2v.2h.3l.2.2-.2.7-2.5-1 .3-.6h.1l.3.1h.2l.1-.3 1-2.9.1-.3v-.1l-.3-.1-.2-.1zm1.5 1.5-.5 1.4.4.2.6.1.4-.1.3-.4v-.6q-.2-.3-.6-.4zm4 .5 3 1.4.7.3.5.5.3.7-.2.7q-.2.5-.8.7-.5.2-1.1 0l.5 1.7v.3l.2.2.2.1.2.1-.3.7-1.5-.7-.7-2.9-.4-.1-.4 1-.2.3v.1l.3.2h.2l-.3.8-2.4-1.1.3-.7.2.1h.5v-.3l1.3-2.8.1-.2v-.1l-.2-.2h-.3zm1.5 1.6-.6 1.3.7.4.7.2.5-.1.2-.3q.1-.2 0-.4l-.1-.4-.6-.3zm7.5 2.6q1.1.6 1.5 1.6.3 1.1-.3 2.2-.4.7-1 1.1-.6.4-1.4.4-.7 0-1.5-.4-1-.6-1.4-1.5-.5-1.1.2-2.3.6-1.1 1.6-1.4 1.1-.4 2.3.3m-.4.7q-.6-.3-1 0-.8.3-1.2 1.1-.4.8-.3 1.5.1.6.6.9.6.2 1.1 0 .7-.3 1-1 .4-.7.4-1.1l-.1-.8q-.2-.4-.5-.6m4.4 1.4.5.3v.2l2.5 1.6.2-.1.4.2-.4 2-.8-.2v-.7l-.1-.6-.3-.3h-.1l-.2.1-1.6 2.7-.2.3v.1l.1.1.4.3-.4.6-2.3-1.4.4-.6h.2l.3.2h.1l.2-.3 1.7-2.7q.1-.2 0-.2v-.1l-.5-.1-.6.1-.6.4-.4-.6zm4.9 3.3 3.7 2.6-.5 1.8-.7-.2v-.8l-.2-.6-.5-.4-.7-.5-.8 1 .2.2.4.2h.2l.3-.3v-.1l.7.4-1.4 1.8-.5-.4v-.2q.2-.1.2-.3v-.2l-.3-.3-.2-.1-.7 1-.2.2v.1l.2.2.4.2.8.4q.4.1.8 0l.8-.4.4.6-1.7 1.3-3.9-2.8.5-.6.4.3h.2l.2-.3 1.7-2.4.2-.3v-.1l-.2-.2-.2-.2zm6.1 7.8 2 1.6-.5.6h-.1l-.3-.2h-.1l-.2.2-1 1.3-.7-.5v-.4q-.4 0-.7-.2l-.7-.5q-.6-.4-.9-1.1-.2-.7 0-1.4 0-.7.6-1.4.5-.6 1.2-.8.6-.3 1.3-.2.8.1 1.3.6l.5.5.4.6h.2l.4.3-.7 1.7-.7-.3v-1l-.1-.6-.4-.4-.6-.3-.8.2-.8.6q-.4.5-.5 1-.2.5 0 1 0 .3.3.5l.5.3h.5l.3-.2v-.2l.2-.2v-.1l-.2-.3-.2-.1zm5.8 1.7 1 .9-1.8 4.1v.5l.2.3-.5.6-2-1.8.6-.5h.1l.3.2h.1l.2-.3.2-.5-1.2-1-.6.2-.2.1v.3l.3.2-.5.6-1.5-1.5.5-.5.2.2h.2l.3-.1zm-2 2 .7.8.6-1.5zm5.6 1.2.4.4-.1.1 2 2.3.3-.1.3.3-.9 1.8-.7-.3.2-.7v-.6q0-.3-.2-.4h-.3l-2.2 2.2-.3.3v.2l.3.3-.5.6-1.8-2 .5-.5.1.1.3.3h.1l.3-.3 2.3-2.2.1-.1v-.1l-.4-.2h-.7l-.6.1-.3-.7z"/>
127
+ <path fill="#012169" d="M0 0h256v256H0Z"/>
128
+ <path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94Z"/>
129
+ <path fill="#c8102e" d="m92 162 5.5 17L21 256H0v-1.5zm62-6 27 4 75 73.5V256zM256 0l-96 98-2-22 75-76ZM0 .5 96.5 95 67 91 0 24.5Z"/>
130
+ <path fill="#fff" d="M88 0v256h80V0ZM0 88v80h256V88Z"/>
131
+ <path fill="#c8102e" d="M0 104v48h256v-48zM104 0v256h48V0Z"/>
132
+ </svg>