@hipay/hipay-material-ui 1.0.0-beta.8 → 2.0.0-beta.35

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1047) hide show
  1. package/CHANGELOG.md +1922 -21
  2. package/HiAlertModal/HiAlertModal.js +185 -210
  3. package/HiAlertModal/index.js +6 -7
  4. package/HiAppBar/HiAppBar.js +199 -0
  5. package/HiAppBar/index.js +15 -0
  6. package/HiBadge/HiBadge.js +119 -95
  7. package/HiBadge/index.js +6 -7
  8. package/HiBreadcrumb/HiBreadcrumb.js +90 -115
  9. package/HiBreadcrumb/HiStep.js +155 -98
  10. package/HiBreadcrumb/HiStepConnector.js +170 -109
  11. package/HiBreadcrumb/HiStepContent.js +108 -0
  12. package/HiBreadcrumb/HiStepIcon.js +166 -123
  13. package/HiBreadcrumb/HiStepLabel.js +209 -172
  14. package/HiBreadcrumb/HiStepper.js +76 -104
  15. package/HiBreadcrumb/index.js +6 -7
  16. package/HiButton/HiButton.js +192 -136
  17. package/HiButton/index.js +6 -7
  18. package/HiCheckbox/HiCheckbox.js +190 -147
  19. package/HiCheckbox/index.js +6 -7
  20. package/HiChip/HiChip.js +254 -174
  21. package/HiChip/HiChipSwitch.js +279 -289
  22. package/HiChip/index.js +10 -12
  23. package/HiColoredLabel/HiColoredLabel.js +179 -100
  24. package/HiColoredLabel/index.js +6 -7
  25. package/HiDatePicker/Caption.js +77 -82
  26. package/HiDatePicker/Caption.spec.js +88 -0
  27. package/HiDatePicker/HiDatePicker.js +369 -373
  28. package/HiDatePicker/ListPicker.js +137 -148
  29. package/HiDatePicker/ListPicker.spec.js +68 -0
  30. package/HiDatePicker/NavBar.js +146 -0
  31. package/HiDatePicker/NavBar.spec.js +56 -0
  32. package/HiDatePicker/Overlays/CustomOverlayLayout.js +113 -132
  33. package/HiDatePicker/Overlays/MonthPickerOverlay.js +95 -115
  34. package/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +74 -0
  35. package/HiDatePicker/Overlays/Overlay.js +102 -94
  36. package/HiDatePicker/Overlays/Overlay.spec.js +38 -0
  37. package/HiDatePicker/Overlays/TimePickerOverlay.js +242 -281
  38. package/HiDatePicker/Overlays/TimePickerOverlay.spec.js +71 -0
  39. package/HiDatePicker/Overlays/YearPickerOverlay.js +124 -144
  40. package/HiDatePicker/Overlays/YearPickerOverlay.spec.js +127 -0
  41. package/HiDatePicker/Overlays/index.js +22 -27
  42. package/HiDatePicker/Weekday.js +20 -23
  43. package/HiDatePicker/stylesheet.js +198 -181
  44. package/HiExpansionPanel/HiExpansionPanel.js +153 -204
  45. package/HiExpansionPanel/index.js +6 -7
  46. package/HiForm/HiEmailField.js +90 -102
  47. package/HiForm/HiFormControl.js +319 -341
  48. package/HiForm/HiFormLabel.js +129 -152
  49. package/HiForm/HiInput.js +519 -481
  50. package/HiForm/HiPasswordField.js +93 -103
  51. package/HiForm/HiSearchField.js +158 -163
  52. package/HiForm/HiTextField.js +143 -134
  53. package/HiForm/index.js +30 -37
  54. package/HiIcon/HiIcon.js +194 -0
  55. package/HiIcon/index.js +15 -0
  56. package/HiIconButton/HiIconButton.js +120 -0
  57. package/HiIconButton/index.js +15 -0
  58. package/HiLoader/HiLoader.js +53 -39
  59. package/HiLoader/index.js +6 -7
  60. package/HiPin/HiPin.js +117 -0
  61. package/HiPin/index.js +15 -0
  62. package/HiSelect/HiSelect.js +901 -744
  63. package/HiSelect/HiSelectField.js +88 -104
  64. package/HiSelect/HiSuggestSelect.js +288 -240
  65. package/HiSelect/HiSuggestSelectField.js +76 -92
  66. package/HiSelect/SelectInput.js +293 -298
  67. package/HiSelect/index.js +34 -28
  68. package/HiSelectNew/HiDynamicSelect.js +238 -0
  69. package/HiSelectNew/HiNestedSelect.js +453 -0
  70. package/HiSelectNew/HiSelect.js +698 -0
  71. package/HiSelectNew/HiSelectField.js +146 -0
  72. package/HiSelectNew/HiSelectInput.js +349 -0
  73. package/HiSelectNew/index.js +39 -0
  74. package/HiSelectableList/HiSelectableList.js +188 -228
  75. package/HiSelectableList/HiSelectableListHierarchic.js +233 -0
  76. package/HiSelectableList/HiSelectableListItem.js +430 -521
  77. package/HiSelectableList/index.js +18 -12
  78. package/HiSwitch/HiSwitch.js +228 -200
  79. package/HiSwitch/HiSwitchState.js +206 -216
  80. package/HiSwitch/index.js +9 -17
  81. package/README.md +100 -185
  82. package/es/HiAlertModal/HiAlertModal.js +158 -173
  83. package/es/HiAppBar/HiAppBar.js +151 -0
  84. package/es/HiAppBar/index.js +1 -0
  85. package/es/HiBadge/HiBadge.js +106 -64
  86. package/es/HiBreadcrumb/HiBreadcrumb.js +58 -59
  87. package/es/HiBreadcrumb/HiStep.js +112 -80
  88. package/es/HiBreadcrumb/HiStepConnector.js +141 -67
  89. package/es/HiBreadcrumb/HiStepContent.js +66 -0
  90. package/es/HiBreadcrumb/HiStepIcon.js +134 -64
  91. package/es/HiBreadcrumb/HiStepLabel.js +173 -138
  92. package/es/HiBreadcrumb/HiStepper.js +41 -49
  93. package/es/HiButton/HiButton.js +187 -114
  94. package/es/HiCheckbox/HiCheckbox.js +157 -84
  95. package/es/HiChip/HiChip.js +231 -132
  96. package/es/HiChip/HiChipSwitch.js +239 -226
  97. package/es/HiColoredLabel/HiColoredLabel.js +158 -67
  98. package/es/HiDatePicker/Caption.js +59 -57
  99. package/es/HiDatePicker/Caption.spec.js +68 -0
  100. package/es/HiDatePicker/HiDatePicker.js +307 -276
  101. package/es/HiDatePicker/ListPicker.js +93 -92
  102. package/es/HiDatePicker/ListPicker.spec.js +51 -0
  103. package/es/HiDatePicker/NavBar.js +117 -0
  104. package/es/HiDatePicker/NavBar.spec.js +40 -0
  105. package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +90 -100
  106. package/es/HiDatePicker/Overlays/MonthPickerOverlay.js +66 -65
  107. package/es/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +53 -0
  108. package/es/HiDatePicker/Overlays/Overlay.js +84 -64
  109. package/es/HiDatePicker/Overlays/Overlay.spec.js +27 -0
  110. package/es/HiDatePicker/Overlays/TimePickerOverlay.js +178 -192
  111. package/es/HiDatePicker/Overlays/TimePickerOverlay.spec.js +53 -0
  112. package/es/HiDatePicker/Overlays/YearPickerOverlay.js +92 -89
  113. package/es/HiDatePicker/Overlays/YearPickerOverlay.spec.js +92 -0
  114. package/es/HiDatePicker/Overlays/index.js +1 -0
  115. package/es/HiDatePicker/Weekday.js +14 -9
  116. package/es/HiDatePicker/stylesheet.js +188 -172
  117. package/es/HiExpansionPanel/HiExpansionPanel.js +121 -154
  118. package/es/HiForm/HiEmailField.js +58 -51
  119. package/es/HiForm/HiFormControl.js +283 -285
  120. package/es/HiForm/HiFormLabel.js +96 -103
  121. package/es/HiForm/HiInput.js +471 -415
  122. package/es/HiForm/HiPasswordField.js +59 -51
  123. package/es/HiForm/HiSearchField.js +120 -107
  124. package/es/HiForm/HiTextField.js +70 -47
  125. package/es/HiForm/index.js +2 -2
  126. package/es/HiIcon/HiIcon.js +173 -0
  127. package/es/HiIcon/index.js +1 -0
  128. package/es/HiIconButton/HiIconButton.js +100 -0
  129. package/es/HiIconButton/index.js +1 -0
  130. package/es/HiLoader/HiLoader.js +45 -22
  131. package/es/HiPin/HiPin.js +101 -0
  132. package/es/HiPin/index.js +1 -0
  133. package/es/HiSelect/HiSelect.js +857 -659
  134. package/es/HiSelect/HiSelectField.js +39 -36
  135. package/es/HiSelect/HiSuggestSelect.js +247 -179
  136. package/es/HiSelect/HiSuggestSelectField.js +36 -33
  137. package/es/HiSelect/SelectInput.js +260 -254
  138. package/es/HiSelect/index.js +4 -10
  139. package/es/HiSelectNew/HiDynamicSelect.js +203 -0
  140. package/es/HiSelectNew/HiNestedSelect.js +401 -0
  141. package/es/HiSelectNew/HiSelect.js +619 -0
  142. package/es/HiSelectNew/HiSelectField.js +111 -0
  143. package/es/HiSelectNew/HiSelectInput.js +307 -0
  144. package/es/HiSelectNew/index.js +4 -0
  145. package/es/HiSelectableList/HiSelectableList.js +144 -184
  146. package/es/HiSelectableList/HiSelectableListHierarchic.js +175 -0
  147. package/es/HiSelectableList/HiSelectableListItem.js +392 -445
  148. package/es/HiSelectableList/index.js +2 -1
  149. package/es/HiSwitch/HiSwitch.js +199 -124
  150. package/es/HiSwitch/HiSwitchState.js +182 -151
  151. package/es/HiSwitch/index.js +0 -1
  152. package/es/hi-svg-icons/HiAccount.js +38 -0
  153. package/es/hi-svg-icons/HiAll.js +43 -0
  154. package/es/hi-svg-icons/HiBilling.js +38 -0
  155. package/es/hi-svg-icons/HiBriefcaseRescue.js +14 -0
  156. package/es/hi-svg-icons/HiCatalog.js +38 -0
  157. package/es/hi-svg-icons/HiCustomer.js +38 -0
  158. package/es/hi-svg-icons/HiFinance.js +38 -0
  159. package/es/hi-svg-icons/HiRoute.js +38 -0
  160. package/es/hi-svg-icons/HiSettlement.js +38 -0
  161. package/es/hi-svg-icons/HiSizeLarge.js +25 -0
  162. package/es/hi-svg-icons/HiSizeMedium.js +25 -0
  163. package/es/hi-svg-icons/HiSizeSmall.js +25 -0
  164. package/es/hi-svg-icons/HiTransaction.js +38 -0
  165. package/es/hi-svg-icons/HiUser.js +38 -0
  166. package/es/hi-svg-icons/HiWidget.js +43 -0
  167. package/es/{svg-icons → hi-svg-icons}/index.js +4 -0
  168. package/es/hi-svg-icons/index.text.js +41 -0
  169. package/es/index.js +16 -63
  170. package/es/styles/MuiThemeProvider.js +36 -26
  171. package/es/styles/colorManipulator.js +71 -43
  172. package/es/styles/createBreakpoints.js +5 -6
  173. package/es/styles/createGenerateClassName.js +29 -27
  174. package/es/styles/createMixins.js +4 -4
  175. package/es/styles/createMuiTheme.js +26 -17
  176. package/es/styles/createPalette.js +111 -30
  177. package/es/styles/createStyles.js +3 -0
  178. package/es/styles/createTypography.js +91 -33
  179. package/es/styles/getStylesCreator.js +14 -7
  180. package/es/styles/getThemeProps.js +14 -0
  181. package/es/styles/index.js +2 -2
  182. package/es/styles/jssPreset.js +2 -3
  183. package/es/styles/mergeClasses.js +29 -0
  184. package/es/styles/shadows.js +0 -1
  185. package/es/styles/shape.js +4 -0
  186. package/es/styles/spacing.js +4 -3
  187. package/es/styles/themeListener.js +2 -5
  188. package/es/styles/transitions.js +15 -19
  189. package/es/styles/withStyles.js +115 -98
  190. package/es/styles/withTheme.js +29 -10
  191. package/es/styles/zIndex.js +0 -1
  192. package/es/test-utils/createMount.js +9 -10
  193. package/es/test-utils/createRender.js +8 -8
  194. package/es/test-utils/createShallow.js +23 -23
  195. package/es/test-utils/getClasses.js +4 -8
  196. package/es/test-utils/until.js +14 -10
  197. package/es/test-utils/unwrap.js +0 -2
  198. package/es/transitions/utils.js +4 -3
  199. package/es/utils/exactProp.js +17 -10
  200. package/es/utils/helpers.js +102 -40
  201. package/es/utils/ownerDocument.js +5 -0
  202. package/es/utils/ownerWindow.js +8 -0
  203. package/es/utils/reactHelpers.js +10 -12
  204. package/es/utils/requirePropFactory.js +7 -3
  205. package/es/utils/unsupportedProp.js +16 -0
  206. package/es/withMobileDialog/index.js +1 -0
  207. package/es/{Dialog → withMobileDialog}/withMobileDialog.js +9 -6
  208. package/es/withWidth/index.js +2 -0
  209. package/es/withWidth/withWidth.js +176 -0
  210. package/hi-svg-icons/HiAccount.js +52 -0
  211. package/hi-svg-icons/HiAll.js +57 -0
  212. package/hi-svg-icons/HiBilling.js +52 -0
  213. package/hi-svg-icons/HiBriefcaseRescue.js +27 -0
  214. package/hi-svg-icons/HiCatalog.js +52 -0
  215. package/hi-svg-icons/HiCustomer.js +52 -0
  216. package/hi-svg-icons/HiFinance.js +52 -0
  217. package/hi-svg-icons/HiRoute.js +52 -0
  218. package/hi-svg-icons/HiSettlement.js +52 -0
  219. package/hi-svg-icons/HiSizeLarge.js +36 -0
  220. package/hi-svg-icons/HiSizeMedium.js +36 -0
  221. package/hi-svg-icons/HiSizeSmall.js +36 -0
  222. package/hi-svg-icons/HiTransaction.js +52 -0
  223. package/hi-svg-icons/HiUser.js +52 -0
  224. package/hi-svg-icons/HiWidget.js +57 -0
  225. package/hi-svg-icons/index.js +127 -0
  226. package/hi-svg-icons/index.text.js +51 -0
  227. package/index.es.js +17 -64
  228. package/index.js +64 -733
  229. package/package.json +36 -41
  230. package/styles/MuiThemeProvider.js +78 -93
  231. package/styles/colorManipulator.js +88 -57
  232. package/styles/createBreakpoints.js +18 -23
  233. package/styles/createGenerateClassName.js +36 -38
  234. package/styles/createMixins.js +11 -17
  235. package/styles/createMuiTheme.js +51 -65
  236. package/styles/createPalette.js +146 -76
  237. package/styles/createStyles.js +10 -0
  238. package/styles/createTypography.js +103 -56
  239. package/styles/getStylesCreator.js +22 -23
  240. package/styles/getThemeProps.js +20 -0
  241. package/styles/index.js +30 -37
  242. package/styles/jssPreset.js +13 -23
  243. package/styles/mergeClasses.js +41 -0
  244. package/styles/shadows.js +5 -4
  245. package/styles/shape.js +11 -0
  246. package/styles/spacing.js +6 -3
  247. package/styles/themeListener.js +11 -15
  248. package/styles/transitions.js +41 -47
  249. package/styles/withStyles.js +162 -200
  250. package/styles/withTheme.js +58 -59
  251. package/styles/zIndex.js +3 -2
  252. package/test-utils/createMount.js +12 -21
  253. package/test-utils/createRender.js +10 -17
  254. package/test-utils/createShallow.js +36 -48
  255. package/test-utils/getClasses.js +15 -26
  256. package/test-utils/index.js +22 -27
  257. package/test-utils/until.js +14 -19
  258. package/test-utils/unwrap.js +0 -1
  259. package/transitions/utils.js +7 -5
  260. package/umd/hipay-material-ui.development.js +75471 -100230
  261. package/umd/hipay-material-ui.production.min.js +5 -20
  262. package/utils/exactProp.js +28 -25
  263. package/utils/helpers.js +125 -55
  264. package/utils/ownerDocument.js +13 -0
  265. package/utils/ownerWindow.js +19 -0
  266. package/utils/reactHelpers.js +17 -8
  267. package/utils/requirePropFactory.js +15 -6
  268. package/utils/unsupportedProp.js +24 -0
  269. package/withMobileDialog/index.js +15 -0
  270. package/withMobileDialog/withMobileDialog.js +45 -0
  271. package/withWidth/index.js +27 -0
  272. package/withWidth/withWidth.js +229 -0
  273. package/AppBar/AppBar.js +0 -144
  274. package/AppBar/index.js +0 -16
  275. package/Avatar/Avatar.js +0 -165
  276. package/Avatar/index.js +0 -16
  277. package/Badge/Badge.js +0 -142
  278. package/Badge/index.js +0 -16
  279. package/BottomNavigation/BottomNavigation.js +0 -113
  280. package/BottomNavigation/BottomNavigationAction.js +0 -219
  281. package/BottomNavigation/index.js +0 -25
  282. package/Button/Button.js +0 -298
  283. package/Button/index.js +0 -16
  284. package/ButtonBase/ButtonBase.js +0 -446
  285. package/ButtonBase/Ripple.js +0 -162
  286. package/ButtonBase/TouchRipple.js +0 -359
  287. package/ButtonBase/createRippleHandler.js +0 -28
  288. package/ButtonBase/index.js +0 -16
  289. package/Card/Card.js +0 -48
  290. package/Card/CardActions.js +0 -94
  291. package/Card/CardContent.js +0 -76
  292. package/Card/CardHeader.js +0 -150
  293. package/Card/CardMedia.js +0 -113
  294. package/Card/index.js +0 -52
  295. package/Checkbox/Checkbox.js +0 -160
  296. package/Checkbox/index.js +0 -16
  297. package/Chip/Chip.js +0 -322
  298. package/Chip/index.js +0 -16
  299. package/Dialog/Dialog.js +0 -271
  300. package/Dialog/DialogActions.js +0 -94
  301. package/Dialog/DialogContent.js +0 -77
  302. package/Dialog/DialogContentText.js +0 -72
  303. package/Dialog/DialogTitle.js +0 -91
  304. package/Dialog/index.js +0 -61
  305. package/Dialog/withMobileDialog.js +0 -49
  306. package/Divider/Divider.js +0 -113
  307. package/Divider/index.js +0 -16
  308. package/Drawer/Drawer.js +0 -325
  309. package/Drawer/index.js +0 -16
  310. package/ExpansionPanel/ExpansionPanel.js +0 -257
  311. package/ExpansionPanel/ExpansionPanelActions.js +0 -79
  312. package/ExpansionPanel/ExpansionPanelDetails.js +0 -73
  313. package/ExpansionPanel/ExpansionPanelSummary.js +0 -250
  314. package/ExpansionPanel/index.js +0 -43
  315. package/Form/FormControl.js +0 -291
  316. package/Form/FormControlLabel.js +0 -168
  317. package/Form/FormGroup.js +0 -94
  318. package/Form/FormHelperText.js +0 -139
  319. package/Form/FormLabel.js +0 -158
  320. package/Form/index.js +0 -52
  321. package/Grid/Grid.js +0 -372
  322. package/Grid/index.js +0 -16
  323. package/GridList/GridList.js +0 -122
  324. package/GridList/GridListTile.js +0 -239
  325. package/GridList/GridListTileBar.js +0 -176
  326. package/GridList/index.js +0 -34
  327. package/HI-CHANGELOG.md +0 -42
  328. package/HiDatePicker/HiDateRangePicker.js +0 -715
  329. package/HiDatePicker/HiDateRangeSelector.js +0 -422
  330. package/HiDatePicker/HiWeekPicker.js +0 -389
  331. package/HiDatePicker/Navbar.js +0 -169
  332. package/HiDatePicker/index.js +0 -33
  333. package/HiPins/HiPins.js +0 -98
  334. package/HiPins/index.js +0 -16
  335. package/HiRadio/HiRadio.js +0 -99
  336. package/HiRadio/index.js +0 -16
  337. package/HiTable/BodyCellBuilder.js +0 -398
  338. package/HiTable/BodyCells/CellAccount.js +0 -100
  339. package/HiTable/BodyCells/CellAccountNumber.js +0 -220
  340. package/HiTable/BodyCells/CellAddress.js +0 -199
  341. package/HiTable/BodyCells/CellCountry.js +0 -172
  342. package/HiTable/BodyCells/CellDate.js +0 -177
  343. package/HiTable/BodyCells/CellIcon.js +0 -148
  344. package/HiTable/BodyCells/CellImage.js +0 -177
  345. package/HiTable/BodyCells/CellLayout.js +0 -285
  346. package/HiTable/BodyCells/CellNumeric.js +0 -135
  347. package/HiTable/BodyCells/CellRate.js +0 -197
  348. package/HiTable/BodyCells/CellSentinel.js +0 -213
  349. package/HiTable/BodyCells/CellStatus.js +0 -140
  350. package/HiTable/BodyCells/CellText.js +0 -268
  351. package/HiTable/BodyCells/CellThirdPartySecurity.js +0 -144
  352. package/HiTable/BodyCells/index.js +0 -133
  353. package/HiTable/BodyRow.js +0 -388
  354. package/HiTable/ChildRow.js +0 -432
  355. package/HiTable/ColumnFilter.js +0 -494
  356. package/HiTable/HeaderCell.js +0 -463
  357. package/HiTable/HiStickyRow.js +0 -300
  358. package/HiTable/HiTable.js +0 -1019
  359. package/HiTable/HiTableBody.js +0 -557
  360. package/HiTable/HiTableContextMenu.js +0 -214
  361. package/HiTable/HiTableFooterScroll.js +0 -202
  362. package/HiTable/HiTableHead.js +0 -489
  363. package/HiTable/OrderColumns.js +0 -561
  364. package/HiTable/constants.js +0 -105
  365. package/HiTable/index.js +0 -25
  366. package/HiTopBar/HiTopBar.js +0 -553
  367. package/HiTopBar/index.js +0 -16
  368. package/Hidden/Hidden.js +0 -130
  369. package/Hidden/HiddenCss.js +0 -175
  370. package/Hidden/HiddenJs.js +0 -149
  371. package/Hidden/index.js +0 -16
  372. package/Icon/Icon.js +0 -109
  373. package/Icon/index.js +0 -16
  374. package/IconButton/IconButton.js +0 -146
  375. package/IconButton/index.js +0 -16
  376. package/Input/Input.js +0 -682
  377. package/Input/InputAdornment.js +0 -116
  378. package/Input/InputLabel.js +0 -163
  379. package/Input/Textarea.js +0 -301
  380. package/Input/index.js +0 -34
  381. package/List/List.js +0 -167
  382. package/List/ListItem.js +0 -279
  383. package/List/ListItemAvatar.js +0 -100
  384. package/List/ListItemIcon.js +0 -77
  385. package/List/ListItemSecondaryAction.js +0 -76
  386. package/List/ListItemText.js +0 -145
  387. package/List/ListSubheader.js +0 -127
  388. package/List/index.js +0 -70
  389. package/Menu/Menu.js +0 -274
  390. package/Menu/MenuItem.js +0 -113
  391. package/Menu/MenuList.js +0 -253
  392. package/Menu/index.js +0 -34
  393. package/MobileStepper/MobileStepper.js +0 -173
  394. package/MobileStepper/index.js +0 -16
  395. package/Modal/Backdrop.js +0 -102
  396. package/Modal/Modal.js +0 -502
  397. package/Modal/ModalManager.js +0 -210
  398. package/Modal/index.js +0 -34
  399. package/Modal/isOverflowing.js +0 -43
  400. package/Modal/manageAriaHidden.js +0 -45
  401. package/Paper/Paper.js +0 -111
  402. package/Paper/index.js +0 -16
  403. package/Popover/Popover.js +0 -564
  404. package/Popover/index.js +0 -16
  405. package/Portal/LegacyPortal.js +0 -158
  406. package/Portal/Portal.js +0 -144
  407. package/Portal/index.js +0 -21
  408. package/Progress/CircularProgress.js +0 -228
  409. package/Progress/LinearProgress.js +0 -258
  410. package/Progress/index.js +0 -25
  411. package/Radio/Radio.js +0 -155
  412. package/Radio/RadioGroup.js +0 -168
  413. package/Radio/index.js +0 -25
  414. package/Reboot/Reboot.js +0 -106
  415. package/Reboot/index.js +0 -16
  416. package/Select/Select.js +0 -229
  417. package/Select/SelectInput.js +0 -502
  418. package/Select/index.js +0 -16
  419. package/Snackbar/Snackbar.js +0 -451
  420. package/Snackbar/SnackbarContent.js +0 -135
  421. package/Snackbar/index.js +0 -25
  422. package/Stepper/Step.js +0 -151
  423. package/Stepper/StepButton.js +0 -143
  424. package/Stepper/StepConnector.js +0 -118
  425. package/Stepper/StepContent.js +0 -153
  426. package/Stepper/StepIcon.js +0 -86
  427. package/Stepper/StepLabel.js +0 -200
  428. package/Stepper/StepPositionIcon.js +0 -95
  429. package/Stepper/Stepper.js +0 -161
  430. package/Stepper/index.js +0 -61
  431. package/SvgIcon/SvgIcon.js +0 -147
  432. package/SvgIcon/index.js +0 -16
  433. package/Switch/Switch.js +0 -215
  434. package/Switch/index.js +0 -16
  435. package/Table/Table.js +0 -127
  436. package/Table/TableBody.js +0 -121
  437. package/Table/TableCell.js +0 -181
  438. package/Table/TableFooter.js +0 -93
  439. package/Table/TableHead.js +0 -121
  440. package/Table/TablePagination.js +0 -310
  441. package/Table/TablePaginationActions.js +0 -183
  442. package/Table/TableRow.js +0 -127
  443. package/Table/TableSortLabel.js +0 -145
  444. package/Table/index.js +0 -79
  445. package/Tabs/Tab.js +0 -340
  446. package/Tabs/TabIndicator.js +0 -95
  447. package/Tabs/TabScrollButton.js +0 -112
  448. package/Tabs/Tabs.js +0 -530
  449. package/Tabs/index.js +0 -25
  450. package/TextField/TextField.js +0 -290
  451. package/TextField/index.js +0 -16
  452. package/Toolbar/Toolbar.js +0 -89
  453. package/Toolbar/index.js +0 -16
  454. package/Tooltip/Tooltip.js +0 -514
  455. package/Tooltip/index.js +0 -16
  456. package/Typography/Typography.js +0 -192
  457. package/Typography/index.js +0 -16
  458. package/colors/amber.js +0 -23
  459. package/colors/blue.js +0 -23
  460. package/colors/blueGrey.js +0 -23
  461. package/colors/brown.js +0 -23
  462. package/colors/common.js +0 -11
  463. package/colors/cyan.js +0 -23
  464. package/colors/deepOrange.js +0 -23
  465. package/colors/deepPurple.js +0 -23
  466. package/colors/green.js +0 -23
  467. package/colors/grey.js +0 -23
  468. package/colors/index.js +0 -187
  469. package/colors/indigo.js +0 -23
  470. package/colors/lightBlue.js +0 -23
  471. package/colors/lightGreen.js +0 -23
  472. package/colors/lime.js +0 -23
  473. package/colors/orange.js +0 -23
  474. package/colors/pink.js +0 -23
  475. package/colors/purple.js +0 -23
  476. package/colors/red.js +0 -23
  477. package/colors/teal.js +0 -23
  478. package/colors/yellow.js +0 -23
  479. package/es/AppBar/AppBar.js +0 -106
  480. package/es/AppBar/index.js +0 -1
  481. package/es/Avatar/Avatar.js +0 -136
  482. package/es/Avatar/index.js +0 -1
  483. package/es/Badge/Badge.js +0 -112
  484. package/es/Badge/index.js +0 -1
  485. package/es/BottomNavigation/BottomNavigation.js +0 -86
  486. package/es/BottomNavigation/BottomNavigationAction.js +0 -153
  487. package/es/BottomNavigation/index.js +0 -2
  488. package/es/Button/Button.js +0 -274
  489. package/es/Button/index.js +0 -1
  490. package/es/ButtonBase/ButtonBase.js +0 -358
  491. package/es/ButtonBase/Ripple.js +0 -102
  492. package/es/ButtonBase/TouchRipple.js +0 -268
  493. package/es/ButtonBase/createRippleHandler.js +0 -23
  494. package/es/ButtonBase/index.js +0 -1
  495. package/es/Card/Card.js +0 -27
  496. package/es/Card/CardActions.js +0 -58
  497. package/es/Card/CardContent.js +0 -45
  498. package/es/Card/CardHeader.js +0 -120
  499. package/es/Card/CardMedia.js +0 -76
  500. package/es/Card/index.js +0 -5
  501. package/es/Checkbox/Checkbox.js +0 -117
  502. package/es/Checkbox/index.js +0 -1
  503. package/es/Chip/Chip.js +0 -241
  504. package/es/Chip/index.js +0 -1
  505. package/es/Dialog/Dialog.js +0 -231
  506. package/es/Dialog/DialogActions.js +0 -58
  507. package/es/Dialog/DialogContent.js +0 -48
  508. package/es/Dialog/DialogContentText.js +0 -41
  509. package/es/Dialog/DialogTitle.js +0 -57
  510. package/es/Dialog/index.js +0 -6
  511. package/es/Divider/Divider.js +0 -83
  512. package/es/Divider/index.js +0 -1
  513. package/es/Drawer/Drawer.js +0 -252
  514. package/es/Drawer/index.js +0 -1
  515. package/es/ExpansionPanel/ExpansionPanel.js +0 -194
  516. package/es/ExpansionPanel/ExpansionPanelActions.js +0 -47
  517. package/es/ExpansionPanel/ExpansionPanelDetails.js +0 -42
  518. package/es/ExpansionPanel/ExpansionPanelSummary.js +0 -182
  519. package/es/ExpansionPanel/index.js +0 -4
  520. package/es/Form/FormControl.js +0 -214
  521. package/es/Form/FormControlLabel.js +0 -137
  522. package/es/Form/FormGroup.js +0 -62
  523. package/es/Form/FormHelperText.js +0 -110
  524. package/es/Form/FormLabel.js +0 -132
  525. package/es/Form/index.js +0 -5
  526. package/es/Grid/Grid.js +0 -353
  527. package/es/Grid/index.js +0 -1
  528. package/es/GridList/GridList.js +0 -97
  529. package/es/GridList/GridListTile.js +0 -153
  530. package/es/GridList/GridListTileBar.js +0 -152
  531. package/es/GridList/index.js +0 -3
  532. package/es/HiDatePicker/HiDateRangePicker.js +0 -567
  533. package/es/HiDatePicker/HiDateRangeSelector.js +0 -345
  534. package/es/HiDatePicker/HiWeekPicker.js +0 -296
  535. package/es/HiDatePicker/Navbar.js +0 -130
  536. package/es/HiDatePicker/index.js +0 -7
  537. package/es/HiPins/HiPins.js +0 -65
  538. package/es/HiPins/index.js +0 -1
  539. package/es/HiRadio/HiRadio.js +0 -41
  540. package/es/HiRadio/index.js +0 -1
  541. package/es/HiTable/BodyCellBuilder.js +0 -345
  542. package/es/HiTable/BodyCells/CellAccount.js +0 -40
  543. package/es/HiTable/BodyCells/CellAccountNumber.js +0 -166
  544. package/es/HiTable/BodyCells/CellAddress.js +0 -129
  545. package/es/HiTable/BodyCells/CellCountry.js +0 -107
  546. package/es/HiTable/BodyCells/CellDate.js +0 -111
  547. package/es/HiTable/BodyCells/CellIcon.js +0 -83
  548. package/es/HiTable/BodyCells/CellImage.js +0 -115
  549. package/es/HiTable/BodyCells/CellLayout.js +0 -202
  550. package/es/HiTable/BodyCells/CellNumeric.js +0 -71
  551. package/es/HiTable/BodyCells/CellRate.js +0 -131
  552. package/es/HiTable/BodyCells/CellSentinel.js +0 -153
  553. package/es/HiTable/BodyCells/CellStatus.js +0 -77
  554. package/es/HiTable/BodyCells/CellText.js +0 -189
  555. package/es/HiTable/BodyCells/CellThirdPartySecurity.js +0 -89
  556. package/es/HiTable/BodyCells/index.js +0 -16
  557. package/es/HiTable/BodyRow.js +0 -314
  558. package/es/HiTable/ChildRow.js +0 -345
  559. package/es/HiTable/ColumnFilter.js +0 -398
  560. package/es/HiTable/HeaderCell.js +0 -376
  561. package/es/HiTable/HiStickyRow.js +0 -217
  562. package/es/HiTable/HiTable.js +0 -883
  563. package/es/HiTable/HiTableBody.js +0 -464
  564. package/es/HiTable/HiTableContextMenu.js +0 -150
  565. package/es/HiTable/HiTableFooterScroll.js +0 -144
  566. package/es/HiTable/HiTableHead.js +0 -403
  567. package/es/HiTable/OrderColumns.js +0 -441
  568. package/es/HiTable/constants.js +0 -180
  569. package/es/HiTable/index.js +0 -2
  570. package/es/HiTopBar/HiTopBar.js +0 -458
  571. package/es/HiTopBar/index.js +0 -1
  572. package/es/Hidden/Hidden.js +0 -107
  573. package/es/Hidden/HiddenCss.js +0 -151
  574. package/es/Hidden/HiddenJs.js +0 -129
  575. package/es/Hidden/index.js +0 -1
  576. package/es/Icon/Icon.js +0 -74
  577. package/es/Icon/index.js +0 -1
  578. package/es/IconButton/IconButton.js +0 -106
  579. package/es/IconButton/index.js +0 -1
  580. package/es/Input/Input.js +0 -616
  581. package/es/Input/InputAdornment.js +0 -83
  582. package/es/Input/InputLabel.js +0 -138
  583. package/es/Input/Textarea.js +0 -234
  584. package/es/Input/index.js +0 -3
  585. package/es/List/List.js +0 -106
  586. package/es/List/ListItem.js +0 -212
  587. package/es/List/ListItemAvatar.js +0 -63
  588. package/es/List/ListItemIcon.js +0 -46
  589. package/es/List/ListItemSecondaryAction.js +0 -45
  590. package/es/List/ListItemText.js +0 -114
  591. package/es/List/ListSubheader.js +0 -90
  592. package/es/List/index.js +0 -7
  593. package/es/Menu/Menu.js +0 -205
  594. package/es/Menu/MenuItem.js +0 -75
  595. package/es/Menu/MenuList.js +0 -168
  596. package/es/Menu/index.js +0 -3
  597. package/es/MobileStepper/MobileStepper.js +0 -137
  598. package/es/MobileStepper/index.js +0 -1
  599. package/es/Modal/Backdrop.js +0 -67
  600. package/es/Modal/Modal.js +0 -398
  601. package/es/Modal/ModalManager.js +0 -162
  602. package/es/Modal/index.js +0 -3
  603. package/es/Modal/isOverflowing.js +0 -25
  604. package/es/Modal/manageAriaHidden.js +0 -33
  605. package/es/Paper/Paper.js +0 -81
  606. package/es/Paper/index.js +0 -1
  607. package/es/Popover/Popover.js +0 -455
  608. package/es/Popover/index.js +0 -1
  609. package/es/Portal/LegacyPortal.js +0 -97
  610. package/es/Portal/Portal.js +0 -82
  611. package/es/Portal/index.js +0 -5
  612. package/es/Progress/CircularProgress.js +0 -201
  613. package/es/Progress/LinearProgress.js +0 -235
  614. package/es/Progress/index.js +0 -2
  615. package/es/Radio/Radio.js +0 -113
  616. package/es/Radio/RadioGroup.js +0 -101
  617. package/es/Radio/index.js +0 -2
  618. package/es/Reboot/Reboot.js +0 -55
  619. package/es/Reboot/index.js +0 -1
  620. package/es/Select/Select.js +0 -199
  621. package/es/Select/SelectInput.js +0 -414
  622. package/es/Select/index.js +0 -1
  623. package/es/Snackbar/Snackbar.js +0 -370
  624. package/es/Snackbar/SnackbarContent.js +0 -96
  625. package/es/Snackbar/index.js +0 -2
  626. package/es/Stepper/Step.js +0 -120
  627. package/es/Stepper/StepButton.js +0 -111
  628. package/es/Stepper/StepConnector.js +0 -85
  629. package/es/Stepper/StepContent.js +0 -116
  630. package/es/Stepper/StepIcon.js +0 -54
  631. package/es/Stepper/StepLabel.js +0 -170
  632. package/es/Stepper/StepPositionIcon.js +0 -64
  633. package/es/Stepper/Stepper.js +0 -126
  634. package/es/Stepper/index.js +0 -6
  635. package/es/SvgIcon/SvgIcon.js +0 -117
  636. package/es/SvgIcon/index.js +0 -1
  637. package/es/Switch/Switch.js +0 -178
  638. package/es/Switch/index.js +0 -1
  639. package/es/Table/Table.js +0 -64
  640. package/es/Table/TableBody.js +0 -61
  641. package/es/Table/TableCell.js +0 -153
  642. package/es/Table/TableFooter.js +0 -44
  643. package/es/Table/TableHead.js +0 -61
  644. package/es/Table/TablePagination.js +0 -224
  645. package/es/Table/TablePaginationActions.js +0 -116
  646. package/es/Table/TableRow.js +0 -99
  647. package/es/Table/TableSortLabel.js +0 -101
  648. package/es/Table/index.js +0 -8
  649. package/es/Tabs/Tab.js +0 -271
  650. package/es/Tabs/TabIndicator.js +0 -63
  651. package/es/Tabs/TabScrollButton.js +0 -70
  652. package/es/Tabs/Tabs.js +0 -425
  653. package/es/Tabs/index.js +0 -2
  654. package/es/TextField/TextField.js +0 -259
  655. package/es/TextField/index.js +0 -1
  656. package/es/Toolbar/Toolbar.js +0 -55
  657. package/es/Toolbar/index.js +0 -1
  658. package/es/Tooltip/Tooltip.js +0 -425
  659. package/es/Tooltip/index.js +0 -1
  660. package/es/Typography/Typography.js +0 -164
  661. package/es/Typography/index.js +0 -1
  662. package/es/colors/amber.js +0 -18
  663. package/es/colors/blue.js +0 -18
  664. package/es/colors/blueGrey.js +0 -18
  665. package/es/colors/brown.js +0 -18
  666. package/es/colors/common.js +0 -6
  667. package/es/colors/cyan.js +0 -18
  668. package/es/colors/deepOrange.js +0 -18
  669. package/es/colors/deepPurple.js +0 -18
  670. package/es/colors/green.js +0 -18
  671. package/es/colors/grey.js +0 -18
  672. package/es/colors/index.js +0 -20
  673. package/es/colors/indigo.js +0 -18
  674. package/es/colors/lightBlue.js +0 -18
  675. package/es/colors/lightGreen.js +0 -18
  676. package/es/colors/lime.js +0 -18
  677. package/es/colors/orange.js +0 -18
  678. package/es/colors/pink.js +0 -18
  679. package/es/colors/purple.js +0 -18
  680. package/es/colors/red.js +0 -18
  681. package/es/colors/teal.js +0 -18
  682. package/es/colors/yellow.js +0 -18
  683. package/es/internal/RefHolder.js +0 -20
  684. package/es/internal/SwitchBase.js +0 -219
  685. package/es/internal/svg-icons/ArrowDownward.js +0 -20
  686. package/es/internal/svg-icons/ArrowDropDown.js +0 -20
  687. package/es/internal/svg-icons/Cancel.js +0 -19
  688. package/es/internal/svg-icons/CheckBox.js +0 -19
  689. package/es/internal/svg-icons/CheckBoxOutlineBlank.js +0 -19
  690. package/es/internal/svg-icons/CheckCircle.js +0 -19
  691. package/es/internal/svg-icons/IndeterminateCheckBox.js +0 -19
  692. package/es/internal/svg-icons/KeyboardArrowLeft.js +0 -19
  693. package/es/internal/svg-icons/KeyboardArrowRight.js +0 -19
  694. package/es/internal/svg-icons/RadioButtonChecked.js +0 -19
  695. package/es/internal/svg-icons/RadioButtonUnchecked.js +0 -19
  696. package/es/styles/createHiMuiTheme.js +0 -300
  697. package/es/svg-icons/ArrowDownward.js +0 -20
  698. package/es/svg-icons/ArrowDropDown.js +0 -20
  699. package/es/svg-icons/Cancel.js +0 -19
  700. package/es/svg-icons/CheckBox.js +0 -19
  701. package/es/svg-icons/CheckBoxOutlineBlank.js +0 -19
  702. package/es/svg-icons/CheckCircle.js +0 -19
  703. package/es/svg-icons/HiAccount.js +0 -33
  704. package/es/svg-icons/HiAll.js +0 -43
  705. package/es/svg-icons/HiBilling.js +0 -33
  706. package/es/svg-icons/HiCatalog.js +0 -33
  707. package/es/svg-icons/HiCustomer.js +0 -39
  708. package/es/svg-icons/HiFinance.js +0 -33
  709. package/es/svg-icons/HiRoute.js +0 -33
  710. package/es/svg-icons/HiSettlement.js +0 -36
  711. package/es/svg-icons/HiSizeLarge.js +0 -19
  712. package/es/svg-icons/HiSizeMedium.js +0 -19
  713. package/es/svg-icons/HiSizeSmall.js +0 -19
  714. package/es/svg-icons/HiTransaction.js +0 -33
  715. package/es/svg-icons/HiUser.js +0 -39
  716. package/es/svg-icons/HiWidget.js +0 -43
  717. package/es/svg-icons/IndeterminateCheckBox.js +0 -19
  718. package/es/svg-icons/KeyboardArrowLeft.js +0 -19
  719. package/es/svg-icons/KeyboardArrowRight.js +0 -19
  720. package/es/svg-icons/RadioButtonChecked.js +0 -19
  721. package/es/svg-icons/RadioButtonUnchecked.js +0 -19
  722. package/es/transitions/Collapse.js +0 -245
  723. package/es/transitions/Fade.js +0 -132
  724. package/es/transitions/Grow.js +0 -173
  725. package/es/transitions/Slide.js +0 -291
  726. package/es/transitions/Zoom.js +0 -129
  727. package/es/transitions/index.js +0 -5
  728. package/es/utils/ClickAwayListener.js +0 -65
  729. package/es/utils/HiIconBuilder.js +0 -107
  730. package/es/utils/addEventListener.js +0 -11
  731. package/es/utils/hiGetMdiIcon.js +0 -12
  732. package/es/utils/hiHelpers.js +0 -173
  733. package/es/utils/keyboardFocus.js +0 -51
  734. package/es/utils/manageAriaHidden.js +0 -33
  735. package/es/utils/withWidth.js +0 -141
  736. package/hmu/images/countries/ad.svg +0 -151
  737. package/hmu/images/countries/ae.svg +0 -6
  738. package/hmu/images/countries/af.svg +0 -83
  739. package/hmu/images/countries/ag.svg +0 -15
  740. package/hmu/images/countries/ai.svg +0 -767
  741. package/hmu/images/countries/al.svg +0 -5
  742. package/hmu/images/countries/am.svg +0 -5
  743. package/hmu/images/countries/ao.svg +0 -13
  744. package/hmu/images/countries/aq.svg +0 -6
  745. package/hmu/images/countries/ar.svg +0 -32
  746. package/hmu/images/countries/as.svg +0 -33
  747. package/hmu/images/countries/at.svg +0 -6
  748. package/hmu/images/countries/au.svg +0 -9
  749. package/hmu/images/countries/aw.svg +0 -186
  750. package/hmu/images/countries/ax.svg +0 -18
  751. package/hmu/images/countries/az.svg +0 -8
  752. package/hmu/images/countries/ba.svg +0 -12
  753. package/hmu/images/countries/bb.svg +0 -6
  754. package/hmu/images/countries/bd.svg +0 -4
  755. package/hmu/images/countries/be.svg +0 -7
  756. package/hmu/images/countries/bf.svg +0 -7
  757. package/hmu/images/countries/bg.svg +0 -7
  758. package/hmu/images/countries/bh.svg +0 -11
  759. package/hmu/images/countries/bi.svg +0 -15
  760. package/hmu/images/countries/bj.svg +0 -14
  761. package/hmu/images/countries/bl.svg +0 -7
  762. package/hmu/images/countries/bm.svg +0 -99
  763. package/hmu/images/countries/bn.svg +0 -36
  764. package/hmu/images/countries/bo.svg +0 -686
  765. package/hmu/images/countries/bq.svg +0 -5
  766. package/hmu/images/countries/br.svg +0 -45
  767. package/hmu/images/countries/bs.svg +0 -13
  768. package/hmu/images/countries/bt.svg +0 -89
  769. package/hmu/images/countries/bv.svg +0 -13
  770. package/hmu/images/countries/bw.svg +0 -7
  771. package/hmu/images/countries/by.svg +0 -61
  772. package/hmu/images/countries/bz.svg +0 -146
  773. package/hmu/images/countries/ca.svg +0 -4
  774. package/hmu/images/countries/cc.svg +0 -19
  775. package/hmu/images/countries/cd.svg +0 -5
  776. package/hmu/images/countries/cf.svg +0 -15
  777. package/hmu/images/countries/cg.svg +0 -12
  778. package/hmu/images/countries/ch.svg +0 -9
  779. package/hmu/images/countries/ci.svg +0 -7
  780. package/hmu/images/countries/ck.svg +0 -9
  781. package/hmu/images/countries/cl.svg +0 -13
  782. package/hmu/images/countries/cm.svg +0 -15
  783. package/hmu/images/countries/cn.svg +0 -11
  784. package/hmu/images/countries/co.svg +0 -7
  785. package/hmu/images/countries/cr.svg +0 -7
  786. package/hmu/images/countries/cu.svg +0 -13
  787. package/hmu/images/countries/cv.svg +0 -13
  788. package/hmu/images/countries/cw.svg +0 -14
  789. package/hmu/images/countries/cx.svg +0 -15
  790. package/hmu/images/countries/cy.svg +0 -6
  791. package/hmu/images/countries/cz.svg +0 -12
  792. package/hmu/images/countries/de.svg +0 -5
  793. package/hmu/images/countries/dj.svg +0 -13
  794. package/hmu/images/countries/dk.svg +0 -5
  795. package/hmu/images/countries/dm.svg +0 -152
  796. package/hmu/images/countries/do.svg +0 -6745
  797. package/hmu/images/countries/dz.svg +0 -5
  798. package/hmu/images/countries/ec.svg +0 -141
  799. package/hmu/images/countries/ee.svg +0 -7
  800. package/hmu/images/countries/eg.svg +0 -38
  801. package/hmu/images/countries/eh.svg +0 -15
  802. package/hmu/images/countries/er.svg +0 -8
  803. package/hmu/images/countries/es-ct.svg +0 -4
  804. package/hmu/images/countries/es.svg +0 -581
  805. package/hmu/images/countries/et.svg +0 -14
  806. package/hmu/images/countries/eu.svg +0 -28
  807. package/hmu/images/countries/fi.svg +0 -5
  808. package/hmu/images/countries/fj.svg +0 -124
  809. package/hmu/images/countries/fk.svg +0 -90
  810. package/hmu/images/countries/fm.svg +0 -11
  811. package/hmu/images/countries/fo.svg +0 -12
  812. package/hmu/images/countries/fr.svg +0 -7
  813. package/hmu/images/countries/ga.svg +0 -7
  814. package/hmu/images/countries/gb-eng.svg +0 -5
  815. package/hmu/images/countries/gb-nir.svg +0 -137
  816. package/hmu/images/countries/gb-sct.svg +0 -4
  817. package/hmu/images/countries/gb-wls.svg +0 -9
  818. package/hmu/images/countries/gb.svg +0 -15
  819. package/hmu/images/countries/gd.svg +0 -27
  820. package/hmu/images/countries/ge.svg +0 -6
  821. package/hmu/images/countries/gf.svg +0 -5
  822. package/hmu/images/countries/gg.svg +0 -9
  823. package/hmu/images/countries/gh.svg +0 -6
  824. package/hmu/images/countries/gi.svg +0 -33
  825. package/hmu/images/countries/gl.svg +0 -4
  826. package/hmu/images/countries/gm.svg +0 -14
  827. package/hmu/images/countries/gn.svg +0 -7
  828. package/hmu/images/countries/gp.svg +0 -7
  829. package/hmu/images/countries/gq.svg +0 -23
  830. package/hmu/images/countries/gr.svg +0 -22
  831. package/hmu/images/countries/gs.svg +0 -205
  832. package/hmu/images/countries/gt.svg +0 -204
  833. package/hmu/images/countries/gu.svg +0 -39
  834. package/hmu/images/countries/gw.svg +0 -13
  835. package/hmu/images/countries/gy.svg +0 -9
  836. package/hmu/images/countries/hk.svg +0 -32
  837. package/hmu/images/countries/hm.svg +0 -9
  838. package/hmu/images/countries/hn.svg +0 -18
  839. package/hmu/images/countries/hr.svg +0 -59
  840. package/hmu/images/countries/ht.svg +0 -122
  841. package/hmu/images/countries/hu.svg +0 -7
  842. package/hmu/images/countries/id.svg +0 -6
  843. package/hmu/images/countries/ie.svg +0 -7
  844. package/hmu/images/countries/il.svg +0 -14
  845. package/hmu/images/countries/im.svg +0 -36
  846. package/hmu/images/countries/in.svg +0 -25
  847. package/hmu/images/countries/io.svg +0 -148
  848. package/hmu/images/countries/iq.svg +0 -10
  849. package/hmu/images/countries/ir.svg +0 -219
  850. package/hmu/images/countries/is.svg +0 -12
  851. package/hmu/images/countries/it.svg +0 -7
  852. package/hmu/images/countries/je.svg +0 -32
  853. package/hmu/images/countries/jm.svg +0 -8
  854. package/hmu/images/countries/jo.svg +0 -16
  855. package/hmu/images/countries/jp.svg +0 -11
  856. package/hmu/images/countries/ke.svg +0 -23
  857. package/hmu/images/countries/kg.svg +0 -15
  858. package/hmu/images/countries/kh.svg +0 -69
  859. package/hmu/images/countries/ki.svg +0 -36
  860. package/hmu/images/countries/km.svg +0 -16
  861. package/hmu/images/countries/kn.svg +0 -14
  862. package/hmu/images/countries/kp.svg +0 -15
  863. package/hmu/images/countries/kr.svg +0 -24
  864. package/hmu/images/countries/kw.svg +0 -13
  865. package/hmu/images/countries/ky.svg +0 -63
  866. package/hmu/images/countries/kz.svg +0 -23
  867. package/hmu/images/countries/la.svg +0 -12
  868. package/hmu/images/countries/lb.svg +0 -15
  869. package/hmu/images/countries/lc.svg +0 -8
  870. package/hmu/images/countries/li.svg +0 -43
  871. package/hmu/images/countries/lk.svg +0 -22
  872. package/hmu/images/countries/lr.svg +0 -14
  873. package/hmu/images/countries/ls.svg +0 -8
  874. package/hmu/images/countries/lt.svg +0 -7
  875. package/hmu/images/countries/lu.svg +0 -5
  876. package/hmu/images/countries/lv.svg +0 -6
  877. package/hmu/images/countries/ly.svg +0 -13
  878. package/hmu/images/countries/ma.svg +0 -4
  879. package/hmu/images/countries/mc.svg +0 -6
  880. package/hmu/images/countries/md.svg +0 -72
  881. package/hmu/images/countries/me.svg +0 -118
  882. package/hmu/images/countries/mf.svg +0 -7
  883. package/hmu/images/countries/mg.svg +0 -7
  884. package/hmu/images/countries/mh.svg +0 -7
  885. package/hmu/images/countries/mk.svg +0 -5
  886. package/hmu/images/countries/ml.svg +0 -7
  887. package/hmu/images/countries/mm.svg +0 -16
  888. package/hmu/images/countries/mn.svg +0 -13
  889. package/hmu/images/countries/mo.svg +0 -9
  890. package/hmu/images/countries/mp.svg +0 -86
  891. package/hmu/images/countries/mq.svg +0 -7
  892. package/hmu/images/countries/mr.svg +0 -6
  893. package/hmu/images/countries/ms.svg +0 -39
  894. package/hmu/images/countries/mt.svg +0 -49
  895. package/hmu/images/countries/mu.svg +0 -8
  896. package/hmu/images/countries/mv.svg +0 -6
  897. package/hmu/images/countries/mw.svg +0 -10
  898. package/hmu/images/countries/mx.svg +0 -385
  899. package/hmu/images/countries/my.svg +0 -15
  900. package/hmu/images/countries/mz.svg +0 -21
  901. package/hmu/images/countries/na.svg +0 -16
  902. package/hmu/images/countries/nc.svg +0 -7
  903. package/hmu/images/countries/ne.svg +0 -6
  904. package/hmu/images/countries/nf.svg +0 -9
  905. package/hmu/images/countries/ng.svg +0 -6
  906. package/hmu/images/countries/ni.svg +0 -131
  907. package/hmu/images/countries/nl.svg +0 -7
  908. package/hmu/images/countries/no.svg +0 -7
  909. package/hmu/images/countries/np.svg +0 -14
  910. package/hmu/images/countries/nr.svg +0 -12
  911. package/hmu/images/countries/nu.svg +0 -26
  912. package/hmu/images/countries/nz.svg +0 -41
  913. package/hmu/images/countries/om.svg +0 -116
  914. package/hmu/images/countries/pa.svg +0 -14
  915. package/hmu/images/countries/pe.svg +0 -279
  916. package/hmu/images/countries/pf.svg +0 -19
  917. package/hmu/images/countries/pg.svg +0 -9
  918. package/hmu/images/countries/ph.svg +0 -28
  919. package/hmu/images/countries/pk.svg +0 -15
  920. package/hmu/images/countries/pl.svg +0 -6
  921. package/hmu/images/countries/pm.svg +0 -7
  922. package/hmu/images/countries/pn.svg +0 -62
  923. package/hmu/images/countries/pr.svg +0 -13
  924. package/hmu/images/countries/ps.svg +0 -15
  925. package/hmu/images/countries/pt.svg +0 -57
  926. package/hmu/images/countries/pw.svg +0 -11
  927. package/hmu/images/countries/py.svg +0 -157
  928. package/hmu/images/countries/qa.svg +0 -4
  929. package/hmu/images/countries/re.svg +0 -7
  930. package/hmu/images/countries/ro.svg +0 -7
  931. package/hmu/images/countries/rs.svg +0 -292
  932. package/hmu/images/countries/ru.svg +0 -7
  933. package/hmu/images/countries/rw.svg +0 -13
  934. package/hmu/images/countries/sa.svg +0 -26
  935. package/hmu/images/countries/sb.svg +0 -13
  936. package/hmu/images/countries/sc.svg +0 -14
  937. package/hmu/images/countries/sd.svg +0 -13
  938. package/hmu/images/countries/se.svg +0 -16
  939. package/hmu/images/countries/sg.svg +0 -13
  940. package/hmu/images/countries/sh.svg +0 -74
  941. package/hmu/images/countries/si.svg +0 -18
  942. package/hmu/images/countries/sj.svg +0 -7
  943. package/hmu/images/countries/sk.svg +0 -9
  944. package/hmu/images/countries/sl.svg +0 -7
  945. package/hmu/images/countries/sm.svg +0 -91
  946. package/hmu/images/countries/sn.svg +0 -8
  947. package/hmu/images/countries/so.svg +0 -11
  948. package/hmu/images/countries/sr.svg +0 -6
  949. package/hmu/images/countries/ss.svg +0 -8
  950. package/hmu/images/countries/st.svg +0 -16
  951. package/hmu/images/countries/sv.svg +0 -618
  952. package/hmu/images/countries/sx.svg +0 -56
  953. package/hmu/images/countries/sy.svg +0 -6
  954. package/hmu/images/countries/sz.svg +0 -45
  955. package/hmu/images/countries/tc.svg +0 -67
  956. package/hmu/images/countries/td.svg +0 -7
  957. package/hmu/images/countries/tf.svg +0 -15
  958. package/hmu/images/countries/tg.svg +0 -14
  959. package/hmu/images/countries/th.svg +0 -7
  960. package/hmu/images/countries/tj.svg +0 -22
  961. package/hmu/images/countries/tk.svg +0 -5
  962. package/hmu/images/countries/tl.svg +0 -13
  963. package/hmu/images/countries/tm.svg +0 -213
  964. package/hmu/images/countries/tn.svg +0 -13
  965. package/hmu/images/countries/to.svg +0 -10
  966. package/hmu/images/countries/tr.svg +0 -8
  967. package/hmu/images/countries/tt.svg +0 -5
  968. package/hmu/images/countries/tv.svg +0 -27
  969. package/hmu/images/countries/tw.svg +0 -14
  970. package/hmu/images/countries/tz.svg +0 -13
  971. package/hmu/images/countries/ua.svg +0 -6
  972. package/hmu/images/countries/ug.svg +0 -30
  973. package/hmu/images/countries/um.svg +0 -23
  974. package/hmu/images/countries/un.svg +0 -16
  975. package/hmu/images/countries/us.svg +0 -12
  976. package/hmu/images/countries/uy.svg +0 -28
  977. package/hmu/images/countries/uz.svg +0 -30
  978. package/hmu/images/countries/va.svg +0 -483
  979. package/hmu/images/countries/vc.svg +0 -8
  980. package/hmu/images/countries/ve.svg +0 -26
  981. package/hmu/images/countries/vg.svg +0 -133
  982. package/hmu/images/countries/vi.svg +0 -31
  983. package/hmu/images/countries/vn.svg +0 -11
  984. package/hmu/images/countries/vu.svg +0 -18
  985. package/hmu/images/countries/wf.svg +0 -7
  986. package/hmu/images/countries/ws.svg +0 -7
  987. package/hmu/images/countries/ye.svg +0 -7
  988. package/hmu/images/countries/yt.svg +0 -7
  989. package/hmu/images/countries/za.svg +0 -17
  990. package/hmu/images/countries/zm.svg +0 -27
  991. package/hmu/images/countries/zw.svg +0 -21
  992. package/hmu/images/hipay-white-logo.svg +0 -42
  993. package/hmu/images/logo_visa_75wx45h.gif +0 -0
  994. package/internal/RefHolder.js +0 -64
  995. package/internal/SwitchBase.js +0 -287
  996. package/internal/svg-icons/ArrowDownward.js +0 -37
  997. package/internal/svg-icons/ArrowDropDown.js +0 -37
  998. package/internal/svg-icons/Cancel.js +0 -36
  999. package/internal/svg-icons/CheckBox.js +0 -36
  1000. package/internal/svg-icons/CheckBoxOutlineBlank.js +0 -36
  1001. package/internal/svg-icons/CheckCircle.js +0 -36
  1002. package/internal/svg-icons/IndeterminateCheckBox.js +0 -36
  1003. package/internal/svg-icons/KeyboardArrowLeft.js +0 -36
  1004. package/internal/svg-icons/KeyboardArrowRight.js +0 -36
  1005. package/internal/svg-icons/RadioButtonChecked.js +0 -36
  1006. package/internal/svg-icons/RadioButtonUnchecked.js +0 -36
  1007. package/styles/createHiMuiTheme.js +0 -332
  1008. package/svg-icons/ArrowDownward.js +0 -37
  1009. package/svg-icons/ArrowDropDown.js +0 -37
  1010. package/svg-icons/Cancel.js +0 -36
  1011. package/svg-icons/CheckBox.js +0 -36
  1012. package/svg-icons/CheckBoxOutlineBlank.js +0 -36
  1013. package/svg-icons/CheckCircle.js +0 -36
  1014. package/svg-icons/HiAccount.js +0 -52
  1015. package/svg-icons/HiAll.js +0 -62
  1016. package/svg-icons/HiBilling.js +0 -52
  1017. package/svg-icons/HiCatalog.js +0 -52
  1018. package/svg-icons/HiCustomer.js +0 -58
  1019. package/svg-icons/HiFinance.js +0 -52
  1020. package/svg-icons/HiRoute.js +0 -52
  1021. package/svg-icons/HiSettlement.js +0 -52
  1022. package/svg-icons/HiSizeLarge.js +0 -36
  1023. package/svg-icons/HiSizeMedium.js +0 -36
  1024. package/svg-icons/HiSizeSmall.js +0 -36
  1025. package/svg-icons/HiTransaction.js +0 -52
  1026. package/svg-icons/HiUser.js +0 -58
  1027. package/svg-icons/HiWidget.js +0 -62
  1028. package/svg-icons/IndeterminateCheckBox.js +0 -36
  1029. package/svg-icons/KeyboardArrowLeft.js +0 -36
  1030. package/svg-icons/KeyboardArrowRight.js +0 -36
  1031. package/svg-icons/RadioButtonChecked.js +0 -36
  1032. package/svg-icons/RadioButtonUnchecked.js +0 -36
  1033. package/svg-icons/index.js +0 -106
  1034. package/transitions/Collapse.js +0 -324
  1035. package/transitions/Fade.js +0 -207
  1036. package/transitions/Grow.js +0 -251
  1037. package/transitions/Slide.js +0 -381
  1038. package/transitions/Zoom.js +0 -204
  1039. package/transitions/index.js +0 -52
  1040. package/utils/ClickAwayListener.js +0 -122
  1041. package/utils/HiIconBuilder.js +0 -178
  1042. package/utils/addEventListener.js +0 -26
  1043. package/utils/hiGetMdiIcon.js +0 -20
  1044. package/utils/hiHelpers.js +0 -195
  1045. package/utils/keyboardFocus.js +0 -75
  1046. package/utils/manageAriaHidden.js +0 -49
  1047. package/utils/withWidth.js +0 -214
