@julseb-lib/react 0.0.63 → 0.0.65

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 (1348) hide show
  1. package/README.md +5 -5
  2. package/dist/@julseb-lib-react.cjs.js +1 -0
  3. package/dist/@julseb-lib-react.es.js +207 -0
  4. package/dist/@julseb-lib-react.umd.js +4148 -0
  5. package/dist/index-CaOLbx-Z.cjs +4142 -0
  6. package/dist/index-Cf_pM6lO.js +23319 -0
  7. package/dist/index.d.ts +1 -1
  8. package/dist/lib/Mixins.tsx +985 -0
  9. package/dist/lib/Variables.ts +296 -0
  10. package/dist/lib/components/Accordion/Accordion.tsx +86 -0
  11. package/dist/lib/components/Accordion/AccordionButton.tsx +72 -0
  12. package/dist/lib/components/Accordion/AccordionContent.tsx +27 -0
  13. package/dist/lib/components/Accordion/AccordionItem.tsx +70 -0
  14. package/dist/lib/components/Accordion/index.ts +4 -0
  15. package/dist/lib/components/Accordion/styles.tsx +165 -0
  16. package/dist/lib/components/Accordion/subtypes.ts +22 -0
  17. package/dist/lib/components/Accordion/types.ts +33 -0
  18. package/dist/lib/components/Alert/Alert.tsx +118 -0
  19. package/dist/lib/components/Alert/index.ts +3 -0
  20. package/dist/lib/components/Alert/styles.tsx +39 -0
  21. package/dist/lib/components/Alert/types.ts +33 -0
  22. package/dist/lib/components/Aside/Aside.tsx +42 -0
  23. package/dist/lib/components/Aside/index.ts +3 -0
  24. package/dist/lib/components/Aside/styles.tsx +46 -0
  25. package/dist/lib/components/Aside/types.ts +8 -0
  26. package/dist/lib/components/Autocomplete/Autocomplete.tsx +352 -0
  27. package/dist/lib/components/Autocomplete/index.ts +3 -0
  28. package/dist/lib/components/Autocomplete/styles.tsx +13 -0
  29. package/dist/lib/components/Autocomplete/types.ts +42 -0
  30. package/dist/lib/components/Avatar/Avatar.tsx +143 -0
  31. package/dist/lib/components/Avatar/AvatarFunction.tsx +136 -0
  32. package/dist/lib/components/Avatar/index.ts +3 -0
  33. package/dist/lib/components/Avatar/styles.tsx +117 -0
  34. package/dist/lib/components/Avatar/types.ts +86 -0
  35. package/dist/lib/components/BackToTop/BackToTop.tsx +101 -0
  36. package/dist/lib/components/BackToTop/index.ts +3 -0
  37. package/dist/lib/components/BackToTop/styles.tsx +35 -0
  38. package/dist/lib/components/BackToTop/types.ts +8 -0
  39. package/dist/lib/components/Badge/Badge.tsx +94 -0
  40. package/dist/lib/components/Badge/index.ts +3 -0
  41. package/dist/lib/components/Badge/styles.tsx +41 -0
  42. package/dist/lib/components/Badge/types.ts +34 -0
  43. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +42 -0
  44. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +52 -0
  45. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +76 -0
  46. package/dist/lib/components/Breadcrumbs/index.ts +3 -0
  47. package/dist/lib/components/Breadcrumbs/styles.tsx +64 -0
  48. package/dist/lib/components/Breadcrumbs/subtypes.ts +12 -0
  49. package/dist/lib/components/Breadcrumbs/types.ts +31 -0
  50. package/dist/lib/components/Burger/Burger.tsx +59 -0
  51. package/dist/lib/components/Burger/index.ts +3 -0
  52. package/dist/lib/components/Burger/styles.tsx +93 -0
  53. package/dist/lib/components/Burger/types.ts +13 -0
  54. package/dist/lib/components/Button/Button.tsx +134 -0
  55. package/dist/lib/components/Button/index.ts +3 -0
  56. package/dist/lib/components/Button/styles.tsx +32 -0
  57. package/dist/lib/components/Button/subtypes.ts +12 -0
  58. package/dist/lib/components/Button/types.ts +72 -0
  59. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +158 -0
  60. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +89 -0
  61. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +99 -0
  62. package/dist/lib/components/ButtonGroup/index.ts +3 -0
  63. package/dist/lib/components/ButtonGroup/styles.tsx +91 -0
  64. package/dist/lib/components/ButtonGroup/subtypes.ts +42 -0
  65. package/dist/lib/components/ButtonGroup/types.ts +36 -0
  66. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +95 -0
  67. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +139 -0
  68. package/dist/lib/components/ButtonIcon/index.ts +3 -0
  69. package/dist/lib/components/ButtonIcon/styles.tsx +31 -0
  70. package/dist/lib/components/ButtonIcon/subtypes.ts +12 -0
  71. package/dist/lib/components/ButtonIcon/types.ts +90 -0
  72. package/dist/lib/components/Card/Card.tsx +133 -0
  73. package/dist/lib/components/Card/index.ts +3 -0
  74. package/dist/lib/components/Card/styles.tsx +75 -0
  75. package/dist/lib/components/Card/types.ts +29 -0
  76. package/dist/lib/components/CodeContainer/CodeContainer.tsx +135 -0
  77. package/dist/lib/components/CodeContainer/index.ts +3 -0
  78. package/dist/lib/components/CodeContainer/styles.tsx +65 -0
  79. package/dist/lib/components/CodeContainer/types.ts +235 -0
  80. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +441 -0
  81. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +81 -0
  82. package/dist/lib/components/ComponentsMixins/index.ts +5 -0
  83. package/dist/lib/components/ComponentsMixins/types.ts +37 -0
  84. package/dist/lib/components/Cover/Cover.tsx +72 -0
  85. package/dist/lib/components/Cover/index.ts +3 -0
  86. package/dist/lib/components/Cover/styles.tsx +80 -0
  87. package/dist/lib/components/Cover/types.ts +14 -0
  88. package/dist/lib/components/Datepicker/Calendar.tsx +395 -0
  89. package/dist/lib/components/Datepicker/Datepicker.tsx +254 -0
  90. package/dist/lib/components/Datepicker/data.ts +33 -0
  91. package/dist/lib/components/Datepicker/index.ts +3 -0
  92. package/dist/lib/components/Datepicker/styles.tsx +456 -0
  93. package/dist/lib/components/Datepicker/types.ts +68 -0
  94. package/dist/lib/components/DragList/DragList.tsx +127 -0
  95. package/dist/lib/components/DragList/DragListItem.tsx +191 -0
  96. package/dist/lib/components/DragList/index.ts +4 -0
  97. package/dist/lib/components/DragList/styles.tsx +75 -0
  98. package/dist/lib/components/DragList/types.ts +65 -0
  99. package/dist/lib/components/Drawer/Drawer.tsx +110 -0
  100. package/dist/lib/components/Drawer/index.ts +3 -0
  101. package/dist/lib/components/Drawer/styles.tsx +136 -0
  102. package/dist/lib/components/Drawer/types.ts +28 -0
  103. package/dist/lib/components/Dropdown/Dropdown.tsx +89 -0
  104. package/dist/lib/components/Dropdown/DropdownContainer.tsx +39 -0
  105. package/dist/lib/components/Dropdown/DropdownItem.tsx +97 -0
  106. package/dist/lib/components/Dropdown/index.ts +5 -0
  107. package/dist/lib/components/Dropdown/styles.tsx +156 -0
  108. package/dist/lib/components/Dropdown/types.ts +71 -0
  109. package/dist/lib/components/Fade/Fade.tsx +42 -0
  110. package/dist/lib/components/Fade/index.ts +3 -0
  111. package/dist/lib/components/Fade/styles.tsx +19 -0
  112. package/dist/lib/components/Fade/types.ts +5 -0
  113. package/dist/lib/components/Fallback/Fallback.tsx +37 -0
  114. package/dist/lib/components/Fallback/index.ts +3 -0
  115. package/dist/lib/components/Fieldset/Fieldset.tsx +107 -0
  116. package/dist/lib/components/Fieldset/index.ts +3 -0
  117. package/dist/lib/components/Fieldset/styles.tsx +50 -0
  118. package/dist/lib/components/Fieldset/types.ts +34 -0
  119. package/dist/lib/components/Flexbox/Flexbox.tsx +69 -0
  120. package/dist/lib/components/Flexbox/index.ts +3 -0
  121. package/dist/lib/components/Flexbox/styles.tsx +34 -0
  122. package/dist/lib/components/Flexbox/types.ts +27 -0
  123. package/dist/lib/components/Footer/Footer.tsx +106 -0
  124. package/dist/lib/components/Footer/FooterLink.tsx +31 -0
  125. package/dist/lib/components/Footer/FooterLogo.tsx +30 -0
  126. package/dist/lib/components/Footer/index.ts +3 -0
  127. package/dist/lib/components/Footer/styles.tsx +126 -0
  128. package/dist/lib/components/Footer/subtypes.ts +14 -0
  129. package/dist/lib/components/Footer/types.ts +76 -0
  130. package/dist/lib/components/Form/Form.tsx +148 -0
  131. package/dist/lib/components/Form/index.ts +3 -0
  132. package/dist/lib/components/Form/styles.tsx +24 -0
  133. package/dist/lib/components/Form/types.ts +32 -0
  134. package/dist/lib/components/FullBleed/FullBleed.tsx +45 -0
  135. package/dist/lib/components/FullBleed/index.ts +3 -0
  136. package/dist/lib/components/FullBleed/styles.tsx +32 -0
  137. package/dist/lib/components/FullBleed/types.ts +9 -0
  138. package/dist/lib/components/Grid/Grid.tsx +66 -0
  139. package/dist/lib/components/Grid/index.ts +3 -0
  140. package/dist/lib/components/Grid/styles.tsx +31 -0
  141. package/dist/lib/components/Grid/types.ts +24 -0
  142. package/dist/lib/components/Header/Header.tsx +212 -0
  143. package/dist/lib/components/Header/HeaderBurger.tsx +59 -0
  144. package/dist/lib/components/Header/HeaderLogo.tsx +65 -0
  145. package/dist/lib/components/Header/HeaderNav.tsx +82 -0
  146. package/dist/lib/components/Header/HeaderNavLink.tsx +32 -0
  147. package/dist/lib/components/Header/HeaderSearch.tsx +83 -0
  148. package/dist/lib/components/Header/index.ts +3 -0
  149. package/dist/lib/components/Header/styles.tsx +352 -0
  150. package/dist/lib/components/Header/subtypes.ts +86 -0
  151. package/dist/lib/components/Header/types.ts +91 -0
  152. package/dist/lib/components/Helmet/Helmet.tsx +67 -0
  153. package/dist/lib/components/Helmet/index.ts +3 -0
  154. package/dist/lib/components/Helmet/types.ts +17 -0
  155. package/dist/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/dist/lib/components/Highlight/index.ts +3 -0
  157. package/dist/lib/components/Highlight/types.ts +11 -0
  158. package/dist/lib/components/Hr/Hr.tsx +50 -0
  159. package/dist/lib/components/Hr/index.ts +3 -0
  160. package/dist/lib/components/Hr/styles.tsx +29 -0
  161. package/dist/lib/components/Hr/types.ts +12 -0
  162. package/dist/lib/components/Icon/Icon.tsx +42 -0
  163. package/dist/lib/components/Icon/index.ts +3 -0
  164. package/dist/lib/components/Icon/styles.tsx +21 -0
  165. package/dist/lib/components/Icon/types.ts +13 -0
  166. package/dist/lib/components/IconMenu/IconMenu.tsx +157 -0
  167. package/dist/lib/components/IconMenu/IconMenuItem.tsx +74 -0
  168. package/dist/lib/components/IconMenu/index.ts +4 -0
  169. package/dist/lib/components/IconMenu/styles.tsx +116 -0
  170. package/dist/lib/components/IconMenu/types.ts +56 -0
  171. package/dist/lib/components/Image/Image.tsx +106 -0
  172. package/dist/lib/components/Image/ImageFunction.tsx +53 -0
  173. package/dist/lib/components/Image/index.ts +3 -0
  174. package/dist/lib/components/Image/styles.tsx +87 -0
  175. package/dist/lib/components/Image/types.ts +48 -0
  176. package/dist/lib/components/Input/Input.tsx +189 -0
  177. package/dist/lib/components/Input/index.ts +3 -0
  178. package/dist/lib/components/Input/styles.tsx +41 -0
  179. package/dist/lib/components/Input/subtypes.ts +186 -0
  180. package/dist/lib/components/Input/templates/ColorInput.tsx +40 -0
  181. package/dist/lib/components/Input/templates/DateInput.tsx +127 -0
  182. package/dist/lib/components/Input/templates/FileInput.tsx +61 -0
  183. package/dist/lib/components/Input/templates/PasswordInput.tsx +197 -0
  184. package/dist/lib/components/Input/templates/SearchInput.tsx +140 -0
  185. package/dist/lib/components/Input/templates/SelectInput.tsx +116 -0
  186. package/dist/lib/components/Input/templates/TextInput.tsx +116 -0
  187. package/dist/lib/components/Input/templates/TextareaInput.tsx +43 -0
  188. package/dist/lib/components/Input/templates/TimeInput.tsx +126 -0
  189. package/dist/lib/components/Input/types.ts +24 -0
  190. package/dist/lib/components/InputCheck/InputCheck.tsx +138 -0
  191. package/dist/lib/components/InputCheck/index.ts +3 -0
  192. package/dist/lib/components/InputCheck/styles.tsx +284 -0
  193. package/dist/lib/components/InputCheck/types.ts +35 -0
  194. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +51 -0
  195. package/dist/lib/components/InputComponents/components/InputButton.tsx +62 -0
  196. package/dist/lib/components/InputComponents/components/InputContainer.tsx +70 -0
  197. package/dist/lib/components/InputComponents/components/InputIcon.tsx +51 -0
  198. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +29 -0
  199. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +31 -0
  200. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +35 -0
  201. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +31 -0
  202. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +98 -0
  203. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +66 -0
  204. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +46 -0
  205. package/dist/lib/components/InputComponents/components/ListInput.tsx +51 -0
  206. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +56 -0
  207. package/dist/lib/components/InputComponents/index.ts +15 -0
  208. package/dist/lib/components/InputComponents/styles.tsx +738 -0
  209. package/dist/lib/components/InputComponents/types.ts +289 -0
  210. package/dist/lib/components/InputContainer/HelperBottom.tsx +96 -0
  211. package/dist/lib/components/InputContainer/InputContainer.tsx +132 -0
  212. package/dist/lib/components/InputContainer/index.ts +3 -0
  213. package/dist/lib/components/InputContainer/styles.tsx +89 -0
  214. package/dist/lib/components/InputContainer/subtypes.ts +10 -0
  215. package/dist/lib/components/InputContainer/types.ts +25 -0
  216. package/dist/lib/components/InputCounter/InputCounter.tsx +287 -0
  217. package/dist/lib/components/InputCounter/index.ts +3 -0
  218. package/dist/lib/components/InputCounter/styles.tsx +53 -0
  219. package/dist/lib/components/InputCounter/subtypes.ts +9 -0
  220. package/dist/lib/components/InputCounter/types.ts +51 -0
  221. package/dist/lib/components/InputImage/EmptyContainer.tsx +41 -0
  222. package/dist/lib/components/InputImage/HoverContainer.tsx +48 -0
  223. package/dist/lib/components/InputImage/InputImage.tsx +151 -0
  224. package/dist/lib/components/InputImage/index.ts +3 -0
  225. package/dist/lib/components/InputImage/styles.tsx +115 -0
  226. package/dist/lib/components/InputImage/subtypes.ts +30 -0
  227. package/dist/lib/components/InputImage/types.ts +25 -0
  228. package/dist/lib/components/InputPhone/InputPhone.tsx +386 -0
  229. package/dist/lib/components/InputPhone/index.ts +3 -0
  230. package/dist/lib/components/InputPhone/styles.tsx +219 -0
  231. package/dist/lib/components/InputPhone/types.ts +35 -0
  232. package/dist/lib/components/InputPhone/utils/countries.ts +648 -0
  233. package/dist/lib/components/InputPhone/utils/flags/ac.svg +76 -0
  234. package/dist/lib/components/InputPhone/utils/flags/ad.svg +150 -0
  235. package/dist/lib/components/InputPhone/utils/flags/ae.svg +6 -0
  236. package/dist/lib/components/InputPhone/utils/flags/af.svg +81 -0
  237. package/dist/lib/components/InputPhone/utils/flags/ag.svg +14 -0
  238. package/dist/lib/components/InputPhone/utils/flags/ai.svg +758 -0
  239. package/dist/lib/components/InputPhone/utils/flags/al.svg +5 -0
  240. package/dist/lib/components/InputPhone/utils/flags/am.svg +5 -0
  241. package/dist/lib/components/InputPhone/utils/flags/ao.svg +13 -0
  242. package/dist/lib/components/InputPhone/utils/flags/aq.svg +5 -0
  243. package/dist/lib/components/InputPhone/utils/flags/ar.svg +32 -0
  244. package/dist/lib/components/InputPhone/utils/flags/as.svg +72 -0
  245. package/dist/lib/components/InputPhone/utils/flags/at.svg +6 -0
  246. package/dist/lib/components/InputPhone/utils/flags/au.svg +8 -0
  247. package/dist/lib/components/InputPhone/utils/flags/aw.svg +186 -0
  248. package/dist/lib/components/InputPhone/utils/flags/ax.svg +18 -0
  249. package/dist/lib/components/InputPhone/utils/flags/az.svg +8 -0
  250. package/dist/lib/components/InputPhone/utils/flags/ba.svg +12 -0
  251. package/dist/lib/components/InputPhone/utils/flags/bb.svg +6 -0
  252. package/dist/lib/components/InputPhone/utils/flags/bd.svg +4 -0
  253. package/dist/lib/components/InputPhone/utils/flags/be.svg +7 -0
  254. package/dist/lib/components/InputPhone/utils/flags/bf.svg +7 -0
  255. package/dist/lib/components/InputPhone/utils/flags/bg.svg +7 -0
  256. package/dist/lib/components/InputPhone/utils/flags/bh.svg +4 -0
  257. package/dist/lib/components/InputPhone/utils/flags/bi.svg +15 -0
  258. package/dist/lib/components/InputPhone/utils/flags/bj.svg +14 -0
  259. package/dist/lib/components/InputPhone/utils/flags/bl.svg +7 -0
  260. package/dist/lib/components/InputPhone/utils/flags/bm.svg +97 -0
  261. package/dist/lib/components/InputPhone/utils/flags/bn.svg +36 -0
  262. package/dist/lib/components/InputPhone/utils/flags/bo.svg +676 -0
  263. package/dist/lib/components/InputPhone/utils/flags/bq.svg +5 -0
  264. package/dist/lib/components/InputPhone/utils/flags/br.svg +45 -0
  265. package/dist/lib/components/InputPhone/utils/flags/bs.svg +13 -0
  266. package/dist/lib/components/InputPhone/utils/flags/bt.svg +89 -0
  267. package/dist/lib/components/InputPhone/utils/flags/bv.svg +13 -0
  268. package/dist/lib/components/InputPhone/utils/flags/bw.svg +7 -0
  269. package/dist/lib/components/InputPhone/utils/flags/by.svg +20 -0
  270. package/dist/lib/components/InputPhone/utils/flags/bz.svg +145 -0
  271. package/dist/lib/components/InputPhone/utils/flags/ca.svg +4 -0
  272. package/dist/lib/components/InputPhone/utils/flags/cc.svg +19 -0
  273. package/dist/lib/components/InputPhone/utils/flags/cd.svg +5 -0
  274. package/dist/lib/components/InputPhone/utils/flags/cefta.svg +13 -0
  275. package/dist/lib/components/InputPhone/utils/flags/cf.svg +15 -0
  276. package/dist/lib/components/InputPhone/utils/flags/cg.svg +12 -0
  277. package/dist/lib/components/InputPhone/utils/flags/ch.svg +9 -0
  278. package/dist/lib/components/InputPhone/utils/flags/ci.svg +7 -0
  279. package/dist/lib/components/InputPhone/utils/flags/ck.svg +9 -0
  280. package/dist/lib/components/InputPhone/utils/flags/cl.svg +13 -0
  281. package/dist/lib/components/InputPhone/utils/flags/cm.svg +15 -0
  282. package/dist/lib/components/InputPhone/utils/flags/cn.svg +11 -0
  283. package/dist/lib/components/InputPhone/utils/flags/co.svg +7 -0
  284. package/dist/lib/components/InputPhone/utils/flags/cp.svg +7 -0
  285. package/dist/lib/components/InputPhone/utils/flags/cr.svg +7 -0
  286. package/dist/lib/components/InputPhone/utils/flags/cu.svg +13 -0
  287. package/dist/lib/components/InputPhone/utils/flags/cv.svg +13 -0
  288. package/dist/lib/components/InputPhone/utils/flags/cw.svg +14 -0
  289. package/dist/lib/components/InputPhone/utils/flags/cx.svg +15 -0
  290. package/dist/lib/components/InputPhone/utils/flags/cy.svg +6 -0
  291. package/dist/lib/components/InputPhone/utils/flags/cz.svg +5 -0
  292. package/dist/lib/components/InputPhone/utils/flags/de.svg +5 -0
  293. package/dist/lib/components/InputPhone/utils/flags/dg.svg +129 -0
  294. package/dist/lib/components/InputPhone/utils/flags/dj.svg +13 -0
  295. package/dist/lib/components/InputPhone/utils/flags/dk.svg +5 -0
  296. package/dist/lib/components/InputPhone/utils/flags/dm.svg +152 -0
  297. package/dist/lib/components/InputPhone/utils/flags/do.svg +6745 -0
  298. package/dist/lib/components/InputPhone/utils/flags/dz.svg +5 -0
  299. package/dist/lib/components/InputPhone/utils/flags/ea.svg +544 -0
  300. package/dist/lib/components/InputPhone/utils/flags/ec.svg +138 -0
  301. package/dist/lib/components/InputPhone/utils/flags/ee.svg +7 -0
  302. package/dist/lib/components/InputPhone/utils/flags/eg.svg +38 -0
  303. package/dist/lib/components/InputPhone/utils/flags/eh.svg +16 -0
  304. package/dist/lib/components/InputPhone/utils/flags/er.svg +8 -0
  305. package/dist/lib/components/InputPhone/utils/flags/es-ct.svg +4 -0
  306. package/dist/lib/components/InputPhone/utils/flags/es-ga.svg +187 -0
  307. package/dist/lib/components/InputPhone/utils/flags/es.svg +544 -0
  308. package/dist/lib/components/InputPhone/utils/flags/et.svg +14 -0
  309. package/dist/lib/components/InputPhone/utils/flags/eu.svg +28 -0
  310. package/dist/lib/components/InputPhone/utils/flags/fi.svg +5 -0
  311. package/dist/lib/components/InputPhone/utils/flags/fj.svg +120 -0
  312. package/dist/lib/components/InputPhone/utils/flags/fk.svg +90 -0
  313. package/dist/lib/components/InputPhone/utils/flags/fm.svg +11 -0
  314. package/dist/lib/components/InputPhone/utils/flags/fo.svg +12 -0
  315. package/dist/lib/components/InputPhone/utils/flags/fr.svg +7 -0
  316. package/dist/lib/components/InputPhone/utils/flags/ga.svg +7 -0
  317. package/dist/lib/components/InputPhone/utils/flags/gb-eng.svg +5 -0
  318. package/dist/lib/components/InputPhone/utils/flags/gb-nir.svg +132 -0
  319. package/dist/lib/components/InputPhone/utils/flags/gb-sct.svg +4 -0
  320. package/dist/lib/components/InputPhone/utils/flags/gb-wls.svg +9 -0
  321. package/dist/lib/components/InputPhone/utils/flags/gb.svg +7 -0
  322. package/dist/lib/components/InputPhone/utils/flags/gd.svg +27 -0
  323. package/dist/lib/components/InputPhone/utils/flags/ge.svg +6 -0
  324. package/dist/lib/components/InputPhone/utils/flags/gf.svg +7 -0
  325. package/dist/lib/components/InputPhone/utils/flags/gg.svg +9 -0
  326. package/dist/lib/components/InputPhone/utils/flags/gh.svg +6 -0
  327. package/dist/lib/components/InputPhone/utils/flags/gi.svg +32 -0
  328. package/dist/lib/components/InputPhone/utils/flags/gl.svg +4 -0
  329. package/dist/lib/components/InputPhone/utils/flags/gm.svg +14 -0
  330. package/dist/lib/components/InputPhone/utils/flags/gn.svg +7 -0
  331. package/dist/lib/components/InputPhone/utils/flags/gp.svg +7 -0
  332. package/dist/lib/components/InputPhone/utils/flags/gq.svg +23 -0
  333. package/dist/lib/components/InputPhone/utils/flags/gr.svg +16 -0
  334. package/dist/lib/components/InputPhone/utils/flags/gs.svg +133 -0
  335. package/dist/lib/components/InputPhone/utils/flags/gt.svg +220 -0
  336. package/dist/lib/components/InputPhone/utils/flags/gu.svg +23 -0
  337. package/dist/lib/components/InputPhone/utils/flags/gw.svg +13 -0
  338. package/dist/lib/components/InputPhone/utils/flags/gy.svg +9 -0
  339. package/dist/lib/components/InputPhone/utils/flags/hk.svg +30 -0
  340. package/dist/lib/components/InputPhone/utils/flags/hm.svg +8 -0
  341. package/dist/lib/components/InputPhone/utils/flags/hn.svg +18 -0
  342. package/dist/lib/components/InputPhone/utils/flags/hr.svg +58 -0
  343. package/dist/lib/components/InputPhone/utils/flags/ht.svg +116 -0
  344. package/dist/lib/components/InputPhone/utils/flags/hu.svg +7 -0
  345. package/dist/lib/components/InputPhone/utils/flags/ic.svg +7 -0
  346. package/dist/lib/components/InputPhone/utils/flags/id.svg +4 -0
  347. package/dist/lib/components/InputPhone/utils/flags/ie.svg +7 -0
  348. package/dist/lib/components/InputPhone/utils/flags/il.svg +14 -0
  349. package/dist/lib/components/InputPhone/utils/flags/im.svg +36 -0
  350. package/dist/lib/components/InputPhone/utils/flags/in.svg +25 -0
  351. package/dist/lib/components/InputPhone/utils/flags/io.svg +129 -0
  352. package/dist/lib/components/InputPhone/utils/flags/iq.svg +10 -0
  353. package/dist/lib/components/InputPhone/utils/flags/ir.svg +219 -0
  354. package/dist/lib/components/InputPhone/utils/flags/is.svg +12 -0
  355. package/dist/lib/components/InputPhone/utils/flags/it.svg +7 -0
  356. package/dist/lib/components/InputPhone/utils/flags/je.svg +45 -0
  357. package/dist/lib/components/InputPhone/utils/flags/jm.svg +8 -0
  358. package/dist/lib/components/InputPhone/utils/flags/jo.svg +16 -0
  359. package/dist/lib/components/InputPhone/utils/flags/jp.svg +11 -0
  360. package/dist/lib/components/InputPhone/utils/flags/ke.svg +23 -0
  361. package/dist/lib/components/InputPhone/utils/flags/kg.svg +15 -0
  362. package/dist/lib/components/InputPhone/utils/flags/kh.svg +61 -0
  363. package/dist/lib/components/InputPhone/utils/flags/ki.svg +36 -0
  364. package/dist/lib/components/InputPhone/utils/flags/km.svg +16 -0
  365. package/dist/lib/components/InputPhone/utils/flags/kn.svg +14 -0
  366. package/dist/lib/components/InputPhone/utils/flags/kp.svg +15 -0
  367. package/dist/lib/components/InputPhone/utils/flags/kr.svg +24 -0
  368. package/dist/lib/components/InputPhone/utils/flags/kw.svg +13 -0
  369. package/dist/lib/components/InputPhone/utils/flags/ky.svg +109 -0
  370. package/dist/lib/components/InputPhone/utils/flags/kz.svg +23 -0
  371. package/dist/lib/components/InputPhone/utils/flags/la.svg +12 -0
  372. package/dist/lib/components/InputPhone/utils/flags/lb.svg +15 -0
  373. package/dist/lib/components/InputPhone/utils/flags/lc.svg +8 -0
  374. package/dist/lib/components/InputPhone/utils/flags/li.svg +43 -0
  375. package/dist/lib/components/InputPhone/utils/flags/lk.svg +22 -0
  376. package/dist/lib/components/InputPhone/utils/flags/lr.svg +14 -0
  377. package/dist/lib/components/InputPhone/utils/flags/ls.svg +8 -0
  378. package/dist/lib/components/InputPhone/utils/flags/lt.svg +7 -0
  379. package/dist/lib/components/InputPhone/utils/flags/lu.svg +5 -0
  380. package/dist/lib/components/InputPhone/utils/flags/lv.svg +6 -0
  381. package/dist/lib/components/InputPhone/utils/flags/ly.svg +13 -0
  382. package/dist/lib/components/InputPhone/utils/flags/ma.svg +4 -0
  383. package/dist/lib/components/InputPhone/utils/flags/mc.svg +6 -0
  384. package/dist/lib/components/InputPhone/utils/flags/md.svg +70 -0
  385. package/dist/lib/components/InputPhone/utils/flags/me.svg +116 -0
  386. package/dist/lib/components/InputPhone/utils/flags/mf.svg +7 -0
  387. package/dist/lib/components/InputPhone/utils/flags/mg.svg +7 -0
  388. package/dist/lib/components/InputPhone/utils/flags/mh.svg +7 -0
  389. package/dist/lib/components/InputPhone/utils/flags/mk.svg +5 -0
  390. package/dist/lib/components/InputPhone/utils/flags/ml.svg +7 -0
  391. package/dist/lib/components/InputPhone/utils/flags/mm.svg +12 -0
  392. package/dist/lib/components/InputPhone/utils/flags/mn.svg +14 -0
  393. package/dist/lib/components/InputPhone/utils/flags/mo.svg +9 -0
  394. package/dist/lib/components/InputPhone/utils/flags/mp.svg +86 -0
  395. package/dist/lib/components/InputPhone/utils/flags/mq.svg +7 -0
  396. package/dist/lib/components/InputPhone/utils/flags/mr.svg +6 -0
  397. package/dist/lib/components/InputPhone/utils/flags/ms.svg +33 -0
  398. package/dist/lib/components/InputPhone/utils/flags/mt.svg +49 -0
  399. package/dist/lib/components/InputPhone/utils/flags/mu.svg +8 -0
  400. package/dist/lib/components/InputPhone/utils/flags/mv.svg +6 -0
  401. package/dist/lib/components/InputPhone/utils/flags/mw.svg +10 -0
  402. package/dist/lib/components/InputPhone/utils/flags/mx.svg +382 -0
  403. package/dist/lib/components/InputPhone/utils/flags/my.svg +7 -0
  404. package/dist/lib/components/InputPhone/utils/flags/mz.svg +21 -0
  405. package/dist/lib/components/InputPhone/utils/flags/na.svg +16 -0
  406. package/dist/lib/components/InputPhone/utils/flags/nc.svg +13 -0
  407. package/dist/lib/components/InputPhone/utils/flags/ne.svg +6 -0
  408. package/dist/lib/components/InputPhone/utils/flags/nf.svg +9 -0
  409. package/dist/lib/components/InputPhone/utils/flags/ng.svg +6 -0
  410. package/dist/lib/components/InputPhone/utils/flags/ni.svg +129 -0
  411. package/dist/lib/components/InputPhone/utils/flags/nl.svg +5 -0
  412. package/dist/lib/components/InputPhone/utils/flags/no.svg +7 -0
  413. package/dist/lib/components/InputPhone/utils/flags/np.svg +14 -0
  414. package/dist/lib/components/InputPhone/utils/flags/nr.svg +12 -0
  415. package/dist/lib/components/InputPhone/utils/flags/nu.svg +10 -0
  416. package/dist/lib/components/InputPhone/utils/flags/nz.svg +36 -0
  417. package/dist/lib/components/InputPhone/utils/flags/om.svg +115 -0
  418. package/dist/lib/components/InputPhone/utils/flags/pa.svg +14 -0
  419. package/dist/lib/components/InputPhone/utils/flags/pe.svg +244 -0
  420. package/dist/lib/components/InputPhone/utils/flags/pf.svg +19 -0
  421. package/dist/lib/components/InputPhone/utils/flags/pg.svg +9 -0
  422. package/dist/lib/components/InputPhone/utils/flags/ph.svg +6 -0
  423. package/dist/lib/components/InputPhone/utils/flags/pk.svg +15 -0
  424. package/dist/lib/components/InputPhone/utils/flags/pl.svg +6 -0
  425. package/dist/lib/components/InputPhone/utils/flags/pm.svg +7 -0
  426. package/dist/lib/components/InputPhone/utils/flags/pn.svg +53 -0
  427. package/dist/lib/components/InputPhone/utils/flags/pr.svg +13 -0
  428. package/dist/lib/components/InputPhone/utils/flags/ps.svg +15 -0
  429. package/dist/lib/components/InputPhone/utils/flags/pt.svg +57 -0
  430. package/dist/lib/components/InputPhone/utils/flags/pw.svg +11 -0
  431. package/dist/lib/components/InputPhone/utils/flags/py.svg +157 -0
  432. package/dist/lib/components/InputPhone/utils/flags/qa.svg +4 -0
  433. package/dist/lib/components/InputPhone/utils/flags/re.svg +7 -0
  434. package/dist/lib/components/InputPhone/utils/flags/ro.svg +7 -0
  435. package/dist/lib/components/InputPhone/utils/flags/rs.svg +292 -0
  436. package/dist/lib/components/InputPhone/utils/flags/ru.svg +7 -0
  437. package/dist/lib/components/InputPhone/utils/flags/rw.svg +13 -0
  438. package/dist/lib/components/InputPhone/utils/flags/sa.svg +26 -0
  439. package/dist/lib/components/InputPhone/utils/flags/sb.svg +13 -0
  440. package/dist/lib/components/InputPhone/utils/flags/sc.svg +7 -0
  441. package/dist/lib/components/InputPhone/utils/flags/sd.svg +13 -0
  442. package/dist/lib/components/InputPhone/utils/flags/se.svg +4 -0
  443. package/dist/lib/components/InputPhone/utils/flags/sg.svg +13 -0
  444. package/dist/lib/components/InputPhone/utils/flags/sh.svg +76 -0
  445. package/dist/lib/components/InputPhone/utils/flags/si.svg +18 -0
  446. package/dist/lib/components/InputPhone/utils/flags/sj.svg +7 -0
  447. package/dist/lib/components/InputPhone/utils/flags/sk.svg +9 -0
  448. package/dist/lib/components/InputPhone/utils/flags/sl.svg +7 -0
  449. package/dist/lib/components/InputPhone/utils/flags/sm.svg +75 -0
  450. package/dist/lib/components/InputPhone/utils/flags/sn.svg +8 -0
  451. package/dist/lib/components/InputPhone/utils/flags/so.svg +11 -0
  452. package/dist/lib/components/InputPhone/utils/flags/sr.svg +6 -0
  453. package/dist/lib/components/InputPhone/utils/flags/ss.svg +8 -0
  454. package/dist/lib/components/InputPhone/utils/flags/st.svg +16 -0
  455. package/dist/lib/components/InputPhone/utils/flags/sv.svg +594 -0
  456. package/dist/lib/components/InputPhone/utils/flags/sx.svg +56 -0
  457. package/dist/lib/components/InputPhone/utils/flags/sy.svg +6 -0
  458. package/dist/lib/components/InputPhone/utils/flags/sz.svg +34 -0
  459. package/dist/lib/components/InputPhone/utils/flags/ta.svg +76 -0
  460. package/dist/lib/components/InputPhone/utils/flags/tc.svg +50 -0
  461. package/dist/lib/components/InputPhone/utils/flags/td.svg +7 -0
  462. package/dist/lib/components/InputPhone/utils/flags/tf.svg +15 -0
  463. package/dist/lib/components/InputPhone/utils/flags/tg.svg +14 -0
  464. package/dist/lib/components/InputPhone/utils/flags/th.svg +7 -0
  465. package/dist/lib/components/InputPhone/utils/flags/tj.svg +22 -0
  466. package/dist/lib/components/InputPhone/utils/flags/tk.svg +5 -0
  467. package/dist/lib/components/InputPhone/utils/flags/tl.svg +13 -0
  468. package/dist/lib/components/InputPhone/utils/flags/tm.svg +205 -0
  469. package/dist/lib/components/InputPhone/utils/flags/tn.svg +13 -0
  470. package/dist/lib/components/InputPhone/utils/flags/to.svg +10 -0
  471. package/dist/lib/components/InputPhone/utils/flags/tr.svg +8 -0
  472. package/dist/lib/components/InputPhone/utils/flags/tt.svg +5 -0
  473. package/dist/lib/components/InputPhone/utils/flags/tv.svg +9 -0
  474. package/dist/lib/components/InputPhone/utils/flags/tw.svg +34 -0
  475. package/dist/lib/components/InputPhone/utils/flags/tz.svg +13 -0
  476. package/dist/lib/components/InputPhone/utils/flags/ua.svg +6 -0
  477. package/dist/lib/components/InputPhone/utils/flags/ug.svg +30 -0
  478. package/dist/lib/components/InputPhone/utils/flags/um.svg +15 -0
  479. package/dist/lib/components/InputPhone/utils/flags/un.svg +16 -0
  480. package/dist/lib/components/InputPhone/utils/flags/us.svg +10 -0
  481. package/dist/lib/components/InputPhone/utils/flags/uy.svg +28 -0
  482. package/dist/lib/components/InputPhone/utils/flags/uz.svg +30 -0
  483. package/dist/lib/components/InputPhone/utils/flags/va.svg +479 -0
  484. package/dist/lib/components/InputPhone/utils/flags/vc.svg +8 -0
  485. package/dist/lib/components/InputPhone/utils/flags/ve.svg +26 -0
  486. package/dist/lib/components/InputPhone/utils/flags/vg.svg +63 -0
  487. package/dist/lib/components/InputPhone/utils/flags/vi.svg +28 -0
  488. package/dist/lib/components/InputPhone/utils/flags/vn.svg +11 -0
  489. package/dist/lib/components/InputPhone/utils/flags/vu.svg +21 -0
  490. package/dist/lib/components/InputPhone/utils/flags/wf.svg +7 -0
  491. package/dist/lib/components/InputPhone/utils/flags/ws.svg +7 -0
  492. package/dist/lib/components/InputPhone/utils/flags/xk.svg +8 -0
  493. package/dist/lib/components/InputPhone/utils/flags/xx.svg +4 -0
  494. package/dist/lib/components/InputPhone/utils/flags/ye.svg +7 -0
  495. package/dist/lib/components/InputPhone/utils/flags/yt.svg +7 -0
  496. package/dist/lib/components/InputPhone/utils/flags/za.svg +17 -0
  497. package/dist/lib/components/InputPhone/utils/flags/zm.svg +27 -0
  498. package/dist/lib/components/InputPhone/utils/flags/zw.svg +21 -0
  499. package/dist/lib/components/InputPin/InputPin.tsx +138 -0
  500. package/dist/lib/components/InputPin/index.ts +3 -0
  501. package/dist/lib/components/InputPin/styles.tsx +70 -0
  502. package/dist/lib/components/InputPin/subtypes.ts +11 -0
  503. package/dist/lib/components/InputPin/types.ts +31 -0
  504. package/dist/lib/components/InputSlider/InputSlider.tsx +184 -0
  505. package/dist/lib/components/InputSlider/Slider.tsx +52 -0
  506. package/dist/lib/components/InputSlider/index.ts +3 -0
  507. package/dist/lib/components/InputSlider/styles.tsx +292 -0
  508. package/dist/lib/components/InputSlider/types.ts +14 -0
  509. package/dist/lib/components/Key/Key.tsx +45 -0
  510. package/dist/lib/components/Key/index.ts +3 -0
  511. package/dist/lib/components/Key/styles.tsx +29 -0
  512. package/dist/lib/components/Key/types.ts +11 -0
  513. package/dist/lib/components/LibIcon/LibIcon.tsx +35 -0
  514. package/dist/lib/components/LibIcon/index.ts +3 -0
  515. package/dist/lib/components/LibIcon/types.ts +9 -0
  516. package/dist/lib/components/Link/Link.tsx +68 -0
  517. package/dist/lib/components/Link/index.ts +3 -0
  518. package/dist/lib/components/Link/types.ts +9 -0
  519. package/dist/lib/components/Linkify/Linkify.tsx +51 -0
  520. package/dist/lib/components/Linkify/index.ts +3 -0
  521. package/dist/lib/components/Linkify/types.ts +8 -0
  522. package/dist/lib/components/ListGroup/ListGroup.tsx +113 -0
  523. package/dist/lib/components/ListGroup/ListGroupItem.tsx +164 -0
  524. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +56 -0
  525. package/dist/lib/components/ListGroup/index.ts +5 -0
  526. package/dist/lib/components/ListGroup/styles.tsx +179 -0
  527. package/dist/lib/components/ListGroup/types.ts +114 -0
  528. package/dist/lib/components/Loader/Loader.tsx +35 -0
  529. package/dist/lib/components/Loader/index.ts +3 -0
  530. package/dist/lib/components/Loader/styles.tsx +140 -0
  531. package/dist/lib/components/Loader/templates/LoaderFour.tsx +24 -0
  532. package/dist/lib/components/Loader/templates/LoaderOne.tsx +24 -0
  533. package/dist/lib/components/Loader/templates/LoaderThree.tsx +29 -0
  534. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +24 -0
  535. package/dist/lib/components/Loader/types.ts +25 -0
  536. package/dist/lib/components/Main/Main.tsx +45 -0
  537. package/dist/lib/components/Main/index.ts +3 -0
  538. package/dist/lib/components/Main/styles.tsx +61 -0
  539. package/dist/lib/components/Main/types.ts +19 -0
  540. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +35 -0
  541. package/dist/lib/components/MarkdownContainer/index.ts +3 -0
  542. package/dist/lib/components/MarkdownContainer/styles.tsx +17 -0
  543. package/dist/lib/components/MarkdownContainer/types.ts +9 -0
  544. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +196 -0
  545. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +77 -0
  546. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +75 -0
  547. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +54 -0
  548. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +98 -0
  549. package/dist/lib/components/MarkdownEditor/index.ts +3 -0
  550. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +182 -0
  551. package/dist/lib/components/MarkdownEditor/styles.tsx +187 -0
  552. package/dist/lib/components/MarkdownEditor/subtypes.ts +55 -0
  553. package/dist/lib/components/MarkdownEditor/types.ts +59 -0
  554. package/dist/lib/components/Masonry/Masonry.tsx +67 -0
  555. package/dist/lib/components/Masonry/index.ts +3 -0
  556. package/dist/lib/components/Masonry/styles.tsx +24 -0
  557. package/dist/lib/components/Masonry/types.ts +10 -0
  558. package/dist/lib/components/Masonry/utils.ts +30 -0
  559. package/dist/lib/components/Messaging/Message.tsx +106 -0
  560. package/dist/lib/components/Messaging/MessageForm.tsx +144 -0
  561. package/dist/lib/components/Messaging/MessagesContainer.tsx +29 -0
  562. package/dist/lib/components/Messaging/MessagesList.tsx +136 -0
  563. package/dist/lib/components/Messaging/Messaging.tsx +123 -0
  564. package/dist/lib/components/Messaging/index.ts +7 -0
  565. package/dist/lib/components/Messaging/styles.tsx +177 -0
  566. package/dist/lib/components/Messaging/types.ts +131 -0
  567. package/dist/lib/components/Modal/Modal.tsx +127 -0
  568. package/dist/lib/components/Modal/index.ts +3 -0
  569. package/dist/lib/components/Modal/styles.tsx +62 -0
  570. package/dist/lib/components/Modal/types.ts +38 -0
  571. package/dist/lib/components/PageLayout/PageLayout.tsx +80 -0
  572. package/dist/lib/components/PageLayout/index.ts +3 -0
  573. package/dist/lib/components/PageLayout/types.ts +47 -0
  574. package/dist/lib/components/PageLoading/PageLoading.tsx +64 -0
  575. package/dist/lib/components/PageLoading/index.ts +3 -0
  576. package/dist/lib/components/PageLoading/styles.tsx +24 -0
  577. package/dist/lib/components/PageLoading/types.ts +15 -0
  578. package/dist/lib/components/Pagination/Pagination.tsx +265 -0
  579. package/dist/lib/components/Pagination/PaginationButton.tsx +51 -0
  580. package/dist/lib/components/Pagination/index.ts +4 -0
  581. package/dist/lib/components/Pagination/styles.tsx +72 -0
  582. package/dist/lib/components/Pagination/types.ts +61 -0
  583. package/dist/lib/components/Paginator/Paginator.tsx +162 -0
  584. package/dist/lib/components/Paginator/index.ts +3 -0
  585. package/dist/lib/components/Paginator/styles.tsx +36 -0
  586. package/dist/lib/components/Paginator/types.ts +16 -0
  587. package/dist/lib/components/ProgressBar/ProgressBar.tsx +68 -0
  588. package/dist/lib/components/ProgressBar/index.ts +3 -0
  589. package/dist/lib/components/ProgressBar/styles.tsx +55 -0
  590. package/dist/lib/components/ProgressBar/types.ts +13 -0
  591. package/dist/lib/components/ProgressCircle/Circle.tsx +30 -0
  592. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +93 -0
  593. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +48 -0
  594. package/dist/lib/components/ProgressCircle/Value.tsx +31 -0
  595. package/dist/lib/components/ProgressCircle/clean-percentage.ts +7 -0
  596. package/dist/lib/components/ProgressCircle/index.ts +3 -0
  597. package/dist/lib/components/ProgressCircle/styles.tsx +55 -0
  598. package/dist/lib/components/ProgressCircle/subtypes.ts +11 -0
  599. package/dist/lib/components/ProgressCircle/types.ts +31 -0
  600. package/dist/lib/components/Rating/Rating.tsx +177 -0
  601. package/dist/lib/components/Rating/index.ts +3 -0
  602. package/dist/lib/components/Rating/styles.tsx +52 -0
  603. package/dist/lib/components/Rating/types.ts +24 -0
  604. package/dist/lib/components/ResetScroll/ResetScroll.tsx +22 -0
  605. package/dist/lib/components/ResetScroll/index.ts +3 -0
  606. package/dist/lib/components/Section/Section.tsx +30 -0
  607. package/dist/lib/components/Section/index.ts +3 -0
  608. package/dist/lib/components/Section/styles.tsx +24 -0
  609. package/dist/lib/components/Section/types.ts +7 -0
  610. package/dist/lib/components/Select/Select.tsx +284 -0
  611. package/dist/lib/components/Select/SelectButton.tsx +58 -0
  612. package/dist/lib/components/Select/index.ts +3 -0
  613. package/dist/lib/components/Select/styles.tsx +22 -0
  614. package/dist/lib/components/Select/subtypes.ts +32 -0
  615. package/dist/lib/components/Select/types.ts +33 -0
  616. package/dist/lib/components/Skeleton/Skeleton.tsx +60 -0
  617. package/dist/lib/components/Skeleton/SkeletonCard.tsx +78 -0
  618. package/dist/lib/components/Skeleton/SkeletonShine.tsx +26 -0
  619. package/dist/lib/components/Skeleton/index.ts +5 -0
  620. package/dist/lib/components/Skeleton/styles.tsx +102 -0
  621. package/dist/lib/components/Skeleton/subtypes.ts +16 -0
  622. package/dist/lib/components/Skeleton/types.ts +39 -0
  623. package/dist/lib/components/Slideshow/Slideshow.tsx +218 -0
  624. package/dist/lib/components/Slideshow/SlideshowButton.tsx +99 -0
  625. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +84 -0
  626. package/dist/lib/components/Slideshow/index.ts +3 -0
  627. package/dist/lib/components/Slideshow/styles.tsx +361 -0
  628. package/dist/lib/components/Slideshow/subtypes.ts +22 -0
  629. package/dist/lib/components/Slideshow/types.ts +99 -0
  630. package/dist/lib/components/SrOnly/SrOnly.tsx +23 -0
  631. package/dist/lib/components/SrOnly/index.ts +3 -0
  632. package/dist/lib/components/SrOnly/styles.tsx +21 -0
  633. package/dist/lib/components/SrOnly/types.ts +5 -0
  634. package/dist/lib/components/Stepper/Step.tsx +118 -0
  635. package/dist/lib/components/Stepper/Stepper.tsx +96 -0
  636. package/dist/lib/components/Stepper/index.ts +4 -0
  637. package/dist/lib/components/Stepper/styles.tsx +115 -0
  638. package/dist/lib/components/Stepper/types.ts +48 -0
  639. package/dist/lib/components/Sticky/Sticky.tsx +30 -0
  640. package/dist/lib/components/Sticky/index.ts +3 -0
  641. package/dist/lib/components/Sticky/styles.tsx +15 -0
  642. package/dist/lib/components/Sticky/types.ts +7 -0
  643. package/dist/lib/components/Table/TBody.tsx +17 -0
  644. package/dist/lib/components/Table/THead.tsx +17 -0
  645. package/dist/lib/components/Table/Table.tsx +124 -0
  646. package/dist/lib/components/Table/Td.tsx +26 -0
  647. package/dist/lib/components/Table/Tr.tsx +17 -0
  648. package/dist/lib/components/Table/index.ts +7 -0
  649. package/dist/lib/components/Table/styles.tsx +114 -0
  650. package/dist/lib/components/Table/types.ts +52 -0
  651. package/dist/lib/components/Tabs/TabButton.tsx +50 -0
  652. package/dist/lib/components/Tabs/TabItem.tsx +34 -0
  653. package/dist/lib/components/Tabs/Tabs.tsx +137 -0
  654. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +46 -0
  655. package/dist/lib/components/Tabs/TabsContainer.tsx +23 -0
  656. package/dist/lib/components/Tabs/index.ts +7 -0
  657. package/dist/lib/components/Tabs/styles.tsx +178 -0
  658. package/dist/lib/components/Tabs/types.ts +60 -0
  659. package/dist/lib/components/Tag/Tag.tsx +97 -0
  660. package/dist/lib/components/Tag/index.ts +3 -0
  661. package/dist/lib/components/Tag/styles.tsx +41 -0
  662. package/dist/lib/components/Tag/types.ts +43 -0
  663. package/dist/lib/components/Text/Text.tsx +69 -0
  664. package/dist/lib/components/Text/index.ts +3 -0
  665. package/dist/lib/components/Text/styles.tsx +230 -0
  666. package/dist/lib/components/Text/subtypes.ts +15 -0
  667. package/dist/lib/components/Text/templates/Blockquote.tsx +34 -0
  668. package/dist/lib/components/Text/templates/Dl.tsx +34 -0
  669. package/dist/lib/components/Text/templates/Em.tsx +34 -0
  670. package/dist/lib/components/Text/templates/H1.tsx +36 -0
  671. package/dist/lib/components/Text/templates/H2.tsx +36 -0
  672. package/dist/lib/components/Text/templates/H3.tsx +36 -0
  673. package/dist/lib/components/Text/templates/H4.tsx +36 -0
  674. package/dist/lib/components/Text/templates/H5.tsx +36 -0
  675. package/dist/lib/components/Text/templates/H6.tsx +34 -0
  676. package/dist/lib/components/Text/templates/Ol.tsx +34 -0
  677. package/dist/lib/components/Text/templates/P.tsx +34 -0
  678. package/dist/lib/components/Text/templates/Small.tsx +34 -0
  679. package/dist/lib/components/Text/templates/Strong.tsx +34 -0
  680. package/dist/lib/components/Text/templates/Ul.tsx +34 -0
  681. package/dist/lib/components/Text/types.ts +28 -0
  682. package/dist/lib/components/TextIcon/TextIcon.tsx +104 -0
  683. package/dist/lib/components/TextIcon/index.ts +3 -0
  684. package/dist/lib/components/TextIcon/styles.tsx +38 -0
  685. package/dist/lib/components/TextIcon/types.ts +21 -0
  686. package/dist/lib/components/TextIcon/utils.ts +57 -0
  687. package/dist/lib/components/Timepicker/Timepicker.tsx +295 -0
  688. package/dist/lib/components/Timepicker/index.ts +3 -0
  689. package/dist/lib/components/Timepicker/styles.tsx +34 -0
  690. package/dist/lib/components/Timepicker/types.ts +69 -0
  691. package/dist/lib/components/Toast/Toast.tsx +210 -0
  692. package/dist/lib/components/Toast/Toaster.tsx +168 -0
  693. package/dist/lib/components/Toast/index.ts +3 -0
  694. package/dist/lib/components/Toast/styles.tsx +249 -0
  695. package/dist/lib/components/Toast/types.ts +32 -0
  696. package/dist/lib/components/Tooltip/Tooltip.tsx +120 -0
  697. package/dist/lib/components/Tooltip/index.ts +3 -0
  698. package/dist/lib/components/Tooltip/styles.tsx +151 -0
  699. package/dist/lib/components/Tooltip/types.ts +22 -0
  700. package/dist/lib/components/Truncate/Truncate.tsx +113 -0
  701. package/dist/lib/components/Truncate/index.ts +3 -0
  702. package/dist/lib/components/Truncate/styles.tsx +37 -0
  703. package/dist/lib/components/Truncate/types.ts +7 -0
  704. package/dist/lib/components/Video/Video.tsx +66 -0
  705. package/dist/lib/components/Video/index.ts +3 -0
  706. package/dist/lib/components/Video/styles.tsx +24 -0
  707. package/dist/lib/components/Video/types.ts +22 -0
  708. package/dist/lib/components/Wrapper/Wrapper.tsx +43 -0
  709. package/dist/lib/components/Wrapper/index.ts +3 -0
  710. package/dist/lib/components/Wrapper/styles.tsx +29 -0
  711. package/dist/lib/components/Wrapper/types.ts +9 -0
  712. package/dist/lib/components/Youtube/Youtube.tsx +44 -0
  713. package/dist/lib/components/Youtube/index.ts +3 -0
  714. package/dist/lib/components/Youtube/styles.tsx +20 -0
  715. package/dist/lib/components/Youtube/types.ts +11 -0
  716. package/dist/lib/context/Theme.context.tsx +106 -0
  717. package/dist/lib/context/Toaster/Toaster.context.tsx +131 -0
  718. package/dist/lib/context/Toaster/index.ts +5 -0
  719. package/dist/lib/context/Toaster/toast.reducer.ts +36 -0
  720. package/dist/lib/hooks/index.ts +17 -0
  721. package/dist/lib/hooks/useClickOutside.tsx +37 -0
  722. package/dist/lib/hooks/useCopyToClipboard.tsx +33 -0
  723. package/dist/lib/hooks/useDebounce.tsx +21 -0
  724. package/dist/lib/hooks/useExportData.tsx +55 -0
  725. package/dist/lib/hooks/useFetch.tsx +25 -0
  726. package/dist/lib/hooks/useForm.tsx +28 -0
  727. package/dist/lib/hooks/useIsOverflow.ts +44 -0
  728. package/dist/lib/hooks/useKeyPress.tsx +95 -0
  729. package/dist/lib/hooks/useMaxWidth.tsx +28 -0
  730. package/dist/lib/hooks/useMergeRefs.ts +33 -0
  731. package/dist/lib/hooks/useMinWidth.tsx +28 -0
  732. package/dist/lib/hooks/usePaginatedData.tsx +37 -0
  733. package/dist/lib/hooks/usePagination.tsx +112 -0
  734. package/dist/lib/hooks/useTouchScreen.tsx +21 -0
  735. package/dist/lib/hooks/useTranslation.tsx +30 -0
  736. package/dist/lib/icons/ArrowUp.tsx +32 -0
  737. package/dist/lib/icons/Bold.tsx +32 -0
  738. package/dist/lib/icons/Calendar.tsx +40 -0
  739. package/dist/lib/icons/CaretDown.tsx +32 -0
  740. package/dist/lib/icons/Check.tsx +32 -0
  741. package/dist/lib/icons/CheckCircle.tsx +38 -0
  742. package/dist/lib/icons/ChevronDown.tsx +32 -0
  743. package/dist/lib/icons/ChevronLeft.tsx +32 -0
  744. package/dist/lib/icons/ChevronRight.tsx +32 -0
  745. package/dist/lib/icons/ChevronUp.tsx +32 -0
  746. package/dist/lib/icons/Clipboard.tsx +32 -0
  747. package/dist/lib/icons/Clock.tsx +35 -0
  748. package/dist/lib/icons/Close.tsx +32 -0
  749. package/dist/lib/icons/CloseCircle.tsx +38 -0
  750. package/dist/lib/icons/Code.tsx +32 -0
  751. package/dist/lib/icons/CodeBlock.tsx +42 -0
  752. package/dist/lib/icons/Comment.tsx +42 -0
  753. package/dist/lib/icons/Drag.tsx +32 -0
  754. package/dist/lib/icons/Edit.tsx +38 -0
  755. package/dist/lib/icons/EditorCode.tsx +36 -0
  756. package/dist/lib/icons/EditorLive.tsx +36 -0
  757. package/dist/lib/icons/EditorPreview.tsx +36 -0
  758. package/dist/lib/icons/Hide.tsx +32 -0
  759. package/dist/lib/icons/Image.tsx +42 -0
  760. package/dist/lib/icons/Italic.tsx +32 -0
  761. package/dist/lib/icons/Link.tsx +36 -0
  762. package/dist/lib/icons/Minus.tsx +29 -0
  763. package/dist/lib/icons/OrderedList.tsx +32 -0
  764. package/dist/lib/icons/Plus.tsx +32 -0
  765. package/dist/lib/icons/Quote.tsx +32 -0
  766. package/dist/lib/icons/Search.tsx +38 -0
  767. package/dist/lib/icons/Send.tsx +32 -0
  768. package/dist/lib/icons/Separator.tsx +32 -0
  769. package/dist/lib/icons/Show.tsx +38 -0
  770. package/dist/lib/icons/Star.tsx +32 -0
  771. package/dist/lib/icons/StarFull.tsx +32 -0
  772. package/dist/lib/icons/Strikethrough.tsx +32 -0
  773. package/dist/lib/icons/Underline.tsx +36 -0
  774. package/dist/lib/icons/UnorderedList.tsx +32 -0
  775. package/dist/lib/icons/index.ts +41 -0
  776. package/dist/lib/icons/styles.tsx +19 -0
  777. package/dist/lib/icons/types.ts +11 -0
  778. package/dist/lib/index.css +1422 -0
  779. package/dist/lib/index.ts +159 -0
  780. package/dist/lib/lib-utils/append-styles.ts +9 -0
  781. package/dist/lib/lib-utils/colors-maps.ts +176 -0
  782. package/dist/lib/lib-utils/get-highlighted-text.tsx +31 -0
  783. package/dist/lib/lib-utils/get-icon-size-from-font.ts +27 -0
  784. package/dist/lib/lib-utils/index.ts +11 -0
  785. package/dist/lib/lib-utils/round-icon-size.ts +7 -0
  786. package/dist/lib/lib-utils/transfom-search-keys.ts +15 -0
  787. package/dist/lib/modules-declare.d.ts +18 -0
  788. package/dist/lib/utils/StyleSheetManager.tsx +32 -0
  789. package/dist/lib/utils/index.ts +6 -0
  790. package/dist/lib/utils/lib-tokens.json +860 -0
  791. package/dist/lib/utils/linkify-text.tsx +28 -0
  792. package/dist/lib/utils/options-markdown.ts +133 -0
  793. package/dist/lib/utils/set-default-theme.ts +14 -0
  794. package/dist/styles-BzlWff0X.cjs +7 -0
  795. package/dist/styles-D2xrGFT_.js +15 -0
  796. package/package.json +67 -57
  797. package/dist/index-6bd365ef.js +0 -23566
  798. package/dist/index-bf31844d.cjs +0 -4144
  799. package/dist/lib/Mixins.d.ts +0 -256
  800. package/dist/lib/Variables.d.ts +0 -248
  801. package/dist/lib/components/Accordion/Accordion.d.ts +0 -23
  802. package/dist/lib/components/Accordion/AccordionButton.d.ts +0 -2
  803. package/dist/lib/components/Accordion/AccordionContent.d.ts +0 -2
  804. package/dist/lib/components/Accordion/AccordionItem.d.ts +0 -14
  805. package/dist/lib/components/Accordion/index.d.ts +0 -2
  806. package/dist/lib/components/Accordion/styles.d.ts +0 -6
  807. package/dist/lib/components/Accordion/subtypes.d.ts +0 -11
  808. package/dist/lib/components/Accordion/types.d.ts +0 -21
  809. package/dist/lib/components/Alert/Alert.d.ts +0 -18
  810. package/dist/lib/components/Alert/index.d.ts +0 -1
  811. package/dist/lib/components/Alert/styles.d.ts +0 -10
  812. package/dist/lib/components/Alert/types.d.ts +0 -20
  813. package/dist/lib/components/Aside/Aside.d.ts +0 -12
  814. package/dist/lib/components/Aside/index.d.ts +0 -1
  815. package/dist/lib/components/Aside/styles.d.ts +0 -6
  816. package/dist/lib/components/Aside/types.d.ts +0 -5
  817. package/dist/lib/components/Autocomplete/Autocomplete.d.ts +0 -2
  818. package/dist/lib/components/Autocomplete/index.d.ts +0 -1
  819. package/dist/lib/components/Autocomplete/styles.d.ts +0 -3
  820. package/dist/lib/components/Autocomplete/types.d.ts +0 -32
  821. package/dist/lib/components/Avatar/Avatar.d.ts +0 -22
  822. package/dist/lib/components/Avatar/AvatarFunction.d.ts +0 -5
  823. package/dist/lib/components/Avatar/index.d.ts +0 -1
  824. package/dist/lib/components/Avatar/styles.d.ts +0 -22
  825. package/dist/lib/components/Avatar/types.d.ts +0 -63
  826. package/dist/lib/components/BackToTop/BackToTop.d.ts +0 -11
  827. package/dist/lib/components/BackToTop/index.d.ts +0 -1
  828. package/dist/lib/components/BackToTop/styles.d.ts +0 -9
  829. package/dist/lib/components/BackToTop/types.d.ts +0 -5
  830. package/dist/lib/components/Badge/Badge.d.ts +0 -19
  831. package/dist/lib/components/Badge/index.d.ts +0 -1
  832. package/dist/lib/components/Badge/styles.d.ts +0 -10
  833. package/dist/lib/components/Badge/types.d.ts +0 -23
  834. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.d.ts +0 -2
  835. package/dist/lib/components/Breadcrumbs/Breadcrumbs.d.ts +0 -24
  836. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.d.ts +0 -2
  837. package/dist/lib/components/Breadcrumbs/index.d.ts +0 -1
  838. package/dist/lib/components/Breadcrumbs/styles.d.ts +0 -10
  839. package/dist/lib/components/Breadcrumbs/subtypes.d.ts +0 -6
  840. package/dist/lib/components/Breadcrumbs/types.d.ts +0 -19
  841. package/dist/lib/components/Burger/Burger.d.ts +0 -16
  842. package/dist/lib/components/Burger/index.d.ts +0 -1
  843. package/dist/lib/components/Burger/styles.d.ts +0 -9
  844. package/dist/lib/components/Burger/types.d.ts +0 -10
  845. package/dist/lib/components/Button/Button.d.ts +0 -27
  846. package/dist/lib/components/Button/index.d.ts +0 -1
  847. package/dist/lib/components/Button/styles.d.ts +0 -3
  848. package/dist/lib/components/Button/subtypes.d.ts +0 -7
  849. package/dist/lib/components/Button/types.d.ts +0 -48
  850. package/dist/lib/components/ButtonGroup/ButtonGroup.d.ts +0 -48
  851. package/dist/lib/components/ButtonGroup/ButtonGroupButton.d.ts +0 -2
  852. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.d.ts +0 -2
  853. package/dist/lib/components/ButtonGroup/index.d.ts +0 -1
  854. package/dist/lib/components/ButtonGroup/styles.d.ts +0 -19
  855. package/dist/lib/components/ButtonGroup/subtypes.d.ts +0 -16
  856. package/dist/lib/components/ButtonGroup/types.d.ts +0 -22
  857. package/dist/lib/components/ButtonIcon/ButtonFunction.d.ts +0 -2
  858. package/dist/lib/components/ButtonIcon/ButtonIcon.d.ts +0 -30
  859. package/dist/lib/components/ButtonIcon/index.d.ts +0 -1
  860. package/dist/lib/components/ButtonIcon/styles.d.ts +0 -3
  861. package/dist/lib/components/ButtonIcon/subtypes.d.ts +0 -7
  862. package/dist/lib/components/ButtonIcon/types.d.ts +0 -55
  863. package/dist/lib/components/Card/Card.d.ts +0 -36
  864. package/dist/lib/components/Card/index.d.ts +0 -1
  865. package/dist/lib/components/Card/styles.d.ts +0 -33
  866. package/dist/lib/components/Card/types.d.ts +0 -14
  867. package/dist/lib/components/CodeContainer/CodeContainer.d.ts +0 -19
  868. package/dist/lib/components/CodeContainer/index.d.ts +0 -1
  869. package/dist/lib/components/CodeContainer/styles.d.ts +0 -10
  870. package/dist/lib/components/CodeContainer/types.d.ts +0 -36
  871. package/dist/lib/components/ComponentsMixins/ComponentsMixins.d.ts +0 -4
  872. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.d.ts +0 -14
  873. package/dist/lib/components/ComponentsMixins/index.d.ts +0 -3
  874. package/dist/lib/components/ComponentsMixins/types.d.ts +0 -20
  875. package/dist/lib/components/Cover/Cover.d.ts +0 -15
  876. package/dist/lib/components/Cover/index.d.ts +0 -1
  877. package/dist/lib/components/Cover/styles.d.ts +0 -15
  878. package/dist/lib/components/Cover/types.d.ts +0 -9
  879. package/dist/lib/components/Datepicker/Calendar.d.ts +0 -6
  880. package/dist/lib/components/Datepicker/Datepicker.d.ts +0 -80
  881. package/dist/lib/components/Datepicker/data.d.ts +0 -25
  882. package/dist/lib/components/Datepicker/index.d.ts +0 -1
  883. package/dist/lib/components/Datepicker/styles.d.ts +0 -29
  884. package/dist/lib/components/Datepicker/types.d.ts +0 -52
  885. package/dist/lib/components/DragList/DragList.d.ts +0 -32
  886. package/dist/lib/components/DragList/DragListItem.d.ts +0 -29
  887. package/dist/lib/components/DragList/index.d.ts +0 -2
  888. package/dist/lib/components/DragList/styles.d.ts +0 -14
  889. package/dist/lib/components/DragList/types.d.ts +0 -42
  890. package/dist/lib/components/Drawer/Drawer.d.ts +0 -23
  891. package/dist/lib/components/Drawer/index.d.ts +0 -1
  892. package/dist/lib/components/Drawer/styles.d.ts +0 -17
  893. package/dist/lib/components/Drawer/types.d.ts +0 -16
  894. package/dist/lib/components/Dropdown/Dropdown.d.ts +0 -18
  895. package/dist/lib/components/Dropdown/DropdownContainer.d.ts +0 -22
  896. package/dist/lib/components/Dropdown/DropdownItem.d.ts +0 -20
  897. package/dist/lib/components/Dropdown/index.d.ts +0 -3
  898. package/dist/lib/components/Dropdown/styles.d.ts +0 -15
  899. package/dist/lib/components/Dropdown/types.d.ts +0 -40
  900. package/dist/lib/components/Fade/Fade.d.ts +0 -10
  901. package/dist/lib/components/Fade/index.d.ts +0 -1
  902. package/dist/lib/components/Fade/styles.d.ts +0 -2
  903. package/dist/lib/components/Fade/types.d.ts +0 -3
  904. package/dist/lib/components/Fallback/Fallback.d.ts +0 -18
  905. package/dist/lib/components/Fallback/index.d.ts +0 -1
  906. package/dist/lib/components/Fieldset/Fieldset.d.ts +0 -25
  907. package/dist/lib/components/Fieldset/index.d.ts +0 -1
  908. package/dist/lib/components/Fieldset/styles.d.ts +0 -18
  909. package/dist/lib/components/Fieldset/types.d.ts +0 -17
  910. package/dist/lib/components/Flexbox/Flexbox.d.ts +0 -21
  911. package/dist/lib/components/Flexbox/index.d.ts +0 -1
  912. package/dist/lib/components/Flexbox/styles.d.ts +0 -15
  913. package/dist/lib/components/Flexbox/types.d.ts +0 -14
  914. package/dist/lib/components/Footer/Footer.d.ts +0 -28
  915. package/dist/lib/components/Footer/FooterLink.d.ts +0 -2
  916. package/dist/lib/components/Footer/FooterLogo.d.ts +0 -2
  917. package/dist/lib/components/Footer/index.d.ts +0 -1
  918. package/dist/lib/components/Footer/styles.d.ts +0 -17
  919. package/dist/lib/components/Footer/subtypes.d.ts +0 -7
  920. package/dist/lib/components/Footer/types.d.ts +0 -48
  921. package/dist/lib/components/Form/Form.d.ts +0 -15
  922. package/dist/lib/components/Form/index.d.ts +0 -1
  923. package/dist/lib/components/Form/styles.d.ts +0 -6
  924. package/dist/lib/components/Form/types.d.ts +0 -21
  925. package/dist/lib/components/FullBleed/FullBleed.d.ts +0 -13
  926. package/dist/lib/components/FullBleed/index.d.ts +0 -1
  927. package/dist/lib/components/FullBleed/styles.d.ts +0 -7
  928. package/dist/lib/components/FullBleed/types.d.ts +0 -6
  929. package/dist/lib/components/Grid/Grid.d.ts +0 -20
  930. package/dist/lib/components/Grid/index.d.ts +0 -1
  931. package/dist/lib/components/Grid/styles.d.ts +0 -14
  932. package/dist/lib/components/Grid/types.d.ts +0 -13
  933. package/dist/lib/components/Header/Header.d.ts +0 -25
  934. package/dist/lib/components/Header/HeaderBurger.d.ts +0 -2
  935. package/dist/lib/components/Header/HeaderLogo.d.ts +0 -2
  936. package/dist/lib/components/Header/HeaderNav.d.ts +0 -2
  937. package/dist/lib/components/Header/HeaderNavLink.d.ts +0 -2
  938. package/dist/lib/components/Header/HeaderSearch.d.ts +0 -2
  939. package/dist/lib/components/Header/index.d.ts +0 -1
  940. package/dist/lib/components/Header/styles.d.ts +0 -25
  941. package/dist/lib/components/Header/subtypes.d.ts +0 -43
  942. package/dist/lib/components/Header/types.d.ts +0 -67
  943. package/dist/lib/components/Helmet/Helmet.d.ts +0 -17
  944. package/dist/lib/components/Helmet/index.d.ts +0 -1
  945. package/dist/lib/components/Helmet/types.d.ts +0 -14
  946. package/dist/lib/components/Highlight/Highlight.d.ts +0 -15
  947. package/dist/lib/components/Highlight/index.d.ts +0 -1
  948. package/dist/lib/components/Highlight/types.d.ts +0 -8
  949. package/dist/lib/components/Hr/Hr.d.ts +0 -15
  950. package/dist/lib/components/Hr/index.d.ts +0 -1
  951. package/dist/lib/components/Hr/styles.d.ts +0 -8
  952. package/dist/lib/components/Hr/types.d.ts +0 -9
  953. package/dist/lib/components/Icon/Icon.d.ts +0 -14
  954. package/dist/lib/components/Icon/index.d.ts +0 -1
  955. package/dist/lib/components/Icon/styles.d.ts +0 -7
  956. package/dist/lib/components/Icon/types.d.ts +0 -10
  957. package/dist/lib/components/IconMenu/IconMenu.d.ts +0 -33
  958. package/dist/lib/components/IconMenu/IconMenuItem.d.ts +0 -38
  959. package/dist/lib/components/IconMenu/index.d.ts +0 -2
  960. package/dist/lib/components/IconMenu/styles.d.ts +0 -18
  961. package/dist/lib/components/IconMenu/types.d.ts +0 -33
  962. package/dist/lib/components/Image/Image.d.ts +0 -17
  963. package/dist/lib/components/Image/ImageFunction.d.ts +0 -2
  964. package/dist/lib/components/Image/index.d.ts +0 -1
  965. package/dist/lib/components/Image/styles.d.ts +0 -20
  966. package/dist/lib/components/Image/types.d.ts +0 -32
  967. package/dist/lib/components/Input/Input.d.ts +0 -53
  968. package/dist/lib/components/Input/index.d.ts +0 -1
  969. package/dist/lib/components/Input/styles.d.ts +0 -3
  970. package/dist/lib/components/Input/subtypes.d.ts +0 -85
  971. package/dist/lib/components/Input/templates/ColorInput.d.ts +0 -3
  972. package/dist/lib/components/Input/templates/DateInput.d.ts +0 -5
  973. package/dist/lib/components/Input/templates/FileInput.d.ts +0 -3
  974. package/dist/lib/components/Input/templates/PasswordInput.d.ts +0 -2
  975. package/dist/lib/components/Input/templates/SearchInput.d.ts +0 -2
  976. package/dist/lib/components/Input/templates/SelectInput.d.ts +0 -6
  977. package/dist/lib/components/Input/templates/TextInput.d.ts +0 -3
  978. package/dist/lib/components/Input/templates/TextareaInput.d.ts +0 -4
  979. package/dist/lib/components/Input/templates/TimeInput.d.ts +0 -5
  980. package/dist/lib/components/Input/types.d.ts +0 -2
  981. package/dist/lib/components/InputCheck/InputCheck.d.ts +0 -18
  982. package/dist/lib/components/InputCheck/index.d.ts +0 -1
  983. package/dist/lib/components/InputCheck/styles.d.ts +0 -16
  984. package/dist/lib/components/InputCheck/types.d.ts +0 -25
  985. package/dist/lib/components/InputComponents/components/InputAndListContainer.d.ts +0 -12
  986. package/dist/lib/components/InputComponents/components/InputButton.d.ts +0 -17
  987. package/dist/lib/components/InputComponents/components/InputContainer.d.ts +0 -19
  988. package/dist/lib/components/InputComponents/components/InputIcon.d.ts +0 -15
  989. package/dist/lib/components/InputComponents/components/InputLeftContainer.d.ts +0 -10
  990. package/dist/lib/components/InputComponents/components/InputPrefix.d.ts +0 -10
  991. package/dist/lib/components/InputComponents/components/InputRightContainer.d.ts +0 -12
  992. package/dist/lib/components/InputComponents/components/InputSuffix.d.ts +0 -10
  993. package/dist/lib/components/InputComponents/components/InputValidationHelper.d.ts +0 -9
  994. package/dist/lib/components/InputComponents/components/InputValidationIcon.d.ts +0 -10
  995. package/dist/lib/components/InputComponents/components/InputWrapper.d.ts +0 -15
  996. package/dist/lib/components/InputComponents/components/ListInput.d.ts +0 -14
  997. package/dist/lib/components/InputComponents/components/ListInputItem.d.ts +0 -15
  998. package/dist/lib/components/InputComponents/index.d.ts +0 -13
  999. package/dist/lib/components/InputComponents/styles.d.ts +0 -50
  1000. package/dist/lib/components/InputComponents/types.d.ts +0 -191
  1001. package/dist/lib/components/InputContainer/HelperBottom.d.ts +0 -3
  1002. package/dist/lib/components/InputContainer/InputContainer.d.ts +0 -21
  1003. package/dist/lib/components/InputContainer/index.d.ts +0 -1
  1004. package/dist/lib/components/InputContainer/styles.d.ts +0 -10
  1005. package/dist/lib/components/InputContainer/subtypes.d.ts +0 -2
  1006. package/dist/lib/components/InputContainer/types.d.ts +0 -16
  1007. package/dist/lib/components/InputCounter/InputCounter.d.ts +0 -2
  1008. package/dist/lib/components/InputCounter/index.d.ts +0 -1
  1009. package/dist/lib/components/InputCounter/styles.d.ts +0 -10
  1010. package/dist/lib/components/InputCounter/subtypes.d.ts +0 -4
  1011. package/dist/lib/components/InputCounter/types.d.ts +0 -37
  1012. package/dist/lib/components/InputImage/EmptyContainer.d.ts +0 -2
  1013. package/dist/lib/components/InputImage/HoverContainer.d.ts +0 -2
  1014. package/dist/lib/components/InputImage/InputImage.d.ts +0 -41
  1015. package/dist/lib/components/InputImage/index.d.ts +0 -1
  1016. package/dist/lib/components/InputImage/styles.d.ts +0 -18
  1017. package/dist/lib/components/InputImage/subtypes.d.ts +0 -6
  1018. package/dist/lib/components/InputImage/types.d.ts +0 -21
  1019. package/dist/lib/components/InputPhone/InputPhone.d.ts +0 -46
  1020. package/dist/lib/components/InputPhone/index.d.ts +0 -1
  1021. package/dist/lib/components/InputPhone/styles.d.ts +0 -19
  1022. package/dist/lib/components/InputPhone/types.d.ts +0 -21
  1023. package/dist/lib/components/InputPhone/utils/countries.d.ts +0 -2
  1024. package/dist/lib/components/InputPin/InputPin.d.ts +0 -41
  1025. package/dist/lib/components/InputPin/index.d.ts +0 -1
  1026. package/dist/lib/components/InputPin/styles.d.ts +0 -3
  1027. package/dist/lib/components/InputPin/subtypes.d.ts +0 -6
  1028. package/dist/lib/components/InputPin/types.d.ts +0 -20
  1029. package/dist/lib/components/InputSlider/InputSlider.d.ts +0 -28
  1030. package/dist/lib/components/InputSlider/Slider.d.ts +0 -11
  1031. package/dist/lib/components/InputSlider/index.d.ts +0 -1
  1032. package/dist/lib/components/InputSlider/styles.d.ts +0 -13
  1033. package/dist/lib/components/InputSlider/types.d.ts +0 -10
  1034. package/dist/lib/components/Key/Key.d.ts +0 -14
  1035. package/dist/lib/components/Key/index.d.ts +0 -1
  1036. package/dist/lib/components/Key/styles.d.ts +0 -6
  1037. package/dist/lib/components/Key/types.d.ts +0 -8
  1038. package/dist/lib/components/LibIcon/LibIcon.d.ts +0 -11
  1039. package/dist/lib/components/LibIcon/index.d.ts +0 -1
  1040. package/dist/lib/components/LibIcon/types.d.ts +0 -6
  1041. package/dist/lib/components/Link/Link.d.ts +0 -9
  1042. package/dist/lib/components/Link/index.d.ts +0 -1
  1043. package/dist/lib/components/Link/types.d.ts +0 -5
  1044. package/dist/lib/components/Linkify/Linkify.d.ts +0 -11
  1045. package/dist/lib/components/Linkify/index.d.ts +0 -1
  1046. package/dist/lib/components/Linkify/types.d.ts +0 -5
  1047. package/dist/lib/components/ListGroup/ListGroup.d.ts +0 -31
  1048. package/dist/lib/components/ListGroup/ListGroupItem.d.ts +0 -22
  1049. package/dist/lib/components/ListGroup/ListGroupTitle.d.ts +0 -2
  1050. package/dist/lib/components/ListGroup/index.d.ts +0 -3
  1051. package/dist/lib/components/ListGroup/styles.d.ts +0 -20
  1052. package/dist/lib/components/ListGroup/types.d.ts +0 -73
  1053. package/dist/lib/components/Loader/Loader.d.ts +0 -14
  1054. package/dist/lib/components/Loader/index.d.ts +0 -1
  1055. package/dist/lib/components/Loader/styles.d.ts +0 -11
  1056. package/dist/lib/components/Loader/templates/LoaderFour.d.ts +0 -2
  1057. package/dist/lib/components/Loader/templates/LoaderOne.d.ts +0 -2
  1058. package/dist/lib/components/Loader/templates/LoaderThree.d.ts +0 -2
  1059. package/dist/lib/components/Loader/templates/LoaderTwo.d.ts +0 -2
  1060. package/dist/lib/components/Loader/types.d.ts +0 -16
  1061. package/dist/lib/components/Main/Main.d.ts +0 -13
  1062. package/dist/lib/components/Main/index.d.ts +0 -1
  1063. package/dist/lib/components/Main/styles.d.ts +0 -7
  1064. package/dist/lib/components/Main/types.d.ts +0 -14
  1065. package/dist/lib/components/MarkdownContainer/MarkdownContainer.d.ts +0 -10
  1066. package/dist/lib/components/MarkdownContainer/index.d.ts +0 -1
  1067. package/dist/lib/components/MarkdownContainer/styles.d.ts +0 -22
  1068. package/dist/lib/components/MarkdownContainer/types.d.ts +0 -5
  1069. package/dist/lib/components/MarkdownEditor/MarkdownEditor.d.ts +0 -65
  1070. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.d.ts +0 -2
  1071. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.d.ts +0 -2
  1072. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.d.ts +0 -2
  1073. package/dist/lib/components/MarkdownEditor/MdEditorInput.d.ts +0 -2
  1074. package/dist/lib/components/MarkdownEditor/index.d.ts +0 -1
  1075. package/dist/lib/components/MarkdownEditor/markdown-buttons.d.ts +0 -15
  1076. package/dist/lib/components/MarkdownEditor/styles.d.ts +0 -45
  1077. package/dist/lib/components/MarkdownEditor/subtypes.d.ts +0 -23
  1078. package/dist/lib/components/MarkdownEditor/types.d.ts +0 -45
  1079. package/dist/lib/components/Masonry/Masonry.d.ts +0 -13
  1080. package/dist/lib/components/Masonry/index.d.ts +0 -1
  1081. package/dist/lib/components/Masonry/styles.d.ts +0 -8
  1082. package/dist/lib/components/Masonry/types.d.ts +0 -7
  1083. package/dist/lib/components/Masonry/utils.d.ts +0 -3
  1084. package/dist/lib/components/Messaging/Message.d.ts +0 -30
  1085. package/dist/lib/components/Messaging/MessageForm.d.ts +0 -15
  1086. package/dist/lib/components/Messaging/MessagesContainer.d.ts +0 -10
  1087. package/dist/lib/components/Messaging/MessagesList.d.ts +0 -14
  1088. package/dist/lib/components/Messaging/Messaging.d.ts +0 -25
  1089. package/dist/lib/components/Messaging/index.d.ts +0 -5
  1090. package/dist/lib/components/Messaging/styles.d.ts +0 -8
  1091. package/dist/lib/components/Messaging/types.d.ts +0 -85
  1092. package/dist/lib/components/Modal/Modal.d.ts +0 -27
  1093. package/dist/lib/components/Modal/index.d.ts +0 -1
  1094. package/dist/lib/components/Modal/styles.d.ts +0 -4
  1095. package/dist/lib/components/Modal/types.d.ts +0 -25
  1096. package/dist/lib/components/PageLayout/PageLayout.d.ts +0 -18
  1097. package/dist/lib/components/PageLayout/index.d.ts +0 -1
  1098. package/dist/lib/components/PageLayout/types.d.ts +0 -39
  1099. package/dist/lib/components/PageLoading/PageLoading.d.ts +0 -14
  1100. package/dist/lib/components/PageLoading/index.d.ts +0 -1
  1101. package/dist/lib/components/PageLoading/styles.d.ts +0 -5
  1102. package/dist/lib/components/PageLoading/types.d.ts +0 -8
  1103. package/dist/lib/components/Pagination/Pagination.d.ts +0 -29
  1104. package/dist/lib/components/Pagination/PaginationButton.d.ts +0 -13
  1105. package/dist/lib/components/Pagination/index.d.ts +0 -2
  1106. package/dist/lib/components/Pagination/styles.d.ts +0 -6
  1107. package/dist/lib/components/Pagination/types.d.ts +0 -43
  1108. package/dist/lib/components/Paginator/Paginator.d.ts +0 -19
  1109. package/dist/lib/components/Paginator/index.d.ts +0 -1
  1110. package/dist/lib/components/Paginator/styles.d.ts +0 -4
  1111. package/dist/lib/components/Paginator/types.d.ts +0 -26
  1112. package/dist/lib/components/ProgressBar/ProgressBar.d.ts +0 -13
  1113. package/dist/lib/components/ProgressBar/index.d.ts +0 -1
  1114. package/dist/lib/components/ProgressBar/styles.d.ts +0 -5
  1115. package/dist/lib/components/ProgressBar/types.d.ts +0 -8
  1116. package/dist/lib/components/ProgressCircle/Circle.d.ts +0 -2
  1117. package/dist/lib/components/ProgressCircle/ProgressCircle.d.ts +0 -17
  1118. package/dist/lib/components/ProgressCircle/ProgressCircleFn.d.ts +0 -2
  1119. package/dist/lib/components/ProgressCircle/Value.d.ts +0 -2
  1120. package/dist/lib/components/ProgressCircle/clean-percentage.d.ts +0 -1
  1121. package/dist/lib/components/ProgressCircle/index.d.ts +0 -1
  1122. package/dist/lib/components/ProgressCircle/styles.d.ts +0 -10
  1123. package/dist/lib/components/ProgressCircle/subtypes.d.ts +0 -3
  1124. package/dist/lib/components/ProgressCircle/types.d.ts +0 -23
  1125. package/dist/lib/components/Rating/Rating.d.ts +0 -21
  1126. package/dist/lib/components/Rating/index.d.ts +0 -1
  1127. package/dist/lib/components/Rating/styles.d.ts +0 -7
  1128. package/dist/lib/components/Rating/types.d.ts +0 -24
  1129. package/dist/lib/components/ResetScroll/ResetScroll.d.ts +0 -5
  1130. package/dist/lib/components/ResetScroll/index.d.ts +0 -1
  1131. package/dist/lib/components/Section/Section.d.ts +0 -11
  1132. package/dist/lib/components/Section/index.d.ts +0 -1
  1133. package/dist/lib/components/Section/styles.d.ts +0 -5
  1134. package/dist/lib/components/Section/types.d.ts +0 -4
  1135. package/dist/lib/components/Select/Select.d.ts +0 -42
  1136. package/dist/lib/components/Select/SelectButton.d.ts +0 -2
  1137. package/dist/lib/components/Select/index.d.ts +0 -1
  1138. package/dist/lib/components/Select/styles.d.ts +0 -4
  1139. package/dist/lib/components/Select/subtypes.d.ts +0 -12
  1140. package/dist/lib/components/Select/types.d.ts +0 -19
  1141. package/dist/lib/components/Skeleton/Skeleton.d.ts +0 -19
  1142. package/dist/lib/components/Skeleton/SkeletonCard.d.ts +0 -21
  1143. package/dist/lib/components/Skeleton/SkeletonShine.d.ts +0 -11
  1144. package/dist/lib/components/Skeleton/index.d.ts +0 -3
  1145. package/dist/lib/components/Skeleton/styles.d.ts +0 -11
  1146. package/dist/lib/components/Skeleton/subtypes.d.ts +0 -11
  1147. package/dist/lib/components/Skeleton/types.d.ts +0 -25
  1148. package/dist/lib/components/Slideshow/Slideshow.d.ts +0 -44
  1149. package/dist/lib/components/Slideshow/SlideshowButton.d.ts +0 -2
  1150. package/dist/lib/components/Slideshow/SlideshowPagination.d.ts +0 -2
  1151. package/dist/lib/components/Slideshow/index.d.ts +0 -1
  1152. package/dist/lib/components/Slideshow/styles.d.ts +0 -33
  1153. package/dist/lib/components/Slideshow/subtypes.d.ts +0 -11
  1154. package/dist/lib/components/Slideshow/types.d.ts +0 -88
  1155. package/dist/lib/components/SrOnly/SrOnly.d.ts +0 -10
  1156. package/dist/lib/components/SrOnly/index.d.ts +0 -1
  1157. package/dist/lib/components/SrOnly/styles.d.ts +0 -2
  1158. package/dist/lib/components/SrOnly/types.d.ts +0 -3
  1159. package/dist/lib/components/Stepper/Step.d.ts +0 -23
  1160. package/dist/lib/components/Stepper/Stepper.d.ts +0 -31
  1161. package/dist/lib/components/Stepper/index.d.ts +0 -2
  1162. package/dist/lib/components/Stepper/styles.d.ts +0 -13
  1163. package/dist/lib/components/Stepper/types.d.ts +0 -29
  1164. package/dist/lib/components/Sticky/Sticky.d.ts +0 -11
  1165. package/dist/lib/components/Sticky/index.d.ts +0 -1
  1166. package/dist/lib/components/Sticky/styles.d.ts +0 -5
  1167. package/dist/lib/components/Sticky/types.d.ts +0 -4
  1168. package/dist/lib/components/Table/TBody.d.ts +0 -9
  1169. package/dist/lib/components/Table/THead.d.ts +0 -9
  1170. package/dist/lib/components/Table/Table.d.ts +0 -15
  1171. package/dist/lib/components/Table/Td.d.ts +0 -10
  1172. package/dist/lib/components/Table/Tr.d.ts +0 -9
  1173. package/dist/lib/components/Table/index.d.ts +0 -5
  1174. package/dist/lib/components/Table/styles.d.ts +0 -9
  1175. package/dist/lib/components/Table/types.d.ts +0 -26
  1176. package/dist/lib/components/Tabs/TabButton.d.ts +0 -14
  1177. package/dist/lib/components/Tabs/TabItem.d.ts +0 -11
  1178. package/dist/lib/components/Tabs/Tabs.d.ts +0 -24
  1179. package/dist/lib/components/Tabs/TabsButtonsContainer.d.ts +0 -12
  1180. package/dist/lib/components/Tabs/TabsContainer.d.ts +0 -10
  1181. package/dist/lib/components/Tabs/index.d.ts +0 -5
  1182. package/dist/lib/components/Tabs/styles.d.ts +0 -13
  1183. package/dist/lib/components/Tabs/types.d.ts +0 -34
  1184. package/dist/lib/components/Tag/Tag.d.ts +0 -20
  1185. package/dist/lib/components/Tag/index.d.ts +0 -1
  1186. package/dist/lib/components/Tag/styles.d.ts +0 -11
  1187. package/dist/lib/components/Tag/types.d.ts +0 -29
  1188. package/dist/lib/components/Text/Text.d.ts +0 -15
  1189. package/dist/lib/components/Text/index.d.ts +0 -1
  1190. package/dist/lib/components/Text/styles.d.ts +0 -16
  1191. package/dist/lib/components/Text/subtypes.d.ts +0 -9
  1192. package/dist/lib/components/Text/templates/Blockquote.d.ts +0 -2
  1193. package/dist/lib/components/Text/templates/Dl.d.ts +0 -2
  1194. package/dist/lib/components/Text/templates/Em.d.ts +0 -2
  1195. package/dist/lib/components/Text/templates/H1.d.ts +0 -2
  1196. package/dist/lib/components/Text/templates/H2.d.ts +0 -2
  1197. package/dist/lib/components/Text/templates/H3.d.ts +0 -2
  1198. package/dist/lib/components/Text/templates/H4.d.ts +0 -2
  1199. package/dist/lib/components/Text/templates/H5.d.ts +0 -2
  1200. package/dist/lib/components/Text/templates/H6.d.ts +0 -2
  1201. package/dist/lib/components/Text/templates/Ol.d.ts +0 -2
  1202. package/dist/lib/components/Text/templates/P.d.ts +0 -2
  1203. package/dist/lib/components/Text/templates/Small.d.ts +0 -2
  1204. package/dist/lib/components/Text/templates/Strong.d.ts +0 -2
  1205. package/dist/lib/components/Text/templates/Ul.d.ts +0 -2
  1206. package/dist/lib/components/Text/types.d.ts +0 -16
  1207. package/dist/lib/components/TextIcon/TextIcon.d.ts +0 -30
  1208. package/dist/lib/components/TextIcon/index.d.ts +0 -1
  1209. package/dist/lib/components/TextIcon/styles.d.ts +0 -10
  1210. package/dist/lib/components/TextIcon/types.d.ts +0 -13
  1211. package/dist/lib/components/TextIcon/utils.d.ts +0 -2
  1212. package/dist/lib/components/Timepicker/Timepicker.d.ts +0 -32
  1213. package/dist/lib/components/Timepicker/index.d.ts +0 -1
  1214. package/dist/lib/components/Timepicker/styles.d.ts +0 -8
  1215. package/dist/lib/components/Timepicker/types.d.ts +0 -39
  1216. package/dist/lib/components/Toast/Toast.d.ts +0 -30
  1217. package/dist/lib/components/Toast/Toaster.d.ts +0 -36
  1218. package/dist/lib/components/Toast/index.d.ts +0 -1
  1219. package/dist/lib/components/Toast/styles.d.ts +0 -18
  1220. package/dist/lib/components/Toast/types.d.ts +0 -14
  1221. package/dist/lib/components/Tooltip/Tooltip.d.ts +0 -18
  1222. package/dist/lib/components/Tooltip/index.d.ts +0 -1
  1223. package/dist/lib/components/Tooltip/styles.d.ts +0 -12
  1224. package/dist/lib/components/Tooltip/types.d.ts +0 -12
  1225. package/dist/lib/components/Truncate/Truncate.d.ts +0 -11
  1226. package/dist/lib/components/Truncate/index.d.ts +0 -1
  1227. package/dist/lib/components/Truncate/styles.d.ts +0 -7
  1228. package/dist/lib/components/Truncate/types.d.ts +0 -4
  1229. package/dist/lib/components/Video/Video.d.ts +0 -13
  1230. package/dist/lib/components/Video/index.d.ts +0 -1
  1231. package/dist/lib/components/Video/styles.d.ts +0 -7
  1232. package/dist/lib/components/Video/types.d.ts +0 -8
  1233. package/dist/lib/components/Wrapper/Wrapper.d.ts +0 -13
  1234. package/dist/lib/components/Wrapper/index.d.ts +0 -1
  1235. package/dist/lib/components/Wrapper/styles.d.ts +0 -6
  1236. package/dist/lib/components/Wrapper/types.d.ts +0 -6
  1237. package/dist/lib/components/Youtube/Youtube.d.ts +0 -11
  1238. package/dist/lib/components/Youtube/index.d.ts +0 -1
  1239. package/dist/lib/components/Youtube/styles.d.ts +0 -6
  1240. package/dist/lib/components/Youtube/types.d.ts +0 -6
  1241. package/dist/lib/context/Theme.context.d.ts +0 -22
  1242. package/dist/lib/context/Toaster/Toaster.context.d.ts +0 -39
  1243. package/dist/lib/context/Toaster/index.d.ts +0 -1
  1244. package/dist/lib/context/Toaster/toast.reducer.d.ts +0 -11
  1245. package/dist/lib/hooks/index.d.ts +0 -15
  1246. package/dist/lib/hooks/useClickOutside.d.ts +0 -10
  1247. package/dist/lib/hooks/useCopyToClipboard.d.ts +0 -8
  1248. package/dist/lib/hooks/useDebounce.d.ts +0 -7
  1249. package/dist/lib/hooks/useExportData.d.ts +0 -8
  1250. package/dist/lib/hooks/useFetch.d.ts +0 -11
  1251. package/dist/lib/hooks/useForm.d.ts +0 -13
  1252. package/dist/lib/hooks/useIsOverflow.d.ts +0 -11
  1253. package/dist/lib/hooks/useKeyPress.d.ts +0 -7
  1254. package/dist/lib/hooks/useMaxWidth.d.ts +0 -6
  1255. package/dist/lib/hooks/useMergeRefs.d.ts +0 -7
  1256. package/dist/lib/hooks/useMinWidth.d.ts +0 -6
  1257. package/dist/lib/hooks/usePaginatedData.d.ts +0 -12
  1258. package/dist/lib/hooks/usePagination.d.ts +0 -21
  1259. package/dist/lib/hooks/useTouchScreen.d.ts +0 -5
  1260. package/dist/lib/hooks/useTranslation.d.ts +0 -12
  1261. package/dist/lib/icons/ArrowUp.d.ts +0 -2
  1262. package/dist/lib/icons/Bold.d.ts +0 -2
  1263. package/dist/lib/icons/Calendar.d.ts +0 -2
  1264. package/dist/lib/icons/CaretDown.d.ts +0 -2
  1265. package/dist/lib/icons/Check.d.ts +0 -2
  1266. package/dist/lib/icons/CheckCircle.d.ts +0 -2
  1267. package/dist/lib/icons/ChevronDown.d.ts +0 -2
  1268. package/dist/lib/icons/ChevronLeft.d.ts +0 -2
  1269. package/dist/lib/icons/ChevronRight.d.ts +0 -2
  1270. package/dist/lib/icons/ChevronUp.d.ts +0 -2
  1271. package/dist/lib/icons/Clipboard.d.ts +0 -2
  1272. package/dist/lib/icons/Clock.d.ts +0 -2
  1273. package/dist/lib/icons/Close.d.ts +0 -2
  1274. package/dist/lib/icons/CloseCircle.d.ts +0 -2
  1275. package/dist/lib/icons/Code.d.ts +0 -2
  1276. package/dist/lib/icons/CodeBlock.d.ts +0 -2
  1277. package/dist/lib/icons/Comment.d.ts +0 -2
  1278. package/dist/lib/icons/Drag.d.ts +0 -2
  1279. package/dist/lib/icons/Edit.d.ts +0 -2
  1280. package/dist/lib/icons/EditorCode.d.ts +0 -2
  1281. package/dist/lib/icons/EditorLive.d.ts +0 -2
  1282. package/dist/lib/icons/EditorPreview.d.ts +0 -2
  1283. package/dist/lib/icons/Hide.d.ts +0 -2
  1284. package/dist/lib/icons/Image.d.ts +0 -2
  1285. package/dist/lib/icons/Italic.d.ts +0 -2
  1286. package/dist/lib/icons/Link.d.ts +0 -2
  1287. package/dist/lib/icons/Minus.d.ts +0 -2
  1288. package/dist/lib/icons/OrderedList.d.ts +0 -2
  1289. package/dist/lib/icons/Plus.d.ts +0 -2
  1290. package/dist/lib/icons/Quote.d.ts +0 -2
  1291. package/dist/lib/icons/Search.d.ts +0 -2
  1292. package/dist/lib/icons/Send.d.ts +0 -2
  1293. package/dist/lib/icons/Separator.d.ts +0 -2
  1294. package/dist/lib/icons/Show.d.ts +0 -2
  1295. package/dist/lib/icons/Star.d.ts +0 -2
  1296. package/dist/lib/icons/StarFull.d.ts +0 -2
  1297. package/dist/lib/icons/Strikethrough.d.ts +0 -2
  1298. package/dist/lib/icons/Underline.d.ts +0 -2
  1299. package/dist/lib/icons/UnorderedList.d.ts +0 -2
  1300. package/dist/lib/icons/index.d.ts +0 -39
  1301. package/dist/lib/icons/styles.d.ts +0 -6
  1302. package/dist/lib/icons/types.d.ts +0 -8
  1303. package/dist/lib/index.d.ts +0 -90
  1304. package/dist/lib/lib-utils/append-styles.d.ts +0 -1
  1305. package/dist/lib/lib-utils/colors-maps.d.ts +0 -9
  1306. package/dist/lib/lib-utils/get-highlighted-text.d.ts +0 -3
  1307. package/dist/lib/lib-utils/get-icon-size-from-font.d.ts +0 -2
  1308. package/dist/lib/lib-utils/index.d.ts +0 -7
  1309. package/dist/lib/lib-utils/round-icon-size.d.ts +0 -1
  1310. package/dist/lib/lib-utils/transfom-search-keys.d.ts +0 -1
  1311. package/dist/lib/types/component-items.d.ts +0 -438
  1312. package/dist/lib/types/components-props.d.ts +0 -79
  1313. package/dist/lib/types/generate-int-range.d.ts +0 -7
  1314. package/dist/lib/types/global.d.ts +0 -350
  1315. package/dist/lib/types/index.d.ts +0 -5
  1316. package/dist/lib/types/require-at-least-one.d.ts +0 -3
  1317. package/dist/lib/types/theme.d.ts +0 -2
  1318. package/dist/lib/types/type-values.d.ts +0 -2285
  1319. package/dist/lib/utils/StyleSheetManager.d.ts +0 -4
  1320. package/dist/lib/utils/index.d.ts +0 -4
  1321. package/dist/lib/utils/linkify-text.d.ts +0 -2
  1322. package/dist/lib/utils/options-markdown.d.ts +0 -4
  1323. package/dist/lib/utils/set-default-theme.d.ts +0 -6
  1324. package/dist/styles-3686a5c6.js +0 -19
  1325. package/dist/styles-9e4aa8e9.cjs +0 -7
  1326. package/dist/tsx-library-julseb.cjs.js +0 -1
  1327. package/dist/tsx-library-julseb.es.js +0 -213
  1328. package/dist/tsx-library-julseb.umd.js +0 -4150
  1329. package/dist/types/component-items.d.ts +0 -438
  1330. package/dist/types/component-items.js +0 -2
  1331. package/dist/types/generate-int-range.d.ts +0 -7
  1332. package/dist/types/generate-int-range.js +0 -3
  1333. package/dist/types/global.d.ts +0 -350
  1334. package/dist/types/global.js +0 -2
  1335. package/dist/types/index.d.ts +0 -5
  1336. package/dist/types/index.js +0 -6
  1337. package/dist/types/require-at-least-one.d.ts +0 -3
  1338. package/dist/types/require-at-least-one.js +0 -1
  1339. package/dist/types/type-values.d.ts +0 -2285
  1340. package/dist/types/type-values.js +0 -2151
  1341. /package/dist/{types → lib/types}/component-items.ts +0 -0
  1342. /package/dist/{types → lib/types}/components-props.ts +0 -0
  1343. /package/dist/{types → lib/types}/generate-int-range.ts +0 -0
  1344. /package/dist/{types → lib/types}/global.ts +0 -0
  1345. /package/dist/{types → lib/types}/index.ts +0 -0
  1346. /package/dist/{types → lib/types}/require-at-least-one.ts +0 -0
  1347. /package/dist/{types → lib/types}/theme.ts +0 -0
  1348. /package/dist/{types → lib/types}/type-values.ts +0 -0
