bfg-common 1.5.467 → 1.5.469

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1374) hide show
  1. package/.eslintrc.js +21 -21
  2. package/.idea/inspectionProfiles/Project_Default.xml +51 -51
  3. package/.idea/modules.xml +7 -7
  4. package/.idea/prettier.xml +5 -5
  5. package/.idea/uikit.iml +11 -11
  6. package/.idea/vcs.xml +5 -5
  7. package/.prettierrc +4 -4
  8. package/PROJECT_STRUCTURE.md +130 -130
  9. package/README.md +42 -42
  10. package/assets/img/icons/icon-hcs.svg +3 -3
  11. package/assets/img/icons/icon-life-m-dark.svg +3 -3
  12. package/assets/img/icons/icon-life-m-light.svg +3 -3
  13. package/assets/img/icons/icon-ro-dark.svg +1 -1
  14. package/assets/img/icons/icon-ro-light.svg +2 -2
  15. package/assets/img/icons/icons-sprite-dark-1.svg +456 -456
  16. package/assets/img/icons/icons-sprite-dark-2.svg +347 -347
  17. package/assets/img/icons/icons-sprite-dark-4.svg +264 -264
  18. package/assets/img/icons/icons-sprite-dark-6.svg +114 -114
  19. package/assets/img/icons/icons-sprite-light-1.svg +456 -456
  20. package/assets/img/icons/icons-sprite-light-2.svg +347 -347
  21. package/assets/img/icons/icons-sprite-light-4.svg +264 -264
  22. package/assets/img/icons/icons-sprite-light-6.svg +114 -114
  23. package/assets/img/icons/info.svg +8 -8
  24. package/assets/img/icons/vc.svg +52 -52
  25. package/assets/img/logo copy.svg +50 -50
  26. package/assets/img/logo.svg +51 -51
  27. package/assets/localization/local_be.json +3551 -3550
  28. package/assets/localization/local_en.json +3555 -3554
  29. package/assets/localization/local_hy.json +3555 -3554
  30. package/assets/localization/local_kk.json +3554 -3553
  31. package/assets/localization/local_ru.json +3554 -3553
  32. package/assets/localization/local_zh.json +3552 -3551
  33. package/assets/scss/clarity/clr-ui.min.css +8 -8
  34. package/assets/scss/clarity/local_ar.json +2926 -2926
  35. package/assets/scss/common/animations.scss +28 -28
  36. package/assets/scss/common/global.scss +193 -193
  37. package/assets/scss/common/icons/icons-1.scss +286 -280
  38. package/assets/scss/common/icons/icons-2.scss +264 -264
  39. package/assets/scss/common/icons/icons-3.scss +250 -250
  40. package/assets/scss/common/icons/icons-4.scss +279 -279
  41. package/assets/scss/common/icons/icons-5.scss +449 -449
  42. package/assets/scss/common/icons/icons-6.scss +174 -174
  43. package/assets/scss/common/icons/icons.scss +16 -16
  44. package/assets/scss/common/icons/lib-icons.scss +32 -32
  45. package/assets/scss/common/mixins.scss +39 -39
  46. package/assets/scss/common/normalize.scss +352 -352
  47. package/assets/scss/common/theme.scss +812 -812
  48. package/assets/scss/common/utilities.scss +20 -20
  49. package/assets/scss/common/variables.scss +44 -44
  50. package/assets/scss/components/auth.scss +208 -201
  51. package/assets/scss/main.scss +15 -15
  52. package/components/atoms/DiagramIcon.vue +400 -400
  53. package/components/atoms/TheIcon.vue +3338 -3338
  54. package/components/atoms/TheIcon2.vue +1368 -1368
  55. package/components/atoms/TheIconOld.vue +2444 -2444
  56. package/components/atoms/alert/Alert.vue +87 -87
  57. package/components/atoms/alert/Notification.vue +169 -169
  58. package/components/atoms/alert/lib/Alert.spec.ts +38 -38
  59. package/components/atoms/alert/lib/Notification.spec.ts +34 -34
  60. package/components/atoms/alert/lib/models/enums.ts +12 -12
  61. package/components/atoms/alert/lib/models/interfaces.ts +27 -27
  62. package/components/atoms/alert/lib/models/types.ts +11 -11
  63. package/components/atoms/autocomplete/Autocomplete.vue +361 -361
  64. package/components/atoms/collapse/CollapseNavItem.vue +218 -218
  65. package/components/atoms/collapse/lib/models/interfaces.ts +14 -14
  66. package/components/atoms/comboDropdownMenu/ComboDropdownMenu.vue +357 -357
  67. package/components/atoms/comboDropdownMenu/lib/models/interfaces.ts +26 -26
  68. package/components/atoms/combobox/Combobox.vue +162 -162
  69. package/components/atoms/datepicker/Datepicker.vue +639 -639
  70. package/components/atoms/datepicker/lib/config/allShortMonths.ts +103 -103
  71. package/components/atoms/datepicker/lib/config/datepicker.ts +46 -46
  72. package/components/atoms/datepicker/lib/models/interfaces.ts +9 -9
  73. package/components/atoms/dropdown/Portlet.vue +105 -105
  74. package/components/atoms/dropdown/dropdown/Dropdown.vue +168 -168
  75. package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +9 -9
  76. package/components/atoms/dropdown/lib/Portlet.spec.ts +26 -26
  77. package/components/atoms/dropdown/tree/Tree.vue +137 -137
  78. package/components/atoms/dropdown/tree/lib/models/interfaces.ts +11 -11
  79. package/components/atoms/input/Search.vue +16 -16
  80. package/components/atoms/lib/models/interfaces.ts +14 -14
  81. package/components/atoms/list/SelectList.vue +63 -63
  82. package/components/atoms/list/SimpleList.vue +29 -29
  83. package/components/atoms/list/dragDropList/DragDropList.vue +149 -149
  84. package/components/atoms/list/dragDropList/lib/config/events.ts +4 -4
  85. package/components/atoms/loader/BarLoader.vue +27 -27
  86. package/components/atoms/loader/Loader.vue +30 -30
  87. package/components/atoms/loader/PreLoader.vue +38 -38
  88. package/components/atoms/loader/lib/Preloader.spec.ts +24 -24
  89. package/components/atoms/modal/Modal.vue +247 -247
  90. package/components/atoms/modal/bySteps/BySteps.vue +255 -255
  91. package/components/atoms/modal/bySteps/lib/BySteps.spec.ts +66 -66
  92. package/components/atoms/modal/byStepsSecond/ByStepsSecond.vue +175 -175
  93. package/components/atoms/modal/lib/Modal.spec.ts +55 -55
  94. package/components/atoms/nav/NavBar.vue +164 -164
  95. package/components/atoms/nav/VerticalNavBar.vue +79 -79
  96. package/components/atoms/nav/lib/NavBar.spec.ts +34 -34
  97. package/components/atoms/nav/lib/models/interfaces.ts +6 -6
  98. package/components/atoms/notificationBar/NotificationBar.vue +178 -178
  99. package/components/atoms/notificationBar/lib/models/enums.ts +13 -13
  100. package/components/atoms/notificationBar/lib/models/interfaces.ts +6 -6
  101. package/components/atoms/notificationBar/lib/models/types.ts +1 -1
  102. package/components/atoms/popover/Popover.vue +58 -58
  103. package/components/atoms/popover/lib/models/interfaces.ts +4 -4
  104. package/components/atoms/popup/SimplePopup.vue +86 -86
  105. package/components/atoms/select/TheSelect.vue +187 -187
  106. package/components/atoms/select/lib/models/interfaces.ts +5 -5
  107. package/components/atoms/stack/StackBlock.vue +190 -190
  108. package/components/atoms/stack/StackContent.vue +63 -63
  109. package/components/atoms/step/VerticalStep.vue +105 -105
  110. package/components/atoms/step/lib/VerticalStep.spec.ts +68 -68
  111. package/components/atoms/step/lib/models/verticalStepItem.ts +5 -5
  112. package/components/atoms/switch/Switch.vue +97 -97
  113. package/components/atoms/table/compact/Compact.vue +508 -508
  114. package/components/atoms/table/compact/lib/models/interfaces.ts +10 -10
  115. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +277 -277
  116. package/components/atoms/table/dataGrid/DataGridPage.vue +195 -195
  117. package/components/atoms/table/dataGrid/lib/DataGrid.spec.ts +61 -61
  118. package/components/atoms/table/dataGrid/lib/config/itemsPerPage.ts +20 -20
  119. package/components/atoms/table/dataGrid/lib/models/interfaces.ts +57 -57
  120. package/components/atoms/table/dataGrid/lib/models/types.ts +5 -5
  121. package/components/atoms/table/dataGrid/lib/utils/constructDataTable.ts +36 -36
  122. package/components/atoms/table/info/Info.vue +71 -71
  123. package/components/atoms/table/info/lib/models/interfaces.ts +11 -11
  124. package/components/atoms/table/simpleEvent/SimpleEvent.vue +89 -89
  125. package/components/atoms/table/simpleEvent/lib/models/interfaces.ts +9 -9
  126. package/components/atoms/table/simpleInfo/SimpleInfo.vue +78 -78
  127. package/components/atoms/table/simpleInfo/lib/models/interfaces.ts +5 -5
  128. package/components/atoms/table/simpleTable/SimpleTable.vue +288 -288
  129. package/components/atoms/table/simpleTable/lib/models/interfaces.ts +12 -12
  130. package/components/atoms/tabs/Tabs.vue +220 -220
  131. package/components/atoms/tabs/VerticalTabs.vue +95 -95
  132. package/components/atoms/tabs/lib/models/interfaces.ts +7 -7
  133. package/components/atoms/tabs/lib/models/types.ts +1 -1
  134. package/components/atoms/tooltip/Signpost.vue +215 -215
  135. package/components/atoms/tooltip/Text.vue +37 -37
  136. package/components/atoms/tooltip/Tooltip.vue +57 -57
  137. package/components/atoms/tooltip/TooltipError.vue +119 -119
  138. package/components/atoms/tooltip/lib/models/interfaces.ts +4 -4
  139. package/components/atoms/window/lib/config/config.ts +3 -3
  140. package/components/atoms/window/lib/models/interfaces.ts +6 -6
  141. package/components/atoms/wizard/Wizard.vue +342 -342
  142. package/components/atoms/wizard/step/Step.vue +95 -95
  143. package/components/common/BadBrowser.vue +118 -118
  144. package/components/common/accordion/Accordion.vue +177 -177
  145. package/components/common/accordion/Recursion.vue +225 -225
  146. package/components/common/accordion/lib/models/enums.ts +5 -5
  147. package/components/common/accordion/lib/models/interfaces.ts +18 -18
  148. package/components/common/accordion/lib/models/types.ts +1 -1
  149. package/components/common/accordion/lib/utils/accordion.ts +31 -31
  150. package/components/common/adapterManager/AdapterManager.vue +829 -829
  151. package/components/common/adapterManager/AddAdapterModal.vue +561 -561
  152. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  153. package/components/common/adapterManager/NoActiveAdaptersModal.vue +61 -61
  154. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +61 -61
  155. package/components/common/adapterManager/lib/config/index.ts +19 -19
  156. package/components/common/adapterManager/ui/NoSelectedAdapter.vue +38 -38
  157. package/components/common/adapterManager/ui/SecondTitle.vue +36 -36
  158. package/components/common/adapterManager/ui/actions/ActionsBar.vue +95 -95
  159. package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +34 -34
  160. package/components/common/adapterManager/ui/actions/MoveDownAdapterButton.vue +39 -39
  161. package/components/common/adapterManager/ui/actions/MoveUpAdapterButton.vue +39 -39
  162. package/components/common/adapterManager/ui/actions/RemoveAdapterButton.vue +41 -41
  163. package/components/common/adapterManager/ui/actions/VerticalSeparator.vue +10 -10
  164. package/components/common/adapterManager/ui/table/Adapters.vue +92 -92
  165. package/components/common/adapterManager/ui/table/Header.vue +96 -96
  166. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  167. package/components/common/adapterManager/ui/table/lib/models/types.ts +1 -1
  168. package/components/common/backup/storage/actions/add/Add.vue +248 -248
  169. package/components/common/backup/storage/actions/add/New.vue +298 -298
  170. package/components/common/backup/storage/actions/add/Old.vue +120 -120
  171. package/components/common/backup/storage/actions/add/lib/config/createDatastore.ts +16 -16
  172. package/components/common/backup/storage/actions/add/lib/config/steps.ts +168 -168
  173. package/components/common/backup/storage/actions/add/lib/models/interfaces.ts +23 -23
  174. package/components/common/backup/storage/actions/add/lib/models/types.ts +2 -2
  175. package/components/common/backup/storage/actions/add/lib/utils.ts +30 -30
  176. package/components/common/backup/storage/actions/add/lib/validations.ts +242 -242
  177. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibility.vue +57 -57
  178. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibilityNew.vue +51 -51
  179. package/components/common/backup/storage/actions/add/steps/hostAccessibility/HostAccessibilityOld.vue +59 -59
  180. package/components/common/backup/storage/actions/add/steps/hostAccessibility/lib/config/tabsPannel.ts +30 -30
  181. package/components/common/backup/storage/actions/add/steps/hostAccessibility/lib/models/types.ts +3 -3
  182. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/Table.vue +39 -39
  183. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/lib/models/interfaces.ts +11 -11
  184. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/new/New.vue +119 -119
  185. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/new/lib/config/compatibleTable.ts +80 -80
  186. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/Old.vue +90 -90
  187. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/compatibleTable.ts +58 -58
  188. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +71 -71
  189. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/config/tableKeys.ts +15 -15
  190. package/components/common/backup/storage/actions/add/steps/hostAccessibility/table/old/lib/models/types.ts +6 -6
  191. package/components/common/backup/storage/actions/add/steps/name/Name.vue +47 -47
  192. package/components/common/backup/storage/actions/add/steps/name/New.vue +112 -112
  193. package/components/common/backup/storage/actions/add/steps/name/Old.vue +119 -119
  194. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigure.vue +48 -48
  195. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureNew.vue +280 -280
  196. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureOld.vue +325 -325
  197. package/components/common/backup/storage/actions/add/steps/nameAndConfigure/lib/models/interfaces.ts +7 -7
  198. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyComplete.vue +45 -45
  199. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyCompleteNew.vue +164 -164
  200. package/components/common/backup/storage/actions/add/steps/readyComplete/ReadyCompleteOld.vue +92 -92
  201. package/components/common/backup/storage/actions/add/steps/readyComplete/lib/config/propertiesDetails.ts +243 -243
  202. package/components/common/backup/storage/actions/add/steps/typeMode/TypeMode.vue +32 -32
  203. package/components/common/backup/storage/actions/add/steps/typeMode/TypeModeNew.vue +119 -119
  204. package/components/common/backup/storage/actions/add/steps/typeMode/TypeModeOld.vue +66 -66
  205. package/components/common/backup/storage/actions/add/steps/typeMode/lib/config/typeOptions.ts +39 -39
  206. package/components/common/backup/storage/actions/delete/Delete.vue +64 -64
  207. package/components/common/backup/storage/actions/delete/lib/models/interfaces.ts +4 -4
  208. package/components/common/browse/Browse.vue +179 -179
  209. package/components/common/browse/BrowseNew.vue +309 -309
  210. package/components/common/browse/BrowseOld.vue +252 -252
  211. package/components/common/browse/blocks/Container.vue +236 -236
  212. package/components/common/browse/blocks/TitleNew.vue +146 -146
  213. package/components/common/browse/blocks/TitleOld.vue +91 -91
  214. package/components/common/browse/blocks/contents/Files.vue +37 -37
  215. package/components/common/browse/blocks/contents/FilesOld.vue +72 -72
  216. package/components/common/browse/blocks/contents/filesNew/FilesNew.vue +95 -95
  217. package/components/common/browse/blocks/info/Date.vue +37 -37
  218. package/components/common/browse/blocks/info/Size.vue +30 -30
  219. package/components/common/browse/blocks/info/Text.vue +29 -29
  220. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  221. package/components/common/browse/lib/models/interfaces.ts +5 -5
  222. package/components/common/chartOptionsModal/counters/timespan/form/Form.vue +290 -290
  223. package/components/common/chartOptionsModal/counters/timespan/form/FormNew.vue +261 -261
  224. package/components/common/chartOptionsModal/counters/timespan/form/FormOld.vue +372 -372
  225. package/components/common/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +116 -116
  226. package/components/common/context/Context.vue +111 -111
  227. package/components/common/context/lib/Context.spec.ts +20 -20
  228. package/components/common/context/lib/ContextRecursion.spec.ts +55 -55
  229. package/components/common/context/recursion/Recursion.vue +92 -92
  230. package/components/common/context/recursion/RecursionNew.vue +283 -283
  231. package/components/common/context/recursion/RecursionOld.vue +221 -221
  232. package/components/common/context/recursion/lib/models/interfaces.ts +2 -2
  233. package/components/common/countdownTimer/CountdownTimer.vue +39 -39
  234. package/components/common/countdownTimer/CountdownTimerNew.vue +53 -53
  235. package/components/common/countdownTimer/CountdownTimerOld.vue +33 -33
  236. package/components/common/details/DetailsItem.vue +109 -109
  237. package/components/common/details/DetailsList.vue +23 -23
  238. package/components/common/details/lib/models/interfaces.ts +12 -12
  239. package/components/common/diagramMain/Diagram.vue +377 -377
  240. package/components/common/diagramMain/DiagramMain.vue +900 -900
  241. package/components/common/diagramMain/Header.vue +219 -219
  242. package/components/common/diagramMain/adapter/Adapter.vue +123 -123
  243. package/components/common/diagramMain/adapter/AdapterItem.vue +438 -438
  244. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  245. package/components/common/diagramMain/adapter/Contents.vue +212 -212
  246. package/components/common/diagramMain/adapter/Lines.vue +81 -81
  247. package/components/common/diagramMain/adapter/block/Block.vue +27 -27
  248. package/components/common/diagramMain/adapter/block/BlockNew.vue +58 -58
  249. package/components/common/diagramMain/adapter/block/BlockOld.vue +50 -50
  250. package/components/common/diagramMain/adapter/secondBlock/SecondBlock.vue +27 -27
  251. package/components/common/diagramMain/adapter/secondBlock/SecondBlockNew.vue +60 -60
  252. package/components/common/diagramMain/adapter/secondBlock/SecondBlockOld.vue +51 -51
  253. package/components/common/diagramMain/highlights/Highlights.vue +151 -151
  254. package/components/common/diagramMain/highlights/HighlightsNew.vue +124 -124
  255. package/components/common/diagramMain/highlights/HighlightsOld.vue +107 -107
  256. package/components/common/diagramMain/lib/config/index.ts +81 -81
  257. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  258. package/components/common/diagramMain/lib/config/positions.ts +194 -194
  259. package/components/common/diagramMain/lib/models/enums.ts +44 -44
  260. package/components/common/diagramMain/lib/models/interfaces.ts +755 -755
  261. package/components/common/diagramMain/lib/models/types.ts +21 -21
  262. package/components/common/diagramMain/lib/utils/utils.ts +331 -331
  263. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
  264. package/components/common/diagramMain/modals/Modals.vue +452 -452
  265. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +43 -43
  266. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
  267. package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +789 -789
  268. package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +21 -21
  269. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +215 -215
  270. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +190 -190
  271. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +164 -164
  272. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  273. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +399 -399
  274. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +351 -351
  275. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +206 -206
  276. package/components/common/diagramMain/modals/lib/config/adapterModal.ts +144 -144
  277. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +25 -25
  278. package/components/common/diagramMain/modals/lib/config/index.ts +55 -55
  279. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  280. package/components/common/diagramMain/modals/lib/config/switchModal.ts +242 -242
  281. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  282. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  283. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  284. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +541 -541
  285. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  286. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  287. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  288. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/VmkernelAdapterReadyComplete.vue +49 -49
  289. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  290. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  291. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  292. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  293. package/components/common/diagramMain/modals/remove/RemoveModal.vue +74 -74
  294. package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +95 -95
  295. package/components/common/diagramMain/modals/remove/RemoveModalOld.vue +230 -230
  296. package/components/common/diagramMain/modals/viewSettings/info/Info.vue +55 -55
  297. package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +157 -157
  298. package/components/common/diagramMain/modals/viewSettings/info/InfoOld.vue +125 -125
  299. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +36 -36
  300. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +208 -208
  301. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsOld.vue +203 -203
  302. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModal.vue +60 -60
  303. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +50 -50
  304. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalOld.vue +70 -70
  305. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/lib/models/interfaces.ts +48 -48
  306. package/components/common/diagramMain/network/Contents.vue +497 -497
  307. package/components/common/diagramMain/network/Lines.vue +107 -107
  308. package/components/common/diagramMain/network/Network.vue +141 -141
  309. package/components/common/diagramMain/network/block/Block.vue +37 -37
  310. package/components/common/diagramMain/network/block/BlockNew.vue +68 -68
  311. package/components/common/diagramMain/network/block/BlockOld.vue +64 -64
  312. package/components/common/diagramMain/network/noNetwork/NoNetwork.vue +12 -12
  313. package/components/common/diagramMain/network/noNetwork/NoNetworkNew.vue +89 -89
  314. package/components/common/diagramMain/network/noNetwork/NoNetworkOld.vue +61 -61
  315. package/components/common/diagramMain/network/secondBlock/SecondBlock.vue +41 -41
  316. package/components/common/diagramMain/network/secondBlock/SecondBlockNew.vue +64 -64
  317. package/components/common/diagramMain/network/secondBlock/SecondBlockOld.vue +60 -60
  318. package/components/common/diagramMain/port/Ports.vue +47 -47
  319. package/components/common/diagramMain/switch/Switch.vue +180 -180
  320. package/components/common/diagramMain/switch/SwitchSelected.vue +111 -111
  321. package/components/common/feedback/Buttons.vue +210 -210
  322. package/components/common/feedback/Feedback.vue +279 -279
  323. package/components/common/feedback/Message.vue +511 -511
  324. package/components/common/feedback/VisitPortal.vue +61 -61
  325. package/components/common/feedback/lib/config/drawingPanel.ts +32 -32
  326. package/components/common/feedback/lib/config/feedbackTabs.ts +27 -27
  327. package/components/common/feedback/lib/models/interfaces.ts +20 -20
  328. package/components/common/feedback/lib/models/types.ts +1 -1
  329. package/components/common/graph/Graph.vue +127 -127
  330. package/components/common/graph/GraphOld.vue +61 -61
  331. package/components/common/graph/graphNew/GraphNew.vue +178 -178
  332. package/components/common/graph/graphNew/lib/models/enums.ts +9 -9
  333. package/components/common/graph/lib/utils/renderGraph.ts +388 -388
  334. package/components/common/headline/Headline.vue +32 -32
  335. package/components/common/help/navbar/left/Left.vue +165 -165
  336. package/components/common/help/navbar/left/lib/models/interfaces.ts +6 -6
  337. package/components/common/help/navbar/left/lib/utils/constructAccordion.ts +27 -27
  338. package/components/common/help/navbar/right/Right.vue +149 -149
  339. package/components/common/help/navbar/right/lib/models/interfaces.ts +5 -5
  340. package/components/common/layout/theHeader/TheHeader.vue +169 -169
  341. package/components/common/layout/theHeader/TheHeaderNew.vue +303 -303
  342. package/components/common/layout/theHeader/TheHeaderOld.vue +250 -250
  343. package/components/common/layout/theHeader/ThemeSwitch.vue +66 -66
  344. package/components/common/layout/theHeader/feedback/Feedback.vue +109 -109
  345. package/components/common/layout/theHeader/feedback/FeedbackOld.vue +63 -63
  346. package/components/common/layout/theHeader/feedback/lib/config/sendFeedback.ts +17 -17
  347. package/components/common/layout/theHeader/feedback/new/New.vue +209 -209
  348. package/components/common/layout/theHeader/feedback/new/additionalDetails/AdditionalDetails.vue +595 -595
  349. package/components/common/layout/theHeader/feedback/new/additionalDetails/Headline.vue +38 -38
  350. package/components/common/layout/theHeader/feedback/new/description/Description.vue +59 -59
  351. package/components/common/layout/theHeader/feedback/new/email/Email.vue +43 -43
  352. package/components/common/layout/theHeader/feedback/new/lib/models/interfaces.ts +4 -4
  353. package/components/common/layout/theHeader/feedback/new/subtitle/Subtitle.vue +38 -38
  354. package/components/common/layout/theHeader/feedback/new/tabs/Tabs.vue +80 -80
  355. package/components/common/layout/theHeader/feedback/new/tabs/lib/config/tabs.ts +25 -25
  356. package/components/common/layout/theHeader/feedback/new/tabs/lib/models/enums.ts +6 -6
  357. package/components/common/layout/theHeader/feedback/new/tabs/lib/models/types.ts +1 -1
  358. package/components/common/layout/theHeader/helpMenu/HelpMenu.vue +43 -43
  359. package/components/common/layout/theHeader/helpMenu/aboutNew/AboutNew.vue +99 -99
  360. package/components/common/layout/theHeader/helpMenu/aboutOld/AboutOld.vue +80 -80
  361. package/components/common/layout/theHeader/helpMenu/helpMenuNew/HelpMenuNew.vue +195 -195
  362. package/components/common/layout/theHeader/helpMenu/helpMenuNew/lib/config/dropMenu.ts +28 -28
  363. package/components/common/layout/theHeader/helpMenu/helpMenuOld/HelpMenuOld.vue +59 -59
  364. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/config/dropMenu.ts +22 -22
  365. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/models/types.ts +1 -1
  366. package/components/common/layout/theHeader/lib/models/enums.ts +10 -10
  367. package/components/common/layout/theHeader/lib/models/types.ts +5 -5
  368. package/components/common/layout/theHeader/lib/utils/localization.ts +32 -32
  369. package/components/common/layout/theHeader/modals/RedirectLogin.vue +60 -60
  370. package/components/common/layout/theHeader/modals/reconnect/Reconnect.vue +83 -83
  371. package/components/common/layout/theHeader/modals/reconnect/ReconnectNew.vue +73 -73
  372. package/components/common/layout/theHeader/modals/reconnect/ReconnectOld.vue +66 -66
  373. package/components/common/layout/theHeader/userMenu/UserMenu.vue +101 -101
  374. package/components/common/layout/theHeader/userMenu/lib/models/interfaces.ts +32 -32
  375. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +90 -90
  376. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePasswordNew.vue +189 -189
  377. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePasswordOld.vue +179 -179
  378. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/config/form.ts +31 -31
  379. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/models/interfaces.ts +23 -23
  380. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/utils.ts +28 -28
  381. package/components/common/layout/theHeader/userMenu/modals/preferences/Preferences.vue +70 -70
  382. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesNew.vue +93 -93
  383. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesOld.vue +131 -131
  384. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +115 -115
  385. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageNew.vue +89 -89
  386. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageOld.vue +91 -91
  387. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/config/radioOptions.ts +22 -22
  388. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/enums.ts +9 -9
  389. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/interfaces.ts +11 -11
  390. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/types.ts +1 -1
  391. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +42 -42
  392. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleNew.vue +53 -53
  393. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleOld.vue +49 -49
  394. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +30 -30
  395. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/models/interfaces.ts +5 -5
  396. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/Inventory.vue +32 -32
  397. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryNew.vue +35 -35
  398. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryOld.vue +31 -31
  399. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts +49 -49
  400. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/models/types.ts +1 -1
  401. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +54 -54
  402. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatNew.vue +52 -52
  403. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatOld.vue +45 -45
  404. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +27 -27
  405. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/models/types.ts +1 -1
  406. package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +45 -45
  407. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewNew.vue +33 -33
  408. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewOld.vue +112 -112
  409. package/components/common/layout/theHeader/userMenu/userMenuNew/UserMenuNew.vue +170 -170
  410. package/components/common/layout/theHeader/userMenu/userMenuNew/lib/config/dropMenu.ts +28 -28
  411. package/components/common/layout/theHeader/userMenu/userMenuOld/UserMenuOld.vue +36 -36
  412. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/config/dropMenu.ts +36 -36
  413. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/models/types.ts +5 -5
  414. package/components/common/lib/config/states.ts +160 -160
  415. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +151 -151
  416. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +301 -301
  417. package/components/common/mainNavigationPanel/MainNavigationPanelOld.vue +299 -299
  418. package/components/common/mainNavigationPanel/lib/models/interfaces.ts +9 -9
  419. package/components/common/mainNavigationPanel/lib/models/types.ts +1 -1
  420. package/components/common/modals/Rename.vue +180 -180
  421. package/components/common/modals/confirmByInput/ConfirmByInput.vue +85 -85
  422. package/components/common/modals/confirmByInput/ConfirmByInputNew.vue +103 -103
  423. package/components/common/modals/confirmByInput/ConfirmByInputOld.vue +209 -209
  424. package/components/common/modals/confirmation/Confirmation.vue +79 -79
  425. package/components/common/modals/confirmation/ConfirmationNew.vue +77 -77
  426. package/components/common/modals/confirmation/ConfirmationOld.vue +111 -111
  427. package/components/common/modals/lib/config/defaultForm.ts +18 -18
  428. package/components/common/modals/lib/config/renameLabelWidth.ts +3 -3
  429. package/components/common/modals/lib/models/interfaces.ts +5 -5
  430. package/components/common/modals/unsavedChanges/UnsavedChanges.vue +48 -48
  431. package/components/common/monitor/advanced/Advanced.vue +203 -203
  432. package/components/common/monitor/advanced/AdvancedNew.vue +191 -191
  433. package/components/common/monitor/advanced/AdvancedOld.vue +220 -220
  434. package/components/common/monitor/advanced/graphView/GraphView.vue +145 -145
  435. package/components/common/monitor/advanced/graphView/GraphViewNew.vue +36 -36
  436. package/components/common/monitor/advanced/graphView/GraphViewOld.vue +56 -56
  437. package/components/common/monitor/advanced/lib/models/interfaces.ts +9 -9
  438. package/components/common/monitor/advanced/lib/models/types.ts +1 -1
  439. package/components/common/monitor/advanced/table/Table.vue +31 -31
  440. package/components/common/monitor/advanced/table/lib/models/interfaces.ts +12 -12
  441. package/components/common/monitor/advanced/table/lib/models/types.ts +10 -10
  442. package/components/common/monitor/advanced/table/tableNew/TableNew.vue +92 -92
  443. package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +139 -139
  444. package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +27 -27
  445. package/components/common/monitor/advanced/table/tableOld/TableOld.vue +93 -93
  446. package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +129 -129
  447. package/components/common/monitor/advanced/tools/Tools.vue +309 -309
  448. package/components/common/monitor/advanced/tools/ToolsNew.vue +222 -222
  449. package/components/common/monitor/advanced/tools/ToolsOld.vue +315 -315
  450. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +549 -549
  451. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +204 -204
  452. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +189 -189
  453. package/components/common/monitor/advanced/tools/chartOptionsModal/Notification.vue +27 -27
  454. package/components/common/monitor/advanced/tools/chartOptionsModal/NotificationNew.vue +22 -22
  455. package/components/common/monitor/advanced/tools/chartOptionsModal/NotificationOld.vue +27 -27
  456. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/Actions.vue +106 -106
  457. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsNew.vue +165 -165
  458. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +114 -114
  459. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +32 -32
  460. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/saveOptionsModal/SaveOptionsModal.vue +81 -81
  461. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +146 -146
  462. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +139 -139
  463. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +114 -114
  464. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +105 -105
  465. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1040 -1040
  466. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +30 -30
  467. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +48 -48
  468. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/config/options.ts +19 -19
  469. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/config/tableData.ts +71 -71
  470. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/utils/constructTable.ts +29 -29
  471. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +85 -85
  472. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +89 -89
  473. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/models/types.ts +5 -5
  474. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +138 -138
  475. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +188 -188
  476. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +95 -95
  477. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +294 -294
  478. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/config/objectTable.ts +64 -64
  479. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/interfaces.ts +4 -4
  480. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/types.ts +1 -1
  481. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/ObjectNew.vue +62 -62
  482. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/config/options.ts +25 -25
  483. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/config/tableData.ts +47 -47
  484. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectNew/lib/utils/constructTable.ts +22 -22
  485. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/objectOld/ObjectOld.vue +84 -84
  486. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/interfaces.ts +19 -19
  487. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types.ts +3 -3
  488. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +19 -19
  489. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/Metrics.vue +30 -30
  490. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -121
  491. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsOld.vue +32 -32
  492. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +173 -173
  493. package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +146 -146
  494. package/components/common/monitor/advanced/tools/lib/models/interfaces.ts +4 -4
  495. package/components/common/monitor/advanced/tools/lib/utils/countCores.ts +7 -7
  496. package/components/common/monitor/lib/config/getValidDateByOption.ts +76 -76
  497. package/components/common/monitor/lib/models/interfaces.ts +24 -24
  498. package/components/common/monitor/overview/Overview.vue +141 -141
  499. package/components/common/monitor/overview/OverviewNew.vue +120 -120
  500. package/components/common/monitor/overview/OverviewOld.vue +130 -130
  501. package/components/common/monitor/overview/filters/Filters.vue +174 -174
  502. package/components/common/monitor/overview/filters/FiltersNew.vue +171 -171
  503. package/components/common/monitor/overview/filters/FiltersOld.vue +153 -153
  504. package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModal.vue +173 -173
  505. package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModalOld.vue +161 -161
  506. package/components/common/monitor/overview/filters/customIntervalModal/customIntervalModalNew/CustomIntervalModalNew.vue +230 -230
  507. package/components/common/monitor/overview/filters/customIntervalModal/customIntervalModalNew/lib/utils/date.ts +11 -11
  508. package/components/common/monitor/overview/filters/customIntervalModal/lib/config/dateChecker.ts +62 -62
  509. package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +100 -100
  510. package/components/common/monitor/overview/filters/lib/models/interfaces.ts +10 -10
  511. package/components/common/monitor/overview/filters/lib/models/types.ts +15 -15
  512. package/components/common/monitor/resourceAllocation/lib/models/interfaces.ts +13 -13
  513. package/components/common/monitor/resourceAllocation/resourceAllocation.vue +196 -196
  514. package/components/common/pages/backups/Backups.vue +102 -102
  515. package/components/common/pages/backups/lib/models/types.ts +7 -7
  516. package/components/common/pages/backups/lib/utils/getBackupOrBackupStorageId.ts +25 -25
  517. package/components/common/pages/backups/modals/Modals.vue +243 -243
  518. package/components/common/pages/backups/modals/createBackup/CreateBackup.vue +379 -379
  519. package/components/common/pages/backups/modals/createBackup/datastores/Datastores.vue +59 -59
  520. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/config/keys.ts +14 -14
  521. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/config/table.ts +119 -119
  522. package/components/common/pages/backups/modals/createBackup/datastores/tableView/lib/models/types.ts +10 -10
  523. package/components/common/pages/backups/modals/createBackup/disks/Disks.vue +28 -28
  524. package/components/common/pages/backups/modals/createBackup/disks/tableView/TableView.vue +108 -108
  525. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/keys.ts +12 -12
  526. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/table.ts +125 -125
  527. package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/models/types.ts +10 -10
  528. package/components/common/pages/backups/modals/createBackup/lib/config/steps.ts +117 -117
  529. package/components/common/pages/backups/modals/createBackup/lib/models/interfaces.ts +8 -8
  530. package/components/common/pages/backups/modals/createBackup/readyToComplete/ReadyToComplete.vue +15 -15
  531. package/components/common/pages/backups/modals/deleteBackup/DeleteBackup.vue +52 -52
  532. package/components/common/pages/backups/modals/lib/config/createBackup.ts +16 -16
  533. package/components/common/pages/backups/modals/restore/Restore.vue +417 -417
  534. package/components/common/pages/backups/modals/restore/disks/tableView/lib/config/keys.ts +14 -14
  535. package/components/common/pages/backups/modals/restore/disks/tableView/lib/models/types.ts +10 -10
  536. package/components/common/pages/backups/modals/restore/lib/config/restoreCodes.ts +4 -4
  537. package/components/common/pages/backups/modals/restore/lib/config/steps.ts +108 -108
  538. package/components/common/pages/backups/modals/restore/networks/table/adapterType/AdapterType.vue +32 -32
  539. package/components/common/pages/backups/modals/restore/networks/table/adapterType/lib/config/options.ts +8 -8
  540. package/components/common/pages/backups/modals/restore/networks/table/lib/config/networkTable.ts +75 -75
  541. package/components/common/pages/backups/modals/restore/networks/table/lib/config/tableKeys.ts +10 -10
  542. package/components/common/pages/backups/modals/restore/networks/table/lib/models/types.ts +6 -6
  543. package/components/common/pages/backups/modals/restore/types/Types.vue +60 -60
  544. package/components/common/pages/backups/modals/restore/types/lib/config/descriptions.ts +7 -7
  545. package/components/common/pages/hardwareHealth/HardwareHealth.vue +214 -214
  546. package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +459 -459
  547. package/components/common/pages/hardwareHealth/historyTestimony/lib/config/containerSizes.ts +1 -1
  548. package/components/common/pages/hardwareHealth/historyTestimony/lib/models/interfaces.ts +20 -20
  549. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +389 -389
  550. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +502 -502
  551. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/Notification.vue +30 -30
  552. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +157 -157
  553. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +81 -81
  554. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +25 -25
  555. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +94 -94
  556. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +174 -174
  557. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +89 -89
  558. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/types.ts +5 -5
  559. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +66 -66
  560. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/config/optionsMetrics.ts +17 -17
  561. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/interfaces.ts +15 -15
  562. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/types.ts +1 -1
  563. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +31 -31
  564. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +82 -82
  565. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/models/interfaces.ts +9 -9
  566. package/components/common/pages/hardwareHealth/lib/config/status.ts +13 -13
  567. package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +39 -39
  568. package/components/common/pages/hardwareHealth/lib/models/enums.ts +8 -8
  569. package/components/common/pages/hardwareHealth/lib/models/interfaces.ts +6 -6
  570. package/components/common/pages/hardwareHealth/lib/models/types.ts +5 -5
  571. package/components/common/pages/hardwareHealth/tableView/TableView.vue +194 -194
  572. package/components/common/pages/hardwareHealth/tableView/lib/config/alertWarningTable.ts +109 -109
  573. package/components/common/pages/hardwareHealth/tableView/lib/config/historyTestimonyTable.ts +137 -137
  574. package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +153 -153
  575. package/components/common/pages/hardwareHealth/tableView/lib/config/storageSensorTable.ts +93 -93
  576. package/components/common/pages/hardwareHealth/tableView/lib/config/systemLogTable.ts +72 -72
  577. package/components/common/pages/hardwareHealth/tableView/lib/config/tableKeys.ts +22 -22
  578. package/components/common/pages/hardwareHealth/tableView/lib/models/interfaces.ts +29 -29
  579. package/components/common/pages/hardwareHealth/tableView/lib/models/types.ts +26 -26
  580. package/components/common/pages/hardwareHealth/tableView/modal/SensorWarning.vue +63 -63
  581. package/components/common/pages/hardwareHealth/toolsPanel/ToolsPanel.vue +51 -51
  582. package/components/common/pages/hardwareHealth/toolsPanel/lib/config/actionsPanel.ts +34 -34
  583. package/components/common/pages/hardwareHealth/toolsPanel/lib/models/types.ts +4 -4
  584. package/components/common/pages/home/Card.vue +63 -63
  585. package/components/common/pages/home/StatusContent.vue +52 -52
  586. package/components/common/pages/home/headline/Headline.vue +44 -44
  587. package/components/common/pages/home/headline/HeadlineNew.vue +104 -104
  588. package/components/common/pages/home/headline/HeadlineOld.vue +47 -47
  589. package/components/common/pages/home/lib/config/configResourceMeterBlock.ts +35 -35
  590. package/components/common/pages/home/lib/models/types.ts +12 -12
  591. package/components/common/pages/home/resource/Resource.vue +29 -29
  592. package/components/common/pages/home/resource/ResourceNew.vue +63 -63
  593. package/components/common/pages/home/resource/ResourceOld.vue +122 -122
  594. package/components/common/pages/home/resource/lib/models/interfaces.ts +14 -14
  595. package/components/common/pages/home/resource/lib/utils/resourceMeter.ts +52 -52
  596. package/components/common/pages/home/widgets/Widgets.vue +55 -55
  597. package/components/common/pages/home/widgets/WidgetsNew.vue +93 -93
  598. package/components/common/pages/home/widgets/WidgetsOld.vue +47 -47
  599. package/components/common/pages/home/widgets/hosts/HostsNew.vue +100 -100
  600. package/components/common/pages/home/widgets/hosts/HostsOld.vue +25 -25
  601. package/components/common/pages/home/widgets/services/Services.vue +27 -27
  602. package/components/common/pages/home/widgets/services/ServicesNew.vue +145 -145
  603. package/components/common/pages/home/widgets/services/ServicesOld.vue +35 -35
  604. package/components/common/pages/home/widgets/services/lib/config/config.ts +130 -130
  605. package/components/common/pages/home/widgets/services/lib/models/enums.ts +20 -20
  606. package/components/common/pages/home/widgets/services/table/Table.vue +80 -80
  607. package/components/common/pages/home/widgets/services/table/lib/config/config.ts +62 -62
  608. package/components/common/pages/home/widgets/services/table/lib/models/types.ts +6 -6
  609. package/components/common/pages/home/widgets/skeleton/totalQuantitiesItem.vue +82 -82
  610. package/components/common/pages/home/widgets/vms/Vms.vue +35 -35
  611. package/components/common/pages/home/widgets/vms/VmsNew.vue +107 -107
  612. package/components/common/pages/home/widgets/warnings/Warnings.vue +27 -27
  613. package/components/common/pages/home/widgets/warnings/WarningsNew.vue +104 -104
  614. package/components/common/pages/home/widgets/warnings/WarningsOld.vue +39 -39
  615. package/components/common/pages/home/widgets/warnings/lib/config/config.ts +96 -96
  616. package/components/common/pages/home/widgets/warnings/table/Table.vue +114 -114
  617. package/components/common/pages/home/widgets/warnings/table/lib/config/config.ts +73 -73
  618. package/components/common/pages/home/widgets/warnings/table/lib/models/enums.ts +11 -11
  619. package/components/common/pages/home/widgets/warnings/table/lib/models/interfaces.ts +19 -19
  620. package/components/common/pages/home/widgets/warnings/table/lib/models/types.ts +15 -15
  621. package/components/common/pages/licensing/Licensing.vue +128 -128
  622. package/components/common/pages/licensing/lib/models/interfaces.ts +21 -21
  623. package/components/common/pages/licensing/lib/utils/validation.ts +28 -28
  624. package/components/common/pages/licensing/listView/ListView.vue +50 -50
  625. package/components/common/pages/licensing/listView/lib/config/list.ts +57 -57
  626. package/components/common/pages/licensing/listView/lib/models/interfaces.ts +5 -5
  627. package/components/common/pages/licensing/modals/assign/Assign.vue +247 -247
  628. package/components/common/pages/licensing/modals/assign/lib/config/tabsPannel.ts +17 -17
  629. package/components/common/pages/licensing/modals/assign/lib/models/interfaces.ts +4 -4
  630. package/components/common/pages/licensing/modals/assign/lib/utils/error.ts +24 -24
  631. package/components/common/pages/licensing/modals/assign/new/New.vue +216 -216
  632. package/components/common/pages/licensing/modals/assign/tableView/TableView.vue +193 -193
  633. package/components/common/pages/licensing/modals/assign/tableView/lib/config/table.ts +100 -100
  634. package/components/common/pages/licensing/modals/assign/tableView/lib/config/tableKeys.ts +10 -10
  635. package/components/common/pages/licensing/modals/assign/tableView/lib/models/interfaces.ts +9 -9
  636. package/components/common/pages/licensing/modals/assign/tableView/lib/models/types.ts +8 -8
  637. package/components/common/pages/packages/Packages.vue +194 -194
  638. package/components/common/pages/packages/lib/config/actions.ts +59 -59
  639. package/components/common/pages/packages/lib/models/types.ts +8 -8
  640. package/components/common/pages/packages/tableView/TableView.vue +120 -120
  641. package/components/common/pages/packages/tableView/lib/config/configTable.ts +136 -136
  642. package/components/common/pages/packages/tableView/lib/config/tableKey.ts +14 -14
  643. package/components/common/pages/packages/tableView/lib/models/types.ts +12 -12
  644. package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +42 -42
  645. package/components/common/pages/scheduledTasks/lib/models/types.ts +16 -16
  646. package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +59 -59
  647. package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +82 -82
  648. package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +115 -115
  649. package/components/common/pages/scheduledTasks/modals/common/frequency/end/lib/config/endOptions.ts +17 -17
  650. package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +102 -102
  651. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/config/frequencyOptions.ts +38 -38
  652. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/models/types.ts +7 -7
  653. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +128 -128
  654. package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +237 -237
  655. package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +64 -64
  656. package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/models/types.ts +12 -12
  657. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +68 -68
  658. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +55 -55
  659. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/models/interfaces.ts +6 -6
  660. package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +88 -88
  661. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/NewTaskForm.vue +293 -293
  662. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/lib/models/interfaces.ts +3 -3
  663. package/components/common/pages/scheduledTasks/modals/common/newTaskForm/lib/utils.ts +67 -67
  664. package/components/common/pages/scheduledTasks/modals/lib/config/createScheduledTask.ts +23 -23
  665. package/components/common/pages/scheduledTasks/modals/lib/models/interfaces.ts +21 -21
  666. package/components/common/pages/scheduledTasks/modals/lib/utils.ts +7 -7
  667. package/components/common/pages/scheduledTasks/table/Table.vue +100 -100
  668. package/components/common/pages/scheduledTasks/table/detailsList/DetailsList.vue +78 -78
  669. package/components/common/pages/scheduledTasks/table/detailsList/Table.vue +63 -63
  670. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/historyRunsTable.ts +107 -107
  671. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/tableKeys.ts +8 -8
  672. package/components/common/pages/scheduledTasks/table/detailsList/lib/config/tasksRowDetails.ts +52 -52
  673. package/components/common/pages/scheduledTasks/table/detailsList/lib/models/types.ts +1 -1
  674. package/components/common/pages/scheduledTasks/table/lib/config/scheduledTasksTable.ts +129 -129
  675. package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +4 -4
  676. package/components/common/pages/scheduledTasks/table/lib/config/tableKeys.ts +9 -9
  677. package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +11 -11
  678. package/components/common/pages/scheduledTasks/table/lib/models/types.ts +7 -7
  679. package/components/common/pages/shortcuts/Shortcuts.vue +67 -67
  680. package/components/common/pages/shortcuts/block/Block.vue +39 -39
  681. package/components/common/pages/shortcuts/block/BlockNew.vue +104 -104
  682. package/components/common/pages/shortcuts/block/BlockOld.vue +73 -73
  683. package/components/common/pages/shortcuts/category/Category.vue +26 -26
  684. package/components/common/pages/shortcuts/category/CategoryNew.vue +41 -41
  685. package/components/common/pages/shortcuts/category/CategoryOld.vue +41 -41
  686. package/components/common/pages/shortcuts/lib/models/interfaces.ts +13 -13
  687. package/components/common/pages/tasks/Tasks.vue +122 -122
  688. package/components/common/pages/tasks/table/Table.vue +352 -352
  689. package/components/common/pages/tasks/table/expandDetails/ExpandDetails.vue +197 -197
  690. package/components/common/pages/tasks/table/lib/config/config.ts +270 -270
  691. package/components/common/pages/tasks/table/lib/models/enums.ts +13 -13
  692. package/components/common/perPage/PerPage.vue +52 -52
  693. package/components/common/portlets/customAttributes/Portlet.vue +658 -658
  694. package/components/common/portlets/customAttributes/lib/config/config.ts +146 -146
  695. package/components/common/portlets/customAttributes/lib/models/interfaces.ts +5 -5
  696. package/components/common/portlets/tag/CreateCategory.vue +265 -265
  697. package/components/common/portlets/tag/Portlet.vue +444 -444
  698. package/components/common/portlets/tag/TagAddNew.vue +605 -605
  699. package/components/common/portlets/tag/lib/config/config.ts +210 -210
  700. package/components/common/portlets/tag/lib/models/interfaces.ts +27 -27
  701. package/components/common/portlets/tag/lib/models/types.ts +15 -15
  702. package/components/common/readyToComplete/New.vue +121 -121
  703. package/components/common/readyToComplete/Old.vue +15 -15
  704. package/components/common/recursionTree/RecursionTree.vue +210 -210
  705. package/components/common/recursionTree/lib/models/interfaces.ts +27 -27
  706. package/components/common/resource/lib/models/interfaces.ts +10 -10
  707. package/components/common/resource/lib/models/types.ts +1 -1
  708. package/components/common/resource/lib/utils.ts +44 -44
  709. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  710. package/components/common/resource/simple/Simple.vue +65 -65
  711. package/components/common/resource/simple/lib/models/enums.ts +6 -6
  712. package/components/common/select/button/ButtonDropdown.vue +112 -112
  713. package/components/common/select/button/lib/models/interfaces.ts +8 -8
  714. package/components/common/select/input/Input.vue +77 -77
  715. package/components/common/select/input/lib/models/interfaces.ts +6 -6
  716. package/components/common/select/radio/lib/models/interfaces.ts +11 -11
  717. package/components/common/selectLanguage/SelectLanguage.vue +200 -200
  718. package/components/common/selectLanguage/lib/config/config.ts +40 -40
  719. package/components/common/selectLanguage/lib/utils/utils.ts +5 -5
  720. package/components/common/spiceConsole/keyboard/Keyboard.vue +403 -403
  721. package/components/common/spiceConsole/keyboard/lib/config/keyboardRows.ts +966 -966
  722. package/components/common/spiceConsole/keyboard/lib/models/interfaces.ts +18 -18
  723. package/components/common/spiceConsole/lib/models/types.ts +1 -1
  724. package/components/common/spiceConsole/lib/utils/getDeviceType.ts +35 -35
  725. package/components/common/split/horizontal/Horizontal.vue +70 -70
  726. package/components/common/split/horizontal/HorizontalNew.vue +387 -387
  727. package/components/common/split/horizontal/HorizontalOld.vue +337 -337
  728. package/components/common/split/vertical/Vertical.vue +162 -162
  729. package/components/common/split/vertical/VerticalNew.vue +124 -124
  730. package/components/common/split/vertical/VerticalOld.vue +113 -113
  731. package/components/common/split/vertical/lib/models/interfaces.ts +3 -3
  732. package/components/common/summary/notification/Notification.vue +28 -28
  733. package/components/common/summary/notification/NotificationNew.vue +135 -135
  734. package/components/common/summary/notification/NotificationOld.vue +47 -47
  735. package/components/common/titleBar/titleBarNew/notification/Notification.vue +372 -372
  736. package/components/common/titleBar/titleBarNew/notification/lib/config/tabsData.ts +47 -47
  737. package/components/common/titleBar/titleBarNew/notification/lib/models/interfaces.ts +10 -10
  738. package/components/common/titleBar/titleBarNew/notification/lib/models/types.ts +3 -3
  739. package/components/common/tools/lib/models/interfaces.ts +10 -10
  740. package/components/common/tools/viewSettings/ViewSettings.vue +86 -86
  741. package/components/common/tools/viewSettings/lib/models/interfaces.ts +9 -9
  742. package/components/common/tooltip/Help.vue +182 -182
  743. package/components/common/vm/actions/add/Add.vue +850 -850
  744. package/components/common/vm/actions/add/New.vue +679 -679
  745. package/components/common/vm/actions/add/Old.vue +398 -398
  746. package/components/common/vm/actions/add/folderTreeView/Old.vue +50 -50
  747. package/components/common/vm/actions/add/lib/config/steps.ts +320 -320
  748. package/components/common/vm/actions/add/lib/utils.ts +103 -103
  749. package/components/common/vm/actions/clone/Clone.vue +841 -841
  750. package/components/common/vm/actions/clone/lib/config/steps.ts +291 -291
  751. package/components/common/vm/actions/clone/lib/models/interfaces.ts +6 -6
  752. package/components/common/vm/actions/clone/lib/utils.ts +43 -43
  753. package/components/common/vm/actions/clone/toTemplate/ToTemplate.vue +644 -644
  754. package/components/common/vm/actions/clone/toTemplate/lib/config/steps.ts +118 -118
  755. package/components/common/vm/actions/clone/toTemplate/lib/models/interfaces.ts +14 -14
  756. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +308 -308
  757. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +373 -373
  758. package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareOld.vue +205 -205
  759. package/components/common/vm/actions/common/customizeHardware/lib/config/navItems.ts +36 -36
  760. package/components/common/vm/actions/common/customizeHardware/lib/models/interfaces.ts +7 -7
  761. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +728 -728
  762. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +523 -523
  763. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue +339 -339
  764. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +234 -234
  765. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/lib/models/interfaces.ts +8 -8
  766. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +110 -110
  767. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +67 -67
  768. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusOld.vue +114 -114
  769. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/lib/config/options.ts +20 -20
  770. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +239 -239
  771. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +234 -234
  772. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveOld.vue +174 -174
  773. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +9 -9
  774. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/options.ts +11 -11
  775. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/models/types.ts +1 -1
  776. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +248 -248
  777. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuOld.vue +189 -189
  778. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +99 -99
  779. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +55 -55
  780. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +55 -55
  781. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +106 -106
  782. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +86 -86
  783. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketNew.vue +69 -69
  784. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketOld.vue +63 -63
  785. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlug.vue +40 -40
  786. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlugNew.vue +34 -34
  787. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/hotPlug/HotPlugOld.vue +46 -46
  788. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/lib/config/cpuOptions.ts +21 -21
  789. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpu.vue +94 -94
  790. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuNew.vue +41 -41
  791. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuOld.vue +51 -51
  792. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/Model.vue +124 -124
  793. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelNew.vue +130 -130
  794. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelOld.vue +168 -168
  795. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesNew.vue +65 -65
  796. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesOld.vue +76 -76
  797. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +25 -25
  798. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipNew.vue +155 -155
  799. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipOld.vue +59 -59
  800. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/binaryOptions.ts +12 -12
  801. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +156 -156
  802. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +118 -118
  803. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/types.ts +7 -7
  804. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +221 -221
  805. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitNew.vue +75 -75
  806. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitOld.vue +75 -75
  807. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +29 -29
  808. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +313 -313
  809. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryNew.vue +158 -158
  810. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryOld.vue +155 -155
  811. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlug.vue +29 -29
  812. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugNew.vue +35 -35
  813. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugOld.vue +42 -42
  814. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/lib/config/memoryOptions.ts +35 -35
  815. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +392 -392
  816. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +327 -327
  817. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +272 -272
  818. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +63 -63
  819. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheNew.vue +47 -47
  820. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheOld.vue +58 -58
  821. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/lib/config/options.ts +12 -12
  822. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/File.vue +22 -22
  823. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileNew.vue +41 -41
  824. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileOld.vue +24 -24
  825. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +103 -103
  826. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsNew.vue +66 -66
  827. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsOld.vue +89 -89
  828. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/lib/config/options.ts +31 -31
  829. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/LocationNew.vue +79 -79
  830. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/Old.vue +54 -54
  831. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/StorageModal.vue +61 -61
  832. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/New.vue +134 -134
  833. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/lib/config/table.ts +15 -15
  834. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSize.vue +23 -23
  835. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeNew.vue +47 -47
  836. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeOld.vue +24 -24
  837. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +65 -65
  838. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeNew.vue +48 -48
  839. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeOld.vue +57 -57
  840. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/lib/config/options.ts +18 -18
  841. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +61 -61
  842. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningNew.vue +52 -52
  843. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningOld.vue +58 -58
  844. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/lib/config/options.ts +15 -15
  845. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +63 -63
  846. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingNew.vue +52 -52
  847. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingOld.vue +58 -58
  848. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/lib/config/options.ts +12 -12
  849. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +293 -293
  850. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +134 -134
  851. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkOld.vue +131 -131
  852. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +60 -60
  853. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeNew.vue +54 -54
  854. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeOld.vue +60 -60
  855. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/lib/config/options.ts +9 -9
  856. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/Location.vue +71 -71
  857. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/LocationOld.vue +134 -134
  858. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/New.vue +106 -106
  859. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/lib/config/config.ts +94 -94
  860. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressNew.vue +63 -63
  861. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressOld.vue +81 -81
  862. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +11 -11
  863. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +210 -210
  864. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceNew.vue +94 -94
  865. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDeviceOld.vue +96 -96
  866. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +29 -29
  867. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIoNew.vue +83 -83
  868. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/lib/config/options.ts +10 -10
  869. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/lib/config/options.ts +14 -14
  870. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +41 -41
  871. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGridNew.vue +80 -80
  872. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelection.vue +35 -35
  873. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelectionNew.vue +46 -46
  874. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelectionOld.vue +46 -46
  875. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +58 -58
  876. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +65 -65
  877. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerOld.vue +61 -61
  878. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/lib/config/options.ts +6 -6
  879. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +36 -36
  880. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherOld.vue +32 -32
  881. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevices.vue +15 -15
  882. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesNew.vue +45 -45
  883. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesOld.vue +21 -21
  884. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +197 -197
  885. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationNew.vue +108 -108
  886. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationOld.vue +104 -104
  887. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/lib/config/options.ts +33 -33
  888. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +50 -50
  889. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +162 -162
  890. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +121 -121
  891. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardOld.vue +120 -120
  892. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/lib/config/options.ts +14 -14
  893. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +37 -37
  894. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelNew.vue +44 -44
  895. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelOld.vue +44 -44
  896. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/lib/config/options.ts +13 -13
  897. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysNew.vue +52 -52
  898. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysOld.vue +56 -56
  899. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemory.vue +107 -107
  900. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryNew.vue +50 -50
  901. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryOld.vue +64 -64
  902. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/lib/config/options.ts +2 -2
  903. package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +163 -163
  904. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsNew.vue +138 -138
  905. package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsOld.vue +120 -120
  906. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +110 -110
  907. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +85 -85
  908. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsOld.vue +91 -91
  909. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +52 -52
  910. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayNew.vue +41 -41
  911. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayOld.vue +43 -43
  912. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/lib/config/config.ts +14 -14
  913. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareNew.vue +47 -47
  914. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareOld.vue +58 -58
  915. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/lib/config/config.ts +11 -11
  916. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/Menu.vue +26 -26
  917. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuNew.vue +31 -31
  918. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuOld.vue +41 -41
  919. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +71 -71
  920. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderOld.vue +63 -63
  921. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/lib/models/interfaces.ts +9 -9
  922. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +101 -101
  923. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +161 -161
  924. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsOld.vue +158 -158
  925. package/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces.ts +34 -34
  926. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +148 -148
  927. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/Old.vue +141 -141
  928. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +52 -52
  929. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +50 -50
  930. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +178 -178
  931. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPaste.vue +26 -26
  932. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteNew.vue +31 -31
  933. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteOld.vue +41 -41
  934. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransfer.vue +26 -26
  935. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferNew.vue +31 -31
  936. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferOld.vue +41 -41
  937. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharing.vue +20 -20
  938. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingNew.vue +31 -31
  939. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingOld.vue +37 -37
  940. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +85 -85
  941. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +14 -14
  942. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +85 -85
  943. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +12 -12
  944. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapNew.vue +42 -42
  945. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/lib/config/config.ts +6 -6
  946. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +57 -57
  947. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +11 -11
  948. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordNew.vue +128 -128
  949. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordOld.vue +94 -94
  950. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/models/interfaces.ts +5 -5
  951. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/utils.ts +24 -24
  952. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +56 -56
  953. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +11 -11
  954. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +85 -85
  955. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +12 -12
  956. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +85 -85
  957. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/lib/config/config.ts +7 -7
  958. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionNew.vue +42 -42
  959. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/lib/config/config.ts +14 -14
  960. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +85 -85
  961. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +12 -12
  962. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +49 -49
  963. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsNew.vue +45 -45
  964. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsOld.vue +57 -57
  965. package/components/common/vm/actions/common/lib/config/capabilities.ts +361 -361
  966. package/components/common/vm/actions/common/lib/models/enums.ts +123 -123
  967. package/components/common/vm/actions/common/lib/models/interfaces.ts +156 -156
  968. package/components/common/vm/actions/common/lib/models/types.ts +67 -67
  969. package/components/common/vm/actions/common/lib/utils/capabilities.ts +56 -56
  970. package/components/common/vm/actions/common/select/compatibility/Compatibility.vue +107 -107
  971. package/components/common/vm/actions/common/select/compatibility/New.vue +179 -179
  972. package/components/common/vm/actions/common/select/computeResource/Old.vue +99 -99
  973. package/components/common/vm/actions/common/select/computeResource/lib/ComputeResource.spec.ts +479 -479
  974. package/components/common/vm/actions/common/select/computeResource/treeView/New.vue +51 -51
  975. package/components/common/vm/actions/common/select/computeResource/treeView/Old.vue +51 -51
  976. package/components/common/vm/actions/common/select/createType/New.vue +103 -103
  977. package/components/common/vm/actions/common/select/createType/Old.vue +70 -70
  978. package/components/common/vm/actions/common/select/createType/lib/config/items.ts +48 -48
  979. package/components/common/vm/actions/common/select/lib/models/interfaces.ts +34 -34
  980. package/components/common/vm/actions/common/select/lib/models/types.ts +27 -27
  981. package/components/common/vm/actions/common/select/name/New.vue +232 -232
  982. package/components/common/vm/actions/common/select/name/Old.vue +124 -124
  983. package/components/common/vm/actions/common/select/options/New.vue +227 -227
  984. package/components/common/vm/actions/common/select/options/Old.vue +75 -75
  985. package/components/common/vm/actions/common/select/options/Options.vue +38 -38
  986. package/components/common/vm/actions/common/select/os/New.vue +129 -129
  987. package/components/common/vm/actions/common/select/storage/Old.vue +132 -132
  988. package/components/common/vm/actions/common/select/storage/Storage.vue +164 -164
  989. package/components/common/vm/actions/common/select/storage/lib/config/config.ts +206 -206
  990. package/components/common/vm/actions/common/select/storage/lib/models/types.ts +15 -15
  991. package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +337 -337
  992. package/components/common/vm/actions/common/select/template/Template.vue +77 -77
  993. package/components/common/vm/actions/common/select/template/new/New.vue +59 -59
  994. package/components/common/vm/actions/common/select/template/treeView/New.vue +115 -115
  995. package/components/common/vm/actions/common/select/template/treeView/Old.vue +50 -50
  996. package/components/common/vm/actions/common/select/template/treeView/TreeView.vue +87 -87
  997. package/components/common/vm/actions/confirm/Confirm.vue +37 -37
  998. package/components/common/vm/actions/editSettings/EditSettings.vue +252 -252
  999. package/components/common/vm/actions/editSettings/EditSettingsOld.vue +200 -200
  1000. package/components/common/vm/actions/editSettings/lib/config/modal.ts +12 -12
  1001. package/components/common/vm/actions/editSettings/lib/models/types.ts +23 -23
  1002. package/components/common/vm/actions/editSettings/lib/utils.ts +42 -42
  1003. package/components/common/vm/actions/editSettings/new/New.vue +201 -201
  1004. package/components/common/vm/actions/lib/models/interfaces.ts +40 -40
  1005. package/components/common/vm/actions/lib/models/types.ts +11 -11
  1006. package/components/common/vm/actions/lib/utils.ts +239 -239
  1007. package/components/common/vm/lib/models/interfaces.ts +9 -9
  1008. package/components/common/vm/lib/utils/powerActions.ts +55 -55
  1009. package/components/common/vmt/actions/add/Add.vue +548 -548
  1010. package/components/common/vmt/actions/add/New.vue +346 -346
  1011. package/components/common/vmt/actions/add/Old.vue +305 -305
  1012. package/components/common/vmt/actions/add/lib/config/steps.ts +107 -107
  1013. package/components/common/vmt/actions/add/lib/models/interfaces.ts +23 -23
  1014. package/components/common/weekSelect/WeekSelect.vue +143 -143
  1015. package/components/common/weekSelect/lib/config/options.ts +10 -10
  1016. package/components/common/weekSelect/lib/models/interfaces.ts +6 -6
  1017. package/components/common/wizards/datastore/add/Add.vue +224 -224
  1018. package/components/common/wizards/datastore/add/New.vue +259 -259
  1019. package/components/common/wizards/datastore/add/Old.vue +129 -129
  1020. package/components/common/wizards/datastore/add/lib/config/createDatastore.ts +16 -16
  1021. package/components/common/wizards/datastore/add/lib/config/steps.ts +175 -175
  1022. package/components/common/wizards/datastore/add/lib/models/enums.ts +5 -5
  1023. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +22 -22
  1024. package/components/common/wizards/datastore/add/lib/models/types.ts +7 -7
  1025. package/components/common/wizards/datastore/add/lib/utils.ts +63 -63
  1026. package/components/common/wizards/datastore/add/lib/validations.ts +199 -199
  1027. package/components/common/wizards/datastore/add/steps/_kerberosAuthentication/KerberosAuthentication.vue +56 -56
  1028. package/components/common/wizards/datastore/add/steps/_kerberosAuthentication/lib/config/radioOptions.ts +27 -27
  1029. package/components/common/wizards/datastore/add/steps/_local/Local.vue +46 -46
  1030. package/components/common/wizards/datastore/add/steps/_local/createName/CreateName.vue +116 -116
  1031. package/components/common/wizards/datastore/add/steps/_nfsVersion/NfsVersion.vue +24 -24
  1032. package/components/common/wizards/datastore/add/steps/_nfsVersion/lib/config/versionOptions.ts +23 -23
  1033. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/PartitionConfiguration.vue +245 -245
  1034. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/graphicTooltip/graphicTooltip.vue +64 -64
  1035. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/lib/config/selectOptions.ts +46 -46
  1036. package/components/common/wizards/datastore/add/steps/_partitionConfiguration/sizeGraphic/sizeGraphic.vue +225 -225
  1037. package/components/common/wizards/datastore/add/steps/_vmfsVersion/Version.vue +29 -29
  1038. package/components/common/wizards/datastore/add/steps/_vmfsVersion/lib/config/versionOptions.ts +21 -21
  1039. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibility.vue +59 -59
  1040. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityNew.vue +54 -54
  1041. package/components/common/wizards/datastore/add/steps/hostAccessibility/HostAccessibilityOld.vue +55 -55
  1042. package/components/common/wizards/datastore/add/steps/hostAccessibility/lib/config/tabsPannel.ts +30 -30
  1043. package/components/common/wizards/datastore/add/steps/hostAccessibility/lib/models/types.ts +3 -3
  1044. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/Table.vue +39 -39
  1045. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/lib/models/interfaces.ts +11 -11
  1046. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/new/New.vue +119 -119
  1047. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/new/lib/config/compatibleTable.ts +83 -83
  1048. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/Old.vue +90 -90
  1049. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/compatibleTable.ts +58 -58
  1050. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable.ts +68 -68
  1051. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/tableKeys.ts +15 -15
  1052. package/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/models/types.ts +6 -6
  1053. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigure.vue +50 -50
  1054. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue +232 -232
  1055. package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureOld.vue +230 -230
  1056. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/DeletePopover.vue +99 -99
  1057. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/ServersList.vue +129 -129
  1058. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/config/serversListConfig.ts +43 -43
  1059. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/config/tableKeys.ts +3 -3
  1060. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/models/interfaces.ts +3 -3
  1061. package/components/common/wizards/datastore/add/steps/nameAndConfigure/_serversList/lib/models/types.ts +1 -1
  1062. package/components/common/wizards/datastore/add/steps/nameAndConfigure/lib/models/interfaces.ts +5 -5
  1063. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDevice.vue +148 -148
  1064. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +227 -227
  1065. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceOld.vue +226 -226
  1066. package/components/common/wizards/datastore/add/steps/nameAndDevice/lib/config/selectOptions.ts +13 -13
  1067. package/components/common/wizards/datastore/add/steps/nameAndDevice/lib/models/interfaces.ts +16 -16
  1068. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/Table.vue +73 -73
  1069. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/lib/models/interfaces.ts +15 -15
  1070. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/New.vue +166 -166
  1071. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/config/lunDiskTable.ts +185 -185
  1072. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/new/lib/models/enums.ts +16 -16
  1073. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/Old.vue +99 -99
  1074. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/config/lunDiskTable.ts +91 -91
  1075. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/config/tableKeys.ts +11 -11
  1076. package/components/common/wizards/datastore/add/steps/nameAndDevice/table/old/lib/models/types.ts +9 -9
  1077. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyComplete.vue +44 -44
  1078. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyCompleteNew.vue +164 -164
  1079. package/components/common/wizards/datastore/add/steps/readyComplete/ReadyCompleteOld.vue +103 -103
  1080. package/components/common/wizards/datastore/add/steps/readyComplete/lib/config/propertiesDetails.ts +160 -160
  1081. package/components/common/wizards/datastore/add/steps/typeMode/TypeMode.vue +35 -35
  1082. package/components/common/wizards/datastore/add/steps/typeMode/TypeModeNew.vue +101 -101
  1083. package/components/common/wizards/datastore/add/steps/typeMode/TypeModeOld.vue +71 -71
  1084. package/components/common/wizards/network/add/Add.vue +864 -864
  1085. package/components/common/wizards/network/add/AddNew.vue +514 -514
  1086. package/components/common/wizards/network/add/AddOld.vue +457 -457
  1087. package/components/common/wizards/network/add/lib/config/config.ts +46 -46
  1088. package/components/common/wizards/network/add/lib/config/initialData.ts +62 -62
  1089. package/components/common/wizards/network/add/lib/config/portPropertiesStep.ts +43 -43
  1090. package/components/common/wizards/network/add/lib/config/selectConnectionTypeStep.ts +31 -31
  1091. package/components/common/wizards/network/add/lib/config/selectSwitch.ts +236 -236
  1092. package/components/common/wizards/network/add/lib/config/sendData.ts +141 -141
  1093. package/components/common/wizards/network/add/lib/config/steps.ts +497 -497
  1094. package/components/common/wizards/network/add/lib/models/enums.ts +17 -17
  1095. package/components/common/wizards/network/add/lib/models/interfaces.ts +258 -258
  1096. package/components/common/wizards/network/add/lib/models/types.ts +14 -14
  1097. package/components/common/wizards/network/add/lib/utils/utils.ts +4 -4
  1098. package/components/common/wizards/network/add/mappers/mappers.ts +192 -192
  1099. package/components/common/wizards/network/add/steps/ConnectionSettings.vue +154 -154
  1100. package/components/common/wizards/network/add/steps/CreateStandardSwitch.vue +91 -91
  1101. package/components/common/wizards/network/add/steps/IpFourSettings.vue +309 -309
  1102. package/components/common/wizards/network/add/steps/PhysicalAdapter.vue +13 -13
  1103. package/components/common/wizards/network/add/steps/PortProperties.vue +411 -411
  1104. package/components/common/wizards/network/add/steps/ReadyComplete.vue +20 -20
  1105. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +35 -35
  1106. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +104 -104
  1107. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeOld.vue +79 -79
  1108. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +183 -183
  1109. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +393 -393
  1110. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +370 -370
  1111. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/Modals.vue +55 -55
  1112. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +64 -64
  1113. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +64 -64
  1114. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +64 -64
  1115. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +163 -163
  1116. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +163 -163
  1117. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +163 -163
  1118. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectNetwork.vue +174 -174
  1119. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectStandardSwitch.vue +128 -128
  1120. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/old/SelectSwitch.vue +132 -132
  1121. package/components/common/wizards/network/add/validations/common.ts +26 -26
  1122. package/components/common/wizards/network/add/validations/connectionSettings.ts +70 -70
  1123. package/components/common/wizards/network/add/validations/createStandardSwitch.ts +59 -59
  1124. package/components/common/wizards/network/add/validations/ipFourSettings.ts +182 -182
  1125. package/components/common/wizards/network/add/validations/networkValidation.ts +77 -77
  1126. package/components/common/wizards/network/add/validations/physicalAdapter.ts +70 -70
  1127. package/components/common/wizards/network/add/validations/portProperties.ts +83 -83
  1128. package/components/common/wizards/network/add/validations/targetDevice.ts +110 -110
  1129. package/components/common/wizards/network/add/validations/validations.ts +43 -43
  1130. package/components/common/wizards/vm/common/computeResource/TreeView.vue +58 -58
  1131. package/components/common/wizards/vm/common/tooltip/Tooltip.vue +84 -84
  1132. package/components/common/wizards/vm/common/validation/compatibility/Compatibility.vue +62 -62
  1133. package/components/common/wizards/vm/common/validation/lib/models/enums.ts +5 -5
  1134. package/components/common/wizards/vm/migrate/Migrate.vue +353 -353
  1135. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +221 -221
  1136. package/components/common/wizards/vm/migrate/lib/config/steps.ts +157 -157
  1137. package/components/common/wizards/vm/migrate/lib/models/enums.ts +12 -12
  1138. package/components/common/wizards/vm/migrate/lib/models/interfaces.ts +35 -35
  1139. package/components/common/wizards/vm/migrate/lib/validations.ts +68 -68
  1140. package/components/common/wizards/vm/migrate/select/computeResource/ComputeResource.vue +195 -195
  1141. package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +39 -39
  1142. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/enums.ts +6 -6
  1143. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/interfaces.ts +31 -31
  1144. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/types.ts +12 -12
  1145. package/components/common/wizards/vm/migrate/select/computeResource/tableView/TableView.vue +138 -138
  1146. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +170 -170
  1147. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +170 -170
  1148. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +155 -155
  1149. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/tableKeys.ts +65 -65
  1150. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +93 -93
  1151. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/interfaces.ts +50 -50
  1152. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/types.ts +60 -60
  1153. package/components/common/wizards/vm/migrate/select/network/lib/models/interfaces.ts +4 -4
  1154. package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +150 -150
  1155. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/advancedTable.ts +91 -91
  1156. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/basicTable.ts +70 -70
  1157. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/tableKeys.ts +13 -13
  1158. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/interfaces.ts +12 -12
  1159. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/types.ts +21 -21
  1160. package/components/common/wizards/vm/migrate/select/network/table/useAt/UseAt.vue +54 -54
  1161. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/tableKeys.ts +7 -7
  1162. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/useAtTable.ts +47 -47
  1163. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/interfaces.ts +1 -1
  1164. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/types.ts +5 -5
  1165. package/components/common/wizards/vm/migrate/select/priority/Priority.vue +43 -43
  1166. package/components/common/wizards/vm/migrate/select/priority/lib/config/typeOptions.ts +31 -31
  1167. package/components/common/wizards/vm/migrate/select/priority/lib/models/types.ts +1 -1
  1168. package/components/common/wizards/vm/migrate/select/storage/Storage.vue +174 -174
  1169. package/components/common/wizards/vm/migrate/select/storage/configure/batch/Batch.vue +68 -68
  1170. package/components/common/wizards/vm/migrate/select/storage/configure/batch/config/virtualDiskFormat.ts +31 -31
  1171. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/Table.vue +128 -128
  1172. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/lib/config/datastoreTable.ts +177 -177
  1173. package/components/common/wizards/vm/migrate/select/storage/configure/batch/table/lib/models/types.ts +15 -15
  1174. package/components/common/wizards/vm/migrate/select/storage/configure/disk/Disk.vue +68 -68
  1175. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/Table.vue +74 -74
  1176. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/config/diskTable.ts +136 -136
  1177. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/config/tableKeys.ts +15 -15
  1178. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/models/interfaces.ts +29 -29
  1179. package/components/common/wizards/vm/migrate/select/storage/configure/disk/table/lib/models/types.ts +13 -13
  1180. package/components/common/wizards/vm/migrate/select/storage/lib/config/tabsPannel.ts +21 -21
  1181. package/components/common/wizards/vm/migrate/select/storage/lib/models/enums.ts +6 -6
  1182. package/components/common/wizards/vm/migrate/select/storage/lib/models/types.ts +9 -9
  1183. package/components/common/wizards/vm/migrate/select/storage/policy/Policy.vue +84 -84
  1184. package/components/common/wizards/vm/migrate/select/storage/selectedPerDisk/SelectedPerDisk.vue +80 -80
  1185. package/components/common/wizards/vm/migrate/select/targetServer/lib/config/tabsPannel.ts +19 -19
  1186. package/components/common/wizards/vm/migrate/select/targetServer/lib/models/types.ts +1 -1
  1187. package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +258 -258
  1188. package/components/common/wizards/vm/migrate/select/targetServer/new/lib/models/interfaces.ts +11 -11
  1189. package/components/common/wizards/vm/migrate/select/targetServer/saved/Saved.vue +27 -27
  1190. package/components/common/wizards/vm/migrate/select/targetServer/targetServer.vue +51 -51
  1191. package/components/common/wizards/vm/migrate/select/type/Type.vue +27 -27
  1192. package/components/common/wizards/vm/migrate/select/type/lib/config/typeOptions.ts +49 -49
  1193. package/components/common/wizards/vm/migrate/select/type/lib/models/interfaces.ts +6 -6
  1194. package/components/common/wizards/vm/migrate/select/type/lib/models/types.ts +5 -5
  1195. package/components/common/wizards/vm/migrate/vmOrigin/VmOrigin.vue +95 -95
  1196. package/components/common/wizards/vm/migrate/vmOrigin/lib/models/interfaces.ts +20 -20
  1197. package/components/common/wizards/vm/migrate/vmOrigin/lib/utils/constructItems.ts +74 -74
  1198. package/components/content/Hint.vue +24 -24
  1199. package/components/lib/models/interfaces.ts +14 -14
  1200. package/composables/deepCopy.ts +21 -21
  1201. package/composables/useDiff.ts +15 -15
  1202. package/composables/useEnvLanguage.ts +23 -23
  1203. package/composables/useLocal.ts +51 -51
  1204. package/composables/useLocalStorage.ts +45 -45
  1205. package/composables/useThrottle.ts +32 -32
  1206. package/composables/useUniqueId.ts +5 -5
  1207. package/eslint/index.js +15 -15
  1208. package/eslint/no-import-type.js +17 -17
  1209. package/eslint/no-invalid-type-prefix.js +32 -32
  1210. package/layouts/auth.vue +32 -32
  1211. package/lib/config/regExp.ts +18 -18
  1212. package/lib/config/uiTable.ts +20 -20
  1213. package/lib/models/composables/useAppVersion/interfaces.ts +5 -5
  1214. package/lib/models/composables/useMyFetch/interfaces.ts +25 -25
  1215. package/lib/models/composables/useMyFetch/types.ts +1 -1
  1216. package/lib/models/enums.ts +35 -35
  1217. package/lib/models/interfaces.ts +91 -91
  1218. package/lib/models/plugins/date/interfaces.ts +5 -5
  1219. package/lib/models/plugins/date/types.ts +1 -1
  1220. package/lib/models/plugins/panelStates/interfaces.ts +5 -5
  1221. package/lib/models/plugins/validation/interfaces.ts +21 -21
  1222. package/lib/models/plugins/validation/types.ts +1 -1
  1223. package/lib/models/store/host/interfaces.ts +38 -38
  1224. package/lib/models/store/interfaces.ts +45 -45
  1225. package/lib/models/store/network/interfaces.ts +13 -13
  1226. package/lib/models/store/storage/interfaces.ts +32 -32
  1227. package/lib/models/store/tasks/enums.ts +34 -34
  1228. package/lib/models/store/tasks/interfaces.ts +137 -137
  1229. package/lib/models/store/tasks/types.ts +2 -2
  1230. package/lib/models/store/types.ts +43 -43
  1231. package/lib/models/store/vm/interfaces.ts +397 -397
  1232. package/lib/models/table/interfaces.ts +57 -57
  1233. package/lib/models/table/types.ts +1 -1
  1234. package/lib/models/types.ts +58 -58
  1235. package/lib/utils/base64.ts +34 -34
  1236. package/lib/utils/contentBuild.ts +34 -34
  1237. package/lib/utils/date.ts +12 -12
  1238. package/lib/utils/notification.ts +22 -22
  1239. package/lib/utils/sendTask.ts +73 -73
  1240. package/lib/utils/token.ts +34 -34
  1241. package/lib/utils/utils.ts +60 -60
  1242. package/minify.js +146 -146
  1243. package/modules/fixContentBuild/index.ts +91 -91
  1244. package/modules/fixContentBuild/lib/utils/methods.ts +115 -115
  1245. package/modules/fixSpiceConsoleBuild/index.ts +28 -28
  1246. package/modules/replaceEnv/index.ts +40 -40
  1247. package/modules/setLastUpdateTime/index.ts +36 -36
  1248. package/modules/setLastUpdateTime/lib/utils/methods.ts +31 -31
  1249. package/nuxt.config.ts +8 -8
  1250. package/package.json +42 -42
  1251. package/plugins/binary.ts +164 -164
  1252. package/plugins/console.ts +22 -22
  1253. package/plugins/cron.ts +75 -75
  1254. package/plugins/directives.ts +74 -74
  1255. package/plugins/helpers.ts +18 -18
  1256. package/plugins/number.ts +18 -18
  1257. package/plugins/recursion.ts +388 -388
  1258. package/plugins/spice-console/spice.console.ts +147 -147
  1259. package/plugins/time.ts +17 -17
  1260. package/plugins/validation.ts +178 -178
  1261. package/public/spice-console/application/WorkerProcess.js +3350 -3350
  1262. package/public/spice-console/application/WorkerProcess_back.js +3144 -3144
  1263. package/public/spice-console/application/WorkerProcess_meta.js +3103 -3103
  1264. package/public/spice-console/application/WorkerProcess_reverse.js +3214 -3214
  1265. package/public/spice-console/application/agent.js +178 -178
  1266. package/public/spice-console/application/application.js +641 -641
  1267. package/public/spice-console/application/checkActivity.js +50 -50
  1268. package/public/spice-console/application/clientgui.js +849 -849
  1269. package/public/spice-console/application/clipboard/clipboarddataparser.js +92 -92
  1270. package/public/spice-console/application/clipboard/local/localClipboard.js +110 -110
  1271. package/public/spice-console/application/clipboard.js +82 -82
  1272. package/public/spice-console/application/codec.js +264 -264
  1273. package/public/spice-console/application/imagecache.js +81 -81
  1274. package/public/spice-console/application/inputmanager.js +270 -270
  1275. package/public/spice-console/application/packetfactory.js +206 -206
  1276. package/public/spice-console/application/packetfilter.js +103 -103
  1277. package/public/spice-console/application/packetprocess.js +75 -75
  1278. package/public/spice-console/application/rasteroperation.js +118 -118
  1279. package/public/spice-console/application/spiceconnection.js +197 -197
  1280. package/public/spice-console/application/stream.js +67 -67
  1281. package/public/spice-console/application/virtualmouse.js +109 -109
  1282. package/public/spice-console/keymaps/keyevent.js +36 -36
  1283. package/public/spice-console/keymaps/keymap.js +229 -229
  1284. package/public/spice-console/keymaps/keymapes.js +375 -375
  1285. package/public/spice-console/keymaps/keymapesObj.js +317 -317
  1286. package/public/spice-console/keymaps/keymapus.js +317 -317
  1287. package/public/spice-console/keymaps/scanCodeObjModifier.js +65 -65
  1288. package/public/spice-console/keymaps/scanCodeObjProvider.js +60 -60
  1289. package/public/spice-console/lib/AsyncConsumer.js +204 -204
  1290. package/public/spice-console/lib/AsyncWorker.js +60 -60
  1291. package/public/spice-console/lib/CollisionDetector.js +27 -27
  1292. package/public/spice-console/lib/DataLogger.js +197 -197
  1293. package/public/spice-console/lib/GenericObjectPool.js +152 -152
  1294. package/public/spice-console/lib/GlobalPool.js +114 -114
  1295. package/public/spice-console/lib/ImageUncompressor.js +138 -138
  1296. package/public/spice-console/lib/IntegrationBenchmark.js +64 -64
  1297. package/public/spice-console/lib/PacketWorkerIdentifier.js +107 -107
  1298. package/public/spice-console/lib/SyncAsyncHandler.js +46 -46
  1299. package/public/spice-console/lib/base64.js +298 -298
  1300. package/public/spice-console/lib/biginteger.js +1640 -1640
  1301. package/public/spice-console/lib/bowser.js +276 -276
  1302. package/public/spice-console/lib/decoder/dixie.js +7930 -7930
  1303. package/public/spice-console/lib/decoder/jmuxer.js +2815 -2815
  1304. package/public/spice-console/lib/displayRouter.js +83 -83
  1305. package/public/spice-console/lib/encrypt.js +191 -191
  1306. package/public/spice-console/lib/flipper.js +39 -39
  1307. package/public/spice-console/lib/graphic.js +1230 -1230
  1308. package/public/spice-console/lib/graphicdebug.js +223 -223
  1309. package/public/spice-console/lib/images/jsquic_family.js +83 -83
  1310. package/public/spice-console/lib/images/jsquic_rgba.js +342 -342
  1311. package/public/spice-console/lib/images/jsquic_uncompress.js +529 -529
  1312. package/public/spice-console/lib/images/lz.js +717 -717
  1313. package/public/spice-console/lib/images/png.js +275 -275
  1314. package/public/spice-console/lib/jgestures.min.js +43 -43
  1315. package/public/spice-console/lib/jquery-2.0.3.js +8829 -8829
  1316. package/public/spice-console/lib/jquery-mousewheel.js +83 -83
  1317. package/public/spice-console/lib/jquery-visibility.min.js +1 -1
  1318. package/public/spice-console/lib/jsbn.js +578 -578
  1319. package/public/spice-console/lib/jsbn2.js +675 -675
  1320. package/public/spice-console/lib/lodash.4.0.0.min.js +136 -136
  1321. package/public/spice-console/lib/modernizr.js +39 -39
  1322. package/public/spice-console/lib/pixastic.js +3244 -3244
  1323. package/public/spice-console/lib/prettyprint.js +794 -794
  1324. package/public/spice-console/lib/prng4.js +64 -64
  1325. package/public/spice-console/lib/queue.js +259 -259
  1326. package/public/spice-console/lib/rasterEngine.js +1024 -1024
  1327. package/public/spice-console/lib/rng.js +87 -87
  1328. package/public/spice-console/lib/runqueue.js +103 -103
  1329. package/public/spice-console/lib/sha1.js +124 -124
  1330. package/public/spice-console/lib/stuckkeyshandler.js +122 -122
  1331. package/public/spice-console/lib/timelapsedetector.js +62 -62
  1332. package/public/spice-console/lib/utils.js +327 -327
  1333. package/public/spice-console/lib/virtualjoystick.js +370 -370
  1334. package/public/spice-console/network/busconnection.js +195 -195
  1335. package/public/spice-console/network/clusternodechooser.js +49 -49
  1336. package/public/spice-console/network/connectioncontrol.js +60 -60
  1337. package/public/spice-console/network/packetcontroller.js +62 -62
  1338. package/public/spice-console/network/packetextractor.js +73 -73
  1339. package/public/spice-console/network/packetlinkfactory.js +64 -64
  1340. package/public/spice-console/network/packetreassembler.js +77 -77
  1341. package/public/spice-console/network/reassemblerfactory.js +39 -39
  1342. package/public/spice-console/network/sizedefiner.js +86 -86
  1343. package/public/spice-console/network/socket.js +120 -120
  1344. package/public/spice-console/network/socketqueue.js +95 -95
  1345. package/public/spice-console/network/websocketwrapper.js +75 -75
  1346. package/public/spice-console/process/busprocess.js +309 -309
  1347. package/public/spice-console/process/cursorprocess.js +111 -111
  1348. package/public/spice-console/process/displaypreprocess.js +152 -152
  1349. package/public/spice-console/process/displayprocess.js +210 -210
  1350. package/public/spice-console/process/inputprocess.js +203 -203
  1351. package/public/spice-console/process/mainprocess.js +78 -78
  1352. package/public/spice-console/process/playbackprocess.js +233 -233
  1353. package/public/spice-console/run.js +187 -187
  1354. package/public/spice-console/spiceobjects/generated/protocol.js +538 -538
  1355. package/public/spice-console/spiceobjects/spiceobjects.js +3488 -3488
  1356. package/public/spice-console/swcanvas/swcanvas.js +82 -82
  1357. package/public/spice-console/tools/generate.php +269 -269
  1358. package/public/spice-console/tools/generateKeyboardLayout.php +63 -63
  1359. package/public/spice-console/tools/generateSpiceObject.php +81 -81
  1360. package/store/main/actions.ts +8 -8
  1361. package/store/main/getters.ts +7 -7
  1362. package/store/main/lib/interfaces.ts +15 -15
  1363. package/store/main/store.ts +12 -12
  1364. package/store/storage/device/lib/models/interfaces.ts +26 -26
  1365. package/store/tasks/actions.ts +134 -134
  1366. package/store/tasks/getters.ts +25 -25
  1367. package/store/tasks/lib/models/enums.ts +9 -9
  1368. package/store/tasks/lib/models/interfaces.ts +18 -18
  1369. package/store/tasks/mappers/recentTasks.ts +90 -90
  1370. package/store/tasks/mappers/tasks.ts +45 -45
  1371. package/store/tasks/mutations.ts +58 -58
  1372. package/store/tasks/state.ts +16 -16
  1373. package/store/tasks/store.ts +12 -12
  1374. package/tsconfig.json +4 -4
@@ -1,264 +1,264 @@
1
- <svg width="38" height="3036" viewBox="0 0 38 3036" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_2062_6492)">
3
- <path d="M34 31H4C3.73478 31 3.48043 30.8946 3.29289 30.7071C3.10536 30.5196 3 30.2652 3 30V8C3 7.73478 3.10536 7.48043 3.29289 7.29289C3.48043 7.10536 3.73478 7 4 7H34C34.2652 7 34.5196 7.10536 34.7071 7.29289C34.8946 7.48043 35 7.73478 35 8V30C35 30.2652 34.8946 30.5196 34.7071 30.7071C34.5196 30.8946 34.2652 31 34 31ZM5 29H33V9H5V29Z" fill="#FAFAFA"/>
4
- <path d="M13.8498 15V22.4H12.2698V19.34H8.8998V22.4H7.2998V15H8.8998V17.91H12.2698V15H13.8498ZM15.7398 15H18.3998C20.8898 15 22.6598 16.53 22.6598 18.69C22.6598 20.85 20.8898 22.4 18.3998 22.4H15.7398V15ZM18.6098 21C19.2092 21 19.784 20.7619 20.2079 20.3381C20.6317 19.9142 20.8698 19.3394 20.8698 18.74C20.8698 18.1406 20.6317 17.5658 20.2079 17.1419C19.784 16.7181 19.2092 16.48 18.6098 16.48H17.3398V21H18.6098ZM24.0798 15H26.7498C29.2298 15 30.9998 16.53 30.9998 18.69C30.9998 20.85 29.2298 22.4 26.7498 22.4H24.0798V15ZM26.9998 21C27.5992 21 28.174 20.7619 28.5979 20.3381C29.0217 19.9142 29.2598 19.3394 29.2598 18.74C29.2598 18.1406 29.0217 17.5658 28.5979 17.1419C28.174 16.7181 27.5992 16.48 26.9998 16.48H25.6798V21H26.9998Z" fill="#FAFAFA"/>
5
- <path d="M34 69H4C3.73478 69 3.48043 68.8946 3.29289 68.7071C3.10536 68.5196 3 68.2652 3 68V46C3 45.7348 3.10536 45.4804 3.29289 45.2929C3.48043 45.1054 3.73478 45 4 45H34C34.2652 45 34.5196 45.1054 34.7071 45.2929C34.8946 45.4804 35 45.7348 35 46V68C35 68.2652 34.8946 68.5196 34.7071 68.7071C34.5196 68.8946 34.2652 69 34 69ZM5 67H33V47H5V67Z" fill="#FAFAFA"/>
6
- <path d="M17.9198 54.64V56.73H22.7598V58.59H17.9198V62.4H15.8398V52.78H23.2498V54.64H17.9198Z" fill="#FAFAFA"/>
7
- <path d="M9 93.9999C10.7077 94.4126 12.4472 94.6803 14.2 94.7999C14.662 94.2388 15.2421 93.7866 15.8989 93.4754C16.5558 93.1643 17.2732 93.0019 18 92.9999H19C15.6324 93.0849 12.2686 92.7149 9 91.8999V93.9999ZM15 101H13V100.6C11.6476 100.439 10.3101 100.172 9 99.7999V102C11.6292 102.585 14.3078 102.92 17 103V101H15Z" fill="#FAFAFA"/>
8
- <path d="M17.1 109C11.1 108.8 7.5 107.7 7 107V83.1C7.5 82.3 11.9 81 19 81C25.9 81 30.2 82.2 30.9 83C30.2 83.8 25.9 85 19 85C15.6324 85.085 12.2686 84.715 9 83.9V86C12.2889 86.6839 15.6408 87.0191 19 87C20.1 87 27.4 86.9 31 85.3V90.9C30.5 91.7 26.2 93 19 93H28C28.8057 92.9974 29.5983 93.2041 30.3 93.6C30.5 93.5 30.8 93.4 31 93.3V94C31.6336 94.4537 32.1469 95.0552 32.4955 95.7523C32.844 96.4493 33.0172 97.2209 33 98V83C33 79.1 20.4 79 19 79C17.6 79 5 79.1 5 83V107C5 110.4 14.7 110.9 18 111C17.5599 110.406 17.2529 109.724 17.1 109Z" fill="#FAFAFA"/>
9
- <path d="M23 105V109H22C21.8664 109.009 21.7324 108.989 21.6071 108.942C21.4818 108.895 21.368 108.821 21.2733 108.727C21.1786 108.632 21.1052 108.518 21.0581 108.393C21.011 108.268 20.9912 108.134 21 108V97H28C28.1336 96.9912 28.2676 97.011 28.3929 97.0581C28.5182 97.1052 28.632 97.1786 28.7267 97.2733C28.8214 97.368 28.8948 97.4818 28.9419 97.6071C28.989 97.7324 29.0088 97.8664 29 98V106H31V98C31 97.2044 30.6839 96.4413 30.1213 95.8787C29.5587 95.3161 28.7956 95 28 95H18C17.2044 95 16.4413 95.3161 15.8787 95.8787C15.3161 96.4413 15 97.2044 15 98V99H17V98C16.9912 97.8664 17.011 97.7324 17.0581 97.6071C17.1052 97.4818 17.1786 97.368 17.2733 97.2733C17.368 97.1786 17.4818 97.1052 17.6071 97.0581C17.7324 97.011 17.8664 96.9912 18 97H19V108C19 108.796 19.3161 109.559 19.8787 110.121C20.4413 110.684 21.2044 111 22 111H32C32.7956 111 33.5587 110.684 34.1213 110.121C34.6839 109.559 35 108.796 35 108V105H23ZM33 108C33.0088 108.134 32.989 108.268 32.9419 108.393C32.8948 108.518 32.8214 108.632 32.7267 108.727C32.632 108.821 32.5182 108.895 32.3929 108.942C32.2676 108.989 32.1336 109.009 32 109H25V107H33V108Z" fill="#FAFAFA"/>
10
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.7257 137.434C30.0964 137.434 32.0183 139.355 32.0183 141.726C32.0183 144.097 30.0964 146.019 27.7257 146.019C27.0429 146.019 26.3979 145.86 25.825 145.576C25.8228 145.575 25.8207 145.574 25.8185 145.573C25.4809 145.405 25.1681 145.194 24.8876 144.947C24.8417 144.906 24.7967 144.865 24.7526 144.823C24.7316 144.802 24.7109 144.782 24.6904 144.762C24.6894 144.761 24.6885 144.76 24.6875 144.759C24.6321 144.703 24.5782 144.646 24.5259 144.588C24.1371 144.153 23.4698 144.116 23.0354 144.505C22.601 144.894 22.564 145.561 22.9528 145.996C23.4926 146.599 24.1455 147.099 24.879 147.464C24.8811 147.465 24.8831 147.466 24.8852 147.467C25.7412 147.891 26.7059 148.13 27.7257 148.13C31.2623 148.13 34.1294 145.263 34.1294 141.726C34.1294 138.19 31.2623 135.323 27.7257 135.323C24.8048 135.323 23.0514 137.297 21.6311 138.897C21.6168 138.913 21.6025 138.929 21.5883 138.945C21.2012 139.381 21.2407 140.049 21.6767 140.436C22.1126 140.823 22.7797 140.783 23.1668 140.347C24.6892 138.633 25.8533 137.434 27.7257 137.434Z" fill="#E9EAEC"/>
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.378 136.214C21.7951 136.214 21.3225 136.686 21.3225 137.269V139.646C21.3225 140.229 21.7951 140.702 22.378 140.702H24.755C25.338 140.702 25.8105 140.229 25.8105 139.646C25.8105 139.063 25.338 138.591 24.755 138.591H23.4336V137.269C23.4336 136.686 22.961 136.214 22.378 136.214Z" fill="#E9EAEC"/>
12
- <path d="M7.81849 122.207C7.62392 122.092 7.51293 122.002 7.45086 121.942L7.38894 124.357C8.02293 124.644 8.77879 124.89 9.61069 125.098C11.8994 125.67 15.0053 126.013 18.3969 126.013C21.7884 126.013 24.8943 125.67 27.1831 125.098C28.015 124.89 28.7708 124.644 29.4048 124.357V122.011C29.3941 121.996 29.3751 121.973 29.3429 121.942C29.2808 122.002 29.1698 122.092 28.9753 122.207C28.4901 122.494 27.7179 122.788 26.671 123.05C24.5936 123.569 21.6678 123.902 18.3969 123.902C15.1259 123.902 12.2001 123.569 10.1227 123.05C9.07589 122.788 8.30363 122.494 7.81849 122.207Z" fill="#E9EAEC"/>
13
- <path d="M29.4793 131.701C29.6345 132.091 30.0152 132.366 30.4604 132.366C31.0433 132.366 31.5159 131.894 31.5159 131.311V129.32C31.5159 130 31.1612 130.524 30.7225 130.917C30.5544 131.068 30.3746 131.199 30.1992 131.311C30.1488 131.343 30.0988 131.374 30.0495 131.403C29.8737 131.507 29.6831 131.606 29.4793 131.701Z" fill="#E9EAEC"/>
14
- <path d="M7.38894 131.735C7.15699 131.63 6.94136 131.519 6.74428 131.403C6.71744 131.387 6.69037 131.371 6.66315 131.354L6.59794 131.313C6.40916 131.193 6.21092 131.048 6.02711 130.877C5.6116 130.491 5.27783 129.979 5.27783 129.32V136.699V144.058C5.27783 144.725 5.6207 145.242 6.04402 145.63C6.24759 145.817 6.4689 145.973 6.67756 146.1L6.70399 146.116L6.74429 146.141C6.85698 146.207 6.97573 146.272 7.10013 146.335C7.44528 146.509 7.83308 146.669 8.2542 146.815C8.67511 146.962 9.13022 147.094 9.61069 147.215C11.8994 147.787 15.0053 148.129 18.3969 148.129C18.9798 148.129 19.4524 147.657 19.4524 147.074C19.4524 146.491 18.9798 146.018 18.3969 146.018C18.2066 146.018 18.0174 146.017 17.8295 146.015L17.8198 146.015C14.6836 145.977 11.9052 145.634 9.94168 145.12C9.19937 144.926 8.60701 144.716 8.16705 144.507C8.03873 144.446 7.92337 144.385 7.82104 144.325L7.77798 144.299C7.60932 144.196 7.50951 144.115 7.45152 144.059C7.41896 144.027 7.39974 144.004 7.38894 143.989V139.114C7.48819 139.159 7.59006 139.203 7.69431 139.246C8.10887 139.415 8.56427 139.568 9.04792 139.706C11.025 140.267 13.7205 140.64 16.7173 140.742C17.2999 140.762 17.7883 140.306 17.8082 139.723C17.828 139.14 17.3718 138.652 16.7891 138.632C16.6554 138.628 16.5224 138.622 16.3903 138.617L16.3613 138.615C13.5788 138.494 11.1743 138.131 9.496 137.637C8.70604 137.405 8.12956 137.158 7.7584 136.928L7.76246 136.93C7.74418 136.919 7.72639 136.908 7.70908 136.896L7.70575 136.894L7.68177 136.878L7.64066 136.85L7.63216 136.844C7.5182 136.764 7.45286 136.703 7.41617 136.663L7.41399 136.661L7.40329 136.649C7.39753 136.642 7.3928 136.636 7.38894 136.631C7.38095 136.62 7.37529 136.61 7.37529 136.61L7.37609 136.612L7.37394 136.607L7.37529 136.61C7.37529 136.61 7.38095 136.62 7.38894 136.631V131.735Z" fill="#E9EAEC"/>
15
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.74428 131.403C6.94136 131.519 7.15699 131.63 7.38894 131.735C7.51967 131.795 7.65534 131.852 7.7955 131.908C8.33729 132.123 8.95 132.312 9.61067 132.477C11.8994 133.049 15.0053 133.392 18.3969 133.392C21.7884 133.392 24.8944 133.049 27.1831 132.477C28.0478 132.261 28.8304 132.003 29.4793 131.701C29.6831 131.606 29.8737 131.507 30.0495 131.403C30.0988 131.374 30.1488 131.343 30.1992 131.311C30.3746 131.199 30.5544 131.068 30.7225 130.917C31.1612 130.524 31.5159 130 31.5159 129.32V121.942C31.5159 120.922 30.7146 120.252 30.0495 119.859C29.3137 119.424 28.3193 119.069 27.1831 118.785C24.8943 118.213 21.7884 117.87 18.3969 117.87C15.0053 117.87 11.8994 118.213 9.61069 118.785C8.47445 119.069 7.48006 119.424 6.7443 119.859C6.0792 120.252 5.27783 120.922 5.27783 121.942V129.32C5.27783 129.979 5.6116 130.491 6.02711 130.877C6.21092 131.048 6.40916 131.193 6.59794 131.313L6.66315 131.354C6.69037 131.371 6.71744 131.387 6.74428 131.403ZM7.38894 129.251V124.357L7.45086 121.942C7.51293 121.881 7.62392 121.791 7.81849 121.676C8.30363 121.39 9.07589 121.095 10.1227 120.833C12.2001 120.314 15.1259 119.981 18.3969 119.981C21.6678 119.981 24.5936 120.314 26.671 120.833C27.7179 121.095 28.4901 121.39 28.9753 121.676C29.1698 121.791 29.2808 121.881 29.3429 121.942C29.3751 121.973 29.3941 121.996 29.4048 122.011V124.357V129.251C29.4138 129.239 29.4171 129.233 29.4171 129.233L29.4157 129.237C29.4205 129.23 29.4223 129.227 29.4223 129.227C29.4223 129.227 29.4089 129.251 29.4056 129.299L29.4048 129.32C29.4048 129.313 29.4051 129.305 29.4056 129.299L29.4048 129.251L29.3984 129.26L29.3926 129.266C29.3279 129.343 29.1867 129.466 28.9221 129.616L28.9154 129.62C28.4276 129.896 27.6758 130.178 26.671 130.429C24.5936 130.948 21.6678 131.281 18.3969 131.281C17.9751 131.281 17.559 131.275 17.1497 131.264L17.1294 131.264C16.7849 131.255 16.4453 131.242 16.1111 131.225C15.9649 131.218 15.8198 131.21 15.6757 131.202C13.5152 131.074 11.6034 130.799 10.1227 130.429C9.07592 130.167 8.30365 129.872 7.81852 129.585C7.52312 129.411 7.42038 129.294 7.38894 129.251Z" fill="#E9EAEC"/>
16
- <path d="M21 175H25V177H21V175ZM21 171H25V173H21V171ZM13 167H17V169H13V167ZM13 171H17V173H13V171ZM13 175H17V177H13V175Z" fill="#FAFAFA"/>
17
- <path d="M21.94 167H21V169H23.94L21.94 167Z" fill="#FAFAFA"/>
18
- <path d="M29.85 172.09L29 172.94V185H11C10.4696 185 9.96086 184.789 9.58579 184.414C9.21071 184.039 9 183.53 9 183V162.44C9.60419 162.803 10.2951 162.997 11 163H18.2C17.9175 162.369 17.8818 161.656 18.1 161H11C10.4696 161 9.96086 160.789 9.58579 160.414C9.21071 160.039 9 159.53 9 159C9 158.47 9.21071 157.961 9.58579 157.586C9.96086 157.211 10.4696 157 11 157H23V155H11C9.93913 155 8.92172 155.421 8.17157 156.172C7.42143 156.922 7 157.939 7 159V183C7 184.061 7.42143 185.078 8.17157 185.828C8.92172 186.579 9.93913 187 11 187H30C30.2652 187 30.5196 186.895 30.7071 186.707C30.8946 186.52 31 186.265 31 186V170.94L29.85 172.09Z" fill="#FAFAFA"/>
19
- <path d="M20.1799 162.41C20.07 162.302 19.9948 162.164 19.9642 162.013C19.9335 161.862 19.9488 161.706 20.008 161.564C20.0672 161.422 20.1676 161.301 20.2963 161.216C20.425 161.132 20.576 161.088 20.7299 161.09H24.9999V153H31.9199V161.09H36.1299C36.2838 161.088 36.4349 161.132 36.5636 161.216C36.6923 161.301 36.7927 161.422 36.8519 161.564C36.9111 161.706 36.9263 161.862 36.8957 162.013C36.865 162.164 36.7899 162.302 36.6799 162.41L28.4199 170.67L20.1799 162.41Z" fill="#0091DA"/>
20
- <mask id="mask0_2062_6492" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="191" width="36" height="36">
21
- <path d="M1 191H37V227H1V191Z" fill="white"/>
22
- </mask>
23
- <g mask="url(#mask0_2062_6492)">
24
- <path d="M33.4 199H29V201H33V221H29V223H35V200.7C35 199.8 34.3 199 33.4 199ZM23 199H15V201H23V199ZM5 208.2V201H9V199H4.8C3.8 199 3 199.7 3 200.7V209.2L5 208.2Z" fill="white"/>
25
- <path d="M25.3 195H12.7C11.8 195 11 195.8 11 196.7V205.5L13 206.5V197H25V221H22.7L21.1 223H27V196.7C27 195.8 26.2 195 25.3 195Z" fill="white"/>
26
- <path d="M6.6 224.1L3.7 220.4L1.5 220.9L5.7 226.1L6.6 224.1Z" fill="#78BE20"/>
27
- <path d="M5.50029 212.2L9.80029 210.1V207.9L3.80029 210.8L5.50029 212.2ZM11.8003 207.9V210.1L16.1003 212.2L17.9003 210.8L11.8003 207.9Z" fill="#00C1D5"/>
28
- <path d="M3.2001 218.4L4.3001 213.8L2.5001 212.4L1.1001 218.9L3.2001 218.4Z" fill="#3C7AD7"/>
29
- <path d="M13.2 225H8.4L7.5 227H14.1L13.2 225Z" fill="#00C1D5"/>
30
- <path d="M17.3003 213.8L18.4003 218.4L20.6003 218.9L19.1003 212.4L17.3003 213.8Z" fill="#3C7AD7"/>
31
- <path d="M17.9 220.4L15 224.1L15.9 226.1L20.1 220.9L17.9 220.4Z" fill="#78BE20"/>
32
- </g>
33
- <path d="M32.6 250.2L25 259.8L24.4 258.6L31.2 250L32.6 250.2ZM9.8 258.4L3 249.8L1.6 250.2L9.2 259.8L9.8 258.4ZM1 248.2L3.8 236.4L5 237.2L2.4 247.8L1 248.2ZM33 248.2L30.4 236.4L29.2 237.2L31.6 247.8L33 248.2ZM22.6 259.2H11.6L11 260.6H23.2L22.6 259.2ZM28 235.6L18 230.8V229.4L29 234.6L28 235.6ZM16 229.4L5 234.6L6.2 235.6L16.2 230.8V229.4H16ZM22.2 256.4H11.8L5.4 248.2L7.8 238L17 233.6L26.4 238.2L28.8 248.4L22.2 256.4ZM12.6 255H21.6L27.2 248L25.2 239.2L17 235L8.8 239L6.8 247.8L12.6 255Z" fill="white"/>
34
- <path d="M30 293H22C21.7348 293 21.4804 292.895 21.2929 292.707C21.1054 292.52 21 292.265 21 292V270C21 269.735 21.1054 269.48 21.2929 269.293C21.4804 269.105 21.7348 269 22 269H30C30.2652 269 30.5196 269.105 30.7071 269.293C30.8946 269.48 31 269.735 31 270V292C31 292.265 30.8946 292.52 30.7071 292.707C30.5196 292.895 30.2652 293 30 293ZM23 291H29V271H23V291ZM16 293H8C7.73478 293 7.48043 292.895 7.29289 292.707C7.10536 292.52 7 292.265 7 292V270C7 269.735 7.10536 269.48 7.29289 269.293C7.48043 269.105 7.73478 269 8 269H16C16.2652 269 16.5196 269.105 16.7071 269.293C16.8946 269.48 17 269.735 17 270V292C17 292.265 16.8946 292.52 16.7071 292.707C16.5196 292.895 16.2652 293 16 293ZM9 291H15V271H9V291Z" fill="#B68300"/>
35
- <path d="M30 332C29.7348 332 29.4804 331.895 29.2929 331.707C29.1054 331.52 29 331.265 29 331V327H25C24.7348 327 24.4804 326.895 24.2929 326.707C24.1054 326.52 24 326.265 24 326C24 325.735 24.1054 325.48 24.2929 325.293C24.4804 325.105 24.7348 325 25 325H31V331C31 331.265 30.8946 331.52 30.7071 331.707C30.5196 331.895 30.2652 332 30 332ZM13 313H7V307C7 306.735 7.10536 306.48 7.29289 306.293C7.48043 306.105 7.73478 306 8 306C8.26522 306 8.51957 306.105 8.70711 306.293C8.89464 306.48 9 306.735 9 307V311H13C13.2652 311 13.5196 311.105 13.7071 311.293C13.8946 311.48 14 311.735 14 312C14 312.265 13.8946 312.52 13.7071 312.707C13.5196 312.895 13.2652 313 13 313Z" fill="#FAFAFA"/>
36
- <path d="M30 332C29.7348 332 29.4804 331.895 29.2929 331.707C29.1054 331.52 29 331.265 29 331V327H25C24.7348 327 24.4804 326.895 24.2929 326.707C24.1054 326.52 24 326.265 24 326C24 325.735 24.1054 325.48 24.2929 325.293C24.4804 325.105 24.7348 325 25 325H31V331C31 331.265 30.8946 331.52 30.7071 331.707C30.5196 331.895 30.2652 332 30 332ZM13 313H7V307C7 306.735 7.10536 306.48 7.29289 306.293C7.48043 306.105 7.73478 306 8 306C8.26522 306 8.51957 306.105 8.70711 306.293C8.89464 306.48 9 306.735 9 307V311H13C13.2652 311 13.5196 311.105 13.7071 311.293C13.8946 311.48 14 311.735 14 312C14 312.265 13.8946 312.52 13.7071 312.707C13.5196 312.895 13.2652 313 13 313Z" fill="#FAFAFA"/>
37
- <path d="M31.0001 325H29.3801C28.0566 327.282 26.0182 329.064 23.5802 330.07C21.1422 331.077 18.4404 331.253 15.8927 330.57C13.345 329.887 11.0933 328.383 9.48582 326.292C7.87839 324.2 7.00479 321.638 7.00012 319C7.00055 317.636 7.23739 316.283 7.70012 315H5.59012C4.6448 318.26 4.91587 321.752 6.35291 324.827C7.78995 327.902 10.2951 330.35 13.4022 331.716C16.5093 333.082 20.0068 333.272 23.244 332.252C26.4811 331.232 29.2374 329.071 31.0001 326.17V325ZM7.00012 313H8.62012C9.94363 310.719 11.982 308.937 14.42 307.93C16.858 306.923 19.5598 306.748 22.1076 307.431C24.6553 308.114 26.907 309.617 28.5144 311.708C30.1218 313.8 30.9955 316.362 31.0001 319C30.9997 320.364 30.7628 321.717 30.3001 323H32.4101C33.3554 319.74 33.0844 316.248 31.6473 313.173C30.2103 310.098 27.7052 307.65 24.598 306.284C21.4909 304.919 17.9934 304.728 14.7563 305.748C11.5191 306.768 8.76279 308.93 7.00012 311.83V313Z" fill="#FAFAFA"/>
38
- <path d="M25 365H23V363H21V367H25V365ZM17 359H19V361H17V359ZM17 363H19V365H17V363ZM27 359H31V361H27V359ZM10.92 359H5V347H21V353.07H23V346C23 345.735 22.8946 345.48 22.7071 345.293C22.5196 345.105 22.2652 345 22 345H4C3.73478 345 3.48043 345.105 3.29289 345.293C3.10536 345.48 3 345.735 3 346V360C3 360.265 3.10536 360.52 3.29289 360.707C3.48043 360.895 3.73478 361 4 361H10.92V359Z" fill="#FAFAFA"/>
39
- <path d="M33.92 355.07H13.92C13.6548 355.07 13.4004 355.175 13.2129 355.363C13.0254 355.55 12.92 355.805 12.92 356.07V363H7C6.73478 363 6.48043 363.105 6.29289 363.293C6.10536 363.48 6 363.735 6 364C6 364.265 6.10536 364.52 6.29289 364.707C6.48043 364.895 6.73478 365 7 365H12.92V370.07C12.92 370.335 13.0254 370.59 13.2129 370.777C13.4004 370.965 13.6548 371.07 13.92 371.07H33.92C34.1852 371.07 34.4396 370.965 34.6271 370.777C34.8146 370.59 34.92 370.335 34.92 370.07V356.07C34.92 355.805 34.8146 355.55 34.6271 355.363C34.4396 355.175 34.1852 355.07 33.92 355.07ZM32.92 369.07H14.92V357.07H32.92V369.07Z" fill="#FAFAFA"/>
40
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.5001 381.981C6.21234 381.978 5.97812 382.212 5.98176 382.5L6.13 394.21C6.13686 394.753 6.35535 395.271 6.73886 395.654L18.1522 407.068C18.5565 407.472 19.1523 407.829 19.7233 407.963C20.2784 408.093 20.6614 407.992 20.9235 407.73L31.73 396.923C31.9921 396.661 32.0933 396.278 31.963 395.723C31.829 395.152 31.4724 394.556 31.0681 394.152L19.6548 382.738C19.2713 382.355 18.7531 382.136 18.2108 382.13L6.5001 381.981ZM3.87082 382.526C3.85216 381.052 5.05229 379.852 6.52682 379.87L18.2375 380.019C19.3304 380.032 20.3747 380.473 21.1475 381.246L32.5609 392.659C33.2091 393.307 33.7841 394.243 34.0183 395.24C34.2561 396.254 34.162 397.477 33.2228 398.416L22.4163 409.222C21.4771 410.161 20.2543 410.256 19.2409 410.018C18.2432 409.784 17.3077 409.209 16.6594 408.56L5.24608 397.147C4.4732 396.374 4.03289 395.33 4.01906 394.237L3.87082 382.526Z" fill="#E9EAEC"/>
41
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4854 387.963C10.4854 387.146 11.147 386.485 11.9631 386.485H11.9772C12.7934 386.485 13.455 387.146 13.455 387.963C13.455 388.779 12.7934 389.44 11.9772 389.44H11.9631C11.147 389.44 10.4854 388.779 10.4854 387.963Z" fill="#E9EAEC"/>
42
- <path d="M11.5198 426.95C12.3096 426.95 12.9498 426.31 12.9498 425.52C12.9498 424.73 12.3096 424.09 11.5198 424.09C10.7301 424.09 10.0898 424.73 10.0898 425.52C10.0898 426.31 10.7301 426.95 11.5198 426.95Z" fill="#FAFAFA"/>
43
- <path d="M25.0002 429.09V427H22.9102L25.0002 429.09Z" fill="#FAFAFA"/>
44
- <path d="M32.92 434.2L31.73 433H28.9L31.52 435.62L21.62 445.52L7 430.91V421H16.92L19 423.08V420.27L18.33 419.6C18.146 419.412 17.9267 419.263 17.6847 419.16C17.4428 419.057 17.1829 419.002 16.92 419H7C6.46957 419 5.96086 419.211 5.58579 419.586C5.21071 419.961 5 420.47 5 421V430.92C5.00223 431.45 5.21441 431.957 5.59 432.33L20.19 446.93C20.3757 447.116 20.5963 447.263 20.8391 447.364C21.0819 447.465 21.3422 447.517 21.605 447.517C21.8678 447.517 22.1281 447.465 22.3709 447.364C22.6137 447.263 22.8343 447.116 23.02 446.93L32.92 437.03C33.106 436.844 33.2535 436.624 33.3541 436.381C33.4548 436.138 33.5066 435.878 33.5066 435.615C33.5066 435.352 33.4548 435.092 33.3541 434.849C33.2535 434.606 33.106 434.386 32.92 434.2Z" fill="#FAFAFA"/>
45
- <path d="M37 421H31V415H27V421H21V425H27V431H31V425H37V421Z" fill="#59A011"/>
46
- <path d="M11.5198 464.95C12.3096 464.95 12.9498 464.31 12.9498 463.52C12.9498 462.73 12.3096 462.09 11.5198 462.09C10.7301 462.09 10.0898 462.73 10.0898 463.52C10.0898 464.31 10.7301 464.95 11.5198 464.95Z" fill="#FAFAFA"/>
47
- <path d="M25.0002 467.09V467.06H24.9702L25.0002 467.09Z" fill="#FAFAFA"/>
48
- <path d="M32.92 472.2L30.81 470.09L29.81 471.17C29.6956 471.296 29.5682 471.41 29.43 471.51L31.54 473.62L21.64 483.52L7 468.91V459H16.92L17 459.08V457H7C6.46957 457 5.96086 457.211 5.58579 457.586C5.21071 457.961 5 458.47 5 459V468.92C5.00223 469.45 5.21441 469.957 5.59 470.33L20.19 484.93C20.3757 485.116 20.5963 485.263 20.8391 485.364C21.0819 485.465 21.3422 485.517 21.605 485.517C21.8678 485.517 22.1281 485.465 22.3709 485.364C22.6137 485.263 22.8343 485.116 23.02 484.93L32.92 475.03C33.106 474.844 33.2535 474.624 33.3541 474.381C33.4548 474.138 33.5066 473.878 33.5066 473.615C33.5066 473.352 33.4548 473.092 33.3541 472.849C33.2535 472.606 33.106 472.386 32.92 472.2Z" fill="#FAFAFA"/>
49
- <path d="M27 453.78V458.06H19V465.06H27V469.26C27.0006 469.415 27.0474 469.566 27.1344 469.695C27.2214 469.823 27.3446 469.923 27.4884 469.98C27.6323 470.038 27.7901 470.052 27.9417 470.02C28.0934 469.988 28.2321 469.911 28.34 469.8L36.18 461.52L28.34 453.24C28.2321 453.129 28.0934 453.052 27.9417 453.02C27.7901 452.988 27.6323 453.002 27.4884 453.059C27.3446 453.117 27.2214 453.217 27.1344 453.345C27.0474 453.474 27.0006 453.625 27 453.78Z" fill="#0091DA"/>
50
- <path d="M11.5198 502.95C12.3096 502.95 12.9498 502.31 12.9498 501.52C12.9498 500.73 12.3096 500.09 11.5198 500.09C10.7301 500.09 10.0898 500.73 10.0898 501.52C10.0898 502.31 10.7301 502.95 11.5198 502.95Z" fill="#FAFAFA"/>
51
- <path d="M32.92 510.2L28.14 505.42L26.72 506.82L31.51 511.62L21.61 521.52L7 506.91V497H16.92L21.07 501.16L22.5 499.77L18.33 495.6C18.146 495.412 17.9267 495.263 17.6847 495.16C17.4428 495.057 17.1829 495.002 16.92 495H7C6.46957 495 5.96086 495.211 5.58579 495.586C5.21071 495.961 5 496.47 5 497V506.92C5.00223 507.45 5.21441 507.957 5.59 508.33L20.19 522.93C20.3757 523.116 20.5963 523.263 20.8391 523.364C21.0819 523.465 21.3422 523.517 21.605 523.517C21.8678 523.517 22.1281 523.465 22.3709 523.364C22.6137 523.263 22.8343 523.116 23.02 522.93L32.92 513.03C33.106 512.844 33.2535 512.624 33.3541 512.381C33.4548 512.138 33.5066 511.878 33.5066 511.615C33.5066 511.352 33.4548 511.092 33.3541 510.849C33.2535 510.606 33.106 510.386 32.92 510.2Z" fill="#FAFAFA"/>
52
- <path d="M36.8401 494.14L34.0401 491.28L28.8501 496.35L23.6601 491.28L20.8701 494.14L25.9901 499.15L20.8701 504.16L23.6601 507.02L28.8501 501.95L34.0401 507.02L36.8401 504.16L31.7101 499.15L36.8401 494.14Z" fill="#F84E30"/>
53
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.8364 532.906C14.7152 532.247 15.8809 531.87 17.1236 531.87H20.8767C22.1194 531.87 23.285 532.247 24.1638 532.906C25.043 533.565 25.6853 534.556 25.6853 535.74V538.555C25.6853 539.138 25.2127 539.611 24.6298 539.611H13.3705C12.7875 539.611 12.3149 539.138 12.3149 538.555V535.74C12.3149 534.556 12.9573 533.565 13.8364 532.906ZM15.1031 534.595C14.6239 534.954 14.4261 535.37 14.4261 535.74V537.5H23.5742V535.74C23.5742 535.37 23.3764 534.954 22.8972 534.595C22.4176 534.235 21.7067 533.981 20.8767 533.981H17.1236C16.2935 533.981 15.5826 534.235 15.1031 534.595Z" fill="#E9EAEC"/>
54
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.9575 536.796C9.74812 536.796 8.79617 537.757 8.79617 538.908V557.908C8.79617 559.058 9.74812 560.019 10.9575 560.019H27.0422C28.2516 560.019 29.2036 559.058 29.2036 557.908V538.908C29.2036 537.757 28.2516 536.796 27.0422 536.796H24.6295C24.0465 536.796 23.5739 536.324 23.5739 535.741C23.5739 535.158 24.0465 534.685 24.6295 534.685H27.0422C29.3861 534.685 31.3147 536.56 31.3147 538.908V557.908C31.3147 560.255 29.3861 562.13 27.0422 562.13H10.9575C8.61365 562.13 6.68506 560.255 6.68506 557.908V538.908C6.68506 536.56 8.61365 534.685 10.9575 534.685H13.3702C13.9532 534.685 14.4258 535.158 14.4258 535.741C14.4258 536.324 13.9532 536.796 13.3702 536.796H10.9575Z" fill="#E9EAEC"/>
55
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.8132 545.691C25.2254 546.103 25.2254 546.771 24.8132 547.184L18.0577 553.939C17.8597 554.137 17.5912 554.248 17.3113 554.248C17.0313 554.248 16.7628 554.137 16.5649 553.939L13.1871 550.561C12.7749 550.149 12.7749 549.481 13.1871 549.069C13.5993 548.656 14.2677 548.656 14.6799 549.069L17.3113 551.7L23.3204 545.691C23.7326 545.279 24.401 545.279 24.8132 545.691Z" fill="#E9EAEC"/>
56
- <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6665 573.814C31.6665 574.397 31.1939 574.869 30.6109 574.869L26.3887 574.869C25.8058 574.869 25.3332 574.397 25.3332 573.814C25.3332 573.231 25.8058 572.758 26.3887 572.758L30.6109 572.758C31.1939 572.758 31.6665 573.231 31.6665 573.814Z" fill="#E9EAEC"/>
57
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5552 579.091C29.5552 579.674 29.0826 580.147 28.4996 580.147L26.3885 580.147C25.8055 580.147 25.333 579.674 25.333 579.091C25.333 578.508 25.8055 578.036 26.3885 578.036L28.4996 578.036C29.0826 578.036 29.5552 578.508 29.5552 579.091Z" fill="#E9EAEC"/>
58
- <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6665 584.369C31.6665 584.952 31.1939 585.425 30.6109 585.425L26.3887 585.425C25.8058 585.425 25.3332 584.952 25.3332 584.369C25.3332 583.786 25.8058 583.314 26.3887 583.314L30.6109 583.314C31.1939 583.314 31.6665 583.786 31.6665 584.369Z" fill="#E9EAEC"/>
59
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9999 579.722C19.5829 579.722 20.0554 580.195 20.0554 580.778L20.0554 591.333C20.0554 591.916 19.5829 592.389 18.9999 592.389C18.4169 592.389 17.9443 591.916 17.9443 591.333L17.9443 580.778C17.9443 580.195 18.4169 579.722 18.9999 579.722Z" fill="#E9EAEC"/>
60
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.778 573.389C14.778 571.057 16.6683 569.167 19.0002 569.167C21.3321 569.167 23.2224 571.057 23.2224 573.389V587.38C25.1345 588.714 26.3891 590.932 26.3891 593.445C26.3891 597.525 23.081 600.833 19.0002 600.833C14.9194 600.833 11.6113 597.525 11.6113 593.445C11.6113 590.932 12.8659 588.714 14.778 587.38V573.389ZM19.0002 571.278C17.8343 571.278 16.8891 572.223 16.8891 573.389V587.471C16.8891 588.164 16.5168 588.747 16.0188 589.089C14.6299 590.042 13.7224 591.637 13.7224 593.445C13.7224 596.359 16.0854 598.722 19.0002 598.722C21.9151 598.722 24.278 596.359 24.278 593.445C24.278 591.637 23.3705 590.042 21.9816 589.089C21.4836 588.747 21.1113 588.164 21.1113 587.471V573.389C21.1113 572.223 20.1662 571.278 19.0002 571.278Z" fill="#E9EAEC"/>
61
- <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0002 592.389C18.4172 592.389 17.9446 592.862 17.9446 593.444C17.9446 594.027 18.4172 594.5 19.0002 594.5C19.5831 594.5 20.0557 594.027 20.0557 593.444C20.0557 592.862 19.5831 592.389 19.0002 592.389ZM15.8335 593.444C15.8335 591.696 17.2513 590.278 19.0002 590.278C20.7491 590.278 22.1668 591.696 22.1668 593.444C22.1668 595.193 20.7491 596.611 19.0002 596.611C17.2513 596.611 15.8335 595.193 15.8335 593.444Z" fill="#E9EAEC"/>
62
- <path d="M20.6099 623L25.4699 618.14C25.6338 617.949 25.7194 617.703 25.7096 617.451C25.6999 617.199 25.5956 616.96 25.4175 616.782C25.2394 616.604 25.0007 616.5 24.749 616.49C24.4973 616.48 24.2512 616.566 24.0599 616.73L19.1999 621.54L14.3099 616.65C14.1186 616.486 13.8726 616.4 13.6209 616.41C13.3692 616.42 13.1305 616.524 12.9524 616.702C12.7743 616.88 12.6699 617.119 12.6602 617.371C12.6505 617.623 12.7361 617.869 12.8999 618.06L17.7799 623L12.9999 627.72C12.8953 627.81 12.8102 627.92 12.7502 628.044C12.6902 628.168 12.6565 628.303 12.6511 628.441C12.6458 628.579 12.669 628.716 12.7193 628.844C12.7696 628.973 12.8458 629.089 12.9433 629.187C13.0407 629.284 13.1573 629.36 13.2856 629.411C13.4139 629.461 13.5513 629.484 13.689 629.479C13.8267 629.473 13.9618 629.44 14.0859 629.38C14.21 629.32 14.3203 629.235 14.4099 629.13L19.1799 624.36L23.9199 629.1C24.1112 629.264 24.3573 629.349 24.609 629.34C24.8607 629.33 25.0994 629.226 25.2775 629.047C25.4556 628.869 25.5599 628.631 25.5696 628.379C25.5794 628.127 25.4938 627.881 25.3299 627.69L20.6099 623Z" fill="#FAFAFA"/>
63
- <path d="M19 639C15.8355 639 12.7421 638.062 10.1109 636.304C7.4797 634.545 5.42894 632.047 4.21793 629.123C3.00693 626.199 2.69008 622.982 3.30744 619.879C3.92481 616.775 5.44866 613.924 7.6863 611.686C9.92394 609.449 12.7749 607.925 15.8786 607.307C18.9823 606.69 22.1993 607.007 25.1229 608.218C28.0466 609.429 30.5454 611.48 32.3035 614.111C34.0616 616.742 35 619.836 35 623C35 627.243 33.3143 631.313 30.3137 634.314C27.3131 637.314 23.2435 639 19 639ZM19 609C16.2311 609 13.5243 609.821 11.222 611.359C8.91974 612.898 7.12532 615.084 6.06569 617.642C5.00607 620.201 4.72882 623.016 5.26901 625.731C5.80921 628.447 7.14258 630.942 9.10051 632.9C11.0584 634.857 13.553 636.191 16.2687 636.731C18.9845 637.271 21.7994 636.994 24.3576 635.934C26.9157 634.875 29.1022 633.08 30.6406 630.778C32.1789 628.476 33 625.769 33 623C33 619.287 31.525 615.726 28.8995 613.101C26.274 610.475 22.713 609 19 609Z" fill="#FAFAFA"/>
64
- <path d="M20.6099 661L25.4699 656.14C25.6338 655.949 25.7194 655.703 25.7096 655.451C25.6999 655.199 25.5956 654.96 25.4175 654.782C25.2394 654.604 25.0007 654.5 24.749 654.49C24.4973 654.48 24.2512 654.566 24.0599 654.73L19.1999 659.54L14.3099 654.65C14.1186 654.486 13.8726 654.4 13.6209 654.41C13.3692 654.42 13.1305 654.524 12.9524 654.702C12.7743 654.88 12.6699 655.119 12.6602 655.371C12.6505 655.623 12.7361 655.869 12.8999 656.06L17.7799 661L12.9999 665.72C12.8953 665.81 12.8102 665.92 12.7502 666.044C12.6902 666.168 12.6565 666.303 12.6511 666.441C12.6458 666.579 12.669 666.716 12.7193 666.844C12.7696 666.973 12.8458 667.089 12.9433 667.187C13.0407 667.284 13.1573 667.36 13.2856 667.411C13.4139 667.461 13.5513 667.484 13.689 667.479C13.8267 667.473 13.9618 667.44 14.0859 667.38C14.21 667.32 14.3203 667.235 14.4099 667.13L19.1799 662.36L23.9199 667.1C24.1112 667.264 24.3573 667.349 24.609 667.34C24.8607 667.33 25.0994 667.226 25.2775 667.047C25.4556 666.869 25.5599 666.631 25.5696 666.379C25.5794 666.127 25.4938 665.881 25.3299 665.69L20.6099 661Z" fill="#CCCCCC"/>
65
- <path d="M19 677C15.8355 677 12.7421 676.062 10.1109 674.304C7.4797 672.545 5.42894 670.047 4.21793 667.123C3.00693 664.199 2.69008 660.982 3.30744 657.879C3.92481 654.775 5.44866 651.924 7.6863 649.686C9.92394 647.449 12.7749 645.925 15.8786 645.307C18.9823 644.69 22.1993 645.007 25.1229 646.218C28.0466 647.429 30.5454 649.48 32.3035 652.111C34.0616 654.742 35 657.836 35 661C35 665.243 33.3143 669.313 30.3137 672.314C27.3131 675.314 23.2435 677 19 677ZM19 647C16.2311 647 13.5243 647.821 11.222 649.359C8.91974 650.898 7.12532 653.084 6.06569 655.642C5.00607 658.201 4.72882 661.016 5.26901 663.731C5.80921 666.447 7.14258 668.942 9.10051 670.9C11.0584 672.857 13.553 674.191 16.2687 674.731C18.9845 675.271 21.7994 674.994 24.3576 673.934C26.9157 672.875 29.1022 671.08 30.6406 668.778C32.1789 666.476 33 663.769 33 661C33 657.287 31.525 653.726 28.8995 651.101C26.274 648.475 22.713 647 19 647Z" fill="#CCCCCC"/>
66
- <path d="M20.6099 699L25.4699 694.14C25.6338 693.949 25.7194 693.703 25.7096 693.451C25.6999 693.199 25.5956 692.96 25.4175 692.782C25.2394 692.604 25.0007 692.5 24.749 692.49C24.4973 692.48 24.2512 692.566 24.0599 692.73L19.1999 697.54L14.3099 692.65C14.1186 692.486 13.8726 692.4 13.6209 692.41C13.3692 692.42 13.1305 692.524 12.9524 692.702C12.7743 692.88 12.6699 693.119 12.6602 693.371C12.6505 693.623 12.7361 693.869 12.8999 694.06L17.7799 699L12.9999 703.72C12.8953 703.81 12.8102 703.92 12.7502 704.044C12.6902 704.168 12.6565 704.303 12.6511 704.441C12.6458 704.579 12.669 704.716 12.7193 704.844C12.7696 704.973 12.8458 705.089 12.9433 705.187C13.0407 705.284 13.1573 705.36 13.2856 705.411C13.4139 705.461 13.5513 705.484 13.689 705.479C13.8267 705.473 13.9618 705.44 14.0859 705.38C14.21 705.32 14.3203 705.235 14.4099 705.13L19.1799 700.36L23.9199 705.1C24.1112 705.264 24.3573 705.349 24.609 705.34C24.8607 705.33 25.0994 705.226 25.2775 705.047C25.4556 704.869 25.5599 704.631 25.5696 704.379C25.5794 704.127 25.4938 703.881 25.3299 703.69L20.6099 699Z" fill="#F84E30"/>
67
- <path d="M19 715C15.8355 715 12.7421 714.062 10.1109 712.304C7.4797 710.545 5.42894 708.047 4.21793 705.123C3.00693 702.199 2.69008 698.982 3.30744 695.879C3.92481 692.775 5.44866 689.924 7.6863 687.686C9.92394 685.449 12.7749 683.925 15.8786 683.307C18.9823 682.69 22.1993 683.007 25.1229 684.218C28.0466 685.429 30.5454 687.48 32.3035 690.111C34.0616 692.742 35 695.836 35 699C35 703.243 33.3143 707.313 30.3137 710.314C27.3131 713.314 23.2435 715 19 715ZM19 685C16.2311 685 13.5243 685.821 11.222 687.359C8.91974 688.898 7.12532 691.084 6.06569 693.642C5.00607 696.201 4.72882 699.016 5.26901 701.731C5.80921 704.447 7.14258 706.942 9.10051 708.9C11.0584 710.857 13.553 712.191 16.2687 712.731C18.9845 713.271 21.7994 712.994 24.3576 711.934C26.9157 710.875 29.1022 709.08 30.6406 706.778C32.1789 704.476 33 701.769 33 699C33 695.287 31.525 691.726 28.8995 689.101C26.274 686.475 22.713 685 19 685Z" fill="#F84E30"/>
68
- <path d="M20.41 737L28.7 728.71C28.8638 728.519 28.9494 728.273 28.9397 728.021C28.93 727.769 28.8256 727.53 28.6475 727.352C28.4694 727.174 28.2307 727.07 27.979 727.06C27.7274 727.051 27.4813 727.136 27.29 727.3L19 735.59L10.71 727.29C10.5217 727.102 10.2663 726.996 9.99997 726.996C9.73367 726.996 9.47828 727.102 9.28997 727.29C9.10167 727.478 8.99588 727.734 8.99588 728C8.99588 728.266 9.10167 728.522 9.28997 728.71L17.59 737L9.28997 745.29C9.18529 745.38 9.10027 745.49 9.04025 745.614C8.98022 745.738 8.94649 745.873 8.94117 746.011C8.93586 746.149 8.95906 746.286 9.00934 746.414C9.05961 746.543 9.13587 746.659 9.23332 746.757C9.33078 746.854 9.44732 746.93 9.57565 746.981C9.70398 747.031 9.84131 747.054 9.97903 747.049C10.1167 747.043 10.2519 747.01 10.3759 746.95C10.5 746.89 10.6103 746.805 10.7 746.7L19 738.41L27.29 746.7C27.4813 746.864 27.7274 746.949 27.979 746.94C28.2307 746.93 28.4694 746.826 28.6475 746.648C28.8256 746.469 28.93 746.231 28.9397 745.979C28.9494 745.727 28.8638 745.481 28.7 745.29L20.41 737Z" fill="#FAFAFA"/>
69
- <path d="M20.41 775L28.7 766.71C28.8638 766.519 28.9494 766.273 28.9397 766.021C28.93 765.769 28.8256 765.531 28.6475 765.353C28.4694 765.175 28.2307 765.07 27.979 765.06C27.7274 765.051 27.4813 765.136 27.29 765.3L19 773.59L10.71 765.29C10.5217 765.102 10.2663 764.996 9.99997 764.996C9.73367 764.996 9.47828 765.102 9.28997 765.29C9.10167 765.478 8.99588 765.734 8.99588 766C8.99588 766.266 9.10167 766.522 9.28997 766.71L17.59 775L9.28997 783.29C9.18529 783.38 9.10027 783.49 9.04025 783.614C8.98022 783.738 8.94649 783.873 8.94117 784.011C8.93586 784.149 8.95906 784.286 9.00934 784.415C9.05961 784.543 9.13587 784.659 9.23332 784.757C9.33078 784.854 9.44732 784.931 9.57565 784.981C9.70398 785.031 9.84131 785.054 9.97903 785.049C10.1167 785.044 10.2519 785.01 10.3759 784.95C10.5 784.89 10.6103 784.805 10.7 784.7L19 776.41L27.29 784.7C27.4813 784.864 27.7274 784.95 27.979 784.94C28.2307 784.93 28.4694 784.826 28.6475 784.648C28.8256 784.47 28.93 784.231 28.9397 783.979C28.9494 783.728 28.8638 783.481 28.7 783.29L20.41 775Z" fill="#F84E30"/>
70
- <path d="M21.87 806.14H8.87L14.43 800.65C14.6196 800.46 14.7262 800.203 14.7262 799.935C14.7262 799.667 14.6196 799.41 14.43 799.22C14.2404 799.03 13.9832 798.924 13.715 798.924C13.4468 798.924 13.1896 799.03 13 799.22L5 807.13L13 815C13.1883 815.187 13.4432 815.291 13.7085 815.291C13.9739 815.29 14.228 815.183 14.415 814.995C14.602 814.807 14.7065 814.552 14.7056 814.286C14.7046 814.021 14.5983 813.767 14.41 813.58L8.86 808.14H21.86C24.263 808.127 26.5733 809.066 28.2847 810.753C29.996 812.44 30.9689 814.737 30.99 817.14C30.9785 818.806 30.505 820.435 29.6222 821.848C28.7394 823.26 27.4821 824.4 25.99 825.14C25.7433 825.265 25.5563 825.482 25.4701 825.745C25.4273 825.875 25.4106 826.012 25.4209 826.148C25.4312 826.285 25.4683 826.418 25.53 826.54C25.5917 826.662 25.6769 826.771 25.7807 826.86C25.8844 826.949 26.0047 827.017 26.1347 827.06C26.3973 827.146 26.6833 827.125 26.93 827C29.1471 825.881 30.9205 824.045 31.9614 821.79C33.0024 819.536 33.2498 816.995 32.6633 814.582C32.0768 812.169 30.6909 810.025 28.7313 808.499C26.7716 806.974 24.3533 806.156 21.87 806.18V806.14Z" fill="#FAFAFA"/>
71
- <path d="M18.5802 860.63C19.3534 860.63 19.9802 860.003 19.9802 859.23C19.9802 858.457 19.3534 857.83 18.5802 857.83C17.807 857.83 17.1802 858.457 17.1802 859.23C17.1802 860.003 17.807 860.63 18.5802 860.63Z" fill="#FAFAFA"/>
72
- <path d="M25.7001 846C25.6059 845.29 25.3654 844.606 24.9936 843.994C24.6218 843.381 24.1268 842.852 23.5401 842.44C22.7148 841.875 21.7815 841.486 20.7989 841.299C19.8164 841.111 18.8056 841.129 17.8301 841.35C16.0785 841.658 14.4239 842.374 13.0001 843.44C12.8977 843.523 12.8125 843.625 12.7496 843.741C12.6866 843.856 12.647 843.983 12.6331 844.114C12.6049 844.378 12.683 844.643 12.8501 844.85C13.0172 845.057 13.2596 845.189 13.524 845.217C13.7885 845.245 14.0532 845.167 14.2601 845C15.4214 844.128 16.7707 843.539 18.2001 843.28C18.9071 843.111 19.6414 843.089 20.3572 843.217C21.0729 843.344 21.7548 843.618 22.3601 844.02C22.724 844.272 23.0318 844.597 23.2641 844.974C23.4964 845.351 23.6483 845.772 23.7101 846.21C24.0401 848.9 20.5201 849.96 18.3901 850.35L17.5701 850.5V854.86C17.5701 855.125 17.6754 855.38 17.863 855.567C18.0505 855.755 18.3049 855.86 18.5701 855.86C18.8353 855.86 19.0897 855.755 19.2772 855.567C19.4647 855.38 19.5701 855.125 19.5701 854.86V852.17C25.6101 850.79 25.8801 847.41 25.7001 846Z" fill="#FAFAFA"/>
73
- <path d="M8.14002 887L19 876.14L29.86 887H32.69L19.69 874C19.5971 873.906 19.4865 873.832 19.3646 873.781C19.2427 873.73 19.112 873.704 18.98 873.704C18.848 873.704 18.7173 873.73 18.5954 873.781C18.4736 873.832 18.363 873.906 18.27 874L5.27002 887H8.14002ZM29.86 891L19 901.86L8.14002 891H5.31002L18.31 904C18.403 904.094 18.5136 904.168 18.6354 904.219C18.7573 904.27 18.888 904.296 19.02 904.296C19.152 904.296 19.2827 904.27 19.4046 904.219C19.5265 904.168 19.6371 904.094 19.73 904L32.73 891H29.86Z" fill="#FAFAFA"/>
74
- <path d="M12 889H6C5.73478 889 5.48043 888.895 5.29289 888.707C5.10536 888.52 5 888.265 5 888V882C5 881.735 5.10536 881.48 5.29289 881.293C5.48043 881.105 5.73478 881 6 881C6.26522 881 6.51957 881.105 6.70711 881.293C6.89464 881.48 7 881.735 7 882V887H12C12.2652 887 12.5196 887.105 12.7071 887.293C12.8946 887.48 13 887.735 13 888C13 888.265 12.8946 888.52 12.7071 888.707C12.5196 888.895 12.2652 889 12 889ZM32 897C31.7348 897 31.4804 896.895 31.2929 896.707C31.1054 896.52 31 896.265 31 896V891H26C25.7348 891 25.4804 890.895 25.2929 890.707C25.1054 890.52 25 890.265 25 890C25 889.735 25.1054 889.48 25.2929 889.293C25.4804 889.105 25.7348 889 26 889H32C32.2652 889 32.5196 889.105 32.7071 889.293C32.8946 889.48 33 889.735 33 890V896C33 896.265 32.8946 896.52 32.7071 896.707C32.5196 896.895 32.2652 897 32 897Z" fill="#FAFAFA"/>
75
- <path d="M19 932C19 930.143 19.7375 928.363 21.0503 927.05C22.363 925.737 24.1435 925 26 925C26.6775 925.004 27.351 925.105 28 925.3L25.9 926.3C25.7369 926.379 25.6055 926.511 25.5272 926.674C25.4489 926.838 25.4285 927.023 25.4691 927.199C25.5098 927.376 25.6092 927.533 25.751 927.646C25.8929 927.759 26.0688 927.82 26.25 927.82C26.3682 927.822 26.4851 927.794 26.59 927.74L31.38 925.44L29.08 920.65C28.9872 920.459 28.8223 920.313 28.6216 920.243C28.421 920.174 28.201 920.187 28.01 920.28C27.819 920.373 27.6728 920.537 27.6034 920.738C27.534 920.939 27.5472 921.159 27.64 921.35L28.64 923.4C27.2945 922.987 25.8709 922.895 24.4836 923.133C23.0962 923.37 21.7839 923.929 20.6519 924.765C19.5199 925.602 18.5998 926.692 17.9656 927.948C17.3314 929.205 17.0006 930.592 17 932C17.007 933.41 17.3498 934.798 18 936.05C18.0839 936.216 18.2126 936.356 18.3716 936.453C18.5306 936.55 18.7136 936.601 18.9 936.6C19.0557 936.602 19.2098 936.568 19.35 936.5C19.4679 936.44 19.5729 936.358 19.6589 936.258C19.7449 936.158 19.8103 936.042 19.8512 935.916C19.8921 935.791 19.9077 935.659 19.8972 935.527C19.8867 935.395 19.8503 935.267 19.79 935.15C19.2783 934.178 19.0074 933.098 19 932ZM34.11 928.09C33.9902 927.859 33.7849 927.683 33.5379 927.601C33.2908 927.519 33.0214 927.536 32.7869 927.649C32.5525 927.763 32.3715 927.963 32.2824 928.208C32.1934 928.452 32.2033 928.722 32.31 928.96C32.7676 929.908 33.0035 930.947 33 932C33 933.856 32.2625 935.637 30.9497 936.95C29.637 938.262 27.8565 939 26 939C25.2335 938.996 24.473 938.864 23.75 938.61L26.05 937.51C26.241 937.417 26.3872 937.252 26.4566 937.051C26.526 936.851 26.5128 936.631 26.42 936.44C26.3272 936.249 26.1623 936.103 25.9616 936.033C25.761 935.964 25.541 935.977 25.35 936.07L20.57 938.37L22.87 943.16C22.9357 943.295 23.038 943.409 23.1654 943.488C23.2927 943.568 23.4399 943.61 23.59 943.61C23.7082 943.612 23.8251 943.584 23.93 943.53C24.0255 943.485 24.1111 943.421 24.1819 943.343C24.2528 943.265 24.3074 943.173 24.3427 943.074C24.3781 942.974 24.3934 942.869 24.3877 942.764C24.3821 942.658 24.3557 942.555 24.31 942.46L23.42 940.61C25.0909 941.109 26.8709 941.112 28.5435 940.619C30.2162 940.126 31.7095 939.157 32.8419 937.831C33.9743 936.505 34.697 934.878 34.9221 933.149C35.1473 931.419 34.8651 929.662 34.11 928.09Z" fill="#FAFAFA"/>
76
- <path d="M17.52 939H5V913H25V921.05H25.77C25.7628 920.602 25.8725 920.16 26.0882 919.767C26.3039 919.374 26.6181 919.044 27 918.81V913C27 912.47 26.7893 911.961 26.4142 911.586C26.0391 911.211 25.5304 911 25 911H5C4.46957 911 3.96086 911.211 3.58579 911.586C3.21071 911.961 3 912.47 3 913V939C3 939.53 3.21071 940.039 3.58579 940.414C3.96086 940.789 4.46957 941 5 941H19.7C18.8881 940.433 18.155 939.76 17.52 939Z" fill="#FAFAFA"/>
77
- <path d="M7 967H11V969H7V967Z" fill="#FAFAFA"/>
78
- <path d="M33.94 967H33V973H5V965H23V963H11V959H23V958.91H20.73C20.18 958.907 19.6431 958.743 19.186 958.437C18.729 958.131 18.3721 957.697 18.16 957.19L18.1 957H11C10.4696 957 9.96086 957.211 9.58579 957.586C9.21071 957.961 9 958.47 9 959V963H5C4.46957 963 3.96086 963.211 3.58579 963.586C3.21071 963.961 3 964.47 3 965V973C3 973.53 3.21071 974.039 3.58579 974.414C3.96086 974.789 4.46957 975 5 975H33C33.5304 975 34.0391 974.789 34.4142 974.414C34.7893 974.039 35 973.53 35 973V961H33.94V967Z" fill="#FAFAFA"/>
79
- <path d="M20.18 955.58C20.0716 955.689 19.9978 955.828 19.9679 955.979C19.9381 956.129 19.9535 956.286 20.0123 956.428C20.0711 956.57 20.1706 956.692 20.2983 956.777C20.426 956.863 20.5762 956.909 20.73 956.91H25V965H31.92V956.91H36.13C36.2839 956.909 36.4341 956.863 36.5618 956.777C36.6895 956.692 36.789 956.57 36.8478 956.428C36.9066 956.286 36.922 956.129 36.8922 955.979C36.8623 955.828 36.7885 955.689 36.68 955.58L28.44 947.32L20.18 955.58Z" fill="#0091DA"/>
80
- <path d="M9 1009H11V1013H9V1009ZM15 1009H17V1013H15V1009ZM21 1009H23V1013H21V1009ZM27 1009H29V1013H27V1009ZM8 1005H30V1007H8V1005Z" fill="#FAFAFA"/>
81
- <path d="M34.91 1005.47L31.78 994.41C31.654 994.002 31.4005 993.645 31.0568 993.391C30.7131 993.137 30.2972 993 29.87 993H29V995H29.87L33 1006.06V1015H5V1006.06L8.13 995H9V993H8.13C7.70279 993 7.28687 993.137 6.94316 993.391C6.59946 993.645 6.34603 994.002 6.22 994.41L3.09 1005.48C3.03066 1005.67 3.00032 1005.87 3 1006.07V1015C3 1015.53 3.21071 1016.04 3.58579 1016.41C3.96086 1016.79 4.46957 1017 5 1017H33C33.5304 1017 34.0391 1016.79 34.4142 1016.41C34.7893 1016.04 35 1015.53 35 1015V1006.06C34.9997 1005.86 34.9693 1005.66 34.91 1005.47Z" fill="#FAFAFA"/>
82
- <path d="M26 999H20.24C19.9969 999 19.7623 998.911 19.58 998.75L17.58 997H12C11.7348 997 11.4804 996.895 11.2929 996.707C11.1054 996.52 11 996.265 11 996V988C11 987.735 11.1054 987.48 11.2929 987.293C11.4804 987.105 11.7348 987 12 987H26C26.2652 987 26.5196 987.105 26.7071 987.293C26.8946 987.48 27 987.735 27 988V998C27 998.265 26.8946 998.52 26.7071 998.707C26.5196 998.895 26.2652 999 26 999ZM20.61 997H25V989H13V995H18C18.2431 995 18.4777 995.089 18.66 995.25L20.61 997Z" fill="#FAFAFA"/>
83
- <path d="M21 991H23V993H21V991ZM17 991H19V993H17V991Z" fill="#FAFAFA"/>
84
- <path d="M9 1047H11V1051H9V1047ZM15 1047H17V1051H15V1047ZM21 1047H23V1051H21V1047ZM27 1047H29V1051H27V1047ZM8 1043H30V1045H8V1043ZM17 1029H19V1031H17V1029Z" fill="#FAFAFA"/>
85
- <path d="M17.05 1033H13V1027H18.23C18.5898 1026.29 19.0293 1025.62 19.54 1025H12C11.7348 1025 11.4804 1025.11 11.2929 1025.29C11.1054 1025.48 11 1025.73 11 1026V1034C11 1034.27 11.1054 1034.52 11.2929 1034.71C11.4804 1034.89 11.7348 1035 12 1035H17.43C17.2372 1034.35 17.1099 1033.68 17.05 1033Z" fill="#FAFAFA"/>
86
- <path d="M34.23 1041.06C33.6617 1041.45 33.0592 1041.78 32.43 1042.06L33 1044.06V1053H5V1044.06L8.13 1033H9V1031H8.13C7.70279 1031 7.28687 1031.14 6.94316 1031.39C6.59946 1031.64 6.34603 1032 6.22 1032.41L3.09 1043.48C3.03066 1043.67 3.00032 1043.87 3 1044.07V1053C3 1053.53 3.21071 1054.04 3.58579 1054.41C3.96086 1054.79 4.46957 1055 5 1055H33C33.5304 1055 34.0391 1054.79 34.4142 1054.41C34.7893 1054.04 35 1053.53 35 1053V1044.06C34.9997 1043.86 34.9693 1043.66 34.91 1043.47L34.23 1041.06Z" fill="#FAFAFA"/>
87
- <path d="M28 1023C26.22 1023 24.4799 1023.53 22.9999 1024.52C21.5198 1025.51 20.3663 1026.91 19.6851 1028.56C19.0039 1030.2 18.8257 1032.01 19.1729 1033.76C19.5202 1035.5 20.3774 1037.11 21.636 1038.36C22.8947 1039.62 24.4984 1040.48 26.2442 1040.83C27.99 1041.17 29.7996 1041 31.4442 1040.31C33.0887 1039.63 34.4943 1038.48 35.4832 1037C36.4722 1035.52 37 1033.78 37 1032C37 1029.61 36.0518 1027.32 34.364 1025.64C32.6761 1023.95 30.387 1023 28 1023ZM29 1037H27V1035H29V1037ZM29 1033H27V1027H29V1033Z" fill="#F84E30"/>
88
- <path d="M9 1085H11V1089H9V1085ZM15 1085H17V1089H15V1085ZM21 1085H23V1089H21V1085ZM27 1085H29V1089H27V1085Z" fill="#FAFAFA"/>
89
- <path d="M33 1083.11V1091H5V1082.06L8.13 1071H9V1069H8.13C7.70279 1069 7.28687 1069.14 6.94316 1069.39C6.59946 1069.64 6.34603 1070 6.22 1070.41L3.09 1081.48C3.03066 1081.67 3.00032 1081.87 3 1082.07V1091C3 1091.53 3.21071 1092.04 3.58579 1092.41C3.96086 1092.79 4.46957 1093 5 1093H33C33.5304 1093 34.0391 1092.79 34.4142 1092.41C34.7893 1092.04 35 1091.53 35 1091V1082.56C34.3714 1082.86 33.6941 1083.05 33 1083.11Z" fill="#FAFAFA"/>
90
- <path d="M15 1081H8V1083H18.32C17.0194 1082.73 15.8493 1082.02 15 1081ZM18.7 1067H17V1069H17.55L18.7 1067Z" fill="#FAFAFA"/>
91
- <path d="M16.39 1071H13V1065H19.85L20.94 1063.12L21 1063H12C11.7348 1063 11.4804 1063.11 11.2929 1063.29C11.1054 1063.48 11 1063.73 11 1064V1072C11 1072.27 11.1054 1072.52 11.2929 1072.71C11.4804 1072.89 11.7348 1073 12 1073H15.24L16.39 1071Z" fill="#FAFAFA"/>
92
- <path d="M26 1062.19C25.3208 1062.19 24.6529 1062.36 24.0644 1062.7C23.4759 1063.04 22.9878 1063.53 22.65 1064.12L16.19 1075.35C15.8513 1075.94 15.673 1076.6 15.6729 1077.28C15.6727 1077.96 15.8508 1078.62 16.1893 1079.21C16.5277 1079.8 17.0146 1080.28 17.601 1080.62C18.1874 1080.96 18.8527 1081.14 19.53 1081.14H32.53C33.2073 1081.14 33.8726 1080.96 34.459 1080.62C35.0454 1080.28 35.5323 1079.8 35.8707 1079.21C36.2092 1078.62 36.3873 1077.96 36.3871 1077.28C36.387 1076.6 36.2087 1075.94 35.87 1075.35L29.36 1064.12C29.0229 1063.53 28.5337 1063.04 27.9429 1062.7C27.3521 1062.36 26.6813 1062.18 26 1062.19Z" fill="#B68300"/>
93
- <path d="M26.0001 1064.19C26.3267 1064.19 26.6477 1064.27 26.9304 1064.44C27.2132 1064.6 27.4477 1064.84 27.6101 1065.12L34.0901 1076.35C34.2533 1076.63 34.3393 1076.95 34.3393 1077.28C34.3393 1077.61 34.2535 1077.93 34.0903 1078.21C33.9272 1078.49 33.6925 1078.73 33.4098 1078.89C33.1272 1079.05 32.8065 1079.14 32.4801 1079.14H19.4801C18.9868 1079.14 18.5137 1078.94 18.1649 1078.6C17.8161 1078.25 17.6201 1077.77 17.6201 1077.28C17.6213 1076.95 17.7075 1076.63 17.8701 1076.35L24.4101 1065.12C24.5693 1064.84 24.8003 1064.6 25.0796 1064.44C25.3589 1064.28 25.6765 1064.19 26.0001 1064.19Z" fill="#FFE02C"/>
94
- <path d="M25 1075H27V1077H25V1075ZM25 1067H27V1073H25V1067Z" fill="#454545"/>
95
- <path d="M32 1130H6C5.73478 1130 5.48043 1130.11 5.29289 1130.29C5.10536 1130.48 5 1130.73 5 1131C5 1131.27 5.10536 1131.52 5.29289 1131.71C5.48043 1131.89 5.73478 1132 6 1132H32C32.2652 1132 32.5196 1131.89 32.7071 1131.71C32.8946 1131.52 33 1131.27 33 1131C33 1130.73 32.8946 1130.48 32.7071 1130.29C32.5196 1130.11 32.2652 1130 32 1130Z" fill="#FAFAFA"/>
96
- <path d="M9.80988 1114L17.9999 1105.83V1126.48C17.9999 1126.75 18.1052 1127 18.2928 1127.19C18.4803 1127.37 18.7347 1127.48 18.9999 1127.48C19.2651 1127.48 19.5195 1127.37 19.707 1127.19C19.8945 1127 19.9999 1126.75 19.9999 1126.48V1105.83L28.1899 1114C28.3812 1114.16 28.6273 1114.25 28.8789 1114.24C29.1306 1114.23 29.3693 1114.13 29.5474 1113.95C29.7255 1113.77 29.8299 1113.53 29.8396 1113.28C29.8493 1113.03 29.7637 1112.78 29.5999 1112.59L18.9999 1102L8.38988 1112.61C8.28053 1112.7 8.1912 1112.81 8.12772 1112.94C8.06425 1113.06 8.02808 1113.2 8.02157 1113.34C8.01507 1113.48 8.03838 1113.62 8.08998 1113.75C8.14158 1113.88 8.2203 1114 8.32099 1114.1C8.42168 1114.2 8.54206 1114.28 8.67424 1114.32C8.80642 1114.37 8.94741 1114.39 9.08799 1114.38C9.22856 1114.37 9.36554 1114.34 9.48995 1114.27C9.61436 1114.2 9.72338 1114.11 9.80988 1114Z" fill="#FAFAFA"/>
97
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.63969 1160.12C9.8934 1158.87 11.5938 1158.17 13.3668 1158.17H24.6261C26.3991 1158.17 28.0995 1158.87 29.3532 1160.12C30.6069 1161.38 31.3113 1163.08 31.3113 1164.85V1167.67C31.3113 1168.25 30.8387 1168.72 30.2557 1168.72C29.6727 1168.72 29.2002 1168.25 29.2002 1167.67V1164.85C29.2002 1163.64 28.7183 1162.48 27.8604 1161.62C27.0026 1160.76 25.8392 1160.28 24.6261 1160.28H13.3668C12.1537 1160.28 10.9903 1160.76 10.1325 1161.62C9.27466 1162.48 8.79275 1163.64 8.79275 1164.85V1167.67C8.79275 1168.25 8.32016 1168.72 7.7372 1168.72C7.15423 1168.72 6.68164 1168.25 6.68164 1167.67V1164.85C6.68164 1163.08 7.38597 1161.38 8.63969 1160.12Z" fill="#E9EAEC"/>
98
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9972 1143.39C16.471 1143.39 14.4231 1145.44 14.4231 1147.96C14.4231 1150.49 16.471 1152.54 18.9972 1152.54C21.5234 1152.54 23.5713 1150.49 23.5713 1147.96C23.5713 1145.44 21.5234 1143.39 18.9972 1143.39ZM12.312 1147.96C12.312 1144.27 15.3051 1141.28 18.9972 1141.28C22.6893 1141.28 25.6824 1144.27 25.6824 1147.96C25.6824 1151.66 22.6893 1154.65 18.9972 1154.65C15.3051 1154.65 12.312 1151.66 12.312 1147.96Z" fill="#E9EAEC"/>
99
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.49036 1194.58C5.33801 1193.74 6.48768 1193.26 7.68644 1193.26H8.24637C8.82933 1193.26 9.30192 1193.73 9.30192 1194.32C9.30192 1194.9 8.82933 1195.37 8.24637 1195.37H7.68644C7.04758 1195.37 6.43489 1195.62 5.98314 1196.08C5.5314 1196.53 5.27762 1197.14 5.27762 1197.78V1199.83C5.50305 1199.92 5.85254 1200.02 6.33057 1200.11C6.33549 1200.11 6.3404 1200.11 6.34529 1200.11C6.36892 1200.12 6.39286 1200.12 6.4171 1200.12C6.99102 1200.23 7.3733 1200.77 7.27096 1201.35C7.16862 1201.92 6.62041 1202.3 6.0465 1202.2C5.42809 1202.09 4.84433 1201.95 4.38416 1201.75C4.15537 1201.65 3.90515 1201.51 3.69139 1201.32C3.68009 1201.31 3.6687 1201.3 3.65725 1201.29C3.59187 1201.23 3.52447 1201.16 3.46134 1201.07C3.33837 1200.91 3.23162 1200.71 3.18757 1200.46C3.183 1200.43 3.17911 1200.4 3.17594 1200.38C3.16966 1200.32 3.1665 1200.27 3.1665 1200.22V1197.78C3.1665 1196.58 3.64271 1195.43 4.49036 1194.58Z" fill="#E9EAEC"/>
100
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33.5093 1194.58C32.6617 1193.74 31.512 1193.26 30.3132 1193.26H29.7533C29.1703 1193.26 28.6978 1193.73 28.6978 1194.32C28.6978 1194.9 29.1703 1195.37 29.7533 1195.37H30.3132C30.9521 1195.37 31.5648 1195.62 32.0165 1196.08C32.4683 1196.53 32.7221 1197.14 32.7221 1197.78V1199.83C32.4966 1199.92 32.1471 1200.02 31.6691 1200.11C31.6642 1200.11 31.6593 1200.11 31.6544 1200.11C31.6308 1200.12 31.6068 1200.12 31.5826 1200.12C31.0087 1200.23 30.6264 1200.77 30.7287 1201.35C30.8311 1201.92 31.3793 1202.3 31.9532 1202.2C32.5716 1202.09 33.1553 1201.95 33.6155 1201.75C33.8443 1201.65 34.0945 1201.51 34.3083 1201.32C34.3196 1201.31 34.331 1201.3 34.3424 1201.29C34.4078 1201.23 34.4752 1201.16 34.5383 1201.07C34.6613 1200.91 34.7681 1200.71 34.8121 1200.46C34.8167 1200.43 34.8206 1200.4 34.8237 1200.38C34.83 1200.32 34.8332 1200.27 34.8332 1200.22V1197.78C34.8332 1196.58 34.357 1195.43 33.5093 1194.58Z" fill="#E9EAEC"/>
101
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.0772 1183.89C12.0984 1184.47 11.6433 1184.96 11.0608 1184.98C9.77244 1185.03 8.74184 1186.09 8.74184 1187.39C8.74184 1188.72 9.82031 1189.8 11.1507 1189.8C11.4027 1189.8 11.6438 1189.76 11.8696 1189.69L11.9084 1189.67C12.4619 1189.49 13.059 1189.79 13.2422 1190.34C13.4254 1190.9 13.1252 1191.5 12.5718 1191.68C12.5475 1191.69 12.5231 1191.69 12.4985 1191.7C12.0715 1191.84 11.6185 1191.91 11.1507 1191.91C8.65438 1191.91 6.63073 1189.88 6.63073 1187.39C6.63073 1184.95 8.5645 1182.96 10.9839 1182.87C11.5665 1182.85 12.056 1183.3 12.0772 1183.89Z" fill="#E9EAEC"/>
102
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25.9225 1183.89C25.9437 1183.3 26.4332 1182.85 27.0157 1182.87C29.4352 1182.96 31.3689 1184.95 31.3689 1187.39C31.3689 1189.88 29.3453 1191.91 26.849 1191.91C26.3812 1191.91 25.9281 1191.84 25.5011 1191.7C25.4766 1191.69 25.4522 1191.69 25.4279 1191.68C24.8744 1191.5 24.5743 1190.9 24.7575 1190.34C24.9407 1189.79 25.5378 1189.49 26.0912 1189.67L26.1301 1189.69C26.3558 1189.76 26.5969 1189.8 26.849 1189.8C28.1794 1189.8 29.2578 1188.72 29.2578 1187.39C29.2578 1186.09 28.2272 1185.03 26.9389 1184.98C26.3563 1184.96 25.9013 1184.47 25.9225 1183.89Z" fill="#E9EAEC"/>
103
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9913 1182.44C17.0232 1182.44 15.4277 1184.04 15.4277 1186.01C15.4277 1187.98 17.0232 1189.57 18.9913 1189.57C20.9595 1189.57 22.555 1187.98 22.555 1186.01C22.555 1184.04 20.9595 1182.44 18.9913 1182.44ZM13.3166 1186.01C13.3166 1182.87 15.8573 1180.33 18.9913 1180.33C22.1254 1180.33 24.6661 1182.87 24.6661 1186.01C24.6661 1189.14 22.1254 1191.68 18.9913 1191.68C15.8573 1191.68 13.3166 1189.14 13.3166 1186.01Z" fill="#E9EAEC"/>
104
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.3726 1194.19C12.8676 1194.19 11.4242 1194.79 10.36 1195.85C9.29573 1196.92 8.69786 1198.36 8.69786 1199.87V1202.88C8.69786 1203.41 8.97232 1203.81 9.2407 1204.06C9.50158 1204.3 9.82395 1204.48 10.1315 1204.61C10.7524 1204.87 11.5717 1205.07 12.4669 1205.22C14.2766 1205.52 16.6488 1205.67 18.9918 1205.67C21.3347 1205.67 23.707 1205.52 25.5167 1205.22C26.4118 1205.07 27.2311 1204.87 27.852 1204.61C28.1596 1204.48 28.482 1204.3 28.7429 1204.06C29.0112 1203.81 29.2857 1203.41 29.2857 1202.88V1199.87C29.2857 1198.36 28.6878 1196.92 27.6236 1195.85C26.5594 1194.79 25.116 1194.19 23.611 1194.19H14.3726ZM10.809 1202.6C10.8508 1202.62 10.9018 1202.64 10.9631 1202.67C11.3527 1202.83 11.9769 1203 12.8139 1203.14C14.4686 1203.41 16.7155 1203.56 18.9918 1203.56C21.268 1203.56 23.5149 1203.41 25.1696 1203.14C26.0067 1203 26.6309 1202.83 27.0204 1202.67C27.0817 1202.64 27.1328 1202.62 27.1746 1202.6V1199.87C27.1746 1198.92 26.7991 1198.01 26.1308 1197.35C25.4625 1196.68 24.5561 1196.3 23.611 1196.3H14.3726C13.4275 1196.3 12.521 1196.68 11.8527 1197.35C11.1844 1198.01 10.809 1198.92 10.809 1199.87V1202.6Z" fill="#E9EAEC"/>
105
- <path d="M25 1235H31V1243H23V1237H21V1245H33V1233H25V1235ZM13 1235H7V1243H15V1237H17V1245H5V1233H13V1235ZM13 1227H7V1219H15V1225H17V1217H5V1229H13V1227ZM21 1217V1225H23V1219H31V1227H25V1229H33V1217H21Z" fill="#FAFAFA"/>
106
- <path d="M25 1273H31V1281H23V1275H21V1283H33V1271H25V1273ZM13 1271H5V1283H17V1275H15V1281H7V1273H13V1271ZM13 1265H7V1257H15V1263H17V1255H5V1267H13V1265Z" fill="#FAFAFA"/>
107
- <path d="M37 1257H31V1251H27V1257H21V1261H27V1267H31V1261H37V1257Z" fill="#59A011"/>
108
- <path d="M13 1303H7V1295H15V1301H17V1293H5V1305H13V1303ZM21 1293V1301H23V1295H31V1303H25V1305H33V1293H21ZM16.54 1313H15V1319H7V1311H13V1309.39C12.8826 1309.27 12.7755 1309.14 12.68 1309H5V1321H17V1313.46L16.54 1313ZM33 1312.52V1309H29.5L33 1312.52ZM21 1317.5V1321H24.46L21 1317.5Z" fill="#FAFAFA"/>
109
- <path d="M35 1321.2V1321.06L33.89 1316.25L20.17 1302.46C19.8684 1302.16 19.4603 1301.99 19.035 1301.99C18.6097 1301.99 18.2017 1302.16 17.9 1302.46L14.54 1305.83C14.39 1305.98 14.2711 1306.16 14.1899 1306.35C14.1087 1306.55 14.0669 1306.76 14.0669 1306.97C14.0669 1307.18 14.1087 1307.39 14.1899 1307.59C14.2711 1307.78 14.39 1307.96 14.54 1308.11L28.18 1321.92L33 1323H33.68C34.0912 1322.93 34.4592 1322.7 34.7057 1322.37C34.9523 1322.03 35.0579 1321.61 35 1321.2ZM16.21 1307L19.05 1304.16L20.6 1305.74L17.78 1308.56L16.21 1307ZM29.21 1320.07L18.91 1309.68L21.73 1306.86L32 1317.25L32.85 1320.88L29.21 1320.07Z" fill="#FAFAFA"/>
110
- <path d="M7 1347H13V1353H7V1347ZM3 1355H9V1361H3V1355ZM11 1355H17V1361H11V1355ZM25 1349H31V1357H23V1351H21V1359H33V1347H25V1349ZM13 1341H7V1333H15V1339H17V1331H5V1343H13V1341ZM21 1331V1339H23V1333H31V1341H25V1343H33V1331H21Z" fill="#FAFAFA"/>
111
- <path d="M25 1387H31V1395H23V1389H21V1397H33V1385H25V1387ZM13 1385H5V1397H17V1389H15V1395H7V1387H13V1385ZM13 1379H7V1371H15V1377H17V1369H5V1381H13V1379Z" fill="#FAFAFA"/>
112
- <path d="M28.2998 1381H32.9998V1378.39L28.2998 1381Z" fill="#FAFAFA"/>
113
- <path d="M36.41 1372.2L23.71 1365.2C23.5353 1365.1 23.3382 1365.05 23.1382 1365.05C22.9382 1365.06 22.7421 1365.11 22.5695 1365.21C22.3968 1365.31 22.2534 1365.46 22.1536 1365.63C22.0537 1365.8 22.0008 1366 22 1366.2V1380.26C22.0008 1380.46 22.0537 1380.66 22.1536 1380.83C22.2534 1381 22.3968 1381.15 22.5695 1381.25C22.7421 1381.35 22.9382 1381.4 23.1382 1381.41C23.3382 1381.41 23.5353 1381.36 23.71 1381.26L36.41 1374.2C36.5867 1374.1 36.7337 1373.95 36.836 1373.78C36.9382 1373.6 36.9921 1373.4 36.9921 1373.2C36.9921 1373 36.9382 1372.8 36.836 1372.62C36.7337 1372.45 36.5867 1372.3 36.41 1372.2Z" fill="#60A644"/>
114
- <path d="M7 1423H13V1429H7V1423ZM3 1431H9V1437H3V1431ZM11 1431H17V1437H11V1431Z" fill="#FAFAFA"/>
115
- <path d="M25 1425H31V1433H23V1427H21V1435H33V1423H25V1425ZM13 1417H7V1409H15V1415H17V1407H5V1419H13V1417Z" fill="#FAFAFA"/>
116
- <path d="M28.2998 1419H32.9998V1416.39L28.2998 1419Z" fill="#FAFAFA"/>
117
- <path d="M36.41 1410.2L23.71 1403.2C23.5353 1403.1 23.3382 1403.05 23.1382 1403.05C22.9382 1403.06 22.7421 1403.11 22.5695 1403.21C22.3968 1403.31 22.2534 1403.46 22.1536 1403.63C22.0537 1403.8 22.0008 1404 22 1404.2V1418.26C22.0008 1418.46 22.0537 1418.66 22.1536 1418.83C22.2534 1419 22.3968 1419.15 22.5695 1419.25C22.7421 1419.35 22.9382 1419.4 23.1382 1419.41C23.3382 1419.41 23.5353 1419.36 23.71 1419.26L36.41 1412.2C36.5867 1412.1 36.7337 1411.95 36.836 1411.78C36.9382 1411.6 36.9921 1411.4 36.9921 1411.2C36.9921 1411 36.9382 1410.8 36.836 1410.62C36.7337 1410.45 36.5867 1410.3 36.41 1410.2Z" fill="#60A644"/>
118
- <path d="M25 1463H31V1471H23V1465H21V1473H33V1461H25V1463ZM13 1461H5V1473H17V1465H15V1471H7V1463H13V1461ZM13 1455H7V1447H15V1453H17V1445H5V1457H13V1455Z" fill="#FAFAFA"/>
119
- <path d="M23 1441H37V1455H23V1441Z" fill="#B68300"/>
120
- <path d="M29 1443V1453H25V1443H29ZM35 1443V1453H31V1443H35Z" fill="#FFE02C"/>
121
- <path d="M7 1499H13V1505H7V1499ZM3 1507H9V1513H3V1507ZM11 1507H17V1513H11V1507Z" fill="#FAFAFA"/>
122
- <path d="M25 1501H31V1509H23V1503H21V1511H33V1499H25V1501ZM13 1493H7V1485H15V1491H17V1483H5V1495H13V1493Z" fill="#FAFAFA"/>
123
- <path d="M23 1479H37V1493H23V1479Z" fill="#B68300"/>
124
- <path d="M29 1481V1491H25V1481H29ZM35 1481V1491H31V1481H35Z" fill="#FFE02C"/>
125
- <path d="M26 1551H4C3.73478 1551 3.48043 1550.89 3.29289 1550.71C3.10536 1550.52 3 1550.27 3 1550V1520C3 1519.73 3.10536 1519.48 3.29289 1519.29C3.48043 1519.11 3.73478 1519 4 1519H34C34.2652 1519 34.5196 1519.11 34.7071 1519.29C34.8946 1519.48 35 1519.73 35 1520V1541.81C35 1542.08 34.8946 1542.33 34.7071 1542.52C34.5196 1542.7 34.2652 1542.81 34 1542.81C33.7348 1542.81 33.4804 1542.7 33.2929 1542.52C33.1054 1542.33 33 1542.08 33 1541.81V1521H5V1549H26C26.2652 1549 26.5196 1549.11 26.7071 1549.29C26.8946 1549.48 27 1549.73 27 1550C27 1550.27 26.8946 1550.52 26.7071 1550.71C26.5196 1550.89 26.2652 1551 26 1551Z" fill="#FAFAFA"/>
126
- <path d="M26 1550.89C25.87 1550.89 25.7409 1550.87 25.62 1550.82C25.4358 1550.74 25.2784 1550.62 25.1679 1550.45C25.0575 1550.28 24.999 1550.09 25 1549.89V1542C25 1541.73 25.1054 1541.48 25.2929 1541.29C25.4804 1541.11 25.7348 1541 26 1541H33.69C34.05 1540.83 34.28 1540.95 34.62 1541.29C34.7604 1541.43 34.8563 1541.61 34.8955 1541.8C34.9347 1542 34.9153 1542.2 34.84 1542.38C34.7894 1542.5 34.7146 1542.62 34.62 1542.71L26.71 1550.6C26.6166 1550.69 26.5058 1550.77 26.3839 1550.82C26.2621 1550.87 26.1316 1550.89 26 1550.89ZM27 1543V1547.49L31.5 1543H27Z" fill="#FAFAFA"/>
127
- <path d="M21 1533V1529H25V1533H21Z" fill="#FAFAFA"/>
128
- <path d="M13 1533V1529H17V1533H13Z" fill="#FAFAFA"/>
129
- <path d="M21 1541V1537H25V1541H21Z" fill="#FAFAFA"/>
130
- <path d="M13 1541V1537H17V1541H13Z" fill="#FAFAFA"/>
131
- <path d="M15 1543V1545H9V1539H11V1537H7V1547H17V1543H15ZM11 1531H9V1525H15V1527H17V1523H7V1533H11V1531ZM27 1539H29V1542C29 1542.27 29.1054 1542.52 29.2929 1542.71C29.4804 1542.89 29.7348 1543 30 1543C30.2652 1543 30.5196 1542.89 30.7071 1542.71C30.8946 1542.52 31 1542.27 31 1542V1537H27V1539ZM21 1523V1527H23V1525H29V1531H27V1533H31V1523H21ZM25.83 1545H23V1543H21V1547H25.83C26.0952 1547 26.3496 1546.89 26.5371 1546.71C26.7246 1546.52 26.83 1546.27 26.83 1546C26.83 1545.73 26.7246 1545.48 26.5371 1545.29C26.3496 1545.11 26.0952 1545 25.83 1545Z" fill="#FAFAFA"/>
132
- <path d="M27 1572V1558H11V1572H4V1588H34V1572H27ZM13 1560H25V1572H13V1560ZM18 1586H6V1574H18V1586ZM32 1586H20V1574H32V1586Z" fill="#FAFAFA"/>
133
- <path d="M7 1605V1613H13V1612C13 1611.22 13.1807 1610.46 13.5279 1609.76C13.875 1609.07 14.379 1608.47 15 1608V1607H21V1599H13V1605H7ZM13 1611H9V1607H13V1611ZM15 1601H19V1605H15V1601Z" fill="#FAFAFA"/>
134
- <path d="M5 1615V1603H11V1597H23V1607H25V1597C25 1596.47 24.7893 1595.96 24.4142 1595.59C24.0391 1595.21 23.5304 1595 23 1595H11C10.4696 1595 9.96086 1595.21 9.58579 1595.59C9.21071 1595.96 9 1596.47 9 1597V1601H5C4.46957 1601 3.96086 1601.21 3.58579 1601.59C3.21071 1601.96 3 1602.47 3 1603V1615C3 1615.53 3.21071 1616.04 3.58579 1616.41C3.96086 1616.79 4.46957 1617 5 1617H17V1615H5Z" fill="#FAFAFA"/>
135
- <path d="M31 1619V1612C31 1611.2 30.6839 1610.44 30.1213 1609.88C29.5587 1609.32 28.7956 1609 28 1609H18C17.2044 1609 16.4413 1609.32 15.8787 1609.88C15.3161 1610.44 15 1611.2 15 1612V1613H17V1612C17 1611.73 17.1054 1611.48 17.2929 1611.29C17.4804 1611.11 17.7348 1611 18 1611H19V1622C19 1622.8 19.3161 1623.56 19.8787 1624.12C20.4413 1624.68 21.2044 1625 22 1625H32C32.7956 1625 33.5587 1624.68 34.1213 1624.12C34.6839 1623.56 35 1622.8 35 1622V1619H31ZM23 1623H22C21.7348 1623 21.4804 1622.89 21.2929 1622.71C21.1054 1622.52 21 1622.27 21 1622V1611H28C28.2652 1611 28.5196 1611.11 28.7071 1611.29C28.8946 1611.48 29 1611.73 29 1612V1619H23V1623ZM33 1622C33 1622.27 32.8946 1622.52 32.7071 1622.71C32.5196 1622.89 32.2652 1623 32 1623H25V1621H33V1622Z" fill="#FAFAFA"/>
136
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.33317 1650.06C5.7502 1650.06 5.27762 1650.53 5.27762 1651.11V1661.67C5.27762 1662.25 5.7502 1662.72 6.33317 1662.72H16.8887C17.4717 1662.72 17.9443 1662.25 17.9443 1661.67V1658.56C17.9443 1657.98 18.4169 1657.51 18.9998 1657.51C19.5828 1657.51 20.0554 1657.98 20.0554 1658.56V1661.67C20.0554 1663.42 18.6376 1664.83 16.8887 1664.83H6.33317C4.58427 1664.83 3.1665 1663.42 3.1665 1661.67V1651.11C3.1665 1649.36 4.58427 1647.94 6.33317 1647.94H8.56846C9.15143 1647.94 9.62402 1648.42 9.62402 1649C9.62402 1649.58 9.15143 1650.06 8.56846 1650.06H6.33317Z" fill="#E9EAEC"/>
137
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.6665 1645.41C12.6665 1643.9 13.8952 1642.67 15.4109 1642.67H22.5887C24.1044 1642.67 25.3332 1643.9 25.3332 1645.41V1652.59C25.3332 1654.1 24.1044 1655.33 22.5887 1655.33H15.4109C13.8952 1655.33 12.6665 1654.1 12.6665 1652.59V1645.41ZM15.4109 1644.78C15.0612 1644.78 14.7776 1645.06 14.7776 1645.41V1652.59C14.7776 1652.94 15.0612 1653.22 15.4109 1653.22H22.5887C22.9385 1653.22 23.2221 1652.94 23.2221 1652.59V1645.41C23.2221 1645.06 22.9385 1644.78 22.5887 1644.78H15.4109Z" fill="#2BA2DE"/>
138
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5553 1652.32C30.0508 1652.32 30.4525 1652.73 30.4525 1653.22V1657.87C30.4525 1659.29 29.2946 1660.45 27.8664 1660.45H23.2219C22.7264 1660.45 22.3247 1660.05 22.3247 1659.56C22.3247 1659.06 22.7264 1658.66 23.2219 1658.66H27.8664C28.3036 1658.66 28.658 1658.3 28.658 1657.87V1653.22C28.658 1652.73 29.0597 1652.32 29.5553 1652.32Z" fill="#2BA2DE"/>
139
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.44425 1645.67C7.94873 1645.67 7.54703 1645.27 7.54703 1644.78L7.54703 1640.13C7.54703 1638.7 8.70487 1637.55 10.1331 1637.55L14.7776 1637.55C15.2731 1637.55 15.6748 1637.95 15.6748 1638.44C15.6748 1638.94 15.2731 1639.34 14.7776 1639.34L10.1331 1639.34C9.69591 1639.34 9.34147 1639.7 9.34147 1640.13L9.34147 1644.78C9.34147 1645.27 8.93977 1645.67 8.44425 1645.67Z" fill="#2BA2DE"/>
140
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9443 1636.33C17.9443 1634.58 19.3621 1633.17 21.111 1633.17H31.6666C33.4155 1633.17 34.8332 1634.58 34.8332 1636.33V1646.89C34.8332 1648.64 33.4155 1650.06 31.6666 1650.06H29.4313C28.8483 1650.06 28.3757 1649.58 28.3757 1649C28.3757 1648.42 28.8483 1647.94 29.4313 1647.94H31.6666C32.2495 1647.94 32.7221 1647.47 32.7221 1646.89V1636.33C32.7221 1635.75 32.2495 1635.28 31.6666 1635.28H21.111C20.528 1635.28 20.0554 1635.75 20.0554 1636.33V1639.44C20.0554 1640.02 19.5829 1640.49 18.9999 1640.49C18.4169 1640.49 17.9443 1640.02 17.9443 1639.44V1636.33Z" fill="#E9EAEC"/>
141
- <path d="M9 1694H11V1698H9V1694ZM15 1694H17V1698H15V1694ZM21 1694H23V1698H21V1694ZM27 1694H29V1698H27V1694ZM8 1690H30V1692H8V1690ZM23 1687.94C23.2493 1687.94 23.4884 1687.84 23.6647 1687.66C23.841 1687.49 23.94 1687.25 23.94 1687C23.94 1686.75 23.841 1686.51 23.6647 1686.34C23.4884 1686.16 23.2493 1686.06 23 1686.06H15C14.7507 1686.06 14.5116 1686.16 14.3353 1686.34C14.159 1686.51 14.06 1686.75 14.06 1687C14.06 1687.25 14.159 1687.49 14.3353 1687.66C14.5116 1687.84 14.7507 1687.94 15 1687.94H23Z" fill="#FAFAFA"/>
142
- <path d="M34.91 1690.47L31.78 1679.41C31.654 1679 31.4005 1678.64 31.0568 1678.39C30.7131 1678.14 30.2972 1678 29.87 1678H27C26.9981 1678.67 26.9107 1679.35 26.74 1680H29.87L33 1691.06V1700H5V1691.06L8.13 1680H11.26C11.0893 1679.35 11.0019 1678.67 11 1678H8.13C7.70279 1678 7.28687 1678.14 6.94316 1678.39C6.59946 1678.64 6.34603 1679 6.22 1679.41L3.09 1690.48C3.03066 1690.67 3.00032 1690.87 3 1691.07V1700C3 1700.53 3.21071 1701.04 3.58579 1701.41C3.96086 1701.79 4.46957 1702 5 1702H33C33.5304 1702 34.0391 1701.79 34.4142 1701.41C34.7893 1701.04 35 1700.53 35 1700V1691.06C34.9997 1690.86 34.9693 1690.66 34.91 1690.47Z" fill="#FAFAFA"/>
143
- <path d="M19 1684C20.1867 1684 21.3467 1683.65 22.3334 1682.99C23.3201 1682.33 24.0892 1681.39 24.5433 1680.3C24.9974 1679.2 25.1162 1677.99 24.8847 1676.83C24.6532 1675.67 24.0818 1674.6 23.2426 1673.76C22.4035 1672.92 21.3344 1672.35 20.1705 1672.12C19.0067 1671.88 17.8003 1672 16.7039 1672.46C15.6075 1672.91 14.6705 1673.68 14.0112 1674.67C13.3519 1675.65 13 1676.81 13 1678C13 1679.59 13.6321 1681.12 14.7574 1682.24C15.8826 1683.37 17.4087 1684 19 1684ZM19 1674C19.7911 1674 20.5645 1674.23 21.2223 1674.67C21.8801 1675.11 22.3928 1675.74 22.6955 1676.47C22.9983 1677.2 23.0775 1678 22.9231 1678.78C22.7688 1679.56 22.3878 1680.27 21.8284 1680.83C21.269 1681.39 20.5563 1681.77 19.7804 1681.92C19.0044 1682.08 18.2002 1682 17.4693 1681.7C16.7384 1681.39 16.1136 1680.88 15.6741 1680.22C15.2346 1679.56 15 1678.79 15 1678C15 1676.94 15.4214 1675.92 16.1716 1675.17C16.9217 1674.42 17.9391 1674 19 1674Z" fill="#FAFAFA"/>
144
- <path d="M21 1731H23V1735H21V1731ZM27 1731H29V1735H27V1731ZM15 1731H17V1735H15V1731ZM8 1727H30V1729H8V1727ZM9 1731H11V1735H9V1731ZM23 1724.94C23.2493 1724.94 23.4884 1724.84 23.6647 1724.66C23.841 1724.49 23.94 1724.25 23.94 1724C23.94 1723.75 23.841 1723.51 23.6647 1723.34C23.4884 1723.16 23.2493 1723.06 23 1723.06H15C14.7507 1723.06 14.5116 1723.16 14.3353 1723.34C14.159 1723.51 14.06 1723.75 14.06 1724C14.06 1724.25 14.159 1724.49 14.3353 1724.66C14.5116 1724.84 14.7507 1724.94 15 1724.94H23Z" fill="#FAFAFA"/>
145
- <path d="M19 1719C17.9391 1719 16.9217 1718.58 16.1716 1717.83C15.4214 1717.08 15 1716.06 15 1715C15 1713.94 15.4214 1712.92 16.1716 1712.17C16.9217 1711.42 17.9391 1711 19 1711H23V1710.54C21.8033 1709.58 20.2842 1709.11 18.755 1709.24C17.2259 1709.37 15.8028 1710.07 14.7784 1711.21C13.754 1712.36 13.2061 1713.85 13.2473 1715.38C13.2885 1716.91 13.9157 1718.37 15 1719.46C16.0983 1720.45 17.5225 1721 19 1721C19.8388 1721 20.6673 1720.82 21.432 1720.47C22.1968 1720.13 22.8808 1719.63 23.44 1719H19Z" fill="#FAFAFA"/>
146
- <path d="M33.08 1721H33V1725H32.13L33 1728.06V1737H5V1728.06L8.13 1717H11.26C11.0893 1716.35 11.0019 1715.67 11 1715H8.13C7.70279 1715 7.28687 1715.14 6.94316 1715.39C6.59946 1715.64 6.34603 1716 6.22 1716.41L3.09 1727.48C3.03066 1727.67 3.00032 1727.87 3 1728.07V1737C3 1737.53 3.21071 1738.04 3.58579 1738.41C3.96086 1738.79 4.46957 1739 5 1739H33C33.5304 1739 34.0391 1738.79 34.4142 1738.41C34.7893 1738.04 35 1737.53 35 1737V1728.06C34.9997 1727.86 34.9693 1727.66 34.91 1727.47L33.08 1721Z" fill="#FAFAFA"/>
147
- <path d="M37 1713H31V1707H27V1713H21V1717H27V1723H31V1717H37V1713Z" fill="#59A011"/>
148
- <path d="M21 1769H23V1773H21V1769ZM15 1769H17V1773H15V1769ZM27 1769H29V1773H27V1769ZM8 1765H30V1767H8V1765ZM9 1769H11V1773H9V1769Z" fill="#FAFAFA"/>
149
- <path d="M17.3299 1756.62C16.5688 1756.27 15.9382 1755.68 15.5272 1754.95C15.1161 1754.22 14.9456 1753.38 15.0395 1752.54C15.1335 1751.71 15.4874 1750.93 16.0509 1750.31C16.6145 1749.68 17.3593 1749.26 18.1799 1749.08C18.5515 1748.34 19.0007 1747.64 19.5199 1747C19.3467 1746.99 19.1731 1746.99 18.9999 1747C17.4842 1747.01 16.0273 1747.59 14.9217 1748.62C13.8161 1749.66 13.1438 1751.08 13.04 1752.59C12.9361 1754.1 13.4084 1755.6 14.3619 1756.77C15.3153 1757.95 16.6794 1758.73 18.1799 1758.94C17.8139 1758.2 17.5289 1757.42 17.3299 1756.62ZM19.5799 1761.06H14.9999C14.7506 1761.06 14.5115 1761.16 14.3352 1761.34C14.1589 1761.51 14.0599 1761.75 14.0599 1762C14.0599 1762.25 14.1589 1762.49 14.3352 1762.66C14.5115 1762.84 14.7506 1762.94 14.9999 1762.94H21.6199C20.8613 1762.4 20.1756 1761.77 19.5799 1761.06Z" fill="#FAFAFA"/>
150
- <path d="M34.23 1763.06C33.6617 1763.45 33.0592 1763.78 32.43 1764.06L33 1766.06V1775H5V1766.06L8.13 1755H11.26C11.0893 1754.35 11.0019 1753.67 11 1753H8.13C7.70279 1753 7.28687 1753.14 6.94316 1753.39C6.59946 1753.64 6.34603 1754 6.22 1754.41L3.09 1765.48C3.03066 1765.67 3.00032 1765.87 3 1766.07V1775C3 1775.53 3.21071 1776.04 3.58579 1776.41C3.96086 1776.79 4.46957 1777 5 1777H33C33.5304 1777 34.0391 1776.79 34.4142 1776.41C34.7893 1776.04 35 1775.53 35 1775V1766.06C34.9997 1765.86 34.9693 1765.66 34.91 1765.47L34.23 1763.06Z" fill="#FAFAFA"/>
151
- <path d="M28 1745C26.22 1745 24.4799 1745.53 22.9999 1746.52C21.5198 1747.51 20.3663 1748.91 19.6851 1750.56C19.0039 1752.2 18.8257 1754.01 19.1729 1755.76C19.5202 1757.5 20.3774 1759.11 21.636 1760.36C22.8947 1761.62 24.4984 1762.48 26.2442 1762.83C27.99 1763.17 29.7996 1763 31.4442 1762.31C33.0887 1761.63 34.4943 1760.48 35.4832 1759C36.4722 1757.52 37 1755.78 37 1754C37 1751.61 36.0518 1749.32 34.364 1747.64C32.6761 1745.95 30.387 1745 28 1745ZM29 1759H27V1757H29V1759ZM29 1755H27V1749H29V1755Z" fill="#F84E30"/>
152
- <path d="M13.11 1803.52C12.9534 1803.36 12.8127 1803.19 12.69 1803H8V1805H14.58L13.11 1803.52ZM30 1803.52V1803H29.48L30 1803.52ZM17 1807.45L16.55 1807H15V1811H17V1807.45ZM9 1807H11V1811H9V1807ZM33 1804.06V1806.55L35 1808.55V1804.05C34.9997 1803.85 34.9693 1803.65 34.91 1803.46L31.78 1792.41C31.654 1792 31.4005 1791.64 31.0568 1791.39C30.7131 1791.14 30.2972 1791 29.87 1791H27C26.9956 1791.67 26.9082 1792.35 26.74 1793H29.87L33 1804.06Z" fill="#FAFAFA"/>
153
- <path d="M22.49 1813H5V1804.06L8.13 1793H11.26C11.0918 1792.35 11.0044 1791.67 11 1791H8.13C7.70279 1791 7.28687 1791.14 6.94316 1791.39C6.59946 1791.64 6.34603 1792 6.22 1792.41L3.09 1803.48C3.03066 1803.67 3.00032 1803.87 3 1804.07V1813C3 1813.53 3.21071 1814.04 3.58579 1814.41C3.96086 1814.79 4.46957 1815 5 1815H24.46L22.49 1813ZM15.59 1795.93L16.47 1795.05C16.6757 1794.85 16.9039 1794.67 17.15 1794.52C16.3593 1794.1 15.731 1793.43 15.3653 1792.62C14.9995 1791.8 14.9174 1790.89 15.1321 1790.02C15.3467 1789.15 15.8457 1788.38 16.5495 1787.83C17.2533 1787.28 18.1213 1786.98 19.015 1786.98C19.9087 1786.98 20.7767 1787.28 21.4805 1787.83C22.1843 1788.38 22.6833 1789.15 22.8979 1790.02C23.1126 1790.89 23.0305 1791.8 22.6647 1792.62C22.299 1793.43 21.6707 1794.1 20.88 1794.52C21.1381 1794.67 21.3766 1794.85 21.59 1795.06L22.44 1795.92C23.4891 1795.19 24.278 1794.15 24.6917 1792.94C25.1055 1791.73 25.1225 1790.42 24.7403 1789.2C24.3581 1787.98 23.5967 1786.91 22.5669 1786.16C21.5371 1785.4 20.2927 1784.99 19.015 1784.99C17.7373 1784.99 16.4929 1785.4 15.4631 1786.16C14.4333 1786.91 13.6719 1787.98 13.2897 1789.2C12.9075 1790.42 12.9245 1791.73 13.3383 1792.94C13.752 1794.15 14.5409 1795.19 15.59 1795.92V1795.93Z" fill="#FAFAFA"/>
154
- <path d="M14.5198 1799.83C14.2193 1800.13 14.0508 1800.54 14.0508 1800.97C14.0508 1801.4 14.2193 1801.81 14.5198 1802.11L28.1798 1815.92L32.9998 1817H33.3598C33.4659 1817.01 33.5736 1817.01 33.6798 1817C33.8982 1816.97 34.1077 1816.89 34.2949 1816.77C34.4821 1816.66 34.6429 1816.5 34.7671 1816.32C34.8913 1816.14 34.9761 1815.93 35.0162 1815.71C35.0562 1815.5 35.0506 1815.27 34.9998 1815.06L33.8898 1810.25L20.1698 1796.46C19.8681 1796.16 19.4601 1795.99 19.0348 1795.99C18.6095 1795.99 18.2014 1796.16 17.8998 1796.46L14.5398 1799.83H14.5198ZM18.9098 1803.68L21.7298 1800.86L31.9998 1811.25L32.8498 1814.88L29.1898 1814.07L18.9098 1803.68ZM16.2098 1801L19.0498 1798.16L20.5998 1799.74L17.7798 1802.56L16.2098 1801Z" fill="#FAFAFA"/>
155
- <path d="M20.65 1841H8V1843H20.53C20.4899 1842.33 20.5302 1841.66 20.65 1841ZM9 1845H11V1849H9V1845ZM17 1846.93V1845H15V1849H15.11C15.3081 1848.69 15.5394 1848.39 15.8 1848.13L17 1846.93ZM31 1835L31.39 1835.13L32.81 1835.69L33.33 1835.9L31.78 1830.41C31.654 1830 31.4005 1829.64 31.0568 1829.39C30.7131 1829.14 30.2972 1829 29.87 1829H27C26.9956 1829.67 26.9082 1830.35 26.74 1831H29.87L31 1835ZM19 1835C20.1867 1835 21.3467 1834.65 22.3334 1833.99C23.3201 1833.33 24.0892 1832.39 24.5433 1831.3C24.9974 1830.2 25.1162 1828.99 24.8847 1827.83C24.6532 1826.67 24.0818 1825.6 23.2426 1824.76C22.4035 1823.92 21.3344 1823.35 20.1705 1823.12C19.0067 1822.88 17.8003 1823 16.7039 1823.46C15.6075 1823.91 14.6705 1824.68 14.0112 1825.67C13.3519 1826.65 13 1827.81 13 1829C13 1830.59 13.6321 1832.12 14.7574 1833.24C15.8826 1834.37 17.4087 1835 19 1835ZM19 1825C19.7911 1825 20.5645 1825.23 21.2223 1825.67C21.8801 1826.11 22.3928 1826.74 22.6955 1827.47C22.9983 1828.2 23.0775 1829 22.9231 1829.78C22.7688 1830.56 22.3878 1831.27 21.8284 1831.83C21.269 1832.39 20.5563 1832.77 19.7804 1832.92C19.0044 1833.08 18.2002 1833 17.4693 1832.7C16.7384 1832.39 16.1136 1831.88 15.6741 1831.22C15.2346 1830.56 15 1829.79 15 1829C15 1827.94 15.4214 1826.92 16.1716 1826.17C16.9217 1825.42 17.9391 1825 19 1825ZM34.14 1848.18C33.7859 1848.52 33.4047 1848.84 33 1849.12V1851H27.07L25.07 1853H33C33.5304 1853 34.0391 1852.79 34.4142 1852.41C34.7893 1852.04 35 1851.53 35 1851V1847.14C34.7389 1847.51 34.4515 1847.85 34.14 1848.18Z" fill="#FAFAFA"/>
156
- <path d="M14.4 1851H5V1842.06L8.13 1831H11.26C11.0918 1830.35 11.0044 1829.67 11 1829H8.13C7.70279 1829 7.28687 1829.14 6.94316 1829.39C6.59946 1829.64 6.34603 1830 6.22 1830.41L3.09 1841.48C3.03066 1841.67 3.00032 1841.87 3 1842.07V1851C3 1851.53 3.21071 1852.04 3.58579 1852.41C3.96086 1852.79 4.46957 1853 5 1853H14.55C14.3704 1852.35 14.3195 1851.67 14.4 1851ZM14.06 1838C14.06 1838.25 14.159 1838.49 14.3353 1838.66C14.5116 1838.84 14.7507 1838.94 15 1838.94H21.34C21.6842 1838.25 22.1254 1837.62 22.65 1837.06H15C14.7507 1837.06 14.5116 1837.16 14.3353 1837.34C14.159 1837.51 14.06 1837.75 14.06 1838ZM17.22 1853.78C16.6612 1853.22 16.3476 1852.46 16.3476 1851.67C16.3476 1850.87 16.6612 1850.11 17.22 1849.55L22.72 1844.05C22.4408 1842.99 22.4613 1841.87 22.7793 1840.82C23.0972 1839.76 23.7002 1838.82 24.5214 1838.09C25.3426 1837.36 26.3498 1836.87 27.4316 1836.68C28.5133 1836.49 29.6273 1836.6 30.65 1837L32.07 1837.55L29.18 1840.4C29.0868 1840.49 29.0128 1840.6 28.9623 1840.73C28.9119 1840.85 28.8859 1840.98 28.8859 1841.11C28.8859 1841.24 28.9119 1841.37 28.9623 1841.49C29.0128 1841.62 29.0868 1841.73 29.18 1841.82C29.2732 1841.91 29.3839 1841.99 29.5058 1842.04C29.6276 1842.09 29.7581 1842.11 29.89 1842.11C30.0219 1842.11 30.1524 1842.09 30.2743 1842.04C30.3961 1841.99 30.5068 1841.91 30.6 1841.82L33.49 1838.93L34 1840.35C34.3994 1841.37 34.5102 1842.48 34.3203 1843.55C34.1305 1844.63 33.6473 1845.64 32.9238 1846.46C32.2004 1847.28 31.2647 1847.88 30.2196 1848.21C29.1745 1848.53 28.0605 1848.56 27 1848.29L21.5 1853.79C21.2201 1854.07 20.8865 1854.3 20.5187 1854.45C20.151 1854.61 19.7563 1854.68 19.3579 1854.68C18.9595 1854.68 18.5652 1854.6 18.1982 1854.45C17.8311 1854.29 17.4986 1854.06 17.22 1853.78ZM28.22 1838.54C27.5921 1838.58 26.9832 1838.77 26.4426 1839.09C25.902 1839.42 25.4451 1839.86 25.1089 1840.39C24.7728 1840.93 24.5669 1841.53 24.508 1842.16C24.4491 1842.78 24.5389 1843.41 24.77 1844L25.01 1844.6L18.63 1851C18.5169 1851.19 18.4705 1851.41 18.4983 1851.63C18.526 1851.85 18.6263 1852.06 18.7833 1852.22C18.9403 1852.37 19.1451 1852.47 19.3654 1852.5C19.5857 1852.53 19.809 1852.48 20 1852.37L26.43 1846L27.03 1846.24C27.6137 1846.47 28.2422 1846.55 28.8648 1846.49C29.4875 1846.43 30.0869 1846.22 30.615 1845.88C31.1431 1845.55 31.5852 1845.09 31.9056 1844.56C32.226 1844.02 32.4159 1843.41 32.46 1842.79L32.01 1843.24C31.4413 1843.77 30.6891 1844.06 29.9119 1844.04C29.1347 1844.03 28.3932 1843.72 27.8435 1843.17C27.2939 1842.62 26.979 1841.88 26.9653 1841.1C26.9516 1840.32 27.2401 1839.57 27.77 1839L28.22 1838.54Z" fill="#FAFAFA"/>
157
- <path d="M21 1883H23V1887H21V1883ZM27 1883H29V1887H27V1883ZM15 1883H17V1887H15V1883ZM9 1883H11V1887H9V1883Z" fill="#FAFAFA"/>
158
- <path d="M33 1881.11V1889H5V1880.06L8.13 1869H11.26C11.0893 1868.35 11.0019 1867.67 11 1867H8.13C7.70279 1867 7.28687 1867.14 6.94316 1867.39C6.59946 1867.64 6.34603 1868 6.22 1868.41L3.09 1879.48C3.03066 1879.67 3.00032 1879.87 3 1880.07V1889C3 1889.53 3.21071 1890.04 3.58579 1890.41C3.96086 1890.79 4.46957 1891 5 1891H33C33.5304 1891 34.0391 1890.79 34.4142 1890.41C34.7893 1890.04 35 1889.53 35 1889V1880.56C34.3724 1880.86 33.6946 1881.05 33 1881.11Z" fill="#FAFAFA"/>
159
- <path d="M15 1871.44L16 1869.66C15.3523 1868.93 14.9965 1867.98 15 1867C15 1865.94 15.4214 1864.92 16.1716 1864.17C16.9217 1863.42 17.9391 1863 19 1863C19.2822 1863 19.5634 1863.03 19.84 1863.09L20.84 1861.3C20.0689 1861.05 19.2538 1860.95 18.4454 1861.03C17.6369 1861.1 16.8523 1861.34 16.14 1861.73C14.7414 1862.49 13.7008 1863.77 13.247 1865.29C12.7932 1866.82 12.9633 1868.46 13.72 1869.86C14.0518 1870.46 14.485 1870.99 15 1871.44ZM15 1879H8V1881H18.32C17.0194 1880.73 15.8493 1880.02 15 1879Z" fill="#FAFAFA"/>
160
- <path d="M26 1860.19C25.3206 1860.19 24.6523 1860.36 24.0636 1860.7C23.4749 1861.04 22.987 1861.53 22.65 1862.12L16.19 1873.35C15.8513 1873.94 15.673 1874.6 15.6729 1875.28C15.6727 1875.96 15.8508 1876.62 16.1893 1877.21C16.5277 1877.8 17.0146 1878.28 17.601 1878.62C18.1874 1878.96 18.8527 1879.14 19.53 1879.14H32.53C33.2073 1879.14 33.8726 1878.96 34.459 1878.62C35.0454 1878.28 35.5323 1877.8 35.8707 1877.21C36.2092 1876.62 36.3873 1875.96 36.3871 1875.28C36.387 1874.6 36.2087 1873.94 35.87 1873.35L29.36 1862.12C29.0229 1861.53 28.5337 1861.04 27.9429 1860.7C27.3521 1860.36 26.6813 1860.18 26 1860.19Z" fill="#B68300"/>
161
- <path d="M25.9998 1862.19C26.3264 1862.19 26.6473 1862.27 26.9301 1862.44C27.2129 1862.6 27.4474 1862.84 27.6098 1863.12L34.0898 1874.35C34.253 1874.63 34.339 1874.95 34.339 1875.28C34.339 1875.61 34.2532 1875.93 34.09 1876.21C33.9268 1876.49 33.6922 1876.73 33.4095 1876.89C33.1269 1877.05 32.8062 1877.14 32.4798 1877.14H19.4798C19.1534 1877.14 18.8327 1877.05 18.5501 1876.89C18.2674 1876.73 18.0328 1876.49 17.8696 1876.21C17.7064 1875.93 17.6206 1875.61 17.6206 1875.28C17.6206 1874.95 17.7066 1874.63 17.8698 1874.35L24.4098 1863.12C24.5689 1862.84 24.7999 1862.6 25.0793 1862.44C25.3586 1862.28 25.6762 1862.19 25.9998 1862.19Z" fill="#FFE02C"/>
162
- <path d="M25 1873H27V1875H25V1873ZM25 1865H27V1871H25V1865Z" fill="#454545"/>
163
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.6282 1899.8C18.4774 1899.31 19.5235 1899.31 20.3727 1899.8L31.4817 1906.21C32.3309 1906.7 32.8539 1907.61 32.8539 1908.59V1921.41C32.8539 1922.39 32.3309 1923.3 31.4817 1923.79L20.3727 1930.2C19.5235 1930.69 18.4774 1930.69 17.6282 1930.2L6.51919 1923.79C5.67006 1923.3 5.14697 1922.39 5.14697 1921.41V1908.59C5.14697 1907.61 5.67006 1906.7 6.51919 1906.21L17.6282 1899.8ZM19.3171 1901.62C19.1212 1901.51 18.8797 1901.51 18.6838 1901.62L8.31364 1907.61L19.0005 1913.78L29.6873 1907.61L19.3171 1901.62ZM30.7428 1909.44L20.056 1915.61V1927.95L30.4262 1921.96C30.6221 1921.85 30.7428 1921.64 30.7428 1921.41V1909.44ZM17.9449 1927.95V1915.61L7.25808 1909.44V1921.41C7.25808 1921.64 7.3788 1921.85 7.57475 1921.96L17.9449 1927.95Z" fill="#E9EAEC"/>
164
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 1937.46C18.2509 1937.51 17.9273 1937.62 17.6282 1937.8L6.51919 1944.21C5.67006 1944.7 5.14697 1945.61 5.14697 1946.59V1959.41C5.14697 1960.39 5.67006 1961.3 6.51919 1961.79L17.6282 1968.2C18.4774 1968.69 19.5235 1968.69 20.3727 1968.2L31.4817 1961.79C32.3309 1961.3 32.8539 1960.39 32.8539 1959.41V1954.27C32.1794 1954.54 31.4734 1954.75 30.7428 1954.89V1959.41C30.7428 1959.64 30.6221 1959.85 30.4262 1959.96L20.056 1965.95V1953.61L21.5084 1952.77C20.918 1952.32 20.3715 1951.82 19.8766 1951.28L19.0005 1951.78L8.31364 1945.61L17.3014 1940.42C17.5906 1939.37 18.025 1938.37 18.5816 1937.46ZM17.9449 1953.61V1965.95L7.57475 1959.96C7.3788 1959.85 7.25808 1959.64 7.25808 1959.41V1947.44L17.9449 1953.61Z" fill="#E9EAEC"/>
165
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 1943.5C38 1948.75 33.7467 1953 28.5 1953C23.2533 1953 19 1948.75 19 1943.5C19 1938.25 23.2533 1934 28.5 1934C33.7467 1934 38 1938.25 38 1943.5ZM28.5 1938.09C29.1296 1938.09 29.64 1938.6 29.64 1939.22V1942.36H32.775C33.4046 1942.36 33.915 1942.87 33.915 1943.5C33.915 1944.13 33.4046 1944.64 32.775 1944.64H29.64V1947.77C29.64 1948.4 29.1296 1948.91 28.5 1948.91C27.8704 1948.91 27.36 1948.4 27.36 1947.77V1944.64H24.225C23.5954 1944.64 23.085 1944.13 23.085 1943.5C23.085 1942.87 23.5954 1942.36 24.225 1942.36H27.36V1939.22C27.36 1938.6 27.8704 1938.09 28.5 1938.09Z" fill="#239332"/>
166
- <path d="M17.1998 2001H5.29984C5.19984 2001 5.19984 2001 5.19984 2000.9V1987.1C5.19984 1987 5.19984 1987 5.29984 1987H19.0998C19.1264 1987 19.1518 1987.01 19.1706 1987.03C19.1893 1987.05 19.1998 1987.07 19.1998 1987.1V1989H21.1998V1987.1C21.1972 1986.54 20.9751 1986.01 20.5819 1985.62C20.1886 1985.22 19.656 1985 19.0998 1985H5.29984C5.0222 1984.99 4.74605 1985.04 4.48817 1985.15C4.23028 1985.25 3.99604 1985.4 3.79965 1985.6C3.60326 1985.8 3.44883 1986.03 3.34572 1986.29C3.24262 1986.55 3.19299 1986.82 3.19984 1987.1V2000.9C3.19299 2001.18 3.24262 2001.45 3.34572 2001.71C3.44883 2001.97 3.60326 2002.2 3.79965 2002.4C3.99604 2002.6 4.23028 2002.75 4.48817 2002.85C4.74605 2002.96 5.0222 2003.01 5.29984 2003H17.1998V2001ZM9.19984 1977H23.1998V1979H25.1998V1977C25.1998 1976.47 24.9891 1975.96 24.6141 1975.59C24.239 1975.21 23.7303 1975 23.1998 1975H9.09984C8.84808 1974.99 8.59728 1975.04 8.36298 1975.13C8.12868 1975.22 7.91588 1975.36 7.73776 1975.54C7.55963 1975.72 7.41998 1975.93 7.32745 1976.16C7.23492 1976.4 7.19149 1976.65 7.19984 1976.9V1983H9.19984V1977Z" fill="#FAFAFA"/>
167
- <path d="M15.2002 1983H23.1002C23.1267 1983 23.1522 1983.01 23.1709 1983.03C23.1897 1983.05 23.2002 1983.07 23.2002 1983.1V1989H25.2002V1983.1C25.2002 1983.07 25.2107 1983.05 25.2295 1983.03C25.2482 1983.01 25.2737 1983 25.3002 1983H29.1002C29.1267 1983 29.1522 1983.01 29.1709 1983.03C29.1897 1983.05 29.2002 1983.07 29.2002 1983.1V1989.1C29.9237 1989.25 30.6059 1989.56 31.2002 1990V1983.1C31.2071 1982.82 31.1574 1982.55 31.0543 1982.29C30.9512 1982.03 30.7968 1981.8 30.6004 1981.6C30.404 1981.4 30.1698 1981.25 29.9119 1981.15C29.654 1981.04 29.3778 1980.99 29.1002 1981H15.2002V1983ZM23.2002 2001V2005H22.2002C22.0666 2005.01 21.9326 2004.99 21.8073 2004.94C21.682 2004.89 21.5681 2004.82 21.4735 2004.73C21.3788 2004.63 21.3054 2004.52 21.2583 2004.39C21.2112 2004.27 21.1914 2004.13 21.2002 2004V1993H28.2002C28.3338 1992.99 28.4678 1993.01 28.5931 1993.06C28.7184 1993.11 28.8322 1993.18 28.9269 1993.27C29.0216 1993.37 29.095 1993.48 29.1421 1993.61C29.1892 1993.73 29.209 1993.87 29.2002 1994V2002H31.2002V1994C31.2002 1993.2 30.8841 1992.44 30.3215 1991.88C29.7589 1991.32 28.9958 1991 28.2002 1991H18.2002C17.4045 1991 16.6415 1991.32 16.0789 1991.88C15.5163 1992.44 15.2002 1993.2 15.2002 1994V1995H17.2002V1994C17.1914 1993.87 17.2112 1993.73 17.2583 1993.61C17.3054 1993.48 17.3788 1993.37 17.4735 1993.27C17.5681 1993.18 17.682 1993.11 17.8073 1993.06C17.9326 1993.01 18.0666 1992.99 18.2002 1993H19.2002V2004C19.2002 2004.8 19.5163 2005.56 20.0789 2006.12C20.6415 2006.68 21.4045 2007 22.2002 2007H32.2002C32.9958 2007 33.7589 2006.68 34.3215 2006.12C34.8841 2005.56 35.2002 2004.8 35.2002 2004V2001H23.2002ZM33.2002 2004C33.209 2004.13 33.1892 2004.27 33.1421 2004.39C33.095 2004.52 33.0216 2004.63 32.9269 2004.73C32.8322 2004.82 32.7184 2004.89 32.5931 2004.94C32.4678 2004.99 32.3338 2005.01 32.2002 2005H25.2002V2003H33.2002V2004Z" fill="#FAFAFA"/>
168
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.1665 2033.22C3.1665 2031.47 4.58427 2030.06 6.33317 2030.06H31.6665C33.4154 2030.06 34.8332 2031.47 34.8332 2033.22V2039.56C34.8332 2041.3 33.4154 2042.72 31.6665 2042.72H6.33317C4.58427 2042.72 3.1665 2041.3 3.1665 2039.56V2033.22ZM6.33317 2032.17C5.7502 2032.17 5.27762 2032.64 5.27762 2033.22V2039.56C5.27762 2040.14 5.7502 2040.61 6.33317 2040.61H31.6665C32.2495 2040.61 32.7221 2040.14 32.7221 2039.56V2033.22C32.7221 2032.64 32.2495 2032.17 31.6665 2032.17H6.33317Z" fill="#E9EAEC"/>
169
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00539 2017.38C8.45551 2016.12 9.6493 2015.28 10.9876 2015.28H27.0121C28.3504 2015.28 29.5442 2016.12 29.9943 2017.38L34.6179 2030.33C34.7604 2030.72 34.8332 2031.14 34.8332 2031.57V2035.33H32.7221V2031.57C32.7221 2031.39 32.6909 2031.21 32.6298 2031.04L28.0062 2018.09C27.8561 2017.67 27.4582 2017.39 27.0121 2017.39H10.9876C10.5415 2017.39 10.1436 2017.67 9.99352 2018.09L5.36986 2031.04C5.30882 2031.21 5.27762 2031.39 5.27762 2031.57V2035.33H3.1665V2031.57C3.1665 2031.14 3.23931 2030.72 3.38174 2030.33L8.00539 2017.38Z" fill="#E9EAEC"/>
170
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20.0552 2036.39C20.0552 2035.81 20.5278 2035.33 21.1107 2035.33H29.5552C30.1381 2035.33 30.6107 2035.81 30.6107 2036.39C30.6107 2036.97 30.1381 2037.44 29.5552 2037.44H21.1107C20.5278 2037.44 20.0552 2036.97 20.0552 2036.39Z" fill="#E9EAEC"/>
171
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38867 2036.39C7.38867 2035.51 8.09755 2034.81 8.97201 2034.81H8.98784C9.86229 2034.81 10.5712 2035.51 10.5712 2036.39C10.5712 2037.26 9.86229 2037.97 8.98784 2037.97H8.97201C8.09755 2037.97 7.38867 2037.26 7.38867 2036.39Z" fill="#E9EAEC"/>
172
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.687 2036.39C12.687 2035.51 13.3959 2034.81 14.2703 2034.81H14.2862C15.1606 2034.81 15.8695 2035.51 15.8695 2036.39C15.8695 2037.26 15.1606 2037.97 14.2862 2037.97H14.2703C13.3959 2037.97 12.687 2037.26 12.687 2036.39Z" fill="#E9EAEC"/>
173
- <path d="M7 2055.4H11V2056.6H7V2055.4ZM17 2055.4H21V2056.6H17V2055.4ZM27 2055.4H31V2056.6H27V2055.4Z" fill="#FAFAFA"/>
174
- <path d="M33 2051H5C4.46957 2051 3.96086 2051.21 3.58579 2051.59C3.21071 2051.96 3 2052.47 3 2053V2069H5V2053H13V2061H15V2053H23V2065H25V2053H33V2069H25V2071H35V2053C35 2052.47 34.7893 2051.96 34.4142 2051.59C34.0391 2051.21 33.5304 2051 33 2051Z" fill="#FAFAFA"/>
175
- <path d="M19 2063H7V2071H5V2083H17V2079H23V2067H19V2063ZM9 2065H17V2067H11V2071H9V2065ZM15 2081H7V2073H15V2081ZM21 2069V2077H17V2071H13V2069H21Z" fill="#FAFAFA"/>
176
- <path d="M19.09 2107.59C18.5516 2107.59 18.0301 2107.78 17.6086 2108.11C17.1871 2108.45 16.89 2108.91 16.7646 2109.44C16.6391 2109.96 16.6926 2110.51 16.9166 2111C17.1405 2111.49 17.5219 2111.89 18 2112.14V2115H20V2112.23C20.5163 2112.02 20.9432 2111.63 21.2079 2111.14C21.4725 2110.65 21.5585 2110.08 21.4511 2109.54C21.3437 2108.99 21.0496 2108.5 20.619 2108.14C20.1884 2107.79 19.648 2107.59 19.09 2107.59Z" fill="#FAFAFA"/>
177
- <path d="M27.13 2104H28V2119H10V2104H21.22L19.22 2102H13V2097.4C12.9971 2096.07 13.4366 2094.78 14.2494 2093.72C15.0622 2092.67 16.2022 2091.92 17.49 2091.58L19.3 2089.75L21.46 2091.9C22.5787 2092.4 23.5174 2093.23 24.15 2094.28L25.54 2092.76C24.5597 2091.37 23.161 2090.33 21.5475 2089.78C19.9339 2089.24 18.1894 2089.23 16.5678 2089.75C14.9462 2090.26 13.5319 2091.29 12.5306 2092.66C11.5292 2094.04 10.993 2095.7 11 2097.4V2102H8V2119C8 2119.53 8.21071 2120.04 8.58579 2120.41C8.96086 2120.79 9.46957 2121 10 2121H28C28.5304 2121 29.0391 2120.79 29.4142 2120.41C29.7893 2120.04 30 2119.53 30 2119V2102H29L27.13 2104Z" fill="#FAFAFA"/>
178
- <path d="M24.2401 2104.19L16.0601 2096.02L19.3301 2092.75L24.0901 2097.51L33.5301 2087.22L36.9401 2090.35L24.2401 2104.19Z" fill="#59A011"/>
179
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2133.5C38 2138.75 33.7467 2143 28.5 2143C23.2533 2143 19 2138.75 19 2133.5C19 2128.25 23.2533 2124 28.5 2124C33.7467 2124 38 2128.25 38 2133.5ZM28.5 2134.07C29.1296 2134.07 29.64 2133.56 29.64 2132.93V2129.13C29.64 2128.5 29.1296 2127.99 28.5 2127.99C27.8704 2127.99 27.36 2128.5 27.36 2129.13V2132.93C27.36 2133.56 27.8704 2134.07 28.5 2134.07ZM28.5 2135.97C27.7655 2135.97 27.17 2136.57 27.17 2137.3C27.17 2138.03 27.7655 2138.63 28.5 2138.63H28.5095C29.244 2138.63 29.8395 2138.03 29.8395 2137.3C29.8395 2136.57 29.244 2135.97 28.5095 2135.97H28.5Z" fill="#EA3223"/>
180
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2127.46C18.2509 2127.51 17.9273 2127.62 17.6282 2127.8L6.51919 2134.21C5.67006 2134.7 5.14697 2135.61 5.14697 2136.59V2149.41C5.14697 2150.39 5.67006 2151.3 6.51919 2151.79L17.6282 2158.2C18.4774 2158.69 19.5235 2158.69 20.3727 2158.2L31.4817 2151.79C32.3309 2151.3 32.8539 2150.39 32.8539 2149.41V2144.27C32.1794 2144.54 31.4734 2144.75 30.7428 2144.89V2149.41C30.7428 2149.64 30.6221 2149.85 30.4262 2149.96L20.056 2155.95V2143.61L21.5084 2142.77C20.918 2142.32 20.3715 2141.82 19.8766 2141.28L19.0005 2141.78L8.31364 2135.61L17.3014 2130.42C17.5906 2129.37 18.025 2128.37 18.5816 2127.46ZM17.9449 2143.61V2155.95L7.57475 2149.96C7.3788 2149.85 7.25808 2149.64 7.25808 2149.41V2137.44L17.9449 2143.61Z" fill="#E9EAEC"/>
181
- <path d="M32.61 2180.59L32.45 2180.74C32.0276 2181.09 31.5323 2181.34 31 2181.48V2189H23V2180C23 2179.47 22.7893 2178.96 22.4142 2178.59C22.0391 2178.21 21.5304 2178 21 2178H7C6.46957 2178 5.96086 2178.21 5.58579 2178.59C5.21071 2178.96 5 2179.47 5 2180V2194C5 2194.53 5.21071 2195.04 5.58579 2195.41C5.96086 2195.79 6.46957 2196 7 2196H21C21.5304 2196 22.0391 2195.79 22.4142 2195.41C22.7893 2195.04 23 2194.53 23 2194V2191H31C31.5304 2191 32.0391 2190.79 32.4142 2190.41C32.7893 2190.04 33 2189.53 33 2189V2180.19L32.61 2180.59ZM21 2189H17V2183H15V2189C15 2189.53 15.2107 2190.04 15.5858 2190.41C15.9609 2190.79 16.4696 2191 17 2191H21V2194H7V2180H21V2189ZM22.3 2173H18V2175H22.44C22.2096 2174.36 22.1612 2173.67 22.3 2173ZM35 2173.05C34.8126 2172.86 34.5592 2172.76 34.295 2172.76C34.0308 2172.76 33.7774 2172.86 33.59 2173.05L30.93 2175.71V2168.71C30.93 2168.44 31.0354 2168.19 31.2229 2168C31.4104 2167.82 31.6648 2167.71 31.93 2167.71H34.93V2165.71H31.93C31.1344 2165.71 30.3713 2166.03 29.8087 2166.59C29.2461 2167.15 28.93 2167.91 28.93 2168.71V2175.42L26.52 2173C26.3326 2172.81 26.0792 2172.71 25.815 2172.71C25.5508 2172.71 25.2974 2172.81 25.11 2173C24.9237 2173.19 24.8192 2173.44 24.8192 2173.7C24.8192 2173.97 24.9237 2174.22 25.11 2174.41L29.35 2178.65C29.5363 2178.83 29.7877 2178.94 30.05 2178.94C30.3088 2178.96 30.5634 2178.87 30.76 2178.7L35 2174.47C35.0937 2174.38 35.1681 2174.27 35.2189 2174.14C35.2697 2174.02 35.2958 2173.89 35.2958 2173.76C35.2958 2173.63 35.2697 2173.5 35.2189 2173.38C35.1681 2173.25 35.0937 2173.14 35 2173.05ZM26.38 2168C26.4688 2167.38 26.6544 2166.79 26.93 2166.23C26.6432 2166.08 26.3241 2166 26 2166H12C11.4696 2166 10.9609 2166.21 10.5858 2166.59C10.2107 2166.96 10 2167.47 10 2168V2175H12V2168H26.38Z" fill="#FAFAFA"/>
182
- <path d="M27.1602 2207C27.1602 2206.47 26.9494 2205.96 26.5744 2205.59C26.1993 2205.21 25.6906 2205 25.1602 2205H11.0002C10.5094 2205.01 10.0414 2205.21 9.69722 2205.56C9.35299 2205.91 9.16009 2206.38 9.16016 2206.87V2213H11.1602V2207H25.1602V2209H27.1602V2207Z" fill="#FAFAFA"/>
183
- <path d="M27.1602 2213.09V2211H17.1602V2213H25.0702C25.094 2213 25.1169 2213.01 25.1338 2213.03C25.1507 2213.04 25.1602 2213.07 25.1602 2213.09V2219H27.1602V2213.09Z" fill="#FAFAFA"/>
184
- <path d="M31.1602 2223V2226.91C31.1602 2226.93 31.1507 2226.96 31.1338 2226.97C31.1169 2226.99 31.094 2227 31.0702 2227H23.2502C23.2263 2227 23.2034 2226.99 23.1865 2226.97C23.1697 2226.96 23.1602 2226.93 23.1602 2226.91V2217.09C23.1615 2216.82 23.109 2216.55 23.0057 2216.29C22.9024 2216.04 22.7503 2215.81 22.558 2215.62C22.3658 2215.42 22.1373 2215.27 21.8854 2215.16C21.6335 2215.06 21.3633 2215 21.0902 2215H7.25018C6.97703 2215 6.7063 2215.05 6.45343 2215.15C6.20057 2215.26 5.97054 2215.41 5.77646 2215.6C5.58239 2215.79 5.42807 2216.02 5.32233 2216.27C5.21659 2216.53 5.16149 2216.8 5.16018 2217.07V2230.91C5.15886 2231.18 5.21136 2231.45 5.31468 2231.71C5.41799 2231.96 5.5701 2232.19 5.76232 2232.38C5.95454 2232.58 6.1831 2232.73 6.43496 2232.84C6.68681 2232.94 6.95703 2233 7.23018 2233H21.0702C21.3433 2233 21.6141 2232.95 21.8669 2232.85C22.1198 2232.74 22.3498 2232.59 22.5439 2232.4C22.738 2232.21 22.8923 2231.98 22.998 2231.73C23.1038 2231.47 23.1589 2231.2 23.1602 2230.93V2229.09C23.1602 2229.07 23.1697 2229.04 23.1865 2229.03C23.2034 2229.01 23.2263 2229 23.2502 2229H31.0702C31.3433 2229 31.6141 2228.95 31.8669 2228.85C32.1198 2228.74 32.3498 2228.59 32.5439 2228.4C32.738 2228.21 32.8923 2227.98 32.998 2227.73C33.1038 2227.47 33.1589 2227.2 33.1602 2226.93V2223H31.1602ZM21.1602 2226.91C21.1602 2226.93 21.1507 2226.96 21.1338 2226.97C21.1169 2226.99 21.094 2227 21.0702 2227H17.2502C17.2263 2227 17.2034 2226.99 17.1865 2226.97C17.1697 2226.96 17.1602 2226.93 17.1602 2226.91V2221H15.1602V2226.91C15.1589 2227.18 15.2114 2227.45 15.3147 2227.71C15.418 2227.96 15.5701 2228.19 15.7623 2228.38C15.9545 2228.58 16.1831 2228.73 16.435 2228.84C16.6868 2228.94 16.957 2229 17.2302 2229H21.0702C21.094 2229 21.1169 2229.01 21.1338 2229.03C21.1507 2229.04 21.1602 2229.07 21.1602 2229.09V2230.91C21.1602 2230.93 21.1507 2230.96 21.1338 2230.97C21.1169 2230.99 21.094 2231 21.0702 2231H7.25018C7.22631 2231 7.20342 2230.99 7.18654 2230.97C7.16966 2230.96 7.16018 2230.93 7.16018 2230.91V2217.11C7.16018 2217.08 7.17177 2217.05 7.1924 2217.03C7.21303 2217.01 7.24101 2217 7.27018 2217H21.0702C21.094 2217 21.1169 2217.01 21.1338 2217.03C21.1507 2217.04 21.1602 2217.07 21.1602 2217.09V2226.91Z" fill="#FAFAFA"/>
185
- <path d="M31.9603 2207.4C33.7276 2207.4 35.1603 2205.97 35.1603 2204.2C35.1603 2202.43 33.7276 2201 31.9603 2201C30.1929 2201 28.7603 2202.43 28.7603 2204.2C28.7603 2205.97 30.1929 2207.4 31.9603 2207.4Z" fill="#E46C00"/>
186
- <path d="M29 2209H35V2221H29V2209Z" fill="#E46C00"/>
187
- <path d="M25.9999 2271C25.8683 2271 25.7379 2270.98 25.616 2270.93C25.4942 2270.88 25.3834 2270.8 25.2899 2270.71L18.9999 2264.41L12.7099 2270.71C12.617 2270.8 12.5064 2270.88 12.3845 2270.93C12.2627 2270.98 12.132 2271.01 11.9999 2271.01C11.8679 2271.01 11.7372 2270.98 11.6154 2270.93C11.4935 2270.88 11.3829 2270.8 11.2899 2270.71L5.28994 2264.71C5.19621 2264.62 5.12182 2264.51 5.07105 2264.38C5.02028 2264.26 4.99414 2264.13 4.99414 2264C4.99414 2263.87 5.02028 2263.74 5.07105 2263.62C5.12182 2263.49 5.19621 2263.38 5.28994 2263.29L11.5899 2257L5.28994 2250.71C5.19621 2250.62 5.12182 2250.51 5.07105 2250.38C5.02028 2250.26 4.99414 2250.13 4.99414 2250C4.99414 2249.87 5.02028 2249.74 5.07105 2249.62C5.12182 2249.49 5.19621 2249.38 5.28994 2249.29L11.2899 2243.29C11.3829 2243.2 11.4935 2243.12 11.6154 2243.07C11.7372 2243.02 11.8679 2242.99 11.9999 2242.99C12.132 2242.99 12.2627 2243.02 12.3845 2243.07C12.5064 2243.12 12.617 2243.2 12.7099 2243.29L18.9999 2249.59L25.2899 2243.29C25.3829 2243.2 25.4935 2243.12 25.6154 2243.07C25.7372 2243.02 25.8679 2242.99 25.9999 2242.99C26.132 2242.99 26.2627 2243.02 26.3845 2243.07C26.5064 2243.12 26.617 2243.2 26.7099 2243.29L32.7099 2249.29C32.8037 2249.38 32.8781 2249.49 32.9288 2249.62C32.9796 2249.74 33.0057 2249.87 33.0057 2250C33.0057 2250.13 32.9796 2250.26 32.9288 2250.38C32.8781 2250.51 32.8037 2250.62 32.7099 2250.71L26.4099 2257L32.7099 2263.29C32.8037 2263.38 32.8781 2263.49 32.9288 2263.62C32.9796 2263.74 33.0057 2263.87 33.0057 2264C33.0057 2264.13 32.9796 2264.26 32.9288 2264.38C32.8781 2264.51 32.8037 2264.62 32.7099 2264.71L26.7099 2270.71C26.6165 2270.8 26.5057 2270.88 26.3838 2270.93C26.262 2270.98 26.1315 2271 25.9999 2271ZM18.9999 2262C19.1315 2262 19.262 2262.02 19.3838 2262.07C19.5057 2262.12 19.6165 2262.2 19.7099 2262.29L25.9999 2268.59L30.5899 2264L24.2899 2257.71C24.1962 2257.62 24.1218 2257.51 24.071 2257.38C24.0203 2257.26 23.9941 2257.13 23.9941 2257C23.9941 2256.87 24.0203 2256.74 24.071 2256.62C24.1218 2256.49 24.1962 2256.38 24.2899 2256.29L30.5899 2250L25.9999 2245.41L19.7099 2251.71C19.617 2251.8 19.5064 2251.88 19.3845 2251.93C19.2627 2251.98 19.132 2252.01 18.9999 2252.01C18.8679 2252.01 18.7372 2251.98 18.6154 2251.93C18.4935 2251.88 18.3829 2251.8 18.2899 2251.71L11.9999 2245.41L7.40994 2250L13.7099 2256.29C13.8037 2256.38 13.8781 2256.49 13.9288 2256.62C13.9796 2256.74 14.0057 2256.87 14.0057 2257C14.0057 2257.13 13.9796 2257.26 13.9288 2257.38C13.8781 2257.51 13.8037 2257.62 13.7099 2257.71L7.40994 2264L11.9999 2268.59L18.2899 2262.29C18.3834 2262.2 18.4942 2262.12 18.616 2262.07C18.7379 2262.02 18.8683 2262 18.9999 2262Z" fill="#F84E30"/>
188
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2279.46C18.2509 2279.51 17.9273 2279.62 17.6282 2279.8L6.51919 2286.21C5.67006 2286.7 5.14697 2287.61 5.14697 2288.59V2301.41C5.14697 2302.39 5.67006 2303.3 6.51919 2303.79L17.6282 2310.2C18.4774 2310.69 19.5235 2310.69 20.3727 2310.2L31.4817 2303.79C32.3309 2303.3 32.8539 2302.39 32.8539 2301.41V2296.27C32.1794 2296.54 31.4734 2296.75 30.7428 2296.89V2301.41C30.7428 2301.64 30.6221 2301.85 30.4262 2301.96L20.056 2307.95V2295.61L21.5084 2294.77C20.918 2294.32 20.3715 2293.82 19.8766 2293.28L19.0005 2293.78L8.31364 2287.61L17.3014 2282.42C17.5906 2281.37 18.025 2280.37 18.5816 2279.46ZM17.9449 2295.61V2307.95L7.57475 2301.96C7.3788 2301.85 7.25808 2301.64 7.25808 2301.41V2289.44L17.9449 2295.61Z" fill="#E9EAEC"/>
189
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2285.5C38 2290.75 33.7467 2295 28.5 2295C23.2533 2295 19 2290.75 19 2285.5C19 2280.25 23.2533 2276 28.5 2276C33.7467 2276 38 2280.25 38 2285.5ZM27.4433 2281.54C27.1518 2281.35 26.777 2281.33 26.4681 2281.5C26.1592 2281.66 25.9664 2281.98 25.9664 2282.33V2288.67C25.9664 2289.02 26.1592 2289.34 26.4681 2289.5C26.777 2289.67 27.1518 2289.65 27.4433 2289.46L32.1933 2286.29C32.4576 2286.11 32.6164 2285.82 32.6164 2285.5C32.6164 2285.18 32.4576 2284.89 32.1933 2284.71L27.4433 2281.54Z" fill="#239332"/>
190
- <path d="M11 2321H25V2323H27V2321C27 2320.47 26.7893 2319.96 26.4142 2319.59C26.0391 2319.21 25.5304 2319 25 2319H10.87C10.374 2319 9.8984 2319.2 9.54771 2319.55C9.19702 2319.9 9 2320.37 9 2320.87V2327H11V2321Z" fill="#0091DA"/>
191
- <path d="M30.91 2325H17V2327H24.91C24.9339 2327 24.9568 2327.01 24.9737 2327.03C24.9905 2327.04 25 2327.07 25 2327.09V2333H27V2327.09C27 2327.07 27.0095 2327.04 27.0264 2327.03C27.0433 2327.01 27.0662 2327 27.09 2327H30.91C30.9339 2327 30.9568 2327.01 30.9737 2327.03C30.9905 2327.04 31 2327.07 31 2327.09V2340.91C31 2340.93 30.9905 2340.96 30.9737 2340.97C30.9568 2340.99 30.9339 2341 30.91 2341H23.09C23.0662 2341 23.0433 2340.99 23.0264 2340.97C23.0095 2340.96 23 2340.93 23 2340.91V2331.09C23.0013 2330.82 22.9482 2330.54 22.8436 2330.29C22.7391 2330.03 22.5852 2329.8 22.3908 2329.61C22.1965 2329.41 21.9656 2329.26 21.7114 2329.16C21.4572 2329.05 21.1849 2329 20.91 2329H7.09002C6.81519 2329 6.54282 2329.05 6.28865 2329.16C6.03448 2329.26 5.80356 2329.41 5.60922 2329.61C5.41488 2329.8 5.26098 2330.03 5.15642 2330.29C5.05185 2330.54 4.9987 2330.82 5.00002 2331.09V2344.91C4.9987 2345.18 5.05185 2345.46 5.15642 2345.71C5.26098 2345.97 5.41488 2346.2 5.60922 2346.39C5.80356 2346.59 6.03448 2346.74 6.28865 2346.84C6.54282 2346.95 6.81519 2347 7.09002 2347H20.91C21.1849 2347 21.4572 2346.95 21.7114 2346.84C21.9656 2346.74 22.1965 2346.59 22.3908 2346.39C22.5852 2346.2 22.7391 2345.97 22.8436 2345.71C22.9482 2345.46 23.0013 2345.18 23 2344.91V2343.09C23 2343.07 23.0095 2343.04 23.0264 2343.03C23.0433 2343.01 23.0662 2343 23.09 2343H30.91C31.1849 2343 31.4572 2342.95 31.7114 2342.84C31.9656 2342.74 32.1965 2342.59 32.3908 2342.39C32.5852 2342.2 32.7391 2341.97 32.8436 2341.71C32.9482 2341.46 33.0013 2341.18 33 2340.91V2327.09C33.0013 2326.82 32.9482 2326.54 32.8436 2326.29C32.7391 2326.03 32.5852 2325.8 32.3908 2325.61C32.1965 2325.41 31.9656 2325.26 31.7114 2325.16C31.4572 2325.05 31.1849 2325 30.91 2325ZM7.00002 2344.91V2331.11C7.00002 2331.1 7.00287 2331.08 7.0084 2331.07C7.01393 2331.05 7.02203 2331.04 7.03224 2331.03C7.04246 2331.02 7.05458 2331.01 7.06793 2331.01C7.08127 2331 7.09558 2331 7.11002 2331H20.91C20.9339 2331 20.9568 2331.01 20.9737 2331.03C20.9905 2331.04 21 2331.07 21 2331.09V2340.91C21 2340.93 20.9905 2340.96 20.9737 2340.97C20.9568 2340.99 20.9339 2341 20.91 2341H17.09C17.0662 2341 17.0433 2340.99 17.0264 2340.97C17.0095 2340.96 17 2340.93 17 2340.91V2335H15V2340.91C14.9987 2341.18 15.0519 2341.46 15.1564 2341.71C15.261 2341.97 15.4149 2342.2 15.6092 2342.39C15.8036 2342.59 16.0345 2342.74 16.2887 2342.84C16.5428 2342.95 16.8152 2343 17.09 2343H20.91C20.9339 2343 20.9568 2343.01 20.9737 2343.03C20.9905 2343.04 21 2343.07 21 2343.09V2344.91C21 2344.93 20.9905 2344.96 20.9737 2344.97C20.9568 2344.99 20.9339 2345 20.91 2345H7.09002C7.06615 2345 7.04326 2344.99 7.02638 2344.97C7.00951 2344.96 7.00002 2344.93 7.00002 2344.91Z" fill="#0091DA"/>
192
- <path d="M18.23 2357H10.87C10.3741 2357 9.89843 2357.2 9.54773 2357.55C9.19704 2357.9 9.00002 2358.37 9.00002 2358.87V2365H11V2359H17.43C17.6279 2358.31 17.8959 2357.64 18.23 2357ZM31 2372.57V2378.91C31 2378.93 30.9905 2378.96 30.9737 2378.97C30.9568 2378.99 30.9339 2379 30.91 2379H23.09C23.0662 2379 23.0433 2378.99 23.0264 2378.97C23.0095 2378.96 23 2378.93 23 2378.91V2371.79C22.2882 2371.43 21.6177 2370.99 21 2370.48V2378.91C21 2378.93 20.9905 2378.96 20.9737 2378.97C20.9568 2378.99 20.9339 2379 20.91 2379H17.09C17.0662 2379 17.0433 2378.99 17.0264 2378.97C17.0095 2378.96 17 2378.93 17 2378.91V2373H15V2378.91C14.9987 2379.18 15.0512 2379.45 15.1545 2379.71C15.2578 2379.96 15.4099 2380.19 15.6022 2380.38C15.7944 2380.58 16.0229 2380.73 16.2748 2380.84C16.5267 2380.94 16.7969 2381 17.07 2381H20.91C20.9339 2381 20.9568 2381.01 20.9737 2381.03C20.9905 2381.04 21 2381.07 21 2381.09V2382.91C21 2382.93 20.9905 2382.96 20.9737 2382.97C20.9568 2382.99 20.9339 2383 20.91 2383H7.09002C7.06615 2383 7.04326 2382.99 7.02638 2382.97C7.00951 2382.96 7.00002 2382.93 7.00002 2382.91V2369.11C7.00002 2369.1 7.00287 2369.08 7.0084 2369.07C7.01393 2369.05 7.02203 2369.04 7.03224 2369.03C7.04246 2369.02 7.05458 2369.01 7.06793 2369.01C7.08127 2369 7.09558 2369 7.11002 2369H19.52C19.0128 2368.38 18.5735 2367.71 18.21 2367H7.09002C6.81687 2367 6.54614 2367.05 6.29328 2367.15C6.04042 2367.26 5.81038 2367.41 5.61631 2367.6C5.42223 2367.79 5.26792 2368.02 5.16218 2368.27C5.05643 2368.53 5.00133 2368.8 5.00002 2369.07V2382.91C4.99871 2383.18 5.05121 2383.45 5.15452 2383.71C5.25784 2383.96 5.40995 2384.19 5.60216 2384.38C5.79438 2384.58 6.02294 2384.73 6.2748 2384.84C6.52666 2384.94 6.79687 2385 7.07002 2385H20.91C21.1832 2385 21.4539 2384.95 21.7068 2384.85C21.9596 2384.74 22.1897 2384.59 22.3837 2384.4C22.5778 2384.21 22.7321 2383.98 22.8379 2383.73C22.9436 2383.47 22.9987 2383.2 23 2382.93V2381.09C23 2381.07 23.0095 2381.04 23.0264 2381.03C23.0433 2381.01 23.0662 2381 23.09 2381H30.91C31.1832 2381 31.4539 2380.95 31.7068 2380.85C31.9596 2380.74 32.1897 2380.59 32.3837 2380.4C32.5778 2380.21 32.7321 2379.98 32.8379 2379.73C32.9436 2379.47 32.9987 2379.2 33 2378.93V2371.79C32.3617 2372.12 31.6916 2372.38 31 2372.57Z" fill="#0091DA"/>
193
- <path d="M28 2353C26.22 2353 24.4799 2353.53 22.9999 2354.52C21.5198 2355.51 20.3663 2356.91 19.6851 2358.56C19.0039 2360.2 18.8257 2362.01 19.1729 2363.76C19.5202 2365.5 20.3774 2367.11 21.636 2368.36C22.8947 2369.62 24.4984 2370.48 26.2442 2370.83C27.99 2371.17 29.7996 2371 31.4442 2370.31C33.0887 2369.63 34.4943 2368.48 35.4832 2367C36.4722 2365.52 37 2363.78 37 2362C37 2359.61 36.0518 2357.32 34.364 2355.64C32.6761 2353.95 30.387 2353 28 2353ZM29 2367H27V2365H29V2367ZM29 2363H27V2357H29V2363Z" fill="#F84E30"/>
194
- <path d="M27.1602 2397C27.1602 2396.47 26.9494 2395.96 26.5744 2395.59C26.1993 2395.21 25.6906 2395 25.1602 2395H11.0002C10.5094 2395.01 10.0414 2395.21 9.69722 2395.56C9.35299 2395.91 9.16009 2396.38 9.16016 2396.87V2403H11.1602V2397H25.1602V2399H27.1602V2397Z" fill="#0091DA"/>
195
- <path d="M27.1602 2403.09V2401H17.1602V2403H25.0702C25.094 2403 25.1169 2403.01 25.1338 2403.03C25.1507 2403.04 25.1602 2403.07 25.1602 2403.09V2409H27.1602V2403.09Z" fill="#0091DA"/>
196
- <path d="M31.1602 2413V2416.91C31.1602 2416.93 31.1507 2416.96 31.1338 2416.97C31.1169 2416.99 31.094 2417 31.0702 2417H23.2502C23.2263 2417 23.2034 2416.99 23.1865 2416.97C23.1697 2416.96 23.1602 2416.93 23.1602 2416.91V2407.09C23.1615 2406.82 23.109 2406.55 23.0057 2406.29C22.9024 2406.04 22.7503 2405.81 22.558 2405.62C22.3658 2405.42 22.1373 2405.27 21.8854 2405.16C21.6335 2405.06 21.3633 2405 21.0902 2405H7.25018C6.97703 2405 6.7063 2405.05 6.45343 2405.15C6.20057 2405.26 5.97054 2405.41 5.77646 2405.6C5.58239 2405.79 5.42807 2406.02 5.32233 2406.27C5.21659 2406.53 5.16149 2406.8 5.16018 2407.07V2420.91C5.15886 2421.18 5.21136 2421.45 5.31468 2421.71C5.41799 2421.96 5.5701 2422.19 5.76232 2422.38C5.95454 2422.58 6.1831 2422.73 6.43496 2422.84C6.68681 2422.94 6.95703 2423 7.23018 2423H21.0702C21.3433 2423 21.6141 2422.95 21.8669 2422.85C22.1198 2422.74 22.3498 2422.59 22.5439 2422.4C22.738 2422.21 22.8923 2421.98 22.998 2421.73C23.1038 2421.47 23.1589 2421.2 23.1602 2420.93V2419.09C23.1602 2419.07 23.1697 2419.04 23.1865 2419.03C23.2034 2419.01 23.2263 2419 23.2502 2419H31.0702C31.3433 2419 31.6141 2418.95 31.8669 2418.85C32.1198 2418.74 32.3498 2418.59 32.5439 2418.4C32.738 2418.21 32.8923 2417.98 32.998 2417.73C33.1038 2417.47 33.1589 2417.2 33.1602 2416.93V2413H31.1602ZM21.1602 2416.91C21.1602 2416.93 21.1507 2416.96 21.1338 2416.97C21.1169 2416.99 21.094 2417 21.0702 2417H17.2502C17.2263 2417 17.2034 2416.99 17.1865 2416.97C17.1697 2416.96 17.1602 2416.93 17.1602 2416.91V2411H15.1602V2416.91C15.1589 2417.18 15.2114 2417.45 15.3147 2417.71C15.418 2417.96 15.5701 2418.19 15.7623 2418.38C15.9545 2418.58 16.1831 2418.73 16.435 2418.84C16.6868 2418.94 16.957 2419 17.2302 2419H21.0702C21.094 2419 21.1169 2419.01 21.1338 2419.03C21.1507 2419.04 21.1602 2419.07 21.1602 2419.09V2420.91C21.1602 2420.93 21.1507 2420.96 21.1338 2420.97C21.1169 2420.99 21.094 2421 21.0702 2421H7.25018C7.22631 2421 7.20342 2420.99 7.18654 2420.97C7.16966 2420.96 7.16018 2420.93 7.16018 2420.91V2407.11C7.16018 2407.08 7.17177 2407.05 7.1924 2407.03C7.21303 2407.01 7.24101 2407 7.27018 2407H21.0702C21.094 2407 21.1169 2407.01 21.1338 2407.03C21.1507 2407.04 21.1602 2407.07 21.1602 2407.09V2416.91Z" fill="#0091DA"/>
197
- <path d="M31.9603 2397.4C33.7276 2397.4 35.1603 2395.97 35.1603 2394.2C35.1603 2392.43 33.7276 2391 31.9603 2391C30.1929 2391 28.7603 2392.43 28.7603 2394.2C28.7603 2395.97 30.1929 2397.4 31.9603 2397.4Z" fill="#E46C00"/>
198
- <path d="M29 2399H35V2411H29V2399Z" fill="#E46C00"/>
199
- <path d="M25 2446.83V2447H27V2445.72L25 2446.83ZM17 2439H20V2441H17V2439ZM20 2433H10.87C10.374 2433 9.8984 2433.2 9.54771 2433.55C9.19702 2433.9 9 2434.37 9 2434.87V2441H11V2435H20V2433Z" fill="#0091DA"/>
200
- <path d="M31 2443.5V2454.91C31 2454.93 30.9905 2454.96 30.9737 2454.97C30.9568 2454.99 30.9339 2455 30.91 2455H23.09C23.0662 2455 23.0433 2454.99 23.0264 2454.97C23.0095 2454.96 23 2454.93 23 2454.91V2447.39C22.4917 2447.38 21.9933 2447.25 21.55 2447C21.3559 2446.87 21.172 2446.73 21 2446.57V2454.93C21 2454.95 20.9905 2454.98 20.9737 2454.99C20.9568 2455.01 20.9339 2455.02 20.91 2455.02H17.09C17.0662 2455.02 17.0433 2455.01 17.0264 2454.99C17.0095 2454.98 17 2454.95 17 2454.93V2449H15V2454.91C14.9987 2455.18 15.0512 2455.45 15.1545 2455.71C15.2578 2455.96 15.4099 2456.19 15.6022 2456.38C15.7944 2456.58 16.0229 2456.73 16.2748 2456.84C16.5267 2456.94 16.7969 2457 17.07 2457H20.91C20.9339 2457 20.9568 2457.01 20.9737 2457.03C20.9905 2457.04 21 2457.07 21 2457.09V2458.91C21 2458.93 20.9905 2458.96 20.9737 2458.97C20.9568 2458.99 20.9339 2459 20.91 2459H7.09002C7.06615 2459 7.04326 2458.99 7.02638 2458.97C7.00951 2458.96 7.00002 2458.93 7.00002 2458.91V2445.11C7.00002 2445.1 7.00287 2445.08 7.0084 2445.07C7.01393 2445.05 7.02203 2445.04 7.03224 2445.03C7.04246 2445.02 7.05458 2445.01 7.06793 2445.01C7.08127 2445 7.09558 2445 7.11002 2445H20.11C20.0467 2444.76 20.0131 2444.51 20.01 2444.26V2443H7.09002C6.55023 2443 6.03042 2443.2 5.64042 2443.58C5.25042 2443.95 5.02078 2444.46 5.00002 2445V2458.91C4.99871 2459.18 5.05121 2459.45 5.15452 2459.71C5.25784 2459.96 5.40995 2460.19 5.60216 2460.38C5.79438 2460.58 6.02294 2460.73 6.2748 2460.84C6.52666 2460.94 6.79687 2461 7.07002 2461H20.91C21.1832 2461 21.4539 2460.95 21.7068 2460.85C21.9596 2460.74 22.1897 2460.59 22.3837 2460.4C22.5778 2460.21 22.7321 2459.98 22.8379 2459.73C22.9436 2459.47 22.9987 2459.2 23 2458.93V2457.09C23 2457.07 23.0095 2457.04 23.0264 2457.03C23.0433 2457.01 23.0662 2457 23.09 2457H30.91C31.1832 2457 31.4539 2456.95 31.7068 2456.85C31.9596 2456.74 32.1897 2456.59 32.3837 2456.4C32.5778 2456.21 32.7321 2455.98 32.8379 2455.73C32.9436 2455.47 32.9987 2455.2 33 2454.93V2442.39L31 2443.5Z" fill="#0091DA"/>
201
- <path d="M36.41 2436.2L23.71 2429.2C23.4446 2429.05 23.1316 2429.02 22.8393 2429.1C22.5471 2429.18 22.2993 2429.38 22.15 2429.64C22.0517 2429.81 22 2430 22 2430.2V2444.26C22 2444.56 22.1212 2444.86 22.3368 2445.07C22.5525 2445.29 22.845 2445.41 23.15 2445.41C23.3454 2445.4 23.5366 2445.35 23.71 2445.26L36.41 2438.2C36.5414 2438.13 36.6568 2438.03 36.7496 2437.91C36.8423 2437.79 36.9106 2437.65 36.9506 2437.5C36.9905 2437.36 37.0013 2437.21 36.9823 2437.06C36.9634 2436.91 36.915 2436.76 36.84 2436.63C36.7395 2436.45 36.5906 2436.3 36.41 2436.2Z" fill="#60A644"/>
202
- <path d="M17 2477H21V2479H17V2477ZM25 2483H27V2485H25V2483ZM21 2471H10.87C10.374 2471 9.8984 2471.2 9.54771 2471.55C9.19702 2471.9 9 2472.37 9 2472.87V2479H11V2473H21V2471Z" fill="#0091DA"/>
203
- <path d="M31 2483V2492.91C31 2492.93 30.9905 2492.96 30.9737 2492.97C30.9568 2492.99 30.9339 2493 30.91 2493H23.09C23.0662 2493 23.0433 2492.99 23.0264 2492.97C23.0095 2492.96 23 2492.93 23 2492.91V2483.09V2483H21V2481H7.09002C6.81687 2481 6.54614 2481.05 6.29328 2481.15C6.04042 2481.26 5.81038 2481.41 5.61631 2481.6C5.42223 2481.79 5.26792 2482.02 5.16218 2482.27C5.05643 2482.53 5.00133 2482.8 5.00002 2483.07V2496.91C4.99871 2497.18 5.05121 2497.45 5.15452 2497.71C5.25784 2497.96 5.40995 2498.19 5.60216 2498.38C5.79438 2498.58 6.02294 2498.73 6.2748 2498.84C6.52666 2498.94 6.79687 2499 7.07002 2499H20.91C21.1832 2499 21.4539 2498.95 21.7068 2498.85C21.9596 2498.74 22.1897 2498.59 22.3837 2498.4C22.5778 2498.21 22.7321 2497.98 22.8379 2497.73C22.9436 2497.47 22.9987 2497.2 23 2496.93V2495.09C23 2495.07 23.0095 2495.04 23.0264 2495.03C23.0433 2495.01 23.0662 2495 23.09 2495H30.91C31.1832 2495 31.4539 2494.95 31.7068 2494.85C31.9596 2494.74 32.1897 2494.59 32.3837 2494.4C32.5778 2494.21 32.7321 2493.98 32.8379 2493.73C32.9436 2493.47 32.9987 2493.2 33 2492.93V2483H31ZM21 2492.91C21 2492.93 20.9905 2492.96 20.9737 2492.97C20.9568 2492.99 20.9339 2493 20.91 2493H17.09C17.0662 2493 17.0433 2492.99 17.0264 2492.97C17.0095 2492.96 17 2492.93 17 2492.91V2487H15V2492.91C14.9987 2493.18 15.0512 2493.45 15.1545 2493.71C15.2578 2493.96 15.4099 2494.19 15.6022 2494.38C15.7944 2494.58 16.0229 2494.73 16.2748 2494.84C16.5267 2494.94 16.7969 2495 17.07 2495H20.91C20.9339 2495 20.9568 2495.01 20.9737 2495.03C20.9905 2495.04 21 2495.07 21 2495.09V2496.91C21 2496.93 20.9905 2496.96 20.9737 2496.97C20.9568 2496.99 20.9339 2497 20.91 2497H7.09002C7.06615 2497 7.04326 2496.99 7.02638 2496.97C7.00951 2496.96 7.00002 2496.93 7.00002 2496.91V2483.11C7.00002 2483.1 7.00287 2483.08 7.0084 2483.07C7.01393 2483.05 7.02203 2483.04 7.03224 2483.03C7.04246 2483.02 7.05458 2483.01 7.06793 2483.01C7.08127 2483 7.09558 2483 7.11002 2483H20.91C20.9339 2483 20.9568 2483.01 20.9737 2483.03C20.9905 2483.04 21 2483.07 21 2483.09V2492.91Z" fill="#0091DA"/>
204
- <path d="M23 2467H37V2481H23V2467Z" fill="#B68300"/>
205
- <path d="M29 2469V2479H25V2469H29ZM35 2469V2479H31V2469H35Z" fill="#FFE02C"/>
206
- <path d="M25 2519H27V2523H25V2519Z" fill="#0091DA"/>
207
- <path d="M19.85 2509H10.85C10.3575 2509.01 9.88702 2509.2 9.54065 2509.55C9.19427 2509.9 9 2510.38 9.00002 2510.87V2517H11V2511H18.7L19.85 2509ZM32.5 2527.14H31V2530.91C31 2530.93 30.9905 2530.96 30.9737 2530.97C30.9568 2530.99 30.9339 2531 30.91 2531H23.09C23.0662 2531 23.0433 2530.99 23.0264 2530.97C23.0095 2530.96 23 2530.93 23 2530.91V2527.14H21V2530.91C21 2530.93 20.9905 2530.96 20.9737 2530.97C20.9568 2530.99 20.9339 2531 20.91 2531H17.09C17.0662 2531 17.0433 2530.99 17.0264 2530.97C17.0095 2530.96 17 2530.93 17 2530.91V2526.55C16.2284 2526.19 15.5459 2525.66 15 2525V2530.91C14.9987 2531.18 15.0512 2531.45 15.1545 2531.71C15.2578 2531.96 15.4099 2532.19 15.6022 2532.38C15.7944 2532.58 16.0229 2532.73 16.2748 2532.84C16.5267 2532.94 16.7969 2533 17.07 2533H20.91C20.9339 2533 20.9568 2533.01 20.9737 2533.03C20.9905 2533.04 21 2533.07 21 2533.09V2534.91C21 2534.93 20.9905 2534.96 20.9737 2534.97C20.9568 2534.99 20.9339 2535 20.91 2535H7.09002C7.06615 2535 7.04326 2534.99 7.02638 2534.97C7.00951 2534.96 7.00002 2534.93 7.00002 2534.91V2521.11C7.00002 2521.1 7.00287 2521.08 7.0084 2521.07C7.01393 2521.05 7.02203 2521.04 7.03224 2521.03C7.04246 2521.02 7.05458 2521.01 7.06793 2521.01C7.08127 2521 7.09558 2521 7.11002 2521H13.69C13.7203 2520.31 13.8727 2519.63 14.14 2519H7.14002C6.86271 2518.99 6.58659 2519.04 6.32793 2519.14C6.06927 2519.24 5.83329 2519.39 5.63388 2519.58C5.43447 2519.78 5.27566 2520.01 5.16681 2520.26C5.05795 2520.52 5.00124 2520.79 5.00002 2521.07V2534.91C4.99871 2535.18 5.05121 2535.45 5.15452 2535.71C5.25784 2535.96 5.40995 2536.19 5.60216 2536.38C5.79438 2536.58 6.02294 2536.73 6.2748 2536.84C6.52666 2536.94 6.79687 2537 7.07002 2537H20.91C21.1832 2537 21.4539 2536.95 21.7068 2536.85C21.9596 2536.74 22.1897 2536.59 22.3837 2536.4C22.5778 2536.21 22.7321 2535.98 22.8379 2535.73C22.9436 2535.47 22.9987 2535.2 23 2534.93V2533.09C23 2533.07 23.0095 2533.04 23.0264 2533.03C23.0433 2533.01 23.0662 2533 23.09 2533H30.91C31.1832 2533 31.4539 2532.95 31.7068 2532.85C31.9596 2532.74 32.1897 2532.59 32.3837 2532.4C32.5778 2532.21 32.7321 2531.98 32.8379 2531.73C32.9436 2531.47 32.9987 2531.2 33 2530.93V2527.11C32.83 2527.12 32.67 2527.14 32.5 2527.14Z" fill="#0091DA"/>
208
- <path d="M26 2506.19C25.3206 2506.19 24.6523 2506.36 24.0636 2506.7C23.4749 2507.04 22.987 2507.53 22.65 2508.12L16.19 2519.35C15.8513 2519.94 15.673 2520.6 15.6729 2521.28C15.6727 2521.96 15.8508 2522.62 16.1893 2523.21C16.5277 2523.8 17.0146 2524.28 17.601 2524.62C18.1874 2524.96 18.8527 2525.14 19.53 2525.14H32.53C33.2073 2525.14 33.8726 2524.96 34.459 2524.62C35.0454 2524.28 35.5323 2523.8 35.8707 2523.21C36.2092 2522.62 36.3873 2521.96 36.3871 2521.28C36.387 2520.6 36.2087 2519.94 35.87 2519.35L29.36 2508.12C29.0229 2507.53 28.5337 2507.04 27.9429 2506.7C27.3521 2506.36 26.6813 2506.18 26 2506.19Z" fill="#B68300"/>
209
- <path d="M25.9998 2508.19C26.3264 2508.19 26.6473 2508.27 26.9301 2508.44C27.2129 2508.6 27.4474 2508.84 27.6098 2509.12L34.0898 2520.35C34.253 2520.63 34.339 2520.95 34.339 2521.28C34.339 2521.61 34.2532 2521.93 34.09 2522.21C33.9268 2522.49 33.6922 2522.73 33.4095 2522.89C33.1269 2523.05 32.8062 2523.14 32.4798 2523.14H19.4798C19.1534 2523.14 18.8327 2523.05 18.5501 2522.89C18.2674 2522.73 18.0328 2522.49 17.8696 2522.21C17.7064 2521.93 17.6206 2521.61 17.6206 2521.28C17.6206 2520.95 17.7066 2520.63 17.8698 2520.35L24.4098 2509.12C24.5689 2508.84 24.7999 2508.6 25.0793 2508.44C25.3586 2508.28 25.6762 2508.19 25.9998 2508.19Z" fill="#FFE02C"/>
210
- <path d="M25 2519H27V2521H25V2519ZM25 2511H27V2517H25V2511Z" fill="#454545"/>
211
- <path d="M11 2549H25V2551H27V2549C27 2548.47 26.7893 2547.96 26.4142 2547.59C26.0391 2547.21 25.5304 2547 25 2547H10.87C10.374 2547 9.8984 2547.2 9.54771 2547.55C9.19702 2547.9 9 2548.37 9 2548.87V2555H11V2549Z" fill="#798893"/>
212
- <path d="M30.91 2553H17V2555H24.91C24.9339 2555 24.9568 2555.01 24.9737 2555.03C24.9905 2555.04 25 2555.07 25 2555.09V2561H27V2555.09C27 2555.07 27.0095 2555.04 27.0264 2555.03C27.0433 2555.01 27.0662 2555 27.09 2555H30.91C30.9339 2555 30.9568 2555.01 30.9737 2555.03C30.9905 2555.04 31 2555.07 31 2555.09V2568.91C31 2568.93 30.9905 2568.96 30.9737 2568.97C30.9568 2568.99 30.9339 2569 30.91 2569H23.09C23.0662 2569 23.0433 2568.99 23.0264 2568.97C23.0095 2568.96 23 2568.93 23 2568.91V2559.09C23.0013 2558.82 22.9482 2558.54 22.8436 2558.29C22.7391 2558.03 22.5852 2557.8 22.3908 2557.61C22.1965 2557.41 21.9656 2557.26 21.7114 2557.16C21.4572 2557.05 21.1849 2557 20.91 2557H7.09002C6.81519 2557 6.54282 2557.05 6.28865 2557.16C6.03448 2557.26 5.80356 2557.41 5.60922 2557.61C5.41488 2557.8 5.26098 2558.03 5.15642 2558.29C5.05185 2558.54 4.9987 2558.82 5.00002 2559.09V2572.91C4.9987 2573.18 5.05185 2573.46 5.15642 2573.71C5.26098 2573.97 5.41488 2574.2 5.60922 2574.39C5.80356 2574.59 6.03448 2574.74 6.28865 2574.84C6.54282 2574.95 6.81519 2575 7.09002 2575H20.91C21.1849 2575 21.4572 2574.95 21.7114 2574.84C21.9656 2574.74 22.1965 2574.59 22.3908 2574.39C22.5852 2574.2 22.7391 2573.97 22.8436 2573.71C22.9482 2573.46 23.0013 2573.18 23 2572.91V2571.09C23 2571.07 23.0095 2571.04 23.0264 2571.03C23.0433 2571.01 23.0662 2571 23.09 2571H30.91C31.1849 2571 31.4572 2570.95 31.7114 2570.84C31.9656 2570.74 32.1965 2570.59 32.3908 2570.39C32.5852 2570.2 32.7391 2569.97 32.8436 2569.71C32.9482 2569.46 33.0013 2569.18 33 2568.91V2555.09C33.0013 2554.82 32.9482 2554.54 32.8436 2554.29C32.7391 2554.03 32.5852 2553.8 32.3908 2553.61C32.1965 2553.41 31.9656 2553.26 31.7114 2553.16C31.4572 2553.05 31.1849 2553 30.91 2553ZM7.00002 2572.91V2559.11C7.00002 2559.1 7.00287 2559.08 7.0084 2559.07C7.01393 2559.05 7.02203 2559.04 7.03224 2559.03C7.04246 2559.02 7.05458 2559.01 7.06793 2559.01C7.08127 2559 7.09558 2559 7.11002 2559H20.91C20.9339 2559 20.9568 2559.01 20.9737 2559.03C20.9905 2559.04 21 2559.07 21 2559.09V2568.91C21 2568.93 20.9905 2568.96 20.9737 2568.97C20.9568 2568.99 20.9339 2569 20.91 2569H17.09C17.0662 2569 17.0433 2568.99 17.0264 2568.97C17.0095 2568.96 17 2568.93 17 2568.91V2563H15V2568.91C14.9987 2569.18 15.0519 2569.46 15.1564 2569.71C15.261 2569.97 15.4149 2570.2 15.6092 2570.39C15.8036 2570.59 16.0345 2570.74 16.2887 2570.84C16.5428 2570.95 16.8152 2571 17.09 2571H20.91C20.9339 2571 20.9568 2571.01 20.9737 2571.03C20.9905 2571.04 21 2571.07 21 2571.09V2572.91C21 2572.93 20.9905 2572.96 20.9737 2572.97C20.9568 2572.99 20.9339 2573 20.91 2573H7.09002C7.06615 2573 7.04326 2572.99 7.02638 2572.97C7.00951 2572.96 7.00002 2572.93 7.00002 2572.91Z" fill="#798893"/>
213
- <path d="M18.23 2585H10.87C10.3741 2585 9.89843 2585.2 9.54773 2585.55C9.19704 2585.9 9.00002 2586.37 9.00002 2586.87V2593H11V2587H17.43C17.6279 2586.31 17.8959 2585.64 18.23 2585ZM31 2600.57V2606.91C31 2606.93 30.9905 2606.96 30.9737 2606.97C30.9568 2606.99 30.9339 2607 30.91 2607H23.09C23.0662 2607 23.0433 2606.99 23.0264 2606.97C23.0095 2606.96 23 2606.93 23 2606.91V2599.79C22.2882 2599.43 21.6177 2598.99 21 2598.48V2606.91C21 2606.93 20.9905 2606.96 20.9737 2606.97C20.9568 2606.99 20.9339 2607 20.91 2607H17.09C17.0662 2607 17.0433 2606.99 17.0264 2606.97C17.0095 2606.96 17 2606.93 17 2606.91V2601H15V2606.91C14.9987 2607.18 15.0512 2607.45 15.1545 2607.71C15.2578 2607.96 15.4099 2608.19 15.6022 2608.38C15.7944 2608.58 16.0229 2608.73 16.2748 2608.84C16.5267 2608.94 16.7969 2609 17.07 2609H20.91C20.9339 2609 20.9568 2609.01 20.9737 2609.03C20.9905 2609.04 21 2609.07 21 2609.09V2610.91C21 2610.93 20.9905 2610.96 20.9737 2610.97C20.9568 2610.99 20.9339 2611 20.91 2611H7.09002C7.06615 2611 7.04326 2610.99 7.02638 2610.97C7.00951 2610.96 7.00002 2610.93 7.00002 2610.91V2597.11C7.00002 2597.1 7.00287 2597.08 7.0084 2597.07C7.01393 2597.05 7.02203 2597.04 7.03224 2597.03C7.04246 2597.02 7.05458 2597.01 7.06793 2597.01C7.08127 2597 7.09558 2597 7.11002 2597H19.52C19.0128 2596.38 18.5735 2595.71 18.21 2595H7.09002C6.81687 2595 6.54614 2595.05 6.29328 2595.15C6.04042 2595.26 5.81038 2595.41 5.61631 2595.6C5.42223 2595.79 5.26792 2596.02 5.16218 2596.27C5.05643 2596.53 5.00133 2596.8 5.00002 2597.07V2610.91C4.99871 2611.18 5.05121 2611.45 5.15452 2611.71C5.25784 2611.96 5.40995 2612.19 5.60216 2612.38C5.79438 2612.58 6.02294 2612.73 6.2748 2612.84C6.52666 2612.94 6.79687 2613 7.07002 2613H20.91C21.1832 2613 21.4539 2612.95 21.7068 2612.85C21.9596 2612.74 22.1897 2612.59 22.3837 2612.4C22.5778 2612.21 22.7321 2611.98 22.8379 2611.73C22.9436 2611.47 22.9987 2611.2 23 2610.93V2609.09C23 2609.07 23.0095 2609.04 23.0264 2609.03C23.0433 2609.01 23.0662 2609 23.09 2609H30.91C31.1832 2609 31.4539 2608.95 31.7068 2608.85C31.9596 2608.74 32.1897 2608.59 32.3837 2608.4C32.5778 2608.21 32.7321 2607.98 32.8379 2607.73C32.9436 2607.47 32.9987 2607.2 33 2606.93V2599.79C32.3617 2600.12 31.6916 2600.38 31 2600.57Z" fill="#798893"/>
214
- <path d="M28 2581C26.22 2581 24.4799 2581.53 22.9999 2582.52C21.5198 2583.51 20.3663 2584.91 19.6851 2586.56C19.0039 2588.2 18.8257 2590.01 19.1729 2591.76C19.5202 2593.5 20.3774 2595.11 21.636 2596.36C22.8947 2597.62 24.4984 2598.48 26.2442 2598.83C27.99 2599.17 29.7996 2599 31.4442 2598.31C33.0887 2597.63 34.4943 2596.48 35.4832 2595C36.4722 2593.52 37 2591.78 37 2590C37 2587.61 36.0518 2585.32 34.364 2583.64C32.6761 2581.95 30.387 2581 28 2581ZM29 2595H27V2593H29V2595ZM29 2591H27V2585H29V2591Z" fill="#F84E30"/>
215
- <path d="M25 2636.83V2637H27V2635.72L25 2636.83ZM17 2629H20V2631H17V2629Z" fill="#798893"/>
216
- <path d="M31 2633.5V2644.91C31 2644.93 30.9905 2644.96 30.9737 2644.97C30.9568 2644.99 30.9339 2645 30.91 2645H23.09C23.0662 2645 23.0433 2644.99 23.0264 2644.97C23.0095 2644.96 23 2644.93 23 2644.91V2637.39C22.4923 2637.38 21.9947 2637.25 21.55 2637C21.3564 2636.87 21.1726 2636.73 21 2636.57V2644.93C21 2644.95 20.9905 2644.98 20.9737 2644.99C20.9568 2645.01 20.9339 2645.02 20.91 2645.02H17.09C17.0662 2645.02 17.0433 2645.01 17.0264 2644.99C17.0095 2644.98 17 2644.95 17 2644.93V2639H15V2644.91C14.9987 2645.18 15.0512 2645.45 15.1545 2645.71C15.2578 2645.96 15.4099 2646.19 15.6022 2646.38C15.7944 2646.58 16.0229 2646.73 16.2748 2646.84C16.5267 2646.94 16.7969 2647 17.07 2647H20.91C20.9339 2647 20.9568 2647.01 20.9737 2647.03C20.9905 2647.04 21 2647.07 21 2647.09V2648.91C21 2648.93 20.9905 2648.96 20.9737 2648.97C20.9568 2648.99 20.9339 2649 20.91 2649H7.09002C7.06615 2649 7.04326 2648.99 7.02638 2648.97C7.00951 2648.96 7.00002 2648.93 7.00002 2648.91V2635.11C7.00002 2635.1 7.00287 2635.08 7.0084 2635.07C7.01393 2635.05 7.02203 2635.04 7.03224 2635.03C7.04246 2635.02 7.05458 2635.01 7.06793 2635.01C7.08127 2635 7.09558 2635 7.11002 2635H20.11C20.046 2634.76 20.0124 2634.51 20.01 2634.26V2633H7.09002C6.55023 2633 6.03042 2633.2 5.64042 2633.58C5.25042 2633.95 5.02078 2634.46 5.00002 2635V2648.91C4.99871 2649.18 5.05121 2649.45 5.15452 2649.71C5.25784 2649.96 5.40995 2650.19 5.60216 2650.38C5.79438 2650.58 6.02294 2650.73 6.2748 2650.84C6.52666 2650.94 6.79687 2651 7.07002 2651H20.91C21.1832 2651 21.4539 2650.95 21.7068 2650.85C21.9596 2650.74 22.1897 2650.59 22.3837 2650.4C22.5778 2650.21 22.7321 2649.98 22.8379 2649.73C22.9436 2649.47 22.9987 2649.2 23 2648.93V2647.09C23 2647.07 23.0095 2647.04 23.0264 2647.03C23.0433 2647.01 23.0662 2647 23.09 2647H30.91C31.1832 2647 31.4539 2646.95 31.7068 2646.85C31.9596 2646.74 32.1897 2646.59 32.3837 2646.4C32.5778 2646.21 32.7321 2645.98 32.8379 2645.73C32.9436 2645.47 32.9987 2645.2 33 2644.93V2632.39L31 2633.5ZM20 2623H10.87C10.3741 2623 9.89843 2623.2 9.54773 2623.55C9.19704 2623.9 9.00002 2624.37 9.00002 2624.87V2631H11V2625H20V2623Z" fill="#798893"/>
217
- <path d="M36.41 2626.2L23.71 2619.2C23.5353 2619.1 23.3382 2619.05 23.1382 2619.05C22.9382 2619.06 22.7421 2619.11 22.5695 2619.21C22.3968 2619.31 22.2534 2619.46 22.1536 2619.63C22.0537 2619.8 22.0008 2620 22 2620.2V2634.26C22.0008 2634.46 22.0537 2634.66 22.1536 2634.83C22.2534 2635 22.3968 2635.15 22.5695 2635.25C22.7421 2635.35 22.9382 2635.4 23.1382 2635.41C23.3382 2635.41 23.5353 2635.36 23.71 2635.26L36.41 2628.2C36.5867 2628.1 36.7337 2627.95 36.836 2627.78C36.9382 2627.6 36.9921 2627.4 36.9921 2627.2C36.9921 2627 36.9382 2626.8 36.836 2626.62C36.7337 2626.45 36.5867 2626.3 36.41 2626.2Z" fill="#60A644"/>
218
- <path d="M13 2661.52V2661H10.87C10.3741 2661 9.89843 2661.2 9.54773 2661.55C9.19704 2661.9 9.00002 2662.37 9.00002 2662.87V2669H11V2663H13V2661.52ZM32.67 2674.5C32.1344 2674.76 31.5752 2674.97 31 2675.12V2682.91C31 2682.93 30.9905 2682.96 30.9737 2682.97C30.9568 2682.99 30.9339 2683 30.91 2683H23.09C23.0662 2683 23.0433 2682.99 23.0264 2682.97C23.0095 2682.96 23 2682.93 23 2682.91V2674.27C22.3044 2673.93 21.6357 2673.54 21 2673.1V2682.91C21 2682.93 20.9905 2682.96 20.9737 2682.97C20.9568 2682.99 20.9339 2683 20.91 2683H17.09C17.0662 2683 17.0433 2682.99 17.0264 2682.97C17.0095 2682.96 17 2682.93 17 2682.91V2677H15V2682.91C14.9987 2683.18 15.0512 2683.45 15.1545 2683.71C15.2578 2683.96 15.4099 2684.19 15.6022 2684.38C15.7944 2684.58 16.0229 2684.73 16.2748 2684.84C16.5267 2684.94 16.7969 2685 17.07 2685H20.91C20.9339 2685 20.9568 2685.01 20.9737 2685.03C20.9905 2685.04 21 2685.07 21 2685.09V2686.91C21 2686.93 20.9905 2686.96 20.9737 2686.97C20.9568 2686.99 20.9339 2687 20.91 2687H7.09002C7.06615 2687 7.04326 2686.99 7.02638 2686.97C7.00951 2686.96 7.00002 2686.93 7.00002 2686.91V2673.11C7.00002 2673.1 7.00287 2673.08 7.0084 2673.07C7.01393 2673.05 7.02203 2673.04 7.03224 2673.03C7.04246 2673.02 7.05458 2673.01 7.06793 2673.01C7.08127 2673 7.09558 2673 7.11002 2673H13.11C13.0783 2672.83 13.0615 2672.65 13.06 2672.48V2671H7.09002C6.81687 2671 6.54614 2671.05 6.29328 2671.15C6.04042 2671.26 5.81038 2671.41 5.61631 2671.6C5.42223 2671.79 5.26792 2672.02 5.16218 2672.27C5.05643 2672.53 5.00133 2672.8 5.00002 2673.07V2686.91C4.99871 2687.18 5.05121 2687.45 5.15452 2687.71C5.25784 2687.96 5.40995 2688.19 5.60216 2688.38C5.79438 2688.58 6.02294 2688.73 6.2748 2688.84C6.52666 2688.94 6.79687 2689 7.07002 2689H20.92C21.4691 2689 21.9952 2688.78 22.3844 2688.39C22.7736 2688 22.9948 2687.48 23 2686.93V2685.09C23 2685.07 23.0095 2685.04 23.0264 2685.03C23.0433 2685.01 23.0662 2685 23.09 2685H30.91C31.1832 2685 31.4539 2684.95 31.7068 2684.85C31.9596 2684.74 32.1897 2684.59 32.3837 2684.4C32.5778 2684.21 32.7321 2683.98 32.8379 2683.73C32.9436 2683.47 32.9987 2683.2 33 2682.93V2674.31L32.67 2674.5Z" fill="#798893"/>
219
- <path d="M35.87 2658.53C35.7056 2658.02 35.3472 2657.61 34.8736 2657.36C34.4001 2657.12 33.8502 2657.08 33.345 2657.24C32.8398 2657.41 32.4205 2657.77 32.1796 2658.24C31.9386 2658.71 31.8956 2659.26 32.06 2659.77C33.4 2663.86 32.51 2667.88 30.06 2669.12C27.95 2670.12 25.06 2669.12 22.67 2666.66L26.49 2662.79C26.5891 2662.68 26.6541 2662.54 26.6772 2662.4C26.7003 2662.25 26.6804 2662.1 26.6199 2661.97C26.5595 2661.83 26.4611 2661.72 26.3368 2661.64C26.2125 2661.56 26.0676 2661.52 25.92 2661.52H15V2672.52C15.0102 2672.67 15.0623 2672.81 15.1501 2672.92C15.2379 2673.04 15.3576 2673.13 15.4949 2673.18C15.6322 2673.23 15.7812 2673.24 15.924 2673.21C16.0668 2673.18 16.1974 2673.1 16.3 2673L19.81 2669.45C20.8734 2670.64 22.1641 2671.61 23.6066 2672.3C25.049 2672.98 26.6141 2673.38 28.21 2673.45C29.4472 2673.45 30.6688 2673.17 31.78 2672.63C36.12 2670.56 37.84 2664.6 35.87 2658.53Z" fill="#59A011"/>
220
- <path d="M25 2709H27V2713H25V2709Z" fill="#0091DA"/>
221
- <path d="M19.85 2699H10.85C10.3575 2699.01 9.88702 2699.2 9.54065 2699.55C9.19427 2699.9 9 2700.38 9.00002 2700.87V2707H11V2701H18.7L19.85 2699ZM32.5 2717.14H31V2720.91C31 2720.93 30.9905 2720.96 30.9737 2720.97C30.9568 2720.99 30.9339 2721 30.91 2721H23.09C23.0662 2721 23.0433 2720.99 23.0264 2720.97C23.0095 2720.96 23 2720.93 23 2720.91V2717.14H21V2720.91C21 2720.93 20.9905 2720.96 20.9737 2720.97C20.9568 2720.99 20.9339 2721 20.91 2721H17.09C17.0662 2721 17.0433 2720.99 17.0264 2720.97C17.0095 2720.96 17 2720.93 17 2720.91V2716.55C16.2276 2716.19 15.5447 2715.66 15 2715V2720.91C14.9987 2721.18 15.0512 2721.45 15.1545 2721.71C15.2578 2721.96 15.4099 2722.19 15.6022 2722.38C15.7944 2722.58 16.0229 2722.73 16.2748 2722.84C16.5267 2722.94 16.7969 2723 17.07 2723H20.91C20.9339 2723 20.9568 2723.01 20.9737 2723.03C20.9905 2723.04 21 2723.07 21 2723.09V2724.91C21 2724.93 20.9905 2724.96 20.9737 2724.97C20.9568 2724.99 20.9339 2725 20.91 2725H7.09002C7.06615 2725 7.04326 2724.99 7.02638 2724.97C7.00951 2724.96 7.00002 2724.93 7.00002 2724.91V2711.11C7.00002 2711.1 7.00287 2711.08 7.0084 2711.07C7.01393 2711.05 7.02203 2711.04 7.03224 2711.03C7.04246 2711.02 7.05458 2711.01 7.06793 2711.01C7.08127 2711 7.09558 2711 7.11002 2711H13.69C13.7181 2710.31 13.8706 2709.63 14.14 2709H7.14002C6.59166 2708.98 6.0591 2709.18 5.65829 2709.56C5.25748 2709.93 5.02088 2710.45 5.00002 2711V2724.91C4.99871 2725.18 5.05121 2725.45 5.15452 2725.71C5.25784 2725.96 5.40995 2726.19 5.60216 2726.38C5.79438 2726.58 6.02294 2726.73 6.2748 2726.84C6.52666 2726.94 6.79687 2727 7.07002 2727H20.91C21.1832 2727 21.4539 2726.95 21.7068 2726.85C21.9596 2726.74 22.1897 2726.59 22.3837 2726.4C22.5778 2726.21 22.7321 2725.98 22.8379 2725.73C22.9436 2725.47 22.9987 2725.2 23 2724.93V2723.09C23 2723.07 23.0095 2723.04 23.0264 2723.03C23.0433 2723.01 23.0662 2723 23.09 2723H30.91C31.1832 2723 31.4539 2722.95 31.7068 2722.85C31.9596 2722.74 32.1897 2722.59 32.3837 2722.4C32.5778 2722.21 32.7321 2721.98 32.8379 2721.73C32.9436 2721.47 32.9987 2721.2 33 2720.93V2717.11C32.83 2717.12 32.67 2717.14 32.5 2717.14Z" fill="#798893"/>
222
- <path d="M26 2696.19C25.3208 2696.19 24.6529 2696.36 24.0644 2696.7C23.4759 2697.04 22.9878 2697.53 22.65 2698.12L16.19 2709.35C15.8513 2709.94 15.673 2710.6 15.6729 2711.28C15.6727 2711.96 15.8508 2712.62 16.1893 2713.21C16.5277 2713.8 17.0146 2714.28 17.601 2714.62C18.1874 2714.96 18.8527 2715.14 19.53 2715.14H32.53C33.2073 2715.14 33.8726 2714.96 34.459 2714.62C35.0454 2714.28 35.5323 2713.8 35.8707 2713.21C36.2092 2712.62 36.3873 2711.96 36.3871 2711.28C36.387 2710.6 36.2087 2709.94 35.87 2709.35L29.36 2698.12C29.0229 2697.53 28.5337 2697.04 27.9429 2696.7C27.3521 2696.36 26.6813 2696.18 26 2696.19Z" fill="#B68300"/>
223
- <path d="M26.0001 2698.19C26.3267 2698.19 26.6477 2698.27 26.9304 2698.44C27.2132 2698.6 27.4477 2698.84 27.6101 2699.12L34.0901 2710.35C34.2533 2710.63 34.3393 2710.95 34.3393 2711.28C34.3393 2711.61 34.2535 2711.93 34.0903 2712.21C33.9272 2712.49 33.6925 2712.73 33.4098 2712.89C33.1272 2713.05 32.8065 2713.14 32.4801 2713.14H19.4801C18.9868 2713.14 18.5137 2712.94 18.1649 2712.6C17.8161 2712.25 17.6201 2711.77 17.6201 2711.28C17.6213 2710.95 17.7075 2710.63 17.8701 2710.35L24.4101 2699.12C24.5693 2698.84 24.8003 2698.6 25.0796 2698.44C25.3589 2698.28 25.6765 2698.19 26.0001 2698.19Z" fill="#FFE02C"/>
224
- <path d="M25 2709H27V2711H25V2709ZM25 2701H27V2707H25V2701Z" fill="#454545"/>
225
- <path d="M11.53 2763H5.09002C5.06615 2763 5.04326 2762.99 5.02638 2762.97C5.00951 2762.96 5.00002 2762.93 5.00002 2762.91V2749.11C5.00002 2749.08 5.01161 2749.05 5.03224 2749.03C5.05287 2749.01 5.08085 2749 5.11002 2749H10.37C10.6996 2748.3 11.0877 2747.63 11.53 2747H5.09002C4.81687 2747 4.54614 2747.05 4.29328 2747.15C4.04042 2747.26 3.81038 2747.41 3.61631 2747.6C3.42223 2747.79 3.26792 2748.02 3.16218 2748.27C3.05643 2748.53 3.00133 2748.8 3.00002 2749.07V2762.91C2.99871 2763.18 3.05121 2763.45 3.15452 2763.71C3.25784 2763.96 3.40995 2764.19 3.60216 2764.38C3.79438 2764.58 4.02294 2764.73 4.2748 2764.84C4.52666 2764.94 4.79687 2765 5.07002 2765H13.22C12.5958 2764.39 12.03 2763.72 11.53 2763Z" fill="#FAFAFA"/>
226
- <path d="M20.0002 2737H9.09019C8.81062 2736.97 8.52842 2737.01 8.26368 2737.1C7.99895 2737.19 7.7582 2737.35 7.55861 2737.54C7.35902 2737.74 7.20549 2737.98 7.10896 2738.24C7.01244 2738.51 6.9753 2738.79 7.00019 2739.07V2745H9.00019V2739.09C9.00019 2739.07 9.00967 2739.04 9.02655 2739.03C9.04343 2739.01 9.06632 2739 9.09019 2739H20.0002V2737ZM26.7002 2749.89L24.7002 2751.01C24.233 2751.27 23.7061 2751.41 23.1702 2751.41C22.9614 2751.4 22.7537 2751.38 22.5502 2751.33L19.0002 2754.82L25.3902 2761.21L26.8002 2759.79L21.8002 2754.79L26.7002 2749.89Z" fill="#FAFAFA"/>
227
- <path d="M30.1801 2748C31.7035 2749.55 32.6778 2751.56 32.9551 2753.72C33.2324 2755.88 32.7975 2758.07 31.7165 2759.96C30.6355 2761.85 28.9674 2763.34 26.9655 2764.19C24.9636 2765.05 22.7373 2765.23 20.6246 2764.7C18.512 2764.18 16.6283 2762.98 15.2598 2761.28C13.8912 2759.59 13.1125 2757.5 13.0418 2755.32C12.9711 2753.15 13.6124 2751.01 14.8683 2749.23C16.1241 2747.45 17.9259 2746.13 20.0001 2745.47V2743.39C17.4709 2744.05 15.2282 2745.53 13.6132 2747.58C11.9983 2749.64 11.0995 2752.17 11.0536 2754.78C11.0077 2757.4 11.8173 2759.96 13.3591 2762.07C14.9009 2764.18 17.0905 2765.73 19.5948 2766.49C22.0991 2767.24 24.7809 2767.15 27.2323 2766.24C29.6836 2765.33 31.7702 2763.65 33.1746 2761.44C34.579 2759.23 35.2243 2756.63 35.0123 2754.02C34.8002 2751.42 33.7425 2748.95 32.0001 2747L30.1801 2748Z" fill="#FAFAFA"/>
228
- <path d="M36.41 2740.2L23.71 2733.2C23.5353 2733.1 23.3382 2733.05 23.1382 2733.05C22.9382 2733.06 22.7421 2733.11 22.5695 2733.21C22.3968 2733.31 22.2534 2733.46 22.1536 2733.63C22.0537 2733.8 22.0008 2734 22 2734.2V2748.26C22.0008 2748.46 22.0537 2748.66 22.1536 2748.83C22.2534 2749 22.3968 2749.15 22.5695 2749.25C22.7421 2749.35 22.9382 2749.4 23.1382 2749.41C23.3382 2749.41 23.5353 2749.36 23.71 2749.26L36.41 2742.2C36.5867 2742.1 36.7337 2741.95 36.836 2741.78C36.9382 2741.6 36.9921 2741.4 36.9921 2741.2C36.9921 2741 36.9382 2740.8 36.836 2740.62C36.7337 2740.45 36.5867 2740.3 36.41 2740.2Z" fill="#60A644"/>
229
- <path d="M11.53 2801H5.09002C5.06615 2801 5.04326 2800.99 5.02638 2800.97C5.00951 2800.96 5.00002 2800.93 5.00002 2800.91V2787.11C5.00002 2787.08 5.01161 2787.05 5.03224 2787.03C5.05287 2787.01 5.08085 2787 5.11002 2787H10.37C10.6996 2786.3 11.0877 2785.63 11.53 2785H5.09002C4.81687 2785 4.54614 2785.05 4.29328 2785.15C4.04042 2785.26 3.81038 2785.41 3.61631 2785.6C3.42223 2785.79 3.26792 2786.02 3.16218 2786.27C3.05643 2786.53 3.00133 2786.8 3.00002 2787.07V2800.91C2.99871 2801.18 3.05121 2801.45 3.15452 2801.71C3.25784 2801.96 3.40995 2802.19 3.60216 2802.38C3.79438 2802.58 4.02294 2802.73 4.2748 2802.84C4.52666 2802.94 4.79687 2803 5.07002 2803H13.22C12.5958 2802.39 12.03 2801.72 11.53 2801Z" fill="#FAFAFA"/>
230
- <path d="M21.0002 2775H9.09019C8.81062 2774.97 8.52842 2775.01 8.26368 2775.1C7.99895 2775.19 7.7582 2775.35 7.55861 2775.54C7.35902 2775.74 7.20549 2775.98 7.10896 2776.24C7.01244 2776.51 6.9753 2776.79 7.00019 2777.07V2783H9.00019V2777.09C9.00019 2777.07 9.00967 2777.04 9.02655 2777.03C9.04343 2777.01 9.06632 2777 9.09019 2777H21.0002V2775ZM26.0102 2787H24.8902L19.0002 2792.82L25.3902 2799.21L26.8002 2797.79L21.8002 2792.79L26.8002 2787.79L26.0102 2787Z" fill="#FAFAFA"/>
231
- <path d="M31.0603 2787C32.3651 2788.73 33.0676 2790.84 33.0603 2793C33.0576 2794.89 32.5199 2796.74 31.5095 2798.33C30.4991 2799.93 29.0574 2801.21 27.3512 2802.02C25.645 2802.83 23.7441 2803.14 21.8687 2802.91C19.9932 2802.69 18.2198 2801.94 16.7539 2800.75C15.2879 2799.56 14.1894 2797.97 13.5854 2796.18C12.9813 2794.39 12.8966 2792.47 13.3409 2790.63C13.7852 2788.8 14.7404 2787.13 16.096 2785.81C17.4515 2784.49 19.1519 2783.59 21.0003 2783.2V2781.2C18.7489 2781.59 16.6568 2782.62 14.9704 2784.17C13.2839 2785.71 12.0732 2787.7 11.4806 2789.91C10.888 2792.12 10.9382 2794.45 11.6254 2796.63C12.3125 2798.81 13.6079 2800.75 15.3592 2802.21C17.1105 2803.68 19.2449 2804.62 21.5113 2804.92C23.7776 2805.22 26.0816 2804.86 28.1522 2803.89C30.2229 2802.92 31.974 2801.38 33.1995 2799.45C34.4251 2797.53 35.0741 2795.29 35.0703 2793C35.0748 2790.89 34.5192 2788.82 33.4603 2787H31.0603Z" fill="#FAFAFA"/>
232
- <path d="M23 2771H37V2785H23V2771Z" fill="#B68300"/>
233
- <path d="M29 2773V2783H25V2773H29ZM35 2773V2783H31V2773H35Z" fill="#FFE02C"/>
234
- <path d="M7 2829H13V2835H7V2829ZM3 2837H9V2843H3V2837ZM11 2837H17V2843H11V2837ZM27 2821.09V2819H17V2821H24.91C24.9339 2821 24.9568 2821.01 24.9736 2821.03C24.9905 2821.04 25 2821.07 25 2821.09V2827H27V2821.09Z" fill="#FAFAFA"/>
235
- <path d="M25 2813H10.87C10.374 2813 9.8984 2813.2 9.54771 2813.55C9.19702 2813.9 9 2814.37 9 2814.87V2821H11V2815H25V2817H27V2815C27 2814.47 26.7893 2813.96 26.4142 2813.59C26.0391 2813.21 25.5304 2813 25 2813Z" fill="#FAFAFA"/>
236
- <path d="M31 2831V2834.91C31 2834.93 30.9905 2834.96 30.9736 2834.97C30.9568 2834.99 30.9339 2835 30.91 2835H23.09C23.0661 2835 23.0432 2834.99 23.0264 2834.97C23.0095 2834.96 23 2834.93 23 2834.91V2825.09C23.0013 2824.82 22.9488 2824.55 22.8455 2824.29C22.7422 2824.04 22.5901 2823.81 22.3979 2823.62C22.2056 2823.42 21.9771 2823.27 21.7252 2823.16C21.4734 2823.06 21.2031 2823 20.93 2823H7.09C6.81685 2823 6.54611 2823.05 6.29325 2823.15C6.04039 2823.26 5.81036 2823.41 5.61628 2823.6C5.42221 2823.79 5.26789 2824.02 5.16215 2824.27C5.05641 2824.53 5.00131 2824.8 5 2825.07V2827H7V2825.09C7 2825.07 7.00948 2825.04 7.02636 2825.03C7.04324 2825.01 7.06613 2825 7.09 2825H20.89C20.9192 2825 20.9472 2825.01 20.9678 2825.03C20.9884 2825.05 21 2825.08 21 2825.11V2838.91C21 2838.93 20.9905 2838.96 20.9736 2838.97C20.9568 2838.99 20.9339 2839 20.91 2839H19V2841H22.6C22.7061 2841 22.8078 2840.96 22.8828 2840.88C22.9579 2840.81 23 2840.71 23 2840.6V2837H32.6C32.7061 2837 32.8078 2836.96 32.8828 2836.88C32.9579 2836.81 33 2836.71 33 2836.6V2831H31Z" fill="#FAFAFA"/>
237
- <path d="M31.9598 2815.4C33.7271 2815.4 35.1598 2813.97 35.1598 2812.2C35.1598 2810.43 33.7271 2809 31.9598 2809C30.1925 2809 28.7598 2810.43 28.7598 2812.2C28.7598 2813.97 30.1925 2815.4 31.9598 2815.4Z" fill="#E46C00"/>
238
- <path d="M29 2817H35V2829H29V2817Z" fill="#E46C00"/>
239
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2855.5C38 2860.75 33.7467 2865 28.5 2865C23.2533 2865 19 2860.75 19 2855.5C19 2850.25 23.2533 2846 28.5 2846C33.7467 2846 38 2850.25 38 2855.5ZM26.125 2851.51C26.7546 2851.51 27.265 2852.02 27.265 2852.65V2858.35C27.265 2858.98 26.7546 2859.49 26.125 2859.49C25.4954 2859.49 24.985 2858.98 24.985 2858.35V2852.65C24.985 2852.02 25.4954 2851.51 26.125 2851.51ZM32.0147 2852.65C32.0147 2852.02 31.5043 2851.51 30.8747 2851.51C30.2451 2851.51 29.7347 2852.02 29.7347 2852.65V2858.35C29.7347 2858.98 30.2451 2859.49 30.8747 2859.49C31.5043 2859.49 32.0147 2858.98 32.0147 2858.35V2852.65Z" fill="#BDC3C7"/>
240
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2849.46C18.2509 2849.51 17.9273 2849.62 17.6282 2849.8L6.51919 2856.21C5.67006 2856.7 5.14697 2857.61 5.14697 2858.59V2871.41C5.14697 2872.39 5.67006 2873.3 6.51919 2873.79L17.6282 2880.2C18.4774 2880.69 19.5235 2880.69 20.3727 2880.2L31.4817 2873.79C32.3309 2873.3 32.8539 2872.39 32.8539 2871.41V2866.27C32.1794 2866.54 31.4734 2866.75 30.7428 2866.89V2871.41C30.7428 2871.64 30.6221 2871.85 30.4262 2871.96L20.056 2877.95V2865.61L21.5084 2864.77C20.918 2864.32 20.3715 2863.82 19.8766 2863.28L19.0005 2863.78L8.31364 2857.61L17.3014 2852.42C17.5906 2851.37 18.025 2850.37 18.5816 2849.46ZM17.9449 2865.61V2877.95L7.57475 2871.96C7.3788 2871.85 7.25808 2871.64 7.25808 2871.41V2859.44L17.9449 2865.61Z" fill="#E9EAEC"/>
241
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.1665 2891.18C3.1665 2889.55 4.48975 2888.22 6.12206 2888.22H23.4332C25.0655 2888.22 26.3887 2889.55 26.3887 2891.18V2894.56H24.2776V2891.18C24.2776 2890.71 23.8995 2890.33 23.4332 2890.33H6.12206C5.65569 2890.33 5.27761 2890.71 5.27761 2891.18V2904.27C5.27761 2904.73 5.65569 2905.11 6.12206 2905.11H8.44428V2907.22H6.12206C4.48975 2907.22 3.1665 2905.9 3.1665 2904.27V2891.18Z" fill="#E9EAEC"/>
242
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38867 2896.46C7.38867 2894.82 8.71192 2893.5 10.3442 2893.5H27.6553C29.2876 2893.5 30.6109 2894.82 30.6109 2896.46V2899.83H28.4998V2896.46C28.4998 2895.99 28.1217 2895.61 27.6553 2895.61H10.3442C9.87785 2895.61 9.49978 2895.99 9.49978 2896.46V2909.54C9.49978 2910.01 9.87785 2910.39 10.3442 2910.39H12.6664V2912.5H10.3442C8.71192 2912.5 7.38867 2911.18 7.38867 2909.54V2896.46Z" fill="#E9EAEC"/>
243
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.6108 2901.73C11.6108 2900.1 12.9341 2898.78 14.5664 2898.78H31.8775C33.5098 2898.78 34.8331 2900.1 34.8331 2901.73V2914.82C34.8331 2916.45 33.5098 2917.78 31.8775 2917.78H14.5664C12.9341 2917.78 11.6108 2916.45 11.6108 2914.82V2901.73ZM14.5664 2900.89C14.1 2900.89 13.722 2901.27 13.722 2901.73V2914.82C13.722 2915.29 14.1 2915.67 14.5664 2915.67H31.8775C32.3439 2915.67 32.7219 2915.29 32.7219 2914.82V2901.73C32.7219 2901.27 32.3439 2900.89 31.8775 2900.89H14.5664Z" fill="#E9EAEC"/>
244
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.833 2912.5C15.833 2911.92 16.3056 2911.44 16.8886 2911.44H29.5552C30.1382 2911.44 30.6108 2911.92 30.6108 2912.5C30.6108 2913.08 30.1382 2913.56 29.5552 2913.56H16.8886C16.3056 2913.56 15.833 2913.08 15.833 2912.5Z" fill="#E9EAEC"/>
245
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.1281 2926.81L20.3727 2925.8C19.5235 2925.31 18.4774 2925.31 17.6282 2925.8L6.51919 2932.21C5.67006 2932.7 5.14697 2933.61 5.14697 2934.59V2947.41C5.14697 2948.39 5.67006 2949.3 6.51919 2949.79L17.6282 2956.2C18.4774 2956.69 19.5235 2956.69 20.3727 2956.2L31.4817 2949.79C32.3309 2949.3 32.8539 2948.39 32.8539 2947.41V2940.57L30.7428 2940.57V2947.41C30.7428 2947.64 30.6221 2947.85 30.4262 2947.96L20.056 2953.95V2941.61L21.8541 2940.57L20.7754 2940.57C20.0893 2940.56 19.4171 2940.38 18.8258 2940.03C18.387 2939.77 18.0041 2939.43 17.6969 2939.03L8.31364 2933.61L18.6838 2927.62C18.8797 2927.51 19.1212 2927.51 19.3171 2927.62L21.0431 2928.62L22.1281 2926.81ZM17.9449 2941.61V2953.95L7.57475 2947.96C7.3788 2947.85 7.25808 2947.64 7.25808 2947.41V2935.44L17.9449 2941.61Z" fill="#E9EAEC"/>
246
- <path d="M26.9452 2922.88L19.2437 2935.73C19.0849 2936.01 19.0009 2936.32 19 2936.64C18.9991 2936.95 19.0814 2937.27 19.2386 2937.54C19.3959 2937.82 19.6226 2938.05 19.8963 2938.21C20.17 2938.37 20.481 2938.46 20.7985 2938.46H36.2015C36.519 2938.46 36.83 2938.37 37.1037 2938.21C37.3774 2938.05 37.6041 2937.82 37.7614 2937.54C37.9186 2937.27 38.0009 2936.95 38 2936.64C37.9991 2936.32 37.9151 2936.01 37.7563 2935.73L30.0548 2922.88C29.8927 2922.61 29.6645 2922.39 29.3922 2922.23C29.1198 2922.08 28.8125 2922 28.5 2922C28.1875 2922 27.8802 2922.08 27.6078 2922.23C27.3355 2922.39 27.1073 2922.61 26.9452 2922.88Z" fill="#FBCE28"/>
247
- <path fill-rule="evenodd" clip-rule="evenodd" d="M28.4999 2931.88C29.1295 2931.88 29.6399 2931.37 29.6399 2930.74V2926.94C29.6399 2926.31 29.1295 2925.8 28.4999 2925.8C27.8703 2925.8 27.3599 2926.31 27.3599 2926.94V2930.74C27.3599 2931.37 27.8703 2931.88 28.4999 2931.88Z" fill="#FBCE28"/>
248
- <path fill-rule="evenodd" clip-rule="evenodd" d="M28.4999 2931.88C29.1295 2931.88 29.6399 2931.37 29.6399 2930.74V2926.94C29.6399 2926.31 29.1295 2925.8 28.4999 2925.8C27.8703 2925.8 27.3599 2926.31 27.3599 2926.94V2930.74C27.3599 2931.37 27.8703 2931.88 28.4999 2931.88Z" fill="#213444" fill-opacity="0.88"/>
249
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.1699 2935.11C27.1699 2934.37 27.7654 2933.78 28.4999 2933.78H28.5094C29.244 2933.78 29.8394 2934.37 29.8394 2935.11C29.8394 2935.84 29.244 2936.44 28.5094 2936.44H28.4999C27.7654 2936.44 27.1699 2935.84 27.1699 2935.11Z" fill="#FBCE28"/>
250
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.1699 2935.11C27.1699 2934.37 27.7654 2933.78 28.4999 2933.78H28.5094C29.244 2933.78 29.8394 2934.37 29.8394 2935.11C29.8394 2935.84 29.244 2936.44 28.5094 2936.44H28.4999C27.7654 2936.44 27.1699 2935.84 27.1699 2935.11Z" fill="#213444" fill-opacity="0.88"/>
251
- <path d="M13 2965H27V2967H29V2965C29 2964.47 28.7893 2963.96 28.4142 2963.59C28.0391 2963.21 27.5304 2963 27 2963H12.87C12.374 2963 11.8984 2963.2 11.5477 2963.55C11.197 2963.9 11 2964.37 11 2964.87V2971H13V2965Z" fill="#FAFAFA"/>
252
- <path d="M32.9102 2969H19.0002V2971H26.9102C26.9341 2971 26.957 2971.01 26.9738 2971.03C26.9907 2971.04 27.0002 2971.07 27.0002 2971.09V2977H29.0002V2971.09C29.0002 2971.07 29.0097 2971.04 29.0265 2971.03C29.0434 2971.01 29.0663 2971 29.0902 2971H32.9102C32.9341 2971 32.957 2971.01 32.9738 2971.03C32.9907 2971.04 33.0002 2971.07 33.0002 2971.09V2984.91C33.0002 2984.93 32.9907 2984.96 32.9738 2984.97C32.957 2984.99 32.9341 2985 32.9102 2985H25.0902C25.0663 2985 25.0434 2984.99 25.0265 2984.97C25.0097 2984.96 25.0002 2984.93 25.0002 2984.91V2975.09C25.0015 2974.82 24.9484 2974.54 24.8438 2974.29C24.7392 2974.03 24.5853 2973.8 24.391 2973.61C24.1967 2973.41 23.9657 2973.26 23.7116 2973.16C23.4574 2973.05 23.185 2973 22.9102 2973H9.09019C8.6927 2973 8.30377 2973.12 7.96901 2973.33C7.63425 2973.54 7.36755 2973.85 7.20019 2974.21C7.69916 2974.39 8.15298 2974.68 8.53019 2975.05L9.00019 2975.52V2975.11C9.00019 2975.08 9.01178 2975.05 9.03241 2975.03C9.05304 2975.01 9.08101 2975 9.11019 2975H22.9102C22.9341 2975 22.957 2975.01 22.9738 2975.03C22.9907 2975.04 23.0002 2975.07 23.0002 2975.09V2984.91C23.0002 2984.93 22.9907 2984.96 22.9738 2984.97C22.957 2984.99 22.9341 2985 22.9102 2985H19.0902C19.0663 2985 19.0434 2984.99 19.0265 2984.97C19.0097 2984.96 19.0002 2984.93 19.0002 2984.91V2979H17.0002V2983.58L20.3902 2987H22.9102C22.9341 2987 22.957 2987.01 22.9738 2987.03C22.9907 2987.04 23.0002 2987.07 23.0002 2987.09V2988.91C23.0002 2988.93 22.9907 2988.96 22.9738 2988.97C22.957 2988.99 22.9341 2989 22.9102 2989H22.3802L22.6202 2989.25L22.7502 2989.8L23.0002 2991C23.537 2990.98 24.0443 2990.75 24.4167 2990.36C24.7892 2989.97 24.9981 2989.46 25.0002 2988.92V2987.09C25.0002 2987.07 25.0097 2987.04 25.0265 2987.03C25.0434 2987.01 25.0663 2987 25.0902 2987H32.9102C33.185 2987 33.4574 2986.95 33.7116 2986.84C33.9657 2986.74 34.1967 2986.59 34.391 2986.39C34.5853 2986.2 34.7392 2985.97 34.8438 2985.71C34.9484 2985.46 35.0015 2985.18 35.0002 2984.91V2971.09C35.0015 2970.82 34.9484 2970.54 34.8438 2970.29C34.7392 2970.03 34.5853 2969.8 34.391 2969.61C34.1967 2969.41 33.9657 2969.26 33.7116 2969.16C33.4574 2969.05 33.185 2969 32.9102 2969ZM1.47019 2979.83C1.32022 2979.98 1.20123 2980.16 1.12005 2980.35C1.03886 2980.55 0.99707 2980.76 0.99707 2980.97C0.99707 2981.18 1.03886 2981.39 1.12005 2981.59C1.20123 2981.78 1.32022 2981.96 1.47019 2982.11L15.1302 2995.92L20.0002 2997H20.3702C20.6087 2997 20.8443 2996.95 21.0598 2996.85C21.2753 2996.74 21.4653 2996.59 21.6158 2996.41C21.7663 2996.22 21.8735 2996.01 21.9296 2995.78C21.9858 2995.54 21.9894 2995.3 21.9402 2995.07L20.8002 2990.25L7.11019 2976.46C6.96148 2976.31 6.78465 2976.19 6.58986 2976.11C6.39507 2976.03 6.18617 2975.99 5.97519 2975.99C5.76421 2975.99 5.55531 2976.03 5.36052 2976.11C5.16573 2976.19 4.98889 2976.31 4.84019 2976.46L1.47019 2979.83ZM5.85019 2983.68L8.67019 2980.86L19.0002 2991.25L19.8502 2994.88L16.2002 2994.07L5.85019 2983.68ZM3.16019 2981L6.00019 2978.15L7.55019 2979.73L4.73019 2982.55L3.16019 2981Z" fill="#FAFAFA"/>
253
- <path d="M7.50601 3001.17C6.3551 3001.17 5.25133 3001.62 4.43752 3002.44C3.6237 3003.25 3.1665 3004.36 3.1665 3005.51V3010.43C3.1665 3011.02 3.63909 3011.49 4.22206 3011.49C4.80503 3011.49 5.27762 3011.02 5.27762 3010.43V3005.51C5.27762 3004.92 5.51239 3004.35 5.9303 3003.93C6.3482 3003.51 6.915 3003.28 7.50601 3003.28H12.4319C13.0149 3003.28 13.4875 3002.81 13.4875 3002.22C13.4875 3001.64 13.0149 3001.17 12.4319 3001.17H7.50601Z" fill="#E9EAEC"/>
254
- <path d="M25.5677 3001.17C24.9848 3001.17 24.5122 3001.64 24.5122 3002.22C24.5122 3002.81 24.9848 3003.28 25.5677 3003.28H30.4937C31.0847 3003.28 31.6515 3003.51 32.0694 3003.93C32.4873 3004.35 32.7221 3004.92 32.7221 3005.51V3010.43C32.7221 3011.02 33.1946 3011.49 33.7776 3011.49C34.3606 3011.49 34.8332 3011.02 34.8332 3010.43V3005.51C34.8332 3004.36 34.376 3003.25 33.5622 3002.44C32.7483 3001.62 31.6446 3001.17 30.4937 3001.17H25.5677Z" fill="#E9EAEC"/>
255
- <path d="M5.27762 3023.57C5.27762 3022.99 4.80503 3022.51 4.22206 3022.51C3.63909 3022.51 3.1665 3022.99 3.1665 3023.57V3028.49C3.1665 3029.65 3.6237 3030.75 4.43752 3031.56C5.25133 3032.38 6.3551 3032.83 7.50601 3032.83H12.4319C13.0149 3032.83 13.4875 3032.36 13.4875 3031.78C13.4875 3031.2 13.0149 3030.72 12.4319 3030.72H7.50601C6.915 3030.72 6.3482 3030.49 5.9303 3030.07C5.51239 3029.65 5.27762 3029.09 5.27762 3028.49V3023.57Z" fill="#E9EAEC"/>
256
- <path d="M13.4054 3017C13.4054 3013.91 15.9101 3011.41 18.9998 3011.41C20.8991 3011.41 22.5773 3012.35 23.5886 3013.8C23.7978 3013.59 24.0283 3013.39 24.2775 3013.22C24.6186 3012.99 24.9877 3012.8 25.3739 3012.67C23.9872 3010.63 21.6498 3009.29 18.9998 3009.29C14.7442 3009.29 11.2943 3012.74 11.2943 3017C11.2943 3020.57 13.7239 3023.58 17.0204 3024.45L16.8368 3024.22C16.2574 3023.5 15.9107 3022.62 15.8447 3021.69C15.843 3021.67 15.8415 3021.64 15.8401 3021.62C14.3699 3020.61 13.4054 3018.92 13.4054 3017Z" fill="#E9EAEC"/>
257
- <path fill-rule="evenodd" clip-rule="evenodd" d="M26.8611 3014.53L26.8642 3014.53L28.0276 3014.53C28.524 3014.53 29.0088 3014.68 29.4187 3014.96C29.8285 3015.24 30.1444 3015.64 30.3243 3016.1L30.797 3017.32L32.2199 3018.13L33.526 3017.93L33.5431 3017.93C34.0273 3017.87 34.5204 3017.95 34.9597 3018.16C35.3992 3018.37 35.7656 3018.71 36.0117 3019.14L36.0146 3019.14L36.5777 3020.12C36.8291 3020.55 36.9451 3021.04 36.9098 3021.54C36.8745 3022.04 36.689 3022.51 36.3787 3022.9L36.3759 3022.9L35.5747 3023.92V3025.54L36.4042 3026.57C36.7162 3026.95 36.9027 3027.43 36.9381 3027.93C36.9734 3028.42 36.8575 3028.92 36.606 3029.35L36.0429 3030.33L36.04 3030.33C35.7939 3030.75 35.4274 3031.09 34.988 3031.31C34.5487 3031.52 34.0556 3031.6 33.5714 3031.54L33.5543 3031.53L32.2482 3031.34L30.8253 3032.15L30.3528 3033.36C30.1729 3033.83 29.8565 3034.22 29.447 3034.51C29.0371 3034.79 28.5523 3034.94 28.0559 3034.94L28.0528 3034.94H26.8642L26.8611 3034.94C26.3647 3034.94 25.8799 3034.79 25.47 3034.51C25.0605 3034.22 24.7446 3033.83 24.5647 3033.36M24.5647 3033.36L24.0917 3032.15L22.6688 3031.34L21.3627 3031.53L21.3456 3031.54C20.8613 3031.6 20.3683 3031.52 19.9289 3031.31C19.4895 3031.09 19.1231 3030.75 18.877 3030.33L18.8741 3030.33L18.3109 3029.35C18.0595 3028.92 17.9436 3028.42 17.9788 3027.93C18.0142 3027.43 18.1996 3026.96 18.51 3026.57L19.3139 3025.55V3023.93L18.4845 3022.9C18.1724 3022.51 17.986 3022.04 17.9505 3021.54C17.9153 3021.04 18.0312 3020.55 18.2826 3020.12L18.8487 3019.14C19.0948 3018.71 19.4612 3018.37 19.9006 3018.16C20.34 3017.95 20.833 3017.87 21.3173 3017.93L21.3344 3017.93L22.6439 3018.13L24.0929 3017.31L24.5642 3016.1C24.7441 3015.64 25.0603 3015.24 25.47 3014.96C25.8799 3014.68 26.3647 3014.53 26.8611 3014.53M26.8663 3016.64C26.7929 3016.64 26.7219 3016.66 26.6624 3016.7C26.6028 3016.75 26.5577 3016.8 26.5324 3016.87L25.9234 3018.43C25.835 3018.66 25.6709 3018.85 25.4588 3018.97L23.3646 3020.15C23.1591 3020.27 22.9207 3020.31 22.6873 3020.27L21.029 3020.02C20.9591 3020.01 20.8884 3020.03 20.8256 3020.06C20.7617 3020.09 20.7094 3020.14 20.6744 3020.2L20.1038 3021.19C20.0678 3021.25 20.0514 3021.32 20.0563 3021.39C20.0612 3021.46 20.0869 3021.53 20.1308 3021.58L21.1894 3022.89C21.3419 3023.07 21.425 3023.31 21.425 3023.55V3025.92C21.425 3026.15 21.3451 3026.38 21.1981 3026.57L20.1604 3027.89C20.1157 3027.94 20.0896 3028.01 20.0846 3028.08C20.0797 3028.15 20.096 3028.22 20.1321 3028.28L20.1387 3028.29L20.7027 3029.27C20.7377 3029.33 20.79 3029.38 20.8539 3029.41C20.9167 3029.44 20.9874 3029.45 21.0573 3029.44L22.7156 3029.19C22.951 3029.16 23.1916 3029.2 23.3983 3029.32L25.4641 3030.5C25.6737 3030.62 25.8358 3030.81 25.9234 3031.04L26.5324 3032.6C26.5577 3032.67 26.6028 3032.72 26.6624 3032.76C26.722 3032.8 26.793 3032.83 26.8663 3032.83H28.0506C28.124 3032.83 28.195 3032.8 28.2545 3032.76C28.3142 3032.72 28.3592 3032.67 28.3846 3032.6L28.9935 3031.04C29.0812 3030.81 29.2433 3030.62 29.4528 3030.5L31.5187 3029.32C31.7254 3029.2 31.9659 3029.16 32.2013 3029.19L33.8597 3029.44C33.9296 3029.45 34.0003 3029.44 34.0631 3029.41C34.127 3029.38 34.1793 3029.33 34.2143 3029.27L34.7848 3028.28C34.8209 3028.22 34.8373 3028.15 34.8324 3028.08C34.8274 3028.01 34.8018 3027.94 34.7579 3027.89L33.6993 3026.58C33.5468 3026.39 33.4636 3026.16 33.4636 3025.92V3023.55C33.4636 3023.31 33.5436 3023.08 33.6906 3022.9L34.7283 3021.58C34.773 3021.53 34.7991 3021.46 34.8041 3021.39C34.809 3021.32 34.7927 3021.25 34.7566 3021.19L34.75 3021.18L34.186 3020.2C34.151 3020.14 34.0987 3020.09 34.0348 3020.06C33.972 3020.03 33.9013 3020.01 33.8313 3020.02L32.173 3020.27C31.9376 3020.31 31.6971 3020.27 31.4904 3020.15L29.4245 3018.96C29.215 3018.85 29.0529 3018.66 28.9652 3018.43L28.3563 3016.87C28.3309 3016.8 28.2859 3016.75 28.2262 3016.7C28.1667 3016.66 28.0957 3016.64 28.0224 3016.64H26.8663ZM24.6989 3022C25.428 3021.27 26.4157 3020.86 27.4443 3020.86C28.2116 3020.86 28.962 3021.09 29.6008 3021.51C30.2397 3021.94 30.7385 3022.54 31.0333 3023.25C31.3281 3023.96 31.4053 3024.74 31.255 3025.49C31.1046 3026.24 30.7336 3026.93 30.1898 3027.47C29.646 3028.01 28.9539 3028.38 28.2013 3028.53C27.4487 3028.68 26.6685 3028.6 25.9593 3028.31C25.2499 3028.02 24.6427 3027.52 24.2151 3026.89C23.7875 3026.25 23.5588 3025.5 23.5588 3024.73C23.5588 3023.71 23.9696 3022.72 24.6989 3022ZM27.4443 3022.97C26.9719 3022.97 26.52 3023.16 26.1877 3023.49C25.8555 3023.82 25.67 3024.27 25.67 3024.73C25.67 3025.08 25.7733 3025.42 25.9675 3025.71C26.1618 3026 26.4386 3026.22 26.7635 3026.36C27.0884 3026.49 27.4463 3026.53 27.7916 3026.46C28.1368 3026.39 28.4532 3026.22 28.701 3025.98C28.9487 3025.73 29.1168 3025.42 29.1848 3025.08C29.2529 3024.74 29.218 3024.38 29.0844 3024.06C28.9508 3023.74 28.7242 3023.47 28.4323 3023.27C28.1404 3023.08 27.7965 3022.97 27.4443 3022.97Z" fill="#E9EAEC"/>
258
- </g>
259
- <defs>
260
- <clipPath id="clip0_2062_6492">
261
- <rect width="38" height="3036" fill="white"/>
262
- </clipPath>
263
- </defs>
264
- </svg>
1
+ <svg width="38" height="3036" viewBox="0 0 38 3036" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2062_6492)">
3
+ <path d="M34 31H4C3.73478 31 3.48043 30.8946 3.29289 30.7071C3.10536 30.5196 3 30.2652 3 30V8C3 7.73478 3.10536 7.48043 3.29289 7.29289C3.48043 7.10536 3.73478 7 4 7H34C34.2652 7 34.5196 7.10536 34.7071 7.29289C34.8946 7.48043 35 7.73478 35 8V30C35 30.2652 34.8946 30.5196 34.7071 30.7071C34.5196 30.8946 34.2652 31 34 31ZM5 29H33V9H5V29Z" fill="#FAFAFA"/>
4
+ <path d="M13.8498 15V22.4H12.2698V19.34H8.8998V22.4H7.2998V15H8.8998V17.91H12.2698V15H13.8498ZM15.7398 15H18.3998C20.8898 15 22.6598 16.53 22.6598 18.69C22.6598 20.85 20.8898 22.4 18.3998 22.4H15.7398V15ZM18.6098 21C19.2092 21 19.784 20.7619 20.2079 20.3381C20.6317 19.9142 20.8698 19.3394 20.8698 18.74C20.8698 18.1406 20.6317 17.5658 20.2079 17.1419C19.784 16.7181 19.2092 16.48 18.6098 16.48H17.3398V21H18.6098ZM24.0798 15H26.7498C29.2298 15 30.9998 16.53 30.9998 18.69C30.9998 20.85 29.2298 22.4 26.7498 22.4H24.0798V15ZM26.9998 21C27.5992 21 28.174 20.7619 28.5979 20.3381C29.0217 19.9142 29.2598 19.3394 29.2598 18.74C29.2598 18.1406 29.0217 17.5658 28.5979 17.1419C28.174 16.7181 27.5992 16.48 26.9998 16.48H25.6798V21H26.9998Z" fill="#FAFAFA"/>
5
+ <path d="M34 69H4C3.73478 69 3.48043 68.8946 3.29289 68.7071C3.10536 68.5196 3 68.2652 3 68V46C3 45.7348 3.10536 45.4804 3.29289 45.2929C3.48043 45.1054 3.73478 45 4 45H34C34.2652 45 34.5196 45.1054 34.7071 45.2929C34.8946 45.4804 35 45.7348 35 46V68C35 68.2652 34.8946 68.5196 34.7071 68.7071C34.5196 68.8946 34.2652 69 34 69ZM5 67H33V47H5V67Z" fill="#FAFAFA"/>
6
+ <path d="M17.9198 54.64V56.73H22.7598V58.59H17.9198V62.4H15.8398V52.78H23.2498V54.64H17.9198Z" fill="#FAFAFA"/>
7
+ <path d="M9 93.9999C10.7077 94.4126 12.4472 94.6803 14.2 94.7999C14.662 94.2388 15.2421 93.7866 15.8989 93.4754C16.5558 93.1643 17.2732 93.0019 18 92.9999H19C15.6324 93.0849 12.2686 92.7149 9 91.8999V93.9999ZM15 101H13V100.6C11.6476 100.439 10.3101 100.172 9 99.7999V102C11.6292 102.585 14.3078 102.92 17 103V101H15Z" fill="#FAFAFA"/>
8
+ <path d="M17.1 109C11.1 108.8 7.5 107.7 7 107V83.1C7.5 82.3 11.9 81 19 81C25.9 81 30.2 82.2 30.9 83C30.2 83.8 25.9 85 19 85C15.6324 85.085 12.2686 84.715 9 83.9V86C12.2889 86.6839 15.6408 87.0191 19 87C20.1 87 27.4 86.9 31 85.3V90.9C30.5 91.7 26.2 93 19 93H28C28.8057 92.9974 29.5983 93.2041 30.3 93.6C30.5 93.5 30.8 93.4 31 93.3V94C31.6336 94.4537 32.1469 95.0552 32.4955 95.7523C32.844 96.4493 33.0172 97.2209 33 98V83C33 79.1 20.4 79 19 79C17.6 79 5 79.1 5 83V107C5 110.4 14.7 110.9 18 111C17.5599 110.406 17.2529 109.724 17.1 109Z" fill="#FAFAFA"/>
9
+ <path d="M23 105V109H22C21.8664 109.009 21.7324 108.989 21.6071 108.942C21.4818 108.895 21.368 108.821 21.2733 108.727C21.1786 108.632 21.1052 108.518 21.0581 108.393C21.011 108.268 20.9912 108.134 21 108V97H28C28.1336 96.9912 28.2676 97.011 28.3929 97.0581C28.5182 97.1052 28.632 97.1786 28.7267 97.2733C28.8214 97.368 28.8948 97.4818 28.9419 97.6071C28.989 97.7324 29.0088 97.8664 29 98V106H31V98C31 97.2044 30.6839 96.4413 30.1213 95.8787C29.5587 95.3161 28.7956 95 28 95H18C17.2044 95 16.4413 95.3161 15.8787 95.8787C15.3161 96.4413 15 97.2044 15 98V99H17V98C16.9912 97.8664 17.011 97.7324 17.0581 97.6071C17.1052 97.4818 17.1786 97.368 17.2733 97.2733C17.368 97.1786 17.4818 97.1052 17.6071 97.0581C17.7324 97.011 17.8664 96.9912 18 97H19V108C19 108.796 19.3161 109.559 19.8787 110.121C20.4413 110.684 21.2044 111 22 111H32C32.7956 111 33.5587 110.684 34.1213 110.121C34.6839 109.559 35 108.796 35 108V105H23ZM33 108C33.0088 108.134 32.989 108.268 32.9419 108.393C32.8948 108.518 32.8214 108.632 32.7267 108.727C32.632 108.821 32.5182 108.895 32.3929 108.942C32.2676 108.989 32.1336 109.009 32 109H25V107H33V108Z" fill="#FAFAFA"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M27.7257 137.434C30.0964 137.434 32.0183 139.355 32.0183 141.726C32.0183 144.097 30.0964 146.019 27.7257 146.019C27.0429 146.019 26.3979 145.86 25.825 145.576C25.8228 145.575 25.8207 145.574 25.8185 145.573C25.4809 145.405 25.1681 145.194 24.8876 144.947C24.8417 144.906 24.7967 144.865 24.7526 144.823C24.7316 144.802 24.7109 144.782 24.6904 144.762C24.6894 144.761 24.6885 144.76 24.6875 144.759C24.6321 144.703 24.5782 144.646 24.5259 144.588C24.1371 144.153 23.4698 144.116 23.0354 144.505C22.601 144.894 22.564 145.561 22.9528 145.996C23.4926 146.599 24.1455 147.099 24.879 147.464C24.8811 147.465 24.8831 147.466 24.8852 147.467C25.7412 147.891 26.7059 148.13 27.7257 148.13C31.2623 148.13 34.1294 145.263 34.1294 141.726C34.1294 138.19 31.2623 135.323 27.7257 135.323C24.8048 135.323 23.0514 137.297 21.6311 138.897C21.6168 138.913 21.6025 138.929 21.5883 138.945C21.2012 139.381 21.2407 140.049 21.6767 140.436C22.1126 140.823 22.7797 140.783 23.1668 140.347C24.6892 138.633 25.8533 137.434 27.7257 137.434Z" fill="#E9EAEC"/>
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.378 136.214C21.7951 136.214 21.3225 136.686 21.3225 137.269V139.646C21.3225 140.229 21.7951 140.702 22.378 140.702H24.755C25.338 140.702 25.8105 140.229 25.8105 139.646C25.8105 139.063 25.338 138.591 24.755 138.591H23.4336V137.269C23.4336 136.686 22.961 136.214 22.378 136.214Z" fill="#E9EAEC"/>
12
+ <path d="M7.81849 122.207C7.62392 122.092 7.51293 122.002 7.45086 121.942L7.38894 124.357C8.02293 124.644 8.77879 124.89 9.61069 125.098C11.8994 125.67 15.0053 126.013 18.3969 126.013C21.7884 126.013 24.8943 125.67 27.1831 125.098C28.015 124.89 28.7708 124.644 29.4048 124.357V122.011C29.3941 121.996 29.3751 121.973 29.3429 121.942C29.2808 122.002 29.1698 122.092 28.9753 122.207C28.4901 122.494 27.7179 122.788 26.671 123.05C24.5936 123.569 21.6678 123.902 18.3969 123.902C15.1259 123.902 12.2001 123.569 10.1227 123.05C9.07589 122.788 8.30363 122.494 7.81849 122.207Z" fill="#E9EAEC"/>
13
+ <path d="M29.4793 131.701C29.6345 132.091 30.0152 132.366 30.4604 132.366C31.0433 132.366 31.5159 131.894 31.5159 131.311V129.32C31.5159 130 31.1612 130.524 30.7225 130.917C30.5544 131.068 30.3746 131.199 30.1992 131.311C30.1488 131.343 30.0988 131.374 30.0495 131.403C29.8737 131.507 29.6831 131.606 29.4793 131.701Z" fill="#E9EAEC"/>
14
+ <path d="M7.38894 131.735C7.15699 131.63 6.94136 131.519 6.74428 131.403C6.71744 131.387 6.69037 131.371 6.66315 131.354L6.59794 131.313C6.40916 131.193 6.21092 131.048 6.02711 130.877C5.6116 130.491 5.27783 129.979 5.27783 129.32V136.699V144.058C5.27783 144.725 5.6207 145.242 6.04402 145.63C6.24759 145.817 6.4689 145.973 6.67756 146.1L6.70399 146.116L6.74429 146.141C6.85698 146.207 6.97573 146.272 7.10013 146.335C7.44528 146.509 7.83308 146.669 8.2542 146.815C8.67511 146.962 9.13022 147.094 9.61069 147.215C11.8994 147.787 15.0053 148.129 18.3969 148.129C18.9798 148.129 19.4524 147.657 19.4524 147.074C19.4524 146.491 18.9798 146.018 18.3969 146.018C18.2066 146.018 18.0174 146.017 17.8295 146.015L17.8198 146.015C14.6836 145.977 11.9052 145.634 9.94168 145.12C9.19937 144.926 8.60701 144.716 8.16705 144.507C8.03873 144.446 7.92337 144.385 7.82104 144.325L7.77798 144.299C7.60932 144.196 7.50951 144.115 7.45152 144.059C7.41896 144.027 7.39974 144.004 7.38894 143.989V139.114C7.48819 139.159 7.59006 139.203 7.69431 139.246C8.10887 139.415 8.56427 139.568 9.04792 139.706C11.025 140.267 13.7205 140.64 16.7173 140.742C17.2999 140.762 17.7883 140.306 17.8082 139.723C17.828 139.14 17.3718 138.652 16.7891 138.632C16.6554 138.628 16.5224 138.622 16.3903 138.617L16.3613 138.615C13.5788 138.494 11.1743 138.131 9.496 137.637C8.70604 137.405 8.12956 137.158 7.7584 136.928L7.76246 136.93C7.74418 136.919 7.72639 136.908 7.70908 136.896L7.70575 136.894L7.68177 136.878L7.64066 136.85L7.63216 136.844C7.5182 136.764 7.45286 136.703 7.41617 136.663L7.41399 136.661L7.40329 136.649C7.39753 136.642 7.3928 136.636 7.38894 136.631C7.38095 136.62 7.37529 136.61 7.37529 136.61L7.37609 136.612L7.37394 136.607L7.37529 136.61C7.37529 136.61 7.38095 136.62 7.38894 136.631V131.735Z" fill="#E9EAEC"/>
15
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.74428 131.403C6.94136 131.519 7.15699 131.63 7.38894 131.735C7.51967 131.795 7.65534 131.852 7.7955 131.908C8.33729 132.123 8.95 132.312 9.61067 132.477C11.8994 133.049 15.0053 133.392 18.3969 133.392C21.7884 133.392 24.8944 133.049 27.1831 132.477C28.0478 132.261 28.8304 132.003 29.4793 131.701C29.6831 131.606 29.8737 131.507 30.0495 131.403C30.0988 131.374 30.1488 131.343 30.1992 131.311C30.3746 131.199 30.5544 131.068 30.7225 130.917C31.1612 130.524 31.5159 130 31.5159 129.32V121.942C31.5159 120.922 30.7146 120.252 30.0495 119.859C29.3137 119.424 28.3193 119.069 27.1831 118.785C24.8943 118.213 21.7884 117.87 18.3969 117.87C15.0053 117.87 11.8994 118.213 9.61069 118.785C8.47445 119.069 7.48006 119.424 6.7443 119.859C6.0792 120.252 5.27783 120.922 5.27783 121.942V129.32C5.27783 129.979 5.6116 130.491 6.02711 130.877C6.21092 131.048 6.40916 131.193 6.59794 131.313L6.66315 131.354C6.69037 131.371 6.71744 131.387 6.74428 131.403ZM7.38894 129.251V124.357L7.45086 121.942C7.51293 121.881 7.62392 121.791 7.81849 121.676C8.30363 121.39 9.07589 121.095 10.1227 120.833C12.2001 120.314 15.1259 119.981 18.3969 119.981C21.6678 119.981 24.5936 120.314 26.671 120.833C27.7179 121.095 28.4901 121.39 28.9753 121.676C29.1698 121.791 29.2808 121.881 29.3429 121.942C29.3751 121.973 29.3941 121.996 29.4048 122.011V124.357V129.251C29.4138 129.239 29.4171 129.233 29.4171 129.233L29.4157 129.237C29.4205 129.23 29.4223 129.227 29.4223 129.227C29.4223 129.227 29.4089 129.251 29.4056 129.299L29.4048 129.32C29.4048 129.313 29.4051 129.305 29.4056 129.299L29.4048 129.251L29.3984 129.26L29.3926 129.266C29.3279 129.343 29.1867 129.466 28.9221 129.616L28.9154 129.62C28.4276 129.896 27.6758 130.178 26.671 130.429C24.5936 130.948 21.6678 131.281 18.3969 131.281C17.9751 131.281 17.559 131.275 17.1497 131.264L17.1294 131.264C16.7849 131.255 16.4453 131.242 16.1111 131.225C15.9649 131.218 15.8198 131.21 15.6757 131.202C13.5152 131.074 11.6034 130.799 10.1227 130.429C9.07592 130.167 8.30365 129.872 7.81852 129.585C7.52312 129.411 7.42038 129.294 7.38894 129.251Z" fill="#E9EAEC"/>
16
+ <path d="M21 175H25V177H21V175ZM21 171H25V173H21V171ZM13 167H17V169H13V167ZM13 171H17V173H13V171ZM13 175H17V177H13V175Z" fill="#FAFAFA"/>
17
+ <path d="M21.94 167H21V169H23.94L21.94 167Z" fill="#FAFAFA"/>
18
+ <path d="M29.85 172.09L29 172.94V185H11C10.4696 185 9.96086 184.789 9.58579 184.414C9.21071 184.039 9 183.53 9 183V162.44C9.60419 162.803 10.2951 162.997 11 163H18.2C17.9175 162.369 17.8818 161.656 18.1 161H11C10.4696 161 9.96086 160.789 9.58579 160.414C9.21071 160.039 9 159.53 9 159C9 158.47 9.21071 157.961 9.58579 157.586C9.96086 157.211 10.4696 157 11 157H23V155H11C9.93913 155 8.92172 155.421 8.17157 156.172C7.42143 156.922 7 157.939 7 159V183C7 184.061 7.42143 185.078 8.17157 185.828C8.92172 186.579 9.93913 187 11 187H30C30.2652 187 30.5196 186.895 30.7071 186.707C30.8946 186.52 31 186.265 31 186V170.94L29.85 172.09Z" fill="#FAFAFA"/>
19
+ <path d="M20.1799 162.41C20.07 162.302 19.9948 162.164 19.9642 162.013C19.9335 161.862 19.9488 161.706 20.008 161.564C20.0672 161.422 20.1676 161.301 20.2963 161.216C20.425 161.132 20.576 161.088 20.7299 161.09H24.9999V153H31.9199V161.09H36.1299C36.2838 161.088 36.4349 161.132 36.5636 161.216C36.6923 161.301 36.7927 161.422 36.8519 161.564C36.9111 161.706 36.9263 161.862 36.8957 162.013C36.865 162.164 36.7899 162.302 36.6799 162.41L28.4199 170.67L20.1799 162.41Z" fill="#0091DA"/>
20
+ <mask id="mask0_2062_6492" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="191" width="36" height="36">
21
+ <path d="M1 191H37V227H1V191Z" fill="white"/>
22
+ </mask>
23
+ <g mask="url(#mask0_2062_6492)">
24
+ <path d="M33.4 199H29V201H33V221H29V223H35V200.7C35 199.8 34.3 199 33.4 199ZM23 199H15V201H23V199ZM5 208.2V201H9V199H4.8C3.8 199 3 199.7 3 200.7V209.2L5 208.2Z" fill="white"/>
25
+ <path d="M25.3 195H12.7C11.8 195 11 195.8 11 196.7V205.5L13 206.5V197H25V221H22.7L21.1 223H27V196.7C27 195.8 26.2 195 25.3 195Z" fill="white"/>
26
+ <path d="M6.6 224.1L3.7 220.4L1.5 220.9L5.7 226.1L6.6 224.1Z" fill="#78BE20"/>
27
+ <path d="M5.50029 212.2L9.80029 210.1V207.9L3.80029 210.8L5.50029 212.2ZM11.8003 207.9V210.1L16.1003 212.2L17.9003 210.8L11.8003 207.9Z" fill="#00C1D5"/>
28
+ <path d="M3.2001 218.4L4.3001 213.8L2.5001 212.4L1.1001 218.9L3.2001 218.4Z" fill="#3C7AD7"/>
29
+ <path d="M13.2 225H8.4L7.5 227H14.1L13.2 225Z" fill="#00C1D5"/>
30
+ <path d="M17.3003 213.8L18.4003 218.4L20.6003 218.9L19.1003 212.4L17.3003 213.8Z" fill="#3C7AD7"/>
31
+ <path d="M17.9 220.4L15 224.1L15.9 226.1L20.1 220.9L17.9 220.4Z" fill="#78BE20"/>
32
+ </g>
33
+ <path d="M32.6 250.2L25 259.8L24.4 258.6L31.2 250L32.6 250.2ZM9.8 258.4L3 249.8L1.6 250.2L9.2 259.8L9.8 258.4ZM1 248.2L3.8 236.4L5 237.2L2.4 247.8L1 248.2ZM33 248.2L30.4 236.4L29.2 237.2L31.6 247.8L33 248.2ZM22.6 259.2H11.6L11 260.6H23.2L22.6 259.2ZM28 235.6L18 230.8V229.4L29 234.6L28 235.6ZM16 229.4L5 234.6L6.2 235.6L16.2 230.8V229.4H16ZM22.2 256.4H11.8L5.4 248.2L7.8 238L17 233.6L26.4 238.2L28.8 248.4L22.2 256.4ZM12.6 255H21.6L27.2 248L25.2 239.2L17 235L8.8 239L6.8 247.8L12.6 255Z" fill="white"/>
34
+ <path d="M30 293H22C21.7348 293 21.4804 292.895 21.2929 292.707C21.1054 292.52 21 292.265 21 292V270C21 269.735 21.1054 269.48 21.2929 269.293C21.4804 269.105 21.7348 269 22 269H30C30.2652 269 30.5196 269.105 30.7071 269.293C30.8946 269.48 31 269.735 31 270V292C31 292.265 30.8946 292.52 30.7071 292.707C30.5196 292.895 30.2652 293 30 293ZM23 291H29V271H23V291ZM16 293H8C7.73478 293 7.48043 292.895 7.29289 292.707C7.10536 292.52 7 292.265 7 292V270C7 269.735 7.10536 269.48 7.29289 269.293C7.48043 269.105 7.73478 269 8 269H16C16.2652 269 16.5196 269.105 16.7071 269.293C16.8946 269.48 17 269.735 17 270V292C17 292.265 16.8946 292.52 16.7071 292.707C16.5196 292.895 16.2652 293 16 293ZM9 291H15V271H9V291Z" fill="#B68300"/>
35
+ <path d="M30 332C29.7348 332 29.4804 331.895 29.2929 331.707C29.1054 331.52 29 331.265 29 331V327H25C24.7348 327 24.4804 326.895 24.2929 326.707C24.1054 326.52 24 326.265 24 326C24 325.735 24.1054 325.48 24.2929 325.293C24.4804 325.105 24.7348 325 25 325H31V331C31 331.265 30.8946 331.52 30.7071 331.707C30.5196 331.895 30.2652 332 30 332ZM13 313H7V307C7 306.735 7.10536 306.48 7.29289 306.293C7.48043 306.105 7.73478 306 8 306C8.26522 306 8.51957 306.105 8.70711 306.293C8.89464 306.48 9 306.735 9 307V311H13C13.2652 311 13.5196 311.105 13.7071 311.293C13.8946 311.48 14 311.735 14 312C14 312.265 13.8946 312.52 13.7071 312.707C13.5196 312.895 13.2652 313 13 313Z" fill="#FAFAFA"/>
36
+ <path d="M30 332C29.7348 332 29.4804 331.895 29.2929 331.707C29.1054 331.52 29 331.265 29 331V327H25C24.7348 327 24.4804 326.895 24.2929 326.707C24.1054 326.52 24 326.265 24 326C24 325.735 24.1054 325.48 24.2929 325.293C24.4804 325.105 24.7348 325 25 325H31V331C31 331.265 30.8946 331.52 30.7071 331.707C30.5196 331.895 30.2652 332 30 332ZM13 313H7V307C7 306.735 7.10536 306.48 7.29289 306.293C7.48043 306.105 7.73478 306 8 306C8.26522 306 8.51957 306.105 8.70711 306.293C8.89464 306.48 9 306.735 9 307V311H13C13.2652 311 13.5196 311.105 13.7071 311.293C13.8946 311.48 14 311.735 14 312C14 312.265 13.8946 312.52 13.7071 312.707C13.5196 312.895 13.2652 313 13 313Z" fill="#FAFAFA"/>
37
+ <path d="M31.0001 325H29.3801C28.0566 327.282 26.0182 329.064 23.5802 330.07C21.1422 331.077 18.4404 331.253 15.8927 330.57C13.345 329.887 11.0933 328.383 9.48582 326.292C7.87839 324.2 7.00479 321.638 7.00012 319C7.00055 317.636 7.23739 316.283 7.70012 315H5.59012C4.6448 318.26 4.91587 321.752 6.35291 324.827C7.78995 327.902 10.2951 330.35 13.4022 331.716C16.5093 333.082 20.0068 333.272 23.244 332.252C26.4811 331.232 29.2374 329.071 31.0001 326.17V325ZM7.00012 313H8.62012C9.94363 310.719 11.982 308.937 14.42 307.93C16.858 306.923 19.5598 306.748 22.1076 307.431C24.6553 308.114 26.907 309.617 28.5144 311.708C30.1218 313.8 30.9955 316.362 31.0001 319C30.9997 320.364 30.7628 321.717 30.3001 323H32.4101C33.3554 319.74 33.0844 316.248 31.6473 313.173C30.2103 310.098 27.7052 307.65 24.598 306.284C21.4909 304.919 17.9934 304.728 14.7563 305.748C11.5191 306.768 8.76279 308.93 7.00012 311.83V313Z" fill="#FAFAFA"/>
38
+ <path d="M25 365H23V363H21V367H25V365ZM17 359H19V361H17V359ZM17 363H19V365H17V363ZM27 359H31V361H27V359ZM10.92 359H5V347H21V353.07H23V346C23 345.735 22.8946 345.48 22.7071 345.293C22.5196 345.105 22.2652 345 22 345H4C3.73478 345 3.48043 345.105 3.29289 345.293C3.10536 345.48 3 345.735 3 346V360C3 360.265 3.10536 360.52 3.29289 360.707C3.48043 360.895 3.73478 361 4 361H10.92V359Z" fill="#FAFAFA"/>
39
+ <path d="M33.92 355.07H13.92C13.6548 355.07 13.4004 355.175 13.2129 355.363C13.0254 355.55 12.92 355.805 12.92 356.07V363H7C6.73478 363 6.48043 363.105 6.29289 363.293C6.10536 363.48 6 363.735 6 364C6 364.265 6.10536 364.52 6.29289 364.707C6.48043 364.895 6.73478 365 7 365H12.92V370.07C12.92 370.335 13.0254 370.59 13.2129 370.777C13.4004 370.965 13.6548 371.07 13.92 371.07H33.92C34.1852 371.07 34.4396 370.965 34.6271 370.777C34.8146 370.59 34.92 370.335 34.92 370.07V356.07C34.92 355.805 34.8146 355.55 34.6271 355.363C34.4396 355.175 34.1852 355.07 33.92 355.07ZM32.92 369.07H14.92V357.07H32.92V369.07Z" fill="#FAFAFA"/>
40
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.5001 381.981C6.21234 381.978 5.97812 382.212 5.98176 382.5L6.13 394.21C6.13686 394.753 6.35535 395.271 6.73886 395.654L18.1522 407.068C18.5565 407.472 19.1523 407.829 19.7233 407.963C20.2784 408.093 20.6614 407.992 20.9235 407.73L31.73 396.923C31.9921 396.661 32.0933 396.278 31.963 395.723C31.829 395.152 31.4724 394.556 31.0681 394.152L19.6548 382.738C19.2713 382.355 18.7531 382.136 18.2108 382.13L6.5001 381.981ZM3.87082 382.526C3.85216 381.052 5.05229 379.852 6.52682 379.87L18.2375 380.019C19.3304 380.032 20.3747 380.473 21.1475 381.246L32.5609 392.659C33.2091 393.307 33.7841 394.243 34.0183 395.24C34.2561 396.254 34.162 397.477 33.2228 398.416L22.4163 409.222C21.4771 410.161 20.2543 410.256 19.2409 410.018C18.2432 409.784 17.3077 409.209 16.6594 408.56L5.24608 397.147C4.4732 396.374 4.03289 395.33 4.01906 394.237L3.87082 382.526Z" fill="#E9EAEC"/>
41
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.4854 387.963C10.4854 387.146 11.147 386.485 11.9631 386.485H11.9772C12.7934 386.485 13.455 387.146 13.455 387.963C13.455 388.779 12.7934 389.44 11.9772 389.44H11.9631C11.147 389.44 10.4854 388.779 10.4854 387.963Z" fill="#E9EAEC"/>
42
+ <path d="M11.5198 426.95C12.3096 426.95 12.9498 426.31 12.9498 425.52C12.9498 424.73 12.3096 424.09 11.5198 424.09C10.7301 424.09 10.0898 424.73 10.0898 425.52C10.0898 426.31 10.7301 426.95 11.5198 426.95Z" fill="#FAFAFA"/>
43
+ <path d="M25.0002 429.09V427H22.9102L25.0002 429.09Z" fill="#FAFAFA"/>
44
+ <path d="M32.92 434.2L31.73 433H28.9L31.52 435.62L21.62 445.52L7 430.91V421H16.92L19 423.08V420.27L18.33 419.6C18.146 419.412 17.9267 419.263 17.6847 419.16C17.4428 419.057 17.1829 419.002 16.92 419H7C6.46957 419 5.96086 419.211 5.58579 419.586C5.21071 419.961 5 420.47 5 421V430.92C5.00223 431.45 5.21441 431.957 5.59 432.33L20.19 446.93C20.3757 447.116 20.5963 447.263 20.8391 447.364C21.0819 447.465 21.3422 447.517 21.605 447.517C21.8678 447.517 22.1281 447.465 22.3709 447.364C22.6137 447.263 22.8343 447.116 23.02 446.93L32.92 437.03C33.106 436.844 33.2535 436.624 33.3541 436.381C33.4548 436.138 33.5066 435.878 33.5066 435.615C33.5066 435.352 33.4548 435.092 33.3541 434.849C33.2535 434.606 33.106 434.386 32.92 434.2Z" fill="#FAFAFA"/>
45
+ <path d="M37 421H31V415H27V421H21V425H27V431H31V425H37V421Z" fill="#59A011"/>
46
+ <path d="M11.5198 464.95C12.3096 464.95 12.9498 464.31 12.9498 463.52C12.9498 462.73 12.3096 462.09 11.5198 462.09C10.7301 462.09 10.0898 462.73 10.0898 463.52C10.0898 464.31 10.7301 464.95 11.5198 464.95Z" fill="#FAFAFA"/>
47
+ <path d="M25.0002 467.09V467.06H24.9702L25.0002 467.09Z" fill="#FAFAFA"/>
48
+ <path d="M32.92 472.2L30.81 470.09L29.81 471.17C29.6956 471.296 29.5682 471.41 29.43 471.51L31.54 473.62L21.64 483.52L7 468.91V459H16.92L17 459.08V457H7C6.46957 457 5.96086 457.211 5.58579 457.586C5.21071 457.961 5 458.47 5 459V468.92C5.00223 469.45 5.21441 469.957 5.59 470.33L20.19 484.93C20.3757 485.116 20.5963 485.263 20.8391 485.364C21.0819 485.465 21.3422 485.517 21.605 485.517C21.8678 485.517 22.1281 485.465 22.3709 485.364C22.6137 485.263 22.8343 485.116 23.02 484.93L32.92 475.03C33.106 474.844 33.2535 474.624 33.3541 474.381C33.4548 474.138 33.5066 473.878 33.5066 473.615C33.5066 473.352 33.4548 473.092 33.3541 472.849C33.2535 472.606 33.106 472.386 32.92 472.2Z" fill="#FAFAFA"/>
49
+ <path d="M27 453.78V458.06H19V465.06H27V469.26C27.0006 469.415 27.0474 469.566 27.1344 469.695C27.2214 469.823 27.3446 469.923 27.4884 469.98C27.6323 470.038 27.7901 470.052 27.9417 470.02C28.0934 469.988 28.2321 469.911 28.34 469.8L36.18 461.52L28.34 453.24C28.2321 453.129 28.0934 453.052 27.9417 453.02C27.7901 452.988 27.6323 453.002 27.4884 453.059C27.3446 453.117 27.2214 453.217 27.1344 453.345C27.0474 453.474 27.0006 453.625 27 453.78Z" fill="#0091DA"/>
50
+ <path d="M11.5198 502.95C12.3096 502.95 12.9498 502.31 12.9498 501.52C12.9498 500.73 12.3096 500.09 11.5198 500.09C10.7301 500.09 10.0898 500.73 10.0898 501.52C10.0898 502.31 10.7301 502.95 11.5198 502.95Z" fill="#FAFAFA"/>
51
+ <path d="M32.92 510.2L28.14 505.42L26.72 506.82L31.51 511.62L21.61 521.52L7 506.91V497H16.92L21.07 501.16L22.5 499.77L18.33 495.6C18.146 495.412 17.9267 495.263 17.6847 495.16C17.4428 495.057 17.1829 495.002 16.92 495H7C6.46957 495 5.96086 495.211 5.58579 495.586C5.21071 495.961 5 496.47 5 497V506.92C5.00223 507.45 5.21441 507.957 5.59 508.33L20.19 522.93C20.3757 523.116 20.5963 523.263 20.8391 523.364C21.0819 523.465 21.3422 523.517 21.605 523.517C21.8678 523.517 22.1281 523.465 22.3709 523.364C22.6137 523.263 22.8343 523.116 23.02 522.93L32.92 513.03C33.106 512.844 33.2535 512.624 33.3541 512.381C33.4548 512.138 33.5066 511.878 33.5066 511.615C33.5066 511.352 33.4548 511.092 33.3541 510.849C33.2535 510.606 33.106 510.386 32.92 510.2Z" fill="#FAFAFA"/>
52
+ <path d="M36.8401 494.14L34.0401 491.28L28.8501 496.35L23.6601 491.28L20.8701 494.14L25.9901 499.15L20.8701 504.16L23.6601 507.02L28.8501 501.95L34.0401 507.02L36.8401 504.16L31.7101 499.15L36.8401 494.14Z" fill="#F84E30"/>
53
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.8364 532.906C14.7152 532.247 15.8809 531.87 17.1236 531.87H20.8767C22.1194 531.87 23.285 532.247 24.1638 532.906C25.043 533.565 25.6853 534.556 25.6853 535.74V538.555C25.6853 539.138 25.2127 539.611 24.6298 539.611H13.3705C12.7875 539.611 12.3149 539.138 12.3149 538.555V535.74C12.3149 534.556 12.9573 533.565 13.8364 532.906ZM15.1031 534.595C14.6239 534.954 14.4261 535.37 14.4261 535.74V537.5H23.5742V535.74C23.5742 535.37 23.3764 534.954 22.8972 534.595C22.4176 534.235 21.7067 533.981 20.8767 533.981H17.1236C16.2935 533.981 15.5826 534.235 15.1031 534.595Z" fill="#E9EAEC"/>
54
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.9575 536.796C9.74812 536.796 8.79617 537.757 8.79617 538.908V557.908C8.79617 559.058 9.74812 560.019 10.9575 560.019H27.0422C28.2516 560.019 29.2036 559.058 29.2036 557.908V538.908C29.2036 537.757 28.2516 536.796 27.0422 536.796H24.6295C24.0465 536.796 23.5739 536.324 23.5739 535.741C23.5739 535.158 24.0465 534.685 24.6295 534.685H27.0422C29.3861 534.685 31.3147 536.56 31.3147 538.908V557.908C31.3147 560.255 29.3861 562.13 27.0422 562.13H10.9575C8.61365 562.13 6.68506 560.255 6.68506 557.908V538.908C6.68506 536.56 8.61365 534.685 10.9575 534.685H13.3702C13.9532 534.685 14.4258 535.158 14.4258 535.741C14.4258 536.324 13.9532 536.796 13.3702 536.796H10.9575Z" fill="#E9EAEC"/>
55
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M24.8132 545.691C25.2254 546.103 25.2254 546.771 24.8132 547.184L18.0577 553.939C17.8597 554.137 17.5912 554.248 17.3113 554.248C17.0313 554.248 16.7628 554.137 16.5649 553.939L13.1871 550.561C12.7749 550.149 12.7749 549.481 13.1871 549.069C13.5993 548.656 14.2677 548.656 14.6799 549.069L17.3113 551.7L23.3204 545.691C23.7326 545.279 24.401 545.279 24.8132 545.691Z" fill="#E9EAEC"/>
56
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6665 573.814C31.6665 574.397 31.1939 574.869 30.6109 574.869L26.3887 574.869C25.8058 574.869 25.3332 574.397 25.3332 573.814C25.3332 573.231 25.8058 572.758 26.3887 572.758L30.6109 572.758C31.1939 572.758 31.6665 573.231 31.6665 573.814Z" fill="#E9EAEC"/>
57
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5552 579.091C29.5552 579.674 29.0826 580.147 28.4996 580.147L26.3885 580.147C25.8055 580.147 25.333 579.674 25.333 579.091C25.333 578.508 25.8055 578.036 26.3885 578.036L28.4996 578.036C29.0826 578.036 29.5552 578.508 29.5552 579.091Z" fill="#E9EAEC"/>
58
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6665 584.369C31.6665 584.952 31.1939 585.425 30.6109 585.425L26.3887 585.425C25.8058 585.425 25.3332 584.952 25.3332 584.369C25.3332 583.786 25.8058 583.314 26.3887 583.314L30.6109 583.314C31.1939 583.314 31.6665 583.786 31.6665 584.369Z" fill="#E9EAEC"/>
59
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9999 579.722C19.5829 579.722 20.0554 580.195 20.0554 580.778L20.0554 591.333C20.0554 591.916 19.5829 592.389 18.9999 592.389C18.4169 592.389 17.9443 591.916 17.9443 591.333L17.9443 580.778C17.9443 580.195 18.4169 579.722 18.9999 579.722Z" fill="#E9EAEC"/>
60
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.778 573.389C14.778 571.057 16.6683 569.167 19.0002 569.167C21.3321 569.167 23.2224 571.057 23.2224 573.389V587.38C25.1345 588.714 26.3891 590.932 26.3891 593.445C26.3891 597.525 23.081 600.833 19.0002 600.833C14.9194 600.833 11.6113 597.525 11.6113 593.445C11.6113 590.932 12.8659 588.714 14.778 587.38V573.389ZM19.0002 571.278C17.8343 571.278 16.8891 572.223 16.8891 573.389V587.471C16.8891 588.164 16.5168 588.747 16.0188 589.089C14.6299 590.042 13.7224 591.637 13.7224 593.445C13.7224 596.359 16.0854 598.722 19.0002 598.722C21.9151 598.722 24.278 596.359 24.278 593.445C24.278 591.637 23.3705 590.042 21.9816 589.089C21.4836 588.747 21.1113 588.164 21.1113 587.471V573.389C21.1113 572.223 20.1662 571.278 19.0002 571.278Z" fill="#E9EAEC"/>
61
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0002 592.389C18.4172 592.389 17.9446 592.862 17.9446 593.444C17.9446 594.027 18.4172 594.5 19.0002 594.5C19.5831 594.5 20.0557 594.027 20.0557 593.444C20.0557 592.862 19.5831 592.389 19.0002 592.389ZM15.8335 593.444C15.8335 591.696 17.2513 590.278 19.0002 590.278C20.7491 590.278 22.1668 591.696 22.1668 593.444C22.1668 595.193 20.7491 596.611 19.0002 596.611C17.2513 596.611 15.8335 595.193 15.8335 593.444Z" fill="#E9EAEC"/>
62
+ <path d="M20.6099 623L25.4699 618.14C25.6338 617.949 25.7194 617.703 25.7096 617.451C25.6999 617.199 25.5956 616.96 25.4175 616.782C25.2394 616.604 25.0007 616.5 24.749 616.49C24.4973 616.48 24.2512 616.566 24.0599 616.73L19.1999 621.54L14.3099 616.65C14.1186 616.486 13.8726 616.4 13.6209 616.41C13.3692 616.42 13.1305 616.524 12.9524 616.702C12.7743 616.88 12.6699 617.119 12.6602 617.371C12.6505 617.623 12.7361 617.869 12.8999 618.06L17.7799 623L12.9999 627.72C12.8953 627.81 12.8102 627.92 12.7502 628.044C12.6902 628.168 12.6565 628.303 12.6511 628.441C12.6458 628.579 12.669 628.716 12.7193 628.844C12.7696 628.973 12.8458 629.089 12.9433 629.187C13.0407 629.284 13.1573 629.36 13.2856 629.411C13.4139 629.461 13.5513 629.484 13.689 629.479C13.8267 629.473 13.9618 629.44 14.0859 629.38C14.21 629.32 14.3203 629.235 14.4099 629.13L19.1799 624.36L23.9199 629.1C24.1112 629.264 24.3573 629.349 24.609 629.34C24.8607 629.33 25.0994 629.226 25.2775 629.047C25.4556 628.869 25.5599 628.631 25.5696 628.379C25.5794 628.127 25.4938 627.881 25.3299 627.69L20.6099 623Z" fill="#FAFAFA"/>
63
+ <path d="M19 639C15.8355 639 12.7421 638.062 10.1109 636.304C7.4797 634.545 5.42894 632.047 4.21793 629.123C3.00693 626.199 2.69008 622.982 3.30744 619.879C3.92481 616.775 5.44866 613.924 7.6863 611.686C9.92394 609.449 12.7749 607.925 15.8786 607.307C18.9823 606.69 22.1993 607.007 25.1229 608.218C28.0466 609.429 30.5454 611.48 32.3035 614.111C34.0616 616.742 35 619.836 35 623C35 627.243 33.3143 631.313 30.3137 634.314C27.3131 637.314 23.2435 639 19 639ZM19 609C16.2311 609 13.5243 609.821 11.222 611.359C8.91974 612.898 7.12532 615.084 6.06569 617.642C5.00607 620.201 4.72882 623.016 5.26901 625.731C5.80921 628.447 7.14258 630.942 9.10051 632.9C11.0584 634.857 13.553 636.191 16.2687 636.731C18.9845 637.271 21.7994 636.994 24.3576 635.934C26.9157 634.875 29.1022 633.08 30.6406 630.778C32.1789 628.476 33 625.769 33 623C33 619.287 31.525 615.726 28.8995 613.101C26.274 610.475 22.713 609 19 609Z" fill="#FAFAFA"/>
64
+ <path d="M20.6099 661L25.4699 656.14C25.6338 655.949 25.7194 655.703 25.7096 655.451C25.6999 655.199 25.5956 654.96 25.4175 654.782C25.2394 654.604 25.0007 654.5 24.749 654.49C24.4973 654.48 24.2512 654.566 24.0599 654.73L19.1999 659.54L14.3099 654.65C14.1186 654.486 13.8726 654.4 13.6209 654.41C13.3692 654.42 13.1305 654.524 12.9524 654.702C12.7743 654.88 12.6699 655.119 12.6602 655.371C12.6505 655.623 12.7361 655.869 12.8999 656.06L17.7799 661L12.9999 665.72C12.8953 665.81 12.8102 665.92 12.7502 666.044C12.6902 666.168 12.6565 666.303 12.6511 666.441C12.6458 666.579 12.669 666.716 12.7193 666.844C12.7696 666.973 12.8458 667.089 12.9433 667.187C13.0407 667.284 13.1573 667.36 13.2856 667.411C13.4139 667.461 13.5513 667.484 13.689 667.479C13.8267 667.473 13.9618 667.44 14.0859 667.38C14.21 667.32 14.3203 667.235 14.4099 667.13L19.1799 662.36L23.9199 667.1C24.1112 667.264 24.3573 667.349 24.609 667.34C24.8607 667.33 25.0994 667.226 25.2775 667.047C25.4556 666.869 25.5599 666.631 25.5696 666.379C25.5794 666.127 25.4938 665.881 25.3299 665.69L20.6099 661Z" fill="#CCCCCC"/>
65
+ <path d="M19 677C15.8355 677 12.7421 676.062 10.1109 674.304C7.4797 672.545 5.42894 670.047 4.21793 667.123C3.00693 664.199 2.69008 660.982 3.30744 657.879C3.92481 654.775 5.44866 651.924 7.6863 649.686C9.92394 647.449 12.7749 645.925 15.8786 645.307C18.9823 644.69 22.1993 645.007 25.1229 646.218C28.0466 647.429 30.5454 649.48 32.3035 652.111C34.0616 654.742 35 657.836 35 661C35 665.243 33.3143 669.313 30.3137 672.314C27.3131 675.314 23.2435 677 19 677ZM19 647C16.2311 647 13.5243 647.821 11.222 649.359C8.91974 650.898 7.12532 653.084 6.06569 655.642C5.00607 658.201 4.72882 661.016 5.26901 663.731C5.80921 666.447 7.14258 668.942 9.10051 670.9C11.0584 672.857 13.553 674.191 16.2687 674.731C18.9845 675.271 21.7994 674.994 24.3576 673.934C26.9157 672.875 29.1022 671.08 30.6406 668.778C32.1789 666.476 33 663.769 33 661C33 657.287 31.525 653.726 28.8995 651.101C26.274 648.475 22.713 647 19 647Z" fill="#CCCCCC"/>
66
+ <path d="M20.6099 699L25.4699 694.14C25.6338 693.949 25.7194 693.703 25.7096 693.451C25.6999 693.199 25.5956 692.96 25.4175 692.782C25.2394 692.604 25.0007 692.5 24.749 692.49C24.4973 692.48 24.2512 692.566 24.0599 692.73L19.1999 697.54L14.3099 692.65C14.1186 692.486 13.8726 692.4 13.6209 692.41C13.3692 692.42 13.1305 692.524 12.9524 692.702C12.7743 692.88 12.6699 693.119 12.6602 693.371C12.6505 693.623 12.7361 693.869 12.8999 694.06L17.7799 699L12.9999 703.72C12.8953 703.81 12.8102 703.92 12.7502 704.044C12.6902 704.168 12.6565 704.303 12.6511 704.441C12.6458 704.579 12.669 704.716 12.7193 704.844C12.7696 704.973 12.8458 705.089 12.9433 705.187C13.0407 705.284 13.1573 705.36 13.2856 705.411C13.4139 705.461 13.5513 705.484 13.689 705.479C13.8267 705.473 13.9618 705.44 14.0859 705.38C14.21 705.32 14.3203 705.235 14.4099 705.13L19.1799 700.36L23.9199 705.1C24.1112 705.264 24.3573 705.349 24.609 705.34C24.8607 705.33 25.0994 705.226 25.2775 705.047C25.4556 704.869 25.5599 704.631 25.5696 704.379C25.5794 704.127 25.4938 703.881 25.3299 703.69L20.6099 699Z" fill="#F84E30"/>
67
+ <path d="M19 715C15.8355 715 12.7421 714.062 10.1109 712.304C7.4797 710.545 5.42894 708.047 4.21793 705.123C3.00693 702.199 2.69008 698.982 3.30744 695.879C3.92481 692.775 5.44866 689.924 7.6863 687.686C9.92394 685.449 12.7749 683.925 15.8786 683.307C18.9823 682.69 22.1993 683.007 25.1229 684.218C28.0466 685.429 30.5454 687.48 32.3035 690.111C34.0616 692.742 35 695.836 35 699C35 703.243 33.3143 707.313 30.3137 710.314C27.3131 713.314 23.2435 715 19 715ZM19 685C16.2311 685 13.5243 685.821 11.222 687.359C8.91974 688.898 7.12532 691.084 6.06569 693.642C5.00607 696.201 4.72882 699.016 5.26901 701.731C5.80921 704.447 7.14258 706.942 9.10051 708.9C11.0584 710.857 13.553 712.191 16.2687 712.731C18.9845 713.271 21.7994 712.994 24.3576 711.934C26.9157 710.875 29.1022 709.08 30.6406 706.778C32.1789 704.476 33 701.769 33 699C33 695.287 31.525 691.726 28.8995 689.101C26.274 686.475 22.713 685 19 685Z" fill="#F84E30"/>
68
+ <path d="M20.41 737L28.7 728.71C28.8638 728.519 28.9494 728.273 28.9397 728.021C28.93 727.769 28.8256 727.53 28.6475 727.352C28.4694 727.174 28.2307 727.07 27.979 727.06C27.7274 727.051 27.4813 727.136 27.29 727.3L19 735.59L10.71 727.29C10.5217 727.102 10.2663 726.996 9.99997 726.996C9.73367 726.996 9.47828 727.102 9.28997 727.29C9.10167 727.478 8.99588 727.734 8.99588 728C8.99588 728.266 9.10167 728.522 9.28997 728.71L17.59 737L9.28997 745.29C9.18529 745.38 9.10027 745.49 9.04025 745.614C8.98022 745.738 8.94649 745.873 8.94117 746.011C8.93586 746.149 8.95906 746.286 9.00934 746.414C9.05961 746.543 9.13587 746.659 9.23332 746.757C9.33078 746.854 9.44732 746.93 9.57565 746.981C9.70398 747.031 9.84131 747.054 9.97903 747.049C10.1167 747.043 10.2519 747.01 10.3759 746.95C10.5 746.89 10.6103 746.805 10.7 746.7L19 738.41L27.29 746.7C27.4813 746.864 27.7274 746.949 27.979 746.94C28.2307 746.93 28.4694 746.826 28.6475 746.648C28.8256 746.469 28.93 746.231 28.9397 745.979C28.9494 745.727 28.8638 745.481 28.7 745.29L20.41 737Z" fill="#FAFAFA"/>
69
+ <path d="M20.41 775L28.7 766.71C28.8638 766.519 28.9494 766.273 28.9397 766.021C28.93 765.769 28.8256 765.531 28.6475 765.353C28.4694 765.175 28.2307 765.07 27.979 765.06C27.7274 765.051 27.4813 765.136 27.29 765.3L19 773.59L10.71 765.29C10.5217 765.102 10.2663 764.996 9.99997 764.996C9.73367 764.996 9.47828 765.102 9.28997 765.29C9.10167 765.478 8.99588 765.734 8.99588 766C8.99588 766.266 9.10167 766.522 9.28997 766.71L17.59 775L9.28997 783.29C9.18529 783.38 9.10027 783.49 9.04025 783.614C8.98022 783.738 8.94649 783.873 8.94117 784.011C8.93586 784.149 8.95906 784.286 9.00934 784.415C9.05961 784.543 9.13587 784.659 9.23332 784.757C9.33078 784.854 9.44732 784.931 9.57565 784.981C9.70398 785.031 9.84131 785.054 9.97903 785.049C10.1167 785.044 10.2519 785.01 10.3759 784.95C10.5 784.89 10.6103 784.805 10.7 784.7L19 776.41L27.29 784.7C27.4813 784.864 27.7274 784.95 27.979 784.94C28.2307 784.93 28.4694 784.826 28.6475 784.648C28.8256 784.47 28.93 784.231 28.9397 783.979C28.9494 783.728 28.8638 783.481 28.7 783.29L20.41 775Z" fill="#F84E30"/>
70
+ <path d="M21.87 806.14H8.87L14.43 800.65C14.6196 800.46 14.7262 800.203 14.7262 799.935C14.7262 799.667 14.6196 799.41 14.43 799.22C14.2404 799.03 13.9832 798.924 13.715 798.924C13.4468 798.924 13.1896 799.03 13 799.22L5 807.13L13 815C13.1883 815.187 13.4432 815.291 13.7085 815.291C13.9739 815.29 14.228 815.183 14.415 814.995C14.602 814.807 14.7065 814.552 14.7056 814.286C14.7046 814.021 14.5983 813.767 14.41 813.58L8.86 808.14H21.86C24.263 808.127 26.5733 809.066 28.2847 810.753C29.996 812.44 30.9689 814.737 30.99 817.14C30.9785 818.806 30.505 820.435 29.6222 821.848C28.7394 823.26 27.4821 824.4 25.99 825.14C25.7433 825.265 25.5563 825.482 25.4701 825.745C25.4273 825.875 25.4106 826.012 25.4209 826.148C25.4312 826.285 25.4683 826.418 25.53 826.54C25.5917 826.662 25.6769 826.771 25.7807 826.86C25.8844 826.949 26.0047 827.017 26.1347 827.06C26.3973 827.146 26.6833 827.125 26.93 827C29.1471 825.881 30.9205 824.045 31.9614 821.79C33.0024 819.536 33.2498 816.995 32.6633 814.582C32.0768 812.169 30.6909 810.025 28.7313 808.499C26.7716 806.974 24.3533 806.156 21.87 806.18V806.14Z" fill="#FAFAFA"/>
71
+ <path d="M18.5802 860.63C19.3534 860.63 19.9802 860.003 19.9802 859.23C19.9802 858.457 19.3534 857.83 18.5802 857.83C17.807 857.83 17.1802 858.457 17.1802 859.23C17.1802 860.003 17.807 860.63 18.5802 860.63Z" fill="#FAFAFA"/>
72
+ <path d="M25.7001 846C25.6059 845.29 25.3654 844.606 24.9936 843.994C24.6218 843.381 24.1268 842.852 23.5401 842.44C22.7148 841.875 21.7815 841.486 20.7989 841.299C19.8164 841.111 18.8056 841.129 17.8301 841.35C16.0785 841.658 14.4239 842.374 13.0001 843.44C12.8977 843.523 12.8125 843.625 12.7496 843.741C12.6866 843.856 12.647 843.983 12.6331 844.114C12.6049 844.378 12.683 844.643 12.8501 844.85C13.0172 845.057 13.2596 845.189 13.524 845.217C13.7885 845.245 14.0532 845.167 14.2601 845C15.4214 844.128 16.7707 843.539 18.2001 843.28C18.9071 843.111 19.6414 843.089 20.3572 843.217C21.0729 843.344 21.7548 843.618 22.3601 844.02C22.724 844.272 23.0318 844.597 23.2641 844.974C23.4964 845.351 23.6483 845.772 23.7101 846.21C24.0401 848.9 20.5201 849.96 18.3901 850.35L17.5701 850.5V854.86C17.5701 855.125 17.6754 855.38 17.863 855.567C18.0505 855.755 18.3049 855.86 18.5701 855.86C18.8353 855.86 19.0897 855.755 19.2772 855.567C19.4647 855.38 19.5701 855.125 19.5701 854.86V852.17C25.6101 850.79 25.8801 847.41 25.7001 846Z" fill="#FAFAFA"/>
73
+ <path d="M8.14002 887L19 876.14L29.86 887H32.69L19.69 874C19.5971 873.906 19.4865 873.832 19.3646 873.781C19.2427 873.73 19.112 873.704 18.98 873.704C18.848 873.704 18.7173 873.73 18.5954 873.781C18.4736 873.832 18.363 873.906 18.27 874L5.27002 887H8.14002ZM29.86 891L19 901.86L8.14002 891H5.31002L18.31 904C18.403 904.094 18.5136 904.168 18.6354 904.219C18.7573 904.27 18.888 904.296 19.02 904.296C19.152 904.296 19.2827 904.27 19.4046 904.219C19.5265 904.168 19.6371 904.094 19.73 904L32.73 891H29.86Z" fill="#FAFAFA"/>
74
+ <path d="M12 889H6C5.73478 889 5.48043 888.895 5.29289 888.707C5.10536 888.52 5 888.265 5 888V882C5 881.735 5.10536 881.48 5.29289 881.293C5.48043 881.105 5.73478 881 6 881C6.26522 881 6.51957 881.105 6.70711 881.293C6.89464 881.48 7 881.735 7 882V887H12C12.2652 887 12.5196 887.105 12.7071 887.293C12.8946 887.48 13 887.735 13 888C13 888.265 12.8946 888.52 12.7071 888.707C12.5196 888.895 12.2652 889 12 889ZM32 897C31.7348 897 31.4804 896.895 31.2929 896.707C31.1054 896.52 31 896.265 31 896V891H26C25.7348 891 25.4804 890.895 25.2929 890.707C25.1054 890.52 25 890.265 25 890C25 889.735 25.1054 889.48 25.2929 889.293C25.4804 889.105 25.7348 889 26 889H32C32.2652 889 32.5196 889.105 32.7071 889.293C32.8946 889.48 33 889.735 33 890V896C33 896.265 32.8946 896.52 32.7071 896.707C32.5196 896.895 32.2652 897 32 897Z" fill="#FAFAFA"/>
75
+ <path d="M19 932C19 930.143 19.7375 928.363 21.0503 927.05C22.363 925.737 24.1435 925 26 925C26.6775 925.004 27.351 925.105 28 925.3L25.9 926.3C25.7369 926.379 25.6055 926.511 25.5272 926.674C25.4489 926.838 25.4285 927.023 25.4691 927.199C25.5098 927.376 25.6092 927.533 25.751 927.646C25.8929 927.759 26.0688 927.82 26.25 927.82C26.3682 927.822 26.4851 927.794 26.59 927.74L31.38 925.44L29.08 920.65C28.9872 920.459 28.8223 920.313 28.6216 920.243C28.421 920.174 28.201 920.187 28.01 920.28C27.819 920.373 27.6728 920.537 27.6034 920.738C27.534 920.939 27.5472 921.159 27.64 921.35L28.64 923.4C27.2945 922.987 25.8709 922.895 24.4836 923.133C23.0962 923.37 21.7839 923.929 20.6519 924.765C19.5199 925.602 18.5998 926.692 17.9656 927.948C17.3314 929.205 17.0006 930.592 17 932C17.007 933.41 17.3498 934.798 18 936.05C18.0839 936.216 18.2126 936.356 18.3716 936.453C18.5306 936.55 18.7136 936.601 18.9 936.6C19.0557 936.602 19.2098 936.568 19.35 936.5C19.4679 936.44 19.5729 936.358 19.6589 936.258C19.7449 936.158 19.8103 936.042 19.8512 935.916C19.8921 935.791 19.9077 935.659 19.8972 935.527C19.8867 935.395 19.8503 935.267 19.79 935.15C19.2783 934.178 19.0074 933.098 19 932ZM34.11 928.09C33.9902 927.859 33.7849 927.683 33.5379 927.601C33.2908 927.519 33.0214 927.536 32.7869 927.649C32.5525 927.763 32.3715 927.963 32.2824 928.208C32.1934 928.452 32.2033 928.722 32.31 928.96C32.7676 929.908 33.0035 930.947 33 932C33 933.856 32.2625 935.637 30.9497 936.95C29.637 938.262 27.8565 939 26 939C25.2335 938.996 24.473 938.864 23.75 938.61L26.05 937.51C26.241 937.417 26.3872 937.252 26.4566 937.051C26.526 936.851 26.5128 936.631 26.42 936.44C26.3272 936.249 26.1623 936.103 25.9616 936.033C25.761 935.964 25.541 935.977 25.35 936.07L20.57 938.37L22.87 943.16C22.9357 943.295 23.038 943.409 23.1654 943.488C23.2927 943.568 23.4399 943.61 23.59 943.61C23.7082 943.612 23.8251 943.584 23.93 943.53C24.0255 943.485 24.1111 943.421 24.1819 943.343C24.2528 943.265 24.3074 943.173 24.3427 943.074C24.3781 942.974 24.3934 942.869 24.3877 942.764C24.3821 942.658 24.3557 942.555 24.31 942.46L23.42 940.61C25.0909 941.109 26.8709 941.112 28.5435 940.619C30.2162 940.126 31.7095 939.157 32.8419 937.831C33.9743 936.505 34.697 934.878 34.9221 933.149C35.1473 931.419 34.8651 929.662 34.11 928.09Z" fill="#FAFAFA"/>
76
+ <path d="M17.52 939H5V913H25V921.05H25.77C25.7628 920.602 25.8725 920.16 26.0882 919.767C26.3039 919.374 26.6181 919.044 27 918.81V913C27 912.47 26.7893 911.961 26.4142 911.586C26.0391 911.211 25.5304 911 25 911H5C4.46957 911 3.96086 911.211 3.58579 911.586C3.21071 911.961 3 912.47 3 913V939C3 939.53 3.21071 940.039 3.58579 940.414C3.96086 940.789 4.46957 941 5 941H19.7C18.8881 940.433 18.155 939.76 17.52 939Z" fill="#FAFAFA"/>
77
+ <path d="M7 967H11V969H7V967Z" fill="#FAFAFA"/>
78
+ <path d="M33.94 967H33V973H5V965H23V963H11V959H23V958.91H20.73C20.18 958.907 19.6431 958.743 19.186 958.437C18.729 958.131 18.3721 957.697 18.16 957.19L18.1 957H11C10.4696 957 9.96086 957.211 9.58579 957.586C9.21071 957.961 9 958.47 9 959V963H5C4.46957 963 3.96086 963.211 3.58579 963.586C3.21071 963.961 3 964.47 3 965V973C3 973.53 3.21071 974.039 3.58579 974.414C3.96086 974.789 4.46957 975 5 975H33C33.5304 975 34.0391 974.789 34.4142 974.414C34.7893 974.039 35 973.53 35 973V961H33.94V967Z" fill="#FAFAFA"/>
79
+ <path d="M20.18 955.58C20.0716 955.689 19.9978 955.828 19.9679 955.979C19.9381 956.129 19.9535 956.286 20.0123 956.428C20.0711 956.57 20.1706 956.692 20.2983 956.777C20.426 956.863 20.5762 956.909 20.73 956.91H25V965H31.92V956.91H36.13C36.2839 956.909 36.4341 956.863 36.5618 956.777C36.6895 956.692 36.789 956.57 36.8478 956.428C36.9066 956.286 36.922 956.129 36.8922 955.979C36.8623 955.828 36.7885 955.689 36.68 955.58L28.44 947.32L20.18 955.58Z" fill="#0091DA"/>
80
+ <path d="M9 1009H11V1013H9V1009ZM15 1009H17V1013H15V1009ZM21 1009H23V1013H21V1009ZM27 1009H29V1013H27V1009ZM8 1005H30V1007H8V1005Z" fill="#FAFAFA"/>
81
+ <path d="M34.91 1005.47L31.78 994.41C31.654 994.002 31.4005 993.645 31.0568 993.391C30.7131 993.137 30.2972 993 29.87 993H29V995H29.87L33 1006.06V1015H5V1006.06L8.13 995H9V993H8.13C7.70279 993 7.28687 993.137 6.94316 993.391C6.59946 993.645 6.34603 994.002 6.22 994.41L3.09 1005.48C3.03066 1005.67 3.00032 1005.87 3 1006.07V1015C3 1015.53 3.21071 1016.04 3.58579 1016.41C3.96086 1016.79 4.46957 1017 5 1017H33C33.5304 1017 34.0391 1016.79 34.4142 1016.41C34.7893 1016.04 35 1015.53 35 1015V1006.06C34.9997 1005.86 34.9693 1005.66 34.91 1005.47Z" fill="#FAFAFA"/>
82
+ <path d="M26 999H20.24C19.9969 999 19.7623 998.911 19.58 998.75L17.58 997H12C11.7348 997 11.4804 996.895 11.2929 996.707C11.1054 996.52 11 996.265 11 996V988C11 987.735 11.1054 987.48 11.2929 987.293C11.4804 987.105 11.7348 987 12 987H26C26.2652 987 26.5196 987.105 26.7071 987.293C26.8946 987.48 27 987.735 27 988V998C27 998.265 26.8946 998.52 26.7071 998.707C26.5196 998.895 26.2652 999 26 999ZM20.61 997H25V989H13V995H18C18.2431 995 18.4777 995.089 18.66 995.25L20.61 997Z" fill="#FAFAFA"/>
83
+ <path d="M21 991H23V993H21V991ZM17 991H19V993H17V991Z" fill="#FAFAFA"/>
84
+ <path d="M9 1047H11V1051H9V1047ZM15 1047H17V1051H15V1047ZM21 1047H23V1051H21V1047ZM27 1047H29V1051H27V1047ZM8 1043H30V1045H8V1043ZM17 1029H19V1031H17V1029Z" fill="#FAFAFA"/>
85
+ <path d="M17.05 1033H13V1027H18.23C18.5898 1026.29 19.0293 1025.62 19.54 1025H12C11.7348 1025 11.4804 1025.11 11.2929 1025.29C11.1054 1025.48 11 1025.73 11 1026V1034C11 1034.27 11.1054 1034.52 11.2929 1034.71C11.4804 1034.89 11.7348 1035 12 1035H17.43C17.2372 1034.35 17.1099 1033.68 17.05 1033Z" fill="#FAFAFA"/>
86
+ <path d="M34.23 1041.06C33.6617 1041.45 33.0592 1041.78 32.43 1042.06L33 1044.06V1053H5V1044.06L8.13 1033H9V1031H8.13C7.70279 1031 7.28687 1031.14 6.94316 1031.39C6.59946 1031.64 6.34603 1032 6.22 1032.41L3.09 1043.48C3.03066 1043.67 3.00032 1043.87 3 1044.07V1053C3 1053.53 3.21071 1054.04 3.58579 1054.41C3.96086 1054.79 4.46957 1055 5 1055H33C33.5304 1055 34.0391 1054.79 34.4142 1054.41C34.7893 1054.04 35 1053.53 35 1053V1044.06C34.9997 1043.86 34.9693 1043.66 34.91 1043.47L34.23 1041.06Z" fill="#FAFAFA"/>
87
+ <path d="M28 1023C26.22 1023 24.4799 1023.53 22.9999 1024.52C21.5198 1025.51 20.3663 1026.91 19.6851 1028.56C19.0039 1030.2 18.8257 1032.01 19.1729 1033.76C19.5202 1035.5 20.3774 1037.11 21.636 1038.36C22.8947 1039.62 24.4984 1040.48 26.2442 1040.83C27.99 1041.17 29.7996 1041 31.4442 1040.31C33.0887 1039.63 34.4943 1038.48 35.4832 1037C36.4722 1035.52 37 1033.78 37 1032C37 1029.61 36.0518 1027.32 34.364 1025.64C32.6761 1023.95 30.387 1023 28 1023ZM29 1037H27V1035H29V1037ZM29 1033H27V1027H29V1033Z" fill="#F84E30"/>
88
+ <path d="M9 1085H11V1089H9V1085ZM15 1085H17V1089H15V1085ZM21 1085H23V1089H21V1085ZM27 1085H29V1089H27V1085Z" fill="#FAFAFA"/>
89
+ <path d="M33 1083.11V1091H5V1082.06L8.13 1071H9V1069H8.13C7.70279 1069 7.28687 1069.14 6.94316 1069.39C6.59946 1069.64 6.34603 1070 6.22 1070.41L3.09 1081.48C3.03066 1081.67 3.00032 1081.87 3 1082.07V1091C3 1091.53 3.21071 1092.04 3.58579 1092.41C3.96086 1092.79 4.46957 1093 5 1093H33C33.5304 1093 34.0391 1092.79 34.4142 1092.41C34.7893 1092.04 35 1091.53 35 1091V1082.56C34.3714 1082.86 33.6941 1083.05 33 1083.11Z" fill="#FAFAFA"/>
90
+ <path d="M15 1081H8V1083H18.32C17.0194 1082.73 15.8493 1082.02 15 1081ZM18.7 1067H17V1069H17.55L18.7 1067Z" fill="#FAFAFA"/>
91
+ <path d="M16.39 1071H13V1065H19.85L20.94 1063.12L21 1063H12C11.7348 1063 11.4804 1063.11 11.2929 1063.29C11.1054 1063.48 11 1063.73 11 1064V1072C11 1072.27 11.1054 1072.52 11.2929 1072.71C11.4804 1072.89 11.7348 1073 12 1073H15.24L16.39 1071Z" fill="#FAFAFA"/>
92
+ <path d="M26 1062.19C25.3208 1062.19 24.6529 1062.36 24.0644 1062.7C23.4759 1063.04 22.9878 1063.53 22.65 1064.12L16.19 1075.35C15.8513 1075.94 15.673 1076.6 15.6729 1077.28C15.6727 1077.96 15.8508 1078.62 16.1893 1079.21C16.5277 1079.8 17.0146 1080.28 17.601 1080.62C18.1874 1080.96 18.8527 1081.14 19.53 1081.14H32.53C33.2073 1081.14 33.8726 1080.96 34.459 1080.62C35.0454 1080.28 35.5323 1079.8 35.8707 1079.21C36.2092 1078.62 36.3873 1077.96 36.3871 1077.28C36.387 1076.6 36.2087 1075.94 35.87 1075.35L29.36 1064.12C29.0229 1063.53 28.5337 1063.04 27.9429 1062.7C27.3521 1062.36 26.6813 1062.18 26 1062.19Z" fill="#B68300"/>
93
+ <path d="M26.0001 1064.19C26.3267 1064.19 26.6477 1064.27 26.9304 1064.44C27.2132 1064.6 27.4477 1064.84 27.6101 1065.12L34.0901 1076.35C34.2533 1076.63 34.3393 1076.95 34.3393 1077.28C34.3393 1077.61 34.2535 1077.93 34.0903 1078.21C33.9272 1078.49 33.6925 1078.73 33.4098 1078.89C33.1272 1079.05 32.8065 1079.14 32.4801 1079.14H19.4801C18.9868 1079.14 18.5137 1078.94 18.1649 1078.6C17.8161 1078.25 17.6201 1077.77 17.6201 1077.28C17.6213 1076.95 17.7075 1076.63 17.8701 1076.35L24.4101 1065.12C24.5693 1064.84 24.8003 1064.6 25.0796 1064.44C25.3589 1064.28 25.6765 1064.19 26.0001 1064.19Z" fill="#FFE02C"/>
94
+ <path d="M25 1075H27V1077H25V1075ZM25 1067H27V1073H25V1067Z" fill="#454545"/>
95
+ <path d="M32 1130H6C5.73478 1130 5.48043 1130.11 5.29289 1130.29C5.10536 1130.48 5 1130.73 5 1131C5 1131.27 5.10536 1131.52 5.29289 1131.71C5.48043 1131.89 5.73478 1132 6 1132H32C32.2652 1132 32.5196 1131.89 32.7071 1131.71C32.8946 1131.52 33 1131.27 33 1131C33 1130.73 32.8946 1130.48 32.7071 1130.29C32.5196 1130.11 32.2652 1130 32 1130Z" fill="#FAFAFA"/>
96
+ <path d="M9.80988 1114L17.9999 1105.83V1126.48C17.9999 1126.75 18.1052 1127 18.2928 1127.19C18.4803 1127.37 18.7347 1127.48 18.9999 1127.48C19.2651 1127.48 19.5195 1127.37 19.707 1127.19C19.8945 1127 19.9999 1126.75 19.9999 1126.48V1105.83L28.1899 1114C28.3812 1114.16 28.6273 1114.25 28.8789 1114.24C29.1306 1114.23 29.3693 1114.13 29.5474 1113.95C29.7255 1113.77 29.8299 1113.53 29.8396 1113.28C29.8493 1113.03 29.7637 1112.78 29.5999 1112.59L18.9999 1102L8.38988 1112.61C8.28053 1112.7 8.1912 1112.81 8.12772 1112.94C8.06425 1113.06 8.02808 1113.2 8.02157 1113.34C8.01507 1113.48 8.03838 1113.62 8.08998 1113.75C8.14158 1113.88 8.2203 1114 8.32099 1114.1C8.42168 1114.2 8.54206 1114.28 8.67424 1114.32C8.80642 1114.37 8.94741 1114.39 9.08799 1114.38C9.22856 1114.37 9.36554 1114.34 9.48995 1114.27C9.61436 1114.2 9.72338 1114.11 9.80988 1114Z" fill="#FAFAFA"/>
97
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.63969 1160.12C9.8934 1158.87 11.5938 1158.17 13.3668 1158.17H24.6261C26.3991 1158.17 28.0995 1158.87 29.3532 1160.12C30.6069 1161.38 31.3113 1163.08 31.3113 1164.85V1167.67C31.3113 1168.25 30.8387 1168.72 30.2557 1168.72C29.6727 1168.72 29.2002 1168.25 29.2002 1167.67V1164.85C29.2002 1163.64 28.7183 1162.48 27.8604 1161.62C27.0026 1160.76 25.8392 1160.28 24.6261 1160.28H13.3668C12.1537 1160.28 10.9903 1160.76 10.1325 1161.62C9.27466 1162.48 8.79275 1163.64 8.79275 1164.85V1167.67C8.79275 1168.25 8.32016 1168.72 7.7372 1168.72C7.15423 1168.72 6.68164 1168.25 6.68164 1167.67V1164.85C6.68164 1163.08 7.38597 1161.38 8.63969 1160.12Z" fill="#E9EAEC"/>
98
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9972 1143.39C16.471 1143.39 14.4231 1145.44 14.4231 1147.96C14.4231 1150.49 16.471 1152.54 18.9972 1152.54C21.5234 1152.54 23.5713 1150.49 23.5713 1147.96C23.5713 1145.44 21.5234 1143.39 18.9972 1143.39ZM12.312 1147.96C12.312 1144.27 15.3051 1141.28 18.9972 1141.28C22.6893 1141.28 25.6824 1144.27 25.6824 1147.96C25.6824 1151.66 22.6893 1154.65 18.9972 1154.65C15.3051 1154.65 12.312 1151.66 12.312 1147.96Z" fill="#E9EAEC"/>
99
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.49036 1194.58C5.33801 1193.74 6.48768 1193.26 7.68644 1193.26H8.24637C8.82933 1193.26 9.30192 1193.73 9.30192 1194.32C9.30192 1194.9 8.82933 1195.37 8.24637 1195.37H7.68644C7.04758 1195.37 6.43489 1195.62 5.98314 1196.08C5.5314 1196.53 5.27762 1197.14 5.27762 1197.78V1199.83C5.50305 1199.92 5.85254 1200.02 6.33057 1200.11C6.33549 1200.11 6.3404 1200.11 6.34529 1200.11C6.36892 1200.12 6.39286 1200.12 6.4171 1200.12C6.99102 1200.23 7.3733 1200.77 7.27096 1201.35C7.16862 1201.92 6.62041 1202.3 6.0465 1202.2C5.42809 1202.09 4.84433 1201.95 4.38416 1201.75C4.15537 1201.65 3.90515 1201.51 3.69139 1201.32C3.68009 1201.31 3.6687 1201.3 3.65725 1201.29C3.59187 1201.23 3.52447 1201.16 3.46134 1201.07C3.33837 1200.91 3.23162 1200.71 3.18757 1200.46C3.183 1200.43 3.17911 1200.4 3.17594 1200.38C3.16966 1200.32 3.1665 1200.27 3.1665 1200.22V1197.78C3.1665 1196.58 3.64271 1195.43 4.49036 1194.58Z" fill="#E9EAEC"/>
100
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M33.5093 1194.58C32.6617 1193.74 31.512 1193.26 30.3132 1193.26H29.7533C29.1703 1193.26 28.6978 1193.73 28.6978 1194.32C28.6978 1194.9 29.1703 1195.37 29.7533 1195.37H30.3132C30.9521 1195.37 31.5648 1195.62 32.0165 1196.08C32.4683 1196.53 32.7221 1197.14 32.7221 1197.78V1199.83C32.4966 1199.92 32.1471 1200.02 31.6691 1200.11C31.6642 1200.11 31.6593 1200.11 31.6544 1200.11C31.6308 1200.12 31.6068 1200.12 31.5826 1200.12C31.0087 1200.23 30.6264 1200.77 30.7287 1201.35C30.8311 1201.92 31.3793 1202.3 31.9532 1202.2C32.5716 1202.09 33.1553 1201.95 33.6155 1201.75C33.8443 1201.65 34.0945 1201.51 34.3083 1201.32C34.3196 1201.31 34.331 1201.3 34.3424 1201.29C34.4078 1201.23 34.4752 1201.16 34.5383 1201.07C34.6613 1200.91 34.7681 1200.71 34.8121 1200.46C34.8167 1200.43 34.8206 1200.4 34.8237 1200.38C34.83 1200.32 34.8332 1200.27 34.8332 1200.22V1197.78C34.8332 1196.58 34.357 1195.43 33.5093 1194.58Z" fill="#E9EAEC"/>
101
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.0772 1183.89C12.0984 1184.47 11.6433 1184.96 11.0608 1184.98C9.77244 1185.03 8.74184 1186.09 8.74184 1187.39C8.74184 1188.72 9.82031 1189.8 11.1507 1189.8C11.4027 1189.8 11.6438 1189.76 11.8696 1189.69L11.9084 1189.67C12.4619 1189.49 13.059 1189.79 13.2422 1190.34C13.4254 1190.9 13.1252 1191.5 12.5718 1191.68C12.5475 1191.69 12.5231 1191.69 12.4985 1191.7C12.0715 1191.84 11.6185 1191.91 11.1507 1191.91C8.65438 1191.91 6.63073 1189.88 6.63073 1187.39C6.63073 1184.95 8.5645 1182.96 10.9839 1182.87C11.5665 1182.85 12.056 1183.3 12.0772 1183.89Z" fill="#E9EAEC"/>
102
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M25.9225 1183.89C25.9437 1183.3 26.4332 1182.85 27.0157 1182.87C29.4352 1182.96 31.3689 1184.95 31.3689 1187.39C31.3689 1189.88 29.3453 1191.91 26.849 1191.91C26.3812 1191.91 25.9281 1191.84 25.5011 1191.7C25.4766 1191.69 25.4522 1191.69 25.4279 1191.68C24.8744 1191.5 24.5743 1190.9 24.7575 1190.34C24.9407 1189.79 25.5378 1189.49 26.0912 1189.67L26.1301 1189.69C26.3558 1189.76 26.5969 1189.8 26.849 1189.8C28.1794 1189.8 29.2578 1188.72 29.2578 1187.39C29.2578 1186.09 28.2272 1185.03 26.9389 1184.98C26.3563 1184.96 25.9013 1184.47 25.9225 1183.89Z" fill="#E9EAEC"/>
103
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9913 1182.44C17.0232 1182.44 15.4277 1184.04 15.4277 1186.01C15.4277 1187.98 17.0232 1189.57 18.9913 1189.57C20.9595 1189.57 22.555 1187.98 22.555 1186.01C22.555 1184.04 20.9595 1182.44 18.9913 1182.44ZM13.3166 1186.01C13.3166 1182.87 15.8573 1180.33 18.9913 1180.33C22.1254 1180.33 24.6661 1182.87 24.6661 1186.01C24.6661 1189.14 22.1254 1191.68 18.9913 1191.68C15.8573 1191.68 13.3166 1189.14 13.3166 1186.01Z" fill="#E9EAEC"/>
104
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.3726 1194.19C12.8676 1194.19 11.4242 1194.79 10.36 1195.85C9.29573 1196.92 8.69786 1198.36 8.69786 1199.87V1202.88C8.69786 1203.41 8.97232 1203.81 9.2407 1204.06C9.50158 1204.3 9.82395 1204.48 10.1315 1204.61C10.7524 1204.87 11.5717 1205.07 12.4669 1205.22C14.2766 1205.52 16.6488 1205.67 18.9918 1205.67C21.3347 1205.67 23.707 1205.52 25.5167 1205.22C26.4118 1205.07 27.2311 1204.87 27.852 1204.61C28.1596 1204.48 28.482 1204.3 28.7429 1204.06C29.0112 1203.81 29.2857 1203.41 29.2857 1202.88V1199.87C29.2857 1198.36 28.6878 1196.92 27.6236 1195.85C26.5594 1194.79 25.116 1194.19 23.611 1194.19H14.3726ZM10.809 1202.6C10.8508 1202.62 10.9018 1202.64 10.9631 1202.67C11.3527 1202.83 11.9769 1203 12.8139 1203.14C14.4686 1203.41 16.7155 1203.56 18.9918 1203.56C21.268 1203.56 23.5149 1203.41 25.1696 1203.14C26.0067 1203 26.6309 1202.83 27.0204 1202.67C27.0817 1202.64 27.1328 1202.62 27.1746 1202.6V1199.87C27.1746 1198.92 26.7991 1198.01 26.1308 1197.35C25.4625 1196.68 24.5561 1196.3 23.611 1196.3H14.3726C13.4275 1196.3 12.521 1196.68 11.8527 1197.35C11.1844 1198.01 10.809 1198.92 10.809 1199.87V1202.6Z" fill="#E9EAEC"/>
105
+ <path d="M25 1235H31V1243H23V1237H21V1245H33V1233H25V1235ZM13 1235H7V1243H15V1237H17V1245H5V1233H13V1235ZM13 1227H7V1219H15V1225H17V1217H5V1229H13V1227ZM21 1217V1225H23V1219H31V1227H25V1229H33V1217H21Z" fill="#FAFAFA"/>
106
+ <path d="M25 1273H31V1281H23V1275H21V1283H33V1271H25V1273ZM13 1271H5V1283H17V1275H15V1281H7V1273H13V1271ZM13 1265H7V1257H15V1263H17V1255H5V1267H13V1265Z" fill="#FAFAFA"/>
107
+ <path d="M37 1257H31V1251H27V1257H21V1261H27V1267H31V1261H37V1257Z" fill="#59A011"/>
108
+ <path d="M13 1303H7V1295H15V1301H17V1293H5V1305H13V1303ZM21 1293V1301H23V1295H31V1303H25V1305H33V1293H21ZM16.54 1313H15V1319H7V1311H13V1309.39C12.8826 1309.27 12.7755 1309.14 12.68 1309H5V1321H17V1313.46L16.54 1313ZM33 1312.52V1309H29.5L33 1312.52ZM21 1317.5V1321H24.46L21 1317.5Z" fill="#FAFAFA"/>
109
+ <path d="M35 1321.2V1321.06L33.89 1316.25L20.17 1302.46C19.8684 1302.16 19.4603 1301.99 19.035 1301.99C18.6097 1301.99 18.2017 1302.16 17.9 1302.46L14.54 1305.83C14.39 1305.98 14.2711 1306.16 14.1899 1306.35C14.1087 1306.55 14.0669 1306.76 14.0669 1306.97C14.0669 1307.18 14.1087 1307.39 14.1899 1307.59C14.2711 1307.78 14.39 1307.96 14.54 1308.11L28.18 1321.92L33 1323H33.68C34.0912 1322.93 34.4592 1322.7 34.7057 1322.37C34.9523 1322.03 35.0579 1321.61 35 1321.2ZM16.21 1307L19.05 1304.16L20.6 1305.74L17.78 1308.56L16.21 1307ZM29.21 1320.07L18.91 1309.68L21.73 1306.86L32 1317.25L32.85 1320.88L29.21 1320.07Z" fill="#FAFAFA"/>
110
+ <path d="M7 1347H13V1353H7V1347ZM3 1355H9V1361H3V1355ZM11 1355H17V1361H11V1355ZM25 1349H31V1357H23V1351H21V1359H33V1347H25V1349ZM13 1341H7V1333H15V1339H17V1331H5V1343H13V1341ZM21 1331V1339H23V1333H31V1341H25V1343H33V1331H21Z" fill="#FAFAFA"/>
111
+ <path d="M25 1387H31V1395H23V1389H21V1397H33V1385H25V1387ZM13 1385H5V1397H17V1389H15V1395H7V1387H13V1385ZM13 1379H7V1371H15V1377H17V1369H5V1381H13V1379Z" fill="#FAFAFA"/>
112
+ <path d="M28.2998 1381H32.9998V1378.39L28.2998 1381Z" fill="#FAFAFA"/>
113
+ <path d="M36.41 1372.2L23.71 1365.2C23.5353 1365.1 23.3382 1365.05 23.1382 1365.05C22.9382 1365.06 22.7421 1365.11 22.5695 1365.21C22.3968 1365.31 22.2534 1365.46 22.1536 1365.63C22.0537 1365.8 22.0008 1366 22 1366.2V1380.26C22.0008 1380.46 22.0537 1380.66 22.1536 1380.83C22.2534 1381 22.3968 1381.15 22.5695 1381.25C22.7421 1381.35 22.9382 1381.4 23.1382 1381.41C23.3382 1381.41 23.5353 1381.36 23.71 1381.26L36.41 1374.2C36.5867 1374.1 36.7337 1373.95 36.836 1373.78C36.9382 1373.6 36.9921 1373.4 36.9921 1373.2C36.9921 1373 36.9382 1372.8 36.836 1372.62C36.7337 1372.45 36.5867 1372.3 36.41 1372.2Z" fill="#60A644"/>
114
+ <path d="M7 1423H13V1429H7V1423ZM3 1431H9V1437H3V1431ZM11 1431H17V1437H11V1431Z" fill="#FAFAFA"/>
115
+ <path d="M25 1425H31V1433H23V1427H21V1435H33V1423H25V1425ZM13 1417H7V1409H15V1415H17V1407H5V1419H13V1417Z" fill="#FAFAFA"/>
116
+ <path d="M28.2998 1419H32.9998V1416.39L28.2998 1419Z" fill="#FAFAFA"/>
117
+ <path d="M36.41 1410.2L23.71 1403.2C23.5353 1403.1 23.3382 1403.05 23.1382 1403.05C22.9382 1403.06 22.7421 1403.11 22.5695 1403.21C22.3968 1403.31 22.2534 1403.46 22.1536 1403.63C22.0537 1403.8 22.0008 1404 22 1404.2V1418.26C22.0008 1418.46 22.0537 1418.66 22.1536 1418.83C22.2534 1419 22.3968 1419.15 22.5695 1419.25C22.7421 1419.35 22.9382 1419.4 23.1382 1419.41C23.3382 1419.41 23.5353 1419.36 23.71 1419.26L36.41 1412.2C36.5867 1412.1 36.7337 1411.95 36.836 1411.78C36.9382 1411.6 36.9921 1411.4 36.9921 1411.2C36.9921 1411 36.9382 1410.8 36.836 1410.62C36.7337 1410.45 36.5867 1410.3 36.41 1410.2Z" fill="#60A644"/>
118
+ <path d="M25 1463H31V1471H23V1465H21V1473H33V1461H25V1463ZM13 1461H5V1473H17V1465H15V1471H7V1463H13V1461ZM13 1455H7V1447H15V1453H17V1445H5V1457H13V1455Z" fill="#FAFAFA"/>
119
+ <path d="M23 1441H37V1455H23V1441Z" fill="#B68300"/>
120
+ <path d="M29 1443V1453H25V1443H29ZM35 1443V1453H31V1443H35Z" fill="#FFE02C"/>
121
+ <path d="M7 1499H13V1505H7V1499ZM3 1507H9V1513H3V1507ZM11 1507H17V1513H11V1507Z" fill="#FAFAFA"/>
122
+ <path d="M25 1501H31V1509H23V1503H21V1511H33V1499H25V1501ZM13 1493H7V1485H15V1491H17V1483H5V1495H13V1493Z" fill="#FAFAFA"/>
123
+ <path d="M23 1479H37V1493H23V1479Z" fill="#B68300"/>
124
+ <path d="M29 1481V1491H25V1481H29ZM35 1481V1491H31V1481H35Z" fill="#FFE02C"/>
125
+ <path d="M26 1551H4C3.73478 1551 3.48043 1550.89 3.29289 1550.71C3.10536 1550.52 3 1550.27 3 1550V1520C3 1519.73 3.10536 1519.48 3.29289 1519.29C3.48043 1519.11 3.73478 1519 4 1519H34C34.2652 1519 34.5196 1519.11 34.7071 1519.29C34.8946 1519.48 35 1519.73 35 1520V1541.81C35 1542.08 34.8946 1542.33 34.7071 1542.52C34.5196 1542.7 34.2652 1542.81 34 1542.81C33.7348 1542.81 33.4804 1542.7 33.2929 1542.52C33.1054 1542.33 33 1542.08 33 1541.81V1521H5V1549H26C26.2652 1549 26.5196 1549.11 26.7071 1549.29C26.8946 1549.48 27 1549.73 27 1550C27 1550.27 26.8946 1550.52 26.7071 1550.71C26.5196 1550.89 26.2652 1551 26 1551Z" fill="#FAFAFA"/>
126
+ <path d="M26 1550.89C25.87 1550.89 25.7409 1550.87 25.62 1550.82C25.4358 1550.74 25.2784 1550.62 25.1679 1550.45C25.0575 1550.28 24.999 1550.09 25 1549.89V1542C25 1541.73 25.1054 1541.48 25.2929 1541.29C25.4804 1541.11 25.7348 1541 26 1541H33.69C34.05 1540.83 34.28 1540.95 34.62 1541.29C34.7604 1541.43 34.8563 1541.61 34.8955 1541.8C34.9347 1542 34.9153 1542.2 34.84 1542.38C34.7894 1542.5 34.7146 1542.62 34.62 1542.71L26.71 1550.6C26.6166 1550.69 26.5058 1550.77 26.3839 1550.82C26.2621 1550.87 26.1316 1550.89 26 1550.89ZM27 1543V1547.49L31.5 1543H27Z" fill="#FAFAFA"/>
127
+ <path d="M21 1533V1529H25V1533H21Z" fill="#FAFAFA"/>
128
+ <path d="M13 1533V1529H17V1533H13Z" fill="#FAFAFA"/>
129
+ <path d="M21 1541V1537H25V1541H21Z" fill="#FAFAFA"/>
130
+ <path d="M13 1541V1537H17V1541H13Z" fill="#FAFAFA"/>
131
+ <path d="M15 1543V1545H9V1539H11V1537H7V1547H17V1543H15ZM11 1531H9V1525H15V1527H17V1523H7V1533H11V1531ZM27 1539H29V1542C29 1542.27 29.1054 1542.52 29.2929 1542.71C29.4804 1542.89 29.7348 1543 30 1543C30.2652 1543 30.5196 1542.89 30.7071 1542.71C30.8946 1542.52 31 1542.27 31 1542V1537H27V1539ZM21 1523V1527H23V1525H29V1531H27V1533H31V1523H21ZM25.83 1545H23V1543H21V1547H25.83C26.0952 1547 26.3496 1546.89 26.5371 1546.71C26.7246 1546.52 26.83 1546.27 26.83 1546C26.83 1545.73 26.7246 1545.48 26.5371 1545.29C26.3496 1545.11 26.0952 1545 25.83 1545Z" fill="#FAFAFA"/>
132
+ <path d="M27 1572V1558H11V1572H4V1588H34V1572H27ZM13 1560H25V1572H13V1560ZM18 1586H6V1574H18V1586ZM32 1586H20V1574H32V1586Z" fill="#FAFAFA"/>
133
+ <path d="M7 1605V1613H13V1612C13 1611.22 13.1807 1610.46 13.5279 1609.76C13.875 1609.07 14.379 1608.47 15 1608V1607H21V1599H13V1605H7ZM13 1611H9V1607H13V1611ZM15 1601H19V1605H15V1601Z" fill="#FAFAFA"/>
134
+ <path d="M5 1615V1603H11V1597H23V1607H25V1597C25 1596.47 24.7893 1595.96 24.4142 1595.59C24.0391 1595.21 23.5304 1595 23 1595H11C10.4696 1595 9.96086 1595.21 9.58579 1595.59C9.21071 1595.96 9 1596.47 9 1597V1601H5C4.46957 1601 3.96086 1601.21 3.58579 1601.59C3.21071 1601.96 3 1602.47 3 1603V1615C3 1615.53 3.21071 1616.04 3.58579 1616.41C3.96086 1616.79 4.46957 1617 5 1617H17V1615H5Z" fill="#FAFAFA"/>
135
+ <path d="M31 1619V1612C31 1611.2 30.6839 1610.44 30.1213 1609.88C29.5587 1609.32 28.7956 1609 28 1609H18C17.2044 1609 16.4413 1609.32 15.8787 1609.88C15.3161 1610.44 15 1611.2 15 1612V1613H17V1612C17 1611.73 17.1054 1611.48 17.2929 1611.29C17.4804 1611.11 17.7348 1611 18 1611H19V1622C19 1622.8 19.3161 1623.56 19.8787 1624.12C20.4413 1624.68 21.2044 1625 22 1625H32C32.7956 1625 33.5587 1624.68 34.1213 1624.12C34.6839 1623.56 35 1622.8 35 1622V1619H31ZM23 1623H22C21.7348 1623 21.4804 1622.89 21.2929 1622.71C21.1054 1622.52 21 1622.27 21 1622V1611H28C28.2652 1611 28.5196 1611.11 28.7071 1611.29C28.8946 1611.48 29 1611.73 29 1612V1619H23V1623ZM33 1622C33 1622.27 32.8946 1622.52 32.7071 1622.71C32.5196 1622.89 32.2652 1623 32 1623H25V1621H33V1622Z" fill="#FAFAFA"/>
136
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.33317 1650.06C5.7502 1650.06 5.27762 1650.53 5.27762 1651.11V1661.67C5.27762 1662.25 5.7502 1662.72 6.33317 1662.72H16.8887C17.4717 1662.72 17.9443 1662.25 17.9443 1661.67V1658.56C17.9443 1657.98 18.4169 1657.51 18.9998 1657.51C19.5828 1657.51 20.0554 1657.98 20.0554 1658.56V1661.67C20.0554 1663.42 18.6376 1664.83 16.8887 1664.83H6.33317C4.58427 1664.83 3.1665 1663.42 3.1665 1661.67V1651.11C3.1665 1649.36 4.58427 1647.94 6.33317 1647.94H8.56846C9.15143 1647.94 9.62402 1648.42 9.62402 1649C9.62402 1649.58 9.15143 1650.06 8.56846 1650.06H6.33317Z" fill="#E9EAEC"/>
137
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.6665 1645.41C12.6665 1643.9 13.8952 1642.67 15.4109 1642.67H22.5887C24.1044 1642.67 25.3332 1643.9 25.3332 1645.41V1652.59C25.3332 1654.1 24.1044 1655.33 22.5887 1655.33H15.4109C13.8952 1655.33 12.6665 1654.1 12.6665 1652.59V1645.41ZM15.4109 1644.78C15.0612 1644.78 14.7776 1645.06 14.7776 1645.41V1652.59C14.7776 1652.94 15.0612 1653.22 15.4109 1653.22H22.5887C22.9385 1653.22 23.2221 1652.94 23.2221 1652.59V1645.41C23.2221 1645.06 22.9385 1644.78 22.5887 1644.78H15.4109Z" fill="#2BA2DE"/>
138
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5553 1652.32C30.0508 1652.32 30.4525 1652.73 30.4525 1653.22V1657.87C30.4525 1659.29 29.2946 1660.45 27.8664 1660.45H23.2219C22.7264 1660.45 22.3247 1660.05 22.3247 1659.56C22.3247 1659.06 22.7264 1658.66 23.2219 1658.66H27.8664C28.3036 1658.66 28.658 1658.3 28.658 1657.87V1653.22C28.658 1652.73 29.0597 1652.32 29.5553 1652.32Z" fill="#2BA2DE"/>
139
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.44425 1645.67C7.94873 1645.67 7.54703 1645.27 7.54703 1644.78L7.54703 1640.13C7.54703 1638.7 8.70487 1637.55 10.1331 1637.55L14.7776 1637.55C15.2731 1637.55 15.6748 1637.95 15.6748 1638.44C15.6748 1638.94 15.2731 1639.34 14.7776 1639.34L10.1331 1639.34C9.69591 1639.34 9.34147 1639.7 9.34147 1640.13L9.34147 1644.78C9.34147 1645.27 8.93977 1645.67 8.44425 1645.67Z" fill="#2BA2DE"/>
140
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9443 1636.33C17.9443 1634.58 19.3621 1633.17 21.111 1633.17H31.6666C33.4155 1633.17 34.8332 1634.58 34.8332 1636.33V1646.89C34.8332 1648.64 33.4155 1650.06 31.6666 1650.06H29.4313C28.8483 1650.06 28.3757 1649.58 28.3757 1649C28.3757 1648.42 28.8483 1647.94 29.4313 1647.94H31.6666C32.2495 1647.94 32.7221 1647.47 32.7221 1646.89V1636.33C32.7221 1635.75 32.2495 1635.28 31.6666 1635.28H21.111C20.528 1635.28 20.0554 1635.75 20.0554 1636.33V1639.44C20.0554 1640.02 19.5829 1640.49 18.9999 1640.49C18.4169 1640.49 17.9443 1640.02 17.9443 1639.44V1636.33Z" fill="#E9EAEC"/>
141
+ <path d="M9 1694H11V1698H9V1694ZM15 1694H17V1698H15V1694ZM21 1694H23V1698H21V1694ZM27 1694H29V1698H27V1694ZM8 1690H30V1692H8V1690ZM23 1687.94C23.2493 1687.94 23.4884 1687.84 23.6647 1687.66C23.841 1687.49 23.94 1687.25 23.94 1687C23.94 1686.75 23.841 1686.51 23.6647 1686.34C23.4884 1686.16 23.2493 1686.06 23 1686.06H15C14.7507 1686.06 14.5116 1686.16 14.3353 1686.34C14.159 1686.51 14.06 1686.75 14.06 1687C14.06 1687.25 14.159 1687.49 14.3353 1687.66C14.5116 1687.84 14.7507 1687.94 15 1687.94H23Z" fill="#FAFAFA"/>
142
+ <path d="M34.91 1690.47L31.78 1679.41C31.654 1679 31.4005 1678.64 31.0568 1678.39C30.7131 1678.14 30.2972 1678 29.87 1678H27C26.9981 1678.67 26.9107 1679.35 26.74 1680H29.87L33 1691.06V1700H5V1691.06L8.13 1680H11.26C11.0893 1679.35 11.0019 1678.67 11 1678H8.13C7.70279 1678 7.28687 1678.14 6.94316 1678.39C6.59946 1678.64 6.34603 1679 6.22 1679.41L3.09 1690.48C3.03066 1690.67 3.00032 1690.87 3 1691.07V1700C3 1700.53 3.21071 1701.04 3.58579 1701.41C3.96086 1701.79 4.46957 1702 5 1702H33C33.5304 1702 34.0391 1701.79 34.4142 1701.41C34.7893 1701.04 35 1700.53 35 1700V1691.06C34.9997 1690.86 34.9693 1690.66 34.91 1690.47Z" fill="#FAFAFA"/>
143
+ <path d="M19 1684C20.1867 1684 21.3467 1683.65 22.3334 1682.99C23.3201 1682.33 24.0892 1681.39 24.5433 1680.3C24.9974 1679.2 25.1162 1677.99 24.8847 1676.83C24.6532 1675.67 24.0818 1674.6 23.2426 1673.76C22.4035 1672.92 21.3344 1672.35 20.1705 1672.12C19.0067 1671.88 17.8003 1672 16.7039 1672.46C15.6075 1672.91 14.6705 1673.68 14.0112 1674.67C13.3519 1675.65 13 1676.81 13 1678C13 1679.59 13.6321 1681.12 14.7574 1682.24C15.8826 1683.37 17.4087 1684 19 1684ZM19 1674C19.7911 1674 20.5645 1674.23 21.2223 1674.67C21.8801 1675.11 22.3928 1675.74 22.6955 1676.47C22.9983 1677.2 23.0775 1678 22.9231 1678.78C22.7688 1679.56 22.3878 1680.27 21.8284 1680.83C21.269 1681.39 20.5563 1681.77 19.7804 1681.92C19.0044 1682.08 18.2002 1682 17.4693 1681.7C16.7384 1681.39 16.1136 1680.88 15.6741 1680.22C15.2346 1679.56 15 1678.79 15 1678C15 1676.94 15.4214 1675.92 16.1716 1675.17C16.9217 1674.42 17.9391 1674 19 1674Z" fill="#FAFAFA"/>
144
+ <path d="M21 1731H23V1735H21V1731ZM27 1731H29V1735H27V1731ZM15 1731H17V1735H15V1731ZM8 1727H30V1729H8V1727ZM9 1731H11V1735H9V1731ZM23 1724.94C23.2493 1724.94 23.4884 1724.84 23.6647 1724.66C23.841 1724.49 23.94 1724.25 23.94 1724C23.94 1723.75 23.841 1723.51 23.6647 1723.34C23.4884 1723.16 23.2493 1723.06 23 1723.06H15C14.7507 1723.06 14.5116 1723.16 14.3353 1723.34C14.159 1723.51 14.06 1723.75 14.06 1724C14.06 1724.25 14.159 1724.49 14.3353 1724.66C14.5116 1724.84 14.7507 1724.94 15 1724.94H23Z" fill="#FAFAFA"/>
145
+ <path d="M19 1719C17.9391 1719 16.9217 1718.58 16.1716 1717.83C15.4214 1717.08 15 1716.06 15 1715C15 1713.94 15.4214 1712.92 16.1716 1712.17C16.9217 1711.42 17.9391 1711 19 1711H23V1710.54C21.8033 1709.58 20.2842 1709.11 18.755 1709.24C17.2259 1709.37 15.8028 1710.07 14.7784 1711.21C13.754 1712.36 13.2061 1713.85 13.2473 1715.38C13.2885 1716.91 13.9157 1718.37 15 1719.46C16.0983 1720.45 17.5225 1721 19 1721C19.8388 1721 20.6673 1720.82 21.432 1720.47C22.1968 1720.13 22.8808 1719.63 23.44 1719H19Z" fill="#FAFAFA"/>
146
+ <path d="M33.08 1721H33V1725H32.13L33 1728.06V1737H5V1728.06L8.13 1717H11.26C11.0893 1716.35 11.0019 1715.67 11 1715H8.13C7.70279 1715 7.28687 1715.14 6.94316 1715.39C6.59946 1715.64 6.34603 1716 6.22 1716.41L3.09 1727.48C3.03066 1727.67 3.00032 1727.87 3 1728.07V1737C3 1737.53 3.21071 1738.04 3.58579 1738.41C3.96086 1738.79 4.46957 1739 5 1739H33C33.5304 1739 34.0391 1738.79 34.4142 1738.41C34.7893 1738.04 35 1737.53 35 1737V1728.06C34.9997 1727.86 34.9693 1727.66 34.91 1727.47L33.08 1721Z" fill="#FAFAFA"/>
147
+ <path d="M37 1713H31V1707H27V1713H21V1717H27V1723H31V1717H37V1713Z" fill="#59A011"/>
148
+ <path d="M21 1769H23V1773H21V1769ZM15 1769H17V1773H15V1769ZM27 1769H29V1773H27V1769ZM8 1765H30V1767H8V1765ZM9 1769H11V1773H9V1769Z" fill="#FAFAFA"/>
149
+ <path d="M17.3299 1756.62C16.5688 1756.27 15.9382 1755.68 15.5272 1754.95C15.1161 1754.22 14.9456 1753.38 15.0395 1752.54C15.1335 1751.71 15.4874 1750.93 16.0509 1750.31C16.6145 1749.68 17.3593 1749.26 18.1799 1749.08C18.5515 1748.34 19.0007 1747.64 19.5199 1747C19.3467 1746.99 19.1731 1746.99 18.9999 1747C17.4842 1747.01 16.0273 1747.59 14.9217 1748.62C13.8161 1749.66 13.1438 1751.08 13.04 1752.59C12.9361 1754.1 13.4084 1755.6 14.3619 1756.77C15.3153 1757.95 16.6794 1758.73 18.1799 1758.94C17.8139 1758.2 17.5289 1757.42 17.3299 1756.62ZM19.5799 1761.06H14.9999C14.7506 1761.06 14.5115 1761.16 14.3352 1761.34C14.1589 1761.51 14.0599 1761.75 14.0599 1762C14.0599 1762.25 14.1589 1762.49 14.3352 1762.66C14.5115 1762.84 14.7506 1762.94 14.9999 1762.94H21.6199C20.8613 1762.4 20.1756 1761.77 19.5799 1761.06Z" fill="#FAFAFA"/>
150
+ <path d="M34.23 1763.06C33.6617 1763.45 33.0592 1763.78 32.43 1764.06L33 1766.06V1775H5V1766.06L8.13 1755H11.26C11.0893 1754.35 11.0019 1753.67 11 1753H8.13C7.70279 1753 7.28687 1753.14 6.94316 1753.39C6.59946 1753.64 6.34603 1754 6.22 1754.41L3.09 1765.48C3.03066 1765.67 3.00032 1765.87 3 1766.07V1775C3 1775.53 3.21071 1776.04 3.58579 1776.41C3.96086 1776.79 4.46957 1777 5 1777H33C33.5304 1777 34.0391 1776.79 34.4142 1776.41C34.7893 1776.04 35 1775.53 35 1775V1766.06C34.9997 1765.86 34.9693 1765.66 34.91 1765.47L34.23 1763.06Z" fill="#FAFAFA"/>
151
+ <path d="M28 1745C26.22 1745 24.4799 1745.53 22.9999 1746.52C21.5198 1747.51 20.3663 1748.91 19.6851 1750.56C19.0039 1752.2 18.8257 1754.01 19.1729 1755.76C19.5202 1757.5 20.3774 1759.11 21.636 1760.36C22.8947 1761.62 24.4984 1762.48 26.2442 1762.83C27.99 1763.17 29.7996 1763 31.4442 1762.31C33.0887 1761.63 34.4943 1760.48 35.4832 1759C36.4722 1757.52 37 1755.78 37 1754C37 1751.61 36.0518 1749.32 34.364 1747.64C32.6761 1745.95 30.387 1745 28 1745ZM29 1759H27V1757H29V1759ZM29 1755H27V1749H29V1755Z" fill="#F84E30"/>
152
+ <path d="M13.11 1803.52C12.9534 1803.36 12.8127 1803.19 12.69 1803H8V1805H14.58L13.11 1803.52ZM30 1803.52V1803H29.48L30 1803.52ZM17 1807.45L16.55 1807H15V1811H17V1807.45ZM9 1807H11V1811H9V1807ZM33 1804.06V1806.55L35 1808.55V1804.05C34.9997 1803.85 34.9693 1803.65 34.91 1803.46L31.78 1792.41C31.654 1792 31.4005 1791.64 31.0568 1791.39C30.7131 1791.14 30.2972 1791 29.87 1791H27C26.9956 1791.67 26.9082 1792.35 26.74 1793H29.87L33 1804.06Z" fill="#FAFAFA"/>
153
+ <path d="M22.49 1813H5V1804.06L8.13 1793H11.26C11.0918 1792.35 11.0044 1791.67 11 1791H8.13C7.70279 1791 7.28687 1791.14 6.94316 1791.39C6.59946 1791.64 6.34603 1792 6.22 1792.41L3.09 1803.48C3.03066 1803.67 3.00032 1803.87 3 1804.07V1813C3 1813.53 3.21071 1814.04 3.58579 1814.41C3.96086 1814.79 4.46957 1815 5 1815H24.46L22.49 1813ZM15.59 1795.93L16.47 1795.05C16.6757 1794.85 16.9039 1794.67 17.15 1794.52C16.3593 1794.1 15.731 1793.43 15.3653 1792.62C14.9995 1791.8 14.9174 1790.89 15.1321 1790.02C15.3467 1789.15 15.8457 1788.38 16.5495 1787.83C17.2533 1787.28 18.1213 1786.98 19.015 1786.98C19.9087 1786.98 20.7767 1787.28 21.4805 1787.83C22.1843 1788.38 22.6833 1789.15 22.8979 1790.02C23.1126 1790.89 23.0305 1791.8 22.6647 1792.62C22.299 1793.43 21.6707 1794.1 20.88 1794.52C21.1381 1794.67 21.3766 1794.85 21.59 1795.06L22.44 1795.92C23.4891 1795.19 24.278 1794.15 24.6917 1792.94C25.1055 1791.73 25.1225 1790.42 24.7403 1789.2C24.3581 1787.98 23.5967 1786.91 22.5669 1786.16C21.5371 1785.4 20.2927 1784.99 19.015 1784.99C17.7373 1784.99 16.4929 1785.4 15.4631 1786.16C14.4333 1786.91 13.6719 1787.98 13.2897 1789.2C12.9075 1790.42 12.9245 1791.73 13.3383 1792.94C13.752 1794.15 14.5409 1795.19 15.59 1795.92V1795.93Z" fill="#FAFAFA"/>
154
+ <path d="M14.5198 1799.83C14.2193 1800.13 14.0508 1800.54 14.0508 1800.97C14.0508 1801.4 14.2193 1801.81 14.5198 1802.11L28.1798 1815.92L32.9998 1817H33.3598C33.4659 1817.01 33.5736 1817.01 33.6798 1817C33.8982 1816.97 34.1077 1816.89 34.2949 1816.77C34.4821 1816.66 34.6429 1816.5 34.7671 1816.32C34.8913 1816.14 34.9761 1815.93 35.0162 1815.71C35.0562 1815.5 35.0506 1815.27 34.9998 1815.06L33.8898 1810.25L20.1698 1796.46C19.8681 1796.16 19.4601 1795.99 19.0348 1795.99C18.6095 1795.99 18.2014 1796.16 17.8998 1796.46L14.5398 1799.83H14.5198ZM18.9098 1803.68L21.7298 1800.86L31.9998 1811.25L32.8498 1814.88L29.1898 1814.07L18.9098 1803.68ZM16.2098 1801L19.0498 1798.16L20.5998 1799.74L17.7798 1802.56L16.2098 1801Z" fill="#FAFAFA"/>
155
+ <path d="M20.65 1841H8V1843H20.53C20.4899 1842.33 20.5302 1841.66 20.65 1841ZM9 1845H11V1849H9V1845ZM17 1846.93V1845H15V1849H15.11C15.3081 1848.69 15.5394 1848.39 15.8 1848.13L17 1846.93ZM31 1835L31.39 1835.13L32.81 1835.69L33.33 1835.9L31.78 1830.41C31.654 1830 31.4005 1829.64 31.0568 1829.39C30.7131 1829.14 30.2972 1829 29.87 1829H27C26.9956 1829.67 26.9082 1830.35 26.74 1831H29.87L31 1835ZM19 1835C20.1867 1835 21.3467 1834.65 22.3334 1833.99C23.3201 1833.33 24.0892 1832.39 24.5433 1831.3C24.9974 1830.2 25.1162 1828.99 24.8847 1827.83C24.6532 1826.67 24.0818 1825.6 23.2426 1824.76C22.4035 1823.92 21.3344 1823.35 20.1705 1823.12C19.0067 1822.88 17.8003 1823 16.7039 1823.46C15.6075 1823.91 14.6705 1824.68 14.0112 1825.67C13.3519 1826.65 13 1827.81 13 1829C13 1830.59 13.6321 1832.12 14.7574 1833.24C15.8826 1834.37 17.4087 1835 19 1835ZM19 1825C19.7911 1825 20.5645 1825.23 21.2223 1825.67C21.8801 1826.11 22.3928 1826.74 22.6955 1827.47C22.9983 1828.2 23.0775 1829 22.9231 1829.78C22.7688 1830.56 22.3878 1831.27 21.8284 1831.83C21.269 1832.39 20.5563 1832.77 19.7804 1832.92C19.0044 1833.08 18.2002 1833 17.4693 1832.7C16.7384 1832.39 16.1136 1831.88 15.6741 1831.22C15.2346 1830.56 15 1829.79 15 1829C15 1827.94 15.4214 1826.92 16.1716 1826.17C16.9217 1825.42 17.9391 1825 19 1825ZM34.14 1848.18C33.7859 1848.52 33.4047 1848.84 33 1849.12V1851H27.07L25.07 1853H33C33.5304 1853 34.0391 1852.79 34.4142 1852.41C34.7893 1852.04 35 1851.53 35 1851V1847.14C34.7389 1847.51 34.4515 1847.85 34.14 1848.18Z" fill="#FAFAFA"/>
156
+ <path d="M14.4 1851H5V1842.06L8.13 1831H11.26C11.0918 1830.35 11.0044 1829.67 11 1829H8.13C7.70279 1829 7.28687 1829.14 6.94316 1829.39C6.59946 1829.64 6.34603 1830 6.22 1830.41L3.09 1841.48C3.03066 1841.67 3.00032 1841.87 3 1842.07V1851C3 1851.53 3.21071 1852.04 3.58579 1852.41C3.96086 1852.79 4.46957 1853 5 1853H14.55C14.3704 1852.35 14.3195 1851.67 14.4 1851ZM14.06 1838C14.06 1838.25 14.159 1838.49 14.3353 1838.66C14.5116 1838.84 14.7507 1838.94 15 1838.94H21.34C21.6842 1838.25 22.1254 1837.62 22.65 1837.06H15C14.7507 1837.06 14.5116 1837.16 14.3353 1837.34C14.159 1837.51 14.06 1837.75 14.06 1838ZM17.22 1853.78C16.6612 1853.22 16.3476 1852.46 16.3476 1851.67C16.3476 1850.87 16.6612 1850.11 17.22 1849.55L22.72 1844.05C22.4408 1842.99 22.4613 1841.87 22.7793 1840.82C23.0972 1839.76 23.7002 1838.82 24.5214 1838.09C25.3426 1837.36 26.3498 1836.87 27.4316 1836.68C28.5133 1836.49 29.6273 1836.6 30.65 1837L32.07 1837.55L29.18 1840.4C29.0868 1840.49 29.0128 1840.6 28.9623 1840.73C28.9119 1840.85 28.8859 1840.98 28.8859 1841.11C28.8859 1841.24 28.9119 1841.37 28.9623 1841.49C29.0128 1841.62 29.0868 1841.73 29.18 1841.82C29.2732 1841.91 29.3839 1841.99 29.5058 1842.04C29.6276 1842.09 29.7581 1842.11 29.89 1842.11C30.0219 1842.11 30.1524 1842.09 30.2743 1842.04C30.3961 1841.99 30.5068 1841.91 30.6 1841.82L33.49 1838.93L34 1840.35C34.3994 1841.37 34.5102 1842.48 34.3203 1843.55C34.1305 1844.63 33.6473 1845.64 32.9238 1846.46C32.2004 1847.28 31.2647 1847.88 30.2196 1848.21C29.1745 1848.53 28.0605 1848.56 27 1848.29L21.5 1853.79C21.2201 1854.07 20.8865 1854.3 20.5187 1854.45C20.151 1854.61 19.7563 1854.68 19.3579 1854.68C18.9595 1854.68 18.5652 1854.6 18.1982 1854.45C17.8311 1854.29 17.4986 1854.06 17.22 1853.78ZM28.22 1838.54C27.5921 1838.58 26.9832 1838.77 26.4426 1839.09C25.902 1839.42 25.4451 1839.86 25.1089 1840.39C24.7728 1840.93 24.5669 1841.53 24.508 1842.16C24.4491 1842.78 24.5389 1843.41 24.77 1844L25.01 1844.6L18.63 1851C18.5169 1851.19 18.4705 1851.41 18.4983 1851.63C18.526 1851.85 18.6263 1852.06 18.7833 1852.22C18.9403 1852.37 19.1451 1852.47 19.3654 1852.5C19.5857 1852.53 19.809 1852.48 20 1852.37L26.43 1846L27.03 1846.24C27.6137 1846.47 28.2422 1846.55 28.8648 1846.49C29.4875 1846.43 30.0869 1846.22 30.615 1845.88C31.1431 1845.55 31.5852 1845.09 31.9056 1844.56C32.226 1844.02 32.4159 1843.41 32.46 1842.79L32.01 1843.24C31.4413 1843.77 30.6891 1844.06 29.9119 1844.04C29.1347 1844.03 28.3932 1843.72 27.8435 1843.17C27.2939 1842.62 26.979 1841.88 26.9653 1841.1C26.9516 1840.32 27.2401 1839.57 27.77 1839L28.22 1838.54Z" fill="#FAFAFA"/>
157
+ <path d="M21 1883H23V1887H21V1883ZM27 1883H29V1887H27V1883ZM15 1883H17V1887H15V1883ZM9 1883H11V1887H9V1883Z" fill="#FAFAFA"/>
158
+ <path d="M33 1881.11V1889H5V1880.06L8.13 1869H11.26C11.0893 1868.35 11.0019 1867.67 11 1867H8.13C7.70279 1867 7.28687 1867.14 6.94316 1867.39C6.59946 1867.64 6.34603 1868 6.22 1868.41L3.09 1879.48C3.03066 1879.67 3.00032 1879.87 3 1880.07V1889C3 1889.53 3.21071 1890.04 3.58579 1890.41C3.96086 1890.79 4.46957 1891 5 1891H33C33.5304 1891 34.0391 1890.79 34.4142 1890.41C34.7893 1890.04 35 1889.53 35 1889V1880.56C34.3724 1880.86 33.6946 1881.05 33 1881.11Z" fill="#FAFAFA"/>
159
+ <path d="M15 1871.44L16 1869.66C15.3523 1868.93 14.9965 1867.98 15 1867C15 1865.94 15.4214 1864.92 16.1716 1864.17C16.9217 1863.42 17.9391 1863 19 1863C19.2822 1863 19.5634 1863.03 19.84 1863.09L20.84 1861.3C20.0689 1861.05 19.2538 1860.95 18.4454 1861.03C17.6369 1861.1 16.8523 1861.34 16.14 1861.73C14.7414 1862.49 13.7008 1863.77 13.247 1865.29C12.7932 1866.82 12.9633 1868.46 13.72 1869.86C14.0518 1870.46 14.485 1870.99 15 1871.44ZM15 1879H8V1881H18.32C17.0194 1880.73 15.8493 1880.02 15 1879Z" fill="#FAFAFA"/>
160
+ <path d="M26 1860.19C25.3206 1860.19 24.6523 1860.36 24.0636 1860.7C23.4749 1861.04 22.987 1861.53 22.65 1862.12L16.19 1873.35C15.8513 1873.94 15.673 1874.6 15.6729 1875.28C15.6727 1875.96 15.8508 1876.62 16.1893 1877.21C16.5277 1877.8 17.0146 1878.28 17.601 1878.62C18.1874 1878.96 18.8527 1879.14 19.53 1879.14H32.53C33.2073 1879.14 33.8726 1878.96 34.459 1878.62C35.0454 1878.28 35.5323 1877.8 35.8707 1877.21C36.2092 1876.62 36.3873 1875.96 36.3871 1875.28C36.387 1874.6 36.2087 1873.94 35.87 1873.35L29.36 1862.12C29.0229 1861.53 28.5337 1861.04 27.9429 1860.7C27.3521 1860.36 26.6813 1860.18 26 1860.19Z" fill="#B68300"/>
161
+ <path d="M25.9998 1862.19C26.3264 1862.19 26.6473 1862.27 26.9301 1862.44C27.2129 1862.6 27.4474 1862.84 27.6098 1863.12L34.0898 1874.35C34.253 1874.63 34.339 1874.95 34.339 1875.28C34.339 1875.61 34.2532 1875.93 34.09 1876.21C33.9268 1876.49 33.6922 1876.73 33.4095 1876.89C33.1269 1877.05 32.8062 1877.14 32.4798 1877.14H19.4798C19.1534 1877.14 18.8327 1877.05 18.5501 1876.89C18.2674 1876.73 18.0328 1876.49 17.8696 1876.21C17.7064 1875.93 17.6206 1875.61 17.6206 1875.28C17.6206 1874.95 17.7066 1874.63 17.8698 1874.35L24.4098 1863.12C24.5689 1862.84 24.7999 1862.6 25.0793 1862.44C25.3586 1862.28 25.6762 1862.19 25.9998 1862.19Z" fill="#FFE02C"/>
162
+ <path d="M25 1873H27V1875H25V1873ZM25 1865H27V1871H25V1865Z" fill="#454545"/>
163
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.6282 1899.8C18.4774 1899.31 19.5235 1899.31 20.3727 1899.8L31.4817 1906.21C32.3309 1906.7 32.8539 1907.61 32.8539 1908.59V1921.41C32.8539 1922.39 32.3309 1923.3 31.4817 1923.79L20.3727 1930.2C19.5235 1930.69 18.4774 1930.69 17.6282 1930.2L6.51919 1923.79C5.67006 1923.3 5.14697 1922.39 5.14697 1921.41V1908.59C5.14697 1907.61 5.67006 1906.7 6.51919 1906.21L17.6282 1899.8ZM19.3171 1901.62C19.1212 1901.51 18.8797 1901.51 18.6838 1901.62L8.31364 1907.61L19.0005 1913.78L29.6873 1907.61L19.3171 1901.62ZM30.7428 1909.44L20.056 1915.61V1927.95L30.4262 1921.96C30.6221 1921.85 30.7428 1921.64 30.7428 1921.41V1909.44ZM17.9449 1927.95V1915.61L7.25808 1909.44V1921.41C7.25808 1921.64 7.3788 1921.85 7.57475 1921.96L17.9449 1927.95Z" fill="#E9EAEC"/>
164
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 1937.46C18.2509 1937.51 17.9273 1937.62 17.6282 1937.8L6.51919 1944.21C5.67006 1944.7 5.14697 1945.61 5.14697 1946.59V1959.41C5.14697 1960.39 5.67006 1961.3 6.51919 1961.79L17.6282 1968.2C18.4774 1968.69 19.5235 1968.69 20.3727 1968.2L31.4817 1961.79C32.3309 1961.3 32.8539 1960.39 32.8539 1959.41V1954.27C32.1794 1954.54 31.4734 1954.75 30.7428 1954.89V1959.41C30.7428 1959.64 30.6221 1959.85 30.4262 1959.96L20.056 1965.95V1953.61L21.5084 1952.77C20.918 1952.32 20.3715 1951.82 19.8766 1951.28L19.0005 1951.78L8.31364 1945.61L17.3014 1940.42C17.5906 1939.37 18.025 1938.37 18.5816 1937.46ZM17.9449 1953.61V1965.95L7.57475 1959.96C7.3788 1959.85 7.25808 1959.64 7.25808 1959.41V1947.44L17.9449 1953.61Z" fill="#E9EAEC"/>
165
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38 1943.5C38 1948.75 33.7467 1953 28.5 1953C23.2533 1953 19 1948.75 19 1943.5C19 1938.25 23.2533 1934 28.5 1934C33.7467 1934 38 1938.25 38 1943.5ZM28.5 1938.09C29.1296 1938.09 29.64 1938.6 29.64 1939.22V1942.36H32.775C33.4046 1942.36 33.915 1942.87 33.915 1943.5C33.915 1944.13 33.4046 1944.64 32.775 1944.64H29.64V1947.77C29.64 1948.4 29.1296 1948.91 28.5 1948.91C27.8704 1948.91 27.36 1948.4 27.36 1947.77V1944.64H24.225C23.5954 1944.64 23.085 1944.13 23.085 1943.5C23.085 1942.87 23.5954 1942.36 24.225 1942.36H27.36V1939.22C27.36 1938.6 27.8704 1938.09 28.5 1938.09Z" fill="#239332"/>
166
+ <path d="M17.1998 2001H5.29984C5.19984 2001 5.19984 2001 5.19984 2000.9V1987.1C5.19984 1987 5.19984 1987 5.29984 1987H19.0998C19.1264 1987 19.1518 1987.01 19.1706 1987.03C19.1893 1987.05 19.1998 1987.07 19.1998 1987.1V1989H21.1998V1987.1C21.1972 1986.54 20.9751 1986.01 20.5819 1985.62C20.1886 1985.22 19.656 1985 19.0998 1985H5.29984C5.0222 1984.99 4.74605 1985.04 4.48817 1985.15C4.23028 1985.25 3.99604 1985.4 3.79965 1985.6C3.60326 1985.8 3.44883 1986.03 3.34572 1986.29C3.24262 1986.55 3.19299 1986.82 3.19984 1987.1V2000.9C3.19299 2001.18 3.24262 2001.45 3.34572 2001.71C3.44883 2001.97 3.60326 2002.2 3.79965 2002.4C3.99604 2002.6 4.23028 2002.75 4.48817 2002.85C4.74605 2002.96 5.0222 2003.01 5.29984 2003H17.1998V2001ZM9.19984 1977H23.1998V1979H25.1998V1977C25.1998 1976.47 24.9891 1975.96 24.6141 1975.59C24.239 1975.21 23.7303 1975 23.1998 1975H9.09984C8.84808 1974.99 8.59728 1975.04 8.36298 1975.13C8.12868 1975.22 7.91588 1975.36 7.73776 1975.54C7.55963 1975.72 7.41998 1975.93 7.32745 1976.16C7.23492 1976.4 7.19149 1976.65 7.19984 1976.9V1983H9.19984V1977Z" fill="#FAFAFA"/>
167
+ <path d="M15.2002 1983H23.1002C23.1267 1983 23.1522 1983.01 23.1709 1983.03C23.1897 1983.05 23.2002 1983.07 23.2002 1983.1V1989H25.2002V1983.1C25.2002 1983.07 25.2107 1983.05 25.2295 1983.03C25.2482 1983.01 25.2737 1983 25.3002 1983H29.1002C29.1267 1983 29.1522 1983.01 29.1709 1983.03C29.1897 1983.05 29.2002 1983.07 29.2002 1983.1V1989.1C29.9237 1989.25 30.6059 1989.56 31.2002 1990V1983.1C31.2071 1982.82 31.1574 1982.55 31.0543 1982.29C30.9512 1982.03 30.7968 1981.8 30.6004 1981.6C30.404 1981.4 30.1698 1981.25 29.9119 1981.15C29.654 1981.04 29.3778 1980.99 29.1002 1981H15.2002V1983ZM23.2002 2001V2005H22.2002C22.0666 2005.01 21.9326 2004.99 21.8073 2004.94C21.682 2004.89 21.5681 2004.82 21.4735 2004.73C21.3788 2004.63 21.3054 2004.52 21.2583 2004.39C21.2112 2004.27 21.1914 2004.13 21.2002 2004V1993H28.2002C28.3338 1992.99 28.4678 1993.01 28.5931 1993.06C28.7184 1993.11 28.8322 1993.18 28.9269 1993.27C29.0216 1993.37 29.095 1993.48 29.1421 1993.61C29.1892 1993.73 29.209 1993.87 29.2002 1994V2002H31.2002V1994C31.2002 1993.2 30.8841 1992.44 30.3215 1991.88C29.7589 1991.32 28.9958 1991 28.2002 1991H18.2002C17.4045 1991 16.6415 1991.32 16.0789 1991.88C15.5163 1992.44 15.2002 1993.2 15.2002 1994V1995H17.2002V1994C17.1914 1993.87 17.2112 1993.73 17.2583 1993.61C17.3054 1993.48 17.3788 1993.37 17.4735 1993.27C17.5681 1993.18 17.682 1993.11 17.8073 1993.06C17.9326 1993.01 18.0666 1992.99 18.2002 1993H19.2002V2004C19.2002 2004.8 19.5163 2005.56 20.0789 2006.12C20.6415 2006.68 21.4045 2007 22.2002 2007H32.2002C32.9958 2007 33.7589 2006.68 34.3215 2006.12C34.8841 2005.56 35.2002 2004.8 35.2002 2004V2001H23.2002ZM33.2002 2004C33.209 2004.13 33.1892 2004.27 33.1421 2004.39C33.095 2004.52 33.0216 2004.63 32.9269 2004.73C32.8322 2004.82 32.7184 2004.89 32.5931 2004.94C32.4678 2004.99 32.3338 2005.01 32.2002 2005H25.2002V2003H33.2002V2004Z" fill="#FAFAFA"/>
168
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.1665 2033.22C3.1665 2031.47 4.58427 2030.06 6.33317 2030.06H31.6665C33.4154 2030.06 34.8332 2031.47 34.8332 2033.22V2039.56C34.8332 2041.3 33.4154 2042.72 31.6665 2042.72H6.33317C4.58427 2042.72 3.1665 2041.3 3.1665 2039.56V2033.22ZM6.33317 2032.17C5.7502 2032.17 5.27762 2032.64 5.27762 2033.22V2039.56C5.27762 2040.14 5.7502 2040.61 6.33317 2040.61H31.6665C32.2495 2040.61 32.7221 2040.14 32.7221 2039.56V2033.22C32.7221 2032.64 32.2495 2032.17 31.6665 2032.17H6.33317Z" fill="#E9EAEC"/>
169
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00539 2017.38C8.45551 2016.12 9.6493 2015.28 10.9876 2015.28H27.0121C28.3504 2015.28 29.5442 2016.12 29.9943 2017.38L34.6179 2030.33C34.7604 2030.72 34.8332 2031.14 34.8332 2031.57V2035.33H32.7221V2031.57C32.7221 2031.39 32.6909 2031.21 32.6298 2031.04L28.0062 2018.09C27.8561 2017.67 27.4582 2017.39 27.0121 2017.39H10.9876C10.5415 2017.39 10.1436 2017.67 9.99352 2018.09L5.36986 2031.04C5.30882 2031.21 5.27762 2031.39 5.27762 2031.57V2035.33H3.1665V2031.57C3.1665 2031.14 3.23931 2030.72 3.38174 2030.33L8.00539 2017.38Z" fill="#E9EAEC"/>
170
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.0552 2036.39C20.0552 2035.81 20.5278 2035.33 21.1107 2035.33H29.5552C30.1381 2035.33 30.6107 2035.81 30.6107 2036.39C30.6107 2036.97 30.1381 2037.44 29.5552 2037.44H21.1107C20.5278 2037.44 20.0552 2036.97 20.0552 2036.39Z" fill="#E9EAEC"/>
171
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38867 2036.39C7.38867 2035.51 8.09755 2034.81 8.97201 2034.81H8.98784C9.86229 2034.81 10.5712 2035.51 10.5712 2036.39C10.5712 2037.26 9.86229 2037.97 8.98784 2037.97H8.97201C8.09755 2037.97 7.38867 2037.26 7.38867 2036.39Z" fill="#E9EAEC"/>
172
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.687 2036.39C12.687 2035.51 13.3959 2034.81 14.2703 2034.81H14.2862C15.1606 2034.81 15.8695 2035.51 15.8695 2036.39C15.8695 2037.26 15.1606 2037.97 14.2862 2037.97H14.2703C13.3959 2037.97 12.687 2037.26 12.687 2036.39Z" fill="#E9EAEC"/>
173
+ <path d="M7 2055.4H11V2056.6H7V2055.4ZM17 2055.4H21V2056.6H17V2055.4ZM27 2055.4H31V2056.6H27V2055.4Z" fill="#FAFAFA"/>
174
+ <path d="M33 2051H5C4.46957 2051 3.96086 2051.21 3.58579 2051.59C3.21071 2051.96 3 2052.47 3 2053V2069H5V2053H13V2061H15V2053H23V2065H25V2053H33V2069H25V2071H35V2053C35 2052.47 34.7893 2051.96 34.4142 2051.59C34.0391 2051.21 33.5304 2051 33 2051Z" fill="#FAFAFA"/>
175
+ <path d="M19 2063H7V2071H5V2083H17V2079H23V2067H19V2063ZM9 2065H17V2067H11V2071H9V2065ZM15 2081H7V2073H15V2081ZM21 2069V2077H17V2071H13V2069H21Z" fill="#FAFAFA"/>
176
+ <path d="M19.09 2107.59C18.5516 2107.59 18.0301 2107.78 17.6086 2108.11C17.1871 2108.45 16.89 2108.91 16.7646 2109.44C16.6391 2109.96 16.6926 2110.51 16.9166 2111C17.1405 2111.49 17.5219 2111.89 18 2112.14V2115H20V2112.23C20.5163 2112.02 20.9432 2111.63 21.2079 2111.14C21.4725 2110.65 21.5585 2110.08 21.4511 2109.54C21.3437 2108.99 21.0496 2108.5 20.619 2108.14C20.1884 2107.79 19.648 2107.59 19.09 2107.59Z" fill="#FAFAFA"/>
177
+ <path d="M27.13 2104H28V2119H10V2104H21.22L19.22 2102H13V2097.4C12.9971 2096.07 13.4366 2094.78 14.2494 2093.72C15.0622 2092.67 16.2022 2091.92 17.49 2091.58L19.3 2089.75L21.46 2091.9C22.5787 2092.4 23.5174 2093.23 24.15 2094.28L25.54 2092.76C24.5597 2091.37 23.161 2090.33 21.5475 2089.78C19.9339 2089.24 18.1894 2089.23 16.5678 2089.75C14.9462 2090.26 13.5319 2091.29 12.5306 2092.66C11.5292 2094.04 10.993 2095.7 11 2097.4V2102H8V2119C8 2119.53 8.21071 2120.04 8.58579 2120.41C8.96086 2120.79 9.46957 2121 10 2121H28C28.5304 2121 29.0391 2120.79 29.4142 2120.41C29.7893 2120.04 30 2119.53 30 2119V2102H29L27.13 2104Z" fill="#FAFAFA"/>
178
+ <path d="M24.2401 2104.19L16.0601 2096.02L19.3301 2092.75L24.0901 2097.51L33.5301 2087.22L36.9401 2090.35L24.2401 2104.19Z" fill="#59A011"/>
179
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2133.5C38 2138.75 33.7467 2143 28.5 2143C23.2533 2143 19 2138.75 19 2133.5C19 2128.25 23.2533 2124 28.5 2124C33.7467 2124 38 2128.25 38 2133.5ZM28.5 2134.07C29.1296 2134.07 29.64 2133.56 29.64 2132.93V2129.13C29.64 2128.5 29.1296 2127.99 28.5 2127.99C27.8704 2127.99 27.36 2128.5 27.36 2129.13V2132.93C27.36 2133.56 27.8704 2134.07 28.5 2134.07ZM28.5 2135.97C27.7655 2135.97 27.17 2136.57 27.17 2137.3C27.17 2138.03 27.7655 2138.63 28.5 2138.63H28.5095C29.244 2138.63 29.8395 2138.03 29.8395 2137.3C29.8395 2136.57 29.244 2135.97 28.5095 2135.97H28.5Z" fill="#EA3223"/>
180
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2127.46C18.2509 2127.51 17.9273 2127.62 17.6282 2127.8L6.51919 2134.21C5.67006 2134.7 5.14697 2135.61 5.14697 2136.59V2149.41C5.14697 2150.39 5.67006 2151.3 6.51919 2151.79L17.6282 2158.2C18.4774 2158.69 19.5235 2158.69 20.3727 2158.2L31.4817 2151.79C32.3309 2151.3 32.8539 2150.39 32.8539 2149.41V2144.27C32.1794 2144.54 31.4734 2144.75 30.7428 2144.89V2149.41C30.7428 2149.64 30.6221 2149.85 30.4262 2149.96L20.056 2155.95V2143.61L21.5084 2142.77C20.918 2142.32 20.3715 2141.82 19.8766 2141.28L19.0005 2141.78L8.31364 2135.61L17.3014 2130.42C17.5906 2129.37 18.025 2128.37 18.5816 2127.46ZM17.9449 2143.61V2155.95L7.57475 2149.96C7.3788 2149.85 7.25808 2149.64 7.25808 2149.41V2137.44L17.9449 2143.61Z" fill="#E9EAEC"/>
181
+ <path d="M32.61 2180.59L32.45 2180.74C32.0276 2181.09 31.5323 2181.34 31 2181.48V2189H23V2180C23 2179.47 22.7893 2178.96 22.4142 2178.59C22.0391 2178.21 21.5304 2178 21 2178H7C6.46957 2178 5.96086 2178.21 5.58579 2178.59C5.21071 2178.96 5 2179.47 5 2180V2194C5 2194.53 5.21071 2195.04 5.58579 2195.41C5.96086 2195.79 6.46957 2196 7 2196H21C21.5304 2196 22.0391 2195.79 22.4142 2195.41C22.7893 2195.04 23 2194.53 23 2194V2191H31C31.5304 2191 32.0391 2190.79 32.4142 2190.41C32.7893 2190.04 33 2189.53 33 2189V2180.19L32.61 2180.59ZM21 2189H17V2183H15V2189C15 2189.53 15.2107 2190.04 15.5858 2190.41C15.9609 2190.79 16.4696 2191 17 2191H21V2194H7V2180H21V2189ZM22.3 2173H18V2175H22.44C22.2096 2174.36 22.1612 2173.67 22.3 2173ZM35 2173.05C34.8126 2172.86 34.5592 2172.76 34.295 2172.76C34.0308 2172.76 33.7774 2172.86 33.59 2173.05L30.93 2175.71V2168.71C30.93 2168.44 31.0354 2168.19 31.2229 2168C31.4104 2167.82 31.6648 2167.71 31.93 2167.71H34.93V2165.71H31.93C31.1344 2165.71 30.3713 2166.03 29.8087 2166.59C29.2461 2167.15 28.93 2167.91 28.93 2168.71V2175.42L26.52 2173C26.3326 2172.81 26.0792 2172.71 25.815 2172.71C25.5508 2172.71 25.2974 2172.81 25.11 2173C24.9237 2173.19 24.8192 2173.44 24.8192 2173.7C24.8192 2173.97 24.9237 2174.22 25.11 2174.41L29.35 2178.65C29.5363 2178.83 29.7877 2178.94 30.05 2178.94C30.3088 2178.96 30.5634 2178.87 30.76 2178.7L35 2174.47C35.0937 2174.38 35.1681 2174.27 35.2189 2174.14C35.2697 2174.02 35.2958 2173.89 35.2958 2173.76C35.2958 2173.63 35.2697 2173.5 35.2189 2173.38C35.1681 2173.25 35.0937 2173.14 35 2173.05ZM26.38 2168C26.4688 2167.38 26.6544 2166.79 26.93 2166.23C26.6432 2166.08 26.3241 2166 26 2166H12C11.4696 2166 10.9609 2166.21 10.5858 2166.59C10.2107 2166.96 10 2167.47 10 2168V2175H12V2168H26.38Z" fill="#FAFAFA"/>
182
+ <path d="M27.1602 2207C27.1602 2206.47 26.9494 2205.96 26.5744 2205.59C26.1993 2205.21 25.6906 2205 25.1602 2205H11.0002C10.5094 2205.01 10.0414 2205.21 9.69722 2205.56C9.35299 2205.91 9.16009 2206.38 9.16016 2206.87V2213H11.1602V2207H25.1602V2209H27.1602V2207Z" fill="#FAFAFA"/>
183
+ <path d="M27.1602 2213.09V2211H17.1602V2213H25.0702C25.094 2213 25.1169 2213.01 25.1338 2213.03C25.1507 2213.04 25.1602 2213.07 25.1602 2213.09V2219H27.1602V2213.09Z" fill="#FAFAFA"/>
184
+ <path d="M31.1602 2223V2226.91C31.1602 2226.93 31.1507 2226.96 31.1338 2226.97C31.1169 2226.99 31.094 2227 31.0702 2227H23.2502C23.2263 2227 23.2034 2226.99 23.1865 2226.97C23.1697 2226.96 23.1602 2226.93 23.1602 2226.91V2217.09C23.1615 2216.82 23.109 2216.55 23.0057 2216.29C22.9024 2216.04 22.7503 2215.81 22.558 2215.62C22.3658 2215.42 22.1373 2215.27 21.8854 2215.16C21.6335 2215.06 21.3633 2215 21.0902 2215H7.25018C6.97703 2215 6.7063 2215.05 6.45343 2215.15C6.20057 2215.26 5.97054 2215.41 5.77646 2215.6C5.58239 2215.79 5.42807 2216.02 5.32233 2216.27C5.21659 2216.53 5.16149 2216.8 5.16018 2217.07V2230.91C5.15886 2231.18 5.21136 2231.45 5.31468 2231.71C5.41799 2231.96 5.5701 2232.19 5.76232 2232.38C5.95454 2232.58 6.1831 2232.73 6.43496 2232.84C6.68681 2232.94 6.95703 2233 7.23018 2233H21.0702C21.3433 2233 21.6141 2232.95 21.8669 2232.85C22.1198 2232.74 22.3498 2232.59 22.5439 2232.4C22.738 2232.21 22.8923 2231.98 22.998 2231.73C23.1038 2231.47 23.1589 2231.2 23.1602 2230.93V2229.09C23.1602 2229.07 23.1697 2229.04 23.1865 2229.03C23.2034 2229.01 23.2263 2229 23.2502 2229H31.0702C31.3433 2229 31.6141 2228.95 31.8669 2228.85C32.1198 2228.74 32.3498 2228.59 32.5439 2228.4C32.738 2228.21 32.8923 2227.98 32.998 2227.73C33.1038 2227.47 33.1589 2227.2 33.1602 2226.93V2223H31.1602ZM21.1602 2226.91C21.1602 2226.93 21.1507 2226.96 21.1338 2226.97C21.1169 2226.99 21.094 2227 21.0702 2227H17.2502C17.2263 2227 17.2034 2226.99 17.1865 2226.97C17.1697 2226.96 17.1602 2226.93 17.1602 2226.91V2221H15.1602V2226.91C15.1589 2227.18 15.2114 2227.45 15.3147 2227.71C15.418 2227.96 15.5701 2228.19 15.7623 2228.38C15.9545 2228.58 16.1831 2228.73 16.435 2228.84C16.6868 2228.94 16.957 2229 17.2302 2229H21.0702C21.094 2229 21.1169 2229.01 21.1338 2229.03C21.1507 2229.04 21.1602 2229.07 21.1602 2229.09V2230.91C21.1602 2230.93 21.1507 2230.96 21.1338 2230.97C21.1169 2230.99 21.094 2231 21.0702 2231H7.25018C7.22631 2231 7.20342 2230.99 7.18654 2230.97C7.16966 2230.96 7.16018 2230.93 7.16018 2230.91V2217.11C7.16018 2217.08 7.17177 2217.05 7.1924 2217.03C7.21303 2217.01 7.24101 2217 7.27018 2217H21.0702C21.094 2217 21.1169 2217.01 21.1338 2217.03C21.1507 2217.04 21.1602 2217.07 21.1602 2217.09V2226.91Z" fill="#FAFAFA"/>
185
+ <path d="M31.9603 2207.4C33.7276 2207.4 35.1603 2205.97 35.1603 2204.2C35.1603 2202.43 33.7276 2201 31.9603 2201C30.1929 2201 28.7603 2202.43 28.7603 2204.2C28.7603 2205.97 30.1929 2207.4 31.9603 2207.4Z" fill="#E46C00"/>
186
+ <path d="M29 2209H35V2221H29V2209Z" fill="#E46C00"/>
187
+ <path d="M25.9999 2271C25.8683 2271 25.7379 2270.98 25.616 2270.93C25.4942 2270.88 25.3834 2270.8 25.2899 2270.71L18.9999 2264.41L12.7099 2270.71C12.617 2270.8 12.5064 2270.88 12.3845 2270.93C12.2627 2270.98 12.132 2271.01 11.9999 2271.01C11.8679 2271.01 11.7372 2270.98 11.6154 2270.93C11.4935 2270.88 11.3829 2270.8 11.2899 2270.71L5.28994 2264.71C5.19621 2264.62 5.12182 2264.51 5.07105 2264.38C5.02028 2264.26 4.99414 2264.13 4.99414 2264C4.99414 2263.87 5.02028 2263.74 5.07105 2263.62C5.12182 2263.49 5.19621 2263.38 5.28994 2263.29L11.5899 2257L5.28994 2250.71C5.19621 2250.62 5.12182 2250.51 5.07105 2250.38C5.02028 2250.26 4.99414 2250.13 4.99414 2250C4.99414 2249.87 5.02028 2249.74 5.07105 2249.62C5.12182 2249.49 5.19621 2249.38 5.28994 2249.29L11.2899 2243.29C11.3829 2243.2 11.4935 2243.12 11.6154 2243.07C11.7372 2243.02 11.8679 2242.99 11.9999 2242.99C12.132 2242.99 12.2627 2243.02 12.3845 2243.07C12.5064 2243.12 12.617 2243.2 12.7099 2243.29L18.9999 2249.59L25.2899 2243.29C25.3829 2243.2 25.4935 2243.12 25.6154 2243.07C25.7372 2243.02 25.8679 2242.99 25.9999 2242.99C26.132 2242.99 26.2627 2243.02 26.3845 2243.07C26.5064 2243.12 26.617 2243.2 26.7099 2243.29L32.7099 2249.29C32.8037 2249.38 32.8781 2249.49 32.9288 2249.62C32.9796 2249.74 33.0057 2249.87 33.0057 2250C33.0057 2250.13 32.9796 2250.26 32.9288 2250.38C32.8781 2250.51 32.8037 2250.62 32.7099 2250.71L26.4099 2257L32.7099 2263.29C32.8037 2263.38 32.8781 2263.49 32.9288 2263.62C32.9796 2263.74 33.0057 2263.87 33.0057 2264C33.0057 2264.13 32.9796 2264.26 32.9288 2264.38C32.8781 2264.51 32.8037 2264.62 32.7099 2264.71L26.7099 2270.71C26.6165 2270.8 26.5057 2270.88 26.3838 2270.93C26.262 2270.98 26.1315 2271 25.9999 2271ZM18.9999 2262C19.1315 2262 19.262 2262.02 19.3838 2262.07C19.5057 2262.12 19.6165 2262.2 19.7099 2262.29L25.9999 2268.59L30.5899 2264L24.2899 2257.71C24.1962 2257.62 24.1218 2257.51 24.071 2257.38C24.0203 2257.26 23.9941 2257.13 23.9941 2257C23.9941 2256.87 24.0203 2256.74 24.071 2256.62C24.1218 2256.49 24.1962 2256.38 24.2899 2256.29L30.5899 2250L25.9999 2245.41L19.7099 2251.71C19.617 2251.8 19.5064 2251.88 19.3845 2251.93C19.2627 2251.98 19.132 2252.01 18.9999 2252.01C18.8679 2252.01 18.7372 2251.98 18.6154 2251.93C18.4935 2251.88 18.3829 2251.8 18.2899 2251.71L11.9999 2245.41L7.40994 2250L13.7099 2256.29C13.8037 2256.38 13.8781 2256.49 13.9288 2256.62C13.9796 2256.74 14.0057 2256.87 14.0057 2257C14.0057 2257.13 13.9796 2257.26 13.9288 2257.38C13.8781 2257.51 13.8037 2257.62 13.7099 2257.71L7.40994 2264L11.9999 2268.59L18.2899 2262.29C18.3834 2262.2 18.4942 2262.12 18.616 2262.07C18.7379 2262.02 18.8683 2262 18.9999 2262Z" fill="#F84E30"/>
188
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2279.46C18.2509 2279.51 17.9273 2279.62 17.6282 2279.8L6.51919 2286.21C5.67006 2286.7 5.14697 2287.61 5.14697 2288.59V2301.41C5.14697 2302.39 5.67006 2303.3 6.51919 2303.79L17.6282 2310.2C18.4774 2310.69 19.5235 2310.69 20.3727 2310.2L31.4817 2303.79C32.3309 2303.3 32.8539 2302.39 32.8539 2301.41V2296.27C32.1794 2296.54 31.4734 2296.75 30.7428 2296.89V2301.41C30.7428 2301.64 30.6221 2301.85 30.4262 2301.96L20.056 2307.95V2295.61L21.5084 2294.77C20.918 2294.32 20.3715 2293.82 19.8766 2293.28L19.0005 2293.78L8.31364 2287.61L17.3014 2282.42C17.5906 2281.37 18.025 2280.37 18.5816 2279.46ZM17.9449 2295.61V2307.95L7.57475 2301.96C7.3788 2301.85 7.25808 2301.64 7.25808 2301.41V2289.44L17.9449 2295.61Z" fill="#E9EAEC"/>
189
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2285.5C38 2290.75 33.7467 2295 28.5 2295C23.2533 2295 19 2290.75 19 2285.5C19 2280.25 23.2533 2276 28.5 2276C33.7467 2276 38 2280.25 38 2285.5ZM27.4433 2281.54C27.1518 2281.35 26.777 2281.33 26.4681 2281.5C26.1592 2281.66 25.9664 2281.98 25.9664 2282.33V2288.67C25.9664 2289.02 26.1592 2289.34 26.4681 2289.5C26.777 2289.67 27.1518 2289.65 27.4433 2289.46L32.1933 2286.29C32.4576 2286.11 32.6164 2285.82 32.6164 2285.5C32.6164 2285.18 32.4576 2284.89 32.1933 2284.71L27.4433 2281.54Z" fill="#239332"/>
190
+ <path d="M11 2321H25V2323H27V2321C27 2320.47 26.7893 2319.96 26.4142 2319.59C26.0391 2319.21 25.5304 2319 25 2319H10.87C10.374 2319 9.8984 2319.2 9.54771 2319.55C9.19702 2319.9 9 2320.37 9 2320.87V2327H11V2321Z" fill="#0091DA"/>
191
+ <path d="M30.91 2325H17V2327H24.91C24.9339 2327 24.9568 2327.01 24.9737 2327.03C24.9905 2327.04 25 2327.07 25 2327.09V2333H27V2327.09C27 2327.07 27.0095 2327.04 27.0264 2327.03C27.0433 2327.01 27.0662 2327 27.09 2327H30.91C30.9339 2327 30.9568 2327.01 30.9737 2327.03C30.9905 2327.04 31 2327.07 31 2327.09V2340.91C31 2340.93 30.9905 2340.96 30.9737 2340.97C30.9568 2340.99 30.9339 2341 30.91 2341H23.09C23.0662 2341 23.0433 2340.99 23.0264 2340.97C23.0095 2340.96 23 2340.93 23 2340.91V2331.09C23.0013 2330.82 22.9482 2330.54 22.8436 2330.29C22.7391 2330.03 22.5852 2329.8 22.3908 2329.61C22.1965 2329.41 21.9656 2329.26 21.7114 2329.16C21.4572 2329.05 21.1849 2329 20.91 2329H7.09002C6.81519 2329 6.54282 2329.05 6.28865 2329.16C6.03448 2329.26 5.80356 2329.41 5.60922 2329.61C5.41488 2329.8 5.26098 2330.03 5.15642 2330.29C5.05185 2330.54 4.9987 2330.82 5.00002 2331.09V2344.91C4.9987 2345.18 5.05185 2345.46 5.15642 2345.71C5.26098 2345.97 5.41488 2346.2 5.60922 2346.39C5.80356 2346.59 6.03448 2346.74 6.28865 2346.84C6.54282 2346.95 6.81519 2347 7.09002 2347H20.91C21.1849 2347 21.4572 2346.95 21.7114 2346.84C21.9656 2346.74 22.1965 2346.59 22.3908 2346.39C22.5852 2346.2 22.7391 2345.97 22.8436 2345.71C22.9482 2345.46 23.0013 2345.18 23 2344.91V2343.09C23 2343.07 23.0095 2343.04 23.0264 2343.03C23.0433 2343.01 23.0662 2343 23.09 2343H30.91C31.1849 2343 31.4572 2342.95 31.7114 2342.84C31.9656 2342.74 32.1965 2342.59 32.3908 2342.39C32.5852 2342.2 32.7391 2341.97 32.8436 2341.71C32.9482 2341.46 33.0013 2341.18 33 2340.91V2327.09C33.0013 2326.82 32.9482 2326.54 32.8436 2326.29C32.7391 2326.03 32.5852 2325.8 32.3908 2325.61C32.1965 2325.41 31.9656 2325.26 31.7114 2325.16C31.4572 2325.05 31.1849 2325 30.91 2325ZM7.00002 2344.91V2331.11C7.00002 2331.1 7.00287 2331.08 7.0084 2331.07C7.01393 2331.05 7.02203 2331.04 7.03224 2331.03C7.04246 2331.02 7.05458 2331.01 7.06793 2331.01C7.08127 2331 7.09558 2331 7.11002 2331H20.91C20.9339 2331 20.9568 2331.01 20.9737 2331.03C20.9905 2331.04 21 2331.07 21 2331.09V2340.91C21 2340.93 20.9905 2340.96 20.9737 2340.97C20.9568 2340.99 20.9339 2341 20.91 2341H17.09C17.0662 2341 17.0433 2340.99 17.0264 2340.97C17.0095 2340.96 17 2340.93 17 2340.91V2335H15V2340.91C14.9987 2341.18 15.0519 2341.46 15.1564 2341.71C15.261 2341.97 15.4149 2342.2 15.6092 2342.39C15.8036 2342.59 16.0345 2342.74 16.2887 2342.84C16.5428 2342.95 16.8152 2343 17.09 2343H20.91C20.9339 2343 20.9568 2343.01 20.9737 2343.03C20.9905 2343.04 21 2343.07 21 2343.09V2344.91C21 2344.93 20.9905 2344.96 20.9737 2344.97C20.9568 2344.99 20.9339 2345 20.91 2345H7.09002C7.06615 2345 7.04326 2344.99 7.02638 2344.97C7.00951 2344.96 7.00002 2344.93 7.00002 2344.91Z" fill="#0091DA"/>
192
+ <path d="M18.23 2357H10.87C10.3741 2357 9.89843 2357.2 9.54773 2357.55C9.19704 2357.9 9.00002 2358.37 9.00002 2358.87V2365H11V2359H17.43C17.6279 2358.31 17.8959 2357.64 18.23 2357ZM31 2372.57V2378.91C31 2378.93 30.9905 2378.96 30.9737 2378.97C30.9568 2378.99 30.9339 2379 30.91 2379H23.09C23.0662 2379 23.0433 2378.99 23.0264 2378.97C23.0095 2378.96 23 2378.93 23 2378.91V2371.79C22.2882 2371.43 21.6177 2370.99 21 2370.48V2378.91C21 2378.93 20.9905 2378.96 20.9737 2378.97C20.9568 2378.99 20.9339 2379 20.91 2379H17.09C17.0662 2379 17.0433 2378.99 17.0264 2378.97C17.0095 2378.96 17 2378.93 17 2378.91V2373H15V2378.91C14.9987 2379.18 15.0512 2379.45 15.1545 2379.71C15.2578 2379.96 15.4099 2380.19 15.6022 2380.38C15.7944 2380.58 16.0229 2380.73 16.2748 2380.84C16.5267 2380.94 16.7969 2381 17.07 2381H20.91C20.9339 2381 20.9568 2381.01 20.9737 2381.03C20.9905 2381.04 21 2381.07 21 2381.09V2382.91C21 2382.93 20.9905 2382.96 20.9737 2382.97C20.9568 2382.99 20.9339 2383 20.91 2383H7.09002C7.06615 2383 7.04326 2382.99 7.02638 2382.97C7.00951 2382.96 7.00002 2382.93 7.00002 2382.91V2369.11C7.00002 2369.1 7.00287 2369.08 7.0084 2369.07C7.01393 2369.05 7.02203 2369.04 7.03224 2369.03C7.04246 2369.02 7.05458 2369.01 7.06793 2369.01C7.08127 2369 7.09558 2369 7.11002 2369H19.52C19.0128 2368.38 18.5735 2367.71 18.21 2367H7.09002C6.81687 2367 6.54614 2367.05 6.29328 2367.15C6.04042 2367.26 5.81038 2367.41 5.61631 2367.6C5.42223 2367.79 5.26792 2368.02 5.16218 2368.27C5.05643 2368.53 5.00133 2368.8 5.00002 2369.07V2382.91C4.99871 2383.18 5.05121 2383.45 5.15452 2383.71C5.25784 2383.96 5.40995 2384.19 5.60216 2384.38C5.79438 2384.58 6.02294 2384.73 6.2748 2384.84C6.52666 2384.94 6.79687 2385 7.07002 2385H20.91C21.1832 2385 21.4539 2384.95 21.7068 2384.85C21.9596 2384.74 22.1897 2384.59 22.3837 2384.4C22.5778 2384.21 22.7321 2383.98 22.8379 2383.73C22.9436 2383.47 22.9987 2383.2 23 2382.93V2381.09C23 2381.07 23.0095 2381.04 23.0264 2381.03C23.0433 2381.01 23.0662 2381 23.09 2381H30.91C31.1832 2381 31.4539 2380.95 31.7068 2380.85C31.9596 2380.74 32.1897 2380.59 32.3837 2380.4C32.5778 2380.21 32.7321 2379.98 32.8379 2379.73C32.9436 2379.47 32.9987 2379.2 33 2378.93V2371.79C32.3617 2372.12 31.6916 2372.38 31 2372.57Z" fill="#0091DA"/>
193
+ <path d="M28 2353C26.22 2353 24.4799 2353.53 22.9999 2354.52C21.5198 2355.51 20.3663 2356.91 19.6851 2358.56C19.0039 2360.2 18.8257 2362.01 19.1729 2363.76C19.5202 2365.5 20.3774 2367.11 21.636 2368.36C22.8947 2369.62 24.4984 2370.48 26.2442 2370.83C27.99 2371.17 29.7996 2371 31.4442 2370.31C33.0887 2369.63 34.4943 2368.48 35.4832 2367C36.4722 2365.52 37 2363.78 37 2362C37 2359.61 36.0518 2357.32 34.364 2355.64C32.6761 2353.95 30.387 2353 28 2353ZM29 2367H27V2365H29V2367ZM29 2363H27V2357H29V2363Z" fill="#F84E30"/>
194
+ <path d="M27.1602 2397C27.1602 2396.47 26.9494 2395.96 26.5744 2395.59C26.1993 2395.21 25.6906 2395 25.1602 2395H11.0002C10.5094 2395.01 10.0414 2395.21 9.69722 2395.56C9.35299 2395.91 9.16009 2396.38 9.16016 2396.87V2403H11.1602V2397H25.1602V2399H27.1602V2397Z" fill="#0091DA"/>
195
+ <path d="M27.1602 2403.09V2401H17.1602V2403H25.0702C25.094 2403 25.1169 2403.01 25.1338 2403.03C25.1507 2403.04 25.1602 2403.07 25.1602 2403.09V2409H27.1602V2403.09Z" fill="#0091DA"/>
196
+ <path d="M31.1602 2413V2416.91C31.1602 2416.93 31.1507 2416.96 31.1338 2416.97C31.1169 2416.99 31.094 2417 31.0702 2417H23.2502C23.2263 2417 23.2034 2416.99 23.1865 2416.97C23.1697 2416.96 23.1602 2416.93 23.1602 2416.91V2407.09C23.1615 2406.82 23.109 2406.55 23.0057 2406.29C22.9024 2406.04 22.7503 2405.81 22.558 2405.62C22.3658 2405.42 22.1373 2405.27 21.8854 2405.16C21.6335 2405.06 21.3633 2405 21.0902 2405H7.25018C6.97703 2405 6.7063 2405.05 6.45343 2405.15C6.20057 2405.26 5.97054 2405.41 5.77646 2405.6C5.58239 2405.79 5.42807 2406.02 5.32233 2406.27C5.21659 2406.53 5.16149 2406.8 5.16018 2407.07V2420.91C5.15886 2421.18 5.21136 2421.45 5.31468 2421.71C5.41799 2421.96 5.5701 2422.19 5.76232 2422.38C5.95454 2422.58 6.1831 2422.73 6.43496 2422.84C6.68681 2422.94 6.95703 2423 7.23018 2423H21.0702C21.3433 2423 21.6141 2422.95 21.8669 2422.85C22.1198 2422.74 22.3498 2422.59 22.5439 2422.4C22.738 2422.21 22.8923 2421.98 22.998 2421.73C23.1038 2421.47 23.1589 2421.2 23.1602 2420.93V2419.09C23.1602 2419.07 23.1697 2419.04 23.1865 2419.03C23.2034 2419.01 23.2263 2419 23.2502 2419H31.0702C31.3433 2419 31.6141 2418.95 31.8669 2418.85C32.1198 2418.74 32.3498 2418.59 32.5439 2418.4C32.738 2418.21 32.8923 2417.98 32.998 2417.73C33.1038 2417.47 33.1589 2417.2 33.1602 2416.93V2413H31.1602ZM21.1602 2416.91C21.1602 2416.93 21.1507 2416.96 21.1338 2416.97C21.1169 2416.99 21.094 2417 21.0702 2417H17.2502C17.2263 2417 17.2034 2416.99 17.1865 2416.97C17.1697 2416.96 17.1602 2416.93 17.1602 2416.91V2411H15.1602V2416.91C15.1589 2417.18 15.2114 2417.45 15.3147 2417.71C15.418 2417.96 15.5701 2418.19 15.7623 2418.38C15.9545 2418.58 16.1831 2418.73 16.435 2418.84C16.6868 2418.94 16.957 2419 17.2302 2419H21.0702C21.094 2419 21.1169 2419.01 21.1338 2419.03C21.1507 2419.04 21.1602 2419.07 21.1602 2419.09V2420.91C21.1602 2420.93 21.1507 2420.96 21.1338 2420.97C21.1169 2420.99 21.094 2421 21.0702 2421H7.25018C7.22631 2421 7.20342 2420.99 7.18654 2420.97C7.16966 2420.96 7.16018 2420.93 7.16018 2420.91V2407.11C7.16018 2407.08 7.17177 2407.05 7.1924 2407.03C7.21303 2407.01 7.24101 2407 7.27018 2407H21.0702C21.094 2407 21.1169 2407.01 21.1338 2407.03C21.1507 2407.04 21.1602 2407.07 21.1602 2407.09V2416.91Z" fill="#0091DA"/>
197
+ <path d="M31.9603 2397.4C33.7276 2397.4 35.1603 2395.97 35.1603 2394.2C35.1603 2392.43 33.7276 2391 31.9603 2391C30.1929 2391 28.7603 2392.43 28.7603 2394.2C28.7603 2395.97 30.1929 2397.4 31.9603 2397.4Z" fill="#E46C00"/>
198
+ <path d="M29 2399H35V2411H29V2399Z" fill="#E46C00"/>
199
+ <path d="M25 2446.83V2447H27V2445.72L25 2446.83ZM17 2439H20V2441H17V2439ZM20 2433H10.87C10.374 2433 9.8984 2433.2 9.54771 2433.55C9.19702 2433.9 9 2434.37 9 2434.87V2441H11V2435H20V2433Z" fill="#0091DA"/>
200
+ <path d="M31 2443.5V2454.91C31 2454.93 30.9905 2454.96 30.9737 2454.97C30.9568 2454.99 30.9339 2455 30.91 2455H23.09C23.0662 2455 23.0433 2454.99 23.0264 2454.97C23.0095 2454.96 23 2454.93 23 2454.91V2447.39C22.4917 2447.38 21.9933 2447.25 21.55 2447C21.3559 2446.87 21.172 2446.73 21 2446.57V2454.93C21 2454.95 20.9905 2454.98 20.9737 2454.99C20.9568 2455.01 20.9339 2455.02 20.91 2455.02H17.09C17.0662 2455.02 17.0433 2455.01 17.0264 2454.99C17.0095 2454.98 17 2454.95 17 2454.93V2449H15V2454.91C14.9987 2455.18 15.0512 2455.45 15.1545 2455.71C15.2578 2455.96 15.4099 2456.19 15.6022 2456.38C15.7944 2456.58 16.0229 2456.73 16.2748 2456.84C16.5267 2456.94 16.7969 2457 17.07 2457H20.91C20.9339 2457 20.9568 2457.01 20.9737 2457.03C20.9905 2457.04 21 2457.07 21 2457.09V2458.91C21 2458.93 20.9905 2458.96 20.9737 2458.97C20.9568 2458.99 20.9339 2459 20.91 2459H7.09002C7.06615 2459 7.04326 2458.99 7.02638 2458.97C7.00951 2458.96 7.00002 2458.93 7.00002 2458.91V2445.11C7.00002 2445.1 7.00287 2445.08 7.0084 2445.07C7.01393 2445.05 7.02203 2445.04 7.03224 2445.03C7.04246 2445.02 7.05458 2445.01 7.06793 2445.01C7.08127 2445 7.09558 2445 7.11002 2445H20.11C20.0467 2444.76 20.0131 2444.51 20.01 2444.26V2443H7.09002C6.55023 2443 6.03042 2443.2 5.64042 2443.58C5.25042 2443.95 5.02078 2444.46 5.00002 2445V2458.91C4.99871 2459.18 5.05121 2459.45 5.15452 2459.71C5.25784 2459.96 5.40995 2460.19 5.60216 2460.38C5.79438 2460.58 6.02294 2460.73 6.2748 2460.84C6.52666 2460.94 6.79687 2461 7.07002 2461H20.91C21.1832 2461 21.4539 2460.95 21.7068 2460.85C21.9596 2460.74 22.1897 2460.59 22.3837 2460.4C22.5778 2460.21 22.7321 2459.98 22.8379 2459.73C22.9436 2459.47 22.9987 2459.2 23 2458.93V2457.09C23 2457.07 23.0095 2457.04 23.0264 2457.03C23.0433 2457.01 23.0662 2457 23.09 2457H30.91C31.1832 2457 31.4539 2456.95 31.7068 2456.85C31.9596 2456.74 32.1897 2456.59 32.3837 2456.4C32.5778 2456.21 32.7321 2455.98 32.8379 2455.73C32.9436 2455.47 32.9987 2455.2 33 2454.93V2442.39L31 2443.5Z" fill="#0091DA"/>
201
+ <path d="M36.41 2436.2L23.71 2429.2C23.4446 2429.05 23.1316 2429.02 22.8393 2429.1C22.5471 2429.18 22.2993 2429.38 22.15 2429.64C22.0517 2429.81 22 2430 22 2430.2V2444.26C22 2444.56 22.1212 2444.86 22.3368 2445.07C22.5525 2445.29 22.845 2445.41 23.15 2445.41C23.3454 2445.4 23.5366 2445.35 23.71 2445.26L36.41 2438.2C36.5414 2438.13 36.6568 2438.03 36.7496 2437.91C36.8423 2437.79 36.9106 2437.65 36.9506 2437.5C36.9905 2437.36 37.0013 2437.21 36.9823 2437.06C36.9634 2436.91 36.915 2436.76 36.84 2436.63C36.7395 2436.45 36.5906 2436.3 36.41 2436.2Z" fill="#60A644"/>
202
+ <path d="M17 2477H21V2479H17V2477ZM25 2483H27V2485H25V2483ZM21 2471H10.87C10.374 2471 9.8984 2471.2 9.54771 2471.55C9.19702 2471.9 9 2472.37 9 2472.87V2479H11V2473H21V2471Z" fill="#0091DA"/>
203
+ <path d="M31 2483V2492.91C31 2492.93 30.9905 2492.96 30.9737 2492.97C30.9568 2492.99 30.9339 2493 30.91 2493H23.09C23.0662 2493 23.0433 2492.99 23.0264 2492.97C23.0095 2492.96 23 2492.93 23 2492.91V2483.09V2483H21V2481H7.09002C6.81687 2481 6.54614 2481.05 6.29328 2481.15C6.04042 2481.26 5.81038 2481.41 5.61631 2481.6C5.42223 2481.79 5.26792 2482.02 5.16218 2482.27C5.05643 2482.53 5.00133 2482.8 5.00002 2483.07V2496.91C4.99871 2497.18 5.05121 2497.45 5.15452 2497.71C5.25784 2497.96 5.40995 2498.19 5.60216 2498.38C5.79438 2498.58 6.02294 2498.73 6.2748 2498.84C6.52666 2498.94 6.79687 2499 7.07002 2499H20.91C21.1832 2499 21.4539 2498.95 21.7068 2498.85C21.9596 2498.74 22.1897 2498.59 22.3837 2498.4C22.5778 2498.21 22.7321 2497.98 22.8379 2497.73C22.9436 2497.47 22.9987 2497.2 23 2496.93V2495.09C23 2495.07 23.0095 2495.04 23.0264 2495.03C23.0433 2495.01 23.0662 2495 23.09 2495H30.91C31.1832 2495 31.4539 2494.95 31.7068 2494.85C31.9596 2494.74 32.1897 2494.59 32.3837 2494.4C32.5778 2494.21 32.7321 2493.98 32.8379 2493.73C32.9436 2493.47 32.9987 2493.2 33 2492.93V2483H31ZM21 2492.91C21 2492.93 20.9905 2492.96 20.9737 2492.97C20.9568 2492.99 20.9339 2493 20.91 2493H17.09C17.0662 2493 17.0433 2492.99 17.0264 2492.97C17.0095 2492.96 17 2492.93 17 2492.91V2487H15V2492.91C14.9987 2493.18 15.0512 2493.45 15.1545 2493.71C15.2578 2493.96 15.4099 2494.19 15.6022 2494.38C15.7944 2494.58 16.0229 2494.73 16.2748 2494.84C16.5267 2494.94 16.7969 2495 17.07 2495H20.91C20.9339 2495 20.9568 2495.01 20.9737 2495.03C20.9905 2495.04 21 2495.07 21 2495.09V2496.91C21 2496.93 20.9905 2496.96 20.9737 2496.97C20.9568 2496.99 20.9339 2497 20.91 2497H7.09002C7.06615 2497 7.04326 2496.99 7.02638 2496.97C7.00951 2496.96 7.00002 2496.93 7.00002 2496.91V2483.11C7.00002 2483.1 7.00287 2483.08 7.0084 2483.07C7.01393 2483.05 7.02203 2483.04 7.03224 2483.03C7.04246 2483.02 7.05458 2483.01 7.06793 2483.01C7.08127 2483 7.09558 2483 7.11002 2483H20.91C20.9339 2483 20.9568 2483.01 20.9737 2483.03C20.9905 2483.04 21 2483.07 21 2483.09V2492.91Z" fill="#0091DA"/>
204
+ <path d="M23 2467H37V2481H23V2467Z" fill="#B68300"/>
205
+ <path d="M29 2469V2479H25V2469H29ZM35 2469V2479H31V2469H35Z" fill="#FFE02C"/>
206
+ <path d="M25 2519H27V2523H25V2519Z" fill="#0091DA"/>
207
+ <path d="M19.85 2509H10.85C10.3575 2509.01 9.88702 2509.2 9.54065 2509.55C9.19427 2509.9 9 2510.38 9.00002 2510.87V2517H11V2511H18.7L19.85 2509ZM32.5 2527.14H31V2530.91C31 2530.93 30.9905 2530.96 30.9737 2530.97C30.9568 2530.99 30.9339 2531 30.91 2531H23.09C23.0662 2531 23.0433 2530.99 23.0264 2530.97C23.0095 2530.96 23 2530.93 23 2530.91V2527.14H21V2530.91C21 2530.93 20.9905 2530.96 20.9737 2530.97C20.9568 2530.99 20.9339 2531 20.91 2531H17.09C17.0662 2531 17.0433 2530.99 17.0264 2530.97C17.0095 2530.96 17 2530.93 17 2530.91V2526.55C16.2284 2526.19 15.5459 2525.66 15 2525V2530.91C14.9987 2531.18 15.0512 2531.45 15.1545 2531.71C15.2578 2531.96 15.4099 2532.19 15.6022 2532.38C15.7944 2532.58 16.0229 2532.73 16.2748 2532.84C16.5267 2532.94 16.7969 2533 17.07 2533H20.91C20.9339 2533 20.9568 2533.01 20.9737 2533.03C20.9905 2533.04 21 2533.07 21 2533.09V2534.91C21 2534.93 20.9905 2534.96 20.9737 2534.97C20.9568 2534.99 20.9339 2535 20.91 2535H7.09002C7.06615 2535 7.04326 2534.99 7.02638 2534.97C7.00951 2534.96 7.00002 2534.93 7.00002 2534.91V2521.11C7.00002 2521.1 7.00287 2521.08 7.0084 2521.07C7.01393 2521.05 7.02203 2521.04 7.03224 2521.03C7.04246 2521.02 7.05458 2521.01 7.06793 2521.01C7.08127 2521 7.09558 2521 7.11002 2521H13.69C13.7203 2520.31 13.8727 2519.63 14.14 2519H7.14002C6.86271 2518.99 6.58659 2519.04 6.32793 2519.14C6.06927 2519.24 5.83329 2519.39 5.63388 2519.58C5.43447 2519.78 5.27566 2520.01 5.16681 2520.26C5.05795 2520.52 5.00124 2520.79 5.00002 2521.07V2534.91C4.99871 2535.18 5.05121 2535.45 5.15452 2535.71C5.25784 2535.96 5.40995 2536.19 5.60216 2536.38C5.79438 2536.58 6.02294 2536.73 6.2748 2536.84C6.52666 2536.94 6.79687 2537 7.07002 2537H20.91C21.1832 2537 21.4539 2536.95 21.7068 2536.85C21.9596 2536.74 22.1897 2536.59 22.3837 2536.4C22.5778 2536.21 22.7321 2535.98 22.8379 2535.73C22.9436 2535.47 22.9987 2535.2 23 2534.93V2533.09C23 2533.07 23.0095 2533.04 23.0264 2533.03C23.0433 2533.01 23.0662 2533 23.09 2533H30.91C31.1832 2533 31.4539 2532.95 31.7068 2532.85C31.9596 2532.74 32.1897 2532.59 32.3837 2532.4C32.5778 2532.21 32.7321 2531.98 32.8379 2531.73C32.9436 2531.47 32.9987 2531.2 33 2530.93V2527.11C32.83 2527.12 32.67 2527.14 32.5 2527.14Z" fill="#0091DA"/>
208
+ <path d="M26 2506.19C25.3206 2506.19 24.6523 2506.36 24.0636 2506.7C23.4749 2507.04 22.987 2507.53 22.65 2508.12L16.19 2519.35C15.8513 2519.94 15.673 2520.6 15.6729 2521.28C15.6727 2521.96 15.8508 2522.62 16.1893 2523.21C16.5277 2523.8 17.0146 2524.28 17.601 2524.62C18.1874 2524.96 18.8527 2525.14 19.53 2525.14H32.53C33.2073 2525.14 33.8726 2524.96 34.459 2524.62C35.0454 2524.28 35.5323 2523.8 35.8707 2523.21C36.2092 2522.62 36.3873 2521.96 36.3871 2521.28C36.387 2520.6 36.2087 2519.94 35.87 2519.35L29.36 2508.12C29.0229 2507.53 28.5337 2507.04 27.9429 2506.7C27.3521 2506.36 26.6813 2506.18 26 2506.19Z" fill="#B68300"/>
209
+ <path d="M25.9998 2508.19C26.3264 2508.19 26.6473 2508.27 26.9301 2508.44C27.2129 2508.6 27.4474 2508.84 27.6098 2509.12L34.0898 2520.35C34.253 2520.63 34.339 2520.95 34.339 2521.28C34.339 2521.61 34.2532 2521.93 34.09 2522.21C33.9268 2522.49 33.6922 2522.73 33.4095 2522.89C33.1269 2523.05 32.8062 2523.14 32.4798 2523.14H19.4798C19.1534 2523.14 18.8327 2523.05 18.5501 2522.89C18.2674 2522.73 18.0328 2522.49 17.8696 2522.21C17.7064 2521.93 17.6206 2521.61 17.6206 2521.28C17.6206 2520.95 17.7066 2520.63 17.8698 2520.35L24.4098 2509.12C24.5689 2508.84 24.7999 2508.6 25.0793 2508.44C25.3586 2508.28 25.6762 2508.19 25.9998 2508.19Z" fill="#FFE02C"/>
210
+ <path d="M25 2519H27V2521H25V2519ZM25 2511H27V2517H25V2511Z" fill="#454545"/>
211
+ <path d="M11 2549H25V2551H27V2549C27 2548.47 26.7893 2547.96 26.4142 2547.59C26.0391 2547.21 25.5304 2547 25 2547H10.87C10.374 2547 9.8984 2547.2 9.54771 2547.55C9.19702 2547.9 9 2548.37 9 2548.87V2555H11V2549Z" fill="#798893"/>
212
+ <path d="M30.91 2553H17V2555H24.91C24.9339 2555 24.9568 2555.01 24.9737 2555.03C24.9905 2555.04 25 2555.07 25 2555.09V2561H27V2555.09C27 2555.07 27.0095 2555.04 27.0264 2555.03C27.0433 2555.01 27.0662 2555 27.09 2555H30.91C30.9339 2555 30.9568 2555.01 30.9737 2555.03C30.9905 2555.04 31 2555.07 31 2555.09V2568.91C31 2568.93 30.9905 2568.96 30.9737 2568.97C30.9568 2568.99 30.9339 2569 30.91 2569H23.09C23.0662 2569 23.0433 2568.99 23.0264 2568.97C23.0095 2568.96 23 2568.93 23 2568.91V2559.09C23.0013 2558.82 22.9482 2558.54 22.8436 2558.29C22.7391 2558.03 22.5852 2557.8 22.3908 2557.61C22.1965 2557.41 21.9656 2557.26 21.7114 2557.16C21.4572 2557.05 21.1849 2557 20.91 2557H7.09002C6.81519 2557 6.54282 2557.05 6.28865 2557.16C6.03448 2557.26 5.80356 2557.41 5.60922 2557.61C5.41488 2557.8 5.26098 2558.03 5.15642 2558.29C5.05185 2558.54 4.9987 2558.82 5.00002 2559.09V2572.91C4.9987 2573.18 5.05185 2573.46 5.15642 2573.71C5.26098 2573.97 5.41488 2574.2 5.60922 2574.39C5.80356 2574.59 6.03448 2574.74 6.28865 2574.84C6.54282 2574.95 6.81519 2575 7.09002 2575H20.91C21.1849 2575 21.4572 2574.95 21.7114 2574.84C21.9656 2574.74 22.1965 2574.59 22.3908 2574.39C22.5852 2574.2 22.7391 2573.97 22.8436 2573.71C22.9482 2573.46 23.0013 2573.18 23 2572.91V2571.09C23 2571.07 23.0095 2571.04 23.0264 2571.03C23.0433 2571.01 23.0662 2571 23.09 2571H30.91C31.1849 2571 31.4572 2570.95 31.7114 2570.84C31.9656 2570.74 32.1965 2570.59 32.3908 2570.39C32.5852 2570.2 32.7391 2569.97 32.8436 2569.71C32.9482 2569.46 33.0013 2569.18 33 2568.91V2555.09C33.0013 2554.82 32.9482 2554.54 32.8436 2554.29C32.7391 2554.03 32.5852 2553.8 32.3908 2553.61C32.1965 2553.41 31.9656 2553.26 31.7114 2553.16C31.4572 2553.05 31.1849 2553 30.91 2553ZM7.00002 2572.91V2559.11C7.00002 2559.1 7.00287 2559.08 7.0084 2559.07C7.01393 2559.05 7.02203 2559.04 7.03224 2559.03C7.04246 2559.02 7.05458 2559.01 7.06793 2559.01C7.08127 2559 7.09558 2559 7.11002 2559H20.91C20.9339 2559 20.9568 2559.01 20.9737 2559.03C20.9905 2559.04 21 2559.07 21 2559.09V2568.91C21 2568.93 20.9905 2568.96 20.9737 2568.97C20.9568 2568.99 20.9339 2569 20.91 2569H17.09C17.0662 2569 17.0433 2568.99 17.0264 2568.97C17.0095 2568.96 17 2568.93 17 2568.91V2563H15V2568.91C14.9987 2569.18 15.0519 2569.46 15.1564 2569.71C15.261 2569.97 15.4149 2570.2 15.6092 2570.39C15.8036 2570.59 16.0345 2570.74 16.2887 2570.84C16.5428 2570.95 16.8152 2571 17.09 2571H20.91C20.9339 2571 20.9568 2571.01 20.9737 2571.03C20.9905 2571.04 21 2571.07 21 2571.09V2572.91C21 2572.93 20.9905 2572.96 20.9737 2572.97C20.9568 2572.99 20.9339 2573 20.91 2573H7.09002C7.06615 2573 7.04326 2572.99 7.02638 2572.97C7.00951 2572.96 7.00002 2572.93 7.00002 2572.91Z" fill="#798893"/>
213
+ <path d="M18.23 2585H10.87C10.3741 2585 9.89843 2585.2 9.54773 2585.55C9.19704 2585.9 9.00002 2586.37 9.00002 2586.87V2593H11V2587H17.43C17.6279 2586.31 17.8959 2585.64 18.23 2585ZM31 2600.57V2606.91C31 2606.93 30.9905 2606.96 30.9737 2606.97C30.9568 2606.99 30.9339 2607 30.91 2607H23.09C23.0662 2607 23.0433 2606.99 23.0264 2606.97C23.0095 2606.96 23 2606.93 23 2606.91V2599.79C22.2882 2599.43 21.6177 2598.99 21 2598.48V2606.91C21 2606.93 20.9905 2606.96 20.9737 2606.97C20.9568 2606.99 20.9339 2607 20.91 2607H17.09C17.0662 2607 17.0433 2606.99 17.0264 2606.97C17.0095 2606.96 17 2606.93 17 2606.91V2601H15V2606.91C14.9987 2607.18 15.0512 2607.45 15.1545 2607.71C15.2578 2607.96 15.4099 2608.19 15.6022 2608.38C15.7944 2608.58 16.0229 2608.73 16.2748 2608.84C16.5267 2608.94 16.7969 2609 17.07 2609H20.91C20.9339 2609 20.9568 2609.01 20.9737 2609.03C20.9905 2609.04 21 2609.07 21 2609.09V2610.91C21 2610.93 20.9905 2610.96 20.9737 2610.97C20.9568 2610.99 20.9339 2611 20.91 2611H7.09002C7.06615 2611 7.04326 2610.99 7.02638 2610.97C7.00951 2610.96 7.00002 2610.93 7.00002 2610.91V2597.11C7.00002 2597.1 7.00287 2597.08 7.0084 2597.07C7.01393 2597.05 7.02203 2597.04 7.03224 2597.03C7.04246 2597.02 7.05458 2597.01 7.06793 2597.01C7.08127 2597 7.09558 2597 7.11002 2597H19.52C19.0128 2596.38 18.5735 2595.71 18.21 2595H7.09002C6.81687 2595 6.54614 2595.05 6.29328 2595.15C6.04042 2595.26 5.81038 2595.41 5.61631 2595.6C5.42223 2595.79 5.26792 2596.02 5.16218 2596.27C5.05643 2596.53 5.00133 2596.8 5.00002 2597.07V2610.91C4.99871 2611.18 5.05121 2611.45 5.15452 2611.71C5.25784 2611.96 5.40995 2612.19 5.60216 2612.38C5.79438 2612.58 6.02294 2612.73 6.2748 2612.84C6.52666 2612.94 6.79687 2613 7.07002 2613H20.91C21.1832 2613 21.4539 2612.95 21.7068 2612.85C21.9596 2612.74 22.1897 2612.59 22.3837 2612.4C22.5778 2612.21 22.7321 2611.98 22.8379 2611.73C22.9436 2611.47 22.9987 2611.2 23 2610.93V2609.09C23 2609.07 23.0095 2609.04 23.0264 2609.03C23.0433 2609.01 23.0662 2609 23.09 2609H30.91C31.1832 2609 31.4539 2608.95 31.7068 2608.85C31.9596 2608.74 32.1897 2608.59 32.3837 2608.4C32.5778 2608.21 32.7321 2607.98 32.8379 2607.73C32.9436 2607.47 32.9987 2607.2 33 2606.93V2599.79C32.3617 2600.12 31.6916 2600.38 31 2600.57Z" fill="#798893"/>
214
+ <path d="M28 2581C26.22 2581 24.4799 2581.53 22.9999 2582.52C21.5198 2583.51 20.3663 2584.91 19.6851 2586.56C19.0039 2588.2 18.8257 2590.01 19.1729 2591.76C19.5202 2593.5 20.3774 2595.11 21.636 2596.36C22.8947 2597.62 24.4984 2598.48 26.2442 2598.83C27.99 2599.17 29.7996 2599 31.4442 2598.31C33.0887 2597.63 34.4943 2596.48 35.4832 2595C36.4722 2593.52 37 2591.78 37 2590C37 2587.61 36.0518 2585.32 34.364 2583.64C32.6761 2581.95 30.387 2581 28 2581ZM29 2595H27V2593H29V2595ZM29 2591H27V2585H29V2591Z" fill="#F84E30"/>
215
+ <path d="M25 2636.83V2637H27V2635.72L25 2636.83ZM17 2629H20V2631H17V2629Z" fill="#798893"/>
216
+ <path d="M31 2633.5V2644.91C31 2644.93 30.9905 2644.96 30.9737 2644.97C30.9568 2644.99 30.9339 2645 30.91 2645H23.09C23.0662 2645 23.0433 2644.99 23.0264 2644.97C23.0095 2644.96 23 2644.93 23 2644.91V2637.39C22.4923 2637.38 21.9947 2637.25 21.55 2637C21.3564 2636.87 21.1726 2636.73 21 2636.57V2644.93C21 2644.95 20.9905 2644.98 20.9737 2644.99C20.9568 2645.01 20.9339 2645.02 20.91 2645.02H17.09C17.0662 2645.02 17.0433 2645.01 17.0264 2644.99C17.0095 2644.98 17 2644.95 17 2644.93V2639H15V2644.91C14.9987 2645.18 15.0512 2645.45 15.1545 2645.71C15.2578 2645.96 15.4099 2646.19 15.6022 2646.38C15.7944 2646.58 16.0229 2646.73 16.2748 2646.84C16.5267 2646.94 16.7969 2647 17.07 2647H20.91C20.9339 2647 20.9568 2647.01 20.9737 2647.03C20.9905 2647.04 21 2647.07 21 2647.09V2648.91C21 2648.93 20.9905 2648.96 20.9737 2648.97C20.9568 2648.99 20.9339 2649 20.91 2649H7.09002C7.06615 2649 7.04326 2648.99 7.02638 2648.97C7.00951 2648.96 7.00002 2648.93 7.00002 2648.91V2635.11C7.00002 2635.1 7.00287 2635.08 7.0084 2635.07C7.01393 2635.05 7.02203 2635.04 7.03224 2635.03C7.04246 2635.02 7.05458 2635.01 7.06793 2635.01C7.08127 2635 7.09558 2635 7.11002 2635H20.11C20.046 2634.76 20.0124 2634.51 20.01 2634.26V2633H7.09002C6.55023 2633 6.03042 2633.2 5.64042 2633.58C5.25042 2633.95 5.02078 2634.46 5.00002 2635V2648.91C4.99871 2649.18 5.05121 2649.45 5.15452 2649.71C5.25784 2649.96 5.40995 2650.19 5.60216 2650.38C5.79438 2650.58 6.02294 2650.73 6.2748 2650.84C6.52666 2650.94 6.79687 2651 7.07002 2651H20.91C21.1832 2651 21.4539 2650.95 21.7068 2650.85C21.9596 2650.74 22.1897 2650.59 22.3837 2650.4C22.5778 2650.21 22.7321 2649.98 22.8379 2649.73C22.9436 2649.47 22.9987 2649.2 23 2648.93V2647.09C23 2647.07 23.0095 2647.04 23.0264 2647.03C23.0433 2647.01 23.0662 2647 23.09 2647H30.91C31.1832 2647 31.4539 2646.95 31.7068 2646.85C31.9596 2646.74 32.1897 2646.59 32.3837 2646.4C32.5778 2646.21 32.7321 2645.98 32.8379 2645.73C32.9436 2645.47 32.9987 2645.2 33 2644.93V2632.39L31 2633.5ZM20 2623H10.87C10.3741 2623 9.89843 2623.2 9.54773 2623.55C9.19704 2623.9 9.00002 2624.37 9.00002 2624.87V2631H11V2625H20V2623Z" fill="#798893"/>
217
+ <path d="M36.41 2626.2L23.71 2619.2C23.5353 2619.1 23.3382 2619.05 23.1382 2619.05C22.9382 2619.06 22.7421 2619.11 22.5695 2619.21C22.3968 2619.31 22.2534 2619.46 22.1536 2619.63C22.0537 2619.8 22.0008 2620 22 2620.2V2634.26C22.0008 2634.46 22.0537 2634.66 22.1536 2634.83C22.2534 2635 22.3968 2635.15 22.5695 2635.25C22.7421 2635.35 22.9382 2635.4 23.1382 2635.41C23.3382 2635.41 23.5353 2635.36 23.71 2635.26L36.41 2628.2C36.5867 2628.1 36.7337 2627.95 36.836 2627.78C36.9382 2627.6 36.9921 2627.4 36.9921 2627.2C36.9921 2627 36.9382 2626.8 36.836 2626.62C36.7337 2626.45 36.5867 2626.3 36.41 2626.2Z" fill="#60A644"/>
218
+ <path d="M13 2661.52V2661H10.87C10.3741 2661 9.89843 2661.2 9.54773 2661.55C9.19704 2661.9 9.00002 2662.37 9.00002 2662.87V2669H11V2663H13V2661.52ZM32.67 2674.5C32.1344 2674.76 31.5752 2674.97 31 2675.12V2682.91C31 2682.93 30.9905 2682.96 30.9737 2682.97C30.9568 2682.99 30.9339 2683 30.91 2683H23.09C23.0662 2683 23.0433 2682.99 23.0264 2682.97C23.0095 2682.96 23 2682.93 23 2682.91V2674.27C22.3044 2673.93 21.6357 2673.54 21 2673.1V2682.91C21 2682.93 20.9905 2682.96 20.9737 2682.97C20.9568 2682.99 20.9339 2683 20.91 2683H17.09C17.0662 2683 17.0433 2682.99 17.0264 2682.97C17.0095 2682.96 17 2682.93 17 2682.91V2677H15V2682.91C14.9987 2683.18 15.0512 2683.45 15.1545 2683.71C15.2578 2683.96 15.4099 2684.19 15.6022 2684.38C15.7944 2684.58 16.0229 2684.73 16.2748 2684.84C16.5267 2684.94 16.7969 2685 17.07 2685H20.91C20.9339 2685 20.9568 2685.01 20.9737 2685.03C20.9905 2685.04 21 2685.07 21 2685.09V2686.91C21 2686.93 20.9905 2686.96 20.9737 2686.97C20.9568 2686.99 20.9339 2687 20.91 2687H7.09002C7.06615 2687 7.04326 2686.99 7.02638 2686.97C7.00951 2686.96 7.00002 2686.93 7.00002 2686.91V2673.11C7.00002 2673.1 7.00287 2673.08 7.0084 2673.07C7.01393 2673.05 7.02203 2673.04 7.03224 2673.03C7.04246 2673.02 7.05458 2673.01 7.06793 2673.01C7.08127 2673 7.09558 2673 7.11002 2673H13.11C13.0783 2672.83 13.0615 2672.65 13.06 2672.48V2671H7.09002C6.81687 2671 6.54614 2671.05 6.29328 2671.15C6.04042 2671.26 5.81038 2671.41 5.61631 2671.6C5.42223 2671.79 5.26792 2672.02 5.16218 2672.27C5.05643 2672.53 5.00133 2672.8 5.00002 2673.07V2686.91C4.99871 2687.18 5.05121 2687.45 5.15452 2687.71C5.25784 2687.96 5.40995 2688.19 5.60216 2688.38C5.79438 2688.58 6.02294 2688.73 6.2748 2688.84C6.52666 2688.94 6.79687 2689 7.07002 2689H20.92C21.4691 2689 21.9952 2688.78 22.3844 2688.39C22.7736 2688 22.9948 2687.48 23 2686.93V2685.09C23 2685.07 23.0095 2685.04 23.0264 2685.03C23.0433 2685.01 23.0662 2685 23.09 2685H30.91C31.1832 2685 31.4539 2684.95 31.7068 2684.85C31.9596 2684.74 32.1897 2684.59 32.3837 2684.4C32.5778 2684.21 32.7321 2683.98 32.8379 2683.73C32.9436 2683.47 32.9987 2683.2 33 2682.93V2674.31L32.67 2674.5Z" fill="#798893"/>
219
+ <path d="M35.87 2658.53C35.7056 2658.02 35.3472 2657.61 34.8736 2657.36C34.4001 2657.12 33.8502 2657.08 33.345 2657.24C32.8398 2657.41 32.4205 2657.77 32.1796 2658.24C31.9386 2658.71 31.8956 2659.26 32.06 2659.77C33.4 2663.86 32.51 2667.88 30.06 2669.12C27.95 2670.12 25.06 2669.12 22.67 2666.66L26.49 2662.79C26.5891 2662.68 26.6541 2662.54 26.6772 2662.4C26.7003 2662.25 26.6804 2662.1 26.6199 2661.97C26.5595 2661.83 26.4611 2661.72 26.3368 2661.64C26.2125 2661.56 26.0676 2661.52 25.92 2661.52H15V2672.52C15.0102 2672.67 15.0623 2672.81 15.1501 2672.92C15.2379 2673.04 15.3576 2673.13 15.4949 2673.18C15.6322 2673.23 15.7812 2673.24 15.924 2673.21C16.0668 2673.18 16.1974 2673.1 16.3 2673L19.81 2669.45C20.8734 2670.64 22.1641 2671.61 23.6066 2672.3C25.049 2672.98 26.6141 2673.38 28.21 2673.45C29.4472 2673.45 30.6688 2673.17 31.78 2672.63C36.12 2670.56 37.84 2664.6 35.87 2658.53Z" fill="#59A011"/>
220
+ <path d="M25 2709H27V2713H25V2709Z" fill="#0091DA"/>
221
+ <path d="M19.85 2699H10.85C10.3575 2699.01 9.88702 2699.2 9.54065 2699.55C9.19427 2699.9 9 2700.38 9.00002 2700.87V2707H11V2701H18.7L19.85 2699ZM32.5 2717.14H31V2720.91C31 2720.93 30.9905 2720.96 30.9737 2720.97C30.9568 2720.99 30.9339 2721 30.91 2721H23.09C23.0662 2721 23.0433 2720.99 23.0264 2720.97C23.0095 2720.96 23 2720.93 23 2720.91V2717.14H21V2720.91C21 2720.93 20.9905 2720.96 20.9737 2720.97C20.9568 2720.99 20.9339 2721 20.91 2721H17.09C17.0662 2721 17.0433 2720.99 17.0264 2720.97C17.0095 2720.96 17 2720.93 17 2720.91V2716.55C16.2276 2716.19 15.5447 2715.66 15 2715V2720.91C14.9987 2721.18 15.0512 2721.45 15.1545 2721.71C15.2578 2721.96 15.4099 2722.19 15.6022 2722.38C15.7944 2722.58 16.0229 2722.73 16.2748 2722.84C16.5267 2722.94 16.7969 2723 17.07 2723H20.91C20.9339 2723 20.9568 2723.01 20.9737 2723.03C20.9905 2723.04 21 2723.07 21 2723.09V2724.91C21 2724.93 20.9905 2724.96 20.9737 2724.97C20.9568 2724.99 20.9339 2725 20.91 2725H7.09002C7.06615 2725 7.04326 2724.99 7.02638 2724.97C7.00951 2724.96 7.00002 2724.93 7.00002 2724.91V2711.11C7.00002 2711.1 7.00287 2711.08 7.0084 2711.07C7.01393 2711.05 7.02203 2711.04 7.03224 2711.03C7.04246 2711.02 7.05458 2711.01 7.06793 2711.01C7.08127 2711 7.09558 2711 7.11002 2711H13.69C13.7181 2710.31 13.8706 2709.63 14.14 2709H7.14002C6.59166 2708.98 6.0591 2709.18 5.65829 2709.56C5.25748 2709.93 5.02088 2710.45 5.00002 2711V2724.91C4.99871 2725.18 5.05121 2725.45 5.15452 2725.71C5.25784 2725.96 5.40995 2726.19 5.60216 2726.38C5.79438 2726.58 6.02294 2726.73 6.2748 2726.84C6.52666 2726.94 6.79687 2727 7.07002 2727H20.91C21.1832 2727 21.4539 2726.95 21.7068 2726.85C21.9596 2726.74 22.1897 2726.59 22.3837 2726.4C22.5778 2726.21 22.7321 2725.98 22.8379 2725.73C22.9436 2725.47 22.9987 2725.2 23 2724.93V2723.09C23 2723.07 23.0095 2723.04 23.0264 2723.03C23.0433 2723.01 23.0662 2723 23.09 2723H30.91C31.1832 2723 31.4539 2722.95 31.7068 2722.85C31.9596 2722.74 32.1897 2722.59 32.3837 2722.4C32.5778 2722.21 32.7321 2721.98 32.8379 2721.73C32.9436 2721.47 32.9987 2721.2 33 2720.93V2717.11C32.83 2717.12 32.67 2717.14 32.5 2717.14Z" fill="#798893"/>
222
+ <path d="M26 2696.19C25.3208 2696.19 24.6529 2696.36 24.0644 2696.7C23.4759 2697.04 22.9878 2697.53 22.65 2698.12L16.19 2709.35C15.8513 2709.94 15.673 2710.6 15.6729 2711.28C15.6727 2711.96 15.8508 2712.62 16.1893 2713.21C16.5277 2713.8 17.0146 2714.28 17.601 2714.62C18.1874 2714.96 18.8527 2715.14 19.53 2715.14H32.53C33.2073 2715.14 33.8726 2714.96 34.459 2714.62C35.0454 2714.28 35.5323 2713.8 35.8707 2713.21C36.2092 2712.62 36.3873 2711.96 36.3871 2711.28C36.387 2710.6 36.2087 2709.94 35.87 2709.35L29.36 2698.12C29.0229 2697.53 28.5337 2697.04 27.9429 2696.7C27.3521 2696.36 26.6813 2696.18 26 2696.19Z" fill="#B68300"/>
223
+ <path d="M26.0001 2698.19C26.3267 2698.19 26.6477 2698.27 26.9304 2698.44C27.2132 2698.6 27.4477 2698.84 27.6101 2699.12L34.0901 2710.35C34.2533 2710.63 34.3393 2710.95 34.3393 2711.28C34.3393 2711.61 34.2535 2711.93 34.0903 2712.21C33.9272 2712.49 33.6925 2712.73 33.4098 2712.89C33.1272 2713.05 32.8065 2713.14 32.4801 2713.14H19.4801C18.9868 2713.14 18.5137 2712.94 18.1649 2712.6C17.8161 2712.25 17.6201 2711.77 17.6201 2711.28C17.6213 2710.95 17.7075 2710.63 17.8701 2710.35L24.4101 2699.12C24.5693 2698.84 24.8003 2698.6 25.0796 2698.44C25.3589 2698.28 25.6765 2698.19 26.0001 2698.19Z" fill="#FFE02C"/>
224
+ <path d="M25 2709H27V2711H25V2709ZM25 2701H27V2707H25V2701Z" fill="#454545"/>
225
+ <path d="M11.53 2763H5.09002C5.06615 2763 5.04326 2762.99 5.02638 2762.97C5.00951 2762.96 5.00002 2762.93 5.00002 2762.91V2749.11C5.00002 2749.08 5.01161 2749.05 5.03224 2749.03C5.05287 2749.01 5.08085 2749 5.11002 2749H10.37C10.6996 2748.3 11.0877 2747.63 11.53 2747H5.09002C4.81687 2747 4.54614 2747.05 4.29328 2747.15C4.04042 2747.26 3.81038 2747.41 3.61631 2747.6C3.42223 2747.79 3.26792 2748.02 3.16218 2748.27C3.05643 2748.53 3.00133 2748.8 3.00002 2749.07V2762.91C2.99871 2763.18 3.05121 2763.45 3.15452 2763.71C3.25784 2763.96 3.40995 2764.19 3.60216 2764.38C3.79438 2764.58 4.02294 2764.73 4.2748 2764.84C4.52666 2764.94 4.79687 2765 5.07002 2765H13.22C12.5958 2764.39 12.03 2763.72 11.53 2763Z" fill="#FAFAFA"/>
226
+ <path d="M20.0002 2737H9.09019C8.81062 2736.97 8.52842 2737.01 8.26368 2737.1C7.99895 2737.19 7.7582 2737.35 7.55861 2737.54C7.35902 2737.74 7.20549 2737.98 7.10896 2738.24C7.01244 2738.51 6.9753 2738.79 7.00019 2739.07V2745H9.00019V2739.09C9.00019 2739.07 9.00967 2739.04 9.02655 2739.03C9.04343 2739.01 9.06632 2739 9.09019 2739H20.0002V2737ZM26.7002 2749.89L24.7002 2751.01C24.233 2751.27 23.7061 2751.41 23.1702 2751.41C22.9614 2751.4 22.7537 2751.38 22.5502 2751.33L19.0002 2754.82L25.3902 2761.21L26.8002 2759.79L21.8002 2754.79L26.7002 2749.89Z" fill="#FAFAFA"/>
227
+ <path d="M30.1801 2748C31.7035 2749.55 32.6778 2751.56 32.9551 2753.72C33.2324 2755.88 32.7975 2758.07 31.7165 2759.96C30.6355 2761.85 28.9674 2763.34 26.9655 2764.19C24.9636 2765.05 22.7373 2765.23 20.6246 2764.7C18.512 2764.18 16.6283 2762.98 15.2598 2761.28C13.8912 2759.59 13.1125 2757.5 13.0418 2755.32C12.9711 2753.15 13.6124 2751.01 14.8683 2749.23C16.1241 2747.45 17.9259 2746.13 20.0001 2745.47V2743.39C17.4709 2744.05 15.2282 2745.53 13.6132 2747.58C11.9983 2749.64 11.0995 2752.17 11.0536 2754.78C11.0077 2757.4 11.8173 2759.96 13.3591 2762.07C14.9009 2764.18 17.0905 2765.73 19.5948 2766.49C22.0991 2767.24 24.7809 2767.15 27.2323 2766.24C29.6836 2765.33 31.7702 2763.65 33.1746 2761.44C34.579 2759.23 35.2243 2756.63 35.0123 2754.02C34.8002 2751.42 33.7425 2748.95 32.0001 2747L30.1801 2748Z" fill="#FAFAFA"/>
228
+ <path d="M36.41 2740.2L23.71 2733.2C23.5353 2733.1 23.3382 2733.05 23.1382 2733.05C22.9382 2733.06 22.7421 2733.11 22.5695 2733.21C22.3968 2733.31 22.2534 2733.46 22.1536 2733.63C22.0537 2733.8 22.0008 2734 22 2734.2V2748.26C22.0008 2748.46 22.0537 2748.66 22.1536 2748.83C22.2534 2749 22.3968 2749.15 22.5695 2749.25C22.7421 2749.35 22.9382 2749.4 23.1382 2749.41C23.3382 2749.41 23.5353 2749.36 23.71 2749.26L36.41 2742.2C36.5867 2742.1 36.7337 2741.95 36.836 2741.78C36.9382 2741.6 36.9921 2741.4 36.9921 2741.2C36.9921 2741 36.9382 2740.8 36.836 2740.62C36.7337 2740.45 36.5867 2740.3 36.41 2740.2Z" fill="#60A644"/>
229
+ <path d="M11.53 2801H5.09002C5.06615 2801 5.04326 2800.99 5.02638 2800.97C5.00951 2800.96 5.00002 2800.93 5.00002 2800.91V2787.11C5.00002 2787.08 5.01161 2787.05 5.03224 2787.03C5.05287 2787.01 5.08085 2787 5.11002 2787H10.37C10.6996 2786.3 11.0877 2785.63 11.53 2785H5.09002C4.81687 2785 4.54614 2785.05 4.29328 2785.15C4.04042 2785.26 3.81038 2785.41 3.61631 2785.6C3.42223 2785.79 3.26792 2786.02 3.16218 2786.27C3.05643 2786.53 3.00133 2786.8 3.00002 2787.07V2800.91C2.99871 2801.18 3.05121 2801.45 3.15452 2801.71C3.25784 2801.96 3.40995 2802.19 3.60216 2802.38C3.79438 2802.58 4.02294 2802.73 4.2748 2802.84C4.52666 2802.94 4.79687 2803 5.07002 2803H13.22C12.5958 2802.39 12.03 2801.72 11.53 2801Z" fill="#FAFAFA"/>
230
+ <path d="M21.0002 2775H9.09019C8.81062 2774.97 8.52842 2775.01 8.26368 2775.1C7.99895 2775.19 7.7582 2775.35 7.55861 2775.54C7.35902 2775.74 7.20549 2775.98 7.10896 2776.24C7.01244 2776.51 6.9753 2776.79 7.00019 2777.07V2783H9.00019V2777.09C9.00019 2777.07 9.00967 2777.04 9.02655 2777.03C9.04343 2777.01 9.06632 2777 9.09019 2777H21.0002V2775ZM26.0102 2787H24.8902L19.0002 2792.82L25.3902 2799.21L26.8002 2797.79L21.8002 2792.79L26.8002 2787.79L26.0102 2787Z" fill="#FAFAFA"/>
231
+ <path d="M31.0603 2787C32.3651 2788.73 33.0676 2790.84 33.0603 2793C33.0576 2794.89 32.5199 2796.74 31.5095 2798.33C30.4991 2799.93 29.0574 2801.21 27.3512 2802.02C25.645 2802.83 23.7441 2803.14 21.8687 2802.91C19.9932 2802.69 18.2198 2801.94 16.7539 2800.75C15.2879 2799.56 14.1894 2797.97 13.5854 2796.18C12.9813 2794.39 12.8966 2792.47 13.3409 2790.63C13.7852 2788.8 14.7404 2787.13 16.096 2785.81C17.4515 2784.49 19.1519 2783.59 21.0003 2783.2V2781.2C18.7489 2781.59 16.6568 2782.62 14.9704 2784.17C13.2839 2785.71 12.0732 2787.7 11.4806 2789.91C10.888 2792.12 10.9382 2794.45 11.6254 2796.63C12.3125 2798.81 13.6079 2800.75 15.3592 2802.21C17.1105 2803.68 19.2449 2804.62 21.5113 2804.92C23.7776 2805.22 26.0816 2804.86 28.1522 2803.89C30.2229 2802.92 31.974 2801.38 33.1995 2799.45C34.4251 2797.53 35.0741 2795.29 35.0703 2793C35.0748 2790.89 34.5192 2788.82 33.4603 2787H31.0603Z" fill="#FAFAFA"/>
232
+ <path d="M23 2771H37V2785H23V2771Z" fill="#B68300"/>
233
+ <path d="M29 2773V2783H25V2773H29ZM35 2773V2783H31V2773H35Z" fill="#FFE02C"/>
234
+ <path d="M7 2829H13V2835H7V2829ZM3 2837H9V2843H3V2837ZM11 2837H17V2843H11V2837ZM27 2821.09V2819H17V2821H24.91C24.9339 2821 24.9568 2821.01 24.9736 2821.03C24.9905 2821.04 25 2821.07 25 2821.09V2827H27V2821.09Z" fill="#FAFAFA"/>
235
+ <path d="M25 2813H10.87C10.374 2813 9.8984 2813.2 9.54771 2813.55C9.19702 2813.9 9 2814.37 9 2814.87V2821H11V2815H25V2817H27V2815C27 2814.47 26.7893 2813.96 26.4142 2813.59C26.0391 2813.21 25.5304 2813 25 2813Z" fill="#FAFAFA"/>
236
+ <path d="M31 2831V2834.91C31 2834.93 30.9905 2834.96 30.9736 2834.97C30.9568 2834.99 30.9339 2835 30.91 2835H23.09C23.0661 2835 23.0432 2834.99 23.0264 2834.97C23.0095 2834.96 23 2834.93 23 2834.91V2825.09C23.0013 2824.82 22.9488 2824.55 22.8455 2824.29C22.7422 2824.04 22.5901 2823.81 22.3979 2823.62C22.2056 2823.42 21.9771 2823.27 21.7252 2823.16C21.4734 2823.06 21.2031 2823 20.93 2823H7.09C6.81685 2823 6.54611 2823.05 6.29325 2823.15C6.04039 2823.26 5.81036 2823.41 5.61628 2823.6C5.42221 2823.79 5.26789 2824.02 5.16215 2824.27C5.05641 2824.53 5.00131 2824.8 5 2825.07V2827H7V2825.09C7 2825.07 7.00948 2825.04 7.02636 2825.03C7.04324 2825.01 7.06613 2825 7.09 2825H20.89C20.9192 2825 20.9472 2825.01 20.9678 2825.03C20.9884 2825.05 21 2825.08 21 2825.11V2838.91C21 2838.93 20.9905 2838.96 20.9736 2838.97C20.9568 2838.99 20.9339 2839 20.91 2839H19V2841H22.6C22.7061 2841 22.8078 2840.96 22.8828 2840.88C22.9579 2840.81 23 2840.71 23 2840.6V2837H32.6C32.7061 2837 32.8078 2836.96 32.8828 2836.88C32.9579 2836.81 33 2836.71 33 2836.6V2831H31Z" fill="#FAFAFA"/>
237
+ <path d="M31.9598 2815.4C33.7271 2815.4 35.1598 2813.97 35.1598 2812.2C35.1598 2810.43 33.7271 2809 31.9598 2809C30.1925 2809 28.7598 2810.43 28.7598 2812.2C28.7598 2813.97 30.1925 2815.4 31.9598 2815.4Z" fill="#E46C00"/>
238
+ <path d="M29 2817H35V2829H29V2817Z" fill="#E46C00"/>
239
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38 2855.5C38 2860.75 33.7467 2865 28.5 2865C23.2533 2865 19 2860.75 19 2855.5C19 2850.25 23.2533 2846 28.5 2846C33.7467 2846 38 2850.25 38 2855.5ZM26.125 2851.51C26.7546 2851.51 27.265 2852.02 27.265 2852.65V2858.35C27.265 2858.98 26.7546 2859.49 26.125 2859.49C25.4954 2859.49 24.985 2858.98 24.985 2858.35V2852.65C24.985 2852.02 25.4954 2851.51 26.125 2851.51ZM32.0147 2852.65C32.0147 2852.02 31.5043 2851.51 30.8747 2851.51C30.2451 2851.51 29.7347 2852.02 29.7347 2852.65V2858.35C29.7347 2858.98 30.2451 2859.49 30.8747 2859.49C31.5043 2859.49 32.0147 2858.98 32.0147 2858.35V2852.65Z" fill="#BDC3C7"/>
240
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5816 2849.46C18.2509 2849.51 17.9273 2849.62 17.6282 2849.8L6.51919 2856.21C5.67006 2856.7 5.14697 2857.61 5.14697 2858.59V2871.41C5.14697 2872.39 5.67006 2873.3 6.51919 2873.79L17.6282 2880.2C18.4774 2880.69 19.5235 2880.69 20.3727 2880.2L31.4817 2873.79C32.3309 2873.3 32.8539 2872.39 32.8539 2871.41V2866.27C32.1794 2866.54 31.4734 2866.75 30.7428 2866.89V2871.41C30.7428 2871.64 30.6221 2871.85 30.4262 2871.96L20.056 2877.95V2865.61L21.5084 2864.77C20.918 2864.32 20.3715 2863.82 19.8766 2863.28L19.0005 2863.78L8.31364 2857.61L17.3014 2852.42C17.5906 2851.37 18.025 2850.37 18.5816 2849.46ZM17.9449 2865.61V2877.95L7.57475 2871.96C7.3788 2871.85 7.25808 2871.64 7.25808 2871.41V2859.44L17.9449 2865.61Z" fill="#E9EAEC"/>
241
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.1665 2891.18C3.1665 2889.55 4.48975 2888.22 6.12206 2888.22H23.4332C25.0655 2888.22 26.3887 2889.55 26.3887 2891.18V2894.56H24.2776V2891.18C24.2776 2890.71 23.8995 2890.33 23.4332 2890.33H6.12206C5.65569 2890.33 5.27761 2890.71 5.27761 2891.18V2904.27C5.27761 2904.73 5.65569 2905.11 6.12206 2905.11H8.44428V2907.22H6.12206C4.48975 2907.22 3.1665 2905.9 3.1665 2904.27V2891.18Z" fill="#E9EAEC"/>
242
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38867 2896.46C7.38867 2894.82 8.71192 2893.5 10.3442 2893.5H27.6553C29.2876 2893.5 30.6109 2894.82 30.6109 2896.46V2899.83H28.4998V2896.46C28.4998 2895.99 28.1217 2895.61 27.6553 2895.61H10.3442C9.87785 2895.61 9.49978 2895.99 9.49978 2896.46V2909.54C9.49978 2910.01 9.87785 2910.39 10.3442 2910.39H12.6664V2912.5H10.3442C8.71192 2912.5 7.38867 2911.18 7.38867 2909.54V2896.46Z" fill="#E9EAEC"/>
243
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.6108 2901.73C11.6108 2900.1 12.9341 2898.78 14.5664 2898.78H31.8775C33.5098 2898.78 34.8331 2900.1 34.8331 2901.73V2914.82C34.8331 2916.45 33.5098 2917.78 31.8775 2917.78H14.5664C12.9341 2917.78 11.6108 2916.45 11.6108 2914.82V2901.73ZM14.5664 2900.89C14.1 2900.89 13.722 2901.27 13.722 2901.73V2914.82C13.722 2915.29 14.1 2915.67 14.5664 2915.67H31.8775C32.3439 2915.67 32.7219 2915.29 32.7219 2914.82V2901.73C32.7219 2901.27 32.3439 2900.89 31.8775 2900.89H14.5664Z" fill="#E9EAEC"/>
244
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.833 2912.5C15.833 2911.92 16.3056 2911.44 16.8886 2911.44H29.5552C30.1382 2911.44 30.6108 2911.92 30.6108 2912.5C30.6108 2913.08 30.1382 2913.56 29.5552 2913.56H16.8886C16.3056 2913.56 15.833 2913.08 15.833 2912.5Z" fill="#E9EAEC"/>
245
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.1281 2926.81L20.3727 2925.8C19.5235 2925.31 18.4774 2925.31 17.6282 2925.8L6.51919 2932.21C5.67006 2932.7 5.14697 2933.61 5.14697 2934.59V2947.41C5.14697 2948.39 5.67006 2949.3 6.51919 2949.79L17.6282 2956.2C18.4774 2956.69 19.5235 2956.69 20.3727 2956.2L31.4817 2949.79C32.3309 2949.3 32.8539 2948.39 32.8539 2947.41V2940.57L30.7428 2940.57V2947.41C30.7428 2947.64 30.6221 2947.85 30.4262 2947.96L20.056 2953.95V2941.61L21.8541 2940.57L20.7754 2940.57C20.0893 2940.56 19.4171 2940.38 18.8258 2940.03C18.387 2939.77 18.0041 2939.43 17.6969 2939.03L8.31364 2933.61L18.6838 2927.62C18.8797 2927.51 19.1212 2927.51 19.3171 2927.62L21.0431 2928.62L22.1281 2926.81ZM17.9449 2941.61V2953.95L7.57475 2947.96C7.3788 2947.85 7.25808 2947.64 7.25808 2947.41V2935.44L17.9449 2941.61Z" fill="#E9EAEC"/>
246
+ <path d="M26.9452 2922.88L19.2437 2935.73C19.0849 2936.01 19.0009 2936.32 19 2936.64C18.9991 2936.95 19.0814 2937.27 19.2386 2937.54C19.3959 2937.82 19.6226 2938.05 19.8963 2938.21C20.17 2938.37 20.481 2938.46 20.7985 2938.46H36.2015C36.519 2938.46 36.83 2938.37 37.1037 2938.21C37.3774 2938.05 37.6041 2937.82 37.7614 2937.54C37.9186 2937.27 38.0009 2936.95 38 2936.64C37.9991 2936.32 37.9151 2936.01 37.7563 2935.73L30.0548 2922.88C29.8927 2922.61 29.6645 2922.39 29.3922 2922.23C29.1198 2922.08 28.8125 2922 28.5 2922C28.1875 2922 27.8802 2922.08 27.6078 2922.23C27.3355 2922.39 27.1073 2922.61 26.9452 2922.88Z" fill="#FBCE28"/>
247
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.4999 2931.88C29.1295 2931.88 29.6399 2931.37 29.6399 2930.74V2926.94C29.6399 2926.31 29.1295 2925.8 28.4999 2925.8C27.8703 2925.8 27.3599 2926.31 27.3599 2926.94V2930.74C27.3599 2931.37 27.8703 2931.88 28.4999 2931.88Z" fill="#FBCE28"/>
248
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.4999 2931.88C29.1295 2931.88 29.6399 2931.37 29.6399 2930.74V2926.94C29.6399 2926.31 29.1295 2925.8 28.4999 2925.8C27.8703 2925.8 27.3599 2926.31 27.3599 2926.94V2930.74C27.3599 2931.37 27.8703 2931.88 28.4999 2931.88Z" fill="#213444" fill-opacity="0.88"/>
249
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M27.1699 2935.11C27.1699 2934.37 27.7654 2933.78 28.4999 2933.78H28.5094C29.244 2933.78 29.8394 2934.37 29.8394 2935.11C29.8394 2935.84 29.244 2936.44 28.5094 2936.44H28.4999C27.7654 2936.44 27.1699 2935.84 27.1699 2935.11Z" fill="#FBCE28"/>
250
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M27.1699 2935.11C27.1699 2934.37 27.7654 2933.78 28.4999 2933.78H28.5094C29.244 2933.78 29.8394 2934.37 29.8394 2935.11C29.8394 2935.84 29.244 2936.44 28.5094 2936.44H28.4999C27.7654 2936.44 27.1699 2935.84 27.1699 2935.11Z" fill="#213444" fill-opacity="0.88"/>
251
+ <path d="M13 2965H27V2967H29V2965C29 2964.47 28.7893 2963.96 28.4142 2963.59C28.0391 2963.21 27.5304 2963 27 2963H12.87C12.374 2963 11.8984 2963.2 11.5477 2963.55C11.197 2963.9 11 2964.37 11 2964.87V2971H13V2965Z" fill="#FAFAFA"/>
252
+ <path d="M32.9102 2969H19.0002V2971H26.9102C26.9341 2971 26.957 2971.01 26.9738 2971.03C26.9907 2971.04 27.0002 2971.07 27.0002 2971.09V2977H29.0002V2971.09C29.0002 2971.07 29.0097 2971.04 29.0265 2971.03C29.0434 2971.01 29.0663 2971 29.0902 2971H32.9102C32.9341 2971 32.957 2971.01 32.9738 2971.03C32.9907 2971.04 33.0002 2971.07 33.0002 2971.09V2984.91C33.0002 2984.93 32.9907 2984.96 32.9738 2984.97C32.957 2984.99 32.9341 2985 32.9102 2985H25.0902C25.0663 2985 25.0434 2984.99 25.0265 2984.97C25.0097 2984.96 25.0002 2984.93 25.0002 2984.91V2975.09C25.0015 2974.82 24.9484 2974.54 24.8438 2974.29C24.7392 2974.03 24.5853 2973.8 24.391 2973.61C24.1967 2973.41 23.9657 2973.26 23.7116 2973.16C23.4574 2973.05 23.185 2973 22.9102 2973H9.09019C8.6927 2973 8.30377 2973.12 7.96901 2973.33C7.63425 2973.54 7.36755 2973.85 7.20019 2974.21C7.69916 2974.39 8.15298 2974.68 8.53019 2975.05L9.00019 2975.52V2975.11C9.00019 2975.08 9.01178 2975.05 9.03241 2975.03C9.05304 2975.01 9.08101 2975 9.11019 2975H22.9102C22.9341 2975 22.957 2975.01 22.9738 2975.03C22.9907 2975.04 23.0002 2975.07 23.0002 2975.09V2984.91C23.0002 2984.93 22.9907 2984.96 22.9738 2984.97C22.957 2984.99 22.9341 2985 22.9102 2985H19.0902C19.0663 2985 19.0434 2984.99 19.0265 2984.97C19.0097 2984.96 19.0002 2984.93 19.0002 2984.91V2979H17.0002V2983.58L20.3902 2987H22.9102C22.9341 2987 22.957 2987.01 22.9738 2987.03C22.9907 2987.04 23.0002 2987.07 23.0002 2987.09V2988.91C23.0002 2988.93 22.9907 2988.96 22.9738 2988.97C22.957 2988.99 22.9341 2989 22.9102 2989H22.3802L22.6202 2989.25L22.7502 2989.8L23.0002 2991C23.537 2990.98 24.0443 2990.75 24.4167 2990.36C24.7892 2989.97 24.9981 2989.46 25.0002 2988.92V2987.09C25.0002 2987.07 25.0097 2987.04 25.0265 2987.03C25.0434 2987.01 25.0663 2987 25.0902 2987H32.9102C33.185 2987 33.4574 2986.95 33.7116 2986.84C33.9657 2986.74 34.1967 2986.59 34.391 2986.39C34.5853 2986.2 34.7392 2985.97 34.8438 2985.71C34.9484 2985.46 35.0015 2985.18 35.0002 2984.91V2971.09C35.0015 2970.82 34.9484 2970.54 34.8438 2970.29C34.7392 2970.03 34.5853 2969.8 34.391 2969.61C34.1967 2969.41 33.9657 2969.26 33.7116 2969.16C33.4574 2969.05 33.185 2969 32.9102 2969ZM1.47019 2979.83C1.32022 2979.98 1.20123 2980.16 1.12005 2980.35C1.03886 2980.55 0.99707 2980.76 0.99707 2980.97C0.99707 2981.18 1.03886 2981.39 1.12005 2981.59C1.20123 2981.78 1.32022 2981.96 1.47019 2982.11L15.1302 2995.92L20.0002 2997H20.3702C20.6087 2997 20.8443 2996.95 21.0598 2996.85C21.2753 2996.74 21.4653 2996.59 21.6158 2996.41C21.7663 2996.22 21.8735 2996.01 21.9296 2995.78C21.9858 2995.54 21.9894 2995.3 21.9402 2995.07L20.8002 2990.25L7.11019 2976.46C6.96148 2976.31 6.78465 2976.19 6.58986 2976.11C6.39507 2976.03 6.18617 2975.99 5.97519 2975.99C5.76421 2975.99 5.55531 2976.03 5.36052 2976.11C5.16573 2976.19 4.98889 2976.31 4.84019 2976.46L1.47019 2979.83ZM5.85019 2983.68L8.67019 2980.86L19.0002 2991.25L19.8502 2994.88L16.2002 2994.07L5.85019 2983.68ZM3.16019 2981L6.00019 2978.15L7.55019 2979.73L4.73019 2982.55L3.16019 2981Z" fill="#FAFAFA"/>
253
+ <path d="M7.50601 3001.17C6.3551 3001.17 5.25133 3001.62 4.43752 3002.44C3.6237 3003.25 3.1665 3004.36 3.1665 3005.51V3010.43C3.1665 3011.02 3.63909 3011.49 4.22206 3011.49C4.80503 3011.49 5.27762 3011.02 5.27762 3010.43V3005.51C5.27762 3004.92 5.51239 3004.35 5.9303 3003.93C6.3482 3003.51 6.915 3003.28 7.50601 3003.28H12.4319C13.0149 3003.28 13.4875 3002.81 13.4875 3002.22C13.4875 3001.64 13.0149 3001.17 12.4319 3001.17H7.50601Z" fill="#E9EAEC"/>
254
+ <path d="M25.5677 3001.17C24.9848 3001.17 24.5122 3001.64 24.5122 3002.22C24.5122 3002.81 24.9848 3003.28 25.5677 3003.28H30.4937C31.0847 3003.28 31.6515 3003.51 32.0694 3003.93C32.4873 3004.35 32.7221 3004.92 32.7221 3005.51V3010.43C32.7221 3011.02 33.1946 3011.49 33.7776 3011.49C34.3606 3011.49 34.8332 3011.02 34.8332 3010.43V3005.51C34.8332 3004.36 34.376 3003.25 33.5622 3002.44C32.7483 3001.62 31.6446 3001.17 30.4937 3001.17H25.5677Z" fill="#E9EAEC"/>
255
+ <path d="M5.27762 3023.57C5.27762 3022.99 4.80503 3022.51 4.22206 3022.51C3.63909 3022.51 3.1665 3022.99 3.1665 3023.57V3028.49C3.1665 3029.65 3.6237 3030.75 4.43752 3031.56C5.25133 3032.38 6.3551 3032.83 7.50601 3032.83H12.4319C13.0149 3032.83 13.4875 3032.36 13.4875 3031.78C13.4875 3031.2 13.0149 3030.72 12.4319 3030.72H7.50601C6.915 3030.72 6.3482 3030.49 5.9303 3030.07C5.51239 3029.65 5.27762 3029.09 5.27762 3028.49V3023.57Z" fill="#E9EAEC"/>
256
+ <path d="M13.4054 3017C13.4054 3013.91 15.9101 3011.41 18.9998 3011.41C20.8991 3011.41 22.5773 3012.35 23.5886 3013.8C23.7978 3013.59 24.0283 3013.39 24.2775 3013.22C24.6186 3012.99 24.9877 3012.8 25.3739 3012.67C23.9872 3010.63 21.6498 3009.29 18.9998 3009.29C14.7442 3009.29 11.2943 3012.74 11.2943 3017C11.2943 3020.57 13.7239 3023.58 17.0204 3024.45L16.8368 3024.22C16.2574 3023.5 15.9107 3022.62 15.8447 3021.69C15.843 3021.67 15.8415 3021.64 15.8401 3021.62C14.3699 3020.61 13.4054 3018.92 13.4054 3017Z" fill="#E9EAEC"/>
257
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M26.8611 3014.53L26.8642 3014.53L28.0276 3014.53C28.524 3014.53 29.0088 3014.68 29.4187 3014.96C29.8285 3015.24 30.1444 3015.64 30.3243 3016.1L30.797 3017.32L32.2199 3018.13L33.526 3017.93L33.5431 3017.93C34.0273 3017.87 34.5204 3017.95 34.9597 3018.16C35.3992 3018.37 35.7656 3018.71 36.0117 3019.14L36.0146 3019.14L36.5777 3020.12C36.8291 3020.55 36.9451 3021.04 36.9098 3021.54C36.8745 3022.04 36.689 3022.51 36.3787 3022.9L36.3759 3022.9L35.5747 3023.92V3025.54L36.4042 3026.57C36.7162 3026.95 36.9027 3027.43 36.9381 3027.93C36.9734 3028.42 36.8575 3028.92 36.606 3029.35L36.0429 3030.33L36.04 3030.33C35.7939 3030.75 35.4274 3031.09 34.988 3031.31C34.5487 3031.52 34.0556 3031.6 33.5714 3031.54L33.5543 3031.53L32.2482 3031.34L30.8253 3032.15L30.3528 3033.36C30.1729 3033.83 29.8565 3034.22 29.447 3034.51C29.0371 3034.79 28.5523 3034.94 28.0559 3034.94L28.0528 3034.94H26.8642L26.8611 3034.94C26.3647 3034.94 25.8799 3034.79 25.47 3034.51C25.0605 3034.22 24.7446 3033.83 24.5647 3033.36M24.5647 3033.36L24.0917 3032.15L22.6688 3031.34L21.3627 3031.53L21.3456 3031.54C20.8613 3031.6 20.3683 3031.52 19.9289 3031.31C19.4895 3031.09 19.1231 3030.75 18.877 3030.33L18.8741 3030.33L18.3109 3029.35C18.0595 3028.92 17.9436 3028.42 17.9788 3027.93C18.0142 3027.43 18.1996 3026.96 18.51 3026.57L19.3139 3025.55V3023.93L18.4845 3022.9C18.1724 3022.51 17.986 3022.04 17.9505 3021.54C17.9153 3021.04 18.0312 3020.55 18.2826 3020.12L18.8487 3019.14C19.0948 3018.71 19.4612 3018.37 19.9006 3018.16C20.34 3017.95 20.833 3017.87 21.3173 3017.93L21.3344 3017.93L22.6439 3018.13L24.0929 3017.31L24.5642 3016.1C24.7441 3015.64 25.0603 3015.24 25.47 3014.96C25.8799 3014.68 26.3647 3014.53 26.8611 3014.53M26.8663 3016.64C26.7929 3016.64 26.7219 3016.66 26.6624 3016.7C26.6028 3016.75 26.5577 3016.8 26.5324 3016.87L25.9234 3018.43C25.835 3018.66 25.6709 3018.85 25.4588 3018.97L23.3646 3020.15C23.1591 3020.27 22.9207 3020.31 22.6873 3020.27L21.029 3020.02C20.9591 3020.01 20.8884 3020.03 20.8256 3020.06C20.7617 3020.09 20.7094 3020.14 20.6744 3020.2L20.1038 3021.19C20.0678 3021.25 20.0514 3021.32 20.0563 3021.39C20.0612 3021.46 20.0869 3021.53 20.1308 3021.58L21.1894 3022.89C21.3419 3023.07 21.425 3023.31 21.425 3023.55V3025.92C21.425 3026.15 21.3451 3026.38 21.1981 3026.57L20.1604 3027.89C20.1157 3027.94 20.0896 3028.01 20.0846 3028.08C20.0797 3028.15 20.096 3028.22 20.1321 3028.28L20.1387 3028.29L20.7027 3029.27C20.7377 3029.33 20.79 3029.38 20.8539 3029.41C20.9167 3029.44 20.9874 3029.45 21.0573 3029.44L22.7156 3029.19C22.951 3029.16 23.1916 3029.2 23.3983 3029.32L25.4641 3030.5C25.6737 3030.62 25.8358 3030.81 25.9234 3031.04L26.5324 3032.6C26.5577 3032.67 26.6028 3032.72 26.6624 3032.76C26.722 3032.8 26.793 3032.83 26.8663 3032.83H28.0506C28.124 3032.83 28.195 3032.8 28.2545 3032.76C28.3142 3032.72 28.3592 3032.67 28.3846 3032.6L28.9935 3031.04C29.0812 3030.81 29.2433 3030.62 29.4528 3030.5L31.5187 3029.32C31.7254 3029.2 31.9659 3029.16 32.2013 3029.19L33.8597 3029.44C33.9296 3029.45 34.0003 3029.44 34.0631 3029.41C34.127 3029.38 34.1793 3029.33 34.2143 3029.27L34.7848 3028.28C34.8209 3028.22 34.8373 3028.15 34.8324 3028.08C34.8274 3028.01 34.8018 3027.94 34.7579 3027.89L33.6993 3026.58C33.5468 3026.39 33.4636 3026.16 33.4636 3025.92V3023.55C33.4636 3023.31 33.5436 3023.08 33.6906 3022.9L34.7283 3021.58C34.773 3021.53 34.7991 3021.46 34.8041 3021.39C34.809 3021.32 34.7927 3021.25 34.7566 3021.19L34.75 3021.18L34.186 3020.2C34.151 3020.14 34.0987 3020.09 34.0348 3020.06C33.972 3020.03 33.9013 3020.01 33.8313 3020.02L32.173 3020.27C31.9376 3020.31 31.6971 3020.27 31.4904 3020.15L29.4245 3018.96C29.215 3018.85 29.0529 3018.66 28.9652 3018.43L28.3563 3016.87C28.3309 3016.8 28.2859 3016.75 28.2262 3016.7C28.1667 3016.66 28.0957 3016.64 28.0224 3016.64H26.8663ZM24.6989 3022C25.428 3021.27 26.4157 3020.86 27.4443 3020.86C28.2116 3020.86 28.962 3021.09 29.6008 3021.51C30.2397 3021.94 30.7385 3022.54 31.0333 3023.25C31.3281 3023.96 31.4053 3024.74 31.255 3025.49C31.1046 3026.24 30.7336 3026.93 30.1898 3027.47C29.646 3028.01 28.9539 3028.38 28.2013 3028.53C27.4487 3028.68 26.6685 3028.6 25.9593 3028.31C25.2499 3028.02 24.6427 3027.52 24.2151 3026.89C23.7875 3026.25 23.5588 3025.5 23.5588 3024.73C23.5588 3023.71 23.9696 3022.72 24.6989 3022ZM27.4443 3022.97C26.9719 3022.97 26.52 3023.16 26.1877 3023.49C25.8555 3023.82 25.67 3024.27 25.67 3024.73C25.67 3025.08 25.7733 3025.42 25.9675 3025.71C26.1618 3026 26.4386 3026.22 26.7635 3026.36C27.0884 3026.49 27.4463 3026.53 27.7916 3026.46C28.1368 3026.39 28.4532 3026.22 28.701 3025.98C28.9487 3025.73 29.1168 3025.42 29.1848 3025.08C29.2529 3024.74 29.218 3024.38 29.0844 3024.06C28.9508 3023.74 28.7242 3023.47 28.4323 3023.27C28.1404 3023.08 27.7965 3022.97 27.4443 3022.97Z" fill="#E9EAEC"/>
258
+ </g>
259
+ <defs>
260
+ <clipPath id="clip0_2062_6492">
261
+ <rect width="38" height="3036" fill="white"/>
262
+ </clipPath>
263
+ </defs>
264
+ </svg>