@@ -1,36 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-im">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".67" d="M-77.62 0h682.67v512H-77.62z"/>
5
- </clipPath>
6
- </defs>
7
- <g clip-path="url(#a)" transform="translate(72.77) scale(.94)">
8
- <path fill-rule="evenodd" fill="#ba0000" d="M629.43 512H-102V0h731.43z"/>
9
- <path d="M281.02 376.01c.2-.605.603-6.844.402-6.844s-9.46-10.867-9.258-10.867c.202 0 11.874 2.616 11.874 2.213 0-.402 4.63-11.47 4.63-11.672 0-.2 5.634 13.485 5.634 13.485l11.47 5.032-8.05 6.64s1.813 12.88 1.813 13.083c0 .2-8.05-7.65-8.05-7.65l-8.857 1.008s-1.206-4.025-1.608-4.427z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="2.204" fill="#ffef00"/>
10
- <path d="M218.66 206.89c-7.647 3.938-36.996 37.486-41.02 42.718-3.373 7.596-9.97 17.205-16.763 23.39-7.252 5.488-11.282 12.983-10.284 20.08-.08 8.83 4.87 14.842 8.814 21.056 2.335 2.838 5.475 4.673 8.815 4.896 6.85.905 7.458 3.014 10.887 4.32 13.505 18.39 33.653 31.95 48.163 42.69 9.25 4.876 15.68 9.75 17.885 12.412 4.248 8.112 3.466 16.022 2.884 19.908-3.59 13.55-7.182 27.097-10.773 40.646-1.813 11.07 7.807 8.58 8.324 6.366 4.34-5.635 10.82-1.678 20.077-34.28 4.245-5.713 8.49-11.426 12.733-17.14 0 0 4.898-1.958 4.898-2.447 7.448-8.942 1.778-14.06-2.45-15.67-3.1-1.142-6.2-2.286-9.302-3.43 0 0-10.773-10.772-11.263-10.772-5.12-14.893-30.248-46.687-36.085-51.114-4.04-4.21-5.963-6.005-9.798-8.347-5.897-2.82-7.8-3.738-11.41-5.18-3.008-1.206-.867-4.507 1.045-6.016 19.903-10.834 35.68-22.875 54.778-35.118l2.938-1.96-6.856-39.175-31.83-11.264c-1.67 1.143-2.937 2.287-4.407 3.43z" fill-rule="evenodd" stroke="#000" stroke-width="2.636" fill="#fff"/>
11
- <path d="M245.29 413.15c.1-.402 19.923-4.025 19.923-4.025s-2.314 7.346-2.415 7.346l-19.72 5.937 2.212-9.257z" fill-rule="evenodd" fill="#ffec00"/>
12
- <path d="M193.64 338.51c3.824-10.163 14.438-18.21 21.568-20.43" stroke="#000" stroke-width="2.204" fill="none"/>
13
- <path d="M244.58 413.32c1.28-.36 6.96-2.018 8.616-2.276 1.765-.414 3.523-.876 5.22-1.424 1.96-.4 3.186-.768 5.22-1.14 1.595-.607 3.17-1.024 4.874-1.422m-27.52 18.518c.167-.22 1.517-1.415 2.487-1.992 1.143-.36 5.05-2.018 6.527-2.276a53.935 53.935 0 0 0 4.662-1.424c1.75-.4 2.845-.768 4.663-1.14 1.422-.607 2.83-1.023 4.35-1.422" stroke="#000" stroke-width="2.437" fill="none"/>
14
- <path d="M249.04 341.38h-.284c.89 0 .344-.074-.855 1.423-.425 1.15-4.08 3.7-6.83 3.7-1.327.142-3.367.284-4.696.284-.38 0-.9-.284-1.28-.284m13.665 53.517h1.422c1.476 0 2.957.263 4.27.284 1.423 0 2.846.404 4.27.404 1.436.203 3.167.137 4.653.348 1.666.057 3.004.386 4.738.386 1.398.053 2.152.286 3.7.286l-3.7-.286c1.398.053 2.152.286 3.7.286M239.08 434.74c.152-.222 1.39-1.415 2.276-1.992 1.047-.36 4.624-2.018 5.978-2.276a46.719 46.719 0 0 0 4.268-1.424c1.604-.4 2.606-.768 4.27-1.14 1.304-.607 2.592-1.024 3.984-1.422m5.874-41.216c-.805 2.337.238 2.924.67 3.933.75.977 2.666 2.466 5.693 3.415 1.167.314 2.064.622 3.415 1.14.894.082 1.334.305 1.992.568M153.13 299.55h.284c-.892 0-.357.058 1.14-1.14.923-1.032 1.695-1.5 2.56-2.56m14.436 23.97c.19 0 16.557-8.25 18.305-10.01 1.238-.9 2.176-1.846 3.68-2.866.967-.504 1.66-1.15 2.564-1.707.75-1.09 1.733-1.748 2.275-2.745 1.005-.87.574-1.815 1.39-2.864.384-1.075 1.105-2.885 1.34-3.87M221.95 308c.09.59-.26 2.402-.236 3.782-.057 1.6-2.115 6.543-4.603 8.02" stroke="#000" stroke-width="2.204" fill="none"/>
15
- <path d="M192.55 307.82c.096 0 2.587.81 6.75 2.09 5.013 1.803 15.438 8.372 16.472 9.277 1.057.83 2.946 1.573 3.67 2.56 1.133.98 1.962 2.108 2.847 3.13 1.04 1.27 1.925 2.342 2.56 3.417 3.165 2.567 11.68 20.343 11.953 21.346.478.94 1.07 2.246 1.424 3.13.63.728 1.06 1.756 1.707 2.847.595 1.415 1.262 2.06 1.994 3.13.942.656 2.212 1.9 3.415 2.562 1.283 1.096 2.486 1.543 3.415 2.277 1.343.57 16.342 10.052 17.038 10.527 1.37 1.1 5.555 5.437 2.617 8.59-1.246 1.067-2.37 2.48-3.433 3.082-1.085 1.086-2.594 1.572-3.84 2.134-6.758 1.997-10.2 1.282-11.53 1.282h-1.423M159.42 274.29c1.92.752 1.146.197 2.875.984 1.162.51 1.927.522 3.07.94 1.21.387 4.597.997 6.223 2.63 1.194 1.078 2.105 1.99 3.416 2.776 1.55 1.07 2.67 1.545 4.592 2.347 1.622.607 3.435 1.28 5.075 1.338 1.705.1 2.114.014 3.75.014h3.984-3.985 3.984" stroke="#000" stroke-width="2.204" fill="none"/>
16
- <path d="M158.96 293.28c4.268-.284 11.383.997 11.525.997l9.393-.142c4.934-.476 6.024-2.373 6.83-3.702 1.85-2.845 3.132-3.84 4.555-5.976 2.276-1.707 5.41 2.277 5.55 2.277 7.97 7.543 1.565 16.792 1.138 17.076-3.983 3.653-4.837 3.89-7.256 1.565-2.42-2.846-3.13-4.126-5.123-5.123-3.84-1.85-11.81-.426-11.954-.426-.142 0-4.126 1.565-4.126 1.565-1.946.712-3.18 2.42-6.546 2.988-3.415.238-4.554-.094-6.262-2.845-2.276-3.557-1.14-7.827 2.278-8.253z" fill-rule="evenodd" stroke="#000" stroke-width="2.204" fill="#ffe606"/>
17
- <path d="M381.8 120.66c-.625.122-6.26 2.828-6.162 3.004.098.176-4.837 13.57-4.936 13.395-.1-.177-3.54-11.634-3.89-11.436-.35.197-12.267 1.587-12.443 1.686-.176.098 8.99-11.52 8.99-11.52l-1.235-12.466 9.734 3.763s10.34-7.892 10.515-7.99c.175-.1-2.722 10.765-2.722 10.765l5.218 7.226s-2.916 3.024-3.07 3.57z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="2.204" fill="#ffef00"/>
18
- <path d="M264.93 257.9c7.18 4.736 50.806 13.878 57.34 14.822 8.274-.783 19.883.257 28.605 3.148 8.337 3.632 16.845 3.472 22.542-.876 7.737-4.258 10.552-11.52 14.035-18.003 1.33-3.425 1.39-7.062-.052-10.082-2.57-6.415-1.028-7.98-1.57-11.607 9.41-20.784 11.356-44.992 13.608-62.905-.284-10.45.814-18.447 2.054-21.672 4.988-7.68 12.267-10.874 15.94-12.27 13.57-3.512 27.14-7.02 40.71-10.53 10.537-3.846 3.652-11.01 1.47-10.377-7.04-1.022-6.766-8.61-39.72-.7l-21.18-2.7s-4.11-3.31-4.536-3.07c-11.444-2.108-13.126 5.343-12.458 9.816l1.57 9.79s-4.11 14.67-3.87 15.097c-10.473 11.76-26.062 49.528-27.06 56.785-.473 6.82-3.048 5.588-2.357 12.217.026 5.18-.576 1.946 1.153 12.618.422 3.213-3.505 2.965-5.758 2.037-19.198-12.04-37.426-19.89-57.458-30.538-1.05-.534-2.098-1.07-3.147-1.602l-30.788 25.175 5.78 33.266c1.815.895 3.433 1.44 5.15 2.16z" fill-rule="evenodd" stroke="#000" stroke-width="2.636" fill="#fff"/>
19
- <path d="M431.67 133.6c-.4.11-13.273-15.394-13.273-15.394s7.538-1.583 7.587-1.495l14.84 14.282-9.154 2.607z" fill-rule="evenodd" fill="#ffec00"/>
20
- <path d="M391.93 215.21c-10.733 1.648-22.95-3.66-28.38-8.787" stroke="#000" stroke-width="2.204" fill="none"/>
21
- <path d="M432.18 134.14c-.94-.94-5.17-5.08-6.207-6.395a66.484 66.484 0 0 0-3.8-3.853c-1.308-1.51-2.23-2.4-3.55-3.992-1.31-1.09-2.447-2.26-3.63-3.55m29.63 14.91c-.275-.034-1.978-.626-2.956-1.19-.874-.82-4.234-3.41-5.183-4.573a54.209 54.209 0 0 0-3.525-3.366c-1.208-1.33-2.065-2.102-3.28-3.506-1.227-.942-2.28-1.964-3.372-3.095" stroke="#000" stroke-width="2.437" fill="none"/>
22
- <path d="M367.28 165.51l.14.248c-.437-.777-.234-.263 1.66.047 1.21-.192 5.223 1.743 6.57 4.14.776 1.09 1.9 2.797 2.55 3.956.186.33.194.925.38 1.257m39.95-38.138l-.14-.248c.187.332-.37-.66-.557-.99-.723-1.288-1.22-2.708-1.845-3.863-.697-1.24-1.043-2.68-1.74-3.92-.527-1.352-1.433-2.828-1.977-4.227-.767-1.48-1.135-2.807-1.985-4.32-.64-1.244-.806-2.015-1.565-3.366l1.565 3.367c-.64-1.245-.806-2.016-1.565-3.367m44.819 12.354c-.268-.024-1.914-.517-2.852-1.008-.827-.736-4.025-3.04-4.914-4.095a47.069 47.069 0 0 0-3.332-3.023c-1.135-1.202-1.947-1.894-3.086-3.164-1.17-.838-2.163-1.757-3.193-2.775M397.35 129.45c2.432-.444 2.432-1.64 3.1-2.51.484-1.134.843-3.534.187-6.637-.298-1.172-.47-2.105-.68-3.536-.367-.82-.388-1.312-.482-2.015M377.82 269.62l-.14-.248c.438.778.226.283-1.55-.434-1.354-.3-2.14-.743-3.487-.978m13.817-24.34c-.093-.166-15.305-10.39-17.697-11.05-1.39-.638-2.674-.99-4.3-1.804-.914-.594-1.817-.88-2.746-1.397-1.318-.122-2.372-.656-3.507-.64-1.252-.45-1.864.39-3.178.194-1.125.19-3.056.45-4.03.727m.458-24.17c.47-.366 2.222-.95 3.413-1.648 1.422-.735 6.74-1.363 9.245.082" stroke="#000" stroke-width="2.204" fill="none"/>
23
- <path d="M365.71 231.2c-.047-.084-.562-2.652-1.486-6.91-.886-5.252-.268-17.558.013-18.904.207-1.328-.072-3.34.433-4.454.298-1.466.876-2.743 1.334-4.015.596-1.528 1.097-2.826 1.723-3.906.686-4.017 12.008-20.15 12.75-20.88a43.017 43.017 0 0 1 2.03-2.775c.325-.907 1.01-1.784 1.645-2.884.94-1.21 1.177-2.108 1.752-3.27.11-1.143.57-2.86.558-4.233.328-1.656.127-2.924.312-4.094-.16-1.45.753-19.172.826-20.01.288-1.735 2.017-7.507 6.206-6.492 1.54.565 3.32.852 4.368 1.484 1.48.413 2.642 1.49 3.743 2.3 5.052 4.913 6.115 8.264 6.766 9.423l.698 1.24M352.64 275.94l-.14-.248c.377.67.17.336-.31-1.132-.125-1.263-.515-2.97-.712-4.17-.255-1.247-.84-2.667-.68-3.536-.447-1.266-.166-2.31-.046-3.566.354-1.568.514-2.703.558-4.232.172-1.875.034-3.205.14-4.977-.494-1.46-.594-2.682-1.348-4.14-.67-1.394-1.182-2.684-1.984-4.11l-1.953-3.473 1.953 3.474-1.953-3.473" stroke="#000" stroke-width="2.204" fill="none"/>
24
- <path d="M369.5 267.6c-2.34-3.58-4.71-10.41-4.78-10.535l-4.727-8.118c-2.833-4.068-5.02-4.088-6.574-4.14-3.387-.218-4.884-.846-7.442-1.04-2.604-1.148-.666-5.83-.736-5.955 2.67-10.642 13.87-9.593 14.328-9.36 5.137 1.682 5.762 2.31 4.92 5.558-1.294 3.505-2.06 4.75-1.954 6.976.27 4.256 5.417 10.505 5.488 10.63.07.124 3.386 2.83 3.386 2.83 1.574 1.347 3.668 1.585 5.812 4.242 1.882 2.86 2.15 4.016.59 6.852-1.986 3.728-6.265 4.83-8.312 2.06z" fill-rule="evenodd" stroke="#000" stroke-width="2.204" fill="#ffe606"/>
25
- <path d="M105.242 168.67c.444.457 5.795 3.69 5.888 3.51s14.004-3.387 13.91-3.208-7.793 9.333-7.435 9.518c.356.186 8.047 9.394 8.226 9.487.18.092-14.563-1.212-14.563-1.212l-9.75 7.86-2.185-10.203s-12.266-4.328-12.445-4.42c-.178-.093 10.497-3.62 10.497-3.62l3.188-8.324s4.128.784 4.67.612z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="2.204" fill="#ffef00"/>
26
- <path d="M284.058 191.255c.03-8.6-16.22-50.106-19.01-56.09-5.187-6.492-10.676-16.774-13.035-25.654-1.527-8.963-6.322-15.994-13.08-18.378-7.8-4.14-15.418-2.517-22.75-1.88-3.595.764-6.67 2.706-8.407 5.566-3.96 5.663-6.11 5.23-8.85 7.672-22.544 3.513-43.862 15.146-60.082 23.074-8.588 5.962-15.878 9.425-19.256 10.154-9.156.033-15.816-4.306-18.997-6.613l-31.108-28.29c-8.99-6.71-11.212 2.975-9.486 4.454 3 6.45-3.496 10.375 21.172 33.613l9.344 19.197s-.518 5.25-.084 5.475c4.504 10.73 11.66 8.056 15.036 5.046l7.33-6.676s14.525-4.597 14.75-5.03c15.576 2.318 55.712-5.328 62.33-8.47 5.965-3.34 6.345-.51 11.512-4.72 4.32-2.858 1.944-.582 9.925-7.874 2.458-2.113 4.4 1.308 4.86 3.7.443 22.657 3.86 42.207 5.925 64.798.13 1.17.257 2.34.385 3.51 12.64 3.99 25.285 7.978 37.926 11.967 8.22-7.686 16.444-15.373 24.664-23.06-.244-2.007-.675-3.66-1.012-5.49z" fill-rule="evenodd" stroke="#000" stroke-width="2.637" fill="#fff"/>
27
- <path d="M88.737 119.85c.31.275-5.608 19.537-5.608 19.537s-5.455-5.44-5.408-5.53l3.82-20.237 7.195 6.23z" fill-rule="evenodd" fill="#ffec00"/>
28
- <path d="M178.78 108.395c7.258 8.077 9.51 21.205 8.194 28.556" stroke="#000" stroke-width="2.204" fill="none"/>
29
- <path d="M88.917 119.143c-.27 1.302-1.416 7.108-1.95 8.696a66.817 66.817 0 0 0-1.142 5.288c-.547 1.923-.785 3.18-1.394 5.158-.194 1.694-.55 3.284-.982 4.98m-3.754-32.955c.12.25.557 1.998.622 3.125-.206 1.18-.535 5.41-.987 6.84a54.356 54.356 0 0 0-.886 4.794c-.45 1.737-.628 2.88-1.138 4.663-.116 1.543-.394 2.984-.74 4.517" stroke="#000" stroke-width="2.437" fill="none"/>
30
- <path d="M150.694 156.247l.13-.252c-.41.79-.09.34-.868-1.415-.825-.908-1.403-5.325-.136-7.766.486-1.244 1.3-3.12 1.912-4.3.174-.335.667-.668.842-1.005M98.8 128.987l-.13.252-.525 1.01c-.68 1.31-1.596 2.502-2.22 3.657-.655 1.263-1.67 2.34-2.325 3.604-.842 1.182-1.58 2.75-2.454 3.97-.817 1.453-1.726 2.488-2.525 4.027-.69 1.217-1.244 1.78-1.958 3.153l1.96-3.153c-.692 1.217-1.246 1.78-1.96 3.153M72.44 104.386c.127.237.616 1.885.72 2.938-.163 1.095-.34 5.034-.735 6.354-.298 1.47-.55 2.96-.703 4.444-.384 1.607-.52 2.666-.957 4.314-.06 1.438-.285 2.773-.573 4.192m33.872 24.222c-1.703-1.793-2.705-1.137-3.8-1.22-1.21.217-3.416 1.23-5.653 3.48-.815.89-1.502 1.546-2.584 2.506-.485.756-.886 1.043-1.422 1.506m141.417-66.717l-.13.252c.41-.792.112-.343.485 1.536.49 1.296.55 2.197 1.092 3.453M205.55 97.41c-.088.17-.31 18.495.45 20.858.226 1.513.635 2.78.846 4.587.002 1.09.257 2.002.335 3.06.62 1.17.752 2.345 1.387 3.286.31 1.294 1.347 1.346 1.903 2.553.776.837 2.05 2.31 2.815 2.973m-20.472 12.861c-.563-.192-2.01-1.34-3.247-1.953-1.395-.787-4.833-4.89-4.997-7.78" stroke="#000" stroke-width="2.204" fill="none"/>
31
- <path d="M206.527 121.572c-.044.085-1.91 1.923-4.967 5.028-3.91 3.618-14.542 9.843-15.822 10.344-1.224.555-2.754 1.89-3.963 2.077-1.39.555-2.775.772-4.09 1.085-1.605.34-2.965.63-4.212.7-3.737 1.625-23.436.992-24.452.77a43.156 43.156 0 0 1-3.434-.178c-.936.225-2.046.13-3.313.204-1.53-.123-2.41.17-3.697.327-1.015.535-2.704 1.09-3.847 1.85-1.566.634-2.516 1.497-3.596 1.983-1.125.928-16.452 9.872-17.193 10.27-1.608.71-7.384 2.425-8.83-1.636-.372-1.597-1.107-3.244-1.152-4.467-.465-1.463-.2-3.026-.125-4.39 1.342-6.92 3.563-9.643 4.175-10.823l.656-1.263m142.437-25.449l-.13.253c.353-.683.188-.325-.778.88-.987.796-2.203 2.057-3.1 2.88-.902.896-1.77 2.162-2.583 2.505-.814 1.068-1.843 1.405-2.958 1.992-1.506.563-2.543 1.05-3.846 1.85-1.664.885-2.7 1.73-4.24 2.61-.95 1.213-1.918 1.967-2.725 3.395-.8 1.324-1.597 2.46-2.35 3.91l-1.837 3.537 1.837-3.537-1.837 3.537m11.75 73.122l.263-.506c-.485.935-.315.69.14-.888.005-1.892.454-4.18.473-5.85.285-1.766.574-3.675.592-5.464-.107-2.094-.104-3.97-.417-5.99-.024-1.857-.24-3.784-.296-5.605-.035-1.803-.17-3.35-.56-5.1-.037-1.31-.118-3.11-.437-4.716.17-1.267-.19-2.432-.458-3.445-.49-1.95-.68-3.09-1.195-5.11-.31-1.084-.615-2.468-1.082-4.09-.17-1.537-.992-3.533-1.326-4.858-.457-.974-.918-2.294-1.095-3.453-.478-1.07-1.16-2.375-1.345-3.585-.504-.924-1.04-2.36-1.598-3.718-.48-1.116-.834-2.49-1.345-3.584-.517-1.38-1.147-2.56-1.468-3.97-.493-.476-.605-1-.87-1.412" stroke="#000" stroke-width="2.204" fill="none"/>
32
- <path d="M234.893 98.47c-1.714 3.92-6.13 9.644-6.195 9.77l-4.202 8.402c-1.85 4.598-.67 6.44.137 7.767 1.673 2.952 1.967 4.548 3.205 6.795.467 2.807-4.512 3.75-4.578 3.877-10.366 3.596-15.623-6.35-15.68-6.86-1.406-5.218-1.222-6.085 1.956-7.16 3.64-.837 5.104-.878 6.907-2.187 3.412-2.557 5.82-10.286 5.887-10.413.065-.126.512-4.383.512-4.383.266-2.056-.683-3.938.365-7.188 1.363-3.14 2.182-3.998 5.41-4.246 4.207-.38 7.472 2.596 6.276 5.825z" fill-rule="evenodd" stroke="#000" stroke-width="2.204" fill="#ffe606"/>
33
- <path d="M221.29 199.65c-1.566-1.422 29.458 11.24 33.726 11.385 5.836-2.134 29.886-22.484 29.886-22.484.237 1.993 1.09 7.163 3.414 8.255-9.296 7.543-17.74 14.8-27.037 22.34.663 11.955-1.52 24.62 4.552 37.998 0 0-7.256.14-7.256 0-6.404-6.404-8.682-37.284-8.682-37.284-10.198-4.555-20.398-8.966-30.596-13.52 1.47-.95 2.656-3.89 1.992-6.69z" fill-rule="evenodd" fill-opacity=".987" stroke="#000" stroke-width="2.204" fill="#ffef00"/>
34
- <path d="M250.81 231.3c.496-.36-5.596 2.83-7.16 3.63-28.186 15.036-42.69 36.906-43.594 37.732-.487.932-1.384 2.174-2.204 3.392-.66 1.02-1.61 2.076-2.234 3.108-.864 1.196-2.68 3.558-3.67 4.606-.124.676.47-.23.276.22m77.846-70.558c-.547-.277 5.077 3.682 6.505 4.707 26.26 18.187 52.344 21.082 53.492 21.507 1.05.007 2.566.236 4.023.41 1.21.12 2.583.48 3.787.563 1.458.22 4.39.754 5.775 1.157.656-.2-.42-.312.067-.346" stroke="#000" stroke-width="2.204" fill="none"/>
35
- </g>
36
- </svg>
@@ -1,25 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" id="flag-icon-css-in">
2
- <path fill="#f93" d="M0 0h640v160H0z"/>
3
- <path fill="#fff" d="M0 160h640v160H0z"/>
4
- <path fill="#128807" d="M0 320h640v160H0z"/>
5
- <g transform="matrix(3.2 0 0 3.2 320 240)">
6
- <circle r="20" fill="#008"/>
7
- <circle r="17.5" fill="#fff"/>
8
- <circle r="3.5" fill="#008"/>
9
- <g id="d">
10
- <g id="c">
11
- <g id="b">
12
- <g id="a" fill="#008">
13
- <circle r=".875" transform="rotate(7.5 -8.75 133.5)"/>
14
- <path d="M0 17.5L.6 7 0 2l-.6 5L0 17.5z"/>
15
- </g>
16
- <use height="100%" width="100%" xlink:href="#a" transform="rotate(15)"/>
17
- </g>
18
- <use height="100%" width="100%" xlink:href="#b" transform="rotate(30)"/>
19
- </g>
20
- <use height="100%" width="100%" xlink:href="#c" transform="rotate(60)"/>
21
- </g>
22
- <use height="100%" width="100%" xlink:href="#d" transform="rotate(120)"/>
23
- <use height="100%" width="100%" xlink:href="#d" transform="rotate(-120)"/>
24
- </g>
25
- </svg>
@@ -1,148 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-io">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".67" d="M0 0h682.67v512H0z"/>
5
- </clipPath>
6
- </defs>
7
- <g clip-path="url(#a)" transform="scale(.9375)">
8
- <path fill-rule="evenodd" fill="#fff" d="M0 0h1024v512H0z"/>
9
- <path d="M1024 445.24c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.715 0 60.955 33.96 121.9 33.96 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zm0-84.92c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286.01 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zm0-84.91c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zm0-84.91c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203V247.5c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zm0-84.91c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491-.002-39.634 24.2-57.92 24.2v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zm0-84.915c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491 0-39.634 24.203-57.92 24.203v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528V20.674z" fill-rule="evenodd" fill="#000063"/>
10
- <path fill-rule="evenodd" fill="#000063" d="M0 .063h261.31v157.91H0z"/>
11
- <g stroke-width="1pt">
12
- <path d="M0 .063v17.654L232.097 157.97h29.215v-17.654L29.215.064H0zm261.312 0v17.654L29.215 157.968H0v-17.654L232.097.064h29.215z" fill="#fff"/>
13
- <path d="M108.88.063v157.905h43.552V.063H108.88zM0 52.698v52.635h261.312V52.698H0z" fill="#fff"/>
14
- <path d="M0 63.225v31.581h261.312v-31.58H0zM117.59.063v157.905h26.132V.063H117.59zM0 157.968l87.104-52.635h19.476l-87.104 52.635H0zM0 .063l87.104 52.635H67.628L0 11.833V.063zm154.732 52.635L241.836.063h19.476l-87.104 52.635h-19.476zm106.58 105.27l-87.104-52.635h19.476l67.628 40.866v11.77z" fill="#c00"/>
15
- </g>
16
- <path d="M814.96-301.18l-17.72 708.66c0 37.298 80.097 37.298 88.583 0l-17.717-708.66h-53.149z" fill-rule="evenodd" transform="matrix(.2064 0 0 .4902 211.633 267.436)" stroke="#fff" stroke-width="6.935" fill="#a24300"/>
17
- <path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
18
- <path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
19
- <path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
20
- <path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
21
- <path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
22
- <path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
23
- <path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/>
24
- <path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
25
- <path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
26
- <path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
27
- <path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
28
- <path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
29
- <path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
30
- <path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/>
31
- <path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
32
- <path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
33
- <path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
34
- <path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
35
- <path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
36
- <path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
37
- <path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/>
38
- <g>
39
- <path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
40
- <path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
41
- <path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
42
- <path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
43
- <path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
44
- <path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
45
- <path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/>
46
- </g>
47
- <g>
48
- <path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
49
- <path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
50
- <path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
51
- <path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
52
- <path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
53
- <path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
54
- <path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/>
55
- </g>
56
- <g>
57
- <path d="M460.63 549.21l28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15.001-70.866z" fill-rule="evenodd" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
58
- <path d="M467.21 584.65l28.855 124.02v336.62" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
59
- <path d="M436.23 885.83l59.833 88.582 60.682-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
60
- <path d="M434.53 814.96l61.53 88.582 60.682-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
61
- <path d="M435.38 744.1l60.682 88.582 59.833-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
62
- <path d="M432.84 690.94l63.228 70.866 53.149-70.866" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
63
- <path d="M425.2 637.8l70.866 70.865 45.406-70.865" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
64
- <path d="M436.12 593.24l53.15 86.886 35.327-95.478" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/>
65
- </g>
66
- <g>
67
- <path d="M460.63 549.21l28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15.001-70.866z" fill-rule="evenodd" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
68
- <path d="M467.21 584.65l28.855 124.02v336.62" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
69
- <path d="M436.23 885.83l59.833 88.582 60.682-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
70
- <path d="M434.53 814.96l61.53 88.582 60.682-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
71
- <path d="M435.38 744.1l60.682 88.582 59.833-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
72
- <path d="M432.84 690.94l63.228 70.866 53.149-70.866" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
73
- <path d="M425.2 637.8l70.866 70.865 45.406-70.865" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
74
- <path d="M436.12 593.24l53.15 86.886 35.327-95.478" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/>
75
- </g>
76
- <g>
77
- <path d="M354.33 531.5l88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.3 35.433-35.433-35.433 106.3 35.433-35.433-17.717 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.3 35.433 35.433-53.15-106.3 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433-53.149-88.583z" fill-rule="evenodd" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#fff" stroke-width="8.25" fill="#006d00"/>
78
- <path d="M378.96 560.02l63.952 95.497 17.716 53.15 8.859 45.205 8.858 78.811 9.315 70.866 8.401 141.74" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/>
79
- <path d="M425.2 903.54l63.665 70.866 50.749-88.583" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/>
80
- <path d="M417.08 814.96l70.579 88.583 50.75-88.583" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/>
81
- <path d="M407.48 752.44l70.867 80.235 45.948-88.583M372.05 637.8l88.583 70.866 25.831-70.866" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/>
82
- <path d="M360.62 602.36l82.296 53.149 10.515-53.149m-63.671 88.58l81.095 70.866 33.946-70.866" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/>
83
- </g>
84
- <g fill-rule="evenodd">
85
- <path d="M541.46 1173.3l-1.7-229.13-61.1-106.94c-15.277-52.618-7.754-78.079 16.973-79.776 24.728-1.698 49.224 13.579 84.868 15.276 35.645 1.697 28.856-59.408 81.474-57.71 52.618 1.697 144.28 32.25 222.36 37.342 78.078 5.092 118.81-27.158 208.77-30.553 89.97-3.395 113.73 42.435 118.82 42.435s30.55-18.672 56.01-22.066c25.46-3.395 33.95 10.184 33.95 10.184s-1.7 57.71-13.58 91.657c-11.88 33.948-54.32 89.961-56.01 89.961-1.7 0-15.28 249.52-15.28 251.21 0 1.7-675.55-6.79-675.55-11.88z" stroke="#000" stroke-width="1pt" fill="#c00" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/>
86
- <g stroke="#000" stroke-width="1pt">
87
- <path d="M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" fill="#fff100" transform="matrix(-.13659 0 0 .12573 508.357 252.74)"/>
88
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 506.168 252.526)" fill="#fff"/>
89
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 508.588 247.431)" fill="#fff"/>
90
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 509.849 242.243)" fill="#fff"/>
91
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 510.776 236.694)" fill="#fff"/>
92
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 510.545 230.678)" fill="#fff"/>
93
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 502.69 257.008)" fill="#fff"/>
94
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 508.487 224.996)" fill="#fff"/>
95
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 504.082 220.515)" fill="#fff"/>
96
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 498.054 217.528)" fill="#fff"/>
97
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 492.026 217.1)" fill="#fff"/>
98
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 485.535 217.314)" fill="#fff"/>
99
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 479.043 218.168)" fill="#fff"/>
100
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 472.55 219.022)" fill="#fff"/>
101
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 465.596 220.088)" fill="#fff"/>
102
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 459.568 221.583)" fill="#fff"/>
103
- </g>
104
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 268.548 252.526)" stroke="#000" stroke-width="1pt" fill="#fff"/>
105
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.128 247.432)" stroke="#000" stroke-width="1pt" fill="#fff"/>
106
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 264.867 242.243)" stroke="#000" stroke-width="1pt" fill="#fff"/>
107
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 263.94 236.694)" stroke="#000" stroke-width="1pt" fill="#fff"/>
108
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 264.172 230.678)" stroke="#000" stroke-width="1pt" fill="#fff"/>
109
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.23 224.996)" stroke="#000" stroke-width="1pt" fill="#fff"/>
110
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 270.635 220.515)" stroke="#000" stroke-width="1pt" fill="#fff"/>
111
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 276.662 217.527)" stroke="#000" stroke-width="1pt" fill="#fff"/>
112
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 282.69 217.1)" stroke="#000" stroke-width="1pt" fill="#fff"/>
113
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 289.181 217.314)" stroke="#000" stroke-width="1pt" fill="#fff"/>
114
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 295.674 218.168)" stroke="#000" stroke-width="1pt" fill="#fff"/>
115
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 302.166 219.021)" stroke="#000" stroke-width="1pt" fill="#fff"/>
116
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 309.12 220.088)" stroke="#000" stroke-width="1pt" fill="#fff"/>
117
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 315.149 221.583)" stroke="#000" stroke-width="1pt" fill="#fff"/>
118
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 272.026 257.008)" stroke="#000" stroke-width="1pt" fill="#fff"/>
119
- <path d="M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
120
- <path d="M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.04553 0 0 .0479 299.433 309.064)" stroke="#000" stroke-width="2.991" fill="#fff100"/>
121
- <path d="M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.04553 0 0 .0479 347.83 309.064)" stroke="#000" stroke-width="2.991" fill="#fff100"/>
122
- <path d="M531.5 832.68V673.23s35.433 53.15 88.583 53.15c43.489 0 88.582-70.866 88.582-70.866s41.515 53.149 88.583 53.149c42.021 0 88.516-68.572 88.516-68.572s43.207 68.572 88.649 68.572c45.441 0 88.581-53.149 88.581-53.149s46.29 70.866 106.3 70.866c53.15 0 70.87-53.15 70.87-53.15v159.45h-708.66z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
123
- <path d="M708.66 832.68V708.66s106.3 35.433 106.3 124.02h-106.3z" transform="matrix(.13659 0 0 .12573 242.16 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
124
- <path d="M708.66 832.68V708.66s106.3 35.433 106.3 124.02h-106.3z" transform="matrix(-.13659 0 0 .12573 532.547 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
125
- <path d="M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
126
- <path d="M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="matrix(.13659 0 0 .12573 314.758 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
127
- <path d="M584.65 847.53c0-88.583 124.08-159.45 124.08-159.45s123.95 70.866 123.95 159.45H584.65z" transform="matrix(.13659 0 0 .12573 290.558 250.873)" stroke="#000" stroke-width="1pt" fill="#fff100"/>
128
- <path d="M1275.6 655.51c-35.43-17.716-166.02-35.433-376.28-35.433s-350.1 17.717-385.53 35.433c-35.434 17.717-35.434 53.149-.001 70.866 35.433 17.716 175.28 35.433 385.54 35.433s340.84-17.716 376.28-35.433c35.43-17.716 35.43-53.149 0-70.866z" transform="matrix(.13505 0 0 .12573 265.898 275.015)" stroke="#000" stroke-width="1pt" fill="#fff"/>
129
- <path d="M435.757 366.342c0 4.455-40.256 4.455-48.399 4.455-8.797 0-48.398 1.207-48.398-4.455 0-4.455 39.928-4.455 48.398-4.455 8.47 0 48.399.906 48.399 4.455z" fill="gray"/>
130
- <path d="M343.797 350.342c0 1.456-1.084 2.636-2.42 2.636-1.337 0-2.42-1.18-2.42-2.636s1.083-2.637 2.42-2.637c1.336 0 2.42 1.18 2.42 2.637zm91.956 0c0 1.456-1.083 2.636-2.42 2.636-1.336 0-2.42-1.18-2.42-2.636s1.084-2.637 2.42-2.637c1.337 0 2.42 1.18 2.42 2.637z" fill="#c00"/>
131
- <path d="M392.195 348.932c0 1.456-2.167 2.636-4.84 2.636s-4.84-1.18-4.84-2.636 2.167-2.636 4.84-2.636 4.84 1.18 4.84 2.636z"/>
132
- <path d="M415.41 348.932c0 1.456-1.625 2.636-3.63 2.636-2.004 0-3.63-1.18-3.63-2.636s1.626-2.636 3.63-2.636c2.005 0 3.63 1.18 3.63 2.636zm-49.834 0c0 1.456-1.626 2.636-3.63 2.636-2.005 0-3.63-1.18-3.63-2.636s1.625-2.636 3.63-2.636c2.004 0 3.63 1.18 3.63 2.636z" fill="#006300"/>
133
- <path d="M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.07805 0 0 .07185 279.5 297.926)" stroke="#000" stroke-width="2.188" fill="#fff100"/>
134
- <path d="M1381.9 549.21l70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(.03903 0 0 .06287 285.03 307.314)" stroke="#000" stroke-width="3.307" fill="#fff100"/>
135
- <path d="M1381.9 549.21l70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(-.03903 0 0 .06287 489.685 307.314)" stroke="#000" stroke-width="3.307" fill="#fff100"/>
136
- <path d="M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff"/>
137
- <path d="M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.07805 0 0 .07185 279.5 251.15)" stroke="#000" stroke-width="2.188" fill="#fff100"/>
138
- <path d="M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.592 206.336)" stroke="#000" stroke-width="1pt" fill="#fff"/>
139
- <path stroke="#000" stroke-width="1pt" fill="#fff100" d="M850.39 655.51h70.866v53.15H850.39z" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/>
140
- <path stroke="#000" stroke-width="1pt" fill="#fff100" d="M850.39 683.3h70.866v202.53H850.39z" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/>
141
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 246.057)" stroke="#000" stroke-width="1pt" fill="#fff"/>
142
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 240.295)" stroke="#000" stroke-width="1pt" fill="#fff"/>
143
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 234.92)" stroke="#000" stroke-width="1pt" fill="#fff"/>
144
- <path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 229.372)" stroke="#000" stroke-width="1pt" fill="#fff"/>
145
- <path d="M392.495 357.482c0 1-2.202 1.81-4.918 1.81s-4.918-.81-4.918-1.81 2.202-1.811 4.918-1.811c2.717 0 4.918.81 4.918 1.81zm44.57 4.421c-.272.685-2.668.742-5.35.127-2.683-.615-4.638-1.67-4.366-2.355.273-.686 2.668-.743 5.35-.128 2.684.616 4.638 1.67 4.366 2.356zm-18.628-3.004c-.108.882-2.439 1.44-5.206 1.247-2.768-.194-4.925-1.065-4.817-1.947.108-.882 2.439-1.44 5.206-1.247 2.768.193 4.925 1.065 4.817 1.947zm-81.87 3.004c.272.685 2.668.742 5.35.127 2.683-.615 4.638-1.67 4.366-2.355-.273-.686-2.668-.743-5.35-.128-2.684.616-4.638 1.67-4.366 2.356zm19.561-3.431c.108.882 2.439 1.44 5.206 1.247 2.768-.193 4.925-1.065 4.817-1.947-.108-.882-2.439-1.44-5.207-1.247-2.767.193-4.924 1.065-4.816 1.947z"/>
146
- </g>
147
- </g>
148
- </svg>
@@ -1,10 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-iq">
2
- <path fill="#fff" d="M0 160h640v160H0z"/>
3
- <path fill="#ce1126" d="M0 0h640v160H0z"/>
4
- <path d="M0 320h640v160H0z"/>
5
- <g transform="translate(-179.27 -92.847) scale(1.75182)" fill="#007a3d">
6
- <path d="M325.525 173.177c-.558-.294-1.186-.767-1.395-1.053-.314-.44-.13-.456 1.163-.105 2.32.628 3.815.383 5.298-.873l1.31-1.103 1.54.784c.847.428 1.747.724 2.007.656.667-.176 2.05-1.95 2.005-2.564-.054-.76.587-.57.896.263.615 1.63-.28 3.503-1.865 3.918-.774.203-1.488.128-2.66-.28-1.438-.5-1.683-.494-2.405.058-1.617 1.24-3.87 1.356-5.893.3zm5.733-5.242c-.563-.716-1.24-3.423-1.02-4.088.192-.575.39-.69.914-.526.918.288 1.13.92.993 3.064-.107 1.748-.366 2.207-.887 1.55zm-67.515-1.945c-.185 1.31 2.325 4.568 3.458 5.158-.77.345-1.727.19-2.433.577-3.948 3.948-18.367 18.005-21 21.366 7.8.155 16.45-.105 23.76-.44-.006-5.298 5.02-5.572 8.382-7.502 1.73 2.725 6.074 2.516 6.617 6.618 0 4.91.01 12.306.01 17.646H215.91c-1.17 5.176-5.843 9.125-12.353 7.5 2.014-2.103 5.406-2.827 6.62-5.734 1.024-6.365-2.046-10.296-4.032-13.907 3.284-1.194 3.782-1.492 7.12-3.736-2.342 7.12 6.092 6.338 12.354 6.175.21-2.418.088-5.272-1.767-5.625 2.396-.87 2.794-1.168 6.62-4.412v9.592c14.885 0 30.942-.11 46.138-.11 0-3.003.796-7.825-1.58-7.825-2.27 0-.107 6.173-1.87 6.173h-35.63c0-1.328-.034-4.104-.034-6.104 1.51-1.512 1.33-1.38 11.648-11.7 1.028-1.028 8.266-7.566 14.6-13.71zm89.06-.253c2.488 1.338 4.457 3.19 7.502 3.97-.353 1.26-1.475 1.76-1.77 3.088v26.91c3.403.75 4.12-1.178 5.738-2.205.442 4.307 3.185 8.53 3.088 11.91h-14.558v-43.673zM333.39 180.15s5.297-4.472 5.297-4.644v23.485l3.814-.005c0-8.948-.117-18.023-.117-26.338 1.548-1.55 4.58-3.792 5.338-5.36v42.06c-10.745 0-30.792.013-33.442.013-.493-8.73-.577-17.77 9.6-15.827v-3.562c-.31-.608-.87.148-1-.644 1.617-1.617 2.164-2.03 6.54-5.85 0 4.61.08 15.498.08 15.498 1.07 0 3.153.004 3.857.004 0 0 .036-18.228.036-18.83zm-12.553 18.6c.716 1.076 3.155 1.057 3.04-.754-.41-1.493-3.615-.924-3.04.755z"/>
7
- <circle cx="224.026" cy="214.369" r="2.042"/>
8
- <path d="M287.048 165.78c2.488 1.338 4.457 3.19 7.502 3.97-.353 1.26-1.476 1.76-1.768 3.087v26.91c3.4.75 4.117-1.178 5.736-2.205.44 4.307 3.185 8.53 3.088 11.91h-14.56c.002-14.555.002-29.114.002-43.673z"/>
9
- </g>
10
- </svg>
@@ -1,219 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-ir">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".67" d="M-85.311 0h682.67v512h-682.67z"/>
5
- </clipPath>
6
- </defs>
7
- <g clip-path="url(#a)" fill-rule="evenodd" transform="translate(79.98) scale(.9375)">
8
- <path fill="#fff" d="M-191.96 0h896v512h-896z"/>
9
- <path fill="#da0000" d="M-191.96 343.84h896V512h-896z"/>
10
- <g stroke-width="1pt" fill="#fff">
11
- <path d="M-21.628 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
12
- <path d="M52.379 367.736v3.377H33.794v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
13
- <path d="M49.614 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
14
- <path d="M17.763 359.849h3.377v11.27h-3.377z"/>
15
- <path d="M17.763 359.849h3.377v11.27h-3.377z"/>
16
- <path d="M17.763 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27H7.27zm-14.272 0h3.377v11.27h-3.377z"/>
17
- <path d="M9.639 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377H1.048v-3.377z"/>
18
- </g>
19
- <g stroke-width="1pt" fill="#fff">
20
- <path d="M-102.228 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
21
- <path d="M-28.221 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
22
- <path d="M-30.986 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
23
- <path d="M-62.837 359.849h3.377v11.27h-3.377z"/>
24
- <path d="M-62.837 359.849h3.377v11.27h-3.377z"/>
25
- <path d="M-62.837 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
26
- <path d="M-70.961 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
27
- </g>
28
- <g stroke-width="1pt" fill="#fff">
29
- <path d="M58.297 350.958h49.07v3.377h-49.07zm7.316 16.884h3.376v3.28h-3.376zm41.881-.106v3.377h-9.807v-3.377zm5.275-16.778h3.377v20.16h-3.377z"/>
30
- <path d="M132.303 367.736v3.377H113.72v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
31
- <path d="M129.539 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.299 0v3.377h-17.91v-3.377z"/>
32
- <path d="M97.687 359.849h3.377v11.27h-3.377z"/>
33
- <path d="M97.687 359.849h3.377v11.27h-3.377z"/>
34
- <path d="M97.687 359.849h3.377v11.27h-3.377zm-39.299 0h3.377v11.27h-3.377zm28.806 0h3.377v11.27h-3.377zm-14.272 0H76.3v11.27h-3.377z"/>
35
- <path d="M89.563 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
36
- </g>
37
- <g stroke-width="1pt" fill="#fff">
38
- <path d="M622.682 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
39
- <path d="M696.689 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
40
- <path d="M693.924 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
41
- <path d="M662.073 359.849h3.377v11.27h-3.377z"/>
42
- <path d="M662.073 359.849h3.377v11.27h-3.377z"/>
43
- <path d="M662.073 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
44
- <path d="M653.949 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
45
- </g>
46
- <g stroke-width="1pt" fill="#fff">
47
- <path d="M138.742 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
48
- <path d="M212.749 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
49
- <path d="M209.984 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
50
- <path d="M178.133 359.849h3.377v11.27h-3.377z"/>
51
- <path d="M178.133 359.849h3.377v11.27h-3.377z"/>
52
- <path d="M178.133 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
53
- <path d="M170.009 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
54
- </g>
55
- <g stroke-width="1pt" fill="#fff">
56
- <path d="M219.482 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
57
- <path d="M293.489 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
58
- <path d="M290.724 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
59
- <path d="M258.873 359.849h3.377v11.27h-3.377z"/>
60
- <path d="M258.873 359.849h3.377v11.27h-3.377z"/>
61
- <path d="M258.873 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
62
- <path d="M250.749 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
63
- </g>
64
- <path fill="#239f40" d="M-191.96 0h896v168.16h-896z"/>
65
- <g stroke-width="1pt" fill="#fff">
66
- <path d="M300.692 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
67
- <path d="M374.699 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
68
- <path d="M371.934 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
69
- <path d="M340.083 359.849h3.377v11.27h-3.377z"/>
70
- <path d="M340.083 359.849h3.377v11.27h-3.377z"/>
71
- <path d="M340.083 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
72
- <path d="M331.959 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
73
- </g>
74
- <g stroke-width="1pt" fill="#fff">
75
- <path d="M381.422 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
76
- <path d="M455.429 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
77
- <path d="M452.664 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
78
- <path d="M420.813 359.849h3.377v11.27h-3.377z"/>
79
- <path d="M420.813 359.849h3.377v11.27h-3.377z"/>
80
- <path d="M420.813 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
81
- <path d="M412.689 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
82
- </g>
83
- <g stroke-width="1pt" fill="#fff">
84
- <path d="M462.162 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
85
- <path d="M536.169 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
86
- <path d="M533.404 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
87
- <path d="M501.553 359.849h3.377v11.27h-3.377z"/>
88
- <path d="M501.553 359.849h3.377v11.27h-3.377z"/>
89
- <path d="M501.553 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
90
- <path d="M493.429 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
91
- </g>
92
- <g stroke-width="1pt" fill="#fff">
93
- <path d="M543.372 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
94
- <path d="M617.379 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
95
- <path d="M614.614 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
96
- <path d="M582.763 359.849h3.377v11.27h-3.377z"/>
97
- <path d="M582.763 359.849h3.377v11.27h-3.377z"/>
98
- <path d="M582.763 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
99
- <path d="M574.639 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
100
- </g>
101
- <g stroke-width="1pt" fill="#fff">
102
- <path d="M-183.788 350.958h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
103
- <path d="M-109.781 367.736v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
104
- <path d="M-112.546 350.958h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
105
- <path d="M-144.397 359.849h3.377v11.27h-3.377z"/>
106
- <path d="M-144.397 359.849h3.377v11.27h-3.377z"/>
107
- <path d="M-144.397 359.849h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
108
- <path d="M-152.521 367.736v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
109
- </g>
110
- <g stroke-width="1pt" fill="#fff">
111
- <path d="M-21.628 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
112
- <path d="M52.379 160.22v3.377H33.794v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
113
- <path d="M49.614 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
114
- <path d="M17.763 152.333h3.377v11.27h-3.377z"/>
115
- <path d="M17.763 152.333h3.377v11.27h-3.377z"/>
116
- <path d="M17.763 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27H7.27zm-14.272 0h3.377v11.27h-3.377z"/>
117
- <path d="M9.639 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377H1.048v-3.377z"/>
118
- </g>
119
- <g stroke-width="1pt" fill="#fff">
120
- <path d="M-102.228 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
121
- <path d="M-28.221 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
122
- <path d="M-30.986 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
123
- <path d="M-62.837 152.333h3.377v11.27h-3.377z"/>
124
- <path d="M-62.837 152.333h3.377v11.27h-3.377z"/>
125
- <path d="M-62.837 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
126
- <path d="M-70.961 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
127
- </g>
128
- <g stroke-width="1pt" fill="#fff">
129
- <path d="M58.297 143.442h49.07v3.377h-49.07zm7.316 16.884h3.376v3.28h-3.376zm41.881-.106v3.377h-9.807v-3.377zm5.275-16.778h3.377v20.16h-3.377z"/>
130
- <path d="M132.303 160.22v3.377H113.72v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
131
- <path d="M129.539 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.299 0v3.377h-17.91v-3.377z"/>
132
- <path d="M97.687 152.333h3.377v11.27h-3.377z"/>
133
- <path d="M97.687 152.333h3.377v11.27h-3.377z"/>
134
- <path d="M97.687 152.333h3.377v11.27h-3.377zm-39.299 0h3.377v11.27h-3.377zm28.806 0h3.377v11.27h-3.377zm-14.272 0H76.3v11.27h-3.377z"/>
135
- <path d="M89.563 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
136
- </g>
137
- <g stroke-width="1pt" fill="#fff">
138
- <path d="M622.682 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
139
- <path d="M696.689 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
140
- <path d="M693.924 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
141
- <path d="M662.073 152.333h3.377v11.27h-3.377z"/>
142
- <path d="M662.073 152.333h3.377v11.27h-3.377z"/>
143
- <path d="M662.073 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
144
- <path d="M653.949 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
145
- </g>
146
- <g stroke-width="1pt" fill="#fff">
147
- <path d="M138.742 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
148
- <path d="M212.749 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
149
- <path d="M209.984 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
150
- <path d="M178.133 152.333h3.377v11.27h-3.377z"/>
151
- <path d="M178.133 152.333h3.377v11.27h-3.377z"/>
152
- <path d="M178.133 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
153
- <path d="M170.009 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
154
- </g>
155
- <g stroke-width="1pt" fill="#fff">
156
- <path d="M219.482 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
157
- <path d="M293.489 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
158
- <path d="M290.724 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
159
- <path d="M258.873 152.333h3.377v11.27h-3.377z"/>
160
- <path d="M258.873 152.333h3.377v11.27h-3.377z"/>
161
- <path d="M258.873 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
162
- <path d="M250.749 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
163
- </g>
164
- <g stroke-width="1pt" fill="#fff">
165
- <path d="M300.692 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
166
- <path d="M374.699 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
167
- <path d="M371.934 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
168
- <path d="M340.083 152.333h3.377v11.27h-3.377z"/>
169
- <path d="M340.083 152.333h3.377v11.27h-3.377z"/>
170
- <path d="M340.083 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
171
- <path d="M331.959 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
172
- </g>
173
- <g stroke-width="1pt" fill="#fff">
174
- <path d="M381.422 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
175
- <path d="M455.429 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
176
- <path d="M452.664 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
177
- <path d="M420.813 152.333h3.377v11.27h-3.377z"/>
178
- <path d="M420.813 152.333h3.377v11.27h-3.377z"/>
179
- <path d="M420.813 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
180
- <path d="M412.689 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
181
- </g>
182
- <g stroke-width="1pt" fill="#fff">
183
- <path d="M462.162 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
184
- <path d="M536.169 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
185
- <path d="M533.404 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
186
- <path d="M501.553 152.333h3.377v11.27h-3.377z"/>
187
- <path d="M501.553 152.333h3.377v11.27h-3.377z"/>
188
- <path d="M501.553 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
189
- <path d="M493.429 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
190
- </g>
191
- <g stroke-width="1pt" fill="#fff">
192
- <path d="M543.372 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
193
- <path d="M617.379 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
194
- <path d="M614.614 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
195
- <path d="M582.763 152.333h3.377v11.27h-3.377z"/>
196
- <path d="M582.763 152.333h3.377v11.27h-3.377z"/>
197
- <path d="M582.763 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
198
- <path d="M574.639 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
199
- </g>
200
- <g stroke-width="1pt" fill="#fff">
201
- <path d="M-183.788 143.442h49.07v3.377h-49.07zm7.316 16.884h3.377v3.28h-3.377zm41.882-.106v3.377h-9.807v-3.377zm5.274-16.778h3.377v20.16h-3.377z"/>
202
- <path d="M-109.781 160.22v3.377h-18.585v-3.377zm-34.616-7.887h3.377v11.27h-3.377z"/>
203
- <path d="M-112.546 143.442h3.377v20.16h-3.377zm-8.442 0h3.377v20.16h-3.377zm-44.799 8.024v3.377h-17.91v-3.377zm39.3 0v3.377h-17.91v-3.377z"/>
204
- <path d="M-144.397 152.333h3.377v11.27h-3.377z"/>
205
- <path d="M-144.397 152.333h3.377v11.27h-3.377z"/>
206
- <path d="M-144.397 152.333h3.377v11.27h-3.377zm-39.3 0h3.377v11.27h-3.377zm28.807 0h3.376v11.27h-3.377zm-14.272 0h3.377v11.27h-3.377z"/>
207
- <path d="M-152.521 160.22v3.377h-15.14v-3.377zm1.007-8.754v3.377h-9.598v-3.377z"/>
208
- </g>
209
- <path d="M-68.83 339.507h6.048v10.505h-6.048zm160.532 0h6.048v10.505h-6.048zm-283.705 0h6.048v10.505h-6.048zm81.475 0h6.048v10.505h-6.048zm80.895 0h6.048v10.505h-6.048zm40.024 0h6.049v10.505h-6.05zm40.861 0H57.3v10.505h-6.048zm80.475 0h6.048v10.505h-6.048zm203.056 0h6.048v10.505h-6.048zm-162.197 0h6.048v10.505h-6.048zm40.035 0h6.048v10.505h-6.048zm40.438 0h6.048v10.505h-6.048zm40.448 0h6.048v10.505h-6.048zm323.143 0h6.047v10.505h-6.048zm-242.67 0h6.048v10.505h-6.048zm40.86 0h6.049v10.505h-6.049zm41.284 0h6.049v10.505h-6.049zm38.776 0h6.049v10.505H494.9zm41.274 0h6.048v10.505h-6.048zm40.448 0h6.048v10.505h-6.048zm119.674 0h6.048v10.505h-6.048zm-38.778 0h6.048v10.505h-6.048zm-808.908 0h6.048v10.505h-6.048z" stroke-width="1pt" fill="#d90000"/>
210
- <path d="M-68.83 162.607h6.048v10.505h-6.048zm160.532 0h6.048v10.505h-6.048zm-283.705 0h6.048v10.505h-6.048zm81.475 0h6.048v10.505h-6.048zm80.895 0h6.048v10.505h-6.048zm40.024 0h6.049v10.505h-6.05zm40.861 0H57.3v10.505h-6.048zm80.475 0h6.048v10.505h-6.048zm203.056 0h6.048v10.505h-6.048zm-162.197 0h6.048v10.505h-6.048zm40.035 0h6.048v10.505h-6.048zm40.438 0h6.048v10.505h-6.048zm40.448 0h6.048v10.505h-6.048zm323.143 0h6.047v10.505h-6.048zm-242.67 0h6.048v10.505h-6.048zm40.86 0h6.049v10.505h-6.049zm41.284 0h6.049v10.505h-6.049zm38.776 0h6.049v10.505H494.9zm41.274 0h6.048v10.505h-6.048zm40.448 0h6.048v10.505h-6.048zm119.674 0h6.048v10.505h-6.048zm-38.778 0h6.048v10.505h-6.048zm-808.908 0h6.048v10.505h-6.048z" stroke-width="1pt" fill="#239e3f"/>
211
- <g fill="#da0000">
212
- <path d="M279.8 197.489c8.453 10.36 34.511 67.652-15.73 105.18-23.62 17.777-8.994 18.675-8.296 21.663 37.966-20.167 50.366-47.49 50.078-71.966-.29-24.476-13.266-46.102-26.052-54.873z"/>
213
- <path d="M284.826 194.826c18.75 9.6 59.553 57.879 15.635 112.344 27.288-6.056 61.98-86.417-15.635-112.344zm-57.581 0c-18.749 9.6-59.553 57.879-15.635 112.344-27.288-6.056-61.98-86.417 15.635-112.344z"/>
214
- <path d="M232.2 197.489c-8.454 10.36-34.512 67.652 15.73 105.18 23.618 17.777 8.993 18.675 8.294 21.663-37.965-20.167-50.365-47.49-50.077-71.966.289-24.476 13.265-46.102 26.052-54.873z"/>
215
- <path d="M304.198 319.111c-14.86.236-33.593-2.047-47.486-9.267 2.288 4.45 4.189 7.252 6.477 11.701 13.25 1.222 31.535 2.734 41.01-2.434zm-94.973 0c14.86.236 33.593-2.047 47.487-9.267-2.289 4.45-4.19 7.252-6.478 11.701-13.25 1.222-31.535 2.734-41.01-2.434zm27.257-138.714c3.011 8.002 10.91 9.165 19.365 4.454 6.161 3.697 15.69 3.93 18.976-4.067 2.499 19.784-18.305 15.104-19.08 11.231-7.745 7.487-22.165 3.163-19.26-11.618z"/>
216
- <path d="M256.402 331.569l7.813-8.93 1.117-120.178-9.302-8.185-9.3 7.813 1.859 120.92 7.813 8.558z"/>
217
- </g>
218
- </g>
219
- </svg>
@@ -1,12 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-is">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".67" d="M0 0h640v480H0z"/>
5
- </clipPath>
6
- </defs>
7
- <g fill-rule="evenodd" stroke-width="0" clip-path="url(#a)">
8
- <path fill="#003897" d="M0 0h666.67v480H0z"/>
9
- <path d="M0 186.67h186.67V0h106.67v186.67h373.33v106.67H293.34v186.67H186.67V293.34H0V186.67z" fill="#fff"/>
10
- <path d="M0 213.33h213.33V0h53.333v213.33h400v53.333h-400v213.33H213.33v-213.33H0V213.33z" fill="#d72828"/>
11
- </g>
12
- </svg>
@@ -1,7 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" id="flag-icon-css-it">
2
- <g fill-rule="evenodd" stroke-width="1pt">
3
- <path fill="#fff" d="M0 0h640v479.997H0z"/>
4
- <path fill="#009246" d="M0 0h213.331v479.997H0z"/>
5
- <path fill="#ce2b37" d="M426.663 0h213.331v479.997H426.663z"/>
6
- </g>
7
- </svg>