@@ -0,0 +1,138 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ec" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#ffe800" d="M0 0h640v480H0z"/>
4
+ <path fill="#00148e" d="M0 240h640v240H0z"/>
5
+ <path fill="#da0010" d="M0 360h640v120H0z"/>
6
+ </g>
7
+ <g fill-rule="evenodd">
8
+ <path d="M269.6 290.8 197 367.3l-1.2-1.6 72.4-76.5 1.2 1.6zm50.4 12.5-94.8 100-1.6-1.6 94.7-100 1.7 1.6z"/>
9
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2h-35.4z" transform="matrix(-.07 -.07 -.1 .1 265 429.6)"/>
10
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2h-35.4z" transform="matrix(-.07 -.07 -.1 .1 240.6 390.5)"/>
11
+ </g>
12
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M301.2 272.8s-17.7 336.6 53.1 336.6S460.6 574 460.6 574l-.8-185-158.6-116.2z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
13
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M344.5 304.2c0 17.7-7.9 269.8 27.5 269.8s88.6-17.7 88.6-17.7l-.8-167.3-115.3-84.8z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
14
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M367.5 321.2c0 17.7 4.5 217.4 40 217.4h53.1l-.8-149.6-92.3-67.8z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
15
+ <path fill-rule="evenodd" d="m206.2 116 72.4 76.5 1.3-1.6-72.4-76.5-1.3 1.6z"/>
16
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M301.2 272.8S265.8 609.4 372 609.4c88.5 0 88.5-53.1 106.2-53.1l-17.7-124-159.4-159.5z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
17
+ <g stroke="#000">
18
+ <path fill="none" stroke-width="2.3" d="M269.6 155.2c1.1 0 28.3-94 119-147.2" transform="matrix(.4 -.03 -.05 .35 135.1 147.4)"/>
19
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.14 -.22 .3 .14 175.9 257.4)"/>
20
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 177.6 256.7)"/>
21
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.18 .12 -.13 .33 181 96.4)"/>
22
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.17 -.03 -.03 .33 179.3 159.3)"/>
23
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.06 .25 -.17 .2 228 45.5)"/>
24
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.2 -.2 .2 .24 150.3 241)"/>
25
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.22 -.22 .25 .2 135.6 282.1)"/>
26
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.26 .1 -.2 .32 130.8 147.7)"/>
27
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.15 .2 -.32 .22 178.5 103.3)"/>
28
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.08 .1 -.14 .16 250.7 102.6)"/>
29
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.1 0 -.08 .17 238 136.4)"/>
30
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(0 .14 -.14 .08 287.4 81.1)"/>
31
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.07 .1 -.25 .15 220.7 115.6)"/>
32
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.13 .22 -.33 .2 207 70.1)"/>
33
+ <path fill="none" stroke-width="2.4" d="M269.6 155.2c1.1 0 28.3-94 119-147.2" transform="matrix(.35 -.2 .14 .28 111.8 227.8)"/>
34
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 200.3 224.6)"/>
35
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 211.1 218.3)"/>
36
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 166.8 232.7)"/>
37
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 170 231.3)"/>
38
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 168.1 234.3)"/>
39
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M252.7 167.3c.4.8 0 1.8-1 2.3s-2 .2-2.4-.7 0-1.8 1-2.3 2-.2 2.3.7z"/>
40
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M255 164.9c.3.8 0 1.8-1 2.3s-2 .2-2.5-.6 0-1.9 1-2.4 2-.1 2.4.7z"/>
41
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M255.5 166c.4.8 0 1.9-1 2.3s-2 .2-2.4-.6 0-1.8 1-2.3 2-.2 2.4.6z"/>
42
+ </g>
43
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M336.6 308.3c0 17.7-35.4 212.6 53.2 265.7 35.4 17.7 88.5-17.7 88.5 0l-17.7-141.7-124-124z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
44
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M372 343.7c0 17.7-17.7 159.4 35.5 194.9 35.4 35.4 124 25.8 124 25.8l-70.9-132.1-88.6-88.6z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
45
+ <path fill-rule="evenodd" d="m183.8 158 94.8 100 1.7-1.6-94.8-99.9-1.6 1.6z"/>
46
+ <path fill="#cececc" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m460.6 184.3 17.7 35.4v17.7c-.8-1.3 0 17.7-17.7 17.7S443 219.7 443 219.7s-17.7 35.4-17.7 70.9 17.7 53.1 17.7 53.1-2.6-36.7 17.7-35.4c20.4 1.2 17.7 17.7 17.7 17.7v35.4h17.8V219.7l17.7-35.4-27.2-53.2-26 53.1z" transform="matrix(.14 -.14 .1 .1 86.3 192.2)"/>
47
+ <path fill="#cececc" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m557.8 95.7-26.3 70.8 17.7 53.2-35.4-17.7 35.4 53.1v35.5H567V255l35.5-53.1-35.5 17.7 17.8-53.2-26.9-70.8z" transform="matrix(.1 -.16 .14 .1 114 183.8)"/>
48
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c0 35.8 20.9 187.8 22.6 191.5.1 4.5-4.8 6.4-7.1.9-6.6-17.4-20.8-160-21.3-193.3-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.4 0 0 .3 43.8 69.8)"/>
49
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.38 .1 -.15 .3 76 38.2)"/>
50
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width=".7" d="M186.7 151.5c0 1-1 2-2.2 2-1.2 0-2.2-1-2.2-2s1-1.8 2.2-1.8c1.2 0 2.1.8 2.1 1.8zm-3.2 4c0 17.9 10.5 93.9 11.3 95.8 0 2.2-2.3 3.2-3.5.4-3.3-8.7-10.4-80-10.7-96.6-.1-6.9 1.9-7.4 4.2-7.3 1.9.1 4.1 1.9 4.1 4 0 2.4-2.9 4.3-5.4 3.7z"/>
51
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.48 .15 -.2 .48 16.7 31.6)"/>
52
+ <g fill-rule="evenodd">
53
+ <path d="m370.4 290.8 72.5 76.5 1.3-1.6-72.5-76.5-1.3 1.6zM320 303.3l94.8 100 1.6-1.6-94.7-100-1.7 1.6z"/>
54
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2h-35.4z" transform="matrix(.07 -.07 .1 .1 375 429.6)"/>
55
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2h-35.4z" transform="matrix(.07 -.07 .1 .1 399.4 390.5)"/>
56
+ </g>
57
+ <g fill-rule="evenodd" stroke-width="1pt">
58
+ <path fill="#ffdf00" stroke="#000" d="M301.2 272.8s-17.7 336.6 53.1 336.6S460.6 574 460.6 574l-.8-185-158.6-116.2z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
59
+ <path fill="#0000c4" stroke="#000" d="M344.5 304.2c0 17.7-7.9 269.8 27.5 269.8s88.6-17.7 88.6-17.7l-.8-167.3-115.3-84.8z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
60
+ <path fill="#e10000" stroke="#000" d="M367.5 321.2c0 17.7 4.5 217.4 40 217.4h53.1l-.8-149.6-92.3-67.8z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
61
+ <path d="m433.8 116-72.4 76.5-1.3-1.6 72.4-76.5 1.3 1.6z"/>
62
+ <g fill="#005b00" stroke="#000">
63
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.16 -.07 .08 .35 309.5 211)"/>
64
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.05 .07 .4 291.5 182.6)"/>
65
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.23 .14 -.03 .4 296.5 69.4)"/>
66
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.25 .03 .02 .44 274.4 115)"/>
67
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.18 .17 -.04 .35 330 67)"/>
68
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.23 0 .03 .4 280.6 141.9)"/>
69
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.07 .07 .38 290.1 196.8)"/>
70
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.03 .05 .4 292.7 166.8)"/>
71
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.22 .15 -.05 .38 305 65.5)"/>
72
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.24 .05 0 .44 278.9 97.7)"/>
73
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.17 .17 -.06 .33 339 70)"/>
74
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.24 .02 0 .4 276.4 128)"/>
75
+ </g>
76
+ <path fill="#ffdf00" stroke="#000" d="M301.2 272.8S265.8 609.4 372 609.4c88.5 0 88.5-53.1 106.2-53.1l-17.7-124-159.4-159.5z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
77
+ <path fill="#0000c4" stroke="#000" d="M336.6 308.3c0 17.7-35.4 212.6 53.2 265.7 35.4 17.7 88.5-17.7 88.5 0l-17.7-141.7-124-124z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
78
+ <path fill="#e10000" stroke="#000" d="M372 343.7c0 17.7-17.7 159.4 35.5 194.9 35.4 35.4 124 25.8 124 25.8l-70.9-132.1-88.6-88.6z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
79
+ <path d="m456.2 158-94.8 100-1.7-1.6 94.8-99.9 1.7 1.6z"/>
80
+ <path fill="#cececc" stroke="#000" d="m460.6 184.3 17.7 35.4v17.7c-.8-1.3 0 17.7-17.7 17.7S443 219.7 443 219.7s-17.7 35.4-17.7 70.9 17.7 53.1 17.7 53.1-2.6-36.7 17.7-35.4c20.4 1.2 17.7 17.7 17.7 17.7v35.4h17.8V219.7l17.7-35.4-27.2-53.2-26 53.1z" transform="matrix(-.14 -.14 -.1 .1 553.7 192.2)"/>
81
+ <path fill="#cececc" stroke="#000" d="m557.8 95.7-26.3 70.8 17.7 53.2-35.4-17.7 35.4 53.1v35.5H567V255l35.5-53.1-35.5 17.7 17.8-53.2-26.9-70.8z" transform="matrix(-.1 -.16 -.14 .1 526 183.8)"/>
82
+ <path fill="#e10000" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c0 35.8 20.9 187.8 22.6 191.5.1 4.5-4.8 6.4-7.1.9-6.6-17.4-20.8-160-21.3-193.3-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.4 0 0 .3 596.3 69.8)"/>
83
+ <path fill="#0000c4" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.38 .1 .15 .3 564 38.2)"/>
84
+ <path fill="#e10000" stroke="#000" stroke-width=".7" d="M453.4 151.5c0 1 1 2 2.1 2 1.2 0 2.2-1 2.2-2s-1-1.8-2.2-1.8c-1.2 0-2.1.8-2.1 1.8zm3 4a1152 1152 0 0 1-11.2 95.8c0 2.2 2.3 3.2 3.5.4 3.3-8.7 10.4-80 10.7-96.6.1-6.9-1.9-7.4-4.2-7.3-1.9.1-4.1 1.9-4.1 4 0 2.4 2.9 4.3 5.4 3.7z"/>
85
+ <path fill="#0000c4" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.48 .15 .2 .48 623.3 31.6)"/>
86
+ </g>
87
+ <g fill-rule="evenodd" stroke="#000" stroke-width="1pt">
88
+ <path fill="#e10000" d="M478.4 698a53.3 53.3 0 0 0 53.1 0V556.3h-35.4c17.7 53.1 17.7 106.3-17.8 141.7z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
89
+ <path fill="#0000c4" d="M513.8 609.5c0 88.5-42.5 108.2-42.5 126 17.7 0 29.5-8.3 42.5-19.7 17.7-17.8 19.4-107.7 17.7-106.3h-17.7z" transform="matrix(.35 0 0 .7 123.5 -90)"/>
90
+ <path fill="#0000c4" d="M478.4 609.5c-.9 51.7-44.8 99.6-36.5 110.2 9.4 9.5 36.5-21.7 71.9-4 17.7-17.7 19.4-107.6 17.7-106.3h-53.1z" transform="matrix(.35 0 0 .7 123.5 -90)"/>
91
+ <path fill="#ffdf00" d="M513.8 609.5c0 88.5-40.7 94.4-40.7 118 17.7 0 40.6-12.9 40.7-11.7 17.7-17.8 19.4-107.7 17.7-106.3h-17.7z" transform="matrix(.35 0 0 .46 112.5 51)"/>
92
+ <path fill="#ffdf00" d="M478.4 609.5c-.9 51.7-43.8 95.7-35.5 106.3 9.5 9.4 35.5-17.8 70.9 0 17.7-17.8 19.4-107.7 17.7-106.3h-53.1z" transform="matrix(.35 0 0 .46 112.5 51)"/>
93
+ <path fill="#e10000" d="M478.4 698a53.3 53.3 0 0 0 53.1 0V556.3h-35.4c17.7 53.1 17.7 106.3-17.8 141.7z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
94
+ <path fill="#0000c4" d="M513.8 609.5c0 88.5-42.5 108.2-42.5 126 17.7 0 29.5-8.3 42.5-19.7 17.7-17.8 19.4-107.7 17.7-106.3h-17.7z" transform="matrix(-.35 0 0 .7 516.5 -90)"/>
95
+ <path fill="#0000c4" d="M478.4 609.5c-.9 51.7-44.8 99.6-36.5 110.2 9.4 9.5 36.5-21.7 71.9-4 17.7-17.7 19.4-107.6 17.7-106.3h-53.1z" transform="matrix(-.35 0 0 .7 516.5 -90)"/>
96
+ <path fill="#ffdf00" d="M513.8 609.5c0 88.5-40.7 94.4-40.7 118 17.7 0 40.6-12.9 40.7-11.7 17.7-17.8 19.4-107.7 17.7-106.3h-17.7z" transform="matrix(-.35 0 0 .46 527.5 51)"/>
97
+ <path fill="#ffdf00" d="M478.4 609.5c-.9 51.7-43.8 95.7-35.5 106.3 9.5 9.4 35.5-17.8 70.9 0 17.7-17.8 19.4-107.7 17.7-106.3h-53.1z" transform="matrix(-.35 0 0 .46 527.5 51)"/>
98
+ </g>
99
+ <g fill-rule="evenodd" stroke="#000">
100
+ <path fill="#908f8a" stroke-width="4.5" d="m198.6 78-89.7 35.4 89.7 35.4 44.8-17.7 22.4 17.7 22.4 35.4 22.5-35.4 22.4-17.7H1535V95.7H333l-22.4-17.8c0-17.7 4.7-35.4 22.5-35.4h89.6c0-17.7-44.8-53.1-134.5-53.1-89.6 0-134.5 35.4-134.5 53.1h89.7c17.7 0 22.4 17.7 22.4 35.5l-22.4 17.7-44.9-17.8z" transform="matrix(.12 0 0 .22 217.8 324.4)"/>
101
+ <path fill="#b74d00" stroke-width="1.8" d="M204.3 95.7H541v17.7H204.4zm0-17.8H541v17.8H204.4zm0-17.7H541V78H204.4zm0-17.7H541v17.7H204.4zm0-17.7H541v17.7H204.4zm0-17.8H541v17.8H204.4zm0-17.6H541V7H204.4z" transform="matrix(.28 0 0 .27 216 334.6)"/>
102
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 .27 171.9 315.2)"/>
103
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 -.27 171.9 382.2)"/>
104
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124h-17.7z" transform="matrix(.28 0 0 .27 159.6 315.2)"/>
105
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 .27 216.2 315.2)"/>
106
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 -.27 216.2 382.2)"/>
107
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124h-17.7z" transform="matrix(.28 0 0 .27 238.4 315.2)"/>
108
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124h-17.7z" transform="matrix(.28 0 0 .27 204 315.2)"/>
109
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124h-17.7z" transform="matrix(.28 0 0 .27 194 315.2)"/>
110
+ </g>
111
+ <g fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt">
112
+ <path d="M655.5 396.9c0 88-55.6 159.4-124 159.4s-124-71.4-124-159.4 55.5-159.5 124-159.5 124 71.4 124 159.4zm-17.7 0c0 78.2-47.6 141.7-106.3 141.7-58.7 0-106.3-63.5-106.3-141.7 0-78.3 47.6-141.8 106.3-141.8 58.7 0 106.3 63.5 106.3 141.8z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
113
+ <path d="M579.8 250c-14.9-8.1-31.2-12.6-48.3-12.6s-33.4 4.5-48.3 12.5l7 16.4a82.8 82.8 0 0 1 82.7 0l6.9-16.4z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
114
+ <path d="M579.8 250c-14.9-8.1-31.2-12.6-48.3-12.6s-33.4 4.5-48.3 12.5l7 16.4a82.8 82.8 0 0 1 82.7 0l6.9-16.4z" transform="matrix(.58 0 0 -.62 9.8 479.3)"/>
115
+ </g>
116
+ <path fill="#a7cfff" fill-rule="evenodd" d="M379.6 235.9c0 48.5-27.7 87.8-61.7 87.8s-61.6-39.3-61.6-87.8 27.6-88 61.6-88 61.7 39.4 61.7 88z"/>
117
+ <path fill="#afff7b" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M637.8 396.9c1.1 26.6-4.6 39.6-11.9 67.3-1.9 3-11-6.5-16.4-11.2s-7.8 4.2-14.6-3c-6.7-7.4-11 2-16-4.2s-51.3-7-51.3-7.6c4.6-2.2 28.2.2 24.4-11.1-4.3-11.8-31-.4-34.6-15.4-2.5-15-53.6-15.6-57.3-19.2 1.5 5.6 39.8 8 38.9 22.5-.9 6-37.7 7.7-41.3 12.7-3 6.3 29-1.7 30.1 6 0 3.2-4.7 0-21.3 5-8.4 2.5 15.4 10.3 6.4 14.6-9 4.3-28.3 6.2-27.5 8 3 9 44.7 19.6 40.6 21.1-14.8 6.6-22.6 10.9-29.7 14.7a167.9 167.9 0 0 1-31.1-100.2c31.7-11.4 25-13.8 83.6-13.8s78 2.3 129 13.8z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
118
+ <path fill="#fff" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M637.8 396.9c-8 0-16.4 3.4-25 3.4-8.7 0-17.5-3.5-26.5-3.5s-19.3 4.6-28.5 4.6c-9.3 0-17.4-4.5-26.7-4.5s-18.6 3.4-27.8 3.4-18.3-3.5-27.2-3.5-17.7 3.5-26.2 3.5-16.8-3.5-24.7-3.5c0-19.5 3-38.1 8.4-55.1 27 2 11-15.7 27-15.7a33 33 0 0 1 25.3 9.8c2.4 0 14.4-11.4 27.9-9.8 13.4 1.6 8.5 27.3 26.4 28.6 9 6.8 14.3 11.1 26.7 13.9 17.7 1.6 68.4-2.5 68.7-.2a188.2 188.2 0 0 1 2.2 28.6z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
119
+ <path fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M549.9 474c0-5.7 13.5-9.5 13.5-18.6s-12-9.3-12.4-17.8c-.2-3.5 10.3-7 14.9-7.4s8.5 7.4 8.5 9.1-4.7-4.2-8.6-4.3-12.3.6-12.3 2.3c0 3.4 14.8 7.6 13.7 19-1.1 11.2-12.7 14.6-12.7 18s5 12.8 5 12.8-9.7-7.5-9.7-13.2z" transform="matrix(.2 0 0 .48 217.2 59.5)"/>
120
+ <path fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M549.9 474c0-5.7 13.5-9.5 13.5-18.6s-12-9.3-12.4-17.8c-1-4 11.8-6.6 16.4-6.9s10 8 10 9.6-5.4-5.2-9.3-5.3-14.6.6-14.6 2.3c0 3.4 14.8 7.6 13.7 19-1.1 11.2-12.7 14.6-12.7 18s5 12.8 5 12.8-9.7-7.5-9.7-13.2z" transform="matrix(-.2 0 0 .48 445.8 59.1)"/>
121
+ <path fill-rule="evenodd" d="M333 264.9c0 1.3-.7 2.4-1.5 2.4s-1.4-1.1-1.4-2.5.6-2.4 1.4-2.4c.8 0 1.5 1.1 1.5 2.5zm17 9h.4v19.5h-.5zm4.1-1.6h.5V292h-.5z"/>
122
+ <path fill-rule="evenodd" d="M352.6 281.2v-.5l4 .7v.5z"/>
123
+ <path fill="#b74d00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M497.3 478s26 11.4 31.7 18.2c5.6 6.8 3.4 6.8 3.4 6.8l57.7 2.3c0-3.4 10.2-3.4 12.5-11.4 2.3-7.9 2.3-10.2 2.3-10.2l-18.1 5.7 1-10.2H572l-2.3 10.2-34-1.1L538 461l-6.8 1.1-1 26c-1.2 0-31.8-7.9-33-10.1z" transform="matrix(.58 0 0 .62 7 -9.5)"/>
124
+ <path fill="#fede00" fill-rule="evenodd" stroke="#fede00" stroke-width="1pt" d="M440.5 316.3s37.7-11.2 92.1-10.4 92.1 12.8 91.3 12.8-10.4-18.4-10.4-18.4-38.4-10.5-81.7-11.3c-43.2-.8-80.9 8-80 8.8l-11.3 18.5z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
125
+ <path fill="#38a9f9" fill-rule="evenodd" d="m306 169.8 13.6-.2.2 7.9-13.6.3zm-31.2 4.3L270 182l16.2-2-1.3-7.7-10.1 2zm13.7-3 13.6-1.1.6 7.8-13.5 1.2zm48.9-.7-13.5-1-.5 8 13.5.8zm29.2 5 4.9 9.6-14.6-3.6 1.6-7.7 8 1.6zm-11.8-3-13.4-1.7-1 7.8 13.5 1.8z"/>
126
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m532.6 323.5-2.5-13.5-7.6 11.5 2.8-13.5-11.3 7.7 7.6-11.3-13.4 2.8 11.5-7.6-13.5-2.5 13.5-2.6-11.5-7.6 13.4 2.8-7.7-11.3 11.4 7.7-2.8-13.5 7.6 11.5 2.5-13.5 2.6 13.5 7.5-11.5-2.7 13.5 11.3-7.7-7.7 11.3 13.5-2.8-11.5 7.6 13.5 2.6-13.5 2.5 11.5 7.6-13.5-2.8 7.7 11.3L540 308l2.8 13.5-7.6-11.5z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
127
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M547 293.9c0 9.3-6.6 16.8-14.8 16.8s-14.8-7.5-14.8-16.8S524 277 532.2 277s14.8 7.6 14.8 17z" transform="matrix(.57 0 0 .5 18.3 21.8)"/>
128
+ <path fill-rule="evenodd" d="M320.7 170.6c0 .5-1.3 1-2.8 1s-2.8-.5-2.8-1 1.2-1 2.8-1 2.8.4 2.8 1zm6 0c0 .5-.9 1-2 1s-2.2-.5-2.2-1c0-.6 1-1 2.1-1s2.1.4 2.1 1z"/>
129
+ <path fill="none" stroke="#000" stroke-width="1pt" d="m529.4 297.9.8.8c-1.9-2-1-1.2 1.6 3.2 2.4-.5 3.1-1.4 4.8-2.4" transform="matrix(.56 -.18 .17 .6 -26.7 90.6)"/>
130
+ <path fill="none" stroke="#000" stroke-width="1pt" d="m527.8 304.3.8.8c-1.9-2-1-1 3.2 1.6 4 .5 8.1-1.2 10.5-4" transform="matrix(.58 0 0 .62 8.7 -10.2)"/>
131
+ <path fill="#b7e1ff" fill-rule="evenodd" d="M281.4 194.8s1 8-5.1 18c-6 9.9-5.1 6.4-5.1 6.4s2.8 5.5 2.3 5.5-4.7-5-4.7-5l-5 5.5s4.6-8.5 4.1-8.5-1.4-3-1.4-3l3.7-1.5s5.6-10.4 5.6-9.9-16.7 11.4-16.7 11.4l22.3-18.8zm3.7 3c-.5 0 2.3 8 4.7 12 2.3 4 2.3 8.9 2.3 8.9l7.9 4-10.2-15.4 6.5 2.4-11.2-11.9zm0 20.9s5.6 6 6 8 .5 6.4.5 6.4l-2.3-5-3.3 4.5s2.4-7 1.9-7.5-3.7 2.5-3.7 2.5 1.4-4 1.4-4.4 0-3-.5-4.5zm-27.9 13.9c1.9-1.5 5.6-2.5 5.6-2.5s-2.3 4-2.8 4-1.8 0-2.8-1.5zm64.1-21.8s12.1 7.4 12.1 7.9-7.9-3.5-7.9-3.5l-4.2-4.4zm-21.8-15.5c1 .5 17.7 14.4 17.2 14.4s-7.4-4-7.4-3.4v3.4l-3.8-7.9-.9 3-5-9.5zm4.2 22.4 4.6 9.4 4.7-1s-8.8-8.4-9.3-8.4zm14.4-6 .5 9s2.7 2.5 2.7 2-2.7-10.5-3.2-11z"/>
132
+ <path fill="#984000" fill-rule="evenodd" d="M182.6 89.5s21-11.6 44.9-20.2a303.8 303.8 0 0 1 54.2-14.4c7 0 19.2 17.8 21.2 17.8s10.1-5 20.3-5 16.1 8 18.2 8h18.2c2 0-6.1-19.8 0-18.8 3 .5 28.8 4.5 52.8 12.2 24 7.8 58 21.6 58 21.6S414.9 98 400 95.9c-2 1 0 13-3 7.7-4.6-1-21.7-3.7-24.7-3.7s-8.7 3.4-16.8 5.4c-8 2-18.2 5-18.2 5l13.2 20.7-16.2 8s-10.1-23.8-14.2-23.8-6 16.8-11.1 15.8c-5-1-7-15.8-11.1-19.8-4-3.9-25.4-5.4-33.5-7.3-8-2-21.1-3.5-28.2-5.5-7-2-14.2 5-17.2 5s4-6 1-7-5 3-7 3-23.3-4-25.3-5 5-4.9 3-4.9h-8.1z"/>
133
+ <path fill="gray" fill-rule="evenodd" stroke="#772600" stroke-width="3.7" d="M463-65c0 21.2-20.6 38.4-45.9 38.4S371.3-43.8 371.3-65s20.5-38.3 45.8-38.3S463-86.1 463-65z" transform="matrix(.22 0 0 .26 231.6 96.5)"/>
134
+ <path fill="#984000" fill-rule="evenodd" stroke="#772600" stroke-width="5.3" d="M284.7-60c6.7-6.6 15-16.6 36.7-16.6 5-1.7 5-11.7 16.6-11.7 11.7 0 8.3 10 16.7 13.4 8.3 3.3 76.6-3.4 76.6-3.4s6.6 5 6.6 11.7-5 11.6-6.6 11.6-68.3-5-73.3-3.3c-5 1.7-8.3 3.3-20 3.3-11.6 0-15-11.6-23.3-11.6s-16.6-1.7-30 6.7z" transform="matrix(.27 0 0 .32 205.4 100.7)"/>
135
+ <path fill="none" stroke="#772600" stroke-width="3.5" d="M487.9-76.6h26.6c9.6.1 12.9 3 21.7 3.3h23.3c8.5-.3 13-2.3 21.6-3.3 14.5-.2 9.6-1.3 6.7-10-2.6-6.5-3-9.6-6.7-13.3-1.4-8-4.6-10.8-5-20-1.5-7-4.3-11.7-1.6-20 3.8 5.7 5.3 8 15 8.4 10 0 13.9-.3 20 3.3 4.6 4.9 10.8 3.3 20 3.3 7.6 1.4 8.9 5.3 14.9 8.3 7.1 4 11.7 5 21.6 5 8 1.5 15 2.6 20 5 4.3 5.1 11 6.4 20 6.7 5 0 9-.5 13.3-1.7 7.7.4 15.5 0 25 0 6.2 7.2 7.6 9.9 18.3 10 7.4 5.2 13.6 6 20 8.3h25c9 .7 11.8 4.4 20 6.7a200.9 200.9 0 0 0 21.6 8.3 108 108 0 0 0 21.7 1.7c6.1 3.2 13.6 3.4 18.3 6.6 6.9 1.5 16.3 3.3 21.6 5 8.8 1.2 12.2 4 20 5 6.7 2-2.2 3.6-6.7 5-9.8-.3-10.5-4-20-5-5-2.9-12.6-2.5-20-5h-1.6c6.6 4 13 6.5 10 13.4-8.5 0-15.4-1.1-23.3-1.7-8.4-1.6-12.2-3.3-21.6-3.3 9.4-2.3 11.8.2 18.3 3.3 2.4 8-2.8 5-11.7 5-7.6-2.7-12.2-6-21.6-6.7h-20c9.9.4 12 4.1 18.3 8.4.5 2.6-.1 2.4-5 3.3-5.2-4.5-11.9-6-20-8.3-7.9-.3-16.2-1-23.3-3.4-4.9-.3-4.1-6.1 6.7 3.4 6.5 3.8 8.8 7 8.3 10-8.6-2.2-12.8-5.6-18.3-8.4a61.3 61.3 0 0 0-23.3-3.3c-8.6-2.3.9-3.6 6.6 5 12.4 8.8-1.6 5-6.6 3.3-7.5-2.1-15.3-5.2-21.7-6.6-5-1.5-9.4-2.9-15-3.4 8.7.8 11.6 3.9 15 10 8.8 6-.4 3.1-8.3 1.7-5-4.4-11.5-6.7-15-11.7-8.3-4.1-8.6-9-3.3 1.7 1.3 3.4 1 10.8 1.6 11.7-6.1-6.7-4.8-8.4-11.6-8.4-4.7-3.2-11.5-5.7-15-10-6.4-.6-6.8-2.9-13.3-5 5.3 6.3 12.4 12.5 16.6 18.4 7.6 4.2 9.7 8 15 11.6 2.1 3.7 8 6.7 1.7 1.7-7.2-7-12.5-8.7-23.3-13.3-6.2-5-8.4-7-15-11.7-9-2.9-5.5-4.5 0 5 6.3 5.8 11.1 12.2 16.6 16.7a67.8 67.8 0 0 0 15 13.3c1.5 2.2 6 2.6 0 3.3-5-4.6-12.4-7.5-18.3-11.7-8.3-2.3-12.2-6.6-18.3-11.6-4-5.9-10.4-10.4-15-15-9.6-3.8 1.9 3.6 5 8.3 2.1 6.1 4.8 11 6.6 16.7 2.8 5.5-8.4-1.3-11.6-3.3a57 57 0 0 0-21.7-8.4 298 298 0 0 0-20-3.3c-7.5-2 4.1 4.8 8.4 11.7 8.4 7.9-8.3 1.4-13.3 0a125 125 0 0 0-25-1.7c-10.7.6-3 2 0 6.6 3.3 2.6 5.6 8 5 10-7-1-13-3-21.7-3.3-7 2.3-15.3 1.7-23.3 1.7-.3 4.2 1.5.6 5 5 5.8 2.3 9.6 5.1 8.4 8.3h-48.3c-5.3 1.4 1.1.7 5 6.7-2.2 5.4-5 3.3-11.7 3.3-4.5-1.8-13.6-2.6-18.3-5-4.7 0-4.3-1.2-8.3-1.7 14 10 7 7.5 15 15 1.3.5 4.5 1.7 1.6 1.7M371.3 73.3c-1 0-3.2-5.4-6.6-10-2.4-6-5.4-2.6-8.4-11.7.4-9.4.7-11 0-20-6.8-4.8-9.7-6.2-15-15-8.4-7 1.3-19 2.9-27.8-7.4-1.6-11 11.5-22.3 16.2-8.2 5.5-1-11.4-5-21.2-2.7-13.9-10.8 7-13.8 12.9-5.5 3.7-7.2 8.5-15 1.6 0-5.1 4.9-19.5 2.8-22.3-7.8 3.9-18 15.5-26.1 17.3-8.2-1.7 1.7-14.8 1.7-24.5-3-1-14.7 25.8-19.5 26s-2.7-26-5-25.4c-3.5 5-10.6 15.4-15.5 19-9.5-1.3 1.4-17.5 2.8-23.5 1.6-7.2-8.9 13.8-14.5 15.1-4.1 3.6-12.2 6-15 6.7 3.2-6.2 19-18.7 18-22.3-9.3.3-23.4 12.5-31.3 14-5.2 0-12.4 1.7-13.3 1.6.4-8 19.4-14.6 22.4-19.5-9.3 1.5-27.2 9.7-32.4 16.2-6.2 1.3-14 3-20 0 .9-7.5 14.9-22 18-26.8-8.5 3.7-12.7 6.6-21.7 8.3-1.7 1.7-6.5 5.3-5 1.7 2.7-7 6.7-10 10-15-7.5 1.4-10.3 5.7-18.3 10-5.1.2-19.7 14.9-24.6 15.1a69.1 69.1 0 0 1-28.3 13.3c-7.6 1.4-11.3 3-15 6.7 3.8-6.7 9.6-13 15-16.6a29.8 29.8 0 0 1 15-13.4c1.9-2.3 7.1-2.9 1.6-3.3-4.7 4.2-12.7 9-16.6 11.7-5.1 3.2-11 6.4-13.4 5 2.7-7.2 7.5-9 11.7-15 8.8-5.6 0-2-6.7 0-4.3 3.8-12 6.7-18.3 10-7 1.8-11.7 6-20 8.3 0 2.4 2.4-4.3 3.4-6.7 6.8-7.4 8.6-9.5 16.6-11.6 2-2.9 4.4-1.7-1.6-1.7-4.6 4-10.8 6.2-16.7 10-5.9 1.3-13.6 1.7-21.6 1.7-10.4 1.2-9.5 2 0-3.4 5.3-5 9.7-3.7 10-10-6.3 4.6-14 8-21.7 11.7-6.4.2-8.1 1.7-15 1.7 3.3-3.4 5.3-7.7 10-10 7-7.7-4.4-1.5-6.7 0h-25c-4.4 5.6-.2 0 3.4-3.4 4.3-2.2 8.8-5.1 8.3-6.6-5 4.3-10.7 6.3-15 10-4.6 1.4-10 2-10 3.3 3.7-5.3 9.6-8.6 13.4-13.3 5.6-1.2 10.4-3 11.6-5h-23.3 16.6c8.5 0 15.7-.8 23.4-1.7 13.2-2.2-1.2-3.3-8.4-3.3-1.3-2.6 4.2-4 10-5C-6.7-69-.4-71.1 5-73.3a45.2 45.2 0 0 0 13.3-6.6c-5 .2-5 1.4-10 1.6 7.5-.5 12.8-1.6 21.7-1.6a239 239 0 0 0 21.6-8.3c3-3.6 4.2-3.4-3.3-3.4 6.7-2.1 16.2-3.2 21.6-5a94 94 0 0 0 20-6.6c4.9-3.3 7.7-7.2 13.3-10 6.5 4.4 6.6 5 18.3 5 9.4-.1 15.2-2.4 20-6.7 7.2-2 8.5-5.4 16.7-6.6a134 134 0 0 0 23.3 1.6c8-2.1 15.7-6 21.6-10 5.1-2.5 11.2-6.1 16.7-8.3 6 3.1 10.8 5.6 18.3 6.7 7.7-1.2 11.8-5 18.3-6.7a28 28 0 0 1 15-8.3c9.7-4.8 9 1.5 13.3 6.6 5 5.2 11.4 2.7 18.3 5 3.9 6 6.7 10 11.7 13.3 3.9 4.8 8.5 6 16.7 6.7 3 4 .6 6.8 6.6 8.3 2.4 2.6 6.5 3.6 10 5" transform="matrix(.27 0 0 .32 205.4 104.9)"/>
136
+ <path fill="none" stroke="#782600" stroke-width="3.1" d="M468.7 30.8v.8c0-2.3 0-1 1.7 3.4.6 3.6-.8 3.2-2.5 5.8-.3 3.7-.8 6.4-.8 10.8-.6 3.6-2.6 7-4.2 10-1.6 3.1-8.5 4.9-8.3 9.2-4 1.1-4.1-1.5-4.2-5.9-2.4-2.7-3.2-6.4-5-10-1-3.4-3.4-6-5-10-2.4-3.7-4.5-4.8-6.6-9.1-.9-2-.7-4.6-2.5-5.8-2.7-3.5-4.5-4-9.2-4.2-3.6.8-5 2.4-8.3 3.3-2.6.9-7.6.6-10.8 1.7-.8 1.3 1.6 2 2.5 5-2.2 1.8-3 4.9-4.2 7.5-2 2.5-3.3 3.7-4.2 7.5 1.4 2.3.2 5.4-1.6 7.5-.6 3.8-2.5 5.9-3.4 9.1-2.6 1.9-3.6 3.6-5.8 6.7-1.9 2.7-3.6 2.5-8.3 2.5-3.7-1-4.2-3-7.5-4.2-.3-1-.6-1.3-1.7-1.6" transform="matrix(.27 0 0 .32 205.4 104.9)"/>
137
+ <path fill="#812e00" fill-rule="evenodd" d="M307.6 125.5s-.4 5-3.6 8.3-9.8 7.1-9.8 7.1 8.9-4.2 9.8-3.3c1 1-5.7 8.3-5.7 8.3s8.7-7.7 9.8-7.7 3.6 7.5 4.6 7.3c.9-.2-2-9.5-1.6-11 .4-1.4 0-9.3 0-9.3l-3.4.3zm20.5-.6s-.4 5.3-3.6 8.8-9.8 7.6-9.8 7.6 8.9-4.5 9.8-3.5c1 1-5.7 8.8-5.7 8.8s8.7-8.2 9.8-8.2 3.6 8 4.6 7.8c.9-.2-2-10.2-1.6-11.7.4-1.6 0-10 0-10l-3.5.4zm-28.7-48c0 .9-1 1.7-2.1 1.7s-2.2-.8-2.2-1.8 1-1.8 2.2-1.8 2.1.8 2.1 1.8z"/>
138
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ee" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <rect width="640" height="477.9" rx="0" ry="0"/>
4
+ <rect width="640" height="159.3" y="320.7" fill="#fff" rx="0" ry="0"/>
5
+ <path fill="#1791ff" d="M0 0h640v159.3H0z"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-eg" viewBox="0 0 640 480">
2
+ <path d="M0 320h640v160H0z"/>
3
+ <path fill="#fff" d="M0 160h640v160H0z"/>
4
+ <path fill="#ce1126" d="M0 0h640v160H0z"/>
5
+ <g fill="#fff" stroke="#c09300" transform="matrix(.8 0 0 .8 -40 0)">
6
+ <path stroke-linejoin="round" stroke-width="1.3" d="m450.8 302.4 68.5 63.6-4.9-115.5c-.7-17.5-15.9-13.5-27-7.2-11.1 7.2-24 7.2-37.4 2.5-13.5 4.7-26.3 4.7-37.4-2.5-11-6.3-26.3-10.3-27 7.2L380.7 366l70.1-63.6z"/>
7
+ <path id="a" fill="#c09300" stroke="none" d="m393.5 246.5-4.8 112.3-8 7.2 4.9-115.5a24 24 0 0 1 7.9-4zm9.6 8-4 94-8 8.2 4.8-108.5c1.6 1.6 6.3 5.5 7.2 6.3zm8.7 7.2-3.1 78.4-6.5 6.3 4-89.4c1.6 1.5 4.8 3.8 5.6 4.7zm9.5 4-3.1 66.8-6.3 5.1 3.1-74.3c1.6.7 4.7 2.4 6.3 2.4zm8.8 0-2.3 55.7-6.5 6.3 2.5-61.3c1.5 0 5.6 0 6.3-.7z"/>
8
+ <use xlink:href="#a" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
9
+ <path fill="#c09300" stroke-width="1.1" d="m453.2 315 9.6 43.8-3.2 3.2-3.3-2.5-5.4-39 2.3 39-3.2 4-3.1-4 2.3-39-5.5 39-3.3 2.5-3.2-3.2 9.6-43.7h6.4z"/>
10
+ <g id="b" fill="none" stroke-linejoin="round" stroke-width="1.3">
11
+ <path fill="#fff" stroke-width="1.2" d="m428.5 295.8-19.1 67.7 26.3 4 11.1-50.9-18.3-20.8z"/>
12
+ <path d="m422.2 319 2.3 5.5 12.4-11.8"/>
13
+ <path d="m430.8 305 2.6 24.3 7.9-10.4m-3.2 4 4.3 15m1.7-5.5-8.7 13.2m2.7 13.2-2.8-13.2-2.4-13.4-5.9 7.9-2.5-9.1-8.2 8.4 4.1 15.2 5.8-9.4 3.1 9.6 6-9.2"/>
14
+ <path d="m415 362 5.3-7.5 3.4 11.5 4.8-8 3.1 9.6"/>
15
+ </g>
16
+ <use xlink:href="#b" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
17
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3">
18
+ <path stroke-width="2.4" d="M450 393.8c20 0 39-1.6 50.2-4.7 4.7-.9 4.7-3.3 4.7-6.5 4.8-1.6 2.4-7.2 5.7-7.2-3.4 1-4-5.5-8-4.7 0-5.6-5.7-6.3-10.4-4.7-9.5 3.1-26.3 3.9-42.2 3.9-16-.8-32.6-.8-42.2-4-4.7-1.5-10.3-.8-10.3 4.8-4-.8-4.7 5.6-8 4.7 3.3 0 .8 5.7 5.6 7.2 0 3.2 0 5.6 4.8 6.5 11 3.1 30.2 4.7 50.1 4.7z"/>
19
+ <path d="M422.9 363.5c6.4.9 13.6 1.6 19.2.9 3.2 0 5.5 5.5-.9 6.3-5.5.7-14.3 0-19-.8a231 231 0 0 1-18.4-4c-5.6-2.4-1.6-7 1.6-6.4a105.3 105.3 0 0 0 17.5 4zm54.2 0c-6.4.9-13.6 1.6-19 .9-3.4 0-5.7 5.5.7 6.3 5.6.7 14.3 0 19-.8 4-.8 12.8-2.3 18.4-4 5.6-2.4 1.6-7-1.6-6.4a105.2 105.2 0 0 1-17.5 4z"/>
20
+ <path d="M403 360.4c-4.8-.9-7 4.7-5.5 7.9.7-1.6 4-1.6 4.7-3.2.9-2.4-.7-2.4.9-4.7zm19.2 14.7c0-3.2 3.1-2.8 3.1-6 0-1.5-.8-4-2.4-4a3.4 3.4 0 0 0-3.2 3.2c-.7 3.1 2.5 3.6 2.5 6.8zm22.7-9.1c4.7 0 4.2 6.3 2 9.5 0-2.3-4-3.2-4-4.8 0-2.4 3.6-2.4 2-4.7zm52-5.6c4.9-.9 7.2 4.7 5.6 7.9-.7-1.6-4-1.6-4.7-3.2-.9-2.4.7-2.4-.9-4.7zM478 375c0-3.2-3.2-2.8-3.2-6 0-1.5.8-4 2.4-4a3.4 3.4 0 0 1 3.2 3.2c.7 3.1-2.5 3.6-2.5 6.8zm-23-9c-4.7 0-4.2 6.3-2 9.5 0-2.3 4-3.2 4-4.8 0-2.4-3.6-2.4-2-4.7z"/>
21
+ <path stroke-width=".9" d="M404.7 362c1.6 0 4 .7 4.7 1.6l-4.7-1.6zm7.9 2.4c.8 0 4 .7 5.5 1.6l-5.5-1.6zm28.6 3.2c-1.5 0-4.7 0-5.5.7l5.5-.8zm-8.7 0c-.9-.9-4-.9-5.6 0h5.6zm62.8-5.6a8 8 0 0 0-4.7 1.6l4.7-1.6zm-7.8 2.4c-1 0-4 .7-5.6 1.6l5.6-1.6zm-28.7 3.2c1.5 0 4.7 0 5.6.7l-5.6-.8zm8.7 0c.9-.9 4-.9 5.6 0h-5.6z"/>
22
+ <g fill="#c09300" stroke="none">
23
+ <path d="M403.3 374.6c-.5-.1-.8-.6-.6-1 .1-.7.6-1 1-.8.4 0 .9.6.9.8l-.4.7-.2.1c0 .2-.4.2-.7.2zm55 3.9c-.2 0-.6-.5-.6-.7 0-.4.6-1 1-1l.8.4c.3.3.3.9-.1 1.2-.2.2-.8.2-1.1 0zm.3 2.5c-.4-.2-.5-.4-.6-.8 0-.5 0-.6.5-.9l.4-.2.4.2c.4.2.7.4.7.8 0 .3-.3.6-.7.8-.3.2-.4.2-.7 0z"/>
24
+ <path d="M407.8 370c-.4 0-.9.4-1.2.6-.6.1-1.4.5-2 0-.6-.1-1.4 0-1.5.8.1.7 1 1 1.6.6.4-.5 1.5-.9 1.7 0-.5.8-.4 1.7-.8 2.4 0 .5-.3.9-.5 1.3-.5 0-1 0-1.4.3a2 2 0 0 0-1.6.8c-.4.6-.8 1.2-.9 2 .1.6 1 .8 1.6.9l2 .6 3.2.9c1.6.5 3.2.7 4.8 1.1l.5.1c.7.2 1-.5 1-1l1-3.6c.2-.5.5-1.5-.4-1.3-.5.3-1 .8-1.6.8-.9 0-.4 1 0 1.3 0 .6-.2 1.3-.5 1.8-.6.3-1.2 0-1.8-.2-.5 0-1.7-.3-1.2-1l.5-1.8c.3-.6.3-1.3.5-2-.4-.7-1 .3-1.5.4-.4.2-1.6.3-1 1 .6.4.2 1.1 0 1.7 0 .7-.8 1-1.4.7-.6 0-1.5-.5-1-1.1l.5-1.8.7-2c0-.7.3-1.2.6-1.8 0-.7.5-1.3.5-2 0-.3-.2-.4-.4-.4zm-3.7 7.3a.3.3 0 0 1 .3 0c.2.2.2.4 0 .6l-.3.2c-.5 0-.6-.1-.6-.3 0-.1 0-.2.3-.3a1.4 1.4 0 0 1 .4-.2zm-1 5c-.5-.4-.4-.7.3-1.3.4-.2.5-.2.9.1.6.5.6.8 0 1.3-.2.2-.3.2-.5.2-.3 0-.4 0-.7-.2zm3 1a.9.9 0 0 1-.6-1.1c.2-.4.3-.5.9-.5.7 0 .8.1.9.7 0 .4 0 .5-.3.7a1 1 0 0 1-.8.2zm89.2 0c-.2-.1-.3-.2-.3-.5 0-.4.2-.7.8-.9.6-.3 1-.3 1.2.2.3.6.3.8-.1 1.2-.2.3-.3.3-.8.3s-.6 0-.8-.2zm-85 1.2c-.4 0-.6-.4-.6-.8 0-.3 0-.4.2-.6l.6-.2.6.1c.5.4.6.8.3 1.2-.3.4-.6.4-1.2.3zm21.8 1-.2-.3c0-.6 0-1.1.2-1.7.1-.5 0-1 .2-1.5l.4-2.8c0-.5 0-1 .2-1.4.1-.8 0-1.5.2-2.2 0-.3.3-1 .6-.6.4.6.9 1 1.4 1.5.4.3 0 .7-.3.8-.4.1-.5.6-.5 1l-.2 1.2c0 .7 0 1.3-.2 2l-.1 1.8-.2 1.2c0 .4 0 .9-.4 1.1-.3.2-.8.2-1-.1zm29.7-9.8-1.3 1.2c-.6.5.5.7.6 1.1.2.6.2 1.2.2 1.8.2.6.3 1.1.2 1.7 0 .7-.8.5-1.2.9-.5.2-.7.7-1 1a4.2 4.2 0 0 0-.4 1.6c0 .5-.3 1 0 1.4l.1.2h.5l1.5-.1c1.2-.2 2.5-.2 3.7-.3l2.2-.2c.6.1.9-.5.9-1-.4-.7-.1-1.4-.4-2-.2-.8-.1-1.5-.2-2.2 0-.6-.7-.8-1-.4-.4.4-1 .5-1.2.9-.3.6.6.6.8 1l.1 1.5c.1.6-.5.6-1 .7-.5.2-1.2.3-1.5-.3-.2-.5-.2-1-.2-1.5 0-1-.3-1.8-.3-2.7 0-1-.3-2.1-.3-3.2 0-.5-.1-1.2-.8-1.1zm-.6 8.2h.3v.8l-.3.1a3.3 3.3 0 0 1-.4.1 2.5 2.5 0 0 1-.2 0c-.2-.2-.2-.5.1-.8l.5-.2zm-30-9.2c-.3 0-.8.7-1.2.6-.9.1-.8 1-.1 1.3v.8c.1.8-.4 1.5-.3 2.3 0 .8-.3 1.7-.3 2.6-.3.9-.3 1.8-.4 2.7-.1.8-.7.5-1.2.3v-1c.1-.9-.5-1.1-1.2-1.2-.7 0-1-.5-.8-1.1.3-.4 1-.3 1.5-.3 1 .2.9-1.1.4-1.6-.4-.6-1.2-1-1.4-1.6 0-.8-.5-1.7-1.2-2.1-1.1-.1-2 .8-2.3 1.8-.5 0-1 .2-1.4.4-.7.2-1.7 1.4-.7 1.9.5.1 2.2.5 1.4 1.2-.4.8-1.2.8-1.9.6-.7 0-1.5-.4-1.5-1.2-.1-.8-.1-1.6-.4-2.3-.2-.8-1.1-.6-1.2.2-.7.5-.6 1.4-.1 2 .3.7 0 1.6-.3 2.2-.2 1-1.2 1-1.9 1.2-.3.2-1.6 0-1.1.7a4 4 0 0 0 2.4.3c.8 0 1.5-.7 2-1.4.5-.5 1.4-.2 2.2-.2.7 0 1.5.5 2.3.1.2-.5 1.2-1.5 1.5-.5 0 .9.7 1.3 1.5 1.2.9 0 .5.6.5 1.2 0 .9.7 1.4 1.5 1.8h.8c.7-.3 1.5-.6 1.8-1.4.3-.7.3-1.5.5-2.2.2-1.1.4-2.3.4-3.4.3-1 .2-2.1.4-3.2l.3-2.3c0-.5-.2-.5-.5-.4zm-6.7 4.1c.1 0 .2.2.2.5 0 .4.2.7.5.8v.3l-.8.2c-.5 0-.9-.2-1.2-.5l-.2-.2.3-.2.5-.5c.3-.3.5-.4.7-.4zm66-7.9a8.4 8.4 0 0 0-1.7.3c-1 0-1.5 1-.5 1.6.6 1.5 1.5-.4 2.5-.2 1.4.2 1.5 1.8 1.8 3 0 1.1.4 2.2.7 3.3 1 1.1-.7 1.8-1.4 1-.6-.7-2-1.5-2.7-.6-.9.4-1 1.6-1.7 2-1.2.3-1.3-1.2-2-1.8-.6-.9-1.7-1-2.6-1.2-.4-.9-.2-2.4-1-3-.8.3-2.2 1.7-1 2.4 1 1-.5 1.4-1 2-.8.9-1 2-1 3-1.3.7-1.5-.8-1.7-1.7 0-1.1-1-.8-1.7-.4-1 .4-1.4 1.3-2 2v2c.2.9 1.2.5 1.8.4 1-.4 1.4.7.6 1.3-.6.6-2.2.3-2 1.4h1.6c1-.3 2.2-1.1 2.3-2.3.2-1 1.7-.9 2.5-1.1 1-.3 2.3-.4 2.6 1 .7.7 2.2 1.5 3 .5a2.4 2.4 0 0 0 1.1-2.3c-.1-.8 1.3-.8 1.7-.3.5.8 2.1.6 2.9 0 .8-.5 1-1.6 2.2-1.6l5.4-1.5c1.4-.3-.2-1.2-.6-1.8-1-.5-2 1.7-3.2.6-1-.7-.9-2-1.2-3.1-.3-1.4-.2-3-1.2-4-.6-.7-1.6-.9-2.5-.9zm-6.8 9.5c.1 0 .3 0 .5.2.4.2.7.6.7 1 0 .2 0 .2-.3.3l-.5.2c-.2 0-.7-.3-.7-.5v-.4c-.2-.4-.2-.4 0-.6l.3-.2zm6.5.4c.4 0 .6 0 .8.3.1.4 0 .6-.4.8l-.5.2-.4-.3c-.2-.1-.3-.2-.3-.4 0-.3.4-.6.8-.7zm-9 0c.2 0 .3 0 .4.2.2.2.3.3.3.6v.6c0 .3 0 .2-.6.2s-.7 0-.7-.6c0-.4 0-.5.3-.7.1-.2.3-.2.4-.2zm-5.4 1.5a.6.6 0 0 1 .4.4c0 .3 0 .5-.2.6-.3.1-.8.2-1 0a.6.6 0 0 1 0-.1c-.2-.1-.2-.2 0-.3v-.1l.2-.3a.5.5 0 0 1 .6-.2zm9.2 1.2.5.1v.6h-1.2l-.1-.2c0-.2 0-.3.2-.4l.6-.1zm-17.1 4.8c-.1 0-.3-.1-.1-.2.1-.3.5-.4.8-.6a3.4 3.4 0 0 0 1.4-1c0-.4.4-.6.4-1l-.1-1.4a1.8 1.8 0 0 0-.8-1c-.3-.1-.7-.2-.8-.6 0-.3.3-.6.4-.9l.6-1.2c.3-.3.7 0 .8.2l.5 1c.3.3.5.6.6 1 .2.4.4.7.4 1l.2 1.3c0 .5 0 1.1-.2 1.6l-.6.8c-.3.3-.6.6-1 .7-.3.1-.5.4-.9.4H468l-.1-.1zm-6.9.4c-.2-.2-.3-.3-.3-.6s0-.3.3-.6c.4-.4.6-.4 1.4 0 .7.4 1 .4 1 .1.1-.2.5-.5 1-.5a.8.8 0 0 1 .5.2c.2.2.3.3.3.7 0 .5 0 .5-.3.8-.3.2-.3.2-.7.2a.9.9 0 0 1-.8-.6c0-.2 0-.3-.2-.1l-.2.1c-.2 0-.6.3-.8.5l-.5.1c-.4 0-.4 0-.7-.3zm-19.8-8.9c-.7 0-1.4.6-1.5 1.3.2.7.8 1.5.4 2.2.3 1-.8 1.4-1.5.9-.4-1-.6-2-1.3-3-.8-.2-1.1 1.1-1.7 1.6.3.7 1.1 1.4 1.2 2.3.2 1-.4 2-1.1 2.4-.7.7-1.7.5-2.5.6-1 .6.7.8 1.2.8 1 .1 2.1 0 3-.8.7-.3.6-1.7 1.5-1.8l4.8.3c.8.2 2.1-.1 2.7.5 0 1 1 1.8 1.9 2.2.5.2 1-.5 1.5-.6 1-.3.7-1.5 1.3-2h5c.2 0 .3-.5.6-.7l-.2-1.9c-.3-.8 0-1.8-.5-2.5-.9-.2-1.6.5-2.4.6-1 .4-1.7 1.3-1.8 2.3-.5.9-1.4-.2-1-1l-.1-1c-.5-.5-1.4-.3-2.1-.4l-3-.2c-1 0-1.9.1-2.7-.1-1 0-1-1-1-1.8a1 1 0 0 0-.7-.2zm2 3.7 1 .1h1.3c1 .2 2 .2 3 .2.2 0 .4.2.6.4v2c0 .3 0 .7-.2.8a.7.7 0 0 1-.2.2 1 1 0 0 1-.7-.5v-1.4a1.3 1.3 0 0 0-.7-.3l-2.6-.1-2-.1c-.3-.1-.7 0-.9-.4-.2-.2.1-.6.4-.7a2.3 2.3 0 0 1 1-.2zm11.3.3c.1 0 .2 0 .2.3l.2.5c0 .1 0 .2-.2.2-.5.2-1 .2-1.2 0 0-.1 0-.5.2-.6l.8-.4z"/>
25
+ </g>
26
+ </g>
27
+ <path stroke-width="1.1" d="M450 327.2c32.6-25 29.8-61.8 29.8-61.8l-2.5.2c-6.9 0-23.2-4-27-8.9-4 4.5-20.8 9-27.6 9l-2.5-.3s-2.9 36.7 29.8 61.8z"/>
28
+ <path stroke-width=".9" d="M477.2 268h-.8c-6.2 0-20.6-3.1-26.2-7.9-5.8 4.4-20.5 8-26.6 8a4.7 4.7 0 0 1-.8-.1 73.1 73.1 0 0 0 2.6 18.7 71 71 0 0 0 24.6 37.1 71.2 71.2 0 0 0 24.6-37.2 73.1 73.1 0 0 0 2.6-18.6z"/>
29
+ <path fill="#c09300" stroke="none" d="M439.4 265a62.2 62.2 0 0 1-16.6 3l.1 4.1a72.8 72.8 0 0 0 2.5 14.5 71 71 0 0 0 14 26.8V265zm20.6 0v49.2a71.1 71.1 0 0 0 14.6-27.6 73 73 0 0 0 2.5-14.5l.1-4h-.8c-3.8 0-10.4-1.2-16.4-3.2z"/>
30
+ <g stroke-width="1.3">
31
+ <path stroke-width="1.2" d="M462.3 253c.7.1-.9-3.5-.9-3.5 1.8 1.8 8.4 2.3 8.4 2.3-4-1.8-8-15.1-7.5-25.8.4-10.6-1.5-14.8-3-16.4-2-2-8.5-3.8-12.7-4-2.5-.1-2 1.8-2 1.8-4.5-1.1-9-1.6-11-.2-1.8 1.2-2.2 7.5-.8 6.4 3.3-2.7 6.2-.2 8.2 2.7 1.8 2.5 1.7 9.7-.9 18.2a60 60 0 0 1-10 17.7c4 0 9.6-3.5 9.6-3.5l-1.3 5.5c4.2-2 7.5-5.1 7.5-5.1l4 4.2c1.3-1.8 4-4.2 4-4.2s3.3 3.5 8.4 4z"/>
32
+ <path fill="none" d="M446.1 227.6s-2.2 16.4-6.4 21m10-21.5s-1 16.7-3.8 22m6.9-21.3s0 18.2 1 21.3m3-20.4s.8 15.3 4.6 20.8"/>
33
+ <path fill="#c09300" stroke-width=".3" d="M442 219.6a8 8 0 0 0-1-3.3c-2-3-4.9-5.4-8.2-2.7 0 0 1.1-3.5 3.6-3.6 1.8-.1 6.1 1.4 9.9 7.8 0 0-2.8-.6-3.5 0-1.2 1-.7 1.8-.7 1.8z"/>
34
+ <path fill="#c09300" stroke-width=".3" d="M432.4 209.3c.3-1 .7-1.8 1.3-2.1 2-1.4 6.4-1 10.9.2 0 0-.4-1.9 2-1.8 4.2.2 10.6 2 12.6 4a7.9 7.9 0 0 1 1.5 2.4c-1-1.4-3.8-1.3-4.5-1.2-1 .1-1.7 0-3.1.4-.7.2-1.7.4-2.3.8-.4.4-.8 1.6-1.4 1.6-1 0-1-.2-1.3-.5-.3-.5-.5-1.1-.9-1-1 .1-2.8-.7-5-2.5-2.3-1.8-3.2-2.2-6-2-3 .2-3.8 1.9-3.8 1.9v-.2z"/>
35
+ <circle cx="448.8" cy="210.7" r="1.2" stroke="none"/>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-eh" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-158.7 0H524v512h-682.7z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#a)" transform="translate(148.8) scale(.94)">
8
+ <path d="M-158.3 0h680.9v255.3h-680.9z"/>
9
+ <path fill="#007a3d" d="M-158.3 255.3h680.9v255.3h-680.9z"/>
10
+ <path fill="#fff" d="M-158.3 148.9h680.9v212.8h-680.9z"/>
11
+ <path fill="#c4111b" d="m-158.3 0 340.4 255.3-340.4 255.3Z"/>
12
+ <circle cx="352.3" cy="255.3" r="68.1" fill="#c4111b"/>
13
+ <circle cx="377.9" cy="255.3" r="68.1" fill="#fff"/>
14
+ <path fill="#c4111b" d="m334 296.5 29.1-20.7 28.8 21-10.8-34 29-20.9-35.7-.2-11-34-11.2 33.9-35.7-.2 28.7 21.2-11.1 34z"/>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-er" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#be0027" d="M0 0h640v480H0z"/>
4
+ <path fill="#b4d7f4" d="m0 480 640-.3V240L0 480z"/>
5
+ <path fill="#239e46" d="m0 0 640 .3V240L0 0z"/>
6
+ <path fill="#f3e295" d="M186.2 360.4c-10.7 3-16.8 11.3-16.7 19.1l52.8-.2c.4-8.4-6.5-16.2-17-19.3 51.6-1 96.4-20.4 104.6-32.8-8-3.5-17.4 2.1-24 .8 15.7-7.3 63-37.9 55.3-70.7-6 18.2-24 33.3-31.8 37.4 17.7-26.8 41.8-54.8 20.9-76.4 1 12.5-8 26.3-12 27.4 10.3-28.4 20-64-2.1-87.4 2.9 8.5 1.7 32.4-2.3 33.5-1.2-19.3-4.5-59.8-24.8-59.3 6.4 5.8 9.2 21.4 9.4 37.2a57.5 57.5 0 0 0-21.1-27 118.3 118.3 0 0 0-41.5-42.2c1.8 12.7 3.3 22.7 21 35.9-9.2-.6-18.4-18.1-28.3-18.6-7.9-.4-14 7.1-26.9 2.8 1.4 4.2 7.4 6.1 8.7 9.2-2.8 2-9.3-.3-14.7-3 7.5 10 19 16 28.8 14 11.7-2.2 24.2-1 36.2 5.8a63 63 0 0 1-22.5.6c6.9 7 11.5 11.7 23.6 11.6 10.7 0 16.4-5.8 19.1-2.2 6.8 8 11.3 16 17 25.4-12.5 1.3-8.7-14.1-22.6-22-7.9 16 9 35.2 20.3 43.2a65 65 0 0 0 7.1 31.5c3.5 6.5 8 13.2 6.3 27.9-6.9-5-13.5-21.8-11-35.1-8.6 2.3-12 17.4-8 25 3 5.7 5 16.8 1.6 21.7-3.4 4.6-3.7 4-3.7 14 .1 5.8-3.2 12.8-8.5 17.7a35.5 35.5 0 0 0 1.1-15.8c-4.2 7.2-14.9 14.6-18.2 22.4-3.3 7.7-4.1 21.2-20 24.3-20.6 4-27.7 7.6-40.8 13-1.5-10 2.9-31 11.3-29.7 8.1 1.4 33-8.6 24-29.5-1.7 6.6-7.5 13-13.9 13.3 6.9-8.8 19-18 13.1-32.8a42.6 42.6 0 0 1-16.3 18c8.4-16 1-21-9-7.6-3.8 5.1-6.1 15.4-8.5 28.5-4-10.6-3.7-24.6-8.4-36-4.8-12.3 6.5-15.5 11.8-14.5 13 3.5 34.9 3.5 33.3-18.1-5.7 7.3-15.5 9.5-26.2 7 12-8.8 21.4-25.3 8-34a31 31 0 0 1-16.9 24.1 50.8 50.8 0 0 1-.3-24.8c-5.2 5.6-9 17-12.1 30.2-.3-13 2.2-22.3 4-29.3 2.8-10.1 9.6-3.5 20-2.8 10.2.6 24-5 21.4-18.7-3.4 5.5-10.5 7.6-17.7 7 8.7-5.3 23.8-14.6 15.5-29-3.5 5.4-4.6 10-14.7 11.7 2.6-6 3-14.7 11-18-14-2.9-22 6.3-26.2 20.7-1.6-10-3.6-13.6-4-21 7.6-8.3 8.4-24.8-8-28.4a35 35 0 0 0 1.2 17.4c-7.7-4.6-18.5-7.1-25.8-.7 5 5.3 12.5 10 24.2 4.2-2.8 9-10 7.5-19.8 4 6 11.3 13.6 13.3 22 12 4.4 11.6 4.6 20.4-8.3 37.2.6-10.4-.1-18.2-8.4-26.7-7.2-7-13 .3-1.8 15.8-6.8-5-14.4-15-16.7-25.1-2.2 12.4-.2 27.1 6.7 35.4-3.3 3.5-7-.4-12.5-9 2 27.4 13.7 32.7 29.4 26.6.4 15 .4 28.9 1.3 47-9.1-13.2-20.7-23-27.1-25.4-2 7.3 5.5 17 9.8 22.3-6.5-1.4-20.5-12-20.5-12-1.4 12.1 14.3 23.4 24.5 28.4-12-.5-17.3-5-25-12.4.2 33.8 36.6 27.9 43.5 22.7l3 52.5c-10.3-1.8-9.5-5-18.3-5.7-24.5-1-43.9-29.4-50.3-50.3-1.9 3.4-.4 7-2.1 11.3-4-10.3-9-23.6-15.9-29.8 1.8 6 2 12.1 1.4 23.3-2.4-7.2-4.5-9.5-4.7-18 .1-6.5 6.3-11.3 6-20.5-.3-6.7-6.4-21.3-7.3-32.5-3 11.6-4.8 23.8-9.4 31 2.3-12.4 1.6-21 5.4-29.3 4.4-8.7 8.1-16.6 5.2-25.4-2.8 3.4-1.9 6.5-9 14.8-1.5-9 9.2-23.5 19.6-29.3 7.3-3.8 16.5-17.6 10.5-27-6.9 5-10 11.6-19.7 23 7-27 25-34.2 46.5-34.3 4.7 0 14.3-1.7 17-8-6 2.3-13.2 2.6-19.6 1.4 4.7-6.9 14.4-6 23.6-6 7.1 0 18.3-1 22.8-11.2a50.8 50.8 0 0 1-31 1.9c13.7-7 35-7.8 46-17.1-12.5-9.3-43.7 2.2-63.4 15.7 5.5-5 14.2-14 19-21.2-10.8-5.2-38 25-47.4 43-9 5-12.5 13-16 18.5 4.7-16.1 5.2-27.8 9.2-41C80 138 92.6 194.6 86 208.2c.8-15 .1-34.1-6-44-9.4 7.2-10.2 49.5-1.4 84.7-3.2-9.4-9.2-18.2-11.1-29.7-14 25.4 8.2 55.5 26.7 79.2-14-7.3-27.7-22.9-36.8-36 2.5 45.6 50 55 57.4 66.2-10-4.7-29.1-13.9-37.3-4.2a99 99 0 0 1 32.3 12.1c12.4 15.4 35.7 22.2 76.4 23.9z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-es-ct" viewBox="0 0 640 480">
2
+ <path fill="#fcdd09" d="M0 0h640v480H0z"/>
3
+ <path stroke="#da121a" stroke-width="60" d="M0 90h810m0 120H0m0 120h810m0 120H0" transform="scale(.79012 .88889)"/>
4
+ </svg>
@@ -0,0 +1,187 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-es-ga" viewBox="0 0 640 480">
2
+ <g font-size="12">
3
+ <path fill="#fff" fill-rule="evenodd" d="M0 0h640v480H0z"/>
4
+ <path fill="#09c" d="M640 410.1 91.7-.1H0v68.4L550.4 480H640v-69.8"/>
5
+ </g>
6
+ <g font-size="12">
7
+ <path fill="#005bbf" d="M316.4 352.3c-64 0-62-60.3-62-60.3v-92.8h124V292s2.2 60.3-62 60.3"/>
8
+ <path fill="none" stroke="#000" d="M296.6 401.2c-60 0-58.1-56.5-58.1-56.5v-86.9h116.3v86.9s2 56.5-58.2 56.5z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
9
+ <path fill="#d81126" d="M315.8 141s-13.2-6.5-25.7 3c0 0-22.5-3.3-24.2 18.3 0 .8-.2 2.4.2 3 .5.4.9 1.3.9 1.9 0 .6.3 1 .5 1.2 0 .3.4.7.6 1.8 0 1.2-.3 1.7 1 2.9 1 1 1 4.3 1 5.3s.6 3.5 1 4c.6.6 1.4 2 1.4 3.2 0 1 .5 4.2.2 5-.2.8 1.3 1.8 2.6 2.2 1.3.4 17 5.6 40.1 5.1 23-.3 31.4-1.6 41-5a2.3 2.3 0 0 0 1.6-2.4 7 7 0 0 1 .3-3.3c.4-.6 3.2-5 2.6-5.7-.6-.9-.6-2.6 0-3.2.5-.7 2.2-4 2.5-5.3.3-1.3.4-3 1-3.3.6-.5.8-2 1-2.4a4.3 4.3 0 0 1 1.2-1.7s1-5.5.4-8.1c-.7-2.7-4.8-14.2-21-11.8 0 0-12.2-9.3-30.2-4.8"/>
10
+ <path fill="none" stroke="#000" stroke-width="1.5" d="M296.1 203.2s-12.4-6-24.1 2.8c0 0-21.1-3-22.7 17.2 0 .8-.2 2.3.2 2.8.4.4.8 1.2.8 1.8 0 .6.3.9.5 1.1 0 .3.4.7.5 1.7 0 1.1-.2 1.6.9 2.7 1 1 1 4.1 1 5 0 .9.6 3.3 1 3.8.5.5 1.3 1.8 1.3 2.9 0 1 .4 4 .2 4.7-.2.8 1.2 1.7 2.4 2.1 1.2.4 16 5.2 37.6 4.8 21.6-.3 29.4-1.5 38.4-4.7a2.2 2.2 0 0 0 1.5-2.3c-.2-.6 0-2.6.3-3.1.4-.5 3-4.6 2.4-5.3-.5-.8-.5-2.4 0-3 .5-.7 2.1-3.7 2.4-5 .3-1.2.4-2.7 1-3.1.5-.4.7-1.9.8-2.2a4 4 0 0 1 1.2-1.6s1-5.1.4-7.6c-.7-2.5-4.5-13.3-19.8-11 0 0-11.4-8.7-28.2-4.5z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
11
+ <path fill="#bcac0b" d="M360.1 181c-50.1-15.8-89-.7-89-.7s.5 1.7.9 2.3 1 1.8 1 2.7v3c0 .8-.4 4 2.4 3.9 0 0 35-13.7 80.4.7 0 0 1.3-1 1.3-2.6a8.5 8.5 0 0 1 1-4.3c.6-.9 2-3.6 2-5"/>
12
+ <path fill="#c8b100" fill-opacity=".9" d="M313.6 264.9h-21.9s-2.1 19.5 14.8 25.5v1.7h3.5v2.4s-6.2 5.5-.8 12v1.8h.9v3.2h1v5s-.8 18.2-18.7 27v1H340v-1c-17.9-8.7-18.7-27-18.7-27v-5h1v-3.2h1v-1.9c5.2-6.4-1-12-1-12v-2.3h3.7v-1.7c16.7-6 14.6-25.5 14.6-25.5h-27.1"/>
13
+ <path fill="none" stroke="#000" d="M294 319.3h-20.5s-2 18.3 13.8 23.9v1.6h3.3v2.2s-5.8 5.2-.7 11.2v1.8h.8v3h1v4.7s-.8 17-17.6 25.2v1h44.7v-1c-16.7-8.1-17.5-25.2-17.5-25.2V363h1v-3h.8v-1.8c5-6-.8-11.2-.8-11.2v-2.2h3.4v-1.6c15.7-5.6 13.7-23.9 13.7-23.9H294z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
14
+ <path fill="none" stroke="#000" stroke-width=".3" d="M286.6 342.9h19.7m-19 1.5h18.4m-15 2.5h11.5m-12.3 11.5H303m-12.4 1.4h11.6m-11.6 2.8h11.5m-18.5 23.2h25.5m-32.7 5.9h40m-41.5.9h43" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
15
+ <path fill="#ccc" d="M316.4 263.8a14 14 0 1 0 0-27.9 13.9 13.9 0 0 0 0 27.8"/>
16
+ <path fill="none" stroke="#000" d="M296.6 318.3a13 13 0 1 0 0-26.1 13 13 0 0 0 0 26z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
17
+ <path fill="#ccc" d="M284 223h-8.6v-8.8h-7.7v8.7H259v7.7h8.7v8.5h7.7v-8.5h8.5V223"/>
18
+ <path fill="none" stroke="#000" d="M266.3 280h-8.1v-8.2H251v8.2h-8.2v7.2h8.2v8h7.2v-8h8V280" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
19
+ <path fill="#ccc" d="M374.2 223h-8.7v-8.8H358v8.7H349v7.7h8.8v8.5h7.6v-8.5h8.7V223"/>
20
+ <path fill="none" stroke="#000" d="M350.8 280h-8.1v-8.2h-7.2v8.2h-8.2v7.2h8.2v8h7.2v-8h8.1V280" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
21
+ <path fill="#ccc" d="M328.5 212h-8.7v-8.6H312v8.5h-8.5v7.7h8.5v8.8h7.7v-8.8h8.7V212"/>
22
+ <path fill="none" stroke="#000" d="M308 269.7h-8.2v-8h-7.2v8h-8v7.2h8v8.2h7.2v-8.2h8.2v-7.2" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
23
+ <path fill="#ccc" d="M284 260.5h-8.6v-8.8h-7.7v8.8H259v7.7h8.7v8.5h7.7v-8.5h8.5v-7.7"/>
24
+ <path fill="none" stroke="#000" d="M266.3 315.2h-8.1V307H251v8.2h-8.2v7.2h8.2v8h7.2v-8h8v-7.2" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
25
+ <path fill="#ccc" d="M374.2 260.5h-8.7v-8.8H358v8.8H349v7.7h8.8v8.5h7.6v-8.5h8.7v-7.7"/>
26
+ <path fill="none" stroke="#000" d="M350.8 315.2h-8.1V307h-7.2v8.2h-8.2v7.2h8.2v8h7.2v-8h8.1v-7.2" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
27
+ <path fill="#ccc" d="M284 298.4h-8.6v-8.6h-7.7v8.6H259v7.7h8.7v8.6h7.7v-8.5h8.5v-7.8"/>
28
+ <path fill="none" stroke="#000" d="M266.3 350.7h-8.1v-8.1H251v8.1h-8.2v7.2h8.2v8.1h7.2v-8h8v-7.3" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
29
+ <path fill="#ccc" d="M374.2 298.4h-8.7v-8.6H358v8.6H349v7.7h8.8v8.6h7.6v-8.5h8.7v-7.8"/>
30
+ <path fill="none" stroke="#000" d="M350.8 350.7h-8.1v-8.1h-7.2v8.1h-8.2v7.2h8.2v8.1h7.2v-8h8.1v-7.3" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
31
+ <path fill="#005bbf" d="M316.3 122.4a8.4 8.4 0 1 0 0-16.8 8.4 8.4 0 0 0 0 16.8"/>
32
+ <path fill="none" stroke="#000" d="M296.5 185.8a7.8 7.8 0 1 0 0-15.7 7.8 7.8 0 0 0 0 15.7z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
33
+ <path fill="#fc0" d="M324 112.5h-6.8v-11h2.7v-2.2h-2.7v-2.7h-2.1v2.6h-2.7v2.2h2.6v11.1h-6.4v1.5H324v-1.5"/>
34
+ <path fill="#bcac0b" stroke="#000" stroke-width=".5" d="M303.8 176.6h-6.4v-10.4h2.5v-2h-2.5v-2.5h-2v2.4h-2.5v2.1h2.4v10.4h-6v1.4h14.5v-1.4" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
35
+ <path fill="#fc0" d="M282.9 132.3s6.2-.7 9.7.7c0 0-4 4.7-3.2 10.8a15 15 0 0 0 2 6.4c.9 1.4 1.8 4.6 1.3 7h1.2s1.1-5-.8-7.8a10.7 10.7 0 0 1-1-11c2-4 4.9-5.7 4.9-5.7 3.2 1.3 10.2 0 12.1-1.4 2-1.4 3-3.4-.6-3.5-3.8-.2-10-.1-14.2 3.1 0 0-2.2-2.6-13.4-1.4-11.2 1.3-19.2 6-21.8 16.1-1.3 5.2 3.5 16 7.9 18.5 0 0-.1-1.7.3-3 0 0-7.5-8.4-5.3-16.2 2.3-7.7 11.3-12.8 20.9-12.6"/>
36
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M265.2 195.1s5.8-.6 9.1.7c0 0-3.8 4.4-3 10.1.4 3 1 4.5 1.9 6 .8 1.3 1.7 4.3 1.2 6.6h1.1s1.1-4.8-.7-7.4a10 10 0 0 1-1-10.3c1.9-3.8 4.6-5.3 4.6-5.3 3 1.2 9.6 0 11.4-1.3 1.9-1.3 2.8-3.2-.6-3.3-3.5-.2-9.3-.1-13.3 2.9 0 0-2.1-2.4-12.6-1.3-10.5 1.2-18 5.7-20.4 15.1-1.2 4.8 3.3 14.9 7.4 17.3 0 0-.1-1.6.3-2.8 0 0-7-7.9-5-15.2 2.2-7.2 10.6-12 19.6-11.8z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
37
+ <path fill="#fff" d="M303.9 130.8c2-.2 3.5-.5 3.4-.8 0-.3-1.6-.3-3.5-.2-2 .1-3.4.6-3.4.8 0 .3 1.6.3 3.5.2"/>
38
+ <path fill="none" stroke="#000" stroke-width=".7" d="M278.3 195.4s-2 2 0 0 6.4-3.2 8.9-2.7c2.4.6-.5.9-1.3 1-.8 0-2.4.3-4.8 0" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
39
+ <path fill="#fc0" d="M349.5 133s-6-.7-9.7.7a15.6 15.6 0 0 1 1.3 17c-1 1.7-1.9 4.8-1.4 7.2h-1s-1.3-5 .7-7.9a10.7 10.7 0 0 0 1-10.9 13.4 13.5 0 0 0-4.8-5.7c-3.3 1.3-10.4 0-12.3-1.4-2-1.4-3-3.3.8-3.6 3.6-.2 9.9 0 14.1 3.2 0 0 2.2-2.6 13.5-1.3 11 1.1 19.2 6 21.6 16 1.3 5-3.4 15.9-7.8 18.4 0 0 0-1.7-.3-3 0 0 7.5-8.3 5.3-16-2.3-7.9-11.2-12.9-21-12.7"/>
40
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M327.7 195.8s-5.7-.7-9.1.6a14.6 14.6 0 0 1 1.2 16c-.9 1.5-1.8 4.4-1.3 6.7h-1s-1.2-4.7.7-7.4a10 10 0 0 0 .9-10.2 12.6 12.6 0 0 0-4.5-5.4c-3.1 1.3-9.7 0-11.5-1.3-1.8-1.3-2.8-3.1.7-3.3 3.4-.2 9.3-.1 13.3 3 0 0 2-2.5 12.6-1.3 10.4 1.1 18 5.6 20.3 15 1.2 4.8-3.2 14.9-7.3 17.3 0 0 0-1.6-.3-2.8 0 0 7-7.8 4.9-15.1-2.1-7.3-10.5-12-19.6-11.8z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
41
+ <path fill="#fff" d="M328.5 131.4c-1.9 0-3.4-.4-3.4-.7 0-.2 1.6-.3 3.5-.2 2 .2 3.6.5 3.6.7 0 .3-1.6.4-3.7.2"/>
42
+ <path fill="none" stroke="#000" stroke-width=".7" d="M314.6 196s2.1 2 0 0c-2-1.9-6.4-3.2-8.8-2.6-2.5.5.4.8 1.2.9.9 0 2.5.4 4.9 0" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
43
+ <path fill="#fc0" d="M310.5 126V150c-.2 2.3 2.9 5.7 5.1 6.6 0 0 5.4-1.7 5.7-6.6v-25h-1.8v21.7c0 2.1-1.5 6.2-3.6 6.8 0 0-3.8-.6-4-6.8v-21.1l-1.4.6"/>
44
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M291.1 189.3v22.3c-.2 2.2 2.7 5.3 4.8 6.2 0 0 5-1.6 5.3-6.2v-23.5h-1.7v20.4c0 2-1.4 5.8-3.3 6.4 0 0-3.6-.6-3.8-6.4v-19.8l-1.3.6" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
45
+ <path fill="#fff" d="M258 158.7a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
46
+ <path fill="none" stroke="#000" d="M241.8 219.8a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
47
+ <path fill="#fff" d="M256.1 152.1a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
48
+ <path fill="none" stroke="#000" d="M240.1 213.7a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
49
+ <path fill="#fff" d="M257 144.2a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
50
+ <path fill="none" stroke="#000" d="M241 206.3a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
51
+ <path fill="#fff" d="M261.4 137.6a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
52
+ <path fill="none" stroke="#000" d="M245.1 200.1a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
53
+ <path fill="#fff" d="M266.7 132.8a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
54
+ <path fill="none" stroke="#000" d="M250 195.6a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
55
+ <path fill="#fff" d="M273.5 130.1a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
56
+ <path fill="none" stroke="#000" d="M256.4 193.1a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
57
+ <path fill="#fff" d="M280.5 129a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.7"/>
58
+ <path fill="none" stroke="#000" d="M263 192a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
59
+ <path fill="#fff" d="M287.3 128.5a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
60
+ <path fill="none" stroke="#000" d="M269.3 191.6a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
61
+ <path fill="#fff" d="M293.3 129a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.8"/>
62
+ <path fill="none" stroke="#000" d="M275 192a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
63
+ <path fill="#fff" d="M310.4 126.8a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
64
+ <path fill="none" stroke="#000" d="M291 190a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
65
+ <path fill="#fff" d="M316 128.3a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
66
+ <path fill="none" stroke="#000" d="M296.2 191.4a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
67
+ <path fill="#fff" d="M316 149.5a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8"/>
68
+ <path fill="none" stroke="#000" d="M296.2 211.2a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
69
+ <path fill="#fff" d="M374.7 160.5a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
70
+ <path fill="none" stroke="#000" d="M351.3 221.5a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
71
+ <path fill="#fff" d="M376.2 153.5a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.6"/>
72
+ <path fill="none" stroke="#000" d="M352.7 215a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
73
+ <path fill="#fff" d="M375 146a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.7"/>
74
+ <path fill="none" stroke="#000" d="M351.6 208a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
75
+ <path fill="#fff" d="M372 139.1a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
76
+ <path fill="none" stroke="#000" d="M348.7 201.5a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
77
+ <path fill="#fff" d="M366.7 134.3a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.7"/>
78
+ <path fill="none" stroke="#000" d="M343.8 197a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
79
+ <path fill="#fff" d="M360.4 131.1a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
80
+ <path fill="none" stroke="#000" d="M337.9 194a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
81
+ <path fill="#fff" d="M353.2 129.5a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
82
+ <path fill="none" stroke="#000" d="M331.1 192.5a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
83
+ <path fill="#fff" d="M346.7 129a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
84
+ <path fill="none" stroke="#000" d="M325 192a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
85
+ <path fill="#fff" d="M340.7 128.2a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
86
+ <path fill="none" stroke="#000" d="M319.4 191.3a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
87
+ <path fill="#fff" d="M344.5 151.4a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.8"/>
88
+ <path fill="none" stroke="#000" d="M323 213a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
89
+ <path fill="#fff" d="M346 146a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.6"/>
90
+ <path fill="none" stroke="#000" d="M324.4 208a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
91
+ <path fill="#fff" d="M322.1 127.8a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8"/>
92
+ <path fill="none" stroke="#000" d="M302 190.9a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
93
+ <path fill="#fff" d="M308.3 127a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.6"/>
94
+ <path fill="none" stroke="#000" d="M289 190.1a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
95
+ <path fill="#fff" d="M304.9 126.8a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
96
+ <path fill="none" stroke="#000" d="M285.8 190a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
97
+ <path fill="#fff" d="M286.7 151.5a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
98
+ <path fill="none" stroke="#000" d="M268.8 213.1a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
99
+ <path fill="#fff" d="M285.9 144.8a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8"/>
100
+ <path fill="none" stroke="#000" d="M268 206.8a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
101
+ <path fill="#fff" d="M288 138.2a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
102
+ <path fill="none" stroke="#000" d="M270 200.6a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
103
+ <path fill="#fff" d="M300.5 127.5a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
104
+ <path fill="none" stroke="#000" d="M281.7 190.6a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
105
+ <path fill="#fff" d="M295.7 129.4a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
106
+ <path fill="none" stroke="#000" d="M277.2 192.4a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
107
+ <path fill="#fff" d="M291.2 133.2a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
108
+ <path fill="none" stroke="#000" d="M273 196a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
109
+ <path fill="#fff" d="M316 131.5a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
110
+ <path fill="none" stroke="#000" d="M296.2 194.4a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
111
+ <path fill="#fff" d="M316 137a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8"/>
112
+ <path fill="none" stroke="#000" d="M296.2 199.5a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
113
+ <path fill="#fff" d="M316 142.7a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
114
+ <path fill="none" stroke="#000" d="M296.2 204.9a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
115
+ <path fill="#fff" d="M325.8 127a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.8"/>
116
+ <path fill="none" stroke="#000" d="M305.4 190.2a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
117
+ <path fill="#fff" d="M329.6 126.2a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
118
+ <path fill="none" stroke="#000" d="M309 189.4a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
119
+ <path fill="#fff" d="M334 126.8a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.7"/>
120
+ <path fill="none" stroke="#000" d="M313.2 190a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
121
+ <path fill="#fff" d="M345 139a2.9 2.9 0 1 0 0-5.6 2.9 2.9 0 0 0 0 5.6"/>
122
+ <path fill="none" stroke="#000" d="M323.5 201.4a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
123
+ <path fill="#fff" d="M338.5 129.5a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8"/>
124
+ <path fill="none" stroke="#000" d="M317.3 192.5a2.7 2.7 0 1 0 0-5.4 2.7 2.7 0 0 0 0 5.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
125
+ <path fill="#fff" d="M342.5 133.4a2.9 2.9 0 1 0 0-5.7 2.9 2.9 0 0 0 0 5.7"/>
126
+ <path fill="none" stroke="#000" d="M321.1 196.1a2.7 2.7 0 1 0 0-5.3 2.7 2.7 0 0 0 0 5.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
127
+ <path fill="#fff" d="m315.7 176-7.4 3.8 6.7 4.3 8-4-7.3-4.2"/>
128
+ <path fill="none" stroke="#000" stroke-width=".5" d="m296 236-7 3.6 6.3 4 7.5-3.8-6.8-3.8" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
129
+ <path fill="#fff" d="m299.3 176.8-11.2 1.7s-.2 6.1.3 7.5l11.7-1.5s.5-5.7-.8-7.7"/>
130
+ <path fill="none" stroke="#000" stroke-width=".5" d="m280.6 236.8-10.5 1.6s-.2 5.7.3 7l10.9-1.4s.5-5.3-.7-7.2z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
131
+ <path fill="#058e6e" fill-opacity=".9" d="M298.1 179s-6.8.6-8.5 1.2v4s4.6-.7 8.6-1V179"/>
132
+ <path fill="none" stroke="#000" stroke-width=".5" d="M279.5 238.8s-6.4.6-8 1.2v3.8s4.3-.7 8.1-1l-.1-4" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
133
+ <path fill="#fff" d="m331.4 177 11.3 1.8s.1 6.1-.4 7.5l-11.5-1.5s-.6-5.6.6-7.7"/>
134
+ <path fill="none" stroke="#000" stroke-width=".5" d="m310.7 237 10.6 1.7s.1 5.7-.4 7l-10.8-1.4s-.5-5.3.6-7.2z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
135
+ <path fill="#058e6e" fill-opacity=".9" d="M332.8 179.3s6.7.6 8.4 1.2v4.1s-4.6-.8-8.6-1v-4.3"/>
136
+ <path fill="none" stroke="#000" stroke-width=".5" d="M312 239.1s6.3.6 7.9 1.2l-.1 3.8s-4.2-.7-8-1l.1-4" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
137
+ <path fill="none" stroke="#000" stroke-width=".5" d="M254.2 241.8s37-13.7 84.2 1.2m-82.7 6.7s35.9-13.4 80 .6m-79.8-9 7.2 2.1-5 5.4" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
138
+ <path fill="red" d="m273 188.5 4.5-3.7-5-1s.7.8.6 1.5v3.2"/>
139
+ <path fill="none" stroke="#000" stroke-width=".5" d="m256 247.8 4.2-3.5-4.7-.9s.6.7.5 1.4v3zM337.6 242.7l-7.7 1.4 5.2 6" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
140
+ <path fill="red" d="m357.7 188.8-3.1-3.2 4.4-.5s-1.2.8-1.2 1.5.2 1.6 0 2.2"/>
141
+ <path fill="none" stroke="#000" stroke-width=".5" d="m335.3 248-2.9-3 4.2-.4s-1.2.7-1.2 1.4c0 .6.2 1.5 0 2zM265.3 241.8c.6 0 1.2-.4 1.2-1 0-.4-.6-.9-1.2-.9-.7 0-1.2.5-1.2 1s.5 1 1.2 1zm20.6-2.3c.7 0 1.2-.4 1.2-1 0-.5-.5-.9-1.2-.9s-1.2.4-1.2 1c0 .5.5.9 1.2.9zm0 3.3c.7 0 1.2-.4 1.2-.9s-.5-1-1.2-1-1.2.5-1.2 1 .5 1 1.2 1zm20.3-3.1c.6 0 1.2-.5 1.2-1s-.6-1-1.2-1c-.7 0-1.2.5-1.2 1s.5 1 1.2 1zm20.1 3.7c.7 0 1.2-.5 1.2-1s-.5-1-1.2-1-1.2.5-1.2 1 .5 1 1.2 1zm-.3 2.6c.6 0 1.2-.4 1.2-1 0-.4-.6-.9-1.2-.9-.7 0-1.2.5-1.2 1s.5 1 1.2 1zm-19.8-3c.6 0 1.2-.4 1.2-1 0-.5-.6-.9-1.2-.9-.7 0-1.2.4-1.2 1 0 .5.5 1 1.2 1zm-40 3c.7 0 1.3-.4 1.3-1 0-.4-.6-.9-1.2-.9-.7 0-1.2.5-1.2 1s.5 1 1.2 1z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
142
+ <path fill="#fc0" d="M270.5 170.6s.1 7.7 5.1 6.6 4.5-7.3 4.8-7.7c.5-.3 1-.3 1-.3s.6 6.1 5.3 5.4c4.7-.8 4.5-8.3 4-9.5l1-.4s1.8 8.8 7.2 7.5c5.3-1.3 4.8-6.8 4.8-6.8h.4s1.2 6 5.6 5.5c4.2-.3 5-1.7 4.5-7.7l3-.5s-1.1 8.6 4 8.6c5.2-.4 5.4-4.4 5.7-5.2h.9s.2 6.1 4.6 6.1c4.2 0 5-5.1 5-7.1l4.4.2s-4.5 8 2 9c6.4 1.1 6.6-5 6.6-5h1.3s-.2 8 3.3 8.1c3.6.2 5.7-1 6-7l2 .7s-1.6 9.7-8.3 8c-3.6-1-4.7-5-4.5-6.1 0 0-2.5 4.4-7.4 3-4.8-1.4-4.2-4.9-4.2-6 0 0-3 5.4-7 4.2-3.6-1-5-2.3-5-4.9 0 0-1.8 4.2-5.3 4-3.6-.1-5.4-2.4-5.6-4.3 0 0-.7 3.9-5.5 4.2-3.2 0-5-1.5-5.8-3.7 0 0-1 3.9-5.5 4.5-2.9.3-5.8-1.3-6.4-4 0 0-.8 5.3-5.4 6-4.6.7-5.7-2.5-5.7-2.5s-1 4-4.7 5c-3.7.9-6.2-.7-7.2-4.5-.8-3.7-.5-5.3-.5-5.3l1.5 2"/>
143
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M253.6 231s.1 7.2 4.8 6.2 4.2-6.9 4.5-7.2c.4-.3.9-.3.9-.3s.6 5.7 5 5c4.4-.7 4.2-7.7 3.7-8.9l1-.3s1.7 8.2 6.7 7c5-1.2 4.5-6.4 4.5-6.4h.4s1.1 5.6 5.2 5.2c4-.3 4.8-1.6 4.3-7.2l2.7-.5s-1 8 3.9 8c4.8-.3 5-4.1 5.3-4.8h.8s.2 5.7 4.3 5.7c4 0 4.8-4.8 4.8-6.7l4 .2s-4.2 7.5 1.9 8.5c6 1 6.2-4.8 6.2-4.8h1.2s-.2 7.5 3.1 7.7c3.4.1 5.4-1 5.7-6.6l1.9.7s-1.6 9-7.9 7.4c-3.3-.9-4.4-4.7-4.2-5.7 0 0-2.3 4.2-6.9 2.8-4.5-1.3-4-4.5-4-5.5 0 0-2.7 5-6.5 3.9-3.4-1-4.7-2.2-4.7-4.6 0 0-1.7 3.9-5 3.7-3.4-.1-5-2.2-5.2-4 0 0-.7 3.6-5.2 3.9-3 .1-4.7-1.4-5.4-3.4 0 0-.9 3.6-5.2 4.2-2.7.3-5.4-1.2-6-3.7 0 0-.7 4.9-5 5.5-4.4.7-5.4-2.3-5.4-2.3s-.9 3.8-4.4 4.7c-3.5.8-5.8-.7-6.7-4.2-.8-3.5-.5-5-.5-5l1.4 1.8z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
144
+ <path fill="#fc0" d="M280.9 171a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.5"/>
145
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M263.3 231.3a1.7 1.7 0 1 0 0-3.3 1.7 1.7 0 0 0 0 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
146
+ <path fill="#fc0" d="M304.1 167.2a1.8 1.8 0 1 0 0-3.5 1.8 1.8 0 0 0 0 3.5"/>
147
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M285.1 227.8a1.7 1.7 0 1 0 0-3.3 1.7 1.7 0 0 0 0 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
148
+ <path fill="#fc0" d="M327.8 168a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.5"/>
149
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M307.3 228.5a1.7 1.7 0 1 0 0-3.3 1.7 1.7 0 0 0 0 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
150
+ <path fill="#fc0" d="M351.1 171.7a1.8 1.8 0 1 0 0-3.5 1.8 1.8 0 0 0 0 3.5"/>
151
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M329.2 232a1.7 1.7 0 1 0 0-3.3 1.7 1.7 0 0 0 0 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
152
+ <path fill="#fc0" d="M314.9 165.3h-1.6c-.4 1.6-3.9 2.5-3.9 2.5-.4-1.2.6-3 .6-3-4-1.1-4-2.4-4-2.4.6-1.4 4.3-1.6 4.3-1.6-1-1.2-.9-3.2-.9-3.2 2.5.2 4.5 2.7 4.5 2.7s-2.4-1.3-2.1-5.6c0 0 1.3 0 2.1.9 0 0 0-4.7 2-5.3h.2c1.9.6 1.9 5.3 1.9 5.3.8-1 2.1-.9 2.1-.9.3 4.3-2.1 5.6-2.1 5.6s2-2.5 4.5-2.6c0 0 0 2-.8 3.2 0 0 3.6.1 4.3 1.5 0 0 0 1.4-4 2.3 0 0 .8 1.9.5 3.2 0 0-3.6-1-3.9-2.6H315"/>
153
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M295.2 226h-1.5c-.4 1.5-3.6 2.4-3.6 2.4-.4-1.2.5-2.9.5-2.9-3.7-1-3.7-2.2-3.7-2.2.5-1.3 4-1.5 4-1.5-1-1.1-.8-3-.8-3 2.3.2 4.2 2.5 4.2 2.5s-2.3-1.2-2-5.2c0 0 1.2 0 2 .8 0 0 0-4.4 1.8-4.9h.2c1.8.5 1.8 4.9 1.8 4.9.8-.9 2-.8 2-.8.3 4-2 5.2-2 5.2s1.9-2.3 4.2-2.4c0 0 .1 1.8-.7 3 0 0 3.4.1 4 1.4 0 0 0 1.3-3.8 2.2 0 0 .8 1.7.5 3 0 0-3.3-1-3.6-2.5h-3.5z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
154
+ <path fill="#fff" d="M315.7 166.1a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4"/>
155
+ <path fill="none" stroke="#000" stroke-width=".4" d="M296 226.8a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
156
+ <path fill="#fff" d="M315.7 164.7a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.6"/>
157
+ <path fill="none" stroke="#000" stroke-width=".3" d="M296 225.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
158
+ <path fill="#fc0" d="m340.4 167.4 1.6.3c0 1.6 3.2 3.3 3.2 3.3.6-1 0-3 0-3 4.2-.2 4.5-1.6 4.5-1.6-.3-1.4-3.8-2.4-3.8-2.4 1-1 1.4-2.9 1.4-2.9-2.4-.4-4.9 1.5-4.9 1.5s2.7-.6 3.2-5c0 0-1.2-.2-2.1.4 0 0 1-4.5-.9-5.3l-.2-.1c-2 0-3 4.6-3 4.6-.6-1.1-2-1.2-2-1.2-1 4 1 5.8 1 5.8s-1.4-2.8-3.8-3.5c0 0-.5 2 0 3.2 0 0-3.5-.5-4.4.7 0 0-.3 1.4 3.3 3.2 0 0-1.1 1.6-1 3 0 0 3.5-.4 4.2-1.8l1.6.3 2.2.4"/>
159
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="m319.1 228 1.5.3c0 1.5 3 3.1 3 3.1.6-1 .1-2.9.1-2.9 3.9-.1 4.1-1.4 4.1-1.4-.2-1.4-3.5-2.3-3.5-2.3 1-.9 1.3-2.7 1.3-2.7-2.3-.4-4.6 1.4-4.6 1.4s2.5-.6 3-4.6c0 0-1.1-.3-2 .3 0 0 .9-4.2-.8-5l-.2-.1c-1.9 0-2.8 4.3-2.8 4.3-.6-1-1.8-1.1-1.8-1.1-1.1 3.8.9 5.4.9 5.4s-1.4-2.6-3.6-3.2c0 0-.5 1.8 0 3 0 0-3.3-.5-4.1.6 0 0-.3 1.3 3.1 3 0 0-1.1 1.5-1 2.8 0 0 3.3-.3 4-1.7l1.5.3 2 .4" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
160
+ <path fill="#fff" d="M339.2 168a3.3 3.3 0 1 1 1.5-6.4 3.3 3.3 0 0 1-1.4 6.4"/>
161
+ <path fill="none" stroke="#000" stroke-width=".4" d="M318 228.6a3 3 0 1 1 1.4-6 3 3 0 0 1-1.3 6z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
162
+ <path fill="#fff" d="M339.6 166.7a1.8 1.8 0 1 1 .8-3.6 1.8 1.8 0 0 1-.8 3.6"/>
163
+ <path fill="none" stroke="#000" stroke-width=".3" d="M318.4 227.3a1.7 1.7 0 1 1 .7-3.3 1.7 1.7 0 0 1-.7 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
164
+ <path fill="#fc0" d="m290.5 167-1.6.2c-.3 1.7-3.6 3.2-3.6 3.2-.5-1.3 0-3.2 0-3.2-4-.4-4.1-1.8-4.1-1.8.4-1.4 4-2.2 4-2.2-1-1-1.1-3-1.1-3 2.3-.2 4.6 2 4.6 2s-2.5-.9-2.8-5.1c0 0 1.4-.4 2.2.4 0 0-.5-4.6 1.3-5.4h.2c2 .3 2.6 4.8 2.6 4.8.7-1 2-1 2-1 .8 4.2-1.4 5.7-1.4 5.7s1.7-2.6 4-3.2c0 0 .5 2-.3 3.4 0 0 3.7-.4 4.4 1 0 0 .2 1.3-3.6 2.8 0 0 1 1.7 1 3 0 0-3.6-.6-4.3-2.2l-1.5.4-2.2.2"/>
165
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="m272.3 227.6-1.5.2c-.2 1.6-3.3 3-3.3 3-.5-1.2 0-3 0-3-3.7-.4-3.9-1.7-3.9-1.7.4-1.3 3.8-2 3.8-2-1-1-1.1-2.8-1.1-2.8 2.2-.2 4.4 1.8 4.4 1.8s-2.4-.8-2.7-4.8c0 0 1.3-.3 2.1.4 0 0-.5-4.3 1.2-5h.2c1.9.2 2.4 4.5 2.4 4.5.7-.9 2-1 2-1 .7 4-1.4 5.4-1.4 5.4s1.6-2.5 3.8-3c0 0 .4 1.9-.3 3.1 0 0 3.4-.3 4.1 1 0 0 .2 1.2-3.4 2.6 0 0 1 1.6.9 2.8 0 0-3.3-.5-4-2l-1.4.3-2 .2" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
166
+ <path fill="#fff" d="M291.4 167.8a3.2 3.2 0 1 0-.8-6.4 3.2 3.2 0 0 0 .8 6.4"/>
167
+ <path fill="none" stroke="#000" stroke-width=".4" d="M273.2 228.4a3 3 0 1 0-.8-6 3 3 0 0 0 .8 6z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
168
+ <path fill="#fff" d="M291.2 166.3a1.8 1.8 0 1 0-.4-3.5 1.8 1.8 0 0 0 .4 3.5"/>
169
+ <path fill="none" stroke="#000" stroke-width=".3" d="M273 227a1.7 1.7 0 1 0-.4-3.3 1.7 1.7 0 0 0 .4 3.3z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
170
+ <path fill="#fc0" d="M362.9 174s-.9-2.2-2.7-1.5-1.6 1.1-3.2 1.1c0 0-.6-2 .2-2.9 0 0-2.5-1-3.2-3.2 0 0 1.4-1.6 4.7-1 0 0 0-1.5.3-2.3 0 0 3.6 1 3.6 3.1 0 0-1.1-3.8.8-6.6 0 0 1.6.6 1.5 2.4 0 0 .8-3.6 5.6-2.6 0 0-2.6 2.3-2.7 3.4-.2 1-2.4 2.9-2.5 3.5 0 .5-.2 1.6-.8 2.3-.7.6-.8 1.7-.8 2 0 .3 0 1.8-.8 2.2"/>
171
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M340.2 234.1s-.8-2-2.5-1.3-1.5 1-3 1c0 0-.6-1.9.2-2.7 0 0-2.4-.9-3-3 0 0 1.3-1.5 4.4-.9 0 0-.1-1.5.3-2.2 0 0 3.3 1 3.3 2.9 0 0-1-3.6.8-6.2 0 0 1.5.6 1.4 2.3 0 0 .7-3.4 5.2-2.5 0 0-2.4 2.2-2.5 3.2-.2 1-2.2 2.7-2.3 3.3 0 .5-.2 1.5-.8 2.1-.6.6-.7 1.6-.7 2 0 .2 0 1.6-.8 2z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
172
+ <path fill="#fff" d="M360.2 169.7a3.2 3.2 0 0 1 5.1-2c0 .6-.3 1.4-.8 2-.7.6-.8 1.7-.8 2a3.2 3.2 0 0 1-.4 1.8h-.5a3.2 3.2 0 0 1-2.6-3.8"/>
173
+ <path fill="none" stroke="#000" stroke-width=".4" d="M337.7 230.1a3 3 0 0 1 4.8-1.8c0 .5-.3 1.3-.8 1.8-.6.6-.7 1.6-.7 2a3 3 0 0 1-.4 1.6h-.5a3 3 0 0 1-2.4-3.6z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
174
+ <path fill="#fff" d="M361.6 170a1.8 1.8 0 0 1 3.2-.8l-.3.5c-.7.6-.8 1.7-.8 2v.3h-.6c-1-.1-1.6-1-1.4-2.1"/>
175
+ <path fill="none" stroke="#000" stroke-width=".3" d="M339 230.4a1.7 1.7 0 0 1 3-.7l-.3.4c-.6.6-.7 1.6-.7 2v.2h-.6c-1-.1-1.5-1-1.3-2z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
176
+ <path fill="#fc0" d="M269 173s.9-2 2.7-1.2c1.7 1 1.5 1.2 3.2 1.2 0 0 .6-2 0-2.8 0 0 2.5-.8 3.2-3 0 0-1.3-1.7-4.6-1.3 0 0 .2-1.6-.2-2.3 0 0-3.5.8-3.6 2.7 0 0 1.2-3.7-.5-6.6 0 0-1.7.7-1.7 2.4 0 0-.5-3.7-5.3-3 0 0 2.4 2.5 2.4 3.6s2.2 3 2.2 3.6c0 .6.2 1.7.8 2.4.7.6.7 1.7.6 2.1 0 .2 0 1.7.8 2.2"/>
177
+ <path fill="#bcac0b" stroke="#000" stroke-width=".7" d="M252.2 233.3s.8-2 2.5-1.2c1.6.9 1.4 1.1 3 1.1 0 0 .6-1.8 0-2.6 0 0 2.4-.7 3-2.8 0 0-1.2-1.6-4.3-1.2 0 0 .2-1.5-.2-2.2 0 0-3.3.8-3.4 2.6 0 0 1.2-3.5-.4-6.2 0 0-1.6.6-1.6 2.2 0 0-.5-3.4-5-2.7 0 0 2.3 2.3 2.3 3.3s2 2.8 2 3.4c0 .5.2 1.6.8 2.2.6.6.6 1.6.5 2 0 .2 0 1.6.8 2z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
178
+ <path fill="#fff" d="M271.8 168.9a3.2 3.2 0 0 0-5-2.1c0 .5.3 1.4.8 1.9.7.6.7 1.7.6 2.1 0 .2 0 1 .4 1.8h.4a3.2 3.2 0 0 0 2.8-3.7"/>
179
+ <path fill="none" stroke="#000" stroke-width=".4" d="M254.8 229.4a3 3 0 0 0-4.6-2c0 .5.2 1.3.7 1.8.6.6.6 1.6.5 2 0 .2 0 1 .4 1.7h.4a3 3 0 0 0 2.6-3.5z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
180
+ <path fill="#fff" d="M270.4 169.1a1.8 1.8 0 0 0-3.2-1l.4.6c.7.6.7 1.7.6 2.1v.2h.7c1 0 1.6-1 1.5-1.9"/>
181
+ <path fill="none" stroke="#000" stroke-width=".3" d="M253.5 229.6a1.7 1.7 0 0 0-3-.9l.4.5c.6.6.6 1.6.5 2v.2h.7c.9 0 1.5-.9 1.4-1.8z" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
182
+ <path fill="none" stroke="#000" stroke-width="1.5" d="M257.2 251.6s33.8-13.2 76.4.3" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
183
+ <path fill="none" stroke="#000" stroke-width=".5" d="M338.4 241.1c-47.1-15-84.7-.8-84.7-.8" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
184
+ <path fill="red" d="m315.7 177.9-4 2 3.6 2.2 4.3-2-3.9-2.2"/>
185
+ <path fill="none" stroke="#000" stroke-width=".5" d="m296 237.8-3.8 1.9 3.4 2.1 4-2-3.6-2" transform="matrix(1.06667 0 0 1.06758 0 -76)"/>
186
+ </g>
187
+ </svg>