ylyx-cli 1.0.14 → 1.0.16

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 (286) hide show
  1. package/README.md +4 -0
  2. package/bin/ylyx.js +168 -168
  3. package/lib/config.js +283 -299
  4. package/lib/deploy.js +529 -415
  5. package/lib/generator.js +192 -192
  6. package/lib/index.js +113 -113
  7. package/lib/interactive.js +87 -87
  8. package/lib/remote.js +179 -179
  9. package/lib/template.js +174 -174
  10. package/lib/utils.js +148 -148
  11. package/package.json +5 -5
  12. package/templates/react-app/files/README.md +23 -23
  13. package/templates/react-app/files/package.json +28 -28
  14. package/templates/react-app/files/public/index.html +11 -11
  15. package/templates/react-app/files/src/App.css +15 -15
  16. package/templates/react-app/files/src/App.js +15 -15
  17. package/templates/react-app/files/src/index.css +10 -10
  18. package/templates/react-app/files/src/index.js +11 -11
  19. package/templates/react-app/template.json +11 -11
  20. package/templates/react-component/files/Component.module.css +5 -5
  21. package/templates/react-component/files/Component.tsx +31 -31
  22. package/templates/react-component/files/index.ts +2 -2
  23. package/templates/react-component/template.json +48 -48
  24. package/templates/vue-app/files/.editorconfig +14 -14
  25. package/templates/vue-app/files/.env.development +21 -21
  26. package/templates/vue-app/files/.env.production +18 -18
  27. package/templates/vue-app/files/.eslintignore +5 -5
  28. package/templates/vue-app/files/.eslintrc.js +267 -267
  29. package/templates/vue-app/files/.prettierignore +11 -11
  30. package/templates/vue-app/files/.travis.yml +5 -5
  31. package/templates/vue-app/files/.vscode/extensions.json +7 -7
  32. package/templates/vue-app/files/.vscode/settings.json +39 -39
  33. package/templates/vue-app/files/LICENSE +191 -191
  34. package/templates/vue-app/files/README.md +87 -87
  35. package/templates/vue-app/files/babel.config.js +11 -11
  36. package/templates/vue-app/files/jest.config.js +24 -24
  37. package/templates/vue-app/files/package.json +136 -136
  38. package/templates/vue-app/files/plopfile.js +7 -7
  39. package/templates/vue-app/files/postcss.config.js +5 -5
  40. package/templates/vue-app/files/public/default.js +25 -25
  41. package/templates/vue-app/files/public/index.html +26 -26
  42. package/templates/vue-app/files/src/App.vue +54 -54
  43. package/templates/vue-app/files/src/api/bigDataV/index.js +198 -198
  44. package/templates/vue-app/files/src/api/data.js +42 -42
  45. package/templates/vue-app/files/src/api/dataArchive/index.js +186 -186
  46. package/templates/vue-app/files/src/api/generator/genConfig.js +16 -16
  47. package/templates/vue-app/files/src/api/generator/generator.js +32 -32
  48. package/templates/vue-app/files/src/api/indexManagement/index.js +39 -39
  49. package/templates/vue-app/files/src/api/institutionMonitor/index.js +396 -396
  50. package/templates/vue-app/files/src/api/institutionSet/index.js +120 -120
  51. package/templates/vue-app/files/src/api/login.js +44 -44
  52. package/templates/vue-app/files/src/api/selfStatistics/index.js +50 -50
  53. package/templates/vue-app/files/src/api/system/code.js +15 -15
  54. package/templates/vue-app/files/src/api/system/dict.js +34 -34
  55. package/templates/vue-app/files/src/api/system/dictDetail.js +52 -52
  56. package/templates/vue-app/files/src/api/system/equipment.js +35 -35
  57. package/templates/vue-app/files/src/api/system/examManage.js +49 -49
  58. package/templates/vue-app/files/src/api/system/examProject.js +48 -48
  59. package/templates/vue-app/files/src/api/system/hosModel.js +35 -35
  60. package/templates/vue-app/files/src/api/system/hospital.js +88 -88
  61. package/templates/vue-app/files/src/api/system/job.js +40 -40
  62. package/templates/vue-app/files/src/api/system/menu.js +67 -67
  63. package/templates/vue-app/files/src/api/system/model.js +42 -42
  64. package/templates/vue-app/files/src/api/system/risConfig.js +9 -9
  65. package/templates/vue-app/files/src/api/system/role.js +64 -64
  66. package/templates/vue-app/files/src/api/system/sysSet.js +19 -19
  67. package/templates/vue-app/files/src/api/system/timing.js +41 -41
  68. package/templates/vue-app/files/src/api/system/user.js +121 -121
  69. package/templates/vue-app/files/src/api/tools/alipay.js +25 -25
  70. package/templates/vue-app/files/src/api/tools/email.js +24 -24
  71. package/templates/vue-app/files/src/api/tools/localStorage.js +27 -27
  72. package/templates/vue-app/files/src/api/tools/qiniu.js +40 -40
  73. package/templates/vue-app/files/src/assets/css/font-awesome.css +2342 -2342
  74. package/templates/vue-app/files/src/assets/css/font-awesome.min.css +2336 -2336
  75. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.svg +2671 -2671
  76. package/templates/vue-app/files/src/assets/icons/index.js +9 -9
  77. package/templates/vue-app/files/src/assets/icons/svg/hospital.svg +1 -1
  78. package/templates/vue-app/files/src/assets/icons/svg/hospital1.svg +1 -1
  79. package/templates/vue-app/files/src/assets/icons/svg/loginOne.svg +35 -35
  80. package/templates/vue-app/files/src/assets/icons/svg/loginOneWhite.svg +19 -19
  81. package/templates/vue-app/files/src/assets/icons/svg/loginOr.svg +93 -93
  82. package/templates/vue-app/files/src/assets/icons/svg/loginUp.svg +96 -96
  83. package/templates/vue-app/files/src/assets/icons/svg/monitor.svg +1 -1
  84. package/templates/vue-app/files/src/assets/icons/svg/offline.svg +1 -1
  85. package/templates/vue-app/files/src/assets/icons/svg/online.svg +1 -1
  86. package/templates/vue-app/files/src/assets/icons/svg/system.svg +1 -1
  87. package/templates/vue-app/files/src/assets/icons/svgo.yml +21 -21
  88. package/templates/vue-app/files/src/assets/styles/btn.scss +103 -103
  89. package/templates/vue-app/files/src/assets/styles/eladmin.scss +124 -124
  90. package/templates/vue-app/files/src/assets/styles/element-ui.scss +217 -217
  91. package/templates/vue-app/files/src/assets/styles/element-variables.scss +31 -31
  92. package/templates/vue-app/files/src/assets/styles/global.scss +73 -73
  93. package/templates/vue-app/files/src/assets/styles/index.scss +220 -220
  94. package/templates/vue-app/files/src/assets/styles/mixin.scss +60 -60
  95. package/templates/vue-app/files/src/assets/styles/publicStyle.scss +224 -224
  96. package/templates/vue-app/files/src/assets/styles/sidebar.scss +239 -239
  97. package/templates/vue-app/files/src/assets/styles/transition.scss +48 -48
  98. package/templates/vue-app/files/src/assets/styles/variables.scss +44 -44
  99. package/templates/vue-app/files/src/common/flexible.js +145 -145
  100. package/templates/vue-app/files/src/components/Breadcrumb/index.vue +87 -87
  101. package/templates/vue-app/files/src/components/Crud/CRUD.operation.vue +248 -248
  102. package/templates/vue-app/files/src/components/Crud/Pagination.vue +20 -20
  103. package/templates/vue-app/files/src/components/Crud/RR.operation.vue +39 -39
  104. package/templates/vue-app/files/src/components/Crud/UD.operation.vue +106 -106
  105. package/templates/vue-app/files/src/components/Crud/crud.js +907 -907
  106. package/templates/vue-app/files/src/components/Crud/user/UR.operation.vue +154 -154
  107. package/templates/vue-app/files/src/components/DateRangePicker/index.vue +42 -42
  108. package/templates/vue-app/files/src/components/DateRangePickerProhibitNext/index.vue +42 -42
  109. package/templates/vue-app/files/src/components/DateRangePickerProhibitTodayNext/index.vue +48 -48
  110. package/templates/vue-app/files/src/components/Dict/Dict.js +31 -31
  111. package/templates/vue-app/files/src/components/Dict/index.js +29 -29
  112. package/templates/vue-app/files/src/components/Doc/index.vue +16 -16
  113. package/templates/vue-app/files/src/components/Echarts/BarChart.vue +115 -115
  114. package/templates/vue-app/files/src/components/Echarts/Category.vue +768 -768
  115. package/templates/vue-app/files/src/components/Echarts/Funnel.vue +120 -120
  116. package/templates/vue-app/files/src/components/Echarts/Gauge.vue +74 -74
  117. package/templates/vue-app/files/src/components/Echarts/Graph.vue +101 -101
  118. package/templates/vue-app/files/src/components/Echarts/HeatMap.vue +301 -301
  119. package/templates/vue-app/files/src/components/Echarts/Line3D.vue +110 -110
  120. package/templates/vue-app/files/src/components/Echarts/PieChart.vue +84 -84
  121. package/templates/vue-app/files/src/components/Echarts/Point.vue +161 -161
  122. package/templates/vue-app/files/src/components/Echarts/RadarChart.vue +123 -123
  123. package/templates/vue-app/files/src/components/Echarts/Rich.vue +160 -160
  124. package/templates/vue-app/files/src/components/Echarts/Sankey.vue +114 -114
  125. package/templates/vue-app/files/src/components/Echarts/Scatter.vue +192 -192
  126. package/templates/vue-app/files/src/components/Echarts/Sunburst.vue +127 -127
  127. package/templates/vue-app/files/src/components/Echarts/ThemeRiver.vue +233 -233
  128. package/templates/vue-app/files/src/components/Echarts/WordCloud.vue +201 -201
  129. package/templates/vue-app/files/src/components/GithubCorner/index.vue +55 -55
  130. package/templates/vue-app/files/src/components/Hamburger/index.vue +44 -44
  131. package/templates/vue-app/files/src/components/HeaderSearch/index.vue +196 -196
  132. package/templates/vue-app/files/src/components/IconSelect/index.vue +74 -74
  133. package/templates/vue-app/files/src/components/IconSelect/requireIcons.js +10 -10
  134. package/templates/vue-app/files/src/components/Iframe/index.vue +30 -30
  135. package/templates/vue-app/files/src/components/JavaEdit/index.vue +78 -78
  136. package/templates/vue-app/files/src/components/Pagination/index.vue +100 -100
  137. package/templates/vue-app/files/src/components/PanThumb/index.vue +149 -149
  138. package/templates/vue-app/files/src/components/ParentView/index.vue +3 -3
  139. package/templates/vue-app/files/src/components/Permission/index.js +13 -13
  140. package/templates/vue-app/files/src/components/Permission/permission.js +21 -21
  141. package/templates/vue-app/files/src/components/RightPanel/index.vue +149 -149
  142. package/templates/vue-app/files/src/components/Screenfull/index.vue +60 -60
  143. package/templates/vue-app/files/src/components/SizeSelect/index.vue +60 -60
  144. package/templates/vue-app/files/src/components/SvgIcon/index.vue +66 -66
  145. package/templates/vue-app/files/src/components/ThemePicker/index.vue +177 -177
  146. package/templates/vue-app/files/src/components/UploadExcel/index.vue +149 -149
  147. package/templates/vue-app/files/src/components/WaterMark/setWaterMark.js +68 -68
  148. package/templates/vue-app/files/src/components/WaterMark/waterMark.vue +69 -69
  149. package/templates/vue-app/files/src/components/Xgplayer/index.vue +49 -49
  150. package/templates/vue-app/files/src/components/YamlEdit/index.vue +81 -81
  151. package/templates/vue-app/files/src/layout/components/AppMain.vue +67 -67
  152. package/templates/vue-app/files/src/layout/components/Navbar.vue +209 -209
  153. package/templates/vue-app/files/src/layout/components/Settings/index.vue +125 -125
  154. package/templates/vue-app/files/src/layout/components/Sidebar/FixiOSBug.js +26 -26
  155. package/templates/vue-app/files/src/layout/components/Sidebar/Item.vue +29 -29
  156. package/templates/vue-app/files/src/layout/components/Sidebar/Link.vue +35 -35
  157. package/templates/vue-app/files/src/layout/components/Sidebar/Logo.vue +93 -93
  158. package/templates/vue-app/files/src/layout/components/Sidebar/SidebarItem.vue +104 -104
  159. package/templates/vue-app/files/src/layout/components/Sidebar/index.vue +79 -79
  160. package/templates/vue-app/files/src/layout/components/TagsView/ScrollPane.vue +90 -90
  161. package/templates/vue-app/files/src/layout/components/TagsView/index.vue +299 -299
  162. package/templates/vue-app/files/src/layout/components/index.js +5 -5
  163. package/templates/vue-app/files/src/layout/index.vue +119 -119
  164. package/templates/vue-app/files/src/layout/mixin/ResizeHandler.js +45 -45
  165. package/templates/vue-app/files/src/main.js +89 -89
  166. package/templates/vue-app/files/src/mixins/crud.js +348 -348
  167. package/templates/vue-app/files/src/router/index.js +156 -156
  168. package/templates/vue-app/files/src/router/routers.js +203 -203
  169. package/templates/vue-app/files/src/settings.js +57 -57
  170. package/templates/vue-app/files/src/store/getters.js +29 -29
  171. package/templates/vue-app/files/src/store/index.js +25 -25
  172. package/templates/vue-app/files/src/store/modules/api.js +33 -33
  173. package/templates/vue-app/files/src/store/modules/app.js +55 -55
  174. package/templates/vue-app/files/src/store/modules/permission.js +79 -79
  175. package/templates/vue-app/files/src/store/modules/register.js +17 -17
  176. package/templates/vue-app/files/src/store/modules/settings.js +46 -46
  177. package/templates/vue-app/files/src/store/modules/tagsView.js +168 -168
  178. package/templates/vue-app/files/src/store/modules/user.js +119 -119
  179. package/templates/vue-app/files/src/utils/auth.js +18 -18
  180. package/templates/vue-app/files/src/utils/base64ToFile.js +27 -27
  181. package/templates/vue-app/files/src/utils/clipboard.js +36 -36
  182. package/templates/vue-app/files/src/utils/datetime.js +289 -289
  183. package/templates/vue-app/files/src/utils/getBlobFile.js +10 -10
  184. package/templates/vue-app/files/src/utils/getTime.js +29 -29
  185. package/templates/vue-app/files/src/utils/index.js +520 -520
  186. package/templates/vue-app/files/src/utils/permission.js +29 -29
  187. package/templates/vue-app/files/src/utils/pinyin.js +450 -450
  188. package/templates/vue-app/files/src/utils/request.js +139 -139
  189. package/templates/vue-app/files/src/utils/rsaEncrypt.js +37 -37
  190. package/templates/vue-app/files/src/utils/shortcuts.js +210 -210
  191. package/templates/vue-app/files/src/utils/upload.js +12 -12
  192. package/templates/vue-app/files/src/utils/validate.js +262 -262
  193. package/templates/vue-app/files/src/views/components/Echarts.vue +124 -124
  194. package/templates/vue-app/files/src/views/components/Editor.vue +75 -75
  195. package/templates/vue-app/files/src/views/components/MarkDown.vue +44 -44
  196. package/templates/vue-app/files/src/views/components/UVideo.vue +37 -37
  197. package/templates/vue-app/files/src/views/components/YamlEdit.vue +206 -206
  198. package/templates/vue-app/files/src/views/components/camera/camera.vue +115 -115
  199. package/templates/vue-app/files/src/views/components/camera/cameraTest.vue +158 -158
  200. package/templates/vue-app/files/src/views/components/excel/upload-excel.vue +41 -41
  201. package/templates/vue-app/files/src/views/components/icons/element-icons.js +74 -74
  202. package/templates/vue-app/files/src/views/components/icons/index.vue +106 -106
  203. package/templates/vue-app/files/src/views/components/icons/svg-icons.js +10 -10
  204. package/templates/vue-app/files/src/views/components/scroll/index.vue +107 -107
  205. package/templates/vue-app/files/src/views/components/scrollFull/index.vue +99 -99
  206. package/templates/vue-app/files/src/views/dashboard/LineChart.vue +138 -138
  207. package/templates/vue-app/files/src/views/dashboard/PanelGroup.vue +173 -173
  208. package/templates/vue-app/files/src/views/dashboard/mixins/resize.js +57 -57
  209. package/templates/vue-app/files/src/views/dataArchive/delTable.vue +354 -354
  210. package/templates/vue-app/files/src/views/dataArchive/exportDetail.vue +121 -121
  211. package/templates/vue-app/files/src/views/dataArchive/exportList.vue +160 -160
  212. package/templates/vue-app/files/src/views/dataArchive/index.vue +2104 -2104
  213. package/templates/vue-app/files/src/views/features/401.vue +83 -83
  214. package/templates/vue-app/files/src/views/features/404.vue +226 -226
  215. package/templates/vue-app/files/src/views/features/redirect.vue +12 -12
  216. package/templates/vue-app/files/src/views/generator/config.vue +348 -348
  217. package/templates/vue-app/files/src/views/generator/index.vue +143 -143
  218. package/templates/vue-app/files/src/views/generator/preview.vue +39 -39
  219. package/templates/vue-app/files/src/views/home.vue +80 -80
  220. package/templates/vue-app/files/src/views/indexManagement/index.vue +422 -422
  221. package/templates/vue-app/files/src/views/indexManagement/other.vue +286 -286
  222. package/templates/vue-app/files/src/views/institutionMonitor/components/LineChart.vue +191 -191
  223. package/templates/vue-app/files/src/views/institutionMonitor/index.scss +339 -339
  224. package/templates/vue-app/files/src/views/institutionMonitor/index.vue +1385 -1385
  225. package/templates/vue-app/files/src/views/institutionMonitor/mixins/resize.js +57 -57
  226. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/checkProjectCode.vue +267 -267
  227. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/imageAbnormalMonitor.vue +361 -361
  228. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/index.vue +686 -686
  229. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/leakageAnomaly.vue +270 -270
  230. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/moveMonitore.vue +114 -114
  231. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/qualityMonitore.vue +338 -338
  232. package/templates/vue-app/files/src/views/institutionSet/cloudSet.vue +534 -534
  233. package/templates/vue-app/files/src/views/institutionSet/index.vue +2550 -2550
  234. package/templates/vue-app/files/src/views/login.vue +243 -243
  235. package/templates/vue-app/files/src/views/qualityLogin.vue +280 -280
  236. package/templates/vue-app/files/src/views/selfStatistics/components/LineChart.vue +296 -296
  237. package/templates/vue-app/files/src/views/selfStatistics/hospitalDetail/index.vue +533 -533
  238. package/templates/vue-app/files/src/views/selfStatistics/index.scss +447 -447
  239. package/templates/vue-app/files/src/views/selfStatistics/index.vue +903 -903
  240. package/templates/vue-app/files/src/views/selfStatistics/mixins/resize.js +57 -57
  241. package/templates/vue-app/files/src/views/selfStatistics/monitorDetail/index.vue +285 -285
  242. package/templates/vue-app/files/src/views/selfStatistics/offlineDetail/index.vue +104 -104
  243. package/templates/vue-app/files/src/views/selfStatistics/selfActiveDetail/index.vue +104 -104
  244. package/templates/vue-app/files/src/views/selfStatistics/selfMonitorDetail/index.vue +420 -420
  245. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/setWaterMark.js +68 -68
  246. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/waterMark.vue +69 -69
  247. package/templates/vue-app/files/src/views/system/dept/index.vue +144 -144
  248. package/templates/vue-app/files/src/views/system/dict/dictDetail.vue +146 -146
  249. package/templates/vue-app/files/src/views/system/dict/index.vue +159 -159
  250. package/templates/vue-app/files/src/views/system/examModality/index.vue +174 -174
  251. package/templates/vue-app/files/src/views/system/examPart/index.vue +184 -184
  252. package/templates/vue-app/files/src/views/system/examProject/index.vue +321 -321
  253. package/templates/vue-app/files/src/views/system/examine/index.vue +66 -66
  254. package/templates/vue-app/files/src/views/system/job/index.vue +119 -119
  255. package/templates/vue-app/files/src/views/system/job/module/form.vue +72 -72
  256. package/templates/vue-app/files/src/views/system/job/module/header.vue +48 -48
  257. package/templates/vue-app/files/src/views/system/menu/index.vue +327 -327
  258. package/templates/vue-app/files/src/views/system/model/index.vue +285 -285
  259. package/templates/vue-app/files/src/views/system/role/index.vue +434 -434
  260. package/templates/vue-app/files/src/views/system/sysSet/index.vue +84 -84
  261. package/templates/vue-app/files/src/views/system/timing/index.vue +289 -289
  262. package/templates/vue-app/files/src/views/system/timing/log.vue +143 -143
  263. package/templates/vue-app/files/src/views/system/user/admin.vue +414 -414
  264. package/templates/vue-app/files/src/views/system/user/center/updateEmail.vue +146 -146
  265. package/templates/vue-app/files/src/views/system/user/center/updatePass.vue +168 -168
  266. package/templates/vue-app/files/src/views/system/user/center.vue +140 -140
  267. package/templates/vue-app/files/src/views/system/user/index.vue +972 -972
  268. package/templates/vue-app/files/src/views/systemSet/role/index.vue +314 -314
  269. package/templates/vue-app/files/src/views/systemSet/user/admin.vue +414 -414
  270. package/templates/vue-app/files/src/views/systemSet/user/center/updateEmail.vue +146 -146
  271. package/templates/vue-app/files/src/views/systemSet/user/center/updatePass.vue +115 -115
  272. package/templates/vue-app/files/src/views/systemSet/user/center.vue +351 -351
  273. package/templates/vue-app/files/src/views/systemSet/user/index.vue +928 -928
  274. package/templates/vue-app/files/src/views/tools/aliPay/config.vue +102 -102
  275. package/templates/vue-app/files/src/views/tools/aliPay/index.vue +48 -48
  276. package/templates/vue-app/files/src/views/tools/aliPay/toPay.vue +91 -91
  277. package/templates/vue-app/files/src/views/tools/email/config.vue +91 -91
  278. package/templates/vue-app/files/src/views/tools/email/index.vue +42 -42
  279. package/templates/vue-app/files/src/views/tools/email/send.vue +159 -159
  280. package/templates/vue-app/files/src/views/tools/storage/index.vue +35 -35
  281. package/templates/vue-app/files/src/views/tools/storage/local/index.vue +207 -207
  282. package/templates/vue-app/files/src/views/tools/storage/qiniu/form.vue +108 -108
  283. package/templates/vue-app/files/src/views/tools/storage/qiniu/index.vue +241 -241
  284. package/templates/vue-app/files/src/views/tools/swagger/index.vue +14 -14
  285. package/templates/vue-app/files/vue.config.js +173 -173
  286. package/templates/vue-app/template.json +29 -29
