@myun/gimi-chat 0.0.3 → 0.0.5
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.
- package/dist/apis/fetch.d.ts +64 -0
- package/dist/apis/fetch.js +512 -0
- package/dist/apis/useApi.d.ts +57 -0
- package/dist/apis/useApi.js +378 -0
- package/dist/assets/image/Subtract.png +0 -0
- package/dist/assets/image/ai-logo.png +0 -0
- package/dist/assets/image/copyIcon.png +0 -0
- package/dist/assets/image/deepthinkActive.png +0 -0
- package/dist/assets/image/empty-img-dark.png +0 -0
- package/dist/assets/image/empty-img.png +0 -0
- package/dist/assets/image/like_active.png +0 -0
- package/dist/assets/image/love.png +0 -0
- package/dist/assets/image/retry.png +0 -0
- package/dist/assets/image/soundOut.png +0 -0
- package/dist/assets/image/unlike_active.png +0 -0
- package/dist/assets/image/unlove.png +0 -0
- package/dist/assets/lottie/ai-bg.json +1704 -0
- package/dist/assets/lottie/ai-loading.json +192 -0
- package/dist/assets/lottie/ai-output-loading.json +272 -0
- package/dist/assets/lottie/ai-output-normal.json +17694 -0
- package/dist/assets/lottie/ai-output-strengthen.json +17321 -0
- package/dist/assets/lottie/ai-voice-play.json +1 -0
- package/dist/assets/lottie/living.json +705 -0
- package/dist/assets/lottie/myun-living.json +726 -0
- package/dist/assets/lottie/myun-loading.json +530 -0
- package/dist/components/ai-chat-dialogue/index.d.ts +16 -0
- package/dist/components/ai-chat-dialogue/index.js +1056 -0
- package/dist/components/ai-chat-dialogue/index.module.css +230 -0
- package/dist/components/ai-chat-dialogue/message-parser.d.ts +36 -0
- package/dist/components/ai-chat-dialogue/message-parser.js +52 -0
- package/dist/components/ai-chat-dialogue/tlv.d.ts +7 -0
- package/dist/components/ai-chat-dialogue/tlv.js +32 -0
- package/dist/components/ai-chat-dialogue/volc-voice-call-client.d.ts +47 -0
- package/dist/components/ai-chat-dialogue/volc-voice-call-client.js +246 -0
- package/dist/components/ai-correction/index.d.ts +5 -0
- package/dist/components/ai-correction/index.js +45 -0
- package/dist/components/ai-loading/index.d.ts +3 -0
- package/dist/components/ai-loading/index.js +14 -0
- package/dist/components/ai-loading/index.module.css +11 -0
- package/dist/components/answer-item/index.d.ts +27 -0
- package/dist/components/answer-item/index.js +194 -0
- package/dist/components/answer-item/index.module.css +266 -0
- package/dist/components/ask-card/index.d.ts +10 -0
- package/dist/components/ask-card/index.js +76 -0
- package/dist/components/ask-card/index.module.css +122 -0
- package/dist/components/chat-input/index.d.ts +31 -0
- package/dist/components/chat-input/index.js +433 -0
- package/dist/components/chat-input/index.module.css +42 -0
- package/dist/components/chat-voice/VoiceCommunication.d.ts +7 -0
- package/dist/components/chat-voice/VoiceCommunication.js +69 -0
- package/dist/components/chat-voice/VoiceRecord.d.ts +7 -0
- package/dist/components/chat-voice/VoiceRecord.js +34 -0
- package/dist/components/conversation-delete/index.d.ts +5 -0
- package/dist/components/conversation-delete/index.js +24 -0
- package/dist/components/dots-loading/index.d.ts +2 -0
- package/dist/components/dots-loading/index.js +11 -0
- package/dist/components/dots-loading/index.module.css +41 -0
- package/dist/components/empty/index.d.ts +9 -0
- package/dist/components/empty/index.js +32 -0
- package/dist/components/empty/index.module.css +24 -0
- package/dist/components/excel-components/ExcelCard.d.ts +11 -0
- package/dist/components/excel-components/ExcelCard.js +35 -0
- package/dist/components/excel-components/ExcelExcuting.d.ts +10 -0
- package/dist/components/excel-components/ExcelExcuting.js +263 -0
- package/dist/components/excel-components/ExcelFailCard.d.ts +9 -0
- package/dist/components/excel-components/ExcelFailCard.js +20 -0
- package/dist/components/excel-components/ExcelSuccessCard.d.ts +5 -0
- package/dist/components/excel-components/ExcelSuccessCard.js +50 -0
- package/dist/components/excel-components/index.module.css +212 -0
- package/dist/components/excel-components/styles.module.css +178 -0
- package/dist/components/file-card/fileCardSidebar.d.ts +8 -0
- package/dist/components/file-card/fileCardSidebar.js +56 -0
- package/dist/components/file-card/index.d.ts +15 -0
- package/dist/components/file-card/index.js +97 -0
- package/dist/components/file-card/index.module.css +139 -0
- package/dist/components/file-preview/index.d.ts +3 -0
- package/dist/components/file-preview/index.js +227 -0
- package/dist/components/file-preview/index.module.css +83 -0
- package/dist/components/file-upload/index.d.ts +16 -0
- package/dist/components/file-upload/index.js +238 -0
- package/dist/components/file-upload/uploadV1.d.ts +16 -0
- package/dist/components/file-upload/uploadV1.js +267 -0
- package/dist/components/gimi-sidebar/index.d.ts +17 -0
- package/dist/components/gimi-sidebar/index.js +41 -0
- package/dist/components/gimi-sidebar/index.module.css +118 -0
- package/dist/components/header/index.d.ts +5 -0
- package/dist/components/header/index.js +20 -0
- package/dist/components/header/index.module.css +19 -0
- package/dist/components/iconfont-com/index.d.ts +11 -0
- package/dist/components/iconfont-com/index.js +29 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/knowledge-trace/KnowledgeIconComponent.d.ts +7 -0
- package/dist/components/knowledge-trace/KnowledgeIconComponent.js +101 -0
- package/dist/components/knowledge-trace/classList.d.ts +6 -0
- package/dist/components/knowledge-trace/classList.js +72 -0
- package/dist/components/knowledge-trace/documentList.d.ts +6 -0
- package/dist/components/knowledge-trace/documentList.js +75 -0
- package/dist/components/knowledge-trace/index.d.ts +18 -0
- package/dist/components/knowledge-trace/index.js +155 -0
- package/dist/components/knowledge-trace/index.module.css +254 -0
- package/dist/components/knowledge-trace/interfaces.d.ts +166 -0
- package/dist/components/knowledge-trace/interfaces.js +1 -0
- package/dist/components/knowledge-trace/videoList.d.ts +6 -0
- package/dist/components/knowledge-trace/videoList.js +91 -0
- package/dist/components/lottie-img/index.d.ts +8 -0
- package/dist/components/lottie-img/index.js +99 -0
- package/dist/components/message-actions/CopyButton.d.ts +7 -0
- package/dist/components/message-actions/CopyButton.js +33 -0
- package/dist/components/message-actions/LikeButton.d.ts +7 -0
- package/dist/components/message-actions/LikeButton.js +34 -0
- package/dist/components/message-actions/RegenerateButton.d.ts +5 -0
- package/dist/components/message-actions/RegenerateButton.js +27 -0
- package/dist/components/message-actions/UnLikeButton.d.ts +7 -0
- package/dist/components/message-actions/UnLikeButton.js +34 -0
- package/dist/components/message-actions/VoicePlay.d.ts +10 -0
- package/dist/components/message-actions/VoicePlay.js +74 -0
- package/dist/components/message-list/index.d.ts +19 -0
- package/dist/components/message-list/index.js +164 -0
- package/dist/components/message-list/index.module.css +261 -0
- package/dist/components/no-microphone-root/index.d.ts +6 -0
- package/dist/components/no-microphone-root/index.js +36 -0
- package/dist/components/no-microphone-root/index.module.css +48 -0
- package/dist/components/preset-agent-content/index.d.ts +8 -0
- package/dist/components/preset-agent-content/index.js +24 -0
- package/dist/components/preset-agent-content/index.module.css +46 -0
- package/dist/components/quoted-content/index.d.ts +0 -0
- package/dist/components/quoted-content/index.js +171 -0
- package/dist/components/quoted-content/index.module.css +80 -0
- package/dist/components/reasoning-content/index.d.ts +6 -0
- package/dist/components/reasoning-content/index.js +116 -0
- package/dist/components/reasoning-content/index.module.css +169 -0
- package/dist/components/reference-content/index.d.ts +28 -0
- package/dist/components/reference-content/index.js +125 -0
- package/dist/components/reference-content/index.module.css +84 -0
- package/dist/components/templates/CommonChat.d.ts +5 -0
- package/dist/components/templates/CommonChat.js +218 -0
- package/dist/components/templates/GimiChatComponent.d.ts +4 -0
- package/dist/components/templates/GimiChatComponent.js +23 -0
- package/dist/components/templates/demo/demo.d.ts +2 -0
- package/dist/components/templates/demo/demo.js +109 -0
- package/dist/components/templates/index.module.css +109 -0
- package/dist/components/upload-list/index.d.ts +15 -0
- package/dist/components/upload-list/index.js +90 -0
- package/dist/components/upload-list/index.module.css +119 -0
- package/dist/components/voice-bars/index.d.ts +4 -0
- package/dist/components/voice-bars/index.js +174 -0
- package/dist/components/voice-check-dialog/index.d.ts +8 -0
- package/dist/components/voice-check-dialog/index.js +163 -0
- package/dist/components/voice-check-dialog/index.module.css +9 -0
- package/dist/components/voice-recording/index.d.ts +9 -0
- package/dist/components/voice-recording/index.js +54 -0
- package/dist/components/voice-recording/index.module.css +41 -0
- package/dist/components/work-flow-content/demo.d.ts +3 -0
- package/dist/components/work-flow-content/demo.js +11 -0
- package/dist/components/work-flow-content/index.d.ts +6 -0
- package/dist/components/work-flow-content/index.js +55 -0
- package/dist/components/work-flow-content/index.module.css +24 -0
- package/dist/constants.d.ts +24 -0
- package/dist/constants.js +24 -0
- package/dist/hooks/useChatActions.d.ts +12 -0
- package/dist/hooks/useChatActions.js +207 -0
- package/dist/hooks/useChatHistory.d.ts +8 -0
- package/dist/hooks/useChatHistory.js +225 -0
- package/dist/hooks/useChatMessage.d.ts +49 -0
- package/dist/hooks/useChatMessage.js +87 -0
- package/dist/hooks/useChatRecommend.d.ts +8 -0
- package/dist/hooks/useChatRecommend.js +126 -0
- package/dist/hooks/useChatStream.d.ts +20 -0
- package/dist/hooks/useChatStream.js +244 -0
- package/dist/hooks/useChatUI.d.ts +32 -0
- package/dist/hooks/useChatUI.js +134 -0
- package/dist/hooks/useChatVoice.d.ts +11 -0
- package/dist/hooks/useChatVoice.js +379 -0
- package/dist/hooks/useCommonChatAPI.d.ts +27 -0
- package/dist/hooks/useCommonChatAPI.js +1276 -0
- package/dist/hooks/useFile.d.ts +13 -0
- package/dist/hooks/useFile.js +288 -0
- package/dist/hooks/useKnowledgeService.d.ts +17 -0
- package/dist/hooks/useKnowledgeService.js +210 -0
- package/dist/hooks/useLastEventId.d.ts +8 -0
- package/dist/hooks/useLastEventId.js +66 -0
- package/dist/hooks/useLongPoll.d.ts +3 -0
- package/dist/hooks/useLongPoll.js +111 -0
- package/dist/hooks/useScroll.d.ts +4 -0
- package/dist/hooks/useScroll.js +172 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/interfaces/chatMessage.d.ts +139 -0
- package/dist/interfaces/fileInterface.d.ts +10 -0
- package/dist/interfaces/fileInterface.js +11 -0
- package/dist/interfaces/knowledgeTrace.d.ts +177 -0
- package/dist/store/hooks.d.ts +4 -0
- package/dist/store/hooks.js +3 -0
- package/dist/store/index.d.ts +7 -0
- package/dist/store/index.js +7 -0
- package/dist/store/slices/gimiMenuSlice.d.ts +95 -0
- package/dist/store/slices/gimiMenuSlice.js +251 -0
- package/dist/utils/chatInputUtil.d.ts +19 -0
- package/dist/utils/chatInputUtil.js +45 -0
- package/dist/utils/tools.d.ts +50 -0
- package/dist/utils/tools.js +474 -0
- package/dist/utils/voice-stream.d.ts +119 -0
- package/dist/utils/voice-stream.js +1162 -0
- package/package.json +5 -6
- package/LICENSE +0 -21
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nm": "Ã¥ÂÂæÂ 1",
|
|
3
|
+
"ddd": 0,
|
|
4
|
+
"h": 80,
|
|
5
|
+
"w": 80,
|
|
6
|
+
"meta": { "g": "@lottiefiles/toolkit-js 0.33.2" },
|
|
7
|
+
"layers": [
|
|
8
|
+
{
|
|
9
|
+
"ty": 4,
|
|
10
|
+
"nm": "å½¢ç¶å¾屠2",
|
|
11
|
+
"sr": 1,
|
|
12
|
+
"st": 0,
|
|
13
|
+
"op": 900,
|
|
14
|
+
"ip": 0,
|
|
15
|
+
"hd": false,
|
|
16
|
+
"ddd": 0,
|
|
17
|
+
"bm": 0,
|
|
18
|
+
"hasMask": false,
|
|
19
|
+
"ao": 0,
|
|
20
|
+
"ks": {
|
|
21
|
+
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
22
|
+
"s": { "a": 0, "k": [26.67, 26.67, 100], "ix": 6 },
|
|
23
|
+
"sk": { "a": 0, "k": 0 },
|
|
24
|
+
"p": {
|
|
25
|
+
"a": 1,
|
|
26
|
+
"k": [
|
|
27
|
+
{ "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [48, 41.73, 0], "t": 0 },
|
|
28
|
+
{ "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [26.67, 41.73, 0], "t": 19 },
|
|
29
|
+
{ "s": [48, 41.73, 0], "t": 40 }
|
|
30
|
+
],
|
|
31
|
+
"ix": 2
|
|
32
|
+
},
|
|
33
|
+
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
34
|
+
"sa": { "a": 0, "k": 0 },
|
|
35
|
+
"o": { "a": 0, "k": 100, "ix": 11 }
|
|
36
|
+
},
|
|
37
|
+
"ef": [],
|
|
38
|
+
"shapes": [
|
|
39
|
+
{
|
|
40
|
+
"ty": "gr",
|
|
41
|
+
"bm": 0,
|
|
42
|
+
"hd": false,
|
|
43
|
+
"mn": "ADBE Vector Group",
|
|
44
|
+
"nm": "æ¤Âå 1",
|
|
45
|
+
"ix": 1,
|
|
46
|
+
"cix": 2,
|
|
47
|
+
"np": 3,
|
|
48
|
+
"it": [
|
|
49
|
+
{
|
|
50
|
+
"ty": "el",
|
|
51
|
+
"bm": 0,
|
|
52
|
+
"hd": false,
|
|
53
|
+
"mn": "ADBE Vector Shape - Ellipse",
|
|
54
|
+
"nm": "æ¤ÂÃ¥ÂÂ路徠1",
|
|
55
|
+
"d": 1,
|
|
56
|
+
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
57
|
+
"s": { "a": 0, "k": [40.916, 40.916], "ix": 2 }
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"ty": "st",
|
|
61
|
+
"bm": 0,
|
|
62
|
+
"hd": false,
|
|
63
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
|
64
|
+
"nm": "æÂÂè¾¹ 1",
|
|
65
|
+
"lc": 1,
|
|
66
|
+
"lj": 1,
|
|
67
|
+
"ml": 4,
|
|
68
|
+
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
69
|
+
"w": { "a": 0, "k": 0, "ix": 5 },
|
|
70
|
+
"c": { "a": 0, "k": [1, 1, 1], "ix": 3 }
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"ty": "fl",
|
|
74
|
+
"bm": 0,
|
|
75
|
+
"hd": false,
|
|
76
|
+
"mn": "ADBE Vector Graphic - Fill",
|
|
77
|
+
"nm": "å¡«åÂ
Â
1",
|
|
78
|
+
"c": { "a": 0, "k": [0.251, 0.5255, 1], "ix": 4 },
|
|
79
|
+
"r": 1,
|
|
80
|
+
"o": { "a": 0, "k": 100, "ix": 5 }
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"ty": "tr",
|
|
84
|
+
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
85
|
+
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
86
|
+
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
87
|
+
"p": { "a": 0, "k": [4.534, -3.114], "ix": 2 },
|
|
88
|
+
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
89
|
+
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
90
|
+
"o": { "a": 0, "k": 100, "ix": 7 }
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"ind": 1
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"ty": 4,
|
|
99
|
+
"nm": "å½¢ç¶å¾屠1",
|
|
100
|
+
"sr": 1,
|
|
101
|
+
"st": 0,
|
|
102
|
+
"op": 900,
|
|
103
|
+
"ip": 0,
|
|
104
|
+
"hd": false,
|
|
105
|
+
"ddd": 0,
|
|
106
|
+
"bm": 0,
|
|
107
|
+
"hasMask": false,
|
|
108
|
+
"ao": 0,
|
|
109
|
+
"ks": {
|
|
110
|
+
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
111
|
+
"s": { "a": 0, "k": [26.67, 26.67, 100], "ix": 6 },
|
|
112
|
+
"sk": { "a": 0, "k": 0 },
|
|
113
|
+
"p": {
|
|
114
|
+
"a": 1,
|
|
115
|
+
"k": [
|
|
116
|
+
{ "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [26.67, 41.73, 0], "t": 0 },
|
|
117
|
+
{ "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [48, 41.73, 0], "t": 19 },
|
|
118
|
+
{ "s": [26.67, 41.73, 0], "t": 40 }
|
|
119
|
+
],
|
|
120
|
+
"ix": 2
|
|
121
|
+
},
|
|
122
|
+
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
123
|
+
"sa": { "a": 0, "k": 0 },
|
|
124
|
+
"o": { "a": 0, "k": 100, "ix": 11 }
|
|
125
|
+
},
|
|
126
|
+
"ef": [],
|
|
127
|
+
"shapes": [
|
|
128
|
+
{
|
|
129
|
+
"ty": "gr",
|
|
130
|
+
"bm": 0,
|
|
131
|
+
"hd": false,
|
|
132
|
+
"mn": "ADBE Vector Group",
|
|
133
|
+
"nm": "æ¤Âå 1",
|
|
134
|
+
"ix": 1,
|
|
135
|
+
"cix": 2,
|
|
136
|
+
"np": 3,
|
|
137
|
+
"it": [
|
|
138
|
+
{
|
|
139
|
+
"ty": "el",
|
|
140
|
+
"bm": 0,
|
|
141
|
+
"hd": false,
|
|
142
|
+
"mn": "ADBE Vector Shape - Ellipse",
|
|
143
|
+
"nm": "æ¤ÂÃ¥ÂÂ路徠1",
|
|
144
|
+
"d": 1,
|
|
145
|
+
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
146
|
+
"s": { "a": 0, "k": [40.916, 40.916], "ix": 2 }
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"ty": "st",
|
|
150
|
+
"bm": 0,
|
|
151
|
+
"hd": false,
|
|
152
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
|
153
|
+
"nm": "æÂÂè¾¹ 1",
|
|
154
|
+
"lc": 1,
|
|
155
|
+
"lj": 1,
|
|
156
|
+
"ml": 4,
|
|
157
|
+
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
158
|
+
"w": { "a": 0, "k": 0, "ix": 5 },
|
|
159
|
+
"c": { "a": 0, "k": [1, 1, 1], "ix": 3 }
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"ty": "fl",
|
|
163
|
+
"bm": 0,
|
|
164
|
+
"hd": false,
|
|
165
|
+
"mn": "ADBE Vector Graphic - Fill",
|
|
166
|
+
"nm": "å¡«åÂ
Â
1",
|
|
167
|
+
"c": { "a": 0, "k": [0.1843, 0.898, 0.9294], "ix": 4 },
|
|
168
|
+
"r": 1,
|
|
169
|
+
"o": { "a": 0, "k": 100, "ix": 5 }
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"ty": "tr",
|
|
173
|
+
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
174
|
+
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
175
|
+
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
176
|
+
"p": { "a": 0, "k": [4.534, -3.114], "ix": 2 },
|
|
177
|
+
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
178
|
+
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
179
|
+
"o": { "a": 0, "k": 100, "ix": 7 }
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"ind": 2
|
|
185
|
+
}
|
|
186
|
+
],
|
|
187
|
+
"v": "4.10.1",
|
|
188
|
+
"fr": 30,
|
|
189
|
+
"op": 41,
|
|
190
|
+
"ip": 0,
|
|
191
|
+
"assets": []
|
|
192
|
+
}
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
{
|
|
2
|
+
"v": "5.5.8",
|
|
3
|
+
"fr": 60,
|
|
4
|
+
"ip": 0,
|
|
5
|
+
"op": 75,
|
|
6
|
+
"w": 200,
|
|
7
|
+
"h": 200,
|
|
8
|
+
"nm": "SoundBar",
|
|
9
|
+
"ddd": 0,
|
|
10
|
+
"assets": [],
|
|
11
|
+
"layers": [
|
|
12
|
+
{
|
|
13
|
+
"ddd": 0,
|
|
14
|
+
"ind": 1,
|
|
15
|
+
"ty": 4,
|
|
16
|
+
"nm": "Shape Layer 3",
|
|
17
|
+
"sr": 1,
|
|
18
|
+
"ks": {
|
|
19
|
+
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
20
|
+
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
21
|
+
"p": { "a": 0, "k": [125.604, 102.857, 0], "ix": 2 },
|
|
22
|
+
"a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
|
|
23
|
+
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
24
|
+
},
|
|
25
|
+
"ao": 0,
|
|
26
|
+
"shapes": [
|
|
27
|
+
{
|
|
28
|
+
"ty": "gr",
|
|
29
|
+
"it": [
|
|
30
|
+
{
|
|
31
|
+
"ty": "rc",
|
|
32
|
+
"d": 1,
|
|
33
|
+
"s": {
|
|
34
|
+
"a": 1,
|
|
35
|
+
"k": [
|
|
36
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
|
|
37
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 36] },
|
|
38
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 68] },
|
|
39
|
+
{ "t": 75, "s": [18, 18] }
|
|
40
|
+
],
|
|
41
|
+
"ix": 2
|
|
42
|
+
},
|
|
43
|
+
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
44
|
+
"r": { "a": 0, "k": 20, "ix": 4 },
|
|
45
|
+
"nm": "Rectangle Path 1",
|
|
46
|
+
"mn": "ADBE Vector Shape - Rect",
|
|
47
|
+
"hd": false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"ty": "st",
|
|
51
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
|
|
52
|
+
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
53
|
+
"w": { "a": 0, "k": 0, "ix": 5 },
|
|
54
|
+
"lc": 1,
|
|
55
|
+
"lj": 1,
|
|
56
|
+
"ml": 4,
|
|
57
|
+
"bm": 0,
|
|
58
|
+
"nm": "Stroke 1",
|
|
59
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
|
60
|
+
"hd": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"ty": "fl",
|
|
64
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
|
|
65
|
+
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
66
|
+
"r": 1,
|
|
67
|
+
"bm": 0,
|
|
68
|
+
"nm": "Fill 1",
|
|
69
|
+
"mn": "ADBE Vector Graphic - Fill",
|
|
70
|
+
"hd": false
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"ty": "tr",
|
|
74
|
+
"p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
|
|
75
|
+
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
76
|
+
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
77
|
+
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
78
|
+
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
79
|
+
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
80
|
+
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
81
|
+
"nm": "Transform"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"nm": "Rectangle 1",
|
|
85
|
+
"np": 3,
|
|
86
|
+
"cix": 2,
|
|
87
|
+
"bm": 0,
|
|
88
|
+
"ix": 1,
|
|
89
|
+
"mn": "ADBE Vector Group",
|
|
90
|
+
"hd": false
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"ip": -1,
|
|
94
|
+
"op": 3599,
|
|
95
|
+
"st": -1,
|
|
96
|
+
"bm": 0
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"ddd": 0,
|
|
100
|
+
"ind": 2,
|
|
101
|
+
"ty": 4,
|
|
102
|
+
"nm": "Shape Layer 2",
|
|
103
|
+
"sr": 1,
|
|
104
|
+
"ks": {
|
|
105
|
+
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
106
|
+
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
107
|
+
"p": { "a": 0, "k": [97.729, 102.857, 0], "ix": 2 },
|
|
108
|
+
"a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
|
|
109
|
+
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
110
|
+
},
|
|
111
|
+
"ao": 0,
|
|
112
|
+
"shapes": [
|
|
113
|
+
{
|
|
114
|
+
"ty": "gr",
|
|
115
|
+
"it": [
|
|
116
|
+
{
|
|
117
|
+
"ty": "rc",
|
|
118
|
+
"d": 1,
|
|
119
|
+
"s": {
|
|
120
|
+
"a": 1,
|
|
121
|
+
"k": [
|
|
122
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
|
|
123
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 68] },
|
|
124
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 36] },
|
|
125
|
+
{ "t": 75, "s": [18, 18] }
|
|
126
|
+
],
|
|
127
|
+
"ix": 2
|
|
128
|
+
},
|
|
129
|
+
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
130
|
+
"r": { "a": 0, "k": 20, "ix": 4 },
|
|
131
|
+
"nm": "Rectangle Path 1",
|
|
132
|
+
"mn": "ADBE Vector Shape - Rect",
|
|
133
|
+
"hd": false
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"ty": "st",
|
|
137
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
|
|
138
|
+
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
139
|
+
"w": { "a": 0, "k": 0, "ix": 5 },
|
|
140
|
+
"lc": 1,
|
|
141
|
+
"lj": 1,
|
|
142
|
+
"ml": 4,
|
|
143
|
+
"bm": 0,
|
|
144
|
+
"nm": "Stroke 1",
|
|
145
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
|
146
|
+
"hd": false
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"ty": "fl",
|
|
150
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
|
|
151
|
+
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
152
|
+
"r": 1,
|
|
153
|
+
"bm": 0,
|
|
154
|
+
"nm": "Fill 1",
|
|
155
|
+
"mn": "ADBE Vector Graphic - Fill",
|
|
156
|
+
"hd": false
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"ty": "tr",
|
|
160
|
+
"p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
|
|
161
|
+
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
162
|
+
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
163
|
+
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
164
|
+
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
165
|
+
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
166
|
+
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
167
|
+
"nm": "Transform"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"nm": "Rectangle 1",
|
|
171
|
+
"np": 3,
|
|
172
|
+
"cix": 2,
|
|
173
|
+
"bm": 0,
|
|
174
|
+
"ix": 1,
|
|
175
|
+
"mn": "ADBE Vector Group",
|
|
176
|
+
"hd": false
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"ip": -1,
|
|
180
|
+
"op": 3599,
|
|
181
|
+
"st": -1,
|
|
182
|
+
"bm": 0
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"ddd": 0,
|
|
186
|
+
"ind": 3,
|
|
187
|
+
"ty": 4,
|
|
188
|
+
"nm": "Shape Layer 1",
|
|
189
|
+
"sr": 1,
|
|
190
|
+
"ks": {
|
|
191
|
+
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
192
|
+
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
193
|
+
"p": { "a": 0, "k": [69.729, 102.857, 0], "ix": 2 },
|
|
194
|
+
"a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
|
|
195
|
+
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
196
|
+
},
|
|
197
|
+
"ao": 0,
|
|
198
|
+
"shapes": [
|
|
199
|
+
{
|
|
200
|
+
"ty": "gr",
|
|
201
|
+
"it": [
|
|
202
|
+
{
|
|
203
|
+
"ty": "rc",
|
|
204
|
+
"d": 1,
|
|
205
|
+
"s": {
|
|
206
|
+
"a": 1,
|
|
207
|
+
"k": [
|
|
208
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
|
|
209
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 36] },
|
|
210
|
+
{ "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 68] },
|
|
211
|
+
{ "t": 75, "s": [18, 18] }
|
|
212
|
+
],
|
|
213
|
+
"ix": 2
|
|
214
|
+
},
|
|
215
|
+
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
216
|
+
"r": { "a": 0, "k": 20, "ix": 4 },
|
|
217
|
+
"nm": "Rectangle Path 1",
|
|
218
|
+
"mn": "ADBE Vector Shape - Rect",
|
|
219
|
+
"hd": false
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"ty": "st",
|
|
223
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
|
|
224
|
+
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
225
|
+
"w": { "a": 0, "k": 0, "ix": 5 },
|
|
226
|
+
"lc": 1,
|
|
227
|
+
"lj": 1,
|
|
228
|
+
"ml": 4,
|
|
229
|
+
"bm": 0,
|
|
230
|
+
"nm": "Stroke 1",
|
|
231
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
|
232
|
+
"hd": false
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"ty": "fl",
|
|
236
|
+
"c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
|
|
237
|
+
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
238
|
+
"r": 1,
|
|
239
|
+
"bm": 0,
|
|
240
|
+
"nm": "Fill 1",
|
|
241
|
+
"mn": "ADBE Vector Graphic - Fill",
|
|
242
|
+
"hd": false
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"ty": "tr",
|
|
246
|
+
"p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
|
|
247
|
+
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
248
|
+
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
249
|
+
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
250
|
+
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
251
|
+
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
252
|
+
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
253
|
+
"nm": "Transform"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"nm": "Rectangle 1",
|
|
257
|
+
"np": 3,
|
|
258
|
+
"cix": 2,
|
|
259
|
+
"bm": 0,
|
|
260
|
+
"ix": 1,
|
|
261
|
+
"mn": "ADBE Vector Group",
|
|
262
|
+
"hd": false
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"ip": -1,
|
|
266
|
+
"op": 3599,
|
|
267
|
+
"st": -1,
|
|
268
|
+
"bm": 0
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"markers": []
|
|
272
|
+
}
|