@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,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-nu" viewBox="0 0 512 512">
2
+ <path fill="#fedd00" d="M0 0h512v512H0z"/>
3
+ <path fill="#012169" d="M0 0h256v256H0z"/>
4
+ <path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
5
+ <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"/>
6
+ <path fill="#fff" d="M88 0v256h80V0zM0 88v80h256V88z"/>
7
+ <path fill="#c8102e" d="M0 104v48h256v-48zM104 0v256h48V0z"/>
8
+ <circle cx="128" cy="128" r="43.6" fill="#012169"/>
9
+ <path fill="#fedd00" d="m128 84.4 25.6 78.8-67-48.7h82.8l-67 48.7m-49.1-58.3 15 46.3L29 122.6h48.7l-39.4 28.6m164.4-46.3 15 46.3-39.4-28.6H227l-39.4 28.6m-59.6 39 15 46.3-39.3-28.6h48.6L113 236.5m15-217L143 66l-39.3-28.7h48.6L113 66"/>
10
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-nz" viewBox="0 0 640 480">
2
+ <defs>
3
+ <g id="nz-b">
4
+ <g id="nz-a">
5
+ <path d="M0-.3v.5l1-.5z"/>
6
+ <path d="M.2.3 0-.1l1-.2z"/>
7
+ </g>
8
+ <use xlink:href="#nz-a" transform="scale(-1 1)"/>
9
+ <use xlink:href="#nz-a" transform="rotate(72 0 0)"/>
10
+ <use xlink:href="#nz-a" transform="rotate(-72 0 0)"/>
11
+ <use xlink:href="#nz-a" transform="scale(-1 1)rotate(72)"/>
12
+ </g>
13
+ </defs>
14
+ <path fill="#00247d" fill-rule="evenodd" d="M0 0h640v480H0z"/>
15
+ <g transform="translate(-111 36.1)scale(.66825)">
16
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="translate(900 120)scale(45.4)"/>
17
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="matrix(30 0 0 30 900 120)"/>
18
+ </g>
19
+ <g transform="rotate(82 525.2 114.6)scale(.66825)">
20
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="rotate(-82 519 -457.7)scale(40.4)"/>
21
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 519 -457.7)scale(25)"/>
22
+ </g>
23
+ <g transform="rotate(82 525.2 114.6)scale(.66825)">
24
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="rotate(-82 668.6 -327.7)scale(45.4)"/>
25
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 668.6 -327.7)scale(30)"/>
26
+ </g>
27
+ <g transform="translate(-111 36.1)scale(.66825)">
28
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="translate(900 480)scale(50.4)"/>
29
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="matrix(35 0 0 35 900 480)"/>
30
+ </g>
31
+ <path fill="#012169" d="M0 0h320v240H0z"/>
32
+ <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"/>
33
+ <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"/>
34
+ <path fill="#fff" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
35
+ <path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
36
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-nz" viewBox="0 0 512 512">
2
+ <defs>
3
+ <g id="nz-b">
4
+ <g id="nz-a">
5
+ <path d="M0-.3v.5l1-.5z"/>
6
+ <path d="M.2.3 0-.1l1-.2z"/>
7
+ </g>
8
+ <use xlink:href="#nz-a" transform="scale(-1 1)"/>
9
+ <use xlink:href="#nz-a" transform="rotate(72 0 0)"/>
10
+ <use xlink:href="#nz-a" transform="rotate(-72 0 0)"/>
11
+ <use xlink:href="#nz-a" transform="scale(-1 1)rotate(72)"/>
12
+ </g>
13
+ </defs>
14
+ <path fill="#00247d" fill-rule="evenodd" d="M0 0h512v512H0z"/>
15
+ <g transform="translate(-148.7 90.5)scale(.60566)">
16
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="translate(900 120)scale(45.4)"/>
17
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="matrix(30 0 0 30 900 120)"/>
18
+ </g>
19
+ <g transform="rotate(82 418.7 105.1)scale(.60566)">
20
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="rotate(-82 519 -457.7)scale(40.4)"/>
21
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 519 -457.7)scale(25)"/>
22
+ </g>
23
+ <g transform="rotate(82 418.7 105.1)scale(.60566)">
24
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="rotate(-82 668.6 -327.7)scale(45.4)"/>
25
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="rotate(-82 668.6 -327.7)scale(30)"/>
26
+ </g>
27
+ <g transform="translate(-148.7 90.5)scale(.60566)">
28
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#fff" transform="translate(900 480)scale(50.4)"/>
29
+ <use xlink:href="#nz-b" width="100%" height="100%" fill="#cc142b" transform="matrix(35 0 0 35 900 480)"/>
30
+ </g>
31
+ <path fill="#012169" d="M0 0h256v256H0z"/>
32
+ <path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
33
+ <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"/>
34
+ <path fill="#fff" d="M88 0v256h80V0zM0 88v80h256V88z"/>
35
+ <path fill="#c8102e" d="M0 104v48h256v-48zM104 0v256h48V0z"/>
36
+ </svg>
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-om" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="om-a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#om-a)">
8
+ <path fill="#ef2d29" fill-rule="evenodd" d="M-3.3-21.6H699v553H-3.3z"/>
9
+ <path fill="#009025" fill-rule="evenodd" d="M174.6 317.3h535.7V525H174.6z"/>
10
+ <path fill="#fff" fill-rule="evenodd" d="M174.6-35.4h564.9v190h-565z"/>
11
+ <g stroke="#ef2d28">
12
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 111.3 -13.4)">
13
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.3" ry="11.8"/>
14
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1.3" rx="10.7" ry="10.9"/>
15
+ <path stroke-width="1.3" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
16
+ <ellipse cx="68.9" cy="426.8" stroke-width="1.3" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
17
+ <path stroke-width="1.3" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
18
+ </g>
19
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 19.1 -14)">
20
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.3" ry="11.8"/>
21
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1.3" rx="10.7" ry="10.9"/>
22
+ <path stroke-width="1.3" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
23
+ <ellipse cx="68.9" cy="426.8" stroke-width="1.3" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
24
+ <path stroke-width="1.3" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
25
+ </g>
26
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(-.32136 -.12684 -.20158 .20221 345.9 61.4)"/>
27
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.2" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)"/>
28
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(-.19334 0 0 .17062 142.8 -8.1)"/>
29
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(-.13978 0 0 .12414 123 20.4)"/>
30
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(-.13978 0 0 .12414 124.9 19.7)"/>
31
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(-.13978 0 0 .12414 127 18.2)"/>
32
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(-.13978 0 0 .12414 127.4 17.8)"/>
33
+ <path fill="none" stroke-width="2.3" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(-.09924 0 0 .09799 109.5 38.8)"/>
34
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(-.12338 0 0 .12229 111.4 19.3)"/>
35
+ <path fill="none" stroke-width="1.2" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)"/>
36
+ <g fill-rule="evenodd" stroke-width="1.3" transform="matrix(-.19848 0 0 .17744 145.3 -13.4)">
37
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
38
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
39
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
40
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
41
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
42
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
43
+ </g>
44
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(.32136 -.12684 .20158 .20221 -181.5 60.8)"/>
45
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.2" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(.19848 0 0 .17744 19.1 -14)"/>
46
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(.19334 0 0 .17062 21.6 -8.8)"/>
47
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(.13978 0 0 .12414 41.4 19.7)"/>
48
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(.13978 0 0 .12414 39.5 19)"/>
49
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(.13978 0 0 .12414 37.4 17.6)"/>
50
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(.13978 0 0 .12414 37 17.2)"/>
51
+ <path fill="none" stroke-width="2.3" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(.09924 0 0 .09799 55 38.2)"/>
52
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(.12338 0 0 .12229 53 18.6)"/>
53
+ <path fill="none" stroke-width="1.2" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(.19848 0 0 .17744 19.1 -14)"/>
54
+ <g fill-rule="evenodd" stroke-width="1.3" transform="matrix(.19848 0 0 .17744 19.1 -14)">
55
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
56
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
57
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
58
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
59
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
60
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
61
+ </g>
62
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 19.1 -14)">
63
+ <path stroke-width="1.3" d="M305.6 396.9c0 124 .5 170.7-5.6 177.1-5.8 6.9-167.1 0-167.1 35.4s132.8 71 172.7 71c53.2 0 79.7-35.5 79.7-106.4V397h-79.7z" transform="matrix(1.3333 0 0 1 -141.7 0)"/>
64
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 35.4)"/>
65
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="scale(1 .99999)"/>
66
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 17.7)"/>
67
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 53.1)"/>
68
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
69
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
70
+ <ellipse cx="327.8" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
71
+ <ellipse cx="363.2" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
72
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
73
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
74
+ <path stroke-width="1.3" d="M265.8 485.4 372 581.1m-95.6-95.7 95.7 85M290.5 489l81.6 70.9m-71-71 71 60.3M311.8 489l60.2 49.6M322.4 489l49.6 39m-39-39 39 28.3M343.8 489l28.4 21.2M354.3 489l17.8 14.2M365 489l7 7m-106.2 0L372 591.8m0-106.3L255 591.7m106.3-106.3-102.7 92.2m88.6-88.6-81.5 70.8m70.8-70.8-70.8 60.2M326 489l-60.2 49.6m49.6-49.6-49.6 39m39-39-39 28.3M294 489l-28.3 21.2m17.7-21.2-17.7 14.2m7-14.2-7 7m106.3 0L255 602.5m117-95.7L255 613m117-95.7L255 623.6m117-95.7L255 634.4m117-95.7L255 644.9m117-95.7L255 655.5m117-95.7L255 666.1m117-95.6L255 676.8m117-95.7-109.9 99.2M372 591.7l-99.2 88.6m95.6-74.4-78 70.9M365 620l-63.8 56.7m56.7-39-32 28.3m-60.1-159.4 102.7 92.1m-102.7-81.5 102.7 92.2M265.8 528l99.2 88.5m-99.2-78 99.2 88.7m-99.2-78 95.6 85m-99.2-77.9 95.7 85M262.2 567l88.6 78m-92.1-71 88.6 78M255 581l85 74.4m-85-63.8 81.5 70.9M255 602.3l71 63.7"/>
75
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 70.9)"/>
76
+ <path stroke-width="1.3" d="m255.1 613 63.8 56.7m-63.8-46 56.7 49.5m-56.7-39 49.6 42.6m-49.6-32 35.5 32M255 655.5l28.4 24.8M255 666.1l17.7 14.2"/>
77
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
78
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
79
+ <ellipse cx="327.8" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
80
+ <ellipse cx="363.2" cy="264" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
81
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
82
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.4" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
83
+ <path stroke-width="1.3" d="m113.4 652 127.5-74.4m-134.6 70.8 120.5-70.8m-124 63.7 109.8-63.7M99.2 634.3l95.7-56.7M92 627.2l88.6-49.6m-85 39 60.2-35.5M92 609.4l46-28.3m-46 17.7 32-17.7m0 74.4 120.4-70.9M134.7 659 248 591.7m-102.7 70.9 106.3-63.8m-95.7 67.3 88.6-53.1M170 666.1l78-46m-67.4 49.6 67.3-39m-56.7 42.5 53.2-31.9m-39 32 42.5-24.9m-28.3 28.4L248 659m-14 17.8 17.7-10.6"/>
84
+ <path stroke-width="1.3" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(0 1 -.99999 0 655.5 308.3)"/>
85
+ <path stroke-width="1.3" d="m49.6 623.6 42.5-35.4m-42.5 10.6 42.5 42.5"/>
86
+ <path stroke-width="1.3" d="m260.1 388 5.6 26.6c35.5 5.9 65.3 5.9 100.8 0l11.1-26.6c-35.4 5.9-82 5.9-117.5 0z" transform="matrix(0 .63333 -.8 0 423.8 416.3)"/>
87
+ <path stroke-width="1.3" d="M258.7 350.8v-17.9c-10.7.2-17.8-10.5-17.8-21.2l-35.4.1c0 10.6-7 21.3-17.7 21.3v17.7z" transform="matrix(1.4983 0 0 1 -15.6 53.1)"/>
88
+ <path stroke-width="1.4" d="M296 343.7h45.6V365H296zm3.9-21.3h37.9v21.3h-38zm0-21.2h37.9v21.2h-38zm3.8-28.4H334v28.4h-30.3zm-1.3-24.8h33v24.8h-33z"/>
89
+ <ellipse cx="237.4" cy="161.2" stroke-width="1.3" rx="42.5" ry="33.7" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
90
+ <path stroke-width="1.3" d="M258.7 159.4c0 9.3 10.6 24.8 10.6 24.8-7.7 6.2-20.2 10.7-31.9 10.7s-26.3-2.6-31.9-10.7c0 0 10.6-15.4 10.6-24.7s-10.6-21.3-10.6-21.3a54.6 54.6 0 0 1 32-10.6c11.6 0 24 4.5 31.8 10.6 0 0-10.6 12-10.6 21.3z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
91
+ <path stroke-width="1.3" d="M251.6 159.4c0 9.3 10.6 28.4 10.6 28.4-7.7 6-13 7-24.8 7s-19.2 1.1-24.8-7c0 0 10.6-19 10.6-28.4s-10.6-24.8-10.6-24.8c7.7-6 13-7 24.8-7 11.7 0 17.1 1 24.8 7 0 0-10.6 15.5-10.6 24.8z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
92
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 75.3 60.2)"/>
93
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 163.2 60.2)"/>
94
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 119.3 60.2)"/>
95
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0333 0 0 1 119.3 24.8)"/>
96
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0702 0 0 1 80 226.8)"/>
97
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.0702 0 0 1 140.6 226.8)"/>
98
+ <path stroke-width="1.3" d="M212.6 311.8h49.6l-24.8 31.9z" transform="matrix(1.0702 0 0 1 64.8 53.1)"/>
99
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1.3" transform="matrix(1.427 0 0 1.3333 40.7 167.7)"/>
100
+ </g>
101
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19848 0 0 .17744 18.8 -19.1)">
102
+ <rect width="81.5" height="21.3" x="262.2" y="524.4" stroke-width="1.2" rx="4.3" ry="3.7"/>
103
+ <path stroke-width="1.2" d="M368.5 506.7c-9.8 0-17.7 8.3-17.7 18.5v16.1a18 18 0 0 0 17.7 18.5 18 18 0 0 0 17.7-18.5v-16a18 18 0 0 0-17.7-18.6zm0 7c-5.9 0-10.6 6.7-10.6 14.9v9.3c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8v-9.3c0-8.2-4.7-14.8-10.6-14.8zm-92.1-3.5c-6 0-10.6 6.6-10.6 14.9v16.4c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8V525c0-8.3-4.7-14.9-10.6-14.9zm0-7a18 18 0 0 0-17.7 18.5v23.2a18 18 0 0 0 17.7 18.5c9.8 0 17.7-8.3 17.7-18.5v-23.2a18 18 0 0 0-17.7-18.6z"/>
104
+ <path stroke-width="1.2" d="M248 517.3c-5.9 0-10.6 6.6-10.6 14.8v3.9c0 8.2 4.7 14.8 10.6 14.8 6 0 10.7-6.6 10.7-14.8v-3.9c0-8.2-4.8-14.8-10.7-14.8zm0-7a18 18 0 0 0-17.7 18.5v10.6a18 18 0 0 0 17.7 18.5c9.8 0 17.8-8.3 17.8-18.5v-10.6a18 18 0 0 0-17.8-18.6z"/>
105
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -655.5 242.2)"/>
106
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -425.2 245.7)"/>
107
+ <rect width="42.5" height="21.3" x="375.6" y="524.4" stroke-width="1.2" rx="2.3" ry="3.7"/>
108
+ <rect width="24.8" height="28.4" x="336.6" y="520.9" stroke-width="1.2" rx="1.3" ry="4.9"/>
109
+ <rect width="24.8" height="28.4" x="219.7" y="520.9" stroke-width="1.2" rx="1.3" ry="4.9"/>
110
+ <rect width="49.6" height="35.4" x="141.7" y="517.3" stroke-width="1.2" rx="2.6" ry="6.1"/>
111
+ <rect width="46.1" height="35.4" x="450" y="520.9" stroke-width="1.2" rx="2.5" ry="6.1"/>
112
+ </g>
113
+ </g>
114
+ </g>
115
+ </svg>
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-om" viewBox="0 0 512 512">
2
+ <defs>
3
+ <clipPath id="om-a">
4
+ <path fill-opacity=".7" d="M0 0h512v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#om-a)">
8
+ <path fill="#ef2d29" fill-rule="evenodd" d="M-23.3-21.6h554.7v553H-23.3z"/>
9
+ <path fill="#009025" fill-rule="evenodd" d="M164.6 341.3H541V549H164.6z"/>
10
+ <path fill="#fff" fill-rule="evenodd" d="M164.6-19.4H541v190H164.6z"/>
11
+ <g stroke="#ef2d28">
12
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19516 0 0 .17447 109.2 -5.3)">
13
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.5" ry="12.1"/>
14
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1pt" rx="10.9" ry="11.1"/>
15
+ <path stroke-width="1pt" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
16
+ <ellipse cx="68.9" cy="426.8" stroke-width="1pt" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
17
+ <path stroke-width="1pt" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
18
+ </g>
19
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19516 0 0 .17447 18.6 -6)">
20
+ <rect width="138.2" height="85" x="17.7" y="467.7" stroke-width="1.4" rx="11.5" ry="12.1"/>
21
+ <rect width="131.1" height="78" x="21.3" y="471.3" stroke-width="1pt" rx="10.9" ry="11.1"/>
22
+ <path stroke-width="1pt" d="m65 396 9.7.5.4 5.8 8 5.3 6.2-6.7 7.5 5.3-7 5.8 1.7 8 8.8-.5V430l-7-.4-3.6 6.6 8 7.5-6.2 6.2-6.7-6.6-9.7 2.6.5 9.7-10.6 1-1.4-9.4-8.8-4.8-4.9 6.6-7.5-4.9 4.4-7.5-5.3-4.8H34l-.4-13.7 7.5.9 5.3-8-6.2-6.2 8-7 5.7 5.7 9.7-1.8z" transform="matrix(.68108 0 0 .5852 38 260.7)"/>
23
+ <ellipse cx="68.9" cy="426.8" stroke-width="1pt" rx="11.1" ry="9.9" transform="matrix(.65819 0 0 .70224 38.8 209.6)"/>
24
+ <path stroke-width="1pt" d="m39 474.8-10.7 10.6m17.8-10.6-10.7 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6L78 485.4m17.7-10.6L85 485.4m17.8-10.6L92 485.4m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m-17.7-10.6L78 485.4m46-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m17.7-10.6-10.6 10.6m0-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.7 10.6M85 474.8l10.6 10.6m-17.8-10.6 10.7 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6m-17.7-10.6 10.6 10.6M85 474.8l10.6 10.6m-46-10.6 10.5 10.6m-17.7-10.6 10.7 10.6m-17.8-10.6L46 485.4m-17.8-10.6L39 485.4m0 49.6-10.6 10.7M46 535l-10.7 10.7M53.2 535l-10.7 10.7M60.2 535l-10.6 10.7M67.3 535l-10.6 10.7M74.4 535l-10.6 10.7M81.5 535 71 545.7M88.6 535 78 545.7M95.7 535 85 545.7m17.7-10.7L92 545.7m18-10.7-10.7 10.7M117 535l-10.6 10.7M88.6 535 78 545.7m46-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m17.7-10.7-10.6 10.7m0-10.7 10.6 10.7M127.6 535l10.6 10.7M120.5 535l10.6 10.7M113.4 535l10.6 10.7M106.3 535l10.6 10.7M99.2 535l10.7 10.7M92 535l10.7 10.7M85 535l10.6 10.7M78 535l10.6 10.7M70.9 535l10.6 10.7M63.8 535l10.6 10.7M56.7 535l10.6 10.7M85.1 535l10.6 10.7m-46-10.7 10.5 10.7M42.5 535l10.7 10.7M35.4 535l10.7 10.7M28.4 535 39 545.7"/>
25
+ </g>
26
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1pt" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(-.31598 -.12472 -.1982 .19883 340 68.2)"/>
27
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(-.19516 0 0 .17447 142.6 -5.3)"/>
28
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(-.1901 0 0 .16776 140.2 -.1)"/>
29
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(-.13744 0 0 .12206 120.8 27.9)"/>
30
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(-.13744 0 0 .12206 122.6 27.2)"/>
31
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(-.13744 0 0 .12206 124.7 25.8)"/>
32
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(-.13744 0 0 .12206 125 25.4)"/>
33
+ <path fill="none" stroke-width="2.4" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(-.09758 0 0 .09635 107.4 46)"/>
34
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(-.12132 0 0 .12024 109.3 26.8)"/>
35
+ <path fill="none" stroke-width="1.3" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(-.19516 0 0 .17447 142.6 -5.3)"/>
36
+ <g fill-rule="evenodd" stroke-width="1pt" transform="matrix(-.19516 0 0 .17447 142.6 -5.3)">
37
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
38
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
39
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
40
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
41
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
42
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
43
+ </g>
44
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1pt" d="M538.6 531.5c1.7 166.6 24.8 202 3.5 202s-31.9-92.1-31.9-205.5 14.2-205.5 35.5-205.5-9 31.9-7.1 209z" transform="matrix(.31598 -.12472 .1982 .19883 -178.7 67.6)"/>
45
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m545.7 779.5-60.3 17.7c56.7 60.3 120.5 85 138.2 74.4 17.7-10.6-31.9-35.4-78-92z" transform="matrix(.19516 0 0 .17447 18.6 -6)"/>
46
+ <path fill="#fff" fill-rule="evenodd" stroke-width="1.3" d="m547.3 786.9-51 14.7c56.7 60.3 112.8 77.4 127.3 70 14.6-7.3-30.3-28-76.3-84.7z" transform="matrix(.1901 0 0 .16776 21 -.7)"/>
47
+ <path fill="none" stroke-width="1.8" d="M353.1 634.2c.2 1.3.8 7.1 1.3 9.4 0 3.2.3 5.6.6 8.1.8 2.2.7 4.2 3.1 5a9.9 9.9 0 0 0 5 4.4 27.7 27.7 0 0 0 6.3 3.8 11.6 11.6 0 0 0 7.5.6c2.2-1.5 3.8-3.1 5.6-4.4.4-2 .8-4.9 1.3-6.9a32.6 32.6 0 0 0-1.3 8.2c.2 3 1.3 4.4 2.5 6.8" transform="matrix(.13744 0 0 .12206 40.5 27.3)"/>
48
+ <path fill="none" stroke-width="1.8" d="m389.4 681.7.6-.6c-1.5 1.5-.9.8 2.5-1.3 2.4-1.2 5-1.8 8.1-2.4h8.8c3.4 0 5.7.5 8.1 1.2 1.8 1.8 4.4 2.8 6.3 4.4a11 11 0 0 1 3.7 5c1.7 1.7 2.8 4.3 4.4 5.6.7 2.9 2.1 2.8 3.1 5-3 .2-5.3.6-6.9 2.5-2.6 1.3 2.2-1.3 3.2-2.5 2-.6 2.5-1.2 5.6-1.2 2.8-1 4.6.7 7.5 1.2 1.7 1 2.2 1.3 4.4 1.3" transform="matrix(.13744 0 0 .12206 38.7 26.6)"/>
49
+ <path fill="none" stroke-width="1.8" d="M438.1 724.9c1.3 0 7.1 1.1 9.4 0 2.6-.7 4-2 5.6-4.4.8-1.7 0 3 0 5 .3 3.7 1.4 3.7 3.2 6.2 1.8 1.2 3.7 2.8 5.6 3.8a18 18 0 0 0 5.6 3.1c2 1 4.1 1.8 5.6 3.1 2.1 1.5 2 3.3 3.2 5.7-.3 3-.8 4.8-2.5 6.2-.8 2.1-2.4 4.2-3.8 5.6-1.5 3-3.3 4.3.6 5 2.2 1 3.4.2 5.7 0" transform="matrix(.13744 0 0 .12206 36.6 25.1)"/>
50
+ <path fill="none" stroke-width="1.8" d="M480.6 771.7c1.6-.4 7-2.2 9.4-3.1h8.8c3.3.3 4 1.3 6.8 2.5 1.9 1.9 3.1 3.2 5.7 4.4 1.3 1.7 4 4.7 5 6.9a25.5 25.5 0 0 1 1.2 8c0 3.7-1 4.4-1.2 7.6a19.3 19.3 0 0 1-3.8 7.5c-.3.8-.5 1-1.2 1.2" transform="matrix(.13744 0 0 .12206 36.2 24.8)"/>
51
+ <path fill="none" stroke-width="2.4" d="M538.1 818c.4 0 1.2 2 2.5 3.7 2.9 3 3.2 3.2 7.5 3.2 4-.2 3.5-1.6 6.3-2.5 1.3-2 2.9-3.6 4.4-6.3 1-1.6 1.9-4.1 3-5.6 1.2-1.9 2.6-3.3 3.8-5 1.2-.5 1.6-1 3.2-1.3-3.6.6-4 1.9-6.3 3.8a58.9 58.9 0 0 0-3.1 5.6c-.4 2.7-1.2 4.8-1.3 8.1 0 3.5 0 5.9 1.3 8.8 1.5 1.5 2.5 3.1 4.4 4.4a36.7 36.7 0 0 1 4.3 5l5.7 3.7c1.8 1.1 3.9 2.2 6.8 2.5 3.7-.3 4.8-1.3 7.5-2.5 2.4-1.7 4.2-2.8 6.3-4.4a21 21 0 0 0 4.4-5c3.3-.8 5.5-.5 7.5 1.3a16.5 16.5 0 0 1 4.3 4.4c1 .5 2.8 2 3.8 2.5" transform="matrix(.09758 0 0 .09635 53.8 45.4)"/>
52
+ <path fill="none" stroke-width="1.9" d="M503.8 836.1c-.8.3-3.8 2.4-5 3.1-.8 2.7-2.1 4.1-2.5 7-.7 2.6-.7 5.6-.7 8.7.7 3.2 2 5.5 3.2 8 2 1.4 3 2.4 5.6 3.8 2.5.4 5 .7 8.1.7 2 .6 5.6.9 7.5 0 2.8-.4 4.9-1.5 6.9-2.5 2.3-1.3 3.7-2.6 6.2-3.8 1.3-1.8 3.2-3.5 5-5.6 1.6-2.1 2.7-3.3 3.8-5.6-1 2.6-2.3 5-3.1 7.5-1.5 2.6-2.3 3.6-2.5 6.8-1 2.6-.7 5.8-.7 8.8.3 2 .4 5.8 1.3 7.5v1.9" transform="matrix(.12132 0 0 .12024 52 26.2)"/>
53
+ <path fill="none" stroke-width="1.3" d="M541.3 799.2v.7c0-1.7 0-.9-.7 2.5-1.1 1.4-4 1.8-6.2 1.2-2-1.7-2-3-5.6-3.7-3.6.2-5 1.2-7 2.5a9.5 9.5 0 0 0-5 4.3c-.7 2.1-1.1 3.6 1.3 4.4a15.2 15.2 0 0 0 7 2.5c2.8 0 4.9-.3 6.2 1.3 2 2 1.8 3.2 1.8 6.8.7 1.1.8 4.4 1.3 5.7a10.6 10.6 0 0 0 5.6 1.2c.7-2 1.4-5.4 1.9-7.5.5-2.2.6-5.4 1.9-6.9a16.6 16.6 0 0 1 4.3-4.4 8 8 0 0 1 3.8-2.4c-2.5 1.2-2.8 2.6-3.1 5.6 2.1 1 2.7 1.8 6.2 1.9 3.5-.3 4.3-1.2 5.6-3.2.3 3.2 1.3 4.2 2 7 1.2 1.8 1.7 3.7 3 6.2-.5 3-1.7 3.1-1.8 6.8-.8 2.5-.8 4.8-2.5 6.3-.8 1-1.4 1.1-3.2 1.2 3.6 0 5.8-.4 8.2-1.8 1.8-1.2 3.2-2.6 5-3.8a23.9 23.9 0 0 1 7.5-3.8c2.9 0 5-.3 6.2 1.3 1.8 1.3 3 3.5 3.8 6.3.5 3.2.8 5.4-.7 7.5-1 2.4-1.3 3.3 0 6.2 1.5 2 3.6 2.3 7 3.1 2.3-.1 4.6-.6 6.2-1.2" transform="matrix(.19516 0 0 .17447 18.6 -6)"/>
54
+ <g fill-rule="evenodd" stroke-width="1pt" transform="matrix(.19516 0 0 .17447 18.6 -6)">
55
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.8 541)"/>
56
+ <path fill="#fff" d="M531.5 359.6c0-165.2 8-299.4 17.7-299.4 9.8 0 17.7 134.2 17.7 299.4" transform="matrix(1.1373 -.58739 .44532 .86221 -554.8 471.8)"/>
57
+ <path fill="#fff" d="M563.4 301.2c.2 18.9 0 40.2 0 60.2H535c0-20-.2-41.3 0-60.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
58
+ <path fill="#fff" d="M559.8 304.7c.2 19 0 33.1 0 53.2h-21.2c0-20-.2-34.3 0-53.2z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
59
+ <path fill="#fff" d="M542.1 311.8h14.2v39h-14.2zm0 0 14.2 39m-14.2 0 14.2-39m-14.2-198.4h14.2" transform="matrix(1.4216 -.73423 .45889 .88849 -716.7 541.4)"/>
60
+ <circle cx="545.7" cy="92.1" r="3.5" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.8)"/>
61
+ </g>
62
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19516 0 0 .17447 18.6 -6)">
63
+ <path stroke-width="1pt" d="M305.6 396.9c0 124 .5 170.7-5.6 177.1-5.8 6.9-167.1 0-167.1 35.4s132.8 71 172.7 71c53.2 0 79.7-35.5 79.7-106.4V397h-79.7z" transform="matrix(1.3333 0 0 1 -141.7 0)"/>
64
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 35.4)"/>
65
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="scale(1 .99999)"/>
66
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 17.7)"/>
67
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 53.1)"/>
68
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
69
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
70
+ <ellipse cx="327.8" cy="264" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
71
+ <ellipse cx="363.2" cy="264" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 390.5)"/>
72
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 391.1)"/>
73
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 394.3)"/>
74
+ <path stroke-width="1pt" d="M265.8 485.4 372 581.1m-95.6-95.7 95.7 85M290.5 489l81.6 70.9m-71-71 71 60.3M311.8 489l60.2 49.6M322.4 489l49.6 39m-39-39 39 28.3M343.8 489l28.4 21.2M354.3 489l17.8 14.2M365 489l7 7m-106.2 0L372 591.8m0-106.3L255 591.7m106.3-106.3-102.7 92.2m88.6-88.6-81.5 70.8m70.8-70.8-70.8 60.2M326 489l-60.2 49.6m49.6-49.6-49.6 39m39-39-39 28.3M294 489l-28.3 21.2m17.7-21.2-17.7 14.2m7-14.2-7 7m106.3 0L255 602.5m117-95.7L255 613m117-95.7L255 623.6m117-95.7L255 634.4m117-95.7L255 644.9m117-95.7L255 655.5m117-95.7L255 666.1m117-95.6L255 676.8m117-95.7-109.9 99.2M372 591.7l-99.2 88.6m95.6-74.4-78 70.9M365 620l-63.8 56.7m56.7-39-32 28.3m-60.1-159.4 102.7 92.1m-102.7-81.5 102.7 92.2M265.8 528l99.2 88.5m-99.2-78 99.2 88.7m-99.2-78 95.6 85m-99.2-77.9 95.7 85M262.2 567l88.6 78m-92.1-71 88.6 78M255 581l85 74.4m-85-63.8 81.5 70.9M255 602.3l71 63.7"/>
75
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(1 0 0 .99999 0 70.9)"/>
76
+ <path stroke-width="1pt" d="m255.1 613 63.8 56.7m-63.8-46 56.7 49.5m-56.7-39 49.6 42.6m-49.6-32 35.5 32M255 655.5l28.4 24.8M255 666.1l17.7 14.2"/>
77
+ <ellipse cx="256.9" cy="210.8" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
78
+ <ellipse cx="292.3" cy="246.3" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
79
+ <ellipse cx="327.8" cy="264" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
80
+ <ellipse cx="363.2" cy="264" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 443.6)"/>
81
+ <ellipse cx="398.6" cy="246.3" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 444.3)"/>
82
+ <ellipse cx="434.1" cy="210.8" stroke-width="4.5" rx="8.9" ry="26.6" transform="matrix(.54545 0 0 .14383 130.5 447.5)"/>
83
+ <path stroke-width="1pt" d="m113.4 652 127.5-74.4m-134.6 70.8 120.5-70.8m-124 63.7 109.8-63.7M99.2 634.3l95.7-56.7M92 627.2l88.6-49.6m-85 39 60.2-35.5M92 609.4l46-28.3m-46 17.7 32-17.7m0 74.4 120.4-70.9M134.7 659 248 591.7m-102.7 70.9 106.3-63.8m-95.7 67.3 88.6-53.1M170 666.1l78-46m-67.4 49.6 67.3-39m-56.7 42.5 53.2-31.9m-39 32 42.5-24.9m-28.3 28.4L248 659m-14 17.8 17.7-10.6"/>
84
+ <path stroke-width="1pt" d="M265.8 396.9v17.7a321.1 321.1 0 0 0 106.2 0v-17.7a321.1 321.1 0 0 1-106.2 0z" transform="matrix(0 1 -.99999 0 655.5 308.3)"/>
85
+ <path stroke-width="1pt" d="m49.6 623.6 42.5-35.4m-42.5 10.6 42.5 42.5"/>
86
+ <path stroke-width="1pt" d="m260.1 388 5.6 26.6c35.5 5.9 65.3 5.9 100.8 0l11.1-26.6c-35.4 5.9-82 5.9-117.5 0z" transform="matrix(0 .63333 -.8 0 423.8 416.3)"/>
87
+ <path stroke-width="1pt" d="M258.7 350.8v-17.9c-10.7.2-17.8-10.5-17.8-21.2l-35.4.1c0 10.6-7 21.3-17.7 21.3v17.7z" transform="matrix(1.4983 0 0 1 -15.6 53.1)"/>
88
+ <path stroke-width="1.4" d="M296 343.7h45.6V365H296zm3.9-21.3h37.9v21.3h-38zm0-21.2h37.9v21.2h-38zm3.8-28.4H334v28.4h-30.3zm-1.3-24.8h33v24.8h-33z"/>
89
+ <ellipse cx="237.4" cy="161.2" stroke-width="1pt" rx="42.5" ry="33.7" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
90
+ <path stroke-width="1pt" d="M258.7 159.4c0 9.3 10.6 24.8 10.6 24.8-7.7 6.2-20.2 10.7-31.9 10.7s-26.3-2.6-31.9-10.7c0 0 10.6-15.4 10.6-24.7s-10.6-21.3-10.6-21.3a54.6 54.6 0 0 1 32-10.6c11.6 0 24 4.5 31.8 10.6 0 0-10.6 12-10.6 21.3z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
91
+ <path stroke-width="1pt" d="M251.6 159.4c0 9.3 10.6 28.4 10.6 28.4-7.7 6-13 7-24.8 7s-19.2 1.1-24.8-7c0 0 10.6-19 10.6-28.4s-10.6-24.8-10.6-24.8c7.7-6 13-7 24.8-7 11.7 0 17.1 1 24.8 7 0 0-10.6 15.5-10.6 24.8z" transform="matrix(1.0333 0 0 1 75.3 63.8)"/>
92
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0333 0 0 1 75.3 60.2)"/>
93
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0333 0 0 1 163.2 60.2)"/>
94
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0333 0 0 1 119.3 60.2)"/>
95
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0333 0 0 1 119.3 24.8)"/>
96
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0702 0 0 1 80 226.8)"/>
97
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.0702 0 0 1 140.6 226.8)"/>
98
+ <path stroke-width="1pt" d="M212.6 311.8h49.6l-24.8 31.9z" transform="matrix(1.0702 0 0 1 64.8 53.1)"/>
99
+ <circle cx="194.9" cy="166.5" r="10.6" stroke-width="1pt" transform="matrix(1.427 0 0 1.3333 40.7 167.7)"/>
100
+ </g>
101
+ <g fill="#fff" fill-rule="evenodd" transform="matrix(.19516 0 0 .17447 18.3 -10.9)">
102
+ <rect width="81.5" height="21.3" x="262.2" y="524.4" stroke-width="1.3" rx="4.4" ry="3.8"/>
103
+ <path stroke-width="1.3" d="M368.5 506.7c-9.8 0-17.7 8.3-17.7 18.5v16.1a18 18 0 0 0 17.7 18.5 18 18 0 0 0 17.7-18.5v-16a18 18 0 0 0-17.7-18.6zm0 7c-5.9 0-10.6 6.7-10.6 14.9v9.3c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8v-9.3c0-8.2-4.7-14.8-10.6-14.8zm-92.1-3.5c-6 0-10.6 6.6-10.6 14.9v16.4c0 8.2 4.7 14.8 10.6 14.8 5.9 0 10.6-6.6 10.6-14.8V525c0-8.3-4.7-14.9-10.6-14.9zm0-7a18 18 0 0 0-17.7 18.5v23.2a18 18 0 0 0 17.7 18.5c9.8 0 17.7-8.3 17.7-18.5v-23.2a18 18 0 0 0-17.7-18.6z"/>
104
+ <path stroke-width="1.3" d="M248 517.3c-5.9 0-10.6 6.6-10.6 14.8v3.9c0 8.2 4.7 14.8 10.6 14.8 6 0 10.7-6.6 10.7-14.8v-3.9c0-8.2-4.8-14.8-10.7-14.8zm0-7a18 18 0 0 0-17.7 18.5v10.6a18 18 0 0 0 17.7 18.5c9.8 0 17.8-8.3 17.8-18.5v-10.6a18 18 0 0 0-17.8-18.6z"/>
105
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -655.5 242.2)"/>
106
+ <path stroke-width=".9" d="M478.4 237.4c-6 0-10.7 6.6-10.7 14.8v16.5c0 8.1 4.8 14.8 10.7 14.8 5.8 0 10.6-6.6 10.6-14.9v-16.4c0-8.2-4.8-14.8-10.6-14.8zm0-7a18 18 0 0 0-17.8 18.4V272a18 18 0 0 0 17.7 18.6c9.9 0 17.8-8.3 17.8-18.6v-23.2a18 18 0 0 0-17.7-18.5z" transform="matrix(1.8 0 0 1.1176 -425.2 245.7)"/>
107
+ <rect width="42.5" height="21.3" x="375.6" y="524.4" stroke-width="1.3" rx="2.3" ry="3.8"/>
108
+ <rect width="24.8" height="28.4" x="336.6" y="520.9" stroke-width="1.3" rx="1.4" ry="5"/>
109
+ <rect width="24.8" height="28.4" x="219.7" y="520.9" stroke-width="1.3" rx="1.4" ry="5"/>
110
+ <rect width="49.6" height="35.4" x="141.7" y="517.3" stroke-width="1.3" rx="2.7" ry="6.3"/>
111
+ <rect width="46.1" height="35.4" x="450" y="520.9" stroke-width="1.3" rx="2.5" ry="6.3"/>
112
+ </g>
113
+ </g>
114
+ </g>
115
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pa" viewBox="0 0 512 512">
2
+ <defs>
3
+ <clipPath id="pa-a">
4
+ <path fill-opacity=".7" d="M0 0h512v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#pa-a)">
8
+ <path fill="#fff" d="M-26-25h592.5v596H-26z"/>
9
+ <path fill="#db0000" d="M255.3-20.4h312.1v275.2h-312z"/>
10
+ <path fill="#0000ab" d="M-54.5 254.8h309.9V571H-54.5zM179 181.6l-46.5-29.2-46.2 29.5 17.2-48-46.2-29.6 57.1-.4 17.7-47.8 18.1 47.7h57.1l-45.9 30z"/>
11
+ <path fill="#d80000" d="m435.2 449-46.4-29.2-46.3 29.5 17.2-48-46.2-29.5 57.2-.4 17.7-47.8 18 47.7h57.2l-46 30z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pa" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="pa-a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#pa-a)">
8
+ <path fill="#fff" d="M0 0h640v480H0z"/>
9
+ <path fill="#fff" fill-rule="evenodd" d="M92.5 0h477.2v480H92.4z"/>
10
+ <path fill="#db0000" fill-rule="evenodd" d="M323 3.6h358v221.7H323z"/>
11
+ <path fill="#0000ab" fill-rule="evenodd" d="M3.2 225.3h319.9V480H3.2zm211.6-47.6-42-29.4-41.7 29.6 15.5-48L105 100l51.6-.4 16-48 16.3 47.9h51.6l-41.5 30 15.9 48z"/>
12
+ <path fill="#d80000" fill-rule="evenodd" d="m516.9 413.9-42.4-27.7-42.1 28 15.6-45.6-42-28 52-.5 16.2-45.4 16.4 45.3h52l-41.8 28.5 16 45.4z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,33 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-pc" viewBox="0 0 512 512">
2
+ <path fill="#003da5" d="M0 0h512v512H0z"/>
3
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(164.3 247 258.3)"/>
4
+ <path id="pc-a" fill="#fff" fill-opacity="1" fill-rule="nonzero" stroke="none" stroke-width=".7" d="m419 280.3-8.9 1.7-1.1 9-4.4-8-9 1.7 6.3-6.6-4.4-8 8.2 3.9 6.3-6.7-1.2 9z"/>
5
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-10.3 247 258.3)"/>
6
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-30.9 247 258.3)"/>
7
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-20.6 247 258.3)"/>
8
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-51.5 247 258.3)"/>
9
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-72.1 247 258.3)"/>
10
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-61.8 247 258.3)"/>
11
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-41.2 247 258.3)"/>
12
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-92.7 247 258.3)"/>
13
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-113.3 247 258.3)"/>
14
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-103 247 258.3)"/>
15
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-133.9 247 258.3)"/>
16
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-154.5 247 258.3)"/>
17
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-144.2 247 258.3)"/>
18
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-123.6 247 258.3)"/>
19
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-82.4 247 258.3)"/>
20
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-175.1 247 258.3)"/>
21
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(174.6 247 258.3)"/>
22
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(143.7 247 258.3)"/>
23
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(123.1 247 258.3)"/>
24
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(133.4 247 258.3)"/>
25
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(154 247 258.3)"/>
26
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-164.8 247 258.3)"/>
27
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(112.8 247 258.3)"/>
28
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(102.5 247 258.3)"/>
29
+ <path fill="none" stroke="#00aec7" stroke-width="14.6" d="M389.2 334a161 161 0 0 1-161.9 84.2"/>
30
+ <path fill="#fff" d="M420.6 307.7s-26.9-12-81.3-12.2c-54.4-.2-112.2 14.8-144.1 14.4-32-.4-41.4-.4-60.5-4 0 0 28.9 9.6 59.5 12.4 30.7 2.9 101.6-11.1 137-13.4 36.2-2.2 64.4-2.2 89.4 2.8"/>
31
+ <path fill="#00aec7" d="M208 323.4s20.5 1 59.8-3.2 67.2-10 98.2-10.8c31-.8 65.3 4.6 72.5 6.5 0 0-51.7-1.4-73.4 1.7-21.7 3-77.8 10.1-107.4 10.8-29.6.7-39.7-3.3-49.7-5m-85.9-29.6s54.4 14.5 103.8 5c55.7-10.9 88.5-10.7 113.4-10.8 25-.1 51 6.2 51 6.2S288 187.3 180.9 130.7c0 0-8 90.1-58.7 163"/>
32
+ <path fill="#fff" d="M207.2 210.7s-1.5-5.7-9-4.9c0 0 4.8-2 7-1 2 1.2 2.5 1.5 2 5.9m-17.9-10s1.7-.6 2.3-.3c0 0 1.2 3.4 3.5 4.7 0 0-4-.3-5.8-4.5M213 206a13.3 13.3 0 0 0-9.3-5.1c-1.8 0-6.3 3.6-6.3 3.6-1.1-2-.6-3.6-.6-3.6 2.2.3 4 1 4 1a9 9 0 0 0-2.2-3.9c4.3-1.1 9.4 2.6 9.4 2.6a17.8 17.8 0 0 0-11.8-7.3c-1.2 0-2.8 1.8-2.8 1.8-8.3 0-10.5 4.6-10.5 4.6 3.4 5.4 10.6 6.7 10.6 6.7-12.6-1.4-12.3 8.4-12.3 8.4l11.6-6c-4.4 25.8-22.4 37.3-23.9 38.8-1.4 1.5-.5 3.1 1.7 3.3 1.1.2 2.6 1.1 6.6-3.5a70 70 0 0 0 17.5-37.8l.2.2c1.2 3 .4 5.8.6 7.8.3 2 4.7 6.3 4.7 6.3s2.4-4.7 2-7.5c-.3-2.8-5.8-8.1-5.8-8.1 8.4-1.5 8.9 12.4 8.9 12.4 3.2-3.8 2.5-7.8 2.5-7.8s6.7-4.9 5.2-6.9"/>
33
+ </svg>
@@ -0,0 +1,33 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-pc" viewBox="0 0 640 480">
2
+ <path fill="#003da5" d="M0 0h640v480H0z"/>
3
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(164.3 311.5 242.2)"/>
4
+ <path id="pc-a" fill="#fff" fill-opacity="1" fill-rule="nonzero" stroke="none" stroke-width=".7" d="m472.9 262.8-8.4 1.5-1.1 8.5-4.1-7.5-8.4 1.6 5.8-6.2-4-7.5 7.7 3.6 5.8-6.2-1 8.5z"/>
5
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-10.3 311.5 242.2)"/>
6
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-30.9 311.5 242.2)"/>
7
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-20.6 311.5 242.2)"/>
8
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-51.5 311.5 242.2)"/>
9
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-72.1 311.5 242.2)"/>
10
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-61.8 311.5 242.2)"/>
11
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-41.2 311.5 242.2)"/>
12
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-92.7 311.5 242.2)"/>
13
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-113.3 311.5 242.2)"/>
14
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-103 311.5 242.2)"/>
15
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-133.9 311.5 242.2)"/>
16
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-154.5 311.5 242.2)"/>
17
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-144.2 311.5 242.2)"/>
18
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-123.6 311.5 242.2)"/>
19
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-82.4 311.5 242.2)"/>
20
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-175.1 311.5 242.2)"/>
21
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(174.6 311.5 242.2)"/>
22
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(143.7 311.5 242.2)"/>
23
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(123.1 311.5 242.2)"/>
24
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(133.4 311.5 242.2)"/>
25
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(154 311.5 242.2)"/>
26
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(-164.8 311.5 242.2)"/>
27
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(112.8 311.5 242.2)"/>
28
+ <use xlink:href="#pc-a" width="1000" height="700" transform="rotate(102.5 311.5 242.2)"/>
29
+ <path fill="none" stroke="#00aec7" stroke-width="13.7" d="M444.9 313A151 151 0 0 1 293 392"/>
30
+ <path fill="#fff" d="M474.3 288.5S449 277.2 398 277c-51-.2-105.2 13.9-135.1 13.5-30-.3-38.8-.3-56.7-3.7 0 0 27 9 55.8 11.6 28.7 2.7 95.2-10.4 128.4-12.5 34-2.1 60.4-2.1 83.8 2.6"/>
31
+ <path fill="#00aec7" d="M275 303.2s19.2 1 56-3c37-4 63-9.4 92.1-10.2 29.1-.7 61.2 4.4 68 6.1 0 0-48.5-1.3-68.8 1.6-20.3 3-73 9.5-100.7 10.2-27.7.6-37.3-3.2-46.6-4.7m-80.5-27.8s51 13.6 97.2 4.7c52.3-10.2 83-10 106.4-10 23.4-.2 47.9 5.7 47.9 5.7s-96-100.2-196.5-153.3c0 0-7.5 84.5-55 152.9"/>
32
+ <path fill="#fff" d="M274.2 197.5s-1.4-5.3-8.3-4.5c0 0 4.4-2 6.4-1 2 1.1 2.4 1.4 2 5.5m-16.8-9.4s1.5-.5 2.2-.3c0 0 1 3.3 3.2 4.5 0 0-3.8-.3-5.4-4.2m22.2 5a12.5 12.5 0 0 0-8.7-4.8c-1.8 0-6 3.5-6 3.5-1-2-.5-3.4-.5-3.4 2 .2 3.7 1 3.7 1-.8-2.6-2-3.8-2-3.8 4-1 8.8 2.5 8.8 2.5a16.7 16.7 0 0 0-11-6.8c-1.2-.1-2.7 1.6-2.7 1.6-7.8 0-9.9 4.3-9.9 4.3 3.3 5.1 10 6.3 10 6.3-11.8-1.3-11.5 8-11.5 8l10.9-5.7c-4.2 24.1-21 35-22.4 36.3-1.4 1.4-.5 3 1.5 3.2 1.1 0 2.5 1 6.2-3.4a65 65 0 0 0 16.4-35.4l.2.2c1.2 2.9.4 5.4.6 7.3.2 1.9 4.4 6 4.4 6s2.3-4.5 2-7.1c-.5-2.7-5.5-7.6-5.5-7.6 7.8-1.5 8.2 11.6 8.2 11.6 3-3.5 2.4-7.3 2.4-7.3s6.3-4.6 4.9-6.4"/>
33
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pe" viewBox="0 0 512 512">
2
+ <path fill="#D91023" d="M0 0h512v512H0z"/>
3
+ <path fill="#fff" d="M170.7 0h170.6v512H170.7z"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pe" viewBox="0 0 640 480">
2
+ <path fill="#D91023" d="M0 0h640v480H0z"/>
3
+ <path fill="#fff" d="M213.3 0h213.4v480H213.3z"/>
4
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pf" viewBox="0 0 512 512">
2
+ <defs>
3
+ <clipPath id="pf-a">
4
+ <path fill-opacity=".7" d="M0 0h512v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#pf-a)">
8
+ <path fill="#fff" d="M0 0h512v512H0z" style="width:0"/>
9
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" d="M210.4 363.5s11.6-9.4 22.8-9.4 14.4 7.8 22.2 8.4c7.8.7 14.4-7.8 24-8 9.8-.4 22 6.8 22 6.8L258.9 374l-48.5-10.6zm-24.3-13.8 144.3.7s-12.5-13.5-27.2-13.8c-14.6-.3-10.6 6.3-21.8 7.2-11.3 1-14.1-6.9-24.4-6.6-10.3.3-16.3 6.6-24 6.9-7.9.3-17.9-7.8-23.8-7.5-6 .3-27.2 9.4-27.2 9.4zm-18.5-17.2 178.1.7c2.9-4.1-8.7-13.8-19.3-14.7-8.8.3-15 9-22.2 9.3-7.2.4-15.3-9-23.5-8.7-8 .3-16.5 8.8-24.6 8.8-8.2 0-14.1-9.1-24.4-9.1s-15 10-22.8 9.4c-7.9-.7-14.7-10-22.2-10s-20 11.2-22.5 10.6c-2.5-.6 3.1 4.7 3.4 3.7z"/>
10
+ <path fill="red" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2.5" d="m236 233.5 41 11V186c-18.8 1-34.4-35.6-1.3-38.1-32.4-4.8-36.2 3.7-40 12.7z"/>
11
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-linecap="round" stroke-width="5" d="m210.1 276 92.5.3"/>
12
+ <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="4" d="m214.5 253.8 11 14.7m-11 0 11.9-14.4m-5.6-1.3-.4 9.1m11.6-8.1 11 14.7m-11 0 11.9-14.4m-5.6-1.3-.4 9.1m12-8.1 10.8 14.7m-10.9 0 11.9-14.4m-5.6-1.3-.3 9.1m12.4-8.1 11 14.7m-11 0 12-14.4m-5.7-1.3-.3 9.1m11.9-8.1 10.9 14.7m-11 0 12-14.4m-5.7-1.3-.3 9.1"/>
13
+ <path fill="#ef7d08" fill-rule="evenodd" d="m148 277 39.3.2v-24.7l-45-2.1 5.6 26.5zm-2-34.1 42 4-.4-17.5-41-16.2zm8.5-35 32.2 15.6 4.6-4.8s-3-2-2.8-4c0-1.8 3-2.1 3-4.2 0-1.9-3.3-2.1-3.3-4-.3-2 2.6-4.3 2.6-4.3L161.7 177zm211.2 69.3h-41.5l-.3-24 45.6-3.5zm-41.2-29.7 49.4-6-10.7-28.3-39 16.5zm36-42.1L324.7 224c-.5-2-1-4-3.4-5.6 0 0 2.2-1.3 2.2-3.5s-2.9-2.5-2.9-3.7 2.6-2.4 2.8-5.2c-.3-2-2.8-4.6-2.3-5.2l27.7-21.2 11.5 25.7zM283.1 247l17.9-.8.3-7.2zm-54.3-.6L210 246v-7.5zm-.1-2.2-18.7-9.6v-12.5s-2.2.3-1.9-2.2c.1-5.2 13.8 9.5 20.7 14.3zm54.4-1.1V235s16.8-15.2 20.4-18c0 3.1-2 5.5-2 5.5v12zM174 174.7l18.9 21c.5-2 4.8-2.2 9.2-2 4.4.4 7.9-.2 7.9 3 0 3-2.3 2.6-2.3 4.8s3.4 2 3.4 4.8-2.4 2.2-2.5 4.4c0 1.8 2.6 2 2.6 2l17.7 17.1v-18.4l-36.5-57.3zm29-21.7 24.8 50.7s.3-46.8 4.4-49.3l-7-12.8zm107.7 2-27.6 49.3v-20.8s2.3-3.5-1.3-3.2c-3.6.3-8.1-.3-8.1-.3l11.1-39zm28.4 21.1c-.3.6-18.7 19.2-18.7 19.2-.8-2.2-6.4-1.1-11.6-1.1-5.3 0-6 1.7-5.8 3 .6 3.7 2.4 1 2.4 4.4 0 3.3-2.6 2-2.8 4.5.2 2.8 4 2.1 1.8 4.3l-21.3 20.4v-19.4l39.6-61.5z"/>
14
+ <path fill="red" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2.5" d="M245.1 286.3c-8.9 14.7-32.7 10.4-38.2 0-1.7-.4-.7-63.5-.7-63.5s-2.7-1.2-2.8-3.1c-.1-2 3.6-2.1 3.6-4.6 0-2.5-3.8-1.6-3.9-4 0-2.5 4.1-2.2 4-4.4-.3-2.5-4.6-2.1-4.8-4.5-.2-1.8 3-3.4 4-4.2h-9.9c-4.8 0 .1 1.1 0 4 0 1.8-2.4 3-2.6 4.6 0 1.6 3.4 2.7 3.5 4.7 0 1.7-3.5 1.9-3.4 3.5.3 2.7 3.1 3.3 3.1 5 0 1.6-3.9 2.3-3.9 3.6l.6 64.8c6 31.8 41.4 39.8 51.4-2zm23.3 0c9 14.7 32.7 10.4 38.3 0 1.7-.4.7-63.5.7-63.5s2.7-1.2 2.8-3.1c.1-2-3.4-2.1-3.4-4.6 0-2.5 3.6-1.6 3.7-4 0-2.5-3.8-2.3-3.6-4.6.2-2.5 3.1-2.2 3.3-4.5.1-2-1.9-3.2-2.8-4h9.7c4.9 0 0 1.1 0 4 0 1.8 2.5 3 2.7 4.6 0 1.6-3.5 2.7-3.5 4.7 0 1.7 3.5 1.9 3.3 3.5-.2 2.7-3 3.3-3 5 0 1.6 3.9 2.3 3.9 3.6-.2 2.6-.6 64.8-.6 64.8-6.1 31.8-41.4 39.8-51.5-2z"/>
15
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" d="M236.5 315.3h39.8c.3-.3-9-13.8-20-12.8-12.2.3-20.5 12.8-19.8 12.8zm126.8-1h-54.4s7-4.1 9-8c3.5 2 2.5 3.9 9.5 4.2 7 .3 13.8-8 20.5-7.7 6.7.3 15.4 11.8 15.4 11.5zm-214.4 0h54.4s-7-4.1-9-8c-3.5 2-2.5 3.9-9.6 4.2-7 .3-13.7-8-20.5-7.7-6.7.3-15.3 11.8-15.3 11.5zm4-17 38.8.2s-2.5-5.3-2.8-11.8c-10-3.5-18.2 7.5-25.3 7.8-7.2.3-14.7-7.8-14.7-7.8l4 11.5zm207 0-38.8.2s2.5-5.3 2.8-11.8c10-3.5 18.1 7.5 25.3 7.8 7.2.3 14.7-7.8 14.7-7.8l-4 11.5zm-113.5.2 19.7-.6s.3-6-10-6-9.4 7-9.7 6.6zm-12-8.4c3.5-1.9 6.7-3.8 8.8-8.1l-13.4.3s-6.2 3.7-9.4 7.8zm43.5 0a18.2 18.2 0 0 1-8.7-8.1l13.4.3s6.3 3.7 9.4 7.8z"/>
16
+ <path fill="#de2010" fill-rule="evenodd" d="M-128 384h768v128h-768zm0-384h768v128h-768z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pf" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="pf-a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#pf-a)">
8
+ <path fill="#fff" d="M0 0h640v480H0z"/>
9
+ <path fill="#fff" d="M80 0h480v480H80z"/>
10
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" d="M277.3 340.8s10.8-8.8 21.4-8.8 13.4 7.3 20.8 7.9c7.3.6 13.4-7.3 22.5-7.6 9.1-.3 20.5 6.4 20.5 6.4l-39.8 12-45.4-10zm-22.9-13 135.4.7s-11.7-12.7-25.5-13c-13.8-.2-10 6-20.5 6.8-10.6.9-13.2-6.4-22.9-6.2-9.6.3-15.2 6.2-22.5 6.5-7.4.3-16.7-7.3-22.3-7-5.6.3-25.5 8.7-25.5 8.7l3.8 3.6zm-17.3-16 167 .5c2.7-3.8-8.2-12.9-18.1-13.7-8.2.3-14 8.5-20.8 8.8-6.8.3-14.4-8.5-22-8.2-7.6.3-15.5 8.2-23.1 8.2-7.7 0-13.2-8.5-22.9-8.5s-14 9.3-21.4 8.8c-7.3-.6-13.8-9.4-20.8-9.4s-18.7 10.5-21 10c-2.4-.7 2.9 4.3 3.1 3.4z"/>
11
+ <path fill="red" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2.5" d="m301.3 218.9 38.4 10.2v-54.8c-17.6 1-32.2-33.4-1.2-35.7-30.5-4.4-34 3.5-37.5 12z"/>
12
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-linecap="round" stroke-width="5" d="m277 258.7 86.7.3"/>
13
+ <path fill="none" stroke="#000" stroke-linecap="round" stroke-width="4" d="m281.1 238 10.3 13.7m-10.3 0 11.1-13.5M287 237l-.3 8.5m10.8-7.6 10.3 13.8m-10.3 0 11.1-13.5m-5.2-1.2-.3 8.5m11.1-7.6 10.3 13.8m-10.3 0 11.1-13.5m-5.2-1.2-.3 8.5m11.7-7.6 10.2 13.8m-10.2 0 11.1-13.5m-5.3-1.2-.2 8.5m11-7.6 10.3 13.8m-10.2 0 11.1-13.5M354 237l-.3 8.5"/>
14
+ <path fill="#ef7d08" fill-rule="evenodd" d="m218.7 259.6 36.9.3v-23.1l-42.2-2.1zm-1.8-32 39.3 3.9-.3-16.4-38.4-15.3-.6 27.9zm8-32.7 30.1 14.6 4.3-4.5s-2.8-1.9-2.6-3.7c0-1.7 2.8-2 2.8-4 0-1.7-3-2-3.1-3.7-.2-2 2.4-4 2.4-4l-27.2-23.7-6.8 29zm198 65h-39l-.3-22.6 42.8-3.2zM384.2 232l46.3-5.6-10-26.7-36.6 15.6zm33.7-39.6L384.5 210c-.5-2-.9-3.8-3.2-5.3 0 0 2-1.2 2-3.2s-2.6-2.4-2.6-3.5 2.4-2.2 2.6-4.9c-.3-1.8-2.6-4.4-2.2-4.9l26-19.8zm-72.4 39.1 16.7-.7.3-6.7zm-51-.5-17.5-.5v-7l17.6 7.5zm0-2-17.5-9v-11.8s-2 .3-1.8-2c.1-4.9 12.9 8.9 19.4 13.4zm51-1.1v-7.7s15.8-14.2 19.1-16.9c0 3-1.8 5.2-1.8 5.2v11.2zM243 163.8l17.8 19.7c.4-1.8 4.5-2.1 8.6-1.8 4 .3 7.3-.3 7.3 2.6s-2 2.5-2 4.6 3 1.9 3 4.5-2.2 2.1-2.2 4.1c0 1.7 2.4 1.8 2.4 1.8l16.6 16.1v-17.2l-34.2-53.7zm27.4-20.4 23.3 47.5s.2-43.8 4.1-46.1l-6.5-12zm101 1.9-26 46.2V172s2.2-3.2-1.2-3c-3.4.3-7.5-.2-7.5-.2l10.4-36.6zM398 165c-.3.5-17.5 18-17.5 18-.8-2-6-1-11-1-4.9 0-5.6 1.6-5.3 2.9.5 3.3 2.2.8 2.2 4 0 3.1-2.4 2-2.7 4.2.3 2.7 3.8 2 1.7 4l-19.9 19.2v-18.2l37.1-57.6z"/>
15
+ <path fill="red" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2.5" d="M309.8 268.4c-8.3 13.8-30.6 9.7-35.9 0-1.5-.4-.6-59.5-.6-59.5s-2.5-1.1-2.6-3c-.1-1.8 3.4-2 3.4-4.3s-3.6-1.4-3.7-3.8c0-2.2 3.9-2 3.7-4-.2-2.4-4.3-2-4.5-4.2 0-1.7 3-3.2 3.8-4a61.3 61.3 0 0 1-2.8 0l-6.4.1c-4.6 0 0 1 0 3.6 0 1.7-2.3 2.9-2.5 4.3-.1 1.6 3.2 2.6 3.3 4.5 0 1.6-3.3 1.7-3.2 3.3.2 2.5 3 3.1 2.9 4.7 0 1.5-3.6 2.1-3.7 3.3.2 2.4.6 60.8.6 60.8 5.7 29.8 38.8 37.3 48.2-1.8zm21.9 0c8.3 13.8 30.6 9.7 35.8 0 1.6-.4.7-59.5.7-59.5s2.5-1.1 2.6-3c.1-1.8-3.2-2-3.2-4.3s3.4-1.4 3.4-3.8c0-2.2-3.5-2-3.3-4.2.2-2.3 3-2 3.1-4.2.1-1.9-1.7-3-2.6-3.8h2.7l6.4.1c4.5 0 0 1 0 3.6 0 1.7 2.3 2.9 2.5 4.3 0 1.6-3.2 2.6-3.3 4.5 0 1.6 3.3 1.7 3.2 3.3-.2 2.5-3 3.1-3 4.7.1 1.5 3.7 2.1 3.7 3.3l-.5 60.8c-5.7 29.8-38.9 37.3-48.2-1.8z"/>
16
+ <path fill="#083d9c" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" d="M301.7 295.6H339c.3-.3-8.4-13-18.6-12-11.5.3-19.3 12-18.7 12zm118.9-1h-51s6.6-3.8 8.4-7.4c3.3 1.8 2.4 3.6 9 3.9 6.6.3 12.9-7.5 19.2-7.2 6.3.3 14.4 11 14.4 10.8zm-201 0h51s-6.6-3.8-8.4-7.4c-3.3 1.8-2.4 3.6-9 3.9-6.6.3-13-7.5-19.2-7.2-6.3.3-14.4 11-14.4 10.8zm3.8-16 36.3.3s-2.3-5-2.6-11.1c-9.4-3.2-17 7-23.8 7.3-6.7.3-13.7-7.3-13.7-7.3zm194 0-36.4.3s2.3-5 2.6-11.1c9.4-3.2 17 7 23.8 7.3 6.7.3 13.7-7.3 13.7-7.3zM311 279l18.4-.5s.3-5.6-9.3-5.6-8.8 6.4-9.1 6.1zm-11.2-7.9a17 17 0 0 0 8.2-7.6l-12.6.3s-5.8 3.5-8.7 7.3zm40.8 0a17 17 0 0 1-8.2-7.6l12.6.3s5.8 3.5 8.7 7.3z"/>
17
+ <path fill="#de2010" fill-rule="evenodd" d="M-40 360h720v120H-40zm0-360h720v120H-40z"/>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-pg" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#000001" d="m1.6 0-.5 480h640z"/>
4
+ <path fill="red" d="m640.6 480 .5-480H1.1z"/>
5
+ </g>
6
+ <path fill="#fc0" stroke="#fc0" stroke-width="1.1" d="m178 54-3.8-.2c-1.2-2.8-4.5-3.8-6.6-2.6A333 333 0 0 1 156 51l7.1 3.1C165 59 171 60 171 60c-.6 8.8-8.9-1.1-15.9 3.9-5 3-5 6.5-7.7 12.3-.9 1.6-4.4 5.8-4.4 5.8l5.9-.5L147 84l7-1-1.5 1.4c1 .2 8-1.7 8-1.7L160 85l8-2.9s1.6 1.3 3 1.9l1-4 4 1 1-4c6 8 8 16 19 18l-1-4a262.2 262.2 0 0 1 8.7 4l.9-1.7c4.8 3.4 8.7 3.3 11.4 3.7l-2-5 2 1-3-8 3 1-4-6 1.5-1-.5-3c6 2 14 5 15 12 1 11-11 14-19 13 6 5 17 3 22-2 2-2 3-5 4-8 1 3 3 7 3 11-1 9-13 12-21 13 9 5 25-1 26-14 0-11-7-16-10-21l-1-5.4 3 1.4s-1.8-3.3-2-4c0 0-3.1-8.5-4.2-10.4l2.2.4-8.2-10.3 2.3-.2S215.6 44 213 43l3-1c-6-3-13-1-19 3l1-3-1.8.2v-3.5L198 36l-3-1 2-5-3 1 1-5s-2.2 1-3.6.9a51.7 51.7 0 0 0 1.6-3.4c-1-1.5 0-4.5 0-4.5-7 1-8 2-12 8-6 11-4 16-3 27z" transform="matrix(2.21989 0 0 2.21194 1.1 0)"/>
7
+ <path fill="red" fill-rule="evenodd" stroke="red" stroke-width="1.4" d="M215.8 70.4c.5.9 6.2 3.6 10.4 6-1.1-4.6-9.4-5.6-10.4-6z" transform="matrix(2.21989 0 0 2.21194 1.1 0)"/>
8
+ <path fill="#fff" fill-rule="evenodd" d="m175 399-14.2-9-19 9.1 4.3-16.2-14.5-15.1 16.7-1 10-18.4 6.1 15.5 20.7 3.8-13 10.6zm36.2-79-6.6-3-6.3 3.6 1-7.2-5.4-4.9 7.1-1.3 3-6.6 3.5 6.4 7.2.8-5 5.2zm32-45.2-14.5-7-13.9 7.8 2.3-15.7-11.8-10.8 15.7-2.8 6.6-14.4 7.6 14 15.8 1.8-11 11.5zm-65.8-63-17-8.5-16.5 9.1 2.8-18.6-13.8-13 18.7-3 8-17 8.7 16.7 18.8 2.3-13.3 13.4zm-60.8 65.4-17-10-17 10.3 4.3-19.3-15.1-13 19.7-1.8 7.7-18.3 7.9 18.2 19.8 1.6-14.9 13z"/>
9
+ </svg>