@@ -1,93 +1,93 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 25.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 854.8 341.1" style="enable-background:new 0 0 854.8 341.1;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:url(#XMLID_2_);}
7
- .st1{fill:url(#SVGID_1_);}
8
- .st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
9
- .st3{fill:#025FA1;}
10
- </style>
11
- <g>
12
- <g>
13
-
14
- <linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="139.6762" y1="55.9269" x2="21.5296" y2="224.6577" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
15
- <stop offset="0.35" style="stop-color:#62BCC3"/>
16
- <stop offset="0.65" style="stop-color:#91CDF1"/>
17
- </linearGradient>
18
- <path id="XMLID_88_" class="st0" d="M23.4,209.1V103.5h79.3v105.9c0,37,23.7,52.3,63.8,42.2C122.4,305.9,23.4,264.7,23.4,209.1
19
- L23.4,209.1z"/>
20
-
21
- <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="230.9942" y1="31.7458" x2="125.3993" y2="182.5509" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
22
- <stop offset="0" style="stop-color:#182987"/>
23
- <stop offset="0.4" style="stop-color:#036EB7"/>
24
- </linearGradient>
25
- <path class="st1" d="M266.8,103.1v93.2c0,40.3-11,72.5-33.2,96.5c-22.2,24-51.7,35.9-88.4,35.9c-36.8,0-66.3-12-88.5-35.9
26
- c-11.1-12-19.4-26-24.9-42.1C95.1,313,190.1,281.3,188,209V103.1L266.8,103.1L266.8,103.1z"/>
27
-
28
- <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.1753" y1="315.5796" x2="80.9828" y2="238.79" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
29
- <stop offset="0.25" style="stop-color:#62BCC3"/>
30
- <stop offset="0.75" style="stop-color:#91CDF1"/>
31
- </linearGradient>
32
- <polygon class="st2" points="23.4,37 47.7,37 47.7,12.8 78.4,12.8 78.4,37 102.7,37 102.7,67.7 78.4,67.7 78.4,91.9 47.7,91.9
33
- 47.7,67.7 23.4,67.7 "/>
34
- </g>
35
- <g>
36
- <path class="st3" d="M394.1,163v3.7h32.7V179h-88.1v-12.3h32.5V163H341v-47.9h83.6v32c0,2-0.4,4.1-1.3,6.2c-0.9,2-2,3.7-3.4,5.1
37
- c-1.5,1.5-3.2,2.5-5.2,3.2c-1.8,0.9-3.8,1.3-6,1.3L394.1,163L394.1,163z M355.2,237h-16.5l5.5-20.6h16.7L355.2,237z M363.9,224.6
38
- c0.2,0,0.6,0,1.2-0.1c0.6-0.1,1.3-0.1,2-0.2c0.8-0.1,1.4-0.1,2-0.2c0.6-0.1,1-0.2,1.2-0.3c0.5-0.9,0.8-1.7,0.8-2.3v-8.9l-30.2,0
39
- l0-30.5h83.6v14.7c0,1-0.1,2.1-0.4,3.1c-0.3,1.1-0.6,2.1-0.9,3c-0.5,1-1,1.9-1.5,2.8c-0.6,0.8-1.2,1.6-1.9,2.3
40
- c-1.5,1.3-3.2,2.5-5.2,3.4c-1.8,0.9-3.8,1.3-6,1.3h-14.5v6.1c0,2.9-0.4,5.4-1.3,7.4c-0.9,2.2-2.2,4.2-4,5.7
41
- c-1.5,1.5-3.5,2.8-5.9,4c-2.2,0.9-4.7,1.4-7.3,1.4H360L363.9,224.6z M363.8,201.5h35.4c0.7,0,1.2-0.3,1.7-0.8
42
- c0.6-0.4,0.8-1,0.8-1.7v-4.4h-37.9L363.8,201.5L363.8,201.5z M363.9,133.4h37.7v-4h-37.7V133.4z M363.9,150.6h35.2
43
- c0.6,0,1.1-0.3,1.7-0.8c0.6-0.3,0.8-1,0.8-1.9v-2.2h-37.7V150.6z M424.6,237h-16.8l-5.4-20.6h16.5L424.6,237z M461.2,115.2H489
44
- l-32.2,40.5h-27.3L461.2,115.2z M461.2,155.8H489l-32.2,40.6h-27.3L461.2,155.8z M461.2,196.4H489l-32.2,40.3h-27.3L461.2,196.4z"
45
- />
46
- <path class="st3" d="M572.5,115.3v15.2h-4.2v75.3l4.2-0.5v15l-4.2,0.5V237h-19.9v-13.8l-37.9,4.5v-15.2l4.2-0.5v-81.6h-4.2v-15.2
47
- h4.2h19.7h14h19.9L572.5,115.3L572.5,115.3z M548.4,130.5h-14v16.7h14V130.5z M548.4,162.3h-14v15.5h14V162.3z M548.4,208.2V193
48
- h-14v16.7L548.4,208.2z M624.9,181.6h33.5v15.2h-37.3L601,237h-22.9l20.4-40.3H575v-15.2h28.1V148H575v-15h12.3l-6.2-17.7H602
49
- l6.4,17.7h16.7l6.4-17.7h21.1l-6.4,17.7h12.3v15h-33.5V181.6z M642.3,201.8l16.2,35.2h-21.4l-16.2-35.2H642.3z"/>
50
- <path class="st3" d="M829.2,218.5c0,2.6-0.5,5-1.4,7.2c-1,2.2-2.3,4.1-3.9,5.8c-1.7,1.7-3.7,3-5.9,4c-2.2,1-4.7,1.4-7.2,1.4h-19
51
- l6.9-16.7h3.5c1.6,0,2.9-0.5,3.9-1.5c1-1,1.5-2.2,1.5-3.7v-77.7c0-1.5-0.5-2.7-1.5-3.7c-1-1-2.3-1.5-3.9-1.5h-99.3v104.9h-21.7
52
- V115.3h129.6c2.6,0,5,0.5,7.2,1.4c2.2,1,4.2,2.3,5.9,4c1.7,1.7,3,3.6,3.9,5.9c0.9,2.3,1.4,4.7,1.4,7.3L829.2,218.5L829.2,218.5z
53
- M752.4,141.3c-0.9,5-2.1,10-3.7,14.9c-1.6,4.9-3.1,9.3-4.7,13.2c-1.9,4.5-3.9,8.8-5.9,13c1.7,2.7,3.6,5.4,5.7,8.1
54
- c2.1,2.7,4.3,5.3,6.8,7.9v20c-4.4-2.9-8.4-6.2-12-9.8c-3.6-3.6-6.8-7.4-9.8-11.3c-2.9,3.9-6.2,7.7-9.8,11.3
55
- c-3.6,3.6-7.6,6.8-12.1,9.8v-20c2.6-2.6,4.9-5.2,6.9-7.9c2-2.7,3.9-5.4,5.8-8.1c-2-4.2-4-8.5-5.9-13c-1.6-4-3.1-8.3-4.7-13.2
56
- s-2.8-9.9-3.7-14.9h16c0.4,2.6,1.1,5.3,1.9,8.1c0.8,2.8,1.7,5.3,2.6,7.6c1,2.7,2,5.3,3,7.9c1-2.6,2-5.2,3-7.9
57
- c0.9-2.2,1.8-4.8,2.5-7.6c0.8-2.8,1.4-5.5,1.8-8.1H752.4z M756.9,198.4c2.5-2.6,4.7-5.2,6.8-7.9c2.1-2.7,4-5.4,5.6-8.1
58
- c-2-4.2-4-8.5-5.9-13c-1.6-4-3.2-8.3-4.7-13.2c-1.6-4.9-2.8-9.9-3.7-14.9h16.2c0.5,2.6,1.1,5.3,1.8,8.1c0.8,2.8,1.7,5.3,2.5,7.6
59
- c1,2.7,2,5.3,3,7.9c1.1-2.6,2.2-5.2,3.2-7.9c0.9-2.2,1.7-4.8,2.5-7.6c0.8-2.8,1.4-5.5,1.8-8.1h16c-0.9,5-2.1,10-3.7,14.9
60
- c-1.6,4.9-3.1,9.3-4.7,13.2c-1.9,4.5-3.9,8.8-5.9,13c1.8,2.7,3.7,5.4,5.7,8.1c2,2.7,4.3,5.3,6.9,7.9v20c-4.4-2.9-8.4-6.2-12.1-9.8
61
- c-3.7-3.6-6.9-7.4-9.9-11.3c-2.9,3.9-6.2,7.7-9.8,11.3c-3.6,3.6-7.6,6.8-12,9.8L756.9,198.4L756.9,198.4z"/>
62
- </g>
63
- <g>
64
- <path class="st3" d="M341,313.1v-45.2h9.1v45.2H341z"/>
65
- <path class="st3" d="M358.6,313.1v-45.2h13.6l8.2,30.8l8.1-30.8h13.7v45.2h-8.5v-35.5l-9,35.5H376l-8.9-35.5v35.5H358.6z"/>
66
- <path class="st3" d="M452,313.1h-9.9l-3.9-10.3h-18l-3.7,10.3h-9.7l17.6-45.2h9.7L452,313.1z M435.3,295.2l-6.2-16.8l-6.1,16.8
67
- H435.3z"/>
68
- <path class="st3" d="M477.9,296.5v-7.6h19.7v18c-1.9,1.8-4.7,3.5-8.3,4.9c-3.6,1.4-7.3,2.1-11,2.1c-4.7,0-8.8-1-12.4-3
69
- c-3.5-2-6.2-4.8-7.9-8.5c-1.8-3.7-2.7-7.7-2.7-12c0-4.7,1-8.9,3-12.5c2-3.7,4.8-6.5,8.7-8.4c2.9-1.5,6.5-2.3,10.8-2.3
70
- c5.6,0,10,1.2,13.2,3.5c3.2,2.3,5.2,5.6,6.1,9.8l-9.1,1.7c-0.6-2.2-1.8-4-3.6-5.2c-1.8-1.3-3.9-1.9-6.6-1.9c-4,0-7.2,1.3-9.5,3.8
71
- c-2.4,2.5-3.5,6.3-3.5,11.2c0,5.4,1.2,9.4,3.6,12c2.4,2.7,5.5,4,9.4,4c1.9,0,3.8-0.4,5.8-1.1c1.9-0.7,3.6-1.6,4.9-2.7v-5.7H477.9z
72
- "/>
73
- <path class="st3" d="M505.7,313.1v-45.2h9.1v45.2H505.7z"/>
74
- <path class="st3" d="M523.6,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.1L532,283.6v29.5H523.6z"/>
75
- <path class="st3" d="M590,296.5v-7.6h19.7v18c-1.9,1.8-4.7,3.5-8.3,4.9c-3.6,1.4-7.3,2.1-11,2.1c-4.7,0-8.8-1-12.4-3
76
- c-3.5-2-6.2-4.8-7.9-8.5c-1.8-3.7-2.7-7.7-2.7-12c0-4.7,1-8.9,2.9-12.5c2-3.7,4.9-6.5,8.7-8.4c2.9-1.5,6.5-2.3,10.8-2.3
77
- c5.6,0,10,1.2,13.1,3.5c3.2,2.3,5.2,5.6,6.1,9.8l-9.1,1.7c-0.6-2.2-1.8-4-3.6-5.2s-3.9-1.9-6.6-1.9c-4,0-7.1,1.3-9.5,3.8
78
- c-2.4,2.5-3.5,6.3-3.5,11.2c0,5.4,1.2,9.4,3.6,12s5.5,4,9.4,4c1.9,0,3.8-0.4,5.8-1.1c1.9-0.7,3.6-1.6,4.9-2.7v-5.7H590z"/>
79
- <path class="st3" d="M635.6,267.9h9.1v24.5c0,3.9,0.1,6.4,0.3,7.6c0.4,1.8,1.3,3.3,2.8,4.4c1.5,1.1,3.5,1.7,6,1.7
80
- c2.6,0,4.5-0.5,5.9-1.6c1.3-1.1,2.1-2.4,2.4-3.9c0.3-1.5,0.4-4.1,0.4-7.7v-25h9.1v23.7c0,5.4-0.2,9.3-0.7,11.5
81
- c-0.5,2.2-1.4,4.1-2.7,5.7c-1.3,1.5-3.1,2.8-5.3,3.7c-2.2,0.9-5.1,1.3-8.7,1.3c-4.3,0-7.6-0.5-9.8-1.5c-2.2-1-4-2.3-5.3-3.9
82
- c-1.3-1.6-2.1-3.3-2.6-5c-0.6-2.6-0.9-6.4-0.9-11.5L635.6,267.9L635.6,267.9z"/>
83
- <path class="st3" d="M681.3,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.1l-18.2-29.5v29.5H681.3z"/>
84
- <path class="st3" d="M726.5,313.1v-45.2h9.1v45.2H726.5z"/>
85
- <path class="st3" d="M742.4,290.8c0-4.6,0.7-8.5,2.1-11.6c1-2.3,2.4-4.4,4.2-6.2c1.8-1.8,3.7-3.2,5.8-4c2.8-1.2,6.1-1.8,9.7-1.8
86
- c6.6,0,12,2.1,16,6.2c4,4.1,6,9.9,6,17.2c0,7.3-2,13-5.9,17.1c-4,4.1-9.3,6.2-15.9,6.2c-6.7,0-12.1-2-16-6.1
87
- C744.4,303.6,742.4,297.9,742.4,290.8z M751.8,290.4c0,5.1,1.2,9,3.5,11.6c2.4,2.6,5.4,4,9,4s6.6-1.3,8.9-3.9
88
- c2.3-2.6,3.5-6.5,3.5-11.8c0-5.2-1.1-9-3.4-11.6c-2.3-2.5-5.3-3.8-9.1-3.8c-3.8,0-6.8,1.3-9.1,3.9
89
- C753,281.4,751.8,285.3,751.8,290.4z"/>
90
- <path class="st3" d="M793.4,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.2l-18.2-29.5v29.5H793.4z"/>
91
- </g>
92
- </g>
93
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 854.8 341.1" style="enable-background:new 0 0 854.8 341.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:url(#XMLID_2_);}
7
+ .st1{fill:url(#SVGID_1_);}
8
+ .st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
9
+ .st3{fill:#025FA1;}
10
+ </style>
11
+ <g>
12
+ <g>
13
+
14
+ <linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="139.6762" y1="55.9269" x2="21.5296" y2="224.6577" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
15
+ <stop offset="0.35" style="stop-color:#62BCC3"/>
16
+ <stop offset="0.65" style="stop-color:#91CDF1"/>
17
+ </linearGradient>
18
+ <path id="XMLID_88_" class="st0" d="M23.4,209.1V103.5h79.3v105.9c0,37,23.7,52.3,63.8,42.2C122.4,305.9,23.4,264.7,23.4,209.1
19
+ L23.4,209.1z"/>
20
+
21
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="230.9942" y1="31.7458" x2="125.3993" y2="182.5509" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
22
+ <stop offset="0" style="stop-color:#182987"/>
23
+ <stop offset="0.4" style="stop-color:#036EB7"/>
24
+ </linearGradient>
25
+ <path class="st1" d="M266.8,103.1v93.2c0,40.3-11,72.5-33.2,96.5c-22.2,24-51.7,35.9-88.4,35.9c-36.8,0-66.3-12-88.5-35.9
26
+ c-11.1-12-19.4-26-24.9-42.1C95.1,313,190.1,281.3,188,209V103.1L266.8,103.1L266.8,103.1z"/>
27
+
28
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.1753" y1="315.5796" x2="80.9828" y2="238.79" gradientTransform="matrix(1 0 0 -1 0 329.5319)">
29
+ <stop offset="0.25" style="stop-color:#62BCC3"/>
30
+ <stop offset="0.75" style="stop-color:#91CDF1"/>
31
+ </linearGradient>
32
+ <polygon class="st2" points="23.4,37 47.7,37 47.7,12.8 78.4,12.8 78.4,37 102.7,37 102.7,67.7 78.4,67.7 78.4,91.9 47.7,91.9
33
+ 47.7,67.7 23.4,67.7 "/>
34
+ </g>
35
+ <g>
36
+ <path class="st3" d="M394.1,163v3.7h32.7V179h-88.1v-12.3h32.5V163H341v-47.9h83.6v32c0,2-0.4,4.1-1.3,6.2c-0.9,2-2,3.7-3.4,5.1
37
+ c-1.5,1.5-3.2,2.5-5.2,3.2c-1.8,0.9-3.8,1.3-6,1.3L394.1,163L394.1,163z M355.2,237h-16.5l5.5-20.6h16.7L355.2,237z M363.9,224.6
38
+ c0.2,0,0.6,0,1.2-0.1c0.6-0.1,1.3-0.1,2-0.2c0.8-0.1,1.4-0.1,2-0.2c0.6-0.1,1-0.2,1.2-0.3c0.5-0.9,0.8-1.7,0.8-2.3v-8.9l-30.2,0
39
+ l0-30.5h83.6v14.7c0,1-0.1,2.1-0.4,3.1c-0.3,1.1-0.6,2.1-0.9,3c-0.5,1-1,1.9-1.5,2.8c-0.6,0.8-1.2,1.6-1.9,2.3
40
+ c-1.5,1.3-3.2,2.5-5.2,3.4c-1.8,0.9-3.8,1.3-6,1.3h-14.5v6.1c0,2.9-0.4,5.4-1.3,7.4c-0.9,2.2-2.2,4.2-4,5.7
41
+ c-1.5,1.5-3.5,2.8-5.9,4c-2.2,0.9-4.7,1.4-7.3,1.4H360L363.9,224.6z M363.8,201.5h35.4c0.7,0,1.2-0.3,1.7-0.8
42
+ c0.6-0.4,0.8-1,0.8-1.7v-4.4h-37.9L363.8,201.5L363.8,201.5z M363.9,133.4h37.7v-4h-37.7V133.4z M363.9,150.6h35.2
43
+ c0.6,0,1.1-0.3,1.7-0.8c0.6-0.3,0.8-1,0.8-1.9v-2.2h-37.7V150.6z M424.6,237h-16.8l-5.4-20.6h16.5L424.6,237z M461.2,115.2H489
44
+ l-32.2,40.5h-27.3L461.2,115.2z M461.2,155.8H489l-32.2,40.6h-27.3L461.2,155.8z M461.2,196.4H489l-32.2,40.3h-27.3L461.2,196.4z"
45
+ />
46
+ <path class="st3" d="M572.5,115.3v15.2h-4.2v75.3l4.2-0.5v15l-4.2,0.5V237h-19.9v-13.8l-37.9,4.5v-15.2l4.2-0.5v-81.6h-4.2v-15.2
47
+ h4.2h19.7h14h19.9L572.5,115.3L572.5,115.3z M548.4,130.5h-14v16.7h14V130.5z M548.4,162.3h-14v15.5h14V162.3z M548.4,208.2V193
48
+ h-14v16.7L548.4,208.2z M624.9,181.6h33.5v15.2h-37.3L601,237h-22.9l20.4-40.3H575v-15.2h28.1V148H575v-15h12.3l-6.2-17.7H602
49
+ l6.4,17.7h16.7l6.4-17.7h21.1l-6.4,17.7h12.3v15h-33.5V181.6z M642.3,201.8l16.2,35.2h-21.4l-16.2-35.2H642.3z"/>
50
+ <path class="st3" d="M829.2,218.5c0,2.6-0.5,5-1.4,7.2c-1,2.2-2.3,4.1-3.9,5.8c-1.7,1.7-3.7,3-5.9,4c-2.2,1-4.7,1.4-7.2,1.4h-19
51
+ l6.9-16.7h3.5c1.6,0,2.9-0.5,3.9-1.5c1-1,1.5-2.2,1.5-3.7v-77.7c0-1.5-0.5-2.7-1.5-3.7c-1-1-2.3-1.5-3.9-1.5h-99.3v104.9h-21.7
52
+ V115.3h129.6c2.6,0,5,0.5,7.2,1.4c2.2,1,4.2,2.3,5.9,4c1.7,1.7,3,3.6,3.9,5.9c0.9,2.3,1.4,4.7,1.4,7.3L829.2,218.5L829.2,218.5z
53
+ M752.4,141.3c-0.9,5-2.1,10-3.7,14.9c-1.6,4.9-3.1,9.3-4.7,13.2c-1.9,4.5-3.9,8.8-5.9,13c1.7,2.7,3.6,5.4,5.7,8.1
54
+ c2.1,2.7,4.3,5.3,6.8,7.9v20c-4.4-2.9-8.4-6.2-12-9.8c-3.6-3.6-6.8-7.4-9.8-11.3c-2.9,3.9-6.2,7.7-9.8,11.3
55
+ c-3.6,3.6-7.6,6.8-12.1,9.8v-20c2.6-2.6,4.9-5.2,6.9-7.9c2-2.7,3.9-5.4,5.8-8.1c-2-4.2-4-8.5-5.9-13c-1.6-4-3.1-8.3-4.7-13.2
56
+ s-2.8-9.9-3.7-14.9h16c0.4,2.6,1.1,5.3,1.9,8.1c0.8,2.8,1.7,5.3,2.6,7.6c1,2.7,2,5.3,3,7.9c1-2.6,2-5.2,3-7.9
57
+ c0.9-2.2,1.8-4.8,2.5-7.6c0.8-2.8,1.4-5.5,1.8-8.1H752.4z M756.9,198.4c2.5-2.6,4.7-5.2,6.8-7.9c2.1-2.7,4-5.4,5.6-8.1
58
+ c-2-4.2-4-8.5-5.9-13c-1.6-4-3.2-8.3-4.7-13.2c-1.6-4.9-2.8-9.9-3.7-14.9h16.2c0.5,2.6,1.1,5.3,1.8,8.1c0.8,2.8,1.7,5.3,2.5,7.6
59
+ c1,2.7,2,5.3,3,7.9c1.1-2.6,2.2-5.2,3.2-7.9c0.9-2.2,1.7-4.8,2.5-7.6c0.8-2.8,1.4-5.5,1.8-8.1h16c-0.9,5-2.1,10-3.7,14.9
60
+ c-1.6,4.9-3.1,9.3-4.7,13.2c-1.9,4.5-3.9,8.8-5.9,13c1.8,2.7,3.7,5.4,5.7,8.1c2,2.7,4.3,5.3,6.9,7.9v20c-4.4-2.9-8.4-6.2-12.1-9.8
61
+ c-3.7-3.6-6.9-7.4-9.9-11.3c-2.9,3.9-6.2,7.7-9.8,11.3c-3.6,3.6-7.6,6.8-12,9.8L756.9,198.4L756.9,198.4z"/>
62
+ </g>
63
+ <g>
64
+ <path class="st3" d="M341,313.1v-45.2h9.1v45.2H341z"/>
65
+ <path class="st3" d="M358.6,313.1v-45.2h13.6l8.2,30.8l8.1-30.8h13.7v45.2h-8.5v-35.5l-9,35.5H376l-8.9-35.5v35.5H358.6z"/>
66
+ <path class="st3" d="M452,313.1h-9.9l-3.9-10.3h-18l-3.7,10.3h-9.7l17.6-45.2h9.7L452,313.1z M435.3,295.2l-6.2-16.8l-6.1,16.8
67
+ H435.3z"/>
68
+ <path class="st3" d="M477.9,296.5v-7.6h19.7v18c-1.9,1.8-4.7,3.5-8.3,4.9c-3.6,1.4-7.3,2.1-11,2.1c-4.7,0-8.8-1-12.4-3
69
+ c-3.5-2-6.2-4.8-7.9-8.5c-1.8-3.7-2.7-7.7-2.7-12c0-4.7,1-8.9,3-12.5c2-3.7,4.8-6.5,8.7-8.4c2.9-1.5,6.5-2.3,10.8-2.3
70
+ c5.6,0,10,1.2,13.2,3.5c3.2,2.3,5.2,5.6,6.1,9.8l-9.1,1.7c-0.6-2.2-1.8-4-3.6-5.2c-1.8-1.3-3.9-1.9-6.6-1.9c-4,0-7.2,1.3-9.5,3.8
71
+ c-2.4,2.5-3.5,6.3-3.5,11.2c0,5.4,1.2,9.4,3.6,12c2.4,2.7,5.5,4,9.4,4c1.9,0,3.8-0.4,5.8-1.1c1.9-0.7,3.6-1.6,4.9-2.7v-5.7H477.9z
72
+ "/>
73
+ <path class="st3" d="M505.7,313.1v-45.2h9.1v45.2H505.7z"/>
74
+ <path class="st3" d="M523.6,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.1L532,283.6v29.5H523.6z"/>
75
+ <path class="st3" d="M590,296.5v-7.6h19.7v18c-1.9,1.8-4.7,3.5-8.3,4.9c-3.6,1.4-7.3,2.1-11,2.1c-4.7,0-8.8-1-12.4-3
76
+ c-3.5-2-6.2-4.8-7.9-8.5c-1.8-3.7-2.7-7.7-2.7-12c0-4.7,1-8.9,2.9-12.5c2-3.7,4.9-6.5,8.7-8.4c2.9-1.5,6.5-2.3,10.8-2.3
77
+ c5.6,0,10,1.2,13.1,3.5c3.2,2.3,5.2,5.6,6.1,9.8l-9.1,1.7c-0.6-2.2-1.8-4-3.6-5.2s-3.9-1.9-6.6-1.9c-4,0-7.1,1.3-9.5,3.8
78
+ c-2.4,2.5-3.5,6.3-3.5,11.2c0,5.4,1.2,9.4,3.6,12s5.5,4,9.4,4c1.9,0,3.8-0.4,5.8-1.1c1.9-0.7,3.6-1.6,4.9-2.7v-5.7H590z"/>
79
+ <path class="st3" d="M635.6,267.9h9.1v24.5c0,3.9,0.1,6.4,0.3,7.6c0.4,1.8,1.3,3.3,2.8,4.4c1.5,1.1,3.5,1.7,6,1.7
80
+ c2.6,0,4.5-0.5,5.9-1.6c1.3-1.1,2.1-2.4,2.4-3.9c0.3-1.5,0.4-4.1,0.4-7.7v-25h9.1v23.7c0,5.4-0.2,9.3-0.7,11.5
81
+ c-0.5,2.2-1.4,4.1-2.7,5.7c-1.3,1.5-3.1,2.8-5.3,3.7c-2.2,0.9-5.1,1.3-8.7,1.3c-4.3,0-7.6-0.5-9.8-1.5c-2.2-1-4-2.3-5.3-3.9
82
+ c-1.3-1.6-2.1-3.3-2.6-5c-0.6-2.6-0.9-6.4-0.9-11.5L635.6,267.9L635.6,267.9z"/>
83
+ <path class="st3" d="M681.3,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.1l-18.2-29.5v29.5H681.3z"/>
84
+ <path class="st3" d="M726.5,313.1v-45.2h9.1v45.2H726.5z"/>
85
+ <path class="st3" d="M742.4,290.8c0-4.6,0.7-8.5,2.1-11.6c1-2.3,2.4-4.4,4.2-6.2c1.8-1.8,3.7-3.2,5.8-4c2.8-1.2,6.1-1.8,9.7-1.8
86
+ c6.6,0,12,2.1,16,6.2c4,4.1,6,9.9,6,17.2c0,7.3-2,13-5.9,17.1c-4,4.1-9.3,6.2-15.9,6.2c-6.7,0-12.1-2-16-6.1
87
+ C744.4,303.6,742.4,297.9,742.4,290.8z M751.8,290.4c0,5.1,1.2,9,3.5,11.6c2.4,2.6,5.4,4,9,4s6.6-1.3,8.9-3.9
88
+ c2.3-2.6,3.5-6.5,3.5-11.8c0-5.2-1.1-9-3.4-11.6c-2.3-2.5-5.3-3.8-9.1-3.8c-3.8,0-6.8,1.3-9.1,3.9
89
+ C753,281.4,751.8,285.3,751.8,290.4z"/>
90
+ <path class="st3" d="M793.4,313.1v-45.2h8.9l18.5,30.2v-30.2h8.5v45.2h-9.2l-18.2-29.5v29.5H793.4z"/>
91
+ </g>
92
+ </g>
93
+ </svg>
@@ -1,96 +1,96 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 25.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 485.1 575" style="enable-background:new 0 0 485.1 575;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:url(#XMLID_2_);}
7
- .st1{fill:url(#SVGID_1_);}
8
- .st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
9
- .st3{fill:#025FA1;}
10
- </style>
11
- <g>
12
- <g>
13
-
14
- <linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="238.1866" y1="322.8901" x2="121.4416" y2="489.6191" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
15
- <stop offset="0.35" style="stop-color:#62BCC3"/>
16
- <stop offset="0.65" style="stop-color:#91CDF1"/>
17
- </linearGradient>
18
- <path id="XMLID_72_" class="st0" d="M123.3,206.4V102.1h78.3v104.6c0,36.5,23.4,51.7,63,41.8C221.1,302,123.3,261.3,123.3,206.4
19
- L123.3,206.4z"/>
20
-
21
- <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="328.4109" y1="299.0114" x2="224.0635" y2="448.035" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
22
- <stop offset="0" style="stop-color:#182987"/>
23
- <stop offset="0.4" style="stop-color:#036EB7"/>
24
- </linearGradient>
25
- <path class="st1" d="M363.8,101.7v92.1c0,39.8-10.9,71.7-32.8,95.3c-21.9,23.7-51.1,35.5-87.4,35.5c-36.4,0-65.6-11.8-87.5-35.5
26
- c-11-11.8-19.2-25.7-24.6-41.6c62.6,61.5,156.5,30.1,154.4-41.3V101.7L363.8,101.7L363.8,101.7z"/>
27
-
28
- <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="144.8014" y1="579.4674" x2="180.1864" y2="503.5839" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
29
- <stop offset="0.25" style="stop-color:#62BCC3"/>
30
- <stop offset="0.75" style="stop-color:#91CDF1"/>
31
- </linearGradient>
32
- <polygon class="st2" points="123.3,36.4 147.3,36.4 147.3,12.4 177.6,12.4 177.6,36.4 201.7,36.4 201.7,66.6 177.6,66.6
33
- 177.6,90.6 147.3,90.6 147.3,66.6 123.3,66.6 "/>
34
- </g>
35
- <g>
36
- <path class="st3" d="M65.9,426.1v3.5h30.4V441h-82v-11.4h30.3v-3.5H16.5v-44.5h77.7v29.8c0,1.9-0.4,3.8-1.2,5.8
37
- c-0.8,1.9-1.9,3.5-3.2,4.7c-1.4,1.4-3,2.3-4.9,3c-1.7,0.8-3.5,1.2-5.6,1.2L65.9,426.1L65.9,426.1z M29.7,495H14.3l5.2-19.1H35
38
- L29.7,495z M37.8,483.3c0.2,0,0.6,0,1.2-0.1c0.6,0,1.2-0.1,1.9-0.2c0.7,0,1.3-0.1,1.8-0.2c0.5-0.1,0.9-0.2,1.1-0.3
39
- c0.5-0.8,0.8-1.6,0.8-2.2v-8.3h-28l-0.1-28.4h77.7v13.6c0,0.9-0.1,1.9-0.4,2.9c-0.3,1-0.5,1.9-0.8,2.8c-0.4,0.9-0.9,1.8-1.4,2.6
40
- c-0.5,0.8-1.1,1.5-1.7,2.1c-1.4,1.2-3,2.3-4.9,3.1c-1.7,0.8-3.5,1.2-5.6,1.2H65.9v5.7c0,2.7-0.4,5-1.2,6.9
41
- c-0.9,2.1-2.1,3.9-3.8,5.3c-1.4,1.4-3.2,2.6-5.5,3.8c-2.1,0.8-4.3,1.3-6.7,1.3H34.2L37.8,483.3z M37.7,461.9h32.9
42
- c0.6,0,1.1-0.2,1.6-0.8c0.5-0.4,0.8-0.9,0.8-1.6v-4.1H37.7V461.9z M37.8,398.5H73v-3.8H37.8V398.5z M37.8,414.5h32.8
43
- c0.5,0,1-0.3,1.6-0.8c0.5-0.3,0.8-0.9,0.8-1.7v-2H37.8V414.5z M94.3,495H78.6l-5-19.1h15.4L94.3,495z M128.3,381.6h25.8
44
- l-29.9,37.6H98.8L128.3,381.6z M128.3,419.4h25.8l-29.9,37.8H98.8L128.3,419.4z M128.3,457.2h25.8l-29.9,37.5H98.8L128.3,457.2z"
45
- />
46
- <path class="st3" d="M231.9,381.8v14.1h-3.9v70l3.9-0.5v13.9l-3.9,0.5V495h-18.5v-12.9l-35.3,4.2v-14.1l3.9-0.5v-75.9h-3.9v-14.1
47
- h3.9h18.3h13h18.5H231.9z M209.4,395.9h-13v15.5h13V395.9z M209.4,425.5h-13v14.4h13V425.5z M209.4,468.1V454h-13v15.5
48
- L209.4,468.1z M280.6,443.4h31.2v14.1h-34.6L258.3,495H237l19-37.5h-21.8v-14.1h26.2v-31.2h-26.2v-13.9h11.5l-5.8-16.5h19.4
49
- l6,16.5h15.5l5.9-16.5h19.6l-5.9,16.5h11.4v13.9h-31.2L280.6,443.4L280.6,443.4z M296.7,462.2l15,32.8h-19.9l-15.1-32.8
50
- L296.7,462.2L296.7,462.2z"/>
51
- <path class="st3" d="M470.6,477.7c0,2.4-0.5,4.6-1.3,6.7c-0.9,2-2.1,3.8-3.7,5.4c-1.6,1.6-3.4,2.8-5.5,3.7
52
- c-2.1,0.9-4.3,1.3-6.8,1.3h-17.7l6.4-15.5h3.3c1.4,0,2.7-0.5,3.6-1.4c0.9-0.9,1.4-2.1,1.4-3.4v-72.3c0-1.3-0.5-2.5-1.4-3.4
53
- c-0.9-1-2.2-1.4-3.6-1.4h-92.3v97.5h-20.2v-113h120.5c2.4,0,4.7,0.5,6.8,1.3c2.1,0.9,3.9,2.1,5.5,3.7c1.6,1.6,2.8,3.4,3.7,5.5
54
- c0.9,2.1,1.3,4.3,1.3,6.8L470.6,477.7L470.6,477.7z M399.1,405.9c-0.8,4.7-2,9.3-3.5,13.9c-1.5,4.5-2.9,8.6-4.4,12.3
55
- c-1.8,4.2-3.6,8.2-5.5,12.1c1.6,2.5,3.3,5,5.3,7.5c1.9,2.5,4,5,6.3,7.4v18.7c-4.1-2.7-7.8-5.7-11.1-9.1c-3.3-3.3-6.4-6.8-9.1-10.5
56
- c-2.7,3.7-5.8,7.2-9.1,10.5c-3.3,3.3-7.1,6.4-11.3,9.1V459c2.4-2.4,4.6-4.8,6.4-7.4c1.9-2.5,3.7-5,5.3-7.5
57
- c-1.9-3.9-3.7-7.9-5.5-12.1c-1.5-3.7-2.9-7.8-4.4-12.3c-1.4-4.5-2.6-9.2-3.4-13.9h14.9c0.4,2.4,1,4.9,1.8,7.5c0.8,2.6,1.6,5,2.4,7
58
- c0.9,2.5,1.9,5,2.8,7.4c0.9-2.4,1.9-4.9,2.8-7.4c0.8-2.1,1.6-4.4,2.4-7c0.7-2.6,1.3-5.1,1.7-7.5H399.1z M403.4,459
59
- c2.3-2.4,4.4-4.8,6.3-7.4c1.9-2.5,3.7-5,5.3-7.5c-1.9-3.9-3.7-7.9-5.5-12.1c-1.4-3.7-2.9-7.8-4.4-12.3c-1.5-4.5-2.6-9.2-3.4-13.9
60
- h15c0.4,2.4,1,4.9,1.7,7.5c0.7,2.6,1.5,5,2.3,7c0.9,2.5,1.9,5,2.8,7.4c1-2.4,2-4.9,3-7.4c0.8-2.1,1.6-4.4,2.3-7
61
- c0.7-2.6,1.3-5.1,1.7-7.5h14.9c-0.8,4.7-2,9.3-3.4,13.9s-2.9,8.6-4.4,12.3c-1.8,4.2-3.6,8.2-5.5,12.1c1.7,2.5,3.4,5,5.3,7.5
62
- c1.9,2.5,4,5,6.4,7.4v18.7c-4.1-2.7-7.8-5.7-11.2-9.1c-3.4-3.3-6.5-6.8-9.2-10.5c-2.7,3.7-5.8,7.2-9.1,10.5
63
- c-3.3,3.3-7.1,6.4-11.1,9.1L403.4,459L403.4,459z"/>
64
- </g>
65
- <g>
66
- <path class="st3" d="M16.5,565.3v-42H25v42H16.5z"/>
67
- <path class="st3" d="M33,565.3v-42h12.7l7.6,28.7l7.5-28.7h12.7v42h-7.9v-33.1l-8.3,33.1h-8.2l-8.3-33.1v33.1H33z"/>
68
- <path class="st3" d="M119.8,565.3h-9.2l-3.7-9.5H90.2l-3.5,9.5h-9l16.3-42h9L119.8,565.3z M104.2,548.7l-5.8-15.6l-5.7,15.6H104.2
69
- z"/>
70
- <path class="st3" d="M143.9,549.8v-7.1h18.3v16.7c-1.8,1.7-4.3,3.2-7.7,4.5c-3.4,1.3-6.8,2-10.2,2c-4.4,0-8.2-0.9-11.5-2.8
71
- c-3.3-1.8-5.7-4.5-7.3-7.9c-1.7-3.4-2.5-7.2-2.5-11.2c0-4.4,0.9-8.3,2.8-11.7c1.8-3.4,4.5-6,8-7.8c2.7-1.4,6-2.1,10-2.1
72
- c5.2,0,9.3,1.1,12.2,3.3c2.9,2.2,4.8,5.2,5.7,9.1l-8.4,1.6c-0.6-2.1-1.7-3.7-3.3-4.9c-1.6-1.2-3.7-1.8-6.1-1.8
73
- c-3.7,0-6.7,1.2-8.8,3.5c-2.2,2.4-3.3,5.8-3.3,10.5c0,5,1.1,8.7,3.3,11.2c2.2,2.5,5.1,3.7,8.7,3.7c1.8,0,3.6-0.3,5.3-1
74
- c1.8-0.7,3.3-1.5,4.6-2.5v-5.3L143.9,549.8L143.9,549.8z"/>
75
- <path class="st3" d="M169.7,565.3v-42h8.5v42H169.7z"/>
76
- <path class="st3" d="M186.4,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H186.4z"/>
77
- <path class="st3" d="M248.2,549.8v-7.1h18.3v16.7c-1.8,1.7-4.4,3.2-7.7,4.5c-3.4,1.3-6.8,2-10.2,2c-4.4,0-8.2-0.9-11.5-2.8
78
- c-3.3-1.8-5.7-4.5-7.4-7.9c-1.6-3.4-2.5-7.2-2.5-11.2c0-4.4,0.9-8.3,2.8-11.7c1.8-3.4,4.5-6,8-7.8c2.7-1.4,6-2.1,10-2.1
79
- c5.2,0,9.3,1.1,12.2,3.3c2.9,2.2,4.8,5.2,5.7,9.1l-8.4,1.6c-0.6-2.1-1.7-3.7-3.3-4.9c-1.6-1.2-3.7-1.8-6.1-1.8
80
- c-3.7,0-6.7,1.2-8.8,3.5c-2.2,2.4-3.3,5.8-3.3,10.5c0,5,1.1,8.7,3.3,11.2c2.2,2.5,5.1,3.7,8.7,3.7c1.8,0,3.5-0.3,5.3-1
81
- c1.8-0.7,3.3-1.5,4.6-2.5v-5.3L248.2,549.8L248.2,549.8z"/>
82
- <path class="st3" d="M290.5,523.3h8.5V546c0,3.6,0.1,6,0.3,7c0.4,1.7,1.2,3.1,2.6,4.1c1.4,1,3.2,1.6,5.6,1.6
83
- c2.4,0,4.2-0.5,5.4-1.5c1.2-1,2-2.2,2.2-3.6c0.3-1.4,0.4-3.8,0.4-7.1v-23.2h8.5v22c0,5-0.2,8.6-0.7,10.7c-0.5,2.1-1.3,3.8-2.6,5.3
84
- c-1.2,1.4-2.9,2.6-4.9,3.4c-2.1,0.8-4.8,1.3-8.1,1.3c-4,0-7.1-0.5-9.1-1.4c-2.1-0.9-3.7-2.1-4.9-3.6c-1.2-1.5-2-3-2.4-4.7
85
- c-0.5-2.4-0.8-6-0.8-10.7L290.5,523.3L290.5,523.3z"/>
86
- <path class="st3" d="M333,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H333z"/>
87
- <path class="st3" d="M375,565.3v-42h8.5v42H375z"/>
88
- <path class="st3" d="M389.9,544.5c0-4.3,0.6-7.9,1.9-10.8c1-2.1,2.3-4,3.9-5.8c1.7-1.7,3.4-3,5.4-3.8c2.6-1.1,5.6-1.7,9.1-1.7
89
- c6.2,0,11.1,1.9,14.8,5.8c3.7,3.8,5.6,9.2,5.6,16c0,6.8-1.8,12.1-5.5,15.9c-3.7,3.8-8.6,5.8-14.8,5.8c-6.2,0-11.2-1.9-14.9-5.7
90
- C391.7,556.5,389.9,551.2,389.9,544.5z M398.6,544.2c0,4.8,1.1,8.4,3.3,10.8c2.2,2.5,5,3.7,8.4,3.7s6.2-1.2,8.3-3.6
91
- c2.2-2.4,3.2-6.1,3.2-11c0-4.8-1.1-8.4-3.2-10.8c-2.1-2.4-4.9-3.5-8.4-3.5c-3.5,0-6.3,1.2-8.4,3.6
92
- C399.7,535.8,398.6,539.4,398.6,544.2z"/>
93
- <path class="st3" d="M437.3,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H437.3z"/>
94
- </g>
95
- </g>
96
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 485.1 575" style="enable-background:new 0 0 485.1 575;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:url(#XMLID_2_);}
7
+ .st1{fill:url(#SVGID_1_);}
8
+ .st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
9
+ .st3{fill:#025FA1;}
10
+ </style>
11
+ <g>
12
+ <g>
13
+
14
+ <linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="238.1866" y1="322.8901" x2="121.4416" y2="489.6191" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
15
+ <stop offset="0.35" style="stop-color:#62BCC3"/>
16
+ <stop offset="0.65" style="stop-color:#91CDF1"/>
17
+ </linearGradient>
18
+ <path id="XMLID_72_" class="st0" d="M123.3,206.4V102.1h78.3v104.6c0,36.5,23.4,51.7,63,41.8C221.1,302,123.3,261.3,123.3,206.4
19
+ L123.3,206.4z"/>
20
+
21
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="328.4109" y1="299.0114" x2="224.0635" y2="448.035" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
22
+ <stop offset="0" style="stop-color:#182987"/>
23
+ <stop offset="0.4" style="stop-color:#036EB7"/>
24
+ </linearGradient>
25
+ <path class="st1" d="M363.8,101.7v92.1c0,39.8-10.9,71.7-32.8,95.3c-21.9,23.7-51.1,35.5-87.4,35.5c-36.4,0-65.6-11.8-87.5-35.5
26
+ c-11-11.8-19.2-25.7-24.6-41.6c62.6,61.5,156.5,30.1,154.4-41.3V101.7L363.8,101.7L363.8,101.7z"/>
27
+
28
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="144.8014" y1="579.4674" x2="180.1864" y2="503.5839" gradientTransform="matrix(1 0 0 -1 0 593.0213)">
29
+ <stop offset="0.25" style="stop-color:#62BCC3"/>
30
+ <stop offset="0.75" style="stop-color:#91CDF1"/>
31
+ </linearGradient>
32
+ <polygon class="st2" points="123.3,36.4 147.3,36.4 147.3,12.4 177.6,12.4 177.6,36.4 201.7,36.4 201.7,66.6 177.6,66.6
33
+ 177.6,90.6 147.3,90.6 147.3,66.6 123.3,66.6 "/>
34
+ </g>
35
+ <g>
36
+ <path class="st3" d="M65.9,426.1v3.5h30.4V441h-82v-11.4h30.3v-3.5H16.5v-44.5h77.7v29.8c0,1.9-0.4,3.8-1.2,5.8
37
+ c-0.8,1.9-1.9,3.5-3.2,4.7c-1.4,1.4-3,2.3-4.9,3c-1.7,0.8-3.5,1.2-5.6,1.2L65.9,426.1L65.9,426.1z M29.7,495H14.3l5.2-19.1H35
38
+ L29.7,495z M37.8,483.3c0.2,0,0.6,0,1.2-0.1c0.6,0,1.2-0.1,1.9-0.2c0.7,0,1.3-0.1,1.8-0.2c0.5-0.1,0.9-0.2,1.1-0.3
39
+ c0.5-0.8,0.8-1.6,0.8-2.2v-8.3h-28l-0.1-28.4h77.7v13.6c0,0.9-0.1,1.9-0.4,2.9c-0.3,1-0.5,1.9-0.8,2.8c-0.4,0.9-0.9,1.8-1.4,2.6
40
+ c-0.5,0.8-1.1,1.5-1.7,2.1c-1.4,1.2-3,2.3-4.9,3.1c-1.7,0.8-3.5,1.2-5.6,1.2H65.9v5.7c0,2.7-0.4,5-1.2,6.9
41
+ c-0.9,2.1-2.1,3.9-3.8,5.3c-1.4,1.4-3.2,2.6-5.5,3.8c-2.1,0.8-4.3,1.3-6.7,1.3H34.2L37.8,483.3z M37.7,461.9h32.9
42
+ c0.6,0,1.1-0.2,1.6-0.8c0.5-0.4,0.8-0.9,0.8-1.6v-4.1H37.7V461.9z M37.8,398.5H73v-3.8H37.8V398.5z M37.8,414.5h32.8
43
+ c0.5,0,1-0.3,1.6-0.8c0.5-0.3,0.8-0.9,0.8-1.7v-2H37.8V414.5z M94.3,495H78.6l-5-19.1h15.4L94.3,495z M128.3,381.6h25.8
44
+ l-29.9,37.6H98.8L128.3,381.6z M128.3,419.4h25.8l-29.9,37.8H98.8L128.3,419.4z M128.3,457.2h25.8l-29.9,37.5H98.8L128.3,457.2z"
45
+ />
46
+ <path class="st3" d="M231.9,381.8v14.1h-3.9v70l3.9-0.5v13.9l-3.9,0.5V495h-18.5v-12.9l-35.3,4.2v-14.1l3.9-0.5v-75.9h-3.9v-14.1
47
+ h3.9h18.3h13h18.5H231.9z M209.4,395.9h-13v15.5h13V395.9z M209.4,425.5h-13v14.4h13V425.5z M209.4,468.1V454h-13v15.5
48
+ L209.4,468.1z M280.6,443.4h31.2v14.1h-34.6L258.3,495H237l19-37.5h-21.8v-14.1h26.2v-31.2h-26.2v-13.9h11.5l-5.8-16.5h19.4
49
+ l6,16.5h15.5l5.9-16.5h19.6l-5.9,16.5h11.4v13.9h-31.2L280.6,443.4L280.6,443.4z M296.7,462.2l15,32.8h-19.9l-15.1-32.8
50
+ L296.7,462.2L296.7,462.2z"/>
51
+ <path class="st3" d="M470.6,477.7c0,2.4-0.5,4.6-1.3,6.7c-0.9,2-2.1,3.8-3.7,5.4c-1.6,1.6-3.4,2.8-5.5,3.7
52
+ c-2.1,0.9-4.3,1.3-6.8,1.3h-17.7l6.4-15.5h3.3c1.4,0,2.7-0.5,3.6-1.4c0.9-0.9,1.4-2.1,1.4-3.4v-72.3c0-1.3-0.5-2.5-1.4-3.4
53
+ c-0.9-1-2.2-1.4-3.6-1.4h-92.3v97.5h-20.2v-113h120.5c2.4,0,4.7,0.5,6.8,1.3c2.1,0.9,3.9,2.1,5.5,3.7c1.6,1.6,2.8,3.4,3.7,5.5
54
+ c0.9,2.1,1.3,4.3,1.3,6.8L470.6,477.7L470.6,477.7z M399.1,405.9c-0.8,4.7-2,9.3-3.5,13.9c-1.5,4.5-2.9,8.6-4.4,12.3
55
+ c-1.8,4.2-3.6,8.2-5.5,12.1c1.6,2.5,3.3,5,5.3,7.5c1.9,2.5,4,5,6.3,7.4v18.7c-4.1-2.7-7.8-5.7-11.1-9.1c-3.3-3.3-6.4-6.8-9.1-10.5
56
+ c-2.7,3.7-5.8,7.2-9.1,10.5c-3.3,3.3-7.1,6.4-11.3,9.1V459c2.4-2.4,4.6-4.8,6.4-7.4c1.9-2.5,3.7-5,5.3-7.5
57
+ c-1.9-3.9-3.7-7.9-5.5-12.1c-1.5-3.7-2.9-7.8-4.4-12.3c-1.4-4.5-2.6-9.2-3.4-13.9h14.9c0.4,2.4,1,4.9,1.8,7.5c0.8,2.6,1.6,5,2.4,7
58
+ c0.9,2.5,1.9,5,2.8,7.4c0.9-2.4,1.9-4.9,2.8-7.4c0.8-2.1,1.6-4.4,2.4-7c0.7-2.6,1.3-5.1,1.7-7.5H399.1z M403.4,459
59
+ c2.3-2.4,4.4-4.8,6.3-7.4c1.9-2.5,3.7-5,5.3-7.5c-1.9-3.9-3.7-7.9-5.5-12.1c-1.4-3.7-2.9-7.8-4.4-12.3c-1.5-4.5-2.6-9.2-3.4-13.9
60
+ h15c0.4,2.4,1,4.9,1.7,7.5c0.7,2.6,1.5,5,2.3,7c0.9,2.5,1.9,5,2.8,7.4c1-2.4,2-4.9,3-7.4c0.8-2.1,1.6-4.4,2.3-7
61
+ c0.7-2.6,1.3-5.1,1.7-7.5h14.9c-0.8,4.7-2,9.3-3.4,13.9s-2.9,8.6-4.4,12.3c-1.8,4.2-3.6,8.2-5.5,12.1c1.7,2.5,3.4,5,5.3,7.5
62
+ c1.9,2.5,4,5,6.4,7.4v18.7c-4.1-2.7-7.8-5.7-11.2-9.1c-3.4-3.3-6.5-6.8-9.2-10.5c-2.7,3.7-5.8,7.2-9.1,10.5
63
+ c-3.3,3.3-7.1,6.4-11.1,9.1L403.4,459L403.4,459z"/>
64
+ </g>
65
+ <g>
66
+ <path class="st3" d="M16.5,565.3v-42H25v42H16.5z"/>
67
+ <path class="st3" d="M33,565.3v-42h12.7l7.6,28.7l7.5-28.7h12.7v42h-7.9v-33.1l-8.3,33.1h-8.2l-8.3-33.1v33.1H33z"/>
68
+ <path class="st3" d="M119.8,565.3h-9.2l-3.7-9.5H90.2l-3.5,9.5h-9l16.3-42h9L119.8,565.3z M104.2,548.7l-5.8-15.6l-5.7,15.6H104.2
69
+ z"/>
70
+ <path class="st3" d="M143.9,549.8v-7.1h18.3v16.7c-1.8,1.7-4.3,3.2-7.7,4.5c-3.4,1.3-6.8,2-10.2,2c-4.4,0-8.2-0.9-11.5-2.8
71
+ c-3.3-1.8-5.7-4.5-7.3-7.9c-1.7-3.4-2.5-7.2-2.5-11.2c0-4.4,0.9-8.3,2.8-11.7c1.8-3.4,4.5-6,8-7.8c2.7-1.4,6-2.1,10-2.1
72
+ c5.2,0,9.3,1.1,12.2,3.3c2.9,2.2,4.8,5.2,5.7,9.1l-8.4,1.6c-0.6-2.1-1.7-3.7-3.3-4.9c-1.6-1.2-3.7-1.8-6.1-1.8
73
+ c-3.7,0-6.7,1.2-8.8,3.5c-2.2,2.4-3.3,5.8-3.3,10.5c0,5,1.1,8.7,3.3,11.2c2.2,2.5,5.1,3.7,8.7,3.7c1.8,0,3.6-0.3,5.3-1
74
+ c1.8-0.7,3.3-1.5,4.6-2.5v-5.3L143.9,549.8L143.9,549.8z"/>
75
+ <path class="st3" d="M169.7,565.3v-42h8.5v42H169.7z"/>
76
+ <path class="st3" d="M186.4,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H186.4z"/>
77
+ <path class="st3" d="M248.2,549.8v-7.1h18.3v16.7c-1.8,1.7-4.4,3.2-7.7,4.5c-3.4,1.3-6.8,2-10.2,2c-4.4,0-8.2-0.9-11.5-2.8
78
+ c-3.3-1.8-5.7-4.5-7.4-7.9c-1.6-3.4-2.5-7.2-2.5-11.2c0-4.4,0.9-8.3,2.8-11.7c1.8-3.4,4.5-6,8-7.8c2.7-1.4,6-2.1,10-2.1
79
+ c5.2,0,9.3,1.1,12.2,3.3c2.9,2.2,4.8,5.2,5.7,9.1l-8.4,1.6c-0.6-2.1-1.7-3.7-3.3-4.9c-1.6-1.2-3.7-1.8-6.1-1.8
80
+ c-3.7,0-6.7,1.2-8.8,3.5c-2.2,2.4-3.3,5.8-3.3,10.5c0,5,1.1,8.7,3.3,11.2c2.2,2.5,5.1,3.7,8.7,3.7c1.8,0,3.5-0.3,5.3-1
81
+ c1.8-0.7,3.3-1.5,4.6-2.5v-5.3L248.2,549.8L248.2,549.8z"/>
82
+ <path class="st3" d="M290.5,523.3h8.5V546c0,3.6,0.1,6,0.3,7c0.4,1.7,1.2,3.1,2.6,4.1c1.4,1,3.2,1.6,5.6,1.6
83
+ c2.4,0,4.2-0.5,5.4-1.5c1.2-1,2-2.2,2.2-3.6c0.3-1.4,0.4-3.8,0.4-7.1v-23.2h8.5v22c0,5-0.2,8.6-0.7,10.7c-0.5,2.1-1.3,3.8-2.6,5.3
84
+ c-1.2,1.4-2.9,2.6-4.9,3.4c-2.1,0.8-4.8,1.3-8.1,1.3c-4,0-7.1-0.5-9.1-1.4c-2.1-0.9-3.7-2.1-4.9-3.6c-1.2-1.5-2-3-2.4-4.7
85
+ c-0.5-2.4-0.8-6-0.8-10.7L290.5,523.3L290.5,523.3z"/>
86
+ <path class="st3" d="M333,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H333z"/>
87
+ <path class="st3" d="M375,565.3v-42h8.5v42H375z"/>
88
+ <path class="st3" d="M389.9,544.5c0-4.3,0.6-7.9,1.9-10.8c1-2.1,2.3-4,3.9-5.8c1.7-1.7,3.4-3,5.4-3.8c2.6-1.1,5.6-1.7,9.1-1.7
89
+ c6.2,0,11.1,1.9,14.8,5.8c3.7,3.8,5.6,9.2,5.6,16c0,6.8-1.8,12.1-5.5,15.9c-3.7,3.8-8.6,5.8-14.8,5.8c-6.2,0-11.2-1.9-14.9-5.7
90
+ C391.7,556.5,389.9,551.2,389.9,544.5z M398.6,544.2c0,4.8,1.1,8.4,3.3,10.8c2.2,2.5,5,3.7,8.4,3.7s6.2-1.2,8.3-3.6
91
+ c2.2-2.4,3.2-6.1,3.2-11c0-4.8-1.1-8.4-3.2-10.8c-2.1-2.4-4.9-3.5-8.4-3.5c-3.5,0-6.3,1.2-8.4,3.6
92
+ C399.7,535.8,398.6,539.4,398.6,544.2z"/>
93
+ <path class="st3" d="M437.3,565.3v-42h8.2l17.2,28v-28h7.9v42h-8.5l-16.9-27.4v27.4H437.3z"/>
94
+ </g>
95
+ </g>
96
+ </svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" class="icon" p-id="4695" t="1543827393750" version="1.1" viewBox="0 0 1024 1024"><defs><style type="text/css">@font-face{font-family:rbicon;src:url(chrome-extension://dipiagiiohfljcicegpgffpbnjmgjcnf/fonts/rbicon.woff2) format(&quot;woff2&quot;);font-weight:400;font-style:normal}</style></defs><path d="M64 64V640H896V64H64zM0 0h960v704H0V0z" p-id="4696"/><path d="M192 896H768v64H192zM448 640H512v256h-64z" p-id="4697"/><path d="M479.232 561.604267l309.9904-348.330667-47.803733-42.5472-259.566934 291.669333L303.957333 240.008533 163.208533 438.6048l52.224 37.009067 91.6224-129.28z" p-id="4698"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" class="icon" p-id="4695" t="1543827393750" version="1.1" viewBox="0 0 1024 1024"><defs><style type="text/css">@font-face{font-family:rbicon;src:url(chrome-extension://dipiagiiohfljcicegpgffpbnjmgjcnf/fonts/rbicon.woff2) format(&quot;woff2&quot;);font-weight:400;font-style:normal}</style></defs><path d="M64 64V640H896V64H64zM0 0h960v704H0V0z" p-id="4696"/><path d="M192 896H768v64H192zM448 640H512v256h-64z" p-id="4697"/><path d="M479.232 561.604267l309.9904-348.330667-47.803733-42.5472-259.566934 291.669333L303.957333 240.008533 163.208533 438.6048l52.224 37.009067 91.6224-129.28z" p-id="4698"/></svg>
@@ -1 +1 @@
1
- <svg t="1702287200707" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3542" width="200" height="200"><path d="M914.285714 109.714286H109.714286c-20.114286 0-36.571429 16.457143-36.571429 36.571428v621.714286c0 20.114286 16.457143 36.571429 36.571429 36.571429h804.571428c20.114286 0 36.571429-16.457143 36.571429-36.571429V146.285714c0-20.114286-16.457143-36.571429-36.571429-36.571428z m-36.571428 621.714285H146.285714V182.857143h731.428572v548.571428zM786.285714 841.142857H237.714286v73.142857h548.571428v-73.142857z" p-id="3543"></path><path d="M409.6 614.4l102.4-96.914286 95.085714 102.4 53.028572-51.2-95.085715-102.4 100.571429-95.085714-51.2-53.028571-100.571429 95.085714-96.914285-100.571429-53.028572 51.2 96.914286 100.571429-102.4 96.914286 51.2 53.028571z" p-id="3544"></path></svg>
1
+ <svg t="1702287200707" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3542" width="200" height="200"><path d="M914.285714 109.714286H109.714286c-20.114286 0-36.571429 16.457143-36.571429 36.571428v621.714286c0 20.114286 16.457143 36.571429 36.571429 36.571429h804.571428c20.114286 0 36.571429-16.457143 36.571429-36.571429V146.285714c0-20.114286-16.457143-36.571429-36.571429-36.571428z m-36.571428 621.714285H146.285714V182.857143h731.428572v548.571428zM786.285714 841.142857H237.714286v73.142857h548.571428v-73.142857z" p-id="3543"></path><path d="M409.6 614.4l102.4-96.914286 95.085714 102.4 53.028572-51.2-95.085715-102.4 100.571429-95.085714-51.2-53.028571-100.571429 95.085714-96.914285-100.571429-53.028572 51.2 96.914286 100.571429-102.4 96.914286 51.2 53.028571z" p-id="3544"></path></svg>
@@ -1 +1 @@
1
- <svg t="1702287137315" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2548" width="200" height="200"><path d="M914.285714 109.714286H109.714286c-20.114286 0-36.571429 16.457143-36.571429 36.571428v621.714286c0 20.114286 16.457143 36.571429 36.571429 36.571429h804.571428c20.114286 0 36.571429-16.457143 36.571429-36.571429V146.285714c0-20.114286-16.457143-36.571429-36.571429-36.571428z m-36.571428 621.714285H146.285714V182.857143h731.428572v548.571428zM786.285714 841.142857H237.714286v73.142857h548.571428v-73.142857z" p-id="2549"></path><path d="M479.085714 610.742857c9.142857 0 16.457143-3.657143 23.771429-9.142857l243.2-201.142857-47.542857-56.685714-217.6 179.2-117.028572-117.028572-51.2 51.2 140.8 138.971429c7.314286 10.971429 16.457143 14.628571 25.6 14.628571z" p-id="2550"></path></svg>
1
+ <svg t="1702287137315" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2548" width="200" height="200"><path d="M914.285714 109.714286H109.714286c-20.114286 0-36.571429 16.457143-36.571429 36.571428v621.714286c0 20.114286 16.457143 36.571429 36.571429 36.571429h804.571428c20.114286 0 36.571429-16.457143 36.571429-36.571429V146.285714c0-20.114286-16.457143-36.571429-36.571429-36.571428z m-36.571428 621.714285H146.285714V182.857143h731.428572v548.571428zM786.285714 841.142857H237.714286v73.142857h548.571428v-73.142857z" p-id="2549"></path><path d="M479.085714 610.742857c9.142857 0 16.457143-3.657143 23.771429-9.142857l243.2-201.142857-47.542857-56.685714-217.6 179.2-117.028572-117.028572-51.2 51.2 140.8 138.971429c7.314286 10.971429 16.457143 14.628571 25.6 14.628571z" p-id="2550"></path></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="211.719" height="200" class="icon" p-id="10233" t="1543827724451" version="1.1" viewBox="0 0 1084 1024"><defs><style type="text/css">@font-face{font-family:rbicon;src:url(chrome-extension://dipiagiiohfljcicegpgffpbnjmgjcnf/fonts/rbicon.woff2) format(&quot;woff2&quot;);font-weight:400;font-style:normal}</style></defs><path d="M1080.09609 434.500756c-4.216302-23.731757-26.9241-47.945376-50.595623-53.185637l-17.648235-4.095836a175.940257 175.940257 0 0 1-101.612877-80.832531 177.807476 177.807476 0 0 1-18.732427-129.801867l5.541425-16.684509c7.10748-23.129428-2.108151-54.992624-20.599646-70.833873 0 0-16.624276-14.094495-63.244529-41.199293-46.800951-26.984332-66.858502-34.513443-66.858502-34.513443-22.76803-8.372371-54.631227-0.361397-71.255503 17.407304l-12.287509 13.251234a173.470708 173.470708 0 0 1-120.465769 48.065842A174.13327 174.13327 0 0 1 421.329029 33.590675L409.583617 20.761071C393.140039 2.99237 361.096144-4.898138 338.267881 3.353767c0 0-20.358715 7.529111-67.099434 34.513443-46.800951 27.34573-63.244529 41.440225-63.244529 41.440225-18.431263 15.66055-27.646894 47.222582-20.539413 70.592941l5.059562 16.865207a178.048407 178.048407 0 0 1-18.672194 129.621169 174.916297 174.916297 0 0 1-102.275439 81.073463l-17.045906 3.854904c-23.310126 5.42096-46.258856 29.333415-50.595623 53.185637 0 0-3.854905 21.382674-3.854905 75.712737 0 54.330062 3.854905 75.712736 3.854905 75.712736 4.216302 23.972688 26.9241 47.945376 50.595623 53.185637l16.624276 3.854905a174.253736 174.253736 0 0 1 102.395904 81.314394c23.310126 40.837896 28.911785 87.337683 18.732427 129.801867l-4.81863 16.443578c-7.10748 23.129428 2.108151 54.992624 20.599646 70.833872 0 0 16.624276 14.094495 63.244529 41.199293 46.800951 27.104798 66.918735 34.513443 66.918735 34.513443 22.707798 8.372371 54.631227 0.361397 71.255503-17.407303l11.624947-12.588673a175.096996 175.096996 0 0 1 242.256662 0.120465l11.624947 12.648906c16.383345 17.708468 48.427239 25.598976 71.255503 17.347071 0 0 20.358715-7.529111 67.159666-34.513443 46.740719-27.104798 63.124063-41.199293 63.124064-41.199293 18.491496-15.600317 27.707127-47.463513 20.599646-70.833873l-5.059562-17.106139a176.723284 176.723284 0 0 1 18.672194-129.139305 176.060722 176.060722 0 0 1 102.395904-81.314394l16.68451-3.854905c23.310126-5.42096 46.258856-29.333415 50.595623-53.185637 0 0 3.854905-21.382674 3.854904-75.712737-0.240932-54.330062-4.095836-75.833202-4.095836-75.833202z m-537.819428 293.334149c-119.261112 0-216.175824-97.336342-216.175824-217.621412a216.657687 216.657687 0 0 1 216.236057-217.320249c119.200879 0 216.115591 97.276109 216.11559 217.56118-0.240932 120.044139-96.974945 217.320248-216.175823 217.320249z" p-id="10234"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="211.719" height="200" class="icon" p-id="10233" t="1543827724451" version="1.1" viewBox="0 0 1084 1024"><defs><style type="text/css">@font-face{font-family:rbicon;src:url(chrome-extension://dipiagiiohfljcicegpgffpbnjmgjcnf/fonts/rbicon.woff2) format(&quot;woff2&quot;);font-weight:400;font-style:normal}</style></defs><path d="M1080.09609 434.500756c-4.216302-23.731757-26.9241-47.945376-50.595623-53.185637l-17.648235-4.095836a175.940257 175.940257 0 0 1-101.612877-80.832531 177.807476 177.807476 0 0 1-18.732427-129.801867l5.541425-16.684509c7.10748-23.129428-2.108151-54.992624-20.599646-70.833873 0 0-16.624276-14.094495-63.244529-41.199293-46.800951-26.984332-66.858502-34.513443-66.858502-34.513443-22.76803-8.372371-54.631227-0.361397-71.255503 17.407304l-12.287509 13.251234a173.470708 173.470708 0 0 1-120.465769 48.065842A174.13327 174.13327 0 0 1 421.329029 33.590675L409.583617 20.761071C393.140039 2.99237 361.096144-4.898138 338.267881 3.353767c0 0-20.358715 7.529111-67.099434 34.513443-46.800951 27.34573-63.244529 41.440225-63.244529 41.440225-18.431263 15.66055-27.646894 47.222582-20.539413 70.592941l5.059562 16.865207a178.048407 178.048407 0 0 1-18.672194 129.621169 174.916297 174.916297 0 0 1-102.275439 81.073463l-17.045906 3.854904c-23.310126 5.42096-46.258856 29.333415-50.595623 53.185637 0 0-3.854905 21.382674-3.854905 75.712737 0 54.330062 3.854905 75.712736 3.854905 75.712736 4.216302 23.972688 26.9241 47.945376 50.595623 53.185637l16.624276 3.854905a174.253736 174.253736 0 0 1 102.395904 81.314394c23.310126 40.837896 28.911785 87.337683 18.732427 129.801867l-4.81863 16.443578c-7.10748 23.129428 2.108151 54.992624 20.599646 70.833872 0 0 16.624276 14.094495 63.244529 41.199293 46.800951 27.104798 66.918735 34.513443 66.918735 34.513443 22.707798 8.372371 54.631227 0.361397 71.255503-17.407303l11.624947-12.588673a175.096996 175.096996 0 0 1 242.256662 0.120465l11.624947 12.648906c16.383345 17.708468 48.427239 25.598976 71.255503 17.347071 0 0 20.358715-7.529111 67.159666-34.513443 46.740719-27.104798 63.124063-41.199293 63.124064-41.199293 18.491496-15.600317 27.707127-47.463513 20.599646-70.833873l-5.059562-17.106139a176.723284 176.723284 0 0 1 18.672194-129.139305 176.060722 176.060722 0 0 1 102.395904-81.314394l16.68451-3.854905c23.310126-5.42096 46.258856-29.333415 50.595623-53.185637 0 0 3.854905-21.382674 3.854904-75.712737-0.240932-54.330062-4.095836-75.833202-4.095836-75.833202z m-537.819428 293.334149c-119.261112 0-216.175824-97.336342-216.175824-217.621412a216.657687 216.657687 0 0 1 216.236057-217.320249c119.200879 0 216.115591 97.276109 216.11559 217.56118-0.240932 120.044139-96.974945 217.320248-216.175823 217.320249z" p-id="10234"/></svg>
@@ -1,21 +1,21 @@
1
- # replace default config
2
-
3
- # multipass: true
4
- # full: true
5
-
6
- plugins:
7
- # - name
8
- #
9
- # or:
10
- # - name: false
11
- # - name: true
12
- #
13
- # or:
14
- # - name:
15
- # param1: 1
16
- # param2: 2
17
-
18
- - removeAttrs:
19
- attrs:
20
- - 'fill'
21
- - 'fill-rule'
1
+ # replace default config
2
+
3
+ # multipass: true
4
+ # full: true
5
+
6
+ plugins:
7
+ # - name
8
+ #
9
+ # or:
10
+ # - name: false
11
+ # - name: true
12
+ #
13
+ # or:
14
+ # - name:
15
+ # param1: 1
16
+ # param2: 2
17
+
18
+ - removeAttrs:
19
+ attrs:
20
+ - 'fill'
21
+ - 'fill-rule'