@midscene/visualizer 0.0.1 → 0.1.1

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 (65) hide show
  1. package/dist/es/component/assets/logo-plain.js +128 -0
  2. package/dist/es/component/assets/logo-plain2.js +128 -0
  3. package/dist/es/component/blackboard.js +5 -1
  4. package/dist/es/component/detail-panel.js +2 -2
  5. package/dist/es/component/detail-side.css +3 -2
  6. package/dist/es/component/detail-side.js +14 -5
  7. package/dist/es/component/global-hover-preview.css +1 -1
  8. package/dist/es/component/global-hover-preview.js +6 -1
  9. package/dist/es/component/sidebar.css +2 -1
  10. package/dist/es/component/sidebar.js +19 -12
  11. package/dist/es/component/store.js +7 -6
  12. package/dist/es/component/timeline.js +2 -2
  13. package/dist/es/index.css +14 -9
  14. package/dist/es/index.js +33 -7
  15. package/dist/lib/component/assets/logo-plain.js +156 -0
  16. package/dist/lib/component/assets/logo-plain2.js +156 -0
  17. package/dist/lib/component/blackboard.js +5 -1
  18. package/dist/lib/component/detail-panel.js +2 -2
  19. package/dist/lib/component/detail-side.css +3 -2
  20. package/dist/lib/component/detail-side.js +14 -5
  21. package/dist/lib/component/global-hover-preview.css +1 -1
  22. package/dist/lib/component/global-hover-preview.js +6 -1
  23. package/dist/lib/component/sidebar.css +2 -1
  24. package/dist/lib/component/sidebar.js +19 -12
  25. package/dist/lib/component/store.js +7 -6
  26. package/dist/lib/component/timeline.js +2 -2
  27. package/dist/lib/index.css +14 -9
  28. package/dist/lib/index.js +37 -7
  29. package/dist/types/component/sidebar.d.ts +4 -1
  30. package/dist/types/component/store.d.ts +2 -1
  31. package/dist/types/index.d.ts +7 -2
  32. package/package.json +9 -4
  33. package/.eslintrc.js +0 -9
  34. package/dist/es/assets/logo-plain.16842bbc.svg +0 -70
  35. package/dist/es/assets/logo-plain2.16842bbc.svg +0 -70
  36. package/dist/lib/assets/logo-plain.16842bbc.svg +0 -70
  37. package/dist/lib/assets/logo-plain2.16842bbc.svg +0 -70
  38. package/docs/index.tsx +0 -6
  39. package/modern.config.ts +0 -15
  40. package/src/component/assets/logo-plain.svg +0 -70
  41. package/src/component/assets/logo-plain2.svg +0 -70
  42. package/src/component/blackboard.less +0 -37
  43. package/src/component/blackboard.tsx +0 -293
  44. package/src/component/color.tsx +0 -34
  45. package/src/component/common.less +0 -21
  46. package/src/component/detail-panel.less +0 -47
  47. package/src/component/detail-panel.tsx +0 -124
  48. package/src/component/detail-side.less +0 -131
  49. package/src/component/detail-side.tsx +0 -361
  50. package/src/component/global-hover-preview.less +0 -23
  51. package/src/component/global-hover-preview.tsx +0 -50
  52. package/src/component/misc.tsx +0 -20
  53. package/src/component/panel-title.less +0 -11
  54. package/src/component/panel-title.tsx +0 -11
  55. package/src/component/side-item.tsx +0 -0
  56. package/src/component/sidebar.less +0 -122
  57. package/src/component/sidebar.tsx +0 -205
  58. package/src/component/store.tsx +0 -151
  59. package/src/component/timeline.less +0 -25
  60. package/src/component/timeline.tsx +0 -486
  61. package/src/global.d.ts +0 -11
  62. package/src/index.less +0 -113
  63. package/src/index.tsx +0 -210
  64. package/src/utils.ts +0 -58
  65. package/tsconfig.json +0 -24
@@ -52,11 +52,12 @@ const useBlackboardPreference = (0, import_zustand.create)((set) => ({
52
52
  set({ textsVisible: visible });
53
53
  }
54
54
  }));
55
- const useExecutionDump = (0, import_zustand.create)((set) => {
55
+ const useExecutionDump = (0, import_zustand.create)((set, get) => {
56
56
  const initData = {
57
57
  dump: null,
58
58
  activeTask: null,
59
59
  hoverTask: null,
60
+ hoverTimestamp: null,
60
61
  hoverPreviewConfig: null
61
62
  };
62
63
  const syncToInsightDump = (dump) => {
@@ -75,22 +76,22 @@ const useExecutionDump = (0, import_zustand.create)((set) => {
75
76
  });
76
77
  for (const item of dump) {
77
78
  if (item.executions.length > 0 && item.executions[0].tasks.length > 0) {
78
- set({ activeTask: item.executions[0].tasks[0] });
79
+ get().setActiveTask(item.executions[0].tasks[0]);
79
80
  break;
80
81
  }
81
82
  }
82
83
  },
83
84
  setActiveTask(task) {
84
- var _a, _b;
85
85
  set({ activeTask: task });
86
- if ((_b = (_a = task.log) == null ? void 0 : _a.dump) == null ? void 0 : _b.matchedElement) {
86
+ console.log("task set", task);
87
+ if (task.type === "Insight") {
87
88
  syncToInsightDump(task.log.dump);
88
89
  } else {
89
90
  resetInsightDump();
90
91
  }
91
92
  },
92
- setHoverTask(task) {
93
- set({ hoverTask: task });
93
+ setHoverTask(task, timestamp) {
94
+ set({ hoverTask: task, hoverTimestamp: timestamp || null });
94
95
  },
95
96
  setHoverPreviewConfig(config) {
96
97
  if (config) {
@@ -99,7 +99,7 @@ const TimelineWidget = (props) => {
99
99
  const maxTime = allScreenshots[allScreenshots.length - 1].timeOffset;
100
100
  const sizeRatio = 2;
101
101
  const titleBg = 14540253;
102
- const sideBg = 15527148;
102
+ const sideBg = 16250871;
103
103
  const gridTextColor = 0;
104
104
  const shotBorderColor = 7829367;
105
105
  const gridLineColor = 13421772;
@@ -425,7 +425,7 @@ const Timeline = () => {
425
425
  const refBounding = (_a = wrapper.current) == null ? void 0 : _a.getBoundingClientRect();
426
426
  const task = idTaskMap[item.id];
427
427
  if (task) {
428
- setHoverTask(task);
428
+ setHoverTask(task, item.timeOffset + startingTime);
429
429
  setHoverPreviewConfig({
430
430
  x: mouseX + ((refBounding == null ? void 0 : refBounding.left) || 0),
431
431
  y: ((refBounding == null ? void 0 : refBounding.bottom) || 1) - 1
@@ -2,13 +2,9 @@ html,
2
2
  body {
3
3
  padding: 0;
4
4
  margin: 0;
5
- font-family:
6
- PingFang SC,
7
- Hiragino Sans GB,
8
- Microsoft YaHei,
9
- Arial,
10
- sans-serif;
11
- font-size: 14px;
5
+ }
6
+ .rspress-nav {
7
+ transition: 0.2s;
12
8
  }
13
9
  :root {
14
10
  --modern-sidebar-width: 0 !important;
@@ -37,6 +33,15 @@ footer.mt-8 {
37
33
  flex-direction: column;
38
34
  height: 100%;
39
35
  color: #000;
36
+ font-family:
37
+ PingFang SC,
38
+ Hiragino Sans GB,
39
+ Microsoft YaHei,
40
+ Arial,
41
+ sans-serif;
42
+ font-size: 14px;
43
+ border-top: 1px solid #CCCCCC;
44
+ border-bottom: 1px solid #CCCCCC;
40
45
  }
41
46
  .ant-layout {
42
47
  flex-grow: 1;
@@ -54,7 +59,7 @@ footer.mt-8 {
54
59
  flex-direction: row;
55
60
  flex-grow: 1;
56
61
  overflow: hidden;
57
- background: #ECECEC;
62
+ background: #f7f7f7;
58
63
  }
59
64
  .main-right.uploader-wrapper {
60
65
  box-sizing: border-box;
@@ -74,7 +79,7 @@ footer.mt-8 {
74
79
  .main-right .main-canvas-container {
75
80
  flex-grow: 1;
76
81
  height: 100%;
77
- background: #F5F5F5;
82
+ background: #ffffff;
78
83
  overflow-x: hidden;
79
84
  overflow-y: scroll;
80
85
  border-left: 1px solid #CCCCCC;
package/dist/lib/index.js CHANGED
@@ -45,6 +45,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
45
45
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
46
46
  var src_exports = {};
47
47
  __export(src_exports, {
48
+ Visualizer: () => Visualizer,
48
49
  default: () => src_default
49
50
  });
50
51
  module.exports = __toCommonJS(src_exports);
@@ -56,19 +57,24 @@ var import_head = require("@modern-js/runtime/head");
56
57
  var import_react_resizable_panels = require("react-resizable-panels");
57
58
  var import_timeline = __toESM(require("./component/timeline"));
58
59
  var import_detail_panel = __toESM(require("./component/detail-panel"));
59
- var import_logo_plain_16842bbc = __toESM(require("./assets/logo-plain.16842bbc.svg"));
60
+ var import_logo_plain = __toESM(require("./component/assets/logo-plain.js"));
60
61
  var import_global_hover_preview = __toESM(require("./component/global-hover-preview"));
61
62
  var import_store = require("./component/store");
62
63
  var import_detail_side = __toESM(require("./component/detail-side"));
63
64
  var import_sidebar = __toESM(require("./component/sidebar"));
64
65
  const { Dragger } = import_antd.Upload;
65
- const Index = () => {
66
+ let globalRenderCount = 1;
67
+ function Visualizer(props) {
68
+ const { dump } = props;
66
69
  const executionDump = (0, import_store.useExecutionDump)((store) => store.dump);
67
70
  const setGroupedDump = (0, import_store.useExecutionDump)((store) => store.setGroupedDump);
68
71
  const reset = (0, import_store.useExecutionDump)((store) => store.reset);
69
72
  const [mainLayoutChangeFlag, setMainLayoutChangeFlag] = (0, import_react.useState)(0);
70
73
  const mainLayoutChangedRef = (0, import_react.useRef)(false);
71
74
  (0, import_react.useEffect)(() => {
75
+ if (dump) {
76
+ setGroupedDump(dump);
77
+ }
72
78
  return () => {
73
79
  reset();
74
80
  };
@@ -122,7 +128,7 @@ const Index = () => {
122
128
  if (!executionDump) {
123
129
  mainContent = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "main-right uploader-wrapper", children: [
124
130
  /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(Dragger, __spreadProps(__spreadValues({ className: "uploader" }, uploadProps), { children: [
125
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className: "ant-upload-drag-icon", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("img", { src: import_logo_plain_16842bbc.default, alt: "Logo", style: { width: 100, height: 100, margin: "auto" } }) }),
131
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className: "ant-upload-drag-icon", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_logo_plain.default, { style: { width: 100, height: 100, margin: "auto" } }) }),
126
132
  /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("p", { className: "ant-upload-text", children: [
127
133
  "Click or drag the",
128
134
  " ",
@@ -154,7 +160,7 @@ const Index = () => {
154
160
  }
155
161
  },
156
162
  children: [
157
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_resizable_panels.Panel, { maxSize: 95, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_sidebar.default, {}) }),
163
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_resizable_panels.Panel, { maxSize: 95, defaultSize: 20, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_sidebar.default, { hideLogo: props == null ? void 0 : props.hideLogo, logoAction: props == null ? void 0 : props.logoAction }) }),
158
164
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
159
165
  import_react_resizable_panels.PanelResizeHandle,
160
166
  {
@@ -178,6 +184,26 @@ const Index = () => {
178
184
  }
179
185
  );
180
186
  }
187
+ const [containerHeight, setContainerHeight] = (0, import_react.useState)("100%");
188
+ (0, import_react.useEffect)(() => {
189
+ const ifInRspressPage = document.querySelector(".rspress-nav");
190
+ const navHeightKey = "--rp-nav-height";
191
+ const originalNavHeight = getComputedStyle(document.documentElement).getPropertyValue(navHeightKey);
192
+ if (ifInRspressPage) {
193
+ setContainerHeight("calc(100vh - 72px)");
194
+ document.documentElement.style.setProperty(navHeightKey, "42px");
195
+ }
196
+ return () => {
197
+ if (ifInRspressPage) {
198
+ document.documentElement.style.setProperty(navHeightKey, originalNavHeight);
199
+ }
200
+ };
201
+ }, []);
202
+ (0, import_react.useEffect)(() => {
203
+ return () => {
204
+ globalRenderCount += 1;
205
+ };
206
+ }, []);
181
207
  return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
182
208
  import_antd.ConfigProvider,
183
209
  {
@@ -193,10 +219,14 @@ const Index = () => {
193
219
  },
194
220
  children: [
195
221
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_head.Helmet, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "MidScene.js - Visualization Tool" }) }),
196
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "page-container", children: mainContent }),
222
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "page-container", style: { height: containerHeight }, children: mainContent }, `render-${globalRenderCount}`),
197
223
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_global_hover_preview.default, {})
198
224
  ]
199
225
  }
200
226
  );
201
- };
202
- var src_default = Index;
227
+ }
228
+ var src_default = Visualizer;
229
+ // Annotate the CommonJS export names for ESM import in node:
230
+ 0 && (module.exports = {
231
+ Visualizer
232
+ });
@@ -1,4 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import './sidebar.less';
3
- declare const Sidebar: () => JSX.Element;
3
+ declare const Sidebar: (props: {
4
+ hideLogo?: boolean;
5
+ logoAction?: () => void;
6
+ }) => JSX.Element;
4
7
  export default Sidebar;
@@ -11,7 +11,8 @@ export declare const useExecutionDump: import("zustand").UseBoundStore<import("z
11
11
  activeTask: ExecutionTask | null;
12
12
  setActiveTask: (task: ExecutionTask) => void;
13
13
  hoverTask: ExecutionTask | null;
14
- setHoverTask: (task: ExecutionTask | null) => void;
14
+ hoverTimestamp: number | null;
15
+ setHoverTask: (task: ExecutionTask | null, timestamp?: number | null) => void;
15
16
  hoverPreviewConfig: {
16
17
  x: number;
17
18
  y: number;
@@ -1,4 +1,9 @@
1
1
  /// <reference types="react" />
2
2
  import './index.less';
3
- declare const Index: () => JSX.Element;
4
- export default Index;
3
+ import { GroupedActionDump } from '@midscene/core';
4
+ export declare function Visualizer(props: {
5
+ hideLogo?: boolean;
6
+ logoAction?: () => void;
7
+ dump?: GroupedActionDump[];
8
+ }): JSX.Element;
9
+ export default Visualizer;
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@midscene/visualizer",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "types": "./dist/types/index.d.ts",
5
5
  "jsnext:source": "./src/index.ts",
6
6
  "main": "./dist/lib/index.js",
7
7
  "module": "./dist/es/index.js",
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
8
12
  "dependencies": {
9
13
  "@ant-design/icons": "5.3.7",
10
14
  "@modern-js/runtime": "^2.54.2",
@@ -15,13 +19,14 @@
15
19
  "react-dom": "~18.2.0",
16
20
  "react-resizable-panels": "2.0.22",
17
21
  "zustand": "4.5.2",
18
- "@midscene/core": "0.0.1"
22
+ "@midscene/core": "0.1.1"
19
23
  },
20
24
  "devDependencies": {
21
25
  "@modern-js/module-tools": "^2.54.2",
22
26
  "@modern-js/plugin-module-doc": "^2.33.1",
23
- "@types/react": "~18.2.22",
24
- "@types/react-dom": "~18.2.7",
27
+ "@types/react": "18.3.3",
28
+ "@types/react-dom": "18.3.0",
29
+ "@types/node": "^18.0.0",
25
30
  "react": "~18.2.0",
26
31
  "react-dom": "~18.2.0",
27
32
  "rimraf": "~3.0.2",
package/.eslintrc.js DELETED
@@ -1,9 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- rules: {
4
- '@typescript-eslint/no-explicit-any': 'warn',
5
- '@typescript-eslint/no-magic-numbers': 'off',
6
- '@typescript-eslint/no-parameter-properties': 'off',
7
- },
8
- extends: ['@modern-js'],
9
- };
@@ -1,70 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <!-- Creator: CorelDRAW 2019 (64-Bit) -->
4
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="141.563mm" height="53.8692mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
5
- viewBox="0 0 16897.65 6430.11"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
8
- <defs>
9
- <style type="text/css">
10
- <![CDATA[
11
- .str0 {stroke:#E62129;stroke-width:23.87;stroke-miterlimit:22.9256}
12
- .str1 {stroke:#06B1AB;stroke-width:9.1;stroke-miterlimit:22.9256}
13
- .fil0 {fill:none}
14
- .fil8 {fill:#FEFEFE}
15
- .fil1 {fill:#332C2B}
16
- .fil12 {fill:#F7B873}
17
- .fil5 {fill:#F3A04E}
18
- .fil9 {fill:#52C2F1}
19
- .fil13 {fill:#06B1AB}
20
- .fil2 {fill:#F63D55}
21
- .fil11 {fill:#F9483E}
22
- .fil6 {fill:url(#id0)}
23
- .fil4 {fill:url(#id1)}
24
- .fil10 {fill:url(#id2)}
25
- .fil3 {fill:url(#id3)}
26
- .fil7 {fill:url(#id4)}
27
- ]]>
28
- </style>
29
- <linearGradient id="id0" gradientUnits="userSpaceOnUse" x1="11103.21" y1="5027.34" x2="10930.41" y2="1211.98">
30
- <stop offset="0" style="stop-opacity:1; stop-color:#0A77D4"/>
31
- <stop offset="1" style="stop-opacity:1; stop-color:#00B1E0"/>
32
- </linearGradient>
33
- <linearGradient id="id1" gradientUnits="userSpaceOnUse" xlink:href="#id0" x1="11407.32" y1="5023.83" x2="11286.4" y2="1215.5">
34
- </linearGradient>
35
- <linearGradient id="id2" gradientUnits="userSpaceOnUse" x1="6311.87" y1="4699.25" x2="3547.5" y2="1677.39">
36
- <stop offset="0" style="stop-opacity:1; stop-color:#F65926"/>
37
- <stop offset="1" style="stop-opacity:1; stop-color:#F0AB1F"/>
38
- </linearGradient>
39
- <linearGradient id="id3" gradientUnits="userSpaceOnUse" x1="3105.35" y1="5075.61" x2="2612.67" y2="1311.04">
40
- <stop offset="0" style="stop-opacity:1; stop-color:#E52652"/>
41
- <stop offset="1" style="stop-opacity:1; stop-color:#FF4956"/>
42
- </linearGradient>
43
- <linearGradient id="id4" gradientUnits="userSpaceOnUse" x1="14599.77" y1="4808.34" x2="12000" y2="1573.25">
44
- <stop offset="0" style="stop-opacity:1; stop-color:#02C0A7"/>
45
- <stop offset="1" style="stop-opacity:1; stop-color:#02E097"/>
46
- </linearGradient>
47
- </defs>
48
- <g id="图层_x0020_1">
49
- <metadata id="CorelCorpID_0Corel-Layer"/>
50
- <g id="_1978240863120">
51
- <path class="fil0 str0" d="M2921.92 814.37l2943.46 0c660.05,0 1200.11,540.04 1200.11,1200.11l0 669.56c-180.23,1562.84 -842.69,2686.31 -2539.2,2867.65l-656.9 0c-1403.42,-112.59 -2125.37,-923.3 -2147.58,-2450.77l0 -1086.44c0,-660.07 540.04,-1200.11 1200.11,-1200.11z"/>
52
- <path class="fil1" d="M908.05 649.1c172.38,0 312.1,139.73 312.1,312.1 0,172.38 -139.73,312.1 -312.1,312.1 -172.38,0 -312.1,-139.73 -312.1,-312.1 0,-172.38 139.73,-312.1 312.1,-312.1zm15081.56 0c-172.38,0 -312.1,139.73 -312.1,312.1 0,172.38 139.73,312.1 312.1,312.1 172.38,0 312.1,-139.73 312.1,-312.1 0,-172.38 -139.73,-312.1 -312.1,-312.1zm315.15 -649.07l-4739.56 0c-332.34,-0.73 -635.61,30.83 -892.17,114.33 -1164.61,314.95 -1684.86,539.69 -2204.5,542.55 -529.24,2.92 -1057.71,-221.77 -2243.89,-542.55 -256.56,-83.5 -559.83,-115.06 -892.17,-114.33l-4739.56 0c-326.11,0 -592.9,266.79 -592.9,592.9l0 727.65c0,326.11 262.25,574.15 588.16,562.9 244.44,-8.44 379.43,161.6 368.56,407.41l0 1401.3c844.04,3884.05 6459.63,3705.54 6872.25,-983.68 37.55,-479.97 225.37,-745.7 619.85,-795.03 394.48,49.33 582.3,315.06 619.85,795.03 221.1,2512.67 1570.99,3564.6 3624.76,3705.62 1575.25,-121.99 2822.57,-766.6 3247.49,-2721.94l0 -1401.3c-10.86,-245.81 124.13,-415.84 368.56,-407.41 325.91,11.24 588.16,-236.8 588.16,-562.9l0 -727.65c0,-326.11 -266.79,-592.9 -592.9,-592.9z"/>
53
- <path class="fil2" d="M4404.53 5551.69l138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0 -682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0z"/>
54
- <path class="fil3" d="M2884.03 3833.6c-562.03,-552.91 337.59,-1229.84 756.52,-784.77l-668.1 -718.53c-248.45,-631.92 -96.85,-1153.5 631.64,-1515.94l-682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0c447.09,-261.52 828.85,-610.16 1124.32,-1073.8 -192.91,108.48 -371.35,123.1 -530.58,12.63 -269.77,225.61 -533.22,868.1 -809.3,676.82l-1287.75 -1333.74z"/>
55
- <path class="fil4" d="M12967.79 5585.01c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0 -669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l645.03 0z"/>
56
- <circle class="fil5" cx="3266.42" cy="4767.17" r="119.53"/>
57
- <path class="fil6 str1" d="M11243.45 3832.57c-587.85,-563.96 251.45,-1254.43 691.78,-800.45l-702.77 -732.9c-285.07,-644.56 -170.14,-1176.57 521.59,-1546.26l-669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l508.57 0c422,-266.75 774.17,-622.36 1034.13,-1095.27 -182.37,110.65 -356.62,125.56 -520.16,12.88 -250.21,230.12 -467.1,885.46 -750.63,690.36l-1351.23 -1360.42z"/>
58
- <path class="fil7" d="M11754.05 752.96c-691.73,369.69 -806.66,901.7 -521.59,1546.26l702.77 732.9c-440.33,-453.98 -1279.63,236.49 -691.78,800.45 1571.66,1582.35 780.78,887.85 1587.88,1752.45l136.46 0c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0z"/>
59
- <circle class="fil8" cx="13725.89" cy="2247.09" r="867.65"/>
60
- <circle class="fil9" cx="11745.99" cy="4944.33" r="119.53"/>
61
- <path class="fil10" d="M3604.1 814.37c-728.5,362.44 -880.09,884.02 -631.64,1515.94l668.1 718.53c-418.94,-445.08 -1318.56,231.85 -756.52,784.77l1503.3 1718.08 138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0z"/>
62
- <path class="fil11" d="M3602.42 3012.57l-2.01 -1.79 -1.22 -1c-433.3,-363.07 -1259.33,288.49 -715.16,823.82l1503.3 1718.08 138.96 0c366.16,-39.14 684.05,-122.25 959.42,-244.11l-1883.3 -2295z"/>
63
- <circle class="fil8" cx="5652.09" cy="2247.09" r="867.65"/>
64
- <circle class="fil12" cx="5669.32" cy="4261.82" r="86.65"/>
65
- <circle class="fil8" cx="3775.08" cy="4120.55" r="174.77"/>
66
- <path class="fil13" d="M11770.33 2919.17l123.64 74.69c7.2,5.99 14.32,12.27 21.35,18.8l1988.29 2318.88c-264.55,126.79 -574.49,213.07 -935.82,253.47l-136.46 0c-807.1,-864.6 -16.22,-170.1 -1587.88,-1752.45 -520.29,-499.15 77.34,-1097.23 526.88,-913.39z"/>
67
- <circle class="fil8" cx="12254.65" cy="4297.71" r="174.77"/>
68
- </g>
69
- </g>
70
- </svg>
@@ -1,70 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <!-- Creator: CorelDRAW 2019 (64-Bit) -->
4
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="141.563mm" height="53.8692mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
5
- viewBox="0 0 16897.65 6430.11"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
8
- <defs>
9
- <style type="text/css">
10
- <![CDATA[
11
- .str0 {stroke:#E62129;stroke-width:23.87;stroke-miterlimit:22.9256}
12
- .str1 {stroke:#06B1AB;stroke-width:9.1;stroke-miterlimit:22.9256}
13
- .fil0 {fill:none}
14
- .fil8 {fill:#FEFEFE}
15
- .fil1 {fill:#332C2B}
16
- .fil12 {fill:#F7B873}
17
- .fil5 {fill:#F3A04E}
18
- .fil9 {fill:#52C2F1}
19
- .fil13 {fill:#06B1AB}
20
- .fil2 {fill:#F63D55}
21
- .fil11 {fill:#F9483E}
22
- .fil6 {fill:url(#id0)}
23
- .fil4 {fill:url(#id1)}
24
- .fil10 {fill:url(#id2)}
25
- .fil3 {fill:url(#id3)}
26
- .fil7 {fill:url(#id4)}
27
- ]]>
28
- </style>
29
- <linearGradient id="id0" gradientUnits="userSpaceOnUse" x1="11103.21" y1="5027.34" x2="10930.41" y2="1211.98">
30
- <stop offset="0" style="stop-opacity:1; stop-color:#0A77D4"/>
31
- <stop offset="1" style="stop-opacity:1; stop-color:#00B1E0"/>
32
- </linearGradient>
33
- <linearGradient id="id1" gradientUnits="userSpaceOnUse" xlink:href="#id0" x1="11407.32" y1="5023.83" x2="11286.4" y2="1215.5">
34
- </linearGradient>
35
- <linearGradient id="id2" gradientUnits="userSpaceOnUse" x1="6311.87" y1="4699.25" x2="3547.5" y2="1677.39">
36
- <stop offset="0" style="stop-opacity:1; stop-color:#F65926"/>
37
- <stop offset="1" style="stop-opacity:1; stop-color:#F0AB1F"/>
38
- </linearGradient>
39
- <linearGradient id="id3" gradientUnits="userSpaceOnUse" x1="3105.35" y1="5075.61" x2="2612.67" y2="1311.04">
40
- <stop offset="0" style="stop-opacity:1; stop-color:#E52652"/>
41
- <stop offset="1" style="stop-opacity:1; stop-color:#FF4956"/>
42
- </linearGradient>
43
- <linearGradient id="id4" gradientUnits="userSpaceOnUse" x1="14599.77" y1="4808.34" x2="12000" y2="1573.25">
44
- <stop offset="0" style="stop-opacity:1; stop-color:#02C0A7"/>
45
- <stop offset="1" style="stop-opacity:1; stop-color:#02E097"/>
46
- </linearGradient>
47
- </defs>
48
- <g id="图层_x0020_1">
49
- <metadata id="CorelCorpID_0Corel-Layer"/>
50
- <g id="_1978240863120">
51
- <path class="fil0 str0" d="M2921.92 814.37l2943.46 0c660.05,0 1200.11,540.04 1200.11,1200.11l0 669.56c-180.23,1562.84 -842.69,2686.31 -2539.2,2867.65l-656.9 0c-1403.42,-112.59 -2125.37,-923.3 -2147.58,-2450.77l0 -1086.44c0,-660.07 540.04,-1200.11 1200.11,-1200.11z"/>
52
- <path class="fil1" d="M908.05 649.1c172.38,0 312.1,139.73 312.1,312.1 0,172.38 -139.73,312.1 -312.1,312.1 -172.38,0 -312.1,-139.73 -312.1,-312.1 0,-172.38 139.73,-312.1 312.1,-312.1zm15081.56 0c-172.38,0 -312.1,139.73 -312.1,312.1 0,172.38 139.73,312.1 312.1,312.1 172.38,0 312.1,-139.73 312.1,-312.1 0,-172.38 -139.73,-312.1 -312.1,-312.1zm315.15 -649.07l-4739.56 0c-332.34,-0.73 -635.61,30.83 -892.17,114.33 -1164.61,314.95 -1684.86,539.69 -2204.5,542.55 -529.24,2.92 -1057.71,-221.77 -2243.89,-542.55 -256.56,-83.5 -559.83,-115.06 -892.17,-114.33l-4739.56 0c-326.11,0 -592.9,266.79 -592.9,592.9l0 727.65c0,326.11 262.25,574.15 588.16,562.9 244.44,-8.44 379.43,161.6 368.56,407.41l0 1401.3c844.04,3884.05 6459.63,3705.54 6872.25,-983.68 37.55,-479.97 225.37,-745.7 619.85,-795.03 394.48,49.33 582.3,315.06 619.85,795.03 221.1,2512.67 1570.99,3564.6 3624.76,3705.62 1575.25,-121.99 2822.57,-766.6 3247.49,-2721.94l0 -1401.3c-10.86,-245.81 124.13,-415.84 368.56,-407.41 325.91,11.24 588.16,-236.8 588.16,-562.9l0 -727.65c0,-326.11 -266.79,-592.9 -592.9,-592.9z"/>
53
- <path class="fil2" d="M4404.53 5551.69l138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0 -682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0z"/>
54
- <path class="fil3" d="M2884.03 3833.6c-562.03,-552.91 337.59,-1229.84 756.52,-784.77l-668.1 -718.53c-248.45,-631.92 -96.85,-1153.5 631.64,-1515.94l-682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0c447.09,-261.52 828.85,-610.16 1124.32,-1073.8 -192.91,108.48 -371.35,123.1 -530.58,12.63 -269.77,225.61 -533.22,868.1 -809.3,676.82l-1287.75 -1333.74z"/>
55
- <path class="fil4" d="M12967.79 5585.01c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0 -669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l645.03 0z"/>
56
- <circle class="fil5" cx="3266.42" cy="4767.17" r="119.53"/>
57
- <path class="fil6 str1" d="M11243.45 3832.57c-587.85,-563.96 251.45,-1254.43 691.78,-800.45l-702.77 -732.9c-285.07,-644.56 -170.14,-1176.57 521.59,-1546.26l-669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l508.57 0c422,-266.75 774.17,-622.36 1034.13,-1095.27 -182.37,110.65 -356.62,125.56 -520.16,12.88 -250.21,230.12 -467.1,885.46 -750.63,690.36l-1351.23 -1360.42z"/>
58
- <path class="fil7" d="M11754.05 752.96c-691.73,369.69 -806.66,901.7 -521.59,1546.26l702.77 732.9c-440.33,-453.98 -1279.63,236.49 -691.78,800.45 1571.66,1582.35 780.78,887.85 1587.88,1752.45l136.46 0c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0z"/>
59
- <circle class="fil8" cx="13725.89" cy="2247.09" r="867.65"/>
60
- <circle class="fil9" cx="11745.99" cy="4944.33" r="119.53"/>
61
- <path class="fil10" d="M3604.1 814.37c-728.5,362.44 -880.09,884.02 -631.64,1515.94l668.1 718.53c-418.94,-445.08 -1318.56,231.85 -756.52,784.77l1503.3 1718.08 138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0z"/>
62
- <path class="fil11" d="M3602.42 3012.57l-2.01 -1.79 -1.22 -1c-433.3,-363.07 -1259.33,288.49 -715.16,823.82l1503.3 1718.08 138.96 0c366.16,-39.14 684.05,-122.25 959.42,-244.11l-1883.3 -2295z"/>
63
- <circle class="fil8" cx="5652.09" cy="2247.09" r="867.65"/>
64
- <circle class="fil12" cx="5669.32" cy="4261.82" r="86.65"/>
65
- <circle class="fil8" cx="3775.08" cy="4120.55" r="174.77"/>
66
- <path class="fil13" d="M11770.33 2919.17l123.64 74.69c7.2,5.99 14.32,12.27 21.35,18.8l1988.29 2318.88c-264.55,126.79 -574.49,213.07 -935.82,253.47l-136.46 0c-807.1,-864.6 -16.22,-170.1 -1587.88,-1752.45 -520.29,-499.15 77.34,-1097.23 526.88,-913.39z"/>
67
- <circle class="fil8" cx="12254.65" cy="4297.71" r="174.77"/>
68
- </g>
69
- </g>
70
- </svg>
@@ -1,70 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <!-- Creator: CorelDRAW 2019 (64-Bit) -->
4
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="141.563mm" height="53.8692mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
5
- viewBox="0 0 16897.65 6430.11"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
8
- <defs>
9
- <style type="text/css">
10
- <![CDATA[
11
- .str0 {stroke:#E62129;stroke-width:23.87;stroke-miterlimit:22.9256}
12
- .str1 {stroke:#06B1AB;stroke-width:9.1;stroke-miterlimit:22.9256}
13
- .fil0 {fill:none}
14
- .fil8 {fill:#FEFEFE}
15
- .fil1 {fill:#332C2B}
16
- .fil12 {fill:#F7B873}
17
- .fil5 {fill:#F3A04E}
18
- .fil9 {fill:#52C2F1}
19
- .fil13 {fill:#06B1AB}
20
- .fil2 {fill:#F63D55}
21
- .fil11 {fill:#F9483E}
22
- .fil6 {fill:url(#id0)}
23
- .fil4 {fill:url(#id1)}
24
- .fil10 {fill:url(#id2)}
25
- .fil3 {fill:url(#id3)}
26
- .fil7 {fill:url(#id4)}
27
- ]]>
28
- </style>
29
- <linearGradient id="id0" gradientUnits="userSpaceOnUse" x1="11103.21" y1="5027.34" x2="10930.41" y2="1211.98">
30
- <stop offset="0" style="stop-opacity:1; stop-color:#0A77D4"/>
31
- <stop offset="1" style="stop-opacity:1; stop-color:#00B1E0"/>
32
- </linearGradient>
33
- <linearGradient id="id1" gradientUnits="userSpaceOnUse" xlink:href="#id0" x1="11407.32" y1="5023.83" x2="11286.4" y2="1215.5">
34
- </linearGradient>
35
- <linearGradient id="id2" gradientUnits="userSpaceOnUse" x1="6311.87" y1="4699.25" x2="3547.5" y2="1677.39">
36
- <stop offset="0" style="stop-opacity:1; stop-color:#F65926"/>
37
- <stop offset="1" style="stop-opacity:1; stop-color:#F0AB1F"/>
38
- </linearGradient>
39
- <linearGradient id="id3" gradientUnits="userSpaceOnUse" x1="3105.35" y1="5075.61" x2="2612.67" y2="1311.04">
40
- <stop offset="0" style="stop-opacity:1; stop-color:#E52652"/>
41
- <stop offset="1" style="stop-opacity:1; stop-color:#FF4956"/>
42
- </linearGradient>
43
- <linearGradient id="id4" gradientUnits="userSpaceOnUse" x1="14599.77" y1="4808.34" x2="12000" y2="1573.25">
44
- <stop offset="0" style="stop-opacity:1; stop-color:#02C0A7"/>
45
- <stop offset="1" style="stop-opacity:1; stop-color:#02E097"/>
46
- </linearGradient>
47
- </defs>
48
- <g id="图层_x0020_1">
49
- <metadata id="CorelCorpID_0Corel-Layer"/>
50
- <g id="_1978240863120">
51
- <path class="fil0 str0" d="M2921.92 814.37l2943.46 0c660.05,0 1200.11,540.04 1200.11,1200.11l0 669.56c-180.23,1562.84 -842.69,2686.31 -2539.2,2867.65l-656.9 0c-1403.42,-112.59 -2125.37,-923.3 -2147.58,-2450.77l0 -1086.44c0,-660.07 540.04,-1200.11 1200.11,-1200.11z"/>
52
- <path class="fil1" d="M908.05 649.1c172.38,0 312.1,139.73 312.1,312.1 0,172.38 -139.73,312.1 -312.1,312.1 -172.38,0 -312.1,-139.73 -312.1,-312.1 0,-172.38 139.73,-312.1 312.1,-312.1zm15081.56 0c-172.38,0 -312.1,139.73 -312.1,312.1 0,172.38 139.73,312.1 312.1,312.1 172.38,0 312.1,-139.73 312.1,-312.1 0,-172.38 -139.73,-312.1 -312.1,-312.1zm315.15 -649.07l-4739.56 0c-332.34,-0.73 -635.61,30.83 -892.17,114.33 -1164.61,314.95 -1684.86,539.69 -2204.5,542.55 -529.24,2.92 -1057.71,-221.77 -2243.89,-542.55 -256.56,-83.5 -559.83,-115.06 -892.17,-114.33l-4739.56 0c-326.11,0 -592.9,266.79 -592.9,592.9l0 727.65c0,326.11 262.25,574.15 588.16,562.9 244.44,-8.44 379.43,161.6 368.56,407.41l0 1401.3c844.04,3884.05 6459.63,3705.54 6872.25,-983.68 37.55,-479.97 225.37,-745.7 619.85,-795.03 394.48,49.33 582.3,315.06 619.85,795.03 221.1,2512.67 1570.99,3564.6 3624.76,3705.62 1575.25,-121.99 2822.57,-766.6 3247.49,-2721.94l0 -1401.3c-10.86,-245.81 124.13,-415.84 368.56,-407.41 325.91,11.24 588.16,-236.8 588.16,-562.9l0 -727.65c0,-326.11 -266.79,-592.9 -592.9,-592.9z"/>
53
- <path class="fil2" d="M4404.53 5551.69l138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0 -682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0z"/>
54
- <path class="fil3" d="M2884.03 3833.6c-562.03,-552.91 337.59,-1229.84 756.52,-784.77l-668.1 -718.53c-248.45,-631.92 -96.85,-1153.5 631.64,-1515.94l-682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0c447.09,-261.52 828.85,-610.16 1124.32,-1073.8 -192.91,108.48 -371.35,123.1 -530.58,12.63 -269.77,225.61 -533.22,868.1 -809.3,676.82l-1287.75 -1333.74z"/>
55
- <path class="fil4" d="M12967.79 5585.01c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0 -669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l645.03 0z"/>
56
- <circle class="fil5" cx="3266.42" cy="4767.17" r="119.53"/>
57
- <path class="fil6 str1" d="M11243.45 3832.57c-587.85,-563.96 251.45,-1254.43 691.78,-800.45l-702.77 -732.9c-285.07,-644.56 -170.14,-1176.57 521.59,-1546.26l-669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l508.57 0c422,-266.75 774.17,-622.36 1034.13,-1095.27 -182.37,110.65 -356.62,125.56 -520.16,12.88 -250.21,230.12 -467.1,885.46 -750.63,690.36l-1351.23 -1360.42z"/>
58
- <path class="fil7" d="M11754.05 752.96c-691.73,369.69 -806.66,901.7 -521.59,1546.26l702.77 732.9c-440.33,-453.98 -1279.63,236.49 -691.78,800.45 1571.66,1582.35 780.78,887.85 1587.88,1752.45l136.46 0c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0z"/>
59
- <circle class="fil8" cx="13725.89" cy="2247.09" r="867.65"/>
60
- <circle class="fil9" cx="11745.99" cy="4944.33" r="119.53"/>
61
- <path class="fil10" d="M3604.1 814.37c-728.5,362.44 -880.09,884.02 -631.64,1515.94l668.1 718.53c-418.94,-445.08 -1318.56,231.85 -756.52,784.77l1503.3 1718.08 138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0z"/>
62
- <path class="fil11" d="M3602.42 3012.57l-2.01 -1.79 -1.22 -1c-433.3,-363.07 -1259.33,288.49 -715.16,823.82l1503.3 1718.08 138.96 0c366.16,-39.14 684.05,-122.25 959.42,-244.11l-1883.3 -2295z"/>
63
- <circle class="fil8" cx="5652.09" cy="2247.09" r="867.65"/>
64
- <circle class="fil12" cx="5669.32" cy="4261.82" r="86.65"/>
65
- <circle class="fil8" cx="3775.08" cy="4120.55" r="174.77"/>
66
- <path class="fil13" d="M11770.33 2919.17l123.64 74.69c7.2,5.99 14.32,12.27 21.35,18.8l1988.29 2318.88c-264.55,126.79 -574.49,213.07 -935.82,253.47l-136.46 0c-807.1,-864.6 -16.22,-170.1 -1587.88,-1752.45 -520.29,-499.15 77.34,-1097.23 526.88,-913.39z"/>
67
- <circle class="fil8" cx="12254.65" cy="4297.71" r="174.77"/>
68
- </g>
69
- </g>
70
- </svg>
@@ -1,70 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <!-- Creator: CorelDRAW 2019 (64-Bit) -->
4
- <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="141.563mm" height="53.8692mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
5
- viewBox="0 0 16897.65 6430.11"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
8
- <defs>
9
- <style type="text/css">
10
- <![CDATA[
11
- .str0 {stroke:#E62129;stroke-width:23.87;stroke-miterlimit:22.9256}
12
- .str1 {stroke:#06B1AB;stroke-width:9.1;stroke-miterlimit:22.9256}
13
- .fil0 {fill:none}
14
- .fil8 {fill:#FEFEFE}
15
- .fil1 {fill:#332C2B}
16
- .fil12 {fill:#F7B873}
17
- .fil5 {fill:#F3A04E}
18
- .fil9 {fill:#52C2F1}
19
- .fil13 {fill:#06B1AB}
20
- .fil2 {fill:#F63D55}
21
- .fil11 {fill:#F9483E}
22
- .fil6 {fill:url(#id0)}
23
- .fil4 {fill:url(#id1)}
24
- .fil10 {fill:url(#id2)}
25
- .fil3 {fill:url(#id3)}
26
- .fil7 {fill:url(#id4)}
27
- ]]>
28
- </style>
29
- <linearGradient id="id0" gradientUnits="userSpaceOnUse" x1="11103.21" y1="5027.34" x2="10930.41" y2="1211.98">
30
- <stop offset="0" style="stop-opacity:1; stop-color:#0A77D4"/>
31
- <stop offset="1" style="stop-opacity:1; stop-color:#00B1E0"/>
32
- </linearGradient>
33
- <linearGradient id="id1" gradientUnits="userSpaceOnUse" xlink:href="#id0" x1="11407.32" y1="5023.83" x2="11286.4" y2="1215.5">
34
- </linearGradient>
35
- <linearGradient id="id2" gradientUnits="userSpaceOnUse" x1="6311.87" y1="4699.25" x2="3547.5" y2="1677.39">
36
- <stop offset="0" style="stop-opacity:1; stop-color:#F65926"/>
37
- <stop offset="1" style="stop-opacity:1; stop-color:#F0AB1F"/>
38
- </linearGradient>
39
- <linearGradient id="id3" gradientUnits="userSpaceOnUse" x1="3105.35" y1="5075.61" x2="2612.67" y2="1311.04">
40
- <stop offset="0" style="stop-opacity:1; stop-color:#E52652"/>
41
- <stop offset="1" style="stop-opacity:1; stop-color:#FF4956"/>
42
- </linearGradient>
43
- <linearGradient id="id4" gradientUnits="userSpaceOnUse" x1="14599.77" y1="4808.34" x2="12000" y2="1573.25">
44
- <stop offset="0" style="stop-opacity:1; stop-color:#02C0A7"/>
45
- <stop offset="1" style="stop-opacity:1; stop-color:#02E097"/>
46
- </linearGradient>
47
- </defs>
48
- <g id="图层_x0020_1">
49
- <metadata id="CorelCorpID_0Corel-Layer"/>
50
- <g id="_1978240863120">
51
- <path class="fil0 str0" d="M2921.92 814.37l2943.46 0c660.05,0 1200.11,540.04 1200.11,1200.11l0 669.56c-180.23,1562.84 -842.69,2686.31 -2539.2,2867.65l-656.9 0c-1403.42,-112.59 -2125.37,-923.3 -2147.58,-2450.77l0 -1086.44c0,-660.07 540.04,-1200.11 1200.11,-1200.11z"/>
52
- <path class="fil1" d="M908.05 649.1c172.38,0 312.1,139.73 312.1,312.1 0,172.38 -139.73,312.1 -312.1,312.1 -172.38,0 -312.1,-139.73 -312.1,-312.1 0,-172.38 139.73,-312.1 312.1,-312.1zm15081.56 0c-172.38,0 -312.1,139.73 -312.1,312.1 0,172.38 139.73,312.1 312.1,312.1 172.38,0 312.1,-139.73 312.1,-312.1 0,-172.38 -139.73,-312.1 -312.1,-312.1zm315.15 -649.07l-4739.56 0c-332.34,-0.73 -635.61,30.83 -892.17,114.33 -1164.61,314.95 -1684.86,539.69 -2204.5,542.55 -529.24,2.92 -1057.71,-221.77 -2243.89,-542.55 -256.56,-83.5 -559.83,-115.06 -892.17,-114.33l-4739.56 0c-326.11,0 -592.9,266.79 -592.9,592.9l0 727.65c0,326.11 262.25,574.15 588.16,562.9 244.44,-8.44 379.43,161.6 368.56,407.41l0 1401.3c844.04,3884.05 6459.63,3705.54 6872.25,-983.68 37.55,-479.97 225.37,-745.7 619.85,-795.03 394.48,49.33 582.3,315.06 619.85,795.03 221.1,2512.67 1570.99,3564.6 3624.76,3705.62 1575.25,-121.99 2822.57,-766.6 3247.49,-2721.94l0 -1401.3c-10.86,-245.81 124.13,-415.84 368.56,-407.41 325.91,11.24 588.16,-236.8 588.16,-562.9l0 -727.65c0,-326.11 -266.79,-592.9 -592.9,-592.9z"/>
53
- <path class="fil2" d="M4404.53 5551.69l138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0 -682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0z"/>
54
- <path class="fil3" d="M2884.03 3833.6c-562.03,-552.91 337.59,-1229.84 756.52,-784.77l-668.1 -718.53c-248.45,-631.92 -96.85,-1153.5 631.64,-1515.94l-682.18 0c-660.07,0 -1200.11,540.04 -1200.11,1200.11l0 1086.44c22.21,1527.47 744.16,2338.19 2147.58,2450.77l517.94 0c447.09,-261.52 828.85,-610.16 1124.32,-1073.8 -192.91,108.48 -371.35,123.1 -530.58,12.63 -269.77,225.61 -533.22,868.1 -809.3,676.82l-1287.75 -1333.74z"/>
55
- <path class="fil4" d="M12967.79 5585.01c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0 -669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l645.03 0z"/>
56
- <circle class="fil5" cx="3266.42" cy="4767.17" r="119.53"/>
57
- <path class="fil6 str1" d="M11243.45 3832.57c-587.85,-563.96 251.45,-1254.43 691.78,-800.45l-702.77 -732.9c-285.07,-644.56 -170.14,-1176.57 521.59,-1546.26l-669.84 0c-648.13,0 -1143.27,550.85 -1100.32,1224.11l70.69 1108.16c121.19,1558.01 882.83,2384.94 2268.19,2499.78l508.57 0c422,-266.75 774.17,-622.36 1034.13,-1095.27 -182.37,110.65 -356.62,125.56 -520.16,12.88 -250.21,230.12 -467.1,885.46 -750.63,690.36l-1351.23 -1360.42z"/>
58
- <path class="fil7" d="M11754.05 752.96c-691.73,369.69 -806.66,901.7 -521.59,1546.26l702.77 732.9c-440.33,-453.98 -1279.63,236.49 -691.78,800.45 1571.66,1582.35 780.78,887.85 1587.88,1752.45l136.46 0c1654.02,-184.97 2231.4,-1330.91 2306.7,-2925.01l-43.57 -682.94c-42.95,-673.27 -608.37,-1224.11 -1256.49,-1224.11l-2220.38 0z"/>
59
- <circle class="fil8" cx="13725.89" cy="2247.09" r="867.65"/>
60
- <circle class="fil9" cx="11745.99" cy="4944.33" r="119.53"/>
61
- <path class="fil10" d="M3604.1 814.37c-728.5,362.44 -880.09,884.02 -631.64,1515.94l668.1 718.53c-418.94,-445.08 -1318.56,231.85 -756.52,784.77l1503.3 1718.08 138.96 0c1696.5,-181.34 2358.97,-1304.82 2539.2,-2867.65l0 -669.56c0,-660.07 -540.06,-1200.11 -1200.11,-1200.11l-2261.28 0z"/>
62
- <path class="fil11" d="M3602.42 3012.57l-2.01 -1.79 -1.22 -1c-433.3,-363.07 -1259.33,288.49 -715.16,823.82l1503.3 1718.08 138.96 0c366.16,-39.14 684.05,-122.25 959.42,-244.11l-1883.3 -2295z"/>
63
- <circle class="fil8" cx="5652.09" cy="2247.09" r="867.65"/>
64
- <circle class="fil12" cx="5669.32" cy="4261.82" r="86.65"/>
65
- <circle class="fil8" cx="3775.08" cy="4120.55" r="174.77"/>
66
- <path class="fil13" d="M11770.33 2919.17l123.64 74.69c7.2,5.99 14.32,12.27 21.35,18.8l1988.29 2318.88c-264.55,126.79 -574.49,213.07 -935.82,253.47l-136.46 0c-807.1,-864.6 -16.22,-170.1 -1587.88,-1752.45 -520.29,-499.15 77.34,-1097.23 526.88,-913.39z"/>
67
- <circle class="fil8" cx="12254.65" cy="4297.71" r="174.77"/>
68
- </g>
69
- </g>
70
- </svg>
package/docs/index.tsx DELETED
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- import Tool from '@/index';
3
-
4
- export default () => {
5
- return <Tool />;
6
- };
package/modern.config.ts DELETED
@@ -1,15 +0,0 @@
1
- import { moduleTools, defineConfig } from '@modern-js/module-tools';
2
- import { modulePluginDoc } from '@modern-js/plugin-module-doc';
3
-
4
- export default defineConfig({
5
- plugins: [
6
- moduleTools(),
7
- modulePluginDoc({
8
- doc: {
9
- sidebar: false,
10
- hideNavbar: true,
11
- },
12
- }),
13
- ],
14
- buildPreset: 'npm-component',
15
- });