dimsum-chat 0.4.3 → 0.4.4
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/dimsum-chat.js +181 -131
- package/dist/dimsum-chat.umd.cjs +3 -3
- package/dist/parser.d.ts +3 -1
- package/package.json +1 -1
package/dist/dimsum-chat.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
1
|
+
var T = Object.defineProperty;
|
|
2
|
+
var I = (r, t, i) => t in r ? T(r, t, { enumerable: !0, configurable: !0, writable: !0, value: i }) : r[t] = i;
|
|
3
|
+
var b = (r, t, i) => (I(r, typeof t != "symbol" ? t + "" : t, i), i);
|
|
4
4
|
const A = {
|
|
5
5
|
type: "LIVE_OPEN_PLATFORM_DM",
|
|
6
6
|
content: {
|
|
@@ -32,12 +32,12 @@ const A = {
|
|
|
32
32
|
}
|
|
33
33
|
}, _ = [A, B], m = class m {
|
|
34
34
|
constructor() {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
b(this, "AUTH_HOST", "https://dimsum-widget-auth-1301031323.cos.ap-guangzhou.myqcloud.com");
|
|
36
|
+
b(this, "WHITELIST_WIDGETS", ["dimsum-bonk-2024-widget", "douyin-bonk-2024-widget"]);
|
|
37
|
+
b(this, "MAX_RETRY_COUNT", 3);
|
|
38
|
+
b(this, "authenticatedPlatformAndRoomId");
|
|
39
|
+
b(this, "isPiracy", !1);
|
|
40
|
+
b(this, "retryCount", 0);
|
|
41
41
|
}
|
|
42
42
|
static getInstance() {
|
|
43
43
|
return m.instance || (m.instance = new m()), m.instance;
|
|
@@ -48,33 +48,33 @@ const A = {
|
|
|
48
48
|
checkAuthentication(t, i, s) {
|
|
49
49
|
if (t = this.updateWidgetId(t), !this.WHITELIST_WIDGETS.includes(t) || this.authenticatedPlatformAndRoomId === `${i}-${s}`)
|
|
50
50
|
return;
|
|
51
|
-
const
|
|
51
|
+
const e = () => {
|
|
52
52
|
this.retryCount++, this.retryCount < this.MAX_RETRY_COUNT ? setTimeout(() => {
|
|
53
53
|
this.checkAuthentication(t, i, s);
|
|
54
54
|
}, 1e3) : this.isPiracy = !0;
|
|
55
|
-
},
|
|
56
|
-
return fetch(
|
|
57
|
-
console.log("checkAuthentication", p.status), p.status === 200 ? (this.authenticatedPlatformAndRoomId = `${i}-${s}`, this.isPiracy = !1) :
|
|
55
|
+
}, n = `${this.AUTH_HOST}/${t}/whitelist/${i}/${s}`;
|
|
56
|
+
return fetch(n).then((p) => {
|
|
57
|
+
console.log("checkAuthentication", p.status), p.status === 200 ? (this.authenticatedPlatformAndRoomId = `${i}-${s}`, this.isPiracy = !1) : e();
|
|
58
58
|
}).catch(() => {
|
|
59
|
-
console.log("checkAuthentication error"),
|
|
59
|
+
console.log("checkAuthentication error"), e();
|
|
60
60
|
});
|
|
61
61
|
}
|
|
62
62
|
passMessage(t) {
|
|
63
63
|
try {
|
|
64
64
|
if (t.type === "DimSumChatRoomInfo") {
|
|
65
|
-
const i = t.content.platform ?? t.content.platfrom, s = t.content.roomId,
|
|
66
|
-
this.checkAuthentication(
|
|
65
|
+
const i = t.content.platform ?? t.content.platfrom, s = t.content.roomId, e = window.location.pathname.split("/")[1];
|
|
66
|
+
this.checkAuthentication(e, i, s);
|
|
67
67
|
}
|
|
68
68
|
if (t.type === "INTERACT_WORD") {
|
|
69
|
-
const i = typeof t.content == "object" ? t.content : JSON.parse(t.content), s = "bilibili",
|
|
70
|
-
this.checkAuthentication(
|
|
69
|
+
const i = typeof t.content == "object" ? t.content : JSON.parse(t.content), s = "bilibili", e = String(i.data.roomid), n = window.location.pathname.split("/")[1];
|
|
70
|
+
this.checkAuthentication(n, s, e);
|
|
71
71
|
}
|
|
72
72
|
if (t.type === "LIVE_OPEN_PLATFORM_DM" || t.type === "LIVE_OPEN_PLATFORM_SEND_GIFT") {
|
|
73
73
|
const i = typeof t.content == "object" ? t.content : JSON.parse(t.content);
|
|
74
74
|
if (i.data.room_id === void 0)
|
|
75
75
|
return t;
|
|
76
|
-
const s = "bilibili",
|
|
77
|
-
this.checkAuthentication(
|
|
76
|
+
const s = "bilibili", e = String(i.data.room_id), n = window.location.pathname.split("/")[1];
|
|
77
|
+
this.checkAuthentication(n, s, e);
|
|
78
78
|
}
|
|
79
79
|
if (this.isPiracy)
|
|
80
80
|
return _[Math.floor(Math.random() * _.length)];
|
|
@@ -84,9 +84,9 @@ const A = {
|
|
|
84
84
|
return t;
|
|
85
85
|
}
|
|
86
86
|
};
|
|
87
|
-
|
|
88
|
-
let
|
|
89
|
-
const
|
|
87
|
+
b(m, "instance");
|
|
88
|
+
let l = m;
|
|
89
|
+
const k = {
|
|
90
90
|
type: "LIVE_OPEN_PLATFORM_DM",
|
|
91
91
|
content: {
|
|
92
92
|
cmd: "LIVE_OPEN_PLATFORM_DM",
|
|
@@ -97,7 +97,7 @@ const M = {
|
|
|
97
97
|
guard_level: 1
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
|
-
},
|
|
100
|
+
}, M = {
|
|
101
101
|
type: "LIVE_OPEN_PLATFORM_DM",
|
|
102
102
|
content: {
|
|
103
103
|
cmd: "LIVE_OPEN_PLATFORM_DM",
|
|
@@ -108,22 +108,22 @@ const M = {
|
|
|
108
108
|
guard_level: 1
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
|
-
},
|
|
112
|
-
connected:
|
|
113
|
-
welcome:
|
|
111
|
+
}, z = {
|
|
112
|
+
connected: k,
|
|
113
|
+
welcome: M
|
|
114
114
|
};
|
|
115
|
-
function
|
|
115
|
+
function E() {
|
|
116
116
|
const t = window.location.pathname.split("/");
|
|
117
117
|
return t.length > 1 ? t[1] : "unknown base name";
|
|
118
118
|
}
|
|
119
|
-
function
|
|
119
|
+
function L(r) {
|
|
120
120
|
let t;
|
|
121
|
-
switch (
|
|
121
|
+
switch (r.type) {
|
|
122
122
|
case "DimSumChatWidgetInfoRequest":
|
|
123
123
|
t = {
|
|
124
124
|
type: "DimSumChatWidgetInfoResponse",
|
|
125
125
|
content: {
|
|
126
|
-
base:
|
|
126
|
+
base: E(),
|
|
127
127
|
url: window.location.href
|
|
128
128
|
}
|
|
129
129
|
};
|
|
@@ -132,8 +132,8 @@ function k(a) {
|
|
|
132
132
|
}
|
|
133
133
|
const x = class x {
|
|
134
134
|
constructor() {
|
|
135
|
-
|
|
136
|
-
|
|
135
|
+
b(this, "webSocket");
|
|
136
|
+
b(this, "messageListeners");
|
|
137
137
|
this.webSocket = null, this.messageListeners = [];
|
|
138
138
|
}
|
|
139
139
|
static getInstance() {
|
|
@@ -143,7 +143,7 @@ const x = class x {
|
|
|
143
143
|
this.webSocket || (this.webSocket = new WebSocket(t), this.webSocket.onmessage = this.handleMessage.bind(this), this.webSocket.onopen = () => {
|
|
144
144
|
console.log("connected"), setTimeout(() => {
|
|
145
145
|
this.messageListeners.forEach(
|
|
146
|
-
(i) => i(JSON.stringify(
|
|
146
|
+
(i) => i(JSON.stringify(z.connected))
|
|
147
147
|
);
|
|
148
148
|
}, 100);
|
|
149
149
|
}, this.webSocket.onclose = () => {
|
|
@@ -153,15 +153,15 @@ const x = class x {
|
|
|
153
153
|
});
|
|
154
154
|
}
|
|
155
155
|
handleMessage(t) {
|
|
156
|
-
var
|
|
156
|
+
var n;
|
|
157
157
|
const i = t.data;
|
|
158
158
|
this.messageListeners.forEach((p) => p(i));
|
|
159
|
-
const s = JSON.parse(i),
|
|
160
|
-
|
|
159
|
+
const s = JSON.parse(i), e = L(s);
|
|
160
|
+
e && ((n = this.webSocket) == null || n.send(JSON.stringify(e)));
|
|
161
161
|
}
|
|
162
162
|
addMessageListener(t) {
|
|
163
163
|
this.messageListeners.push(t), setTimeout(() => {
|
|
164
|
-
t(JSON.stringify(
|
|
164
|
+
t(JSON.stringify(z.welcome));
|
|
165
165
|
}, 100);
|
|
166
166
|
}
|
|
167
167
|
removeMessageListener(t) {
|
|
@@ -169,23 +169,23 @@ const x = class x {
|
|
|
169
169
|
i !== -1 && this.messageListeners.splice(i, 1);
|
|
170
170
|
}
|
|
171
171
|
};
|
|
172
|
-
|
|
173
|
-
let
|
|
172
|
+
b(x, "instance");
|
|
173
|
+
let j = x;
|
|
174
174
|
function S() {
|
|
175
|
-
const
|
|
175
|
+
const r = new URL(window.location.href), t = r.protocol === "https:" ? "wss:" : "ws:", i = r.host;
|
|
176
176
|
return `${t}//${i}/websocket`;
|
|
177
177
|
}
|
|
178
|
-
function
|
|
178
|
+
function N(r) {
|
|
179
179
|
const t = new URL(window.location.href), i = t.protocol, s = t.host;
|
|
180
|
-
return `${i}//${s}/bface/${
|
|
180
|
+
return `${i}//${s}/bface/${r}`;
|
|
181
181
|
}
|
|
182
|
-
function
|
|
182
|
+
function U(r, t = {}) {
|
|
183
183
|
const {
|
|
184
184
|
customWsServer: i = S()
|
|
185
|
-
} = t, s =
|
|
186
|
-
|
|
187
|
-
const p = JSON.parse(
|
|
188
|
-
|
|
185
|
+
} = t, s = l.getInstance(), e = j.getInstance();
|
|
186
|
+
e.connect(i), e.addMessageListener((n) => {
|
|
187
|
+
const p = JSON.parse(n), d = s.passMessage(p), f = new v(d);
|
|
188
|
+
r(d, f);
|
|
189
189
|
});
|
|
190
190
|
}
|
|
191
191
|
const C = [
|
|
@@ -449,7 +449,7 @@ const C = [
|
|
|
449
449
|
["[糖葫芦]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d4aa8a0ff46a445e861ad8fb78c07140?x-expires=2023614000&x-signature=FvN4ytTGjC7Mww8KX4BRIg9wcTE%3D"],
|
|
450
450
|
["[虎头]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7569ffeaa3894b8b8ea843c0e5a05f63?x-expires=2023614000&x-signature=m%2Bi3d034xBQkuBqx4xrvzru5q6A%3D"],
|
|
451
451
|
["[iloveyou]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/798bcfd9811f4fcd97df92af06c87a0e?x-expires=2023614000&x-signature=DuK8xhX7glgLx44H53PrhM32D44%3D"]
|
|
452
|
-
],
|
|
452
|
+
], D = [
|
|
453
453
|
["[dog]", "http://i0.hdslb.com/bfs/live/4428c84e694fbf4e0ef6c06e958d9352c3582740.png"],
|
|
454
454
|
["[花]", "http://i0.hdslb.com/bfs/live/7dd2ef03e13998575e4d8a803c6e12909f94e72b.png"],
|
|
455
455
|
["[妙]", "http://i0.hdslb.com/bfs/live/08f735d950a0fba267dda140673c9ab2edf6410d.png"],
|
|
@@ -740,11 +740,11 @@ const C = [
|
|
|
740
740
|
["[抱拳]", "https://bd.a.yximgs.com/bs2/emotion/1704790113221third_party_s1296853443.png"],
|
|
741
741
|
["[早上好]", "https://ali2.a.yximgs.com/bs2/emotion/1704790167344third_party_s1296853922.png"],
|
|
742
742
|
["[胡思乱想]", "https://ali2.a.yximgs.com/bs2/emotion/1704790657229third_party_s1296858542.png"]
|
|
743
|
-
],
|
|
743
|
+
], h = class h {
|
|
744
744
|
constructor(t) {
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
745
|
+
b(this, "rawType");
|
|
746
|
+
b(this, "rawContent");
|
|
747
|
+
b(this, "_cachedValues", {});
|
|
748
748
|
this.rawType = t.type;
|
|
749
749
|
try {
|
|
750
750
|
typeof t.content == "string" ? this.rawContent = JSON.parse(t.content) : this.rawContent = t.content;
|
|
@@ -752,13 +752,13 @@ const C = [
|
|
|
752
752
|
this.rawContent = t.content;
|
|
753
753
|
}
|
|
754
754
|
const i = this, s = Object.getPrototypeOf(this);
|
|
755
|
-
Object.getOwnPropertyNames(s).forEach((
|
|
756
|
-
const
|
|
757
|
-
|
|
755
|
+
Object.getOwnPropertyNames(s).forEach((e) => {
|
|
756
|
+
const n = Object.getOwnPropertyDescriptor(s, e);
|
|
757
|
+
n && typeof n.get == "function" && Object.defineProperty(i, e, {
|
|
758
758
|
get: function() {
|
|
759
|
-
return i.getCachedValue(
|
|
759
|
+
return i.getCachedValue(e, () => {
|
|
760
760
|
var p;
|
|
761
|
-
return (p =
|
|
761
|
+
return (p = n.get) == null ? void 0 : p.call(i);
|
|
762
762
|
});
|
|
763
763
|
},
|
|
764
764
|
enumerable: !0,
|
|
@@ -787,6 +787,8 @@ const C = [
|
|
|
787
787
|
return "douyin";
|
|
788
788
|
if (this.rawType.startsWith("Kuaishou"))
|
|
789
789
|
return "kuaishou";
|
|
790
|
+
if (this.rawType.startsWith("Chzzk"))
|
|
791
|
+
return "chzzk";
|
|
790
792
|
if (i.test(this.rawType))
|
|
791
793
|
return "acfun";
|
|
792
794
|
}
|
|
@@ -803,7 +805,8 @@ const C = [
|
|
|
803
805
|
"CommonActionSignalComment",
|
|
804
806
|
"WebcastChatMessage",
|
|
805
807
|
"DANMU_MSG",
|
|
806
|
-
"KuaishouCommentFeeds"
|
|
808
|
+
"KuaishouCommentFeeds",
|
|
809
|
+
"ChzzkChatMessage"
|
|
807
810
|
],
|
|
808
811
|
gift: [
|
|
809
812
|
"LIVE_OPEN_PLATFORM_SEND_GIFT",
|
|
@@ -828,11 +831,13 @@ const C = [
|
|
|
828
831
|
],
|
|
829
832
|
guard: [
|
|
830
833
|
"LIVE_OPEN_PLATFORM_GUARD",
|
|
831
|
-
"GUARD_BUY"
|
|
834
|
+
"GUARD_BUY",
|
|
835
|
+
"ChzzkSubscriptionMessage"
|
|
832
836
|
],
|
|
833
837
|
superchat: [
|
|
834
838
|
"LIVE_OPEN_PLATFORM_SUPER_CHAT",
|
|
835
|
-
"SUPER_CHAT_MESSAGE"
|
|
839
|
+
"SUPER_CHAT_MESSAGE",
|
|
840
|
+
"ChzzkDonationMessage"
|
|
836
841
|
],
|
|
837
842
|
enter: [
|
|
838
843
|
"CommonActionSignalUserEnterRoom",
|
|
@@ -884,6 +889,8 @@ const C = [
|
|
|
884
889
|
return this.rawContent.user.nickName;
|
|
885
890
|
if (this.platform === "kuaishou" && "user" in this.rawContent)
|
|
886
891
|
return this.rawContent.user.userName;
|
|
892
|
+
if (this.platform === "chzzk" && this.rawContent.profile)
|
|
893
|
+
return JSON.parse(this.rawContent.profile).nickname;
|
|
887
894
|
}
|
|
888
895
|
/**
|
|
889
896
|
* User ID.
|
|
@@ -911,6 +918,8 @@ const C = [
|
|
|
911
918
|
return this.rawContent.user.id;
|
|
912
919
|
if (this.platform === "kuaishou" && "user" in this.rawContent)
|
|
913
920
|
return this.rawContent.user.principalId;
|
|
921
|
+
if (this.platform === "chzzk" && "uid" in this.rawContent)
|
|
922
|
+
return this.rawContent.uid;
|
|
914
923
|
}
|
|
915
924
|
get clubLevel() {
|
|
916
925
|
if (this.platform === "bilibili" || this.platform === "openblive") {
|
|
@@ -1004,7 +1013,8 @@ const C = [
|
|
|
1004
1013
|
bilibili: () => this.rawContent.info[1],
|
|
1005
1014
|
openblive: () => this.rawContent.data.msg,
|
|
1006
1015
|
douyin: () => this.rawContent.content,
|
|
1007
|
-
kuaishou: () => this.rawContent.content
|
|
1016
|
+
kuaishou: () => this.rawContent.content,
|
|
1017
|
+
chzzk: () => this.rawContent.msg
|
|
1008
1018
|
};
|
|
1009
1019
|
return this.type === "comment" && t[this.platform] ? t[this.platform]() : this.type === "superchat" ? this.superChatComment : void 0;
|
|
1010
1020
|
}
|
|
@@ -1019,61 +1029,72 @@ const C = [
|
|
|
1019
1029
|
const {
|
|
1020
1030
|
stickerStyle: i = "",
|
|
1021
1031
|
stickerClass: s = "",
|
|
1022
|
-
emotStyle:
|
|
1023
|
-
emotClass:
|
|
1032
|
+
emotStyle: e = "",
|
|
1033
|
+
emotClass: n = "",
|
|
1024
1034
|
acfunCustomStickers: p = [],
|
|
1025
|
-
acfunCustomHtmlBuilder:
|
|
1026
|
-
} = t,
|
|
1035
|
+
acfunCustomHtmlBuilder: d
|
|
1036
|
+
} = t, f = {
|
|
1027
1037
|
acfun: () => {
|
|
1028
|
-
let o =
|
|
1038
|
+
let o = g(this.rawContent.content);
|
|
1029
1039
|
if ("emotionUrl" in this.rawContent && this.rawContent.emotionUrl)
|
|
1030
1040
|
return `<img src="${this.rawContent.emotionUrl}" alt="" style="${i}" class="${s}">`;
|
|
1031
|
-
let
|
|
1032
|
-
return p.forEach((
|
|
1033
|
-
o.includes(
|
|
1034
|
-
}),
|
|
1035
|
-
<img src="${
|
|
1041
|
+
let a;
|
|
1042
|
+
return p.forEach((c) => {
|
|
1043
|
+
o.includes(c.keyWord) && (a = c.path);
|
|
1044
|
+
}), a != null ? d != null ? d(a, o) : `<div style="display:flex;">
|
|
1045
|
+
<img src="${a}" alt="" style="${i}" class="${s}">
|
|
1036
1046
|
<div style="flex-grow:1;">${o}</div>
|
|
1037
|
-
</div>` :
|
|
1047
|
+
</div>` : g(this.rawContent.content);
|
|
1038
1048
|
},
|
|
1039
1049
|
bilibili: () => {
|
|
1040
1050
|
if (typeof this.rawContent.info[0][13] == "object")
|
|
1041
1051
|
return `<img src="${this.rawContent.info[0][13].url}" alt="" style="${i}" class="${s}">`;
|
|
1042
|
-
const o = this.rawContent.info[0][15].extra,
|
|
1043
|
-
let
|
|
1044
|
-
const
|
|
1045
|
-
for (let
|
|
1046
|
-
const F = new RegExp(`\\${
|
|
1047
|
-
|
|
1052
|
+
const o = this.rawContent.info[0][15].extra, a = JSON.parse(o);
|
|
1053
|
+
let c = g(a.content);
|
|
1054
|
+
const u = a.emots;
|
|
1055
|
+
for (let y in u) {
|
|
1056
|
+
const F = new RegExp(`\\${y}`, "g");
|
|
1057
|
+
c = c.replace(F, `<img src="${u[y].url}" alt="" style="${e}" class="${n}">`);
|
|
1048
1058
|
}
|
|
1049
|
-
return
|
|
1059
|
+
return c;
|
|
1050
1060
|
},
|
|
1051
1061
|
openblive: () => {
|
|
1052
1062
|
if (this.rawContent.data.emoji_img_url)
|
|
1053
1063
|
return `<img src="${this.rawContent.data.emoji_img_url}" alt="" style="${i}" class="${s}">`;
|
|
1054
|
-
let o =
|
|
1055
|
-
return
|
|
1056
|
-
const
|
|
1057
|
-
o = o.replace(
|
|
1064
|
+
let o = g(this.rawContent.data.msg);
|
|
1065
|
+
return D.forEach((a) => {
|
|
1066
|
+
const c = new RegExp(`\\${a[0]}`, "g");
|
|
1067
|
+
o = o.replace(c, `<img src="${a[1]}" alt="" style="${e}" class="${n}">`);
|
|
1058
1068
|
}), o;
|
|
1059
1069
|
},
|
|
1060
1070
|
douyin: () => {
|
|
1061
|
-
let o =
|
|
1062
|
-
return C.forEach((
|
|
1063
|
-
const
|
|
1064
|
-
o = o.replace(
|
|
1071
|
+
let o = g(this.rawContent.content);
|
|
1072
|
+
return C.forEach((a) => {
|
|
1073
|
+
const c = new RegExp(`\\${a[0]}`, "g");
|
|
1074
|
+
o = o.replace(c, `<img src="${a[1]}" alt="" style="${e}" class="${n}">`);
|
|
1065
1075
|
}), o;
|
|
1066
1076
|
},
|
|
1067
1077
|
kuaishou: () => {
|
|
1068
|
-
let o =
|
|
1069
|
-
return w.forEach((
|
|
1070
|
-
const
|
|
1071
|
-
o = o.replace(
|
|
1078
|
+
let o = g(this.rawContent.content);
|
|
1079
|
+
return w.forEach((a) => {
|
|
1080
|
+
const c = new RegExp(`\\${a[0]}`, "g");
|
|
1081
|
+
o = o.replace(c, `<img src="${a[1]}" alt="" style="${e}" class="${n}">`);
|
|
1072
1082
|
}), o;
|
|
1083
|
+
},
|
|
1084
|
+
chzzk: () => {
|
|
1085
|
+
let o = g(this.rawContent.msg);
|
|
1086
|
+
if (this.rawContent.extras) {
|
|
1087
|
+
const c = JSON.parse(this.rawContent.extras).emojis || {};
|
|
1088
|
+
for (let u in c) {
|
|
1089
|
+
const y = new RegExp(`\\{:${u}:}`, "g");
|
|
1090
|
+
o = o.replace(y, `<img src="${c[u]}" alt="" style="${e}" class="${n}">`);
|
|
1091
|
+
}
|
|
1092
|
+
return o;
|
|
1093
|
+
}
|
|
1073
1094
|
}
|
|
1074
1095
|
};
|
|
1075
|
-
if (this.type === "comment" &&
|
|
1076
|
-
return
|
|
1096
|
+
if (this.type === "comment" && f[this.platform])
|
|
1097
|
+
return f[this.platform]();
|
|
1077
1098
|
}
|
|
1078
1099
|
/**
|
|
1079
1100
|
* Custom comment content builder.
|
|
@@ -1085,30 +1106,39 @@ const C = [
|
|
|
1085
1106
|
CommentBuilder(t) {
|
|
1086
1107
|
const i = {
|
|
1087
1108
|
acfun: () => {
|
|
1088
|
-
let s =
|
|
1089
|
-
return t(s,
|
|
1109
|
+
let s = g(this.rawContent.content), e = "emotionUrl" in this.rawContent && this.rawContent.emotionUrl ? this.rawContent.emotionUrl : void 0;
|
|
1110
|
+
return t(s, e);
|
|
1090
1111
|
},
|
|
1091
1112
|
bilibili: () => {
|
|
1092
|
-
let s,
|
|
1113
|
+
let s, e = [];
|
|
1093
1114
|
typeof this.rawContent.info[0][13] == "object" && (s = this.rawContent.info[0][13].url);
|
|
1094
|
-
const
|
|
1095
|
-
for (let o in
|
|
1096
|
-
|
|
1097
|
-
return t(
|
|
1115
|
+
const n = this.rawContent.info[0][15].extra, p = JSON.parse(n), d = g(p.content), f = p.emots;
|
|
1116
|
+
for (let o in f)
|
|
1117
|
+
e.push([o, f[o].url]);
|
|
1118
|
+
return t(d, s, e);
|
|
1098
1119
|
},
|
|
1099
1120
|
openblive: () => {
|
|
1100
1121
|
let s;
|
|
1101
1122
|
this.rawContent.data.emoji_img_url && (s = this.rawContent.data.emoji_img_url);
|
|
1102
|
-
const
|
|
1103
|
-
return t(
|
|
1123
|
+
const e = g(this.rawContent.data.msg);
|
|
1124
|
+
return t(e, s, D);
|
|
1104
1125
|
},
|
|
1105
1126
|
douyin: () => {
|
|
1106
|
-
const s =
|
|
1127
|
+
const s = g(this.rawContent.content);
|
|
1107
1128
|
return t(s, void 0, C);
|
|
1108
1129
|
},
|
|
1109
1130
|
kuaishou: () => {
|
|
1110
|
-
const s =
|
|
1131
|
+
const s = g(this.rawContent.content);
|
|
1111
1132
|
return t(s, void 0, w);
|
|
1133
|
+
},
|
|
1134
|
+
chzzk: () => {
|
|
1135
|
+
let s = g(this.rawContent.msg), e = [];
|
|
1136
|
+
if (this.rawContent.extras) {
|
|
1137
|
+
const p = JSON.parse(this.rawContent.extras).emojis || {};
|
|
1138
|
+
for (let d in p)
|
|
1139
|
+
e.push([`{:${d}:}`, p[d]]);
|
|
1140
|
+
}
|
|
1141
|
+
return t(s, void 0, e);
|
|
1112
1142
|
}
|
|
1113
1143
|
};
|
|
1114
1144
|
if (this.type === "comment" && i[this.platform])
|
|
@@ -1129,6 +1159,10 @@ const C = [
|
|
|
1129
1159
|
return this.rawContent.data.privilege_type;
|
|
1130
1160
|
}
|
|
1131
1161
|
}
|
|
1162
|
+
if (this.platform === "chzzk") {
|
|
1163
|
+
const t = this.chzzkTier;
|
|
1164
|
+
return t && t <= 3 && t >= 1 ? 4 - t : 0;
|
|
1165
|
+
}
|
|
1132
1166
|
}
|
|
1133
1167
|
get guardNum() {
|
|
1134
1168
|
if (this.platform === "bilibili" || this.platform === "openblive") {
|
|
@@ -1137,12 +1171,22 @@ const C = [
|
|
|
1137
1171
|
if ("data" in this.rawContent && "guard_num" in this.rawContent.data)
|
|
1138
1172
|
return this.rawContent.guard_num;
|
|
1139
1173
|
}
|
|
1174
|
+
if (this.platform === "chzzk")
|
|
1175
|
+
return this.chzzkTierMonth;
|
|
1140
1176
|
}
|
|
1141
1177
|
// 可能是单价(未确认),舰长价格198实际可能为138
|
|
1142
1178
|
get guardPrice() {
|
|
1143
1179
|
if ((this.platform === "bilibili" || this.platform === "openblive") && "data" in this.rawContent && "price" in this.rawContent.data)
|
|
1144
1180
|
return this.rawContent.data.price / 1e3;
|
|
1145
1181
|
}
|
|
1182
|
+
get chzzkTier() {
|
|
1183
|
+
if (this.platform === "chzzk" && this.rawType === "ChzzkSubscriptionMessage" && this.rawContent.extras)
|
|
1184
|
+
return JSON.parse(this.rawContent.extras).tierNo;
|
|
1185
|
+
}
|
|
1186
|
+
get chzzkTierMonth() {
|
|
1187
|
+
if (this.platform === "chzzk" && this.rawType === "ChzzkSubscriptionMessage" && this.rawContent.extras)
|
|
1188
|
+
return JSON.parse(this.rawContent.extras).month;
|
|
1189
|
+
}
|
|
1146
1190
|
get giftName() {
|
|
1147
1191
|
const t = {
|
|
1148
1192
|
acfun: () => this.rawContent.giftInfo.name,
|
|
@@ -1161,16 +1205,16 @@ const C = [
|
|
|
1161
1205
|
openblive: () => this.rawContent.data.gift_num,
|
|
1162
1206
|
douyin: () => {
|
|
1163
1207
|
if (this.rawContent.sendType === 4) {
|
|
1164
|
-
const s = this.rawContent.comboCount,
|
|
1165
|
-
let
|
|
1166
|
-
return
|
|
1208
|
+
const s = this.rawContent.comboCount, e = this.rawContent.groupId, n = this.rawContent.giftId, p = this.uid, d = `${e}_${p}_${n}`;
|
|
1209
|
+
let f = 0;
|
|
1210
|
+
return h.douyinGiftGroup.has(d) && (f = h.douyinGiftGroup.get(d) ?? 0), h.douyinGiftGroup.set(d, s), h.douyinGiftGroup.size > 1024 && h.douyinGiftGroup.delete(h.douyinGiftGroup.keys().next().value ?? ""), s - f;
|
|
1167
1211
|
}
|
|
1168
1212
|
return this.rawContent.groupCount;
|
|
1169
1213
|
},
|
|
1170
1214
|
kuaishou: () => {
|
|
1171
|
-
const s = this.rawContent.batchSize * this.rawContent.comboCount,
|
|
1172
|
-
let
|
|
1173
|
-
return
|
|
1215
|
+
const s = this.rawContent.batchSize * this.rawContent.comboCount, e = this.rawContent.mergeKey;
|
|
1216
|
+
let n = 0;
|
|
1217
|
+
return h.kuaishouGiftGroup.has(e) && (n = h.kuaishouGiftGroup.get(e) ?? 0), h.kuaishouGiftGroup.set(e, s), h.kuaishouGiftGroup.size > 1024 && h.kuaishouGiftGroup.delete(h.kuaishouGiftGroup.keys().next().value ?? ""), s - n;
|
|
1174
1218
|
}
|
|
1175
1219
|
};
|
|
1176
1220
|
if (this.type === "gift" && t[this.platform])
|
|
@@ -1203,7 +1247,8 @@ const C = [
|
|
|
1203
1247
|
get superChatComment() {
|
|
1204
1248
|
const t = {
|
|
1205
1249
|
bilibili: () => this.rawContent.data.message,
|
|
1206
|
-
openblive: () => this.rawContent.data.message
|
|
1250
|
+
openblive: () => this.rawContent.data.message,
|
|
1251
|
+
chzzk: () => this.rawContent.msg
|
|
1207
1252
|
};
|
|
1208
1253
|
if (this.type === "superchat" && t[this.platform])
|
|
1209
1254
|
return t[this.platform]();
|
|
@@ -1211,7 +1256,11 @@ const C = [
|
|
|
1211
1256
|
get superChatPrice() {
|
|
1212
1257
|
const t = {
|
|
1213
1258
|
bilibili: () => this.rawContent.data.price,
|
|
1214
|
-
openblive: () => this.rawContent.data.rmb
|
|
1259
|
+
openblive: () => this.rawContent.data.rmb,
|
|
1260
|
+
chzzk: () => {
|
|
1261
|
+
if (this.rawContent.extras)
|
|
1262
|
+
return JSON.parse(this.rawContent.extras).payAmount;
|
|
1263
|
+
}
|
|
1215
1264
|
};
|
|
1216
1265
|
if (this.type === "superchat" && t[this.platform])
|
|
1217
1266
|
return t[this.platform]();
|
|
@@ -1228,29 +1277,30 @@ const C = [
|
|
|
1228
1277
|
const {
|
|
1229
1278
|
douyinSteps: i = [7, 11, 15],
|
|
1230
1279
|
kuaishouSteps: s = [7, 11, 15],
|
|
1231
|
-
acfunSteps:
|
|
1232
|
-
acfunClubUid:
|
|
1280
|
+
acfunSteps: e = [7, 11, 15],
|
|
1281
|
+
acfunClubUid: n = 0
|
|
1233
1282
|
} = t, p = (o) => {
|
|
1234
1283
|
if (this.clubLevel === void 0)
|
|
1235
1284
|
return 0;
|
|
1236
|
-
const
|
|
1237
|
-
return
|
|
1238
|
-
},
|
|
1285
|
+
const a = o.findIndex((c) => this.clubLevel <= c);
|
|
1286
|
+
return a !== -1 ? a : o.length;
|
|
1287
|
+
}, d = () => this.guardLevel && this.guardLevel > 0 ? 4 - this.guardLevel : 0, f = {
|
|
1239
1288
|
douyin: () => p(i),
|
|
1240
1289
|
kuaishou: () => p(s),
|
|
1241
|
-
acfun: () =>
|
|
1242
|
-
bilibili: () =>
|
|
1243
|
-
openblive: () =>
|
|
1290
|
+
acfun: () => n > 0 && this.acfunClubUid !== n ? 0 : p(e),
|
|
1291
|
+
bilibili: () => d(),
|
|
1292
|
+
openblive: () => d(),
|
|
1293
|
+
chzzk: () => this.chzzkTier ?? 0
|
|
1244
1294
|
};
|
|
1245
|
-
if (
|
|
1246
|
-
return
|
|
1295
|
+
if (f[this.platform])
|
|
1296
|
+
return f[this.platform]();
|
|
1247
1297
|
}
|
|
1248
1298
|
};
|
|
1249
1299
|
// groupId_userId_giftId : comboCount
|
|
1250
|
-
|
|
1251
|
-
let
|
|
1252
|
-
function
|
|
1253
|
-
return
|
|
1300
|
+
b(h, "douyinGiftGroup", /* @__PURE__ */ new Map()), b(h, "kuaishouGiftGroup", /* @__PURE__ */ new Map());
|
|
1301
|
+
let v = h;
|
|
1302
|
+
function g(r) {
|
|
1303
|
+
return r.replace(/[&<>"']/g, function(t) {
|
|
1254
1304
|
switch (t) {
|
|
1255
1305
|
case "&":
|
|
1256
1306
|
return "&";
|
|
@@ -1268,9 +1318,9 @@ function h(a) {
|
|
|
1268
1318
|
});
|
|
1269
1319
|
}
|
|
1270
1320
|
export {
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1321
|
+
v as Parser,
|
|
1322
|
+
j as WebSocketManager,
|
|
1323
|
+
N as getBfaceURL,
|
|
1274
1324
|
S as getWebSocketURL,
|
|
1275
|
-
|
|
1325
|
+
U as onMessage
|
|
1276
1326
|
};
|
package/dist/dimsum-chat.umd.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(a,h){typeof exports=="object"&&typeof module<"u"?h(exports):typeof define=="function"&&define.amd?define(["exports"],h):(a=typeof globalThis<"u"?globalThis:a||self,h(a.DimSumChat={}))})(this,function(a){"use strict";var S=Object.defineProperty;var P=(a,h,l)=>h in a?S(a,h,{enumerable:!0,configurable:!0,writable:!0,value:l}):a[h]=l;var d=(a,h,l)=>(P(a,typeof h!="symbol"?h+"":h,l),l);const C=[{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",msg:"版权所有,盗用必究!",guard_level:1,uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",emoji_img_url:"",dm_type:0}}},{type:"LIVE_OPEN_PLATFORM_SEND_GIFT",content:{cmd:"LIVE_OPEN_PLATFORM_SEND_GIFT",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",gift_id:99999,gift_name:"警告",gift_num:10,price:1e6,paid:!0,guard_level:1,gift_icon:"data:image/png;base64,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"}}}],u=class u{constructor(){d(this,"AUTH_HOST","https://dimsum-widget-auth-1301031323.cos.ap-guangzhou.myqcloud.com");d(this,"WHITELIST_WIDGETS",["dimsum-bonk-2024-widget","douyin-bonk-2024-widget"]);d(this,"MAX_RETRY_COUNT",3);d(this,"authenticatedPlatformAndRoomId");d(this,"isPiracy",!1);d(this,"retryCount",0)}static getInstance(){return u.instance||(u.instance=new u),u.instance}updateWidgetId(t){return t==="douyin-bonk-2024-widget"?"dimsum-bonk-2024-widget":t}checkAuthentication(t,i,s){if(t=this.updateWidgetId(t),!this.WHITELIST_WIDGETS.includes(t)||this.authenticatedPlatformAndRoomId===`${i}-${s}`)return;const e=()=>{this.retryCount++,this.retryCount<this.MAX_RETRY_COUNT?setTimeout(()=>{this.checkAuthentication(t,i,s)},1e3):this.isPiracy=!0},n=`${this.AUTH_HOST}/${t}/whitelist/${i}/${s}`;return fetch(n).then(p=>{console.log("checkAuthentication",p.status),p.status===200?(this.authenticatedPlatformAndRoomId=`${i}-${s}`,this.isPiracy=!1):e()}).catch(()=>{console.log("checkAuthentication error"),e()})}passMessage(t){try{if(t.type==="DimSumChatRoomInfo"){const i=t.content.platform??t.content.platfrom,s=t.content.roomId,e=window.location.pathname.split("/")[1];this.checkAuthentication(e,i,s)}if(t.type==="INTERACT_WORD"){const i=typeof t.content=="object"?t.content:JSON.parse(t.content),s="bilibili",e=String(i.data.roomid),n=window.location.pathname.split("/")[1];this.checkAuthentication(n,s,e)}if(t.type==="LIVE_OPEN_PLATFORM_DM"||t.type==="LIVE_OPEN_PLATFORM_SEND_GIFT"){const i=typeof t.content=="object"?t.content:JSON.parse(t.content);if(i.data.room_id===void 0)return t;const s="bilibili",e=String(i.data.room_id),n=window.location.pathname.split("/")[1];this.checkAuthentication(n,s,e)}if(this.isPiracy)return C[Math.floor(Math.random()*C.length)]}catch(i){console.log("DimSumAuth error",i)}return t}};d(u,"instance");let _=u;const z={connected:{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",msg:"连接成功",guard_level:1}}},welcome:{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",msg:"欢迎使用点心Chat",guard_level:1}}}};function B(){const t=window.location.pathname.split("/");return t.length>1?t[1]:"unknown base name"}function M(x){let t;switch(x.type){case"DimSumChatWidgetInfoRequest":t={type:"DimSumChatWidgetInfoResponse",content:{base:B(),url:window.location.href}}}return t}const y=class y{constructor(){d(this,"webSocket");d(this,"messageListeners");this.webSocket=null,this.messageListeners=[]}static getInstance(){return y.instance||(y.instance=new y),y.instance}connect(t){this.webSocket||(this.webSocket=new WebSocket(t),this.webSocket.onmessage=this.handleMessage.bind(this),this.webSocket.onopen=()=>{console.log("connected"),setTimeout(()=>{this.messageListeners.forEach(i=>i(JSON.stringify(z.connected)))},100)},this.webSocket.onclose=()=>{console.log("close"),setTimeout(()=>{this.webSocket=null,this.connect(t)},3e3)})}handleMessage(t){var n;const i=t.data;this.messageListeners.forEach(p=>p(i));const s=JSON.parse(i),e=M(s);e&&((n=this.webSocket)==null||n.send(JSON.stringify(e)))}addMessageListener(t){this.messageListeners.push(t),setTimeout(()=>{t(JSON.stringify(z.welcome))},100)}removeMessageListener(t){const i=this.messageListeners.indexOf(t);i!==-1&&this.messageListeners.splice(i,1)}};d(y,"instance");let j=y;function w(){const x=new URL(window.location.href),t=x.protocol==="https:"?"wss:":"ws:",i=x.host;return`${t}//${i}/websocket`}function L(x){const t=new URL(window.location.href),i=t.protocol,s=t.host;return`${i}//${s}/bface/${x}`}function E(x,t={}){const{customWsServer:i=w()}=t,s=_.getInstance(),e=j.getInstance();e.connect(i),e.addMessageListener(n=>{const p=JSON.parse(n),f=s.passMessage(p),g=new v(f);x(f,g)})}const F=[["[过年牛]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3bb984085d52480ca846fa8f9a1782f6?x-expires=1949886000&x-signature=d8vUokaGkWD%2B4sAHNTLJquCrHrs%3D"],["[元宝]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5f8ac1b1ddd347c4be34b81b496fcc45?x-expires=2023614000&x-signature=UT%2F8fnFld4xuvjj2bttu6fh76lI%3D"],["[鞭炮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/02f8ee9536de4c6595171584e2322f0f?x-expires=2023614000&x-signature=Aa8eXgZqb0bx0QNeLONQVgNUbLI%3D"],["[汤圆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/41ac48b7a27747199f54e92a7e8e64eb?x-expires=2023614000&x-signature=A3g2qfZZOKRKGTjUNwlkXuytS2M%3D"],["[戴口罩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3ff21d87a76a42bfb054e90a10a110a2?x-expires=1949886000&x-signature=NiqlmnQ%2FHwtWgA0Siqmn2xpaPA8%3D"],["[勤洗手]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fde7f8e2b17c4fcaaeadfd10aec725cc?x-expires=1949886000&x-signature=jWivqLMedGU%2Bh8ryOg10JdPMmXY%3D"],["[不信谣言]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/871e57d31bfd4d3798089c3643f4a7f2?x-expires=1949886000&x-signature=m7xPV%2FMfagbGSLlq7pvOlprjFCU%3D"],["[情书]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4f0872494ff04275972df311adb92408?x-expires=2023614000&x-signature=J0PlzjJlk0A14DygjrRN6y2fA9g%3D"],["[微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1972326082274b4dade2f3f8e9763fb2?x-expires=2023614000&x-signature=eNXsLMd1t1ixAvkpHEUIgSd6A4M%3D"],["[色]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1ab3f900ce3542ceb9d7e6d032cda810?x-expires=2023614000&x-signature=rziPIStvjaAzliUYr6QHc9K1UKU%3D"],["[爱慕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ecb7d64837f34cb8959801b68f6c44f4?x-expires=1949886000&x-signature=d2JDtUOOQBju87Hdl6lwIXpEKCo%3D"],["[发呆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/58c5d33d43cd420c92efb062ef91579d?x-expires=2023614000&x-signature=abb%2F1PruDQ2dYojDdcG53G3mLM0%3D"],["[惊呆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6eb3a29f0f704782bfc1afde55a8dd16?x-expires=1949886000&x-signature=3l9g0kOUU9nDeGT15DZgRXxXFZk%3D"],["[酷拽]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b39bdeaac7d2465aa508ec12e54b690e?x-expires=2023614000&x-signature=T5gG%2BOXvpx0eUMkw2C1HgPasSUI%3D"],["[抠鼻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d34021cafd3744539dbda1fd546a5288?x-expires=2023614000&x-signature=runM55ARgnLpEQ0KG%2BAWGj%2FgQNI%3D"],["[流泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0a45660685b049cf92d60478e65462c9?x-expires=2023614000&x-signature=WQ640kLAUGb6qrgsiTg4Y0%2BKGfw%3D"],["[捂脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/03f3147990b14955a28902cb1b80d160?x-expires=2023614000&x-signature=UxrkUmLYrqwplRDWXSHcZhejPQk%3D"],["[发怒]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bafa924eee98499891dc1923d41df217?x-expires=2023614000&x-signature=YN1sLR8LWBD4qOedwm7LsbiZDS8%3D"],["[呲牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dd2faecc4756476484e4011fc8bfc121?x-expires=2023614000&x-signature=po2FsJZYXtE%2Bw5gij3V25VFas1M%3D"],["[一起加油]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5bc1690162e049ca91e5c61f81a145e0?x-expires=2023614000&x-signature=%2BcW4hCjBcnzH0bWzgbsUdzDDFwU%3D"],["[睡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d9b3c21670c416d86ebc0a390bc3f6e?x-expires=1949886000&x-signature=BsfPdEtHlpDskQk1qcoMn8hEASM%3D"],["[鼾睡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d9b3c21670c416d86ebc0a390bc3f6e?x-expires=1949886000&x-signature=BsfPdEtHlpDskQk1qcoMn8hEASM%3D"],["[害羞]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/701c5163f3cc4b00853cfc17b7744271?x-expires=2023614000&x-signature=iUOJU5Vc6TFxM3NFStWvUyKIn0k%3D"],["[调皮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/639fe472a36e4d3f9a8873115f8d3b93?x-expires=2023614000&x-signature=xpovRQzvUOMdtRDYpmSy91KOOEw%3D"],["[可爱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b9fa4c827d0a4f448c2274a3ead83f1c?x-expires=1949886000&x-signature=KItCuzaLsILlO8LpDSaymIKlj2Q%3D"],["[晕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/83dce90150694886815ec6108b593e0a?x-expires=2023614000&x-signature=JlQn6Yqmkb661NeKJkD7C%2Fqm6xc%3D"],["[衰]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/73292f2611ce4944ab42326f99e0eaf0?x-expires=2023614000&x-signature=y3HPhFRtjG%2BBiTrgxERo%2FkTQUA4%3D"],["[闭嘴]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/536a67f9859349268ed370f24fb26832?x-expires=2023614000&x-signature=ZmkVHFGRkXAAywbmOwMllpsphdM%3D"],["[机智]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adeac54b7df342b18d1f63b79c582156?x-expires=2023614000&x-signature=GLBN2qULL%2B462V%2B2vi3vO%2BOSxh0%3D"],["[赞]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8451bbb7099a4c1dbde1e624bc364669?x-expires=2023614000&x-signature=HwjSYzWzRtqFxYYZi4uNdipqDzI%3D"],["[鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bc40035483dc499089cd0a1f6dc7ffe0?x-expires=2023614000&x-signature=W87twhP%2BdP3ZvdKnYXNSnHuxOrE%3D"],["[感谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b6e246c3a814489cb3c34626268ceac6?x-expires=2023614000&x-signature=5huorDnluddLPxoeMSyMrzgy5Sg%3D"],["[祈祷]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1be641522d6f486cb437eb09a1e97e85?x-expires=1949886000&x-signature=SLy%2FE54bpadjG3mP3WhYAoSTni0%3D"],["[来看我]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f865620dbc78401b905b33b2799b4208?x-expires=2023614000&x-signature=DIbt%2Fbt4MPPqlVThTOeeMrGSFoQ%3D"],["[灵机一动]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0ce4f43aed964fc7a5461d4c5bd41dc6?x-expires=2023614000&x-signature=FTrOSAhwN7vv%2BQKJAFR3RNsz2qw%3D"],["[灵光一闪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/078ae083ecf9419798622ef1b940935e?x-expires=1949886000&x-signature=Lg6cd3v8i5Ws93Hov7gMCYBRGJM%3D"],["[耶]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c49903dd8c31417a8532b0c7ee0050d6?x-expires=2023614000&x-signature=HVtWrmNW0JZwgmJ2AFmF7m1IqfU%3D"],["[打脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/97135287205f49f5b60e51a631dd741b?x-expires=2023614000&x-signature=vbTjeUnEULjl638nrVYe%2BSvnY6A%3D"],["[大笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5d2750dc3a3244609cd1794fb9d85dbf?x-expires=2023614000&x-signature=FtCBzRKwMyn4plOhyp91bep0qvw%3D"],["[哈欠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/980e7a5eb8a94642a592aa0ee48456d0?x-expires=2023614000&x-signature=UVDpFrtSrvTNcZbBvj30pnqd5qg%3D"],["[震惊]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5ad931c7dca449ba9d9ba836591f2481?x-expires=2023614000&x-signature=PEsTEBQhjqozDnAAidHcq8cdUZ4%3D"],["[送心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dc5e9f3be1b34bf08afa83009f5ce1bb?x-expires=2023614000&x-signature=xC52%2BMs8%2FVFXjhKUXWQ0uOU570s%3D"],["[困]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6a0abf13ec5042108b9bcf5d60c347cc?x-expires=2023614000&x-signature=qwKGHdd%2FCkriqhK1%2FcvjiQQOfhw%3D"],["[疑问]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/768f58a869cb4e7b905aff5f1cef9035?x-expires=2023614000&x-signature=TJdArvswfWvFPCbkSVJpoN4YKDY%3D"],["[what]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0ad29594535d4513a779488313ad8564?x-expires=1949886000&x-signature=%2BKoyzBd5kucyq7pImqNlytdTB88%3D"],["[泣不成声]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c150dd78ddb84d3eb437c6eeea07209b?x-expires=2023614000&x-signature=AJnlGz0a6OHG88gxLNUdQIVcbp8%3D"],["[小鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fe24ff0faddf4fb29e9a826497e17b90?x-expires=2023614000&x-signature=9tBTDMmGmf2LKYFCSNE4E%2FH1jpI%3D"],["[大金牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/38f7954e677e4dfc89f8cd273b2d14d1?x-expires=2023614000&x-signature=u9578lCRSLhocyTbEEqN%2BJPkCvQ%3D"],["[偷笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df2909979ff24ce4a63e92011a5e987c?x-expires=2023614000&x-signature=%2BqKk0IVBXdz2ucLYV9iMKnPzyLg%3D"],["[石化]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8a16851874fb4f789eb1e3c77b74bf1d?x-expires=2023614000&x-signature=qn8Ht9hw2wRvG8FK%2FCfc4UW3Xoc%3D"],["[思考]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c051ef63150343d4a8de3c06ac800e05?x-expires=2023614000&x-signature=X8TvUi6loFSdmaGcZtsQ1UmSQV4%3D"],["[吐血]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec5e68bf82dc44bead4c47d2dca2f741?x-expires=2023614000&x-signature=3bQQG2WJB%2FQ2SMffmINo76No3Is%3D"],["[可怜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b27562e43df74d94afc6e9aeceb02d0f?x-expires=2023614000&x-signature=2cdatNo4XFq5v8gXAM2mV2OJke0%3D"],["[嘘]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b00abe8162ca4194a80df85dd5ffb32b?x-expires=2023614000&x-signature=m7BScMJSMXg0WKJ6lPUPVx7a0oc%3D"],["[撇嘴]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d91ff743cf864740ba038711c2c2e7ff?x-expires=2023614000&x-signature=wtS8%2FHP1z24gk2Roh4WZlY9X6zc%3D"],["[尴尬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/271b6d252671495b9e0c6b753c3d6d74?x-expires=1949886000&x-signature=ycneobP5YUkMVgFqeT%2BDkFTXxjo%3D"],["[黑线]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/271b6d252671495b9e0c6b753c3d6d74?x-expires=1949886000&x-signature=ycneobP5YUkMVgFqeT%2BDkFTXxjo%3D"],["[笑哭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fb9ded0468104415be654f97a0bcb91b?x-expires=2023614000&x-signature=%2BAjqpjgBlEd78liXtoeNwmJfYM0%3D"],["[生病]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adaa6f335ff6480685dfc76754572014?x-expires=1949886000&x-signature=7i55rYyuMt5jnZuNOfPYtECxTDc%3D"],["[雾霾]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adaa6f335ff6480685dfc76754572014?x-expires=1949886000&x-signature=7i55rYyuMt5jnZuNOfPYtECxTDc%3D"],["[奸笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/65e5b8f17b3a4bee91733df0fa61081e?x-expires=2023614000&x-signature=2QA0bka3dLMFH%2FRfAI5LnQqi4gg%3D"],["[得意]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f1b940072c6746198b0866691e91ac29?x-expires=2023614000&x-signature=mp5el9PE1d3SY1u90lfhCz4qFIQ%3D"],["[憨笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92b1551788aa4fdba9abe0ff0146e007?x-expires=2023614000&x-signature=UAUOcCbATSG5Fl5Hl76adagjxdQ%3D"],["[坏笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cc9e395c367c4e8181489fdc46a2c1b4?x-expires=2023614000&x-signature=QfsFrP8CkLWtP6bU3%2Fub0bCPyz8%3D"],["[抓狂]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5a10a55042d448119204da73eeaeaac6?x-expires=2023614000&x-signature=L6%2Fvadj9gDHkQW6jZ36WMIDQJNQ%3D"],["[泪奔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b4311ade08724146813ee5fbfadc0463?x-expires=2023614000&x-signature=lYsy3Y9diD2JOo%2BqYXRldfB8QcU%3D"],["[钱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1c0d7f79a5ab4165a4e0f1a5bb268dc3?x-expires=2023614000&x-signature=6mOWR8SSaqTD7pdKknrb6VhxMV8%3D"],["[亲亲]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d1802aa908b4e94bde21703944bd932?x-expires=1949886000&x-signature=7aXRCvNNfMeTbUP%2F3%2BVkXavbH%2BA%3D"],["[吻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d1802aa908b4e94bde21703944bd932?x-expires=1949886000&x-signature=7aXRCvNNfMeTbUP%2F3%2BVkXavbH%2BA%3D"],["[恐惧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/44805befaa0e41a7a5c2eb55d3dfa246?x-expires=2023614000&x-signature=mn22dWHjA%2FLCBsYF2j9w8vdouRo%3D"],["[愉快]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a3d4676f88994158a300f9efbdfeac6a?x-expires=2023614000&x-signature=HCYMiCJcey22R%2BiAIp0OgP5KqaM%3D"],["[笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e95a4f4e48334867b099906e03e0d066?x-expires=1949886000&x-signature=GB%2B4kuurtOF4tEH2HsmURmudWHg%3D"],["[快哭了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dd42df4077854e1eb34c2621b44563e1?x-expires=2023614000&x-signature=42vv1bjEIjrKo7EmaPn2X%2Fub3sg%3D"],["[翻白眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/05b74b2b0e0141e995bb132e393e2f13?x-expires=2023614000&x-signature=%2FHFW8KTrkY1C6lZpMcKzztUfHHs%3D"],["[傲慢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/efc7316963ea48bba5884177f871b751?x-expires=1949886000&x-signature=RTYzEzvwmszv3C%2Bj6ZtDAoR4CmM%3D"],["[互粉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6283d505694b4c10b1a278d44a3ac7b1?x-expires=2023614000&x-signature=QEto4Rr7g%2BlnZE0YXhESfTkbF2A%3D"],["[我想静静]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8f277ea9e3504250ad0238510cb134f9?x-expires=2023614000&x-signature=o0jtwSSqvdQx9oFy4ymGKRGaFOk%3D"],["[委屈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2d517b569412487aaaf55fccd9b7dfcf?x-expires=2023614000&x-signature=6SYFb7AgQBV9kVqy2JCHhEPnU4s%3D"],["[舔屏]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f9cd7efe3ab84700a80def92b649615f?x-expires=2023614000&x-signature=IMI7zlgnXzDkO%2Bz%2FPrDOR0lYD38%3D"],["[鄙视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/14415ddc88074dbca9b68bb16c1906ca?x-expires=2023614000&x-signature=vIIBPn6kAedu7sLNHfNKyy4fqUA%3D"],["[飞吻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/35fd0e6e23b34c069c24560e3884bc4f?x-expires=2023614000&x-signature=8lQ9KR%2BtuMfign4eyFFx%2F3dUmRQ%3D"],["[再见]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/70f25ab16d9742378f89f1745df5e5e6?x-expires=2023614000&x-signature=qMA796tZ5E91K5aMPCVYJg9zjW8%3D"],["[紫薇别走]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e71c31c00eb04a0187d474ff1cd92178?x-expires=2023614000&x-signature=yGoI88ZznbOESG9IYq27Ey%2F%2B0AI%3D"],["[听歌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fb1d47dd1b4e49bab3f51288644cb71d?x-expires=2023614000&x-signature=lkbV8Lynll9%2BQ4GIX5h%2BC%2BkyFGs%3D"],["[拥抱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cd93218dd1654cd38afc70f8a9d91c76?x-expires=1949886000&x-signature=7FKT7aMh3d7dEkF1eWwfssTTVMw%3D"],["[求抱抱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e095144f3ed244638fc1afb695693231?x-expires=2023614000&x-signature=Q%2FIebwgzw1Wy9SrPWNB0kuCxWA4%3D"],["[绝望的凝视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec01edfc1c564636981cbfbf659f15e7?x-expires=2023614000&x-signature=aiXyHTVqi0KvHHRBupFbZGQP%2FHE%3D"],["[不失礼貌的微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/969553fb63764433ba9619043908f6b6?x-expires=2023614000&x-signature=4WhaEgGERuIyCmccSIzWoKOhees%3D"],["[吐舌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a3a20d3c5c9b4b3c8f4a32dae2ef49af?x-expires=2023614000&x-signature=7Xlx7NLefL3vP8eGbr0nsgaU%2B80%3D"],["[呆无辜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/58d8184dbc38479bbe963f8f0029b4f6?x-expires=2023614000&x-signature=3ihT05FDtvJxb%2F4dgMO0gwbeGIw%3D"],["[看]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e3a3205efba94c0a8a30640333e7ca8a?x-expires=2023614000&x-signature=nBKj0TMlOIcb4%2FooapG%2BP0SRK%2F0%3D"],["[白眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/08ac3eb9f3c7470c8222e1f65f539f64?x-expires=2023614000&x-signature=iE9LqelIiZZi8IiERIMTf1GLgb8%3D"],["[熊吉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b50c0b507d4842e18f3c29c5216ab56a?x-expires=2023614000&x-signature=UiW%2BTORsvEM1VSHrRGV6s2FJArc%3D"],["[猪头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1dc9428ab41c47d4979e58359b27eb86?x-expires=2023614000&x-signature=YMxV3Hg3J6FC9P2WuviKCfczCZ0%3D"],["[不看]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/51a2d685c2f349e9ab5adaf8449852f3?x-expires=2023614000&x-signature=nyVAPQKF88Cgui4mAiFjigJe8vQ%3D"],["[冷漠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f635c1934c88434cbbaa41bd35971bc4?x-expires=2023614000&x-signature=v%2BIXJ%2FoW43R0uxyuFpGat9hyLTI%3D"],["[微笑袋鼠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d8a901b00a044a13a09bde1f190ef853?x-expires=2023614000&x-signature=w69s074u1nTvhknTIK4qwlG%2BaZw%3D"],["[凝视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/11e76cce4bed4537887b3b2cab423242?x-expires=2023614000&x-signature=Rj1%2FTkeQrEjDxeGEjBk0%2FZCOPg8%3D"],["[暗中观察]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1e56fc8088b84d119d8b218d4005a31d?x-expires=2023614000&x-signature=eAskhRsbzyZ3G67%2FljmTWFQTF9o%3D"],["[骷髅]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7bf96aeb700b4f45ac7f66eeda0adc08?x-expires=1949886000&x-signature=GaLeuZxgi7%2BdC7wzJlnIo5CzBpA%3D"],["[黑脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1c14aa8bfb1a471f88959d80e8a236c0?x-expires=2023614000&x-signature=T0Sc9y4o0EPORp32ctoRlBChTCs%3D"],["[吃瓜群众]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ca4e821f45d44d8d853c608a9bd607da?x-expires=2023614000&x-signature=G49Zvge%2BzYbzJI7pI%2FTrahPD4iE%3D"],["[绿帽子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ce10a6b2584c478bb89c8b7eb4cf3c82?x-expires=2023614000&x-signature=eljMgbfGD1r05DXH%2FFfgdJ0ijEk%3D"],["[流汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/48f4840755b543da91fb0c2dd4e6a46e?x-expires=1949886000&x-signature=hbJzeF2MZM9iRk2eGxi09iNjAgA%3D"],["[汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/48f4840755b543da91fb0c2dd4e6a46e?x-expires=1949886000&x-signature=hbJzeF2MZM9iRk2eGxi09iNjAgA%3D"],["[摸头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7f37190fa48e484fa0689f4c6a2e6b53?x-expires=2023614000&x-signature=5aXfAemU1SCiNbWZchLWct5a3og%3D"],["[皱眉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/27fbe79e299f4109ac7a366b1a02dd05?x-expires=2023614000&x-signature=EukXue%2F5OI8qHcXFThFoIIBo4q0%3D"],["[擦汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4ecd00e5f9a7454b856dee77e1e26cd9?x-expires=2023614000&x-signature=pRrj1d43dKS5pImegarBGUnFo4E%3D"],["[红脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92f13b1d35a94a4e91153ce6ed4318bf?x-expires=2023614000&x-signature=IBy%2BBX%2F1xnlgSWHSCcxQGKNRyd0%3D"],["[尬笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/455d711edbee4930b0ee5137408d019c?x-expires=2023614000&x-signature=yenWxnJI8sIw0Fn1n3%2BmPViuuZM%3D"],["[做鬼脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d574175036114525bd0537635aa3793c?x-expires=2023614000&x-signature=pMyLz0YJ4ZP6h4Fvs0szKyAAuCU%3D"],["[强]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/51876b0543304a5286dd1ff02e6506be?x-expires=2023614000&x-signature=HwVQc4SmmblCGB2INvN7pkw1KiU%3D"],["[如花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1a80a192990b48e18c59d9eedcfd5757?x-expires=2023614000&x-signature=oaEysWENGxdy%2B95Bxm6MfB0gltg%3D"],["[吐]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0b565689372840a1ab2de8a5e1692527?x-expires=2023614000&x-signature=SAuBGMbcH7nufHsDXDyPAskOvm0%3D"],["[惊喜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/583d33092fd7456f849933f12e300ece?x-expires=2023614000&x-signature=U8TMrDI7FZY%2B%2BIgqXnV6KP%2Bd3a0%3D"],["[敲打]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ddb66c9b56af49c3a2843f65a4caed7a?x-expires=2023614000&x-signature=qAQsRxYqo15Nhq%2BWCN445Fqxp%2BM%3D"],["[奋斗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d7d8b9f01a34d138feead1a3860a04f?x-expires=2023614000&x-signature=JMv%2BUBc%2BVNmJAkkt15dkepzixFI%3D"],["[吐彩虹]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df6fb9f5f6f04a73afb49c5d78bef06b?x-expires=2023614000&x-signature=w8k9wqyUhBlWOt9%2BDTNq8Z4YpoU%3D"],["[大哭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b2c8ee0975264dedb7d1be43ec090d31?x-expires=2023614000&x-signature=uixNFJ%2FFgcVEVQ%2BiPEozjwScZUY%3D"],["[嘿哈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/82aac9bd5bef42bcb8db64100033de2b?x-expires=2023614000&x-signature=AFdCVQ0V21xZdIRMzbpRTEm%2FaPo%3D"],["[加好友]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c9953ef876c949b7b961df5086d05f86?x-expires=2023614000&x-signature=Vj72TXLGIKzm9C4baUPDxRV7u%2BI%3D"],["[惊恐]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2ea24af231e244c7be98ef96507f7081?x-expires=2023614000&x-signature=kBgSl4oM2HGeKuZVxrjPnUARu4Y%3D"],["[惊讶]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ab23dfb38aca4a7eae8aa65ba23352c3?x-expires=2023614000&x-signature=neCA8mdoyy76YBtgZ08koRdztEk%3D"],["[囧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a00e57ea57534718a8ca306e2a9cf5db?x-expires=2023614000&x-signature=%2B8WfJrEIvbNGqTYL%2BNdY7D7VLVY%3D"],["[难过]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/984dcf2da90b4f78b17047f976d5e28d?x-expires=2023614000&x-signature=ZqLvm8Ds%2FsY1aMKdbfn8b3uk8oU%3D"],["[斜眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/eb037efed83e47ecb81bea527830c561?x-expires=2023614000&x-signature=BcKkF%2F4d8iyIU6AUEIQdwc2cuQs%3D"],["[阴险]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f590ea1031ba451c97e4a28df78c438b?x-expires=2023614000&x-signature=wmK%2B3SDf7ehLRNnn76eaV5Ltors%3D"],["[左哼哼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fdc9d3bf655042f185d352dad70c80af?x-expires=1949886000&x-signature=2H8ZkGayyjwzVctXbwV7sQ4%2B%2BaQ%3D"],["[右哼哼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/99ee7e92370e4c79b074af1b22476aec?x-expires=1949886000&x-signature=9S7dzm8EUVvNPIhdgJpng%2B%2BPPtI%3D"],["[悠闲]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1d062954fd7a4fdeb4dd73ca6bd5142d?x-expires=2023614000&x-signature=d6CSO0LCDFVVH9fwGMTLnXobaa0%3D"],["[咒骂]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e5447595d746460d93b2a2dd1708dc49?x-expires=2023614000&x-signature=sypv07NPg2DGIHVlHj9WjAWQ%2FQM%3D"],["[比心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adc5116e9de74cf99d1a578b33d7d302?x-expires=2023614000&x-signature=IYdktc3HcWcRNBnMJDIjhn%2BfCC8%3D"],["[强壮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/9937cb04d8be40ecbdf54ed45d746ce7?x-expires=2023614000&x-signature=LYrp9Sh7kp8EVjkgq8FBGc%2FvJrg%3D"],["[加油]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b3ab7751b34e41d185ab5ac8a22821bf?x-expires=1949886000&x-signature=8MRaKCqfi7NoLFw4paWUNk7akKQ%3D"],["[碰拳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/888715d3f43641be885685229d086ec9?x-expires=2023614000&x-signature=1bIeZ92a69WN9yjmd3gtEiGobvA%3D"],["[OK]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e24366eccea24549bb2072e0df463cc7?x-expires=2023614000&x-signature=%2F08gNzuWnkcbSoYpzTwZ5adMp4g%3D"],["[ok]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5aaea4f6b86e43b7b8ecc7f8fa9859df?x-expires=1949886000&x-signature=OQfhJ7DSSzskO37piqTQMPV7618%3D"],["[击掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/9c93658259b94c6f934406752789376c?x-expires=2023614000&x-signature=PsgkL%2Bev6VizYW8vlPdSwWuLrdA%3D"],["[左上]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/84e87569232545338fcaae2dfba56e18?x-expires=2023614000&x-signature=0MpJUc9qQdzgjyuHUuS3DrtcuJQ%3D"],["[握手]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ba5cdabaccb342f98c661b0142c65ffc?x-expires=2023614000&x-signature=%2BKW%2BmDWhn%2Bq6pqFSCoserJh%2FUAU%3D"],["[抱拳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/89b3920503004984b10cabd2d372a3b9?x-expires=2023614000&x-signature=PbwAKJNqxGLbFQXHecsbHWyDHpI%3D"],["[勾引]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cd2c005a10dc4692a9c305ae824486c5?x-expires=2023614000&x-signature=QYPIJNOVaFhYVjRWP5Zs0j69Gj8%3D"],["[拳头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1294101394cb49009dfac8730740c2f8?x-expires=2023614000&x-signature=vWLwCFbJYOKl0bIDOMqtdUfqY5A%3D"],["[弱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b718e36cbe12426f80a846e87a2c8617?x-expires=2023614000&x-signature=47DoM4KjzZ6tooYBZVD%2Fzi5R9BQ%3D"],["[胜利]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ae9976b0d27d4f7f95eaa5017fbf2282?x-expires=2023614000&x-signature=hmE8ec8CCbKhiEzuVHJ%2BfqDCTX0%3D"],["[右边]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3b658993b51f433f999bf0bdf42e4c68?x-expires=2023614000&x-signature=82hOZ5SBRhc9rCYcpYUrZ0NNYHM%3D"],["[左边]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5c674af7379444d695a88c740dbd58a8?x-expires=2023614000&x-signature=eNPAF6RWe6FCyaFw2r1b3Hzt4A4%3D"],["[嘴唇]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b083870e6af040b088882a67a57f256e?x-expires=2023614000&x-signature=2ZyJ3DRykRx3m77IiPWw8T0VmTI%3D"],["[kiss]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a4d9971c511748ff9920dafc2ba64da9?x-expires=1949886000&x-signature=SBNTQ7SgyQfm%2BN3xg5VCpr1NigY%3D"],["[去污粉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2a21cca85ed84db4b0a1826ff897c2a3?x-expires=2023614000&x-signature=mj7W%2BtzpAQSgeHqf080P2gl%2FLZA%3D"],["[666]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/505780ba25284f97bf0251ddc89dbdbd?x-expires=2023614000&x-signature=EHCURY2xk9f5kji5vUmKtCx29Uw%3D"],["[玫瑰]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8ec4606cfd4f4778ad03c8c6e6c82265?x-expires=2023614000&x-signature=BHEmTRNwiqY7qZsUkBO7TQmWbso%3D"],["[胡瓜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/12db3f1b1e564578a3af1e9880c077d1?x-expires=2023614000&x-signature=zFv1GaNZ9xZuSQCPShwmP1GZ1b8%3D"],["[啤酒]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7e81dc405625453a9b550f28c76c3021?x-expires=2023614000&x-signature=gIHYf1%2B0uQjyLQHS421BeP5iX4o%3D"],["[18禁]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bb5fb02ce7c94a8582f231816e66a4fb?x-expires=2023614000&x-signature=bz61mHnEIj7lsFeuF1uWjfvY0Wc%3D"],["[我太难了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ede137e322dc4ccd967606c0e7688fd2?x-expires=2023614000&x-signature=CkIuHk60qNe4cNTZ4N0yZaev1zo%3D"],["[菜刀]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/46c690f4d09a496f9de8e7a2677a27fb?x-expires=1949886000&x-signature=ZvnGuyA1vxCHsYytcTZO6LxE8TQ%3D"],["[刀]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/46c690f4d09a496f9de8e7a2677a27fb?x-expires=1949886000&x-signature=ZvnGuyA1vxCHsYytcTZO6LxE8TQ%3D"],["[V5]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b1d4123eb73a42bb8aaa7e1b0454f1b8?x-expires=2023614000&x-signature=LRx2QE8vsX0%2FyWveBxWeWVQfKwc%3D"],["[给力]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2de75742e1dc4d618bb8d8056eb16a6a?x-expires=2023614000&x-signature=cMlE2V%2FUeo7En5tZdRgn9GrzXy0%3D"],["[爱心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0e8e3438de4943c79db4caa5b64c4208?x-expires=2023614000&x-signature=L%2BZKGU7gdE0HKwm1rpZtc7xwol0%3D"],["[心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f92622805ce748cab050f59892013d08?x-expires=1949886000&x-signature=jP%2BKOOBFsigtheKEpFlAwKc7HEk%3D"],["[心碎]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/313735c1648847fcbde5443ff9749328?x-expires=2023614000&x-signature=3%2BTrb%2B1mHqPxqTYP3dv2%2FotEIDk%3D"],["[伤心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/065fe191252243a6b9c6f9d1ed9c0705?x-expires=1949886000&x-signature=n73eSB3oJNgdN09yEuJXqG%2BmFXw%3D"],["[便便]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7d8abaef1de244c2b8ed04dc7a38ea07?x-expires=1949886000&x-signature=mjffI12RBCO6lWh2V5Bt11o%2B%2F0E%3D"],["[屎]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/166b7cfacb284fae9d10fb5bb40caf73?x-expires=2023614000&x-signature=Pk9n2EVBRedNoRBw6aXLFNB8yxU%3D"],["[加鸡腿]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/95996779237b42549cadaf82d0d7913c?x-expires=2023614000&x-signature=ynrKYuaJP1Mu4csumycLRscxnQ8%3D"],["[蛋糕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d39ce52f9f02466db04a5b7800f73046?x-expires=2023614000&x-signature=TrEg2Buv%2BB1XvJN8qtRJXG5WJfw%3D"],["[气球]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2f69fd57679d4ceda1e9c6bc715ff6da?x-expires=2023614000&x-signature=hrv5Y28c6VSebnlaTeW29kZ9rHQ%3D"],["[炸弹]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4c6f47980de742a6b790d617a283a6a0?x-expires=2023614000&x-signature=75CVxTTQ1E%2FSbKuR34uSEyUURrc%3D"],["[发]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7807930dc47040f0b0273eea12a8b177?x-expires=2023614000&x-signature=xnx%2FlvtvJAbJBWUdjn1lwo1t0y4%3D"],["[派对]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c18699407752477bbbc61e316274f280?x-expires=1949886000&x-signature=ysPm45kcokslgfPcifPD%2B%2FeTu%2BI%3D"],["[撒花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6ff8a80bc0ff496aa85182d198c54012?x-expires=2023614000&x-signature=yiGWrq7sebudNPMceXTFGis5cIQ%3D"],["[礼物]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/38635588204c4eb7a12e94d0ac5112be?x-expires=2023614000&x-signature=aGtDgtDK2CQKFimJx5pZ0ZBQ6Eo%3D"],["[红包]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8cb649567b0646b3b3c919c8710627a2?x-expires=2023614000&x-signature=DGQuQUf01xB7HI0FVJqcY7cswRE%3D"],["[咖啡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c84f8f3c54c04b50892822c8ab315990?x-expires=2023614000&x-signature=Pz9jip4ks%2BT%2F7Jo46IcJBMwy40k%3D"],["[凋谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/79f72bb689f649df8ac93e1086290a30?x-expires=2023614000&x-signature=8txRiQScmFJ4KPxWhATmYT5azI0%3D"],["[西瓜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3895c1af5f4b469eaf0b33373a26a233?x-expires=2023614000&x-signature=mVI9hlWEXyT8B%2FbXoT22UxDP4YM%3D"],["[太阳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b0b16a243dca467fb6cf197716499e6b?x-expires=2023614000&x-signature=L3LSXKMqEq%2BwZq%2Ftxx%2BuKbPVlqo%3D"],["[月亮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/133763c26f254df695216f6d6a086f97?x-expires=2023614000&x-signature=JZG4Y%2BBUgsPfkldGm2QhtmpX%2FVs%3D"],["[锦鲤]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0fccedd7d90d428891d6e2c86a4119bb?x-expires=2023614000&x-signature=zRKYxhK9EFevvKhModAWZJ8v28k%3D"],["[过年鼠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/37413a95c85d4ae785001b8d14906547?x-expires=1949886000&x-signature=qb3Q82cDFHEEWHAvnjnFLKtyCzU%3D"],["[圣诞树]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f100454a3a5846a6bfe363abbdefcb12?x-expires=2023614000&x-signature=X0f08e63ujAfYqHZrsbG17NK2q8%3D"],["[圣诞帽]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/872cd36a5e8f4720ba86bf2e358d3ecd?x-expires=2023614000&x-signature=evUDS163eDBEcGAJqcc3Gu4gHy0%3D"],["[雪花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c7ff946dada547f8a690570095d9af2f?x-expires=2023614000&x-signature=cJ1Gj4TJZNi80SeuCUFNX59HaAQ%3D"],["[平安果]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2f36db7f1be14eb0898be4590d6fe5d8?x-expires=2023614000&x-signature=3ou2tti5v4aVjgR8laGD6r029qE%3D"],["[握爪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/534f3205cf404d8eaa547e8d70abe10d?x-expires=2023614000&x-signature=Znjz%2FZyB1u6fVtUlgrQvzu415dE%3D"],["[我酸了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/646c771af9f745daaf0fdf2c93af9da9?x-expires=2023614000&x-signature=ZjDKfdRFgj0NtlFhQMTOA5fyoIs%3D"],["[小黄鸭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0083c5211f4f47b8ad3f065be0d0dd0f?x-expires=2023614000&x-signature=XKE8amq5g6VRO%2By29EicjSqVFcA%3D"],["[棒棒糖]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b4bc03a48d714102988d629966153697?x-expires=2023614000&x-signature=hM9roYw2aTTMBCkxfll78NkCG9k%3D"],["[纸飞机]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/328371f15f4448138b3d4ef8a8d9a8af?x-expires=2023614000&x-signature=YVTDUxy3IVxyBAEGAOcFsOTPdk4%3D"],["[必胜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/660724d3b82a4dc2870e4d9980f9fc48?x-expires=2023614000&x-signature=17x88Kw5bET770brSXzg3mEq1CA%3D"],["[粽子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d69e7ce989d04594b3adfe4e7b9266a3?x-expires=2023614000&x-signature=vqOH06BWaHMOC67CQe9jqiA4Iew%3D"],["[蕉绿]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/563140ae857f49188a23176f7781b530?x-expires=2023614000&x-signature=qFNfnqouPNqBp130EkPCGm1znW8%3D"],["[绝]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7e3eaafd7bb94521909a3b638690914e?x-expires=2023614000&x-signature=17mFoLgXwBI1g%2Ft4oki10c%2F3e9w%3D"],["[给跪了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4b64dc730f4045c6aa5967fa6169cdab?x-expires=2023614000&x-signature=7NIIos8cpOxl91nDqYZtwj74lOI%3D"],["[扎心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f4d3973212204ac1aab83acbe4cab1ee?x-expires=2023614000&x-signature=3S7kOaT7Qkapa1GLOkyhhdmzZhY%3D"],["[干杯]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0065f8fb0d6c4f82bb7cefcc49245660?x-expires=2023614000&x-signature=%2FabGbP4z8W9qwNr069tr5PWr7ww%3D"],["[烟花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2fa9247aad5e4bffb2a4811b6b94aca4?x-expires=2023614000&x-signature=tleDzfUTQLUZsNtwnTQLMGh2D04%3D"],["[小红花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dc0e065b1b564552be3ec9001f13cc8f?x-expires=1949886000&x-signature=LeOgZ99u0KIHrSkyss9LMv07NEs%3D"],["[饺子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0bc2ea35e655469bb3e86f6053ea0112?x-expires=2023614000&x-signature=IlZOsKy%2FrknTsDWUPN6%2FO6QcDnU%3D"],["[福]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a329cbc22ce946f4aa001da51e6f4312?x-expires=2023614000&x-signature=cCd36BADuv33KyTLdTXNvaHVAm4%3D"],["[灯笼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92467d8e9d1a4dfda6bb7c5c3493769e?x-expires=2023614000&x-signature=itagUD7YZJCAcwqnSM1nIX8TZ5U%3D"],["[巧克力]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ed77974545254216a06340a702bafa52?x-expires=2023614000&x-signature=BrX0N0Urp5hx7GjqGxTOhAVn%2B4o%3D"],["[戒指]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e3de7e70e1b24c7bb4b912f9ff4b2bad?x-expires=2023614000&x-signature=lgAT8KgubsyutN%2BGHsftoZoQBeM%3D"],["[罗三炮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ef2ab85fe47348d7a348b05ebb3794cb?x-expires=1949886000&x-signature=Xo0E1f7KTmazDCd0fE7CcibGAVA%3D"],["[抱抱你]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5ee86f77cb8d447fa6f84e83747b6043?x-expires=2023614000&x-signature=1E2J1AC%2FNHVXpRy4ORVgpYuYYXE%3D"],["[裂开]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8f77df684ae54e2787d5f8b6da8a91c9?x-expires=2023614000&x-signature=foOR6XEDlqTSjuoowGdgTwFeXno%3D"],["[干饭人]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0674983aa4254fbfa936ad857d11d9e8?x-expires=2023614000&x-signature=qsZ5YdTt%2FXykCnsxTjPLXlXEkx8%3D"],["[二哈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bde1bddfe53d4d35b119103bdb6155be?x-expires=2023614000&x-signature=dSnhK4CRHwby0q0EBXA%2FEh0dB54%3D"],["[菜狗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92ef276920da4fbca76c9dcbd96ecf98?x-expires=2023614000&x-signature=6QI4IxVqQQMgXp2%2FVmAi8GSar4M%3D"],["[展开说说]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/59103f22480446239f9534700307416a?x-expires=2023614000&x-signature=JF10RNStrmNjLRwRYmAt4iS5FmQ%3D"],["[蜜蜂狗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/20b7bfa94ab84713a0d97bd0ebb619c7?x-expires=2023614000&x-signature=zs0jOWaTe%2BtpIs40u4yO5spfaSc%3D"],["[真的会谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8de486f844ec4ef4a4e6d3d3bf6a8422?x-expires=2023614000&x-signature=NBZ2doLFDnQhC5KjB5J3q61Nofs%3D"],["[达咩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c606611c7f324f2b890f92f7cbd20421?x-expires=2023614000&x-signature=PllK7E9APv9K2QnuJUCqD%2BbQYms%3D"],["[敢怒不敢言]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d6d02d56b2445be8691666bb6018d0a?x-expires=2023614000&x-signature=uCYtYSxG9o%2BZvzUnRBtKvEjadCE%3D"],["[投降]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/23ed04ffdbb2450eb3e1368bb3ff17d7?x-expires=2023614000&x-signature=pbRRMQkwG57hYEd%2BSM1f2uaMoqM%3D"],["[求求了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fd9c6a643f5e4968a745c74d3556a387?x-expires=2023614000&x-signature=MRb6bbkpPl2imAcqb3LjlD18zzg%3D"],["[眼含热泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/460e6bdd35b741edb3f924895eef8e80?x-expires=2023614000&x-signature=bElQuDF2I24rnn6uj0oLAX%2BKG%2FU%3D"],["[叹气]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/05a5e1e98bfa418697e9fea1bad1d726?x-expires=2023614000&x-signature=kN24ogXu9%2BCmjMG8hE8B6qANqx8%3D"],["[好开心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a84a0b3b9e034a87877e98e626db102b?x-expires=2023614000&x-signature=INwrbxJzHz0BhQw8a7cT6N6n5cQ%3D"],["[不是吧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/542a3c0ca97b4af49d4000bc7699442f?x-expires=2023614000&x-signature=AhGaZShGcL84gHCURJdEgDqrT28%3D"],["[动动脑子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0a6cd538c5a840db9090f50ad07807ad?x-expires=2023614000&x-signature=jP7k5a17REo6hZJPh0UoX3%2F4%2FBY%3D"],["[表面微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7c9d311e31fd4d588b62ecb4040e1f24?x-expires=2023614000&x-signature=UeTGzDK%2BsfjvENeCWkeDCz5PPgQ%3D"],["[表面呲牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/53afcfc64848447cad6f147062165a46?x-expires=2023614000&x-signature=eN58ebpihs67f3vWAcJWpUf%2BWPQ%3D"],["[鞠躬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c687e7fe926d46bcbe5bc143f99fe2f1?x-expires=2023614000&x-signature=E6dqgBTnhrE%2FlXLI45%2FBFJFwKr8%3D"],["[躺平]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2d02a01973c24c3d9902b6cb9acf55c0?x-expires=2023614000&x-signature=aHVUeWihdYFUfPAUMckisHyQB9Q%3D"],["[九转大肠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fc20a426ce394359880b199caa6599b2?x-expires=2023614000&x-signature=nmgqJw8RfyKzcAwFkTDB%2FeYjwg8%3D"],["[敲木鱼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b0bfd31106ff49ddb69334d3013eaed9?x-expires=2023614000&x-signature=pFLxkvVt1%2FcmBCyrJQ9kFMvtt90%3D"],["[不你不想]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/22fd973f607441199270a000de0db1fd?x-expires=2023614000&x-signature=SEyhZAY1gSsnPakQUiRUbhtx8bQ%3D"],["[一头乱麻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/61782e2e8ede4471be3163e89e8a07f8?x-expires=2023614000&x-signature=QvjjyIP1%2FX8sLTsQmqssnR6YIu8%3D"],["[kisskiss]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/06380f50ce1e411cb1cbc8418f302c4b?x-expires=2023614000&x-signature=riWBXYMpPCt6FpbFjvBpNLTdte4%3D"],["[你不大行]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d30c5738dd1f44a7a87aa3d68db7a37a?x-expires=2023614000&x-signature=tQkArXmckZC%2BE1t5AfLc6jiCkCM%3D"],["[噢买尬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5668c7f5a9384be8a0c5abb8738ce513?x-expires=2023614000&x-signature=Nhl70yJWDk5JsLElcXbB3yk4XBM%3D"],["[宕机]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e704e29b5579406a8a3eb03236625d02?x-expires=2023614000&x-signature=PcCxILogGbozw4R%2FWbQw6daVx8s%3D"],["[还得是我]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8a6ae559cc5e4020b084767c99c35c2f?x-expires=2023614000&x-signature=fUnu7IWgZeS0WzqMTdPvbFuXjyA%3D"],["[6]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ea9e64cf725d4419911a428435404d20?x-expires=2023614000&x-signature=enAL6ID5Iq%2F9T%2F%2BH2z8qoF03usg%3D"],["[脸疼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6252bc2e9ac44d129bb99306f79f69ee?x-expires=2023614000&x-signature=sr95bCvTmn7EndjQncoey5ezdGQ%3D"],["[他急了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec9e82b623ff4fa98badede8ee5bc2ec?x-expires=2023614000&x-signature=YXjDn2eElfjrtkDyHuU3J%2BvCBJY%3D"],["[苦涩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df3429529c2e4faeb6b519dbf0682998?x-expires=2023614000&x-signature=I2Sh2mbXKQyJF9SkrZKqYcGT8Bs%3D"],["[逞强落泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c4cf290ea2884dca8d536fedf051b6fb?x-expires=2023614000&x-signature=aa0Id7UQOh5GxGydwWmyKXjluNc%3D"],["[亚运鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a9f4421cf71449d39344ae6ca6e53ccb?x-expires=2023614000&x-signature=%2B8WX81wxjje5fNRYcDR0NhT5ceQ%3D"],["[金牌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/82f91be0c3e74ad1a7418d8b671e4897?x-expires=2023614000&x-signature=2n54KQ0N7dnKC04BxElZVcV%2FBTc%3D"],["[手花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/67926a0606e849aebcf4b506ff810b60?x-expires=2023614000&x-signature=0Wm36wXu83TZ6Iz182YVzCADP%2Fw%3D"],["[加一]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f574622f4be04c668e3845635df0463e?x-expires=2023614000&x-signature=BVcoZwJCKxSWGtnzNaqk1se8bIo%3D"],["[减一]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2cba29ef16fb4741855e26de5c644067?x-expires=2023614000&x-signature=EtaH2Wy9UU%2BrfrN6tfUQR%2F9hL1c%3D"],["[okk]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6381b4679e5a4e95a2abfa19976ac880?x-expires=2023614000&x-signature=3sKBRaC6DhZwSSMk4VG1UkpbO4w%3D"],["[yyds]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/75196c50b300474ea9510aa926db5aa1?x-expires=2023614000&x-signature=qrMkn4oLYcSGUMSgozmEe9Ppj2o%3D"],["[emo]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/884e0576cfab47c183c5c174d137d965?x-expires=2023614000&x-signature=nM1sh03Fy4O2FfXNckNZRvD8lDg%3D"],["[开心兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b5fa370d2f7f4b44a3154b49e594ac19?x-expires=2023614000&x-signature=rl7Gz1EpKmYv03X439LAyunah%2Fw%3D"],["[招财兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e4f03c234a4649a29f8fa720f9588a9c?x-expires=2023614000&x-signature=QFoCVkdzTGjwfS3s8LNScLV%2BIl4%3D"],["[年兽兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c077c8b084a74c29a1c4527b74559a02?x-expires=2023614000&x-signature=CqsikylUTFIoYEEUrId9dLrogiY%3D"],["[打call]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7ab1e46bc5c945b4a0c45e4c0589b4dc?x-expires=2023614000&x-signature=nVsqYoU%2B%2BOSLkhHMXE6W3wRB23w%3D"],["[栓Q]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e0e6830fa83b490c87d567fee28d86a6?x-expires=2023614000&x-signature=xVLQpuYEuvBq3zjoeLYETuJWBnI%3D"],["[无语]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/81deba7ec54c4001a87b489b7dd6ef9f?x-expires=2023614000&x-signature=QIQhYsAXfvNteigmt5MfMwwn%2FCo%3D"],["[雪人]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5171c553be284ab0ba8da88824f57859?x-expires=2023614000&x-signature=YjOrFBHB1bCJCNoWtfN2m3Zg2mo%3D"],["[candy]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/460154736e734265bf349bb76915d7a9?x-expires=2023614000&x-signature=tX%2FkiuYr7oU5URfF71LZy%2BCA0qE%3D"],["[糖葫芦]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d4aa8a0ff46a445e861ad8fb78c07140?x-expires=2023614000&x-signature=FvN4ytTGjC7Mww8KX4BRIg9wcTE%3D"],["[虎头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7569ffeaa3894b8b8ea843c0e5a05f63?x-expires=2023614000&x-signature=m%2Bi3d034xBQkuBqx4xrvzru5q6A%3D"],["[iloveyou]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/798bcfd9811f4fcd97df92af06c87a0e?x-expires=2023614000&x-signature=DuK8xhX7glgLx44H53PrhM32D44%3D"]],I=[["[dog]","http://i0.hdslb.com/bfs/live/4428c84e694fbf4e0ef6c06e958d9352c3582740.png"],["[花]","http://i0.hdslb.com/bfs/live/7dd2ef03e13998575e4d8a803c6e12909f94e72b.png"],["[妙]","http://i0.hdslb.com/bfs/live/08f735d950a0fba267dda140673c9ab2edf6410d.png"],["[哇]","http://i0.hdslb.com/bfs/live/650c3e22c06edcbca9756365754d38952fc019c3.png"],["[爱]","http://i0.hdslb.com/bfs/live/1daaa5d284dafaa16c51409447da851ff1ec557f.png"],["[手机]","http://i0.hdslb.com/bfs/live/b159f90431148a973824f596288e7ad6a8db014b.png"],["[撇嘴]","http://i0.hdslb.com/bfs/live/4255ce6ed5d15b60311728a803d03dd9a24366b2.png"],["[委屈]","http://i0.hdslb.com/bfs/live/69312e99a00d1db2de34ef2db9220c5686643a3f.png"],["[抓狂]","http://i0.hdslb.com/bfs/live/a7feb260bb5b15f97d7119b444fc698e82516b9f.png"],["[比心]","http://i0.hdslb.com/bfs/live/4e029593562283f00d39b99e0557878c4199c71d.png"],["[赞]","http://i0.hdslb.com/bfs/live/2dd666d3651bafe8683acf770b7f4163a5f49809.png"],["[滑稽]","http://i0.hdslb.com/bfs/live/8624fd172037573c8600b2597e3731ef0e5ea983.png"],["[吃瓜]","http://i0.hdslb.com/bfs/live/ffb53c252b085d042173379ac724694ce3196194.png"],["[笑哭]","http://i0.hdslb.com/bfs/live/c5436c6806c32b28d471bb23d42f0f8f164a187a.png"],["[捂脸]","http://i0.hdslb.com/bfs/live/e6073c6849f735ae6cb7af3a20ff7dcec962b4c5.png"],["[喝彩]","http://i0.hdslb.com/bfs/live/b51824125d09923a4ca064f0c0b49fc97d3fab79.png"],["[偷笑]","http://i0.hdslb.com/bfs/live/e2ba16f947a23179cdc00420b71cc1d627d8ae25.png"],["[大笑]","http://i0.hdslb.com/bfs/live/e2589d086df0db8a7b5ca2b1273c02d31d4433d4.png"],["[惊喜]","http://i0.hdslb.com/bfs/live/9c75761c5b6e1ff59b29577deb8e6ad996b86bd7.png"],["[傲娇]","http://i0.hdslb.com/bfs/live/b5b44f099059a1bafb2c2722cfe9a6f62c1dc531.png"],["[疼]","http://i0.hdslb.com/bfs/live/492b10d03545b7863919033db7d1ae3ef342df2f.png"],["[吓]","http://i0.hdslb.com/bfs/live/c6bed64ffb78c97c93a83fbd22f6fdf951400f31.png"],["[阴险]","http://i0.hdslb.com/bfs/live/a4df45c035b0ca0c58f162b5fb5058cf273d0d09.png"],["[惊讶]","http://i0.hdslb.com/bfs/live/bc26f29f62340091737c82109b8b91f32e6675ad.png"],["[生病]","http://i0.hdslb.com/bfs/live/84c92239591e5ece0f986c75a39050a5c61c803c.png"],["[嘘]","http://i0.hdslb.com/bfs/live/b6226219384befa5da1d437cb2ff4ba06c303844.png"],["[奸笑]","http://i0.hdslb.com/bfs/live/5935e6a4103d024955f749d428311f39e120a58a.png"],["[囧]","http://i0.hdslb.com/bfs/live/204413d3cf330e122230dcc99d29056f2a60e6f2.png"],["[捂脸2]","http://i0.hdslb.com/bfs/live/a2ad0cc7e390a303f6d243821479452d31902a5f.png"],["[出窍]","http://i0.hdslb.com/bfs/live/bb8e95fa54512ffea07023ea4f2abee4a163e7a0.png"],["[吐了啊]","http://i0.hdslb.com/bfs/live/2b6b4cc33be42c3257dc1f6ef3a39d666b6b4b1a.png"],["[鼻子]","http://i0.hdslb.com/bfs/live/f4ed20a70d0cb85a22c0c59c628aedfe30566b37.png"],["[调皮]","http://i0.hdslb.com/bfs/live/84fe12ecde5d3875e1090d83ac9027cb7d7fba9f.png"],["[酸]","http://i0.hdslb.com/bfs/live/98fd92c6115b0d305f544b209c78ec322e4bb4ff.png"],["[冷]","http://i0.hdslb.com/bfs/live/b804118a1bdb8f3bec67d9b108d5ade6e3aa93a9.png"],["[OK]","http://i0.hdslb.com/bfs/live/86268b09e35fbe4215815a28ef3cf25ec71c124f.png"],["[微笑]","http://i0.hdslb.com/bfs/live/f605dd8229fa0115e57d2f16cb019da28545452b.png"],["[藏狐]","http://i0.hdslb.com/bfs/live/05ef7849e7313e9c32887df922613a7c1ad27f12.png"],["[龇牙]","http://i0.hdslb.com/bfs/live/8b99266ea7b9e86cf9d25c3d1151d80c5ba5c9a1.png"],["[防护]","http://i0.hdslb.com/bfs/live/17435e60dcc28ce306762103a2a646046ff10b0a.png"],["[笑]","http://i0.hdslb.com/bfs/live/a91a27f83c38b5576f4cd08d4e11a2880de78918.png"],["[一般]","http://i0.hdslb.com/bfs/live/8d436de0c3701d87e4ca9c1be01c01b199ac198e.png"],["[嫌弃]","http://i0.hdslb.com/bfs/live/c409425ba1ad2c6534f0df7de350ba83a9c949e5.png"],["[无语]","http://i0.hdslb.com/bfs/live/4781a77be9c8f0d4658274eb4e3012c47a159f23.png"],["[哈欠]","http://i0.hdslb.com/bfs/live/6e496946725cd66e7ff1b53021bf1cc0fc240288.png"],["[可怜]","http://i0.hdslb.com/bfs/live/8e88e6a137463703e96d4f27629f878efa323456.png"],["[歪嘴笑]","http://i0.hdslb.com/bfs/live/bea1f0497888f3e9056d3ce14ba452885a485c02.png"],["[亲亲]","http://i0.hdslb.com/bfs/live/10662d9c0d6ddb3203ecf50e77788b959d4d1928.png"],["[问号]","http://i0.hdslb.com/bfs/live/a0c456b6d9e3187399327828a9783901323bfdb5.png"],["[波吉]","http://i0.hdslb.com/bfs/live/57dee478868ed9f1ce3cf25a36bc50bde489c404.png"],["[OH]","http://i0.hdslb.com/bfs/live/0d5123cddf389302df6f605087189fd10919dc3c.png"],["[再见]","http://i0.hdslb.com/bfs/live/f408e2af700adcc2baeca15510ef620bed8d4c43.png"],["[白眼]","http://i0.hdslb.com/bfs/live/7fa907ae85fa6327a0466e123aee1ac32d7c85f7.png"],["[鼓掌]","http://i0.hdslb.com/bfs/live/d581d0bc30c8f9712b46ec02303579840c72c42d.png"],["[大哭]","http://i0.hdslb.com/bfs/live/816402551e6ce30d08b37a917f76dea8851fe529.png"],["[呆]","http://i0.hdslb.com/bfs/live/179c7e2d232cd74f30b672e12fc728f8f62be9ec.png"],["[流汗]","http://i0.hdslb.com/bfs/live/b00e2e02904096377061ec5f93bf0dd3321f1964.png"],["[生气]","http://i0.hdslb.com/bfs/live/2c69dad2e5c0f72f01b92746bc9d148aee1993b2.png"],["[加油]","http://i0.hdslb.com/bfs/live/fbc3c8bc4152a65bbf4a9fd5a5d27710fbff2119.png"],["[害羞]","http://i0.hdslb.com/bfs/live/d8ce9b05c0e40cec61a15ba1979c8517edd270bf.png"],["[虎年]","http://i0.hdslb.com/bfs/live/a51af0d7d9e60ce24f139c468a3853f9ba9bb184.png"],["[doge2]","http://i0.hdslb.com/bfs/live/f547cc853cf43e70f1e39095d9b3b5ac1bf70a8d.png"],["[金钱豹]","http://i0.hdslb.com/bfs/live/b6e8131897a9a718ee280f2510bfa92f1d84429b.png"],["[瓜子]","http://i0.hdslb.com/bfs/live/fd35718ac5a278fd05fe5287ebd41de40a59259d.png"],["[墨镜]","http://i0.hdslb.com/bfs/live/5e01c237642c8b662a69e21b8e0fbe6e7dbc2aa1.png"],["[难过]","http://i0.hdslb.com/bfs/live/5776481e380648c0fb3d4ad6173475f69f1ce149.png"],["[抱抱]","http://i0.hdslb.com/bfs/live/abddb0b621b389fc8c2322b1cfcf122d8936ba91.png"],["[跪了]","http://i0.hdslb.com/bfs/live/4f2155b108047d60c1fa9dccdc4d7abba18379a0.png"],["[摊手]","http://i0.hdslb.com/bfs/live/1e0a2baf088a34d56e2cc226b2de36a5f8d6c926.png"],["[热]","http://i0.hdslb.com/bfs/live/6df760280b17a6cbac8c1874d357298f982ba4cf.png"],["[三星堆]","http://i0.hdslb.com/bfs/live/0a1ab3f0f2f2e29de35c702ac1ecfec7f90e325d.png"],["[鼠]","http://i0.hdslb.com/bfs/live/98f842994035505c728e32e32045d649e371ecd6.png"],["[汤圆]","http://i0.hdslb.com/bfs/live/23ae12d3a71b9d7a22c8773343969fcbb94b20d0.png"],["[泼水]","http://i0.hdslb.com/bfs/live/29533893115c4609a4af336f49060ea13173ca78.png"],["[鬼魂]","http://i0.hdslb.com/bfs/live/5d86d55ba9a2f99856b523d8311cf75cfdcccdbc.png"],["[不行]","http://i0.hdslb.com/bfs/live/607f74ccf5eec7d2b17d91b9bb36be61a5dd196b.png"],["[响指]","http://i0.hdslb.com/bfs/live/3b2fedf09b0ac79679b5a47f5eb3e8a38e702387.png"],["[牛]","http://i0.hdslb.com/bfs/live/5e61223561203c50340b4c9b41ba7e4b05e48ae2.png"],["[保佑]","http://i0.hdslb.com/bfs/live/241b13adb4933e38b7ea6f5204e0648725e76fbf.png"],["[抱拳]","http://i0.hdslb.com/bfs/live/3f170894dd08827ee293afcb5a3d2b60aecdb5b1.png"],["[给力]","http://i0.hdslb.com/bfs/live/d1ba5f4c54332a21ed2ca0dcecaedd2add587839.png"],["[耶]","http://i0.hdslb.com/bfs/live/eb2d84ba623e2335a48f73fb5bef87bcf53c1239.png"]],T=[["[666]","https://ali2.a.yximgs.com/bs2/emotion/1704763447505third_party_s1296657489.png"],["[奸笑]","https://ali2.a.yximgs.com/bs2/emotion/1704776059816third_party_s1296748052.png"],["[捂脸]","https://bd.a.yximgs.com/bs2/emotion/1704776021202third_party_s1296747457.png"],["[龇牙]","https://bd.a.yximgs.com/bs2/emotion/1704775978144third_party_s1296746882.png"],["[哼]","https://ali2.a.yximgs.com/bs2/emotion/1704775935917third_party_s1296746407.png"],["[哦]","https://ali2.a.yximgs.com/bs2/emotion/1704775888472third_party_s1296745888.png"],["[微笑]","https://ali2.a.yximgs.com/bs2/emotion/1704775840073third_party_s1296745254.png"],["[老铁]","https://ali2.a.yximgs.com/bs2/emotion/1704766004548third_party_s1296668542.png"],["[双鸡]","https://ali2.a.yximgs.com/bs2/emotion/1704765943430third_party_s1296668337.png"],["[调皮]","https://ali2.a.yximgs.com/bs2/emotion/1704775798640third_party_s1296744691.png"],["[呆住]","https://ali2.a.yximgs.com/bs2/emotion/1704775755675third_party_s1296744198.png"],["[星星眼]","https://ali2.a.yximgs.com/bs2/emotion/1704775705283third_party_s1296743591.png"],["[爱心]","https://ali2.a.yximgs.com/bs2/emotion/1704765876094third_party_s1296667852.png"],["[疑问]","https://ali2.a.yximgs.com/bs2/emotion/1704775660342third_party_s1296742992.png"],["[生气]","https://ali2.a.yximgs.com/bs2/emotion/1704775610489third_party_s1296742417.png"],["[难过]","https://ali2.a.yximgs.com/bs2/emotion/1704775560543third_party_s1296741805.png"],["[撇嘴]","https://ali2.a.yximgs.com/bs2/emotion/1704775517486third_party_s1296741380.png"],["[惊讶]","https://ali2.a.yximgs.com/bs2/emotion/1704775445666third_party_s1296740420.png"],["[羞涩]","https://ali2.a.yximgs.com/bs2/emotion/1704772289790third_party_s1296705324.png"],["[色]","https://ali2.a.yximgs.com/bs2/emotion/1704772231770third_party_s1296704846.png"],["[汗]","https://ali2.a.yximgs.com/bs2/emotion/1704772177310third_party_s1296704283.png"],["[呕吐]","https://ali2.a.yximgs.com/bs2/emotion/1704772118979third_party_s1296703810.png"],["[老司机]","https://ali2.a.yximgs.com/bs2/emotion/1704772048844third_party_s1296703216.png"],["[头盔]","https://ali2.a.yximgs.com/bs2/emotion/1704771654524third_party_s1296700611.png"],["[酷]","https://ali2.a.yximgs.com/bs2/emotion/1704771603139third_party_s1296700263.png"],["[笑哭]","https://ali2.a.yximgs.com/bs2/emotion/1704771554781third_party_s1296699971.png"],["[愉快]","https://ali2.a.yximgs.com/bs2/emotion/1704771498312third_party_s1296699382.png"],["[委屈]","https://ali2.a.yximgs.com/bs2/emotion/1704771450694third_party_s1296699070.png"],["[鄙视]","https://ali2.a.yximgs.com/bs2/emotion/1704771395457third_party_s1296698891.png"],["[白眼]","https://ali2.a.yximgs.com/bs2/emotion/1704771346135third_party_s1296698660.png"],["[安排]","https://ali2.a.yximgs.com/bs2/emotion/1704771294552third_party_s1296698182.png"],["[点点关注]","https://ali2.a.yximgs.com/bs2/emotion/1704771236940third_party_s1296697797.png"],["[鼓掌]","https://ali2.a.yximgs.com/bs2/emotion/1704771184363third_party_s1296697359.png"],["[抱抱]","https://ali2.a.yximgs.com/bs2/emotion/1704766474596third_party_s1296670536.png"],["[哈欠]","https://ali2.a.yximgs.com/bs2/emotion/1704771131055third_party_s1296696977.png"],["[骂你]","https://bd.a.yximgs.com/bs2/emotion/1704771079728third_party_s1296696446.png"],["[大哭]","https://ali2.a.yximgs.com/bs2/emotion/1704771028940third_party_s1296696033.png"],["[闭嘴]","https://ali2.a.yximgs.com/bs2/emotion/1704770709451third_party_s1296694128.png"],["[惊恐]","https://bd.a.yximgs.com/bs2/emotion/1704770650664third_party_s1296693781.png"],["[红脸蛋]","https://ali2.a.yximgs.com/bs2/emotion/1704770591150third_party_s1296693499.png"],["[亲亲]","https://bd.a.yximgs.com/bs2/emotion/1704770453439third_party_s1296692624.png"],["[冷汗]","https://ali2.a.yximgs.com/bs2/emotion/1704770395028third_party_s1296692231.png"],["[晕]","https://ali2.a.yximgs.com/bs2/emotion/1704770038072third_party_s1296690336.png"],["[皇冠]","https://ali2.a.yximgs.com/bs2/emotion/1704765811100third_party_s1296667470.png"],["[火]","https://ali2.a.yximgs.com/bs2/emotion/1704763504359third_party_s1296657659.png"],["[坏笑]","https://ali2.a.yximgs.com/bs2/emotion/1704769906157third_party_s1296689515.png"],["[爆炸]","https://ali2.a.yximgs.com/bs2/emotion/1704763342710third_party_s1296657261.png"],["[大便]","https://ali2.a.yximgs.com/bs2/emotion/1704763289677third_party_s1296657112.png"],["[可怜]","https://ali2.a.yximgs.com/bs2/emotion/1704769849712third_party_s1296689281.png"],["[抠鼻]","https://ali2.a.yximgs.com/bs2/emotion/1704769802638third_party_s1296689012.png"],["[再见]","https://ali2.a.yximgs.com/bs2/emotion/1704769742626third_party_s1296688705.png"],["[摄像机]","https://ali2.a.yximgs.com/bs2/emotion/1704763241589third_party_s1296656998.png"],["[赞]","https://ali2.a.yximgs.com/bs2/emotion/1704762153449third_party_s1296652881.png"],["[平底锅]","https://ali2.a.yximgs.com/bs2/emotion/1704769687542third_party_s1296688270.png"],["[囧]","https://bd.a.yximgs.com/bs2/emotion/1704769626325third_party_s1296687863.png"],["[大哥]","https://ali2.a.yximgs.com/bs2/emotion/1704769568039third_party_s1296687559.png"],["[玫瑰]","https://bd.a.yximgs.com/bs2/emotion/1704763142635third_party_s1296656612.png"],["[抓狂]","https://ali2.a.yximgs.com/bs2/emotion/1704769507289third_party_s1296687303.png"],["[嘘]","https://ali2.a.yximgs.com/bs2/emotion/1704769442407third_party_s1296686829.png"],["[快哭了]","https://ali2.a.yximgs.com/bs2/emotion/1704769347108third_party_s1296686284.png"],["[骷髅]","https://ali2.a.yximgs.com/bs2/emotion/1704768884061third_party_s1296683458.png"],["[偷笑]","https://ali2.a.yximgs.com/bs2/emotion/1704768706672third_party_s1296682428.png"],["[落泪]","https://bd.a.yximgs.com/bs2/emotion/1704768657909third_party_s1296681906.png"],["[挑逗]","https://ali2.a.yximgs.com/bs2/emotion/1704768600457third_party_s1296681529.png"],["[困]","https://ali2.a.yximgs.com/bs2/emotion/1704768550467third_party_s1296681259.png"],["[睡觉]","https://ali2.a.yximgs.com/bs2/emotion/1704768494268third_party_s1296681034.png"],["[右哼哼]","https://ali2.a.yximgs.com/bs2/emotion/1704768448493third_party_s1296680688.png"],["[左哼哼]","https://ali2.a.yximgs.com/bs2/emotion/1704768392482third_party_s1296680332.png"],["[打招呼]","https://ali2.a.yximgs.com/bs2/emotion/1704762100195third_party_s1296652661.png"],["[流鼻血]","https://ali2.a.yximgs.com/bs2/emotion/1704768330183third_party_s1296680037.png"],["[偷瞄]","https://ali2.a.yximgs.com/bs2/emotion/1704768270249third_party_s1296679827.png"],["[吃瓜]","https://ali2.a.yximgs.com/bs2/emotion/1704768220721third_party_s1296679581.png"],["[黑脸问]","https://ali2.a.yximgs.com/bs2/emotion/1704768168791third_party_s1296679234.png"],["[旋转]","https://bd.a.yximgs.com/bs2/emotion/1704768117560third_party_s1296678783.png"],["[憨笑]","https://ali2.a.yximgs.com/bs2/emotion/1704768054223third_party_s1296678500.png"],["[吐彩虹]","https://ali2.a.yximgs.com/bs2/emotion/1704767994674third_party_s1296678327.png"],["[擦鼻涕]","https://ali2.a.yximgs.com/bs2/emotion/1704767940928third_party_s1296677841.png"],["[怒言]","https://ali2.a.yximgs.com/bs2/emotion/1704767890021third_party_s1296677678.png"],["[拜托]","https://ali2.a.yximgs.com/bs2/emotion/1704767838535third_party_s1296677360.png"],["[加油]","https://bd.a.yximgs.com/bs2/emotion/1704767780611third_party_s1296677057.png"],["[暴汗]","https://ali2.a.yximgs.com/bs2/emotion/1704767728861third_party_s1296676729.png"],["[想吃]","https://ali2.a.yximgs.com/bs2/emotion/1704767667849third_party_s1296676449.png"],["[打脸]","https://ali2.a.yximgs.com/bs2/emotion/1704767617056third_party_s1296676208.png"],["[吐血]","https://ali2.a.yximgs.com/bs2/emotion/1704767567911third_party_s1296675878.png"],["[尴尬]","https://bd.a.yximgs.com/bs2/emotion/1704767506569third_party_s1296675528.png"],["[出魂儿]","https://ali2.a.yximgs.com/bs2/emotion/1704767441130third_party_s1296675286.png"],["[大鼻孔]","https://ali2.a.yximgs.com/bs2/emotion/1704767388991third_party_s1296674947.png"],["[嘣]","https://ali2.a.yximgs.com/bs2/emotion/1704767331411third_party_s1296674616.png"],["[天啊]","https://ali2.a.yximgs.com/bs2/emotion/1704767271335third_party_s1296674239.png"],["[石化]","https://bd.a.yximgs.com/bs2/emotion/1704767221776third_party_s1296674013.png"],["[皱眉]","https://bd.a.yximgs.com/bs2/emotion/1704767005855third_party_s1296672942.png"],["[装傻]","https://ali2.a.yximgs.com/bs2/emotion/1704766945094third_party_s1296672714.png"],["[酸了]","https://ali2.a.yximgs.com/bs2/emotion/1704761625171third_party_s1296650672.png"],["[柴犬]","https://bd.a.yximgs.com/bs2/emotion/1704761562366third_party_s1296650505.png"],["[狗粮]","https://bd.a.yximgs.com/bs2/emotion/1704762211958third_party_s1296653006.png"],["[期待]","https://ali2.a.yximgs.com/bs2/emotion/1704766537316third_party_s1296670779.png"],["[红包]","https://ali2.a.yximgs.com/bs2/emotion/1704762630876third_party_s1296654958.png"],["[干杯]","https://ali2.a.yximgs.com/bs2/emotion/1704762976549third_party_s1296656073.png"],["[祈祷]","https://ali2.a.yximgs.com/bs2/emotion/1704762918273third_party_s1296655765.png"],["[花谢了]","https://bd.a.yximgs.com/bs2/emotion/1704763094568third_party_s1296656398.png"],["[跪下]","https://ali2.a.yximgs.com/bs2/emotion/1704762867899third_party_s1296655667.png"],["[南]","https://ali2.a.yximgs.com/bs2/emotion/1704762761234third_party_s1296655362.png"],["[发]","https://ali2.a.yximgs.com/bs2/emotion/1704762689267third_party_s1296655142.png"],["[板砖]","https://ali2.a.yximgs.com/bs2/emotion/1704763039720third_party_s1296656165.png"],["[灯笼]","https://bd.a.yximgs.com/bs2/emotion/1704762583000third_party_s1296654733.png"],["[福字]","https://ali2.a.yximgs.com/bs2/emotion/1704762521906third_party_s1296654390.png"],["[鞭炮]","https://ali2.a.yximgs.com/bs2/emotion/1704762474616third_party_s1296654064.png"],["[烟花]","https://ali2.a.yximgs.com/bs2/emotion/1704762425707third_party_s1296653845.png"],["[元宝]","https://ali2.a.yximgs.com/bs2/emotion/1704762370541third_party_s1296653559.png"],["[钱]","https://ali2.a.yximgs.com/bs2/emotion/1704762316380third_party_s1296653319.png"],["[气球]","https://ali2.a.yximgs.com/bs2/emotion/1704762265510third_party_s1296653172.png"],["[庆祝]","https://ali2.a.yximgs.com/bs2/emotion/1704770972968third_party_s1296695686.png"],["[礼花]","https://ali2.a.yximgs.com/bs2/emotion/1704766060554third_party_s1296668711.png"],["[爱你]","https://ali2.a.yximgs.com/bs2/emotion/1704766815314third_party_s1296671857.png"],["[摸头]","https://bd.a.yximgs.com/bs2/emotion/1704766657395third_party_s1296671198.png"],["[雾霾]","https://ali2.a.yximgs.com/bs2/emotion/1704766594591third_party_s1296670988.png"],["[化妆]","https://ali2.a.yximgs.com/bs2/emotion/1704766889905third_party_s1296672534.png"],["[涂指甲]","https://ali2.a.yximgs.com/bs2/emotion/1704761682759third_party_s1296650876.png"],["[欢迎]","https://ali2.a.yximgs.com/bs2/emotion/1704762048343third_party_s1296652504.png"],["[左拳]","https://ali2.a.yximgs.com/bs2/emotion/1704761978093third_party_s1296652142.png"],["[右拳]","https://ali2.a.yximgs.com/bs2/emotion/1704761920283third_party_s1296651882.png"],["[我爱你]","https://ali2.a.yximgs.com/bs2/emotion/1704761864978third_party_s1296651546.png"],["[比心]","https://ali2.a.yximgs.com/bs2/emotion/1704761810228third_party_s1296651375.png"],["[肌肉]","https://ali2.a.yximgs.com/bs2/emotion/1704761751472third_party_s1296651098.png"],["[狮子]","https://ali2.a.yximgs.com/bs2/emotion/1704761502720third_party_s1296650143.png"],["[龙]","https://ali2.a.yximgs.com/bs2/emotion/1704761427407third_party_s1296649954.png"],["[狗]","https://bd.a.yximgs.com/bs2/emotion/1704761371094third_party_s1296649726.png"],["[网红猫]","https://ali2.a.yximgs.com/bs2/emotion/1704761307262third_party_s1296649487.png"],["[猫]","https://ali2.a.yximgs.com/bs2/emotion/1704761245827third_party_s1296649373.png"],["[老鼠]","https://ali2.a.yximgs.com/bs2/emotion/1704761189331third_party_s1296649156.png"],["[不看]","https://ali2.a.yximgs.com/bs2/emotion/1704761136865third_party_s1296649061.png"],["[不听]","https://ali2.a.yximgs.com/bs2/emotion/1704761074831third_party_s1296648807.png"],["[不说]","https://ali2.a.yximgs.com/bs2/emotion/1704761014678third_party_s1296648623.png"],["[猪头]","https://ali2.a.yximgs.com/bs2/emotion/1704760952536third_party_s1296648309.png"],["[猪鼻子]","https://ali2.a.yximgs.com/bs2/emotion/1704760884297third_party_s1296648188.png"],["[猪蹄]","https://ali2.a.yximgs.com/bs2/emotion/1704760771304third_party_s1296648058.png"],["[羊驼]","https://ali2.a.yximgs.com/bs2/emotion/1704760711037third_party_s1296647965.png"],["[麦克风]","https://ali2.a.yximgs.com/bs2/emotion/1704760647218third_party_s1296647852.png"],["[跳舞]","https://ali2.a.yximgs.com/bs2/emotion/1704760582888third_party_s1296647756.png"],["[蛋糕]","https://bd.a.yximgs.com/bs2/emotion/1704760405763third_party_s1296647250.png"],["[口红]","https://ali2.a.yximgs.com/bs2/emotion/1704760472494third_party_s1296647403.png"],["[水枪]","https://ali2.a.yximgs.com/bs2/emotion/1704760254873third_party_s1296646780.png"],["[空投]","https://bd.a.yximgs.com/bs2/emotion/1704760193986third_party_s1296646575.png"],["[手柄]","https://ali2.a.yximgs.com/bs2/emotion/1704760091452third_party_s1296646374.png"],["[坑]","https://ali2.a.yximgs.com/bs2/emotion/1704759985787third_party_s1296646211.png"],["[八倍镜]","https://ali2.a.yximgs.com/bs2/emotion/1704759889785third_party_s1296646065.png"],["[网红]","https://bd.a.yximgs.com/bs2/emotion/1704759766583third_party_s1296645553.png"],["[优秀]","https://ali2.a.yximgs.com/bs2/emotion/1704759660137third_party_s1296645301.png"],["[减1]","https://ali2.a.yximgs.com/bs2/emotion/1704720665766third_party_s1296409266.png"],["[必胜]","https://bd.a.yximgs.com/bs2/emotion/1704759542034third_party_s1296644941.png"],["[戴口罩]","https://ali2.a.yximgs.com/bs2/emotion/1704704107430third_party_s1295984389.png"],["[勤洗手]","https://ali2.a.yximgs.com/bs2/emotion/1704703259238third_party_s1295977084.png"],["[心心]","https://ali2.a.yximgs.com/bs2/emotion/1704772346276third_party_s1296705763.png"],["[哭笑]","https://ali2.a.yximgs.com/bs2/emotion/1704702678707third_party_s1295972366.png"],["[点赞]","https://ali2.a.yximgs.com/bs2/emotion/1704701773745third_party_s1295965382.png"],["[菜刀]","https://ali2.a.yximgs.com/bs2/emotion/1704762819173third_party_s1296655522.png"],["[扎心]","https://ali2.a.yximgs.com/bs2/emotion/1704763391921third_party_s1296657345.png"],["[拍一拍]","https://ali2.a.yximgs.com/bs2/emotion/1704699252327third_party_s1295948859.png"],["[稳]","https://ali2.a.yximgs.com/bs2/emotion/1704780742645third_party_s1296794020.png"],["[收到]","https://ali2.a.yximgs.com/bs2/emotion/1704782800053third_party_s1296805478.png"],["[加1]","https://bd.a.yximgs.com/bs2/emotion/1704782930366third_party_s1296806744.png"],["[叉号]","https://ali2.a.yximgs.com/bs2/emotion/1704782991766third_party_s1296807145.png"],["[对号]","https://ali2.a.yximgs.com/bs2/emotion/1704783055649third_party_s1296807447.png"],["[no]","https://ali2.a.yximgs.com/bs2/emotion/1704783096203third_party_s1296807744.png"],["[yes]","https://ali2.a.yximgs.com/bs2/emotion/1704783149616third_party_s1296808385.png"],["[湿巾]","https://ali2.a.yximgs.com/bs2/emotion/1704783721396third_party_s1296812504.png"],["[吃饭]","https://ali2.a.yximgs.com/bs2/emotion/1704783768169third_party_s1296812801.png"],["[莫吉托]","https://ali2.a.yximgs.com/bs2/emotion/1704783816852third_party_s1296812989.png"],["[香草蛋糕]","https://ali2.a.yximgs.com/bs2/emotion/1704783879438third_party_s1296813277.png"],["[健身]","https://ali2.a.yximgs.com/bs2/emotion/1704783968269third_party_s1296813760.png"],["[思考]","https://ali2.a.yximgs.com/bs2/emotion/1704784017068third_party_s1296813974.png"],["[疯狂工作]","https://bd.a.yximgs.com/bs2/emotion/1704784063813third_party_s1296814234.png"],["[充满干劲]","https://ali2.a.yximgs.com/bs2/emotion/1704785056742third_party_s1296820406.png"],["[放轻松]","https://ali2.a.yximgs.com/bs2/emotion/1704785103740third_party_s1296820865.png"],["[卷]","https://ali2.a.yximgs.com/bs2/emotion/1704786813813third_party_s1296831667.png"],["[熬夜]","https://ali2.a.yximgs.com/bs2/emotion/1704786853592third_party_s1296831948.png"],["[先睡了]","https://ali2.a.yximgs.com/bs2/emotion/1704786910336third_party_s1296832209.png"],["[emo]","https://ali2.a.yximgs.com/bs2/emotion/1704786943774third_party_s1296832458.png"],["[听音乐]","https://bd.a.yximgs.com/bs2/emotion/1704786984951third_party_s1296832685.png"],["[好运来]","https://ali2.a.yximgs.com/bs2/emotion/1704787279186third_party_s1296834761.png"],["[元气满满]","https://ali2.a.yximgs.com/bs2/emotion/1704787606436third_party_s1296836908.png"],["[学习]","https://ali2.a.yximgs.com/bs2/emotion/1704787673918third_party_s1296837372.png"],["[打电话]","https://ali2.a.yximgs.com/bs2/emotion/1704787717756third_party_s1296837621.png"],["[熬夜工作]","https://ali2.a.yximgs.com/bs2/emotion/1704787761789third_party_s1296837795.png"],["[一起嗨皮]","https://ali2.a.yximgs.com/bs2/emotion/1704787815614third_party_s1296838146.png"],["[难受]","https://ali2.a.yximgs.com/bs2/emotion/1704787901952third_party_s1296838607.png"],["[上吊]","https://ali2.a.yximgs.com/bs2/emotion/1704787935223third_party_s1296838745.png"],["[吓]","https://ali2.a.yximgs.com/bs2/emotion/1704787981957third_party_s1296839028.png"],["[发呆]","https://bd.a.yximgs.com/bs2/emotion/1704788025440third_party_s1296839215.png"],["[疲惫]","https://ali2.a.yximgs.com/bs2/emotion/1704788904736third_party_s1296845175.png"],["[裂开]","https://ali2.a.yximgs.com/bs2/emotion/1704788951325third_party_s1296845410.png"],["[强颜欢笑]","https://ali2.a.yximgs.com/bs2/emotion/1704788997306third_party_s1296845817.png"],["[翻白眼]","https://ali2.a.yximgs.com/bs2/emotion/1704789037112third_party_s1296846026.png"],["[难过至极]","https://ali2.a.yximgs.com/bs2/emotion/1704789078980third_party_s1296846236.png"],["[美滋滋]","https://ali2.a.yximgs.com/bs2/emotion/1704789133176third_party_s1296846710.png"],["[马上安排]","https://ali2.a.yximgs.com/bs2/emotion/1704789177867third_party_s1296847087.png"],["[摸鱼]","https://ali2.a.yximgs.com/bs2/emotion/1704789217352third_party_s1296847412.png"],["[敬礼]","https://ali2.a.yximgs.com/bs2/emotion/1704789256009third_party_s1296847689.png"],["[求求了]","https://ali2.a.yximgs.com/bs2/emotion/1704789289580third_party_s1296847957.png"],["[赢麻了]","https://ali2.a.yximgs.com/bs2/emotion/1704789337176third_party_s1296848206.png"],["[遥遥领先]","https://ali2.a.yximgs.com/bs2/emotion/1704789382578third_party_s1296848447.png"],["[辣眼睛]","https://ali2.a.yximgs.com/bs2/emotion/1704789443283third_party_s1296848822.png"],["[ok]","https://ali2.a.yximgs.com/bs2/emotion/1704789999083third_party_s1296852648.png"],["[握手]","https://ali2.a.yximgs.com/bs2/emotion/1704790046552third_party_s1296852850.png"],["[抱拳]","https://bd.a.yximgs.com/bs2/emotion/1704790113221third_party_s1296853443.png"],["[早上好]","https://ali2.a.yximgs.com/bs2/emotion/1704790167344third_party_s1296853922.png"],["[胡思乱想]","https://ali2.a.yximgs.com/bs2/emotion/1704790657229third_party_s1296858542.png"]],r=class r{constructor(t){d(this,"rawType");d(this,"rawContent");d(this,"_cachedValues",{});this.rawType=t.type;try{typeof t.content=="string"?this.rawContent=JSON.parse(t.content):this.rawContent=t.content}catch{this.rawContent=t.content}const i=this,s=Object.getPrototypeOf(this);Object.getOwnPropertyNames(s).forEach(e=>{const n=Object.getOwnPropertyDescriptor(s,e);n&&typeof n.get=="function"&&Object.defineProperty(i,e,{get:function(){return i.getCachedValue(e,()=>{var p;return(p=n.get)==null?void 0:p.call(i)})},enumerable:!0,configurable:!0})})}getCachedValue(t,i){try{return this._cachedValues[t]||(this._cachedValues[t]=i()),this._cachedValues[t]}catch(s){console.error(s);return}}get platform(){const t=/^Webcast[A-Z][a-zA-Z]*Message$/,i=/^(Common|Acfun)(Action|State)Signal[A-Z][a-zA-Z]*/;if("cmd"in this.rawContent&&typeof this.rawContent.cmd=="string")return this.rawContent.cmd.includes("LIVE_OPEN_PLATFORM")?"openblive":"bilibili";if(t.test(this.rawType))return"douyin";if(this.rawType.startsWith("Kuaishou"))return"kuaishou";if(i.test(this.rawType))return"acfun"}get type(){const t={comment:["LIVE_OPEN_PLATFORM_DM","CommonActionSignalComment","WebcastChatMessage","DANMU_MSG","KuaishouCommentFeeds"],gift:["LIVE_OPEN_PLATFORM_SEND_GIFT","CommonActionSignalGift","WebcastGiftMessage","SEND_GIFT","KuaishouGiftFeeds"],follow:["CommonActionSignalUserFollowAuthor"],joinclub:["AcfunActionSignalJoinClub","WebcastFansclubMessage"],like:["LIVE_OPEN_PLATFORM_LIKE","CommonActionSignalLike","WebcastLikeMessage","LIKE_INFO_V3_CLICK","KuaishouLikeFeeds"],guard:["LIVE_OPEN_PLATFORM_GUARD","GUARD_BUY"],superchat:["LIVE_OPEN_PLATFORM_SUPER_CHAT","SUPER_CHAT_MESSAGE"],enter:["CommonActionSignalUserEnterRoom","WebcastMemberMessage"],share:["KuaishouShareFeeds"]};if(!(this.rawType==="WebcastGiftMessage"&&this.rawContent.repeatEnd===1)){for(let i in t)if(t[i].includes(this.rawType))return i;if(this.rawType==="INTERACT_WORD")return[void 0,"enter","follow","share","follow","follow","like"][this.rawContent.data.msg_type];if(this.rawType==="WebcastSocialMessage"){if(this.rawContent.action===1)return"follow";if(this.rawContent.action===3)return"share"}}}get userName(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[2][1];if("data"in this.rawContent){if("user_info"in this.rawContent.data&&"uname"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uname;if("uname"in this.rawContent.data)return this.rawContent.data.uname;if("username"in this.rawContent.data)return this.rawContent.data.username}}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.nickname;if("userInfo"in this.rawContent)return this.rawContent.userInfo.nickname}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.nickName;if(this.platform==="kuaishou"&&"user"in this.rawContent)return this.rawContent.user.userName}get uid(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[2][0];if("data"in this.rawContent){if("user_info"in this.rawContent.data&&"uid"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uid;if("uid"in this.rawContent.data)return this.rawContent.data.uid}}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.userId;if("userInfo"in this.rawContent)return this.rawContent.userInfo.userId}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.id;if(this.platform==="kuaishou"&&"user"in this.rawContent)return this.rawContent.user.principalId}get clubLevel(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[3][0];if("data"in this.rawContent){if("medal_info"in this.rawContent.data&&"medal_level"in this.rawContent.data.medal_info)return this.rawContent.data.medal_info.medal_level;if("fans_medal"in this.rawContent.data&&this.rawContent.data.fans_medal!==null&&"medal_level"in this.rawContent.data.fans_medal)return this.rawContent.data.fans_medal.medal_level;if("fans_medal_level"in this.rawContent.data)return this.rawContent.data.fans_medal_level}}if(this.platform==="acfun"){let t;if("gift"in this.rawContent&&(t=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(t=this.rawContent.userInfo),t&&t.badge.length>0)return JSON.parse(t.badge).medalInfo.level}if(this.platform==="douyin"&&"user"in this.rawContent&&this.rawContent.user.fansClub!==null)return this.rawContent.user.fansClub.data.level}get clubName(){var t,i;if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[3][1];if("data"in this.rawContent){if("medal_info"in this.rawContent.data&&"medal_name"in this.rawContent.data.medal_info)return this.rawContent.data.medal_info.medal_name;if("fans_medal"in this.rawContent.data&&this.rawContent.data.fans_medal!==null&&"medal_name"in this.rawContent.data.fans_medal)return this.rawContent.data.fans_medal.medal_name;if("fans_medal_name"in this.rawContent.data)return this.rawContent.data.fans_medal_name}}if(this.platform==="acfun"){let s;if("gift"in this.rawContent&&(s=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(s=this.rawContent.userInfo),s&&s.badge.length>0)return JSON.parse(s.badge).medalInfo.clubName}if(this.platform==="douyin"&&"user"in this.rawContent)return(i=(t=this.rawContent.user.fansClub)==null?void 0:t.data)==null?void 0:i.clubName}get acfunClubUid(){if(this.platform==="acfun"){let t;if("gift"in this.rawContent&&(t=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(t=this.rawContent.userInfo),t&&t.badge.length>0)return JSON.parse(t.badge).medalInfo.uperId}}get douyinSubscribe(){if(this.platform==="douyin"&&"user"in this.rawContent&&this.rawContent.user.fansClub!==null){const t=this.rawContent.user.fansClub.data.badge.icons;return"6"in t&&t[6].uri.includes("subscribe_year")||"5"in t&&t[5].uri.includes("subscribe_year")?2:"3"in t||"5"in t?1:0}}get avatar(){if((this.platform==="bilibili"||this.platform==="openblive")&&"data"in this.rawContent){if("user_info"in this.rawContent.data){if("face"in this.rawContent.data.user_info)return this.rawContent.data.user_info.face;if("uface"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uface}if("face"in this.rawContent.data)return this.rawContent.data.face;if("uface"in this.rawContent.data)return this.rawContent.data.uface}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.avatar[0].url;if("userInfo"in this.rawContent)return this.rawContent.userInfo.avatar[0].url}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.avatarThumb.urlListList[0];if(this.platform==="kuaishou"&&"user"in this.rawContent&&"headUrl"in this.rawContent.user&&this.rawContent.user.headUrl)return this.rawContent.user.headUrl}get comment(){const t={acfun:()=>this.rawContent.content,bilibili:()=>this.rawContent.info[1],openblive:()=>this.rawContent.data.msg,douyin:()=>this.rawContent.content,kuaishou:()=>this.rawContent.content};return this.type==="comment"&&t[this.platform]?t[this.platform]():this.type==="superchat"?this.superChatComment:void 0}getCommentHTML(t={}){const{stickerStyle:i="",stickerClass:s="",emotStyle:e="",emotClass:n="",acfunCustomStickers:p=[],acfunCustomHtmlBuilder:f}=t,g={acfun:()=>{let o=m(this.rawContent.content);if("emotionUrl"in this.rawContent&&this.rawContent.emotionUrl)return`<img src="${this.rawContent.emotionUrl}" alt="" style="${i}" class="${s}">`;let c;return p.forEach(b=>{o.includes(b.keyWord)&&(c=b.path)}),c!=null?f!=null?f(c,o):`<div style="display:flex;">
|
|
2
|
-
<img src="${
|
|
1
|
+
(function(d,m){typeof exports=="object"&&typeof module<"u"?m(exports):typeof define=="function"&&define.amd?define(["exports"],m):(d=typeof globalThis<"u"?globalThis:d||self,m(d.DimSumChat={}))})(this,function(d){"use strict";var L=Object.defineProperty;var P=(d,m,l)=>m in d?L(d,m,{enumerable:!0,configurable:!0,writable:!0,value:l}):d[m]=l;var h=(d,m,l)=>(P(d,typeof m!="symbol"?m+"":m,l),l);const D=[{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",msg:"版权所有,盗用必究!",guard_level:1,uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",emoji_img_url:"",dm_type:0}}},{type:"LIVE_OPEN_PLATFORM_SEND_GIFT",content:{cmd:"LIVE_OPEN_PLATFORM_SEND_GIFT",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",gift_id:99999,gift_name:"警告",gift_num:10,price:1e6,paid:!0,guard_level:1,gift_icon:"data:image/png;base64,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"}}}],u=class u{constructor(){h(this,"AUTH_HOST","https://dimsum-widget-auth-1301031323.cos.ap-guangzhou.myqcloud.com");h(this,"WHITELIST_WIDGETS",["dimsum-bonk-2024-widget","douyin-bonk-2024-widget"]);h(this,"MAX_RETRY_COUNT",3);h(this,"authenticatedPlatformAndRoomId");h(this,"isPiracy",!1);h(this,"retryCount",0)}static getInstance(){return u.instance||(u.instance=new u),u.instance}updateWidgetId(t){return t==="douyin-bonk-2024-widget"?"dimsum-bonk-2024-widget":t}checkAuthentication(t,i,s){if(t=this.updateWidgetId(t),!this.WHITELIST_WIDGETS.includes(t)||this.authenticatedPlatformAndRoomId===`${i}-${s}`)return;const e=()=>{this.retryCount++,this.retryCount<this.MAX_RETRY_COUNT?setTimeout(()=>{this.checkAuthentication(t,i,s)},1e3):this.isPiracy=!0},n=`${this.AUTH_HOST}/${t}/whitelist/${i}/${s}`;return fetch(n).then(p=>{console.log("checkAuthentication",p.status),p.status===200?(this.authenticatedPlatformAndRoomId=`${i}-${s}`,this.isPiracy=!1):e()}).catch(()=>{console.log("checkAuthentication error"),e()})}passMessage(t){try{if(t.type==="DimSumChatRoomInfo"){const i=t.content.platform??t.content.platfrom,s=t.content.roomId,e=window.location.pathname.split("/")[1];this.checkAuthentication(e,i,s)}if(t.type==="INTERACT_WORD"){const i=typeof t.content=="object"?t.content:JSON.parse(t.content),s="bilibili",e=String(i.data.roomid),n=window.location.pathname.split("/")[1];this.checkAuthentication(n,s,e)}if(t.type==="LIVE_OPEN_PLATFORM_DM"||t.type==="LIVE_OPEN_PLATFORM_SEND_GIFT"){const i=typeof t.content=="object"?t.content:JSON.parse(t.content);if(i.data.room_id===void 0)return t;const s="bilibili",e=String(i.data.room_id),n=window.location.pathname.split("/")[1];this.checkAuthentication(n,s,e)}if(this.isPiracy)return D[Math.floor(Math.random()*D.length)]}catch(i){console.log("DimSumAuth error",i)}return t}};h(u,"instance");let C=u;const w={connected:{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",msg:"连接成功",guard_level:1}}},welcome:{type:"LIVE_OPEN_PLATFORM_DM",content:{cmd:"LIVE_OPEN_PLATFORM_DM",data:{uname:"Miego糕社",uface:"https://i0.hdslb.com/bfs/face/d3055b0614c7bd8479a3e83330ad6762605a4995.jpg",msg:"欢迎使用点心Chat",guard_level:1}}}};function B(){const t=window.location.pathname.split("/");return t.length>1?t[1]:"unknown base name"}function k(x){let t;switch(x.type){case"DimSumChatWidgetInfoRequest":t={type:"DimSumChatWidgetInfoResponse",content:{base:B(),url:window.location.href}}}return t}const y=class y{constructor(){h(this,"webSocket");h(this,"messageListeners");this.webSocket=null,this.messageListeners=[]}static getInstance(){return y.instance||(y.instance=new y),y.instance}connect(t){this.webSocket||(this.webSocket=new WebSocket(t),this.webSocket.onmessage=this.handleMessage.bind(this),this.webSocket.onopen=()=>{console.log("connected"),setTimeout(()=>{this.messageListeners.forEach(i=>i(JSON.stringify(w.connected)))},100)},this.webSocket.onclose=()=>{console.log("close"),setTimeout(()=>{this.webSocket=null,this.connect(t)},3e3)})}handleMessage(t){var n;const i=t.data;this.messageListeners.forEach(p=>p(i));const s=JSON.parse(i),e=k(s);e&&((n=this.webSocket)==null||n.send(JSON.stringify(e)))}addMessageListener(t){this.messageListeners.push(t),setTimeout(()=>{t(JSON.stringify(w.welcome))},100)}removeMessageListener(t){const i=this.messageListeners.indexOf(t);i!==-1&&this.messageListeners.splice(i,1)}};h(y,"instance");let _=y;function F(){const x=new URL(window.location.href),t=x.protocol==="https:"?"wss:":"ws:",i=x.host;return`${t}//${i}/websocket`}function M(x){const t=new URL(window.location.href),i=t.protocol,s=t.host;return`${i}//${s}/bface/${x}`}function E(x,t={}){const{customWsServer:i=F()}=t,s=C.getInstance(),e=_.getInstance();e.connect(i),e.addMessageListener(n=>{const p=JSON.parse(n),r=s.passMessage(p),g=new z(r);x(r,g)})}const T=[["[过年牛]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3bb984085d52480ca846fa8f9a1782f6?x-expires=1949886000&x-signature=d8vUokaGkWD%2B4sAHNTLJquCrHrs%3D"],["[元宝]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5f8ac1b1ddd347c4be34b81b496fcc45?x-expires=2023614000&x-signature=UT%2F8fnFld4xuvjj2bttu6fh76lI%3D"],["[鞭炮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/02f8ee9536de4c6595171584e2322f0f?x-expires=2023614000&x-signature=Aa8eXgZqb0bx0QNeLONQVgNUbLI%3D"],["[汤圆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/41ac48b7a27747199f54e92a7e8e64eb?x-expires=2023614000&x-signature=A3g2qfZZOKRKGTjUNwlkXuytS2M%3D"],["[戴口罩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3ff21d87a76a42bfb054e90a10a110a2?x-expires=1949886000&x-signature=NiqlmnQ%2FHwtWgA0Siqmn2xpaPA8%3D"],["[勤洗手]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fde7f8e2b17c4fcaaeadfd10aec725cc?x-expires=1949886000&x-signature=jWivqLMedGU%2Bh8ryOg10JdPMmXY%3D"],["[不信谣言]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/871e57d31bfd4d3798089c3643f4a7f2?x-expires=1949886000&x-signature=m7xPV%2FMfagbGSLlq7pvOlprjFCU%3D"],["[情书]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4f0872494ff04275972df311adb92408?x-expires=2023614000&x-signature=J0PlzjJlk0A14DygjrRN6y2fA9g%3D"],["[微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1972326082274b4dade2f3f8e9763fb2?x-expires=2023614000&x-signature=eNXsLMd1t1ixAvkpHEUIgSd6A4M%3D"],["[色]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1ab3f900ce3542ceb9d7e6d032cda810?x-expires=2023614000&x-signature=rziPIStvjaAzliUYr6QHc9K1UKU%3D"],["[爱慕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ecb7d64837f34cb8959801b68f6c44f4?x-expires=1949886000&x-signature=d2JDtUOOQBju87Hdl6lwIXpEKCo%3D"],["[发呆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/58c5d33d43cd420c92efb062ef91579d?x-expires=2023614000&x-signature=abb%2F1PruDQ2dYojDdcG53G3mLM0%3D"],["[惊呆]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6eb3a29f0f704782bfc1afde55a8dd16?x-expires=1949886000&x-signature=3l9g0kOUU9nDeGT15DZgRXxXFZk%3D"],["[酷拽]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b39bdeaac7d2465aa508ec12e54b690e?x-expires=2023614000&x-signature=T5gG%2BOXvpx0eUMkw2C1HgPasSUI%3D"],["[抠鼻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d34021cafd3744539dbda1fd546a5288?x-expires=2023614000&x-signature=runM55ARgnLpEQ0KG%2BAWGj%2FgQNI%3D"],["[流泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0a45660685b049cf92d60478e65462c9?x-expires=2023614000&x-signature=WQ640kLAUGb6qrgsiTg4Y0%2BKGfw%3D"],["[捂脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/03f3147990b14955a28902cb1b80d160?x-expires=2023614000&x-signature=UxrkUmLYrqwplRDWXSHcZhejPQk%3D"],["[发怒]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bafa924eee98499891dc1923d41df217?x-expires=2023614000&x-signature=YN1sLR8LWBD4qOedwm7LsbiZDS8%3D"],["[呲牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dd2faecc4756476484e4011fc8bfc121?x-expires=2023614000&x-signature=po2FsJZYXtE%2Bw5gij3V25VFas1M%3D"],["[一起加油]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5bc1690162e049ca91e5c61f81a145e0?x-expires=2023614000&x-signature=%2BcW4hCjBcnzH0bWzgbsUdzDDFwU%3D"],["[睡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d9b3c21670c416d86ebc0a390bc3f6e?x-expires=1949886000&x-signature=BsfPdEtHlpDskQk1qcoMn8hEASM%3D"],["[鼾睡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d9b3c21670c416d86ebc0a390bc3f6e?x-expires=1949886000&x-signature=BsfPdEtHlpDskQk1qcoMn8hEASM%3D"],["[害羞]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/701c5163f3cc4b00853cfc17b7744271?x-expires=2023614000&x-signature=iUOJU5Vc6TFxM3NFStWvUyKIn0k%3D"],["[调皮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/639fe472a36e4d3f9a8873115f8d3b93?x-expires=2023614000&x-signature=xpovRQzvUOMdtRDYpmSy91KOOEw%3D"],["[可爱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b9fa4c827d0a4f448c2274a3ead83f1c?x-expires=1949886000&x-signature=KItCuzaLsILlO8LpDSaymIKlj2Q%3D"],["[晕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/83dce90150694886815ec6108b593e0a?x-expires=2023614000&x-signature=JlQn6Yqmkb661NeKJkD7C%2Fqm6xc%3D"],["[衰]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/73292f2611ce4944ab42326f99e0eaf0?x-expires=2023614000&x-signature=y3HPhFRtjG%2BBiTrgxERo%2FkTQUA4%3D"],["[闭嘴]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/536a67f9859349268ed370f24fb26832?x-expires=2023614000&x-signature=ZmkVHFGRkXAAywbmOwMllpsphdM%3D"],["[机智]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adeac54b7df342b18d1f63b79c582156?x-expires=2023614000&x-signature=GLBN2qULL%2B462V%2B2vi3vO%2BOSxh0%3D"],["[赞]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8451bbb7099a4c1dbde1e624bc364669?x-expires=2023614000&x-signature=HwjSYzWzRtqFxYYZi4uNdipqDzI%3D"],["[鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bc40035483dc499089cd0a1f6dc7ffe0?x-expires=2023614000&x-signature=W87twhP%2BdP3ZvdKnYXNSnHuxOrE%3D"],["[感谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b6e246c3a814489cb3c34626268ceac6?x-expires=2023614000&x-signature=5huorDnluddLPxoeMSyMrzgy5Sg%3D"],["[祈祷]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1be641522d6f486cb437eb09a1e97e85?x-expires=1949886000&x-signature=SLy%2FE54bpadjG3mP3WhYAoSTni0%3D"],["[来看我]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f865620dbc78401b905b33b2799b4208?x-expires=2023614000&x-signature=DIbt%2Fbt4MPPqlVThTOeeMrGSFoQ%3D"],["[灵机一动]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0ce4f43aed964fc7a5461d4c5bd41dc6?x-expires=2023614000&x-signature=FTrOSAhwN7vv%2BQKJAFR3RNsz2qw%3D"],["[灵光一闪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/078ae083ecf9419798622ef1b940935e?x-expires=1949886000&x-signature=Lg6cd3v8i5Ws93Hov7gMCYBRGJM%3D"],["[耶]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c49903dd8c31417a8532b0c7ee0050d6?x-expires=2023614000&x-signature=HVtWrmNW0JZwgmJ2AFmF7m1IqfU%3D"],["[打脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/97135287205f49f5b60e51a631dd741b?x-expires=2023614000&x-signature=vbTjeUnEULjl638nrVYe%2BSvnY6A%3D"],["[大笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5d2750dc3a3244609cd1794fb9d85dbf?x-expires=2023614000&x-signature=FtCBzRKwMyn4plOhyp91bep0qvw%3D"],["[哈欠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/980e7a5eb8a94642a592aa0ee48456d0?x-expires=2023614000&x-signature=UVDpFrtSrvTNcZbBvj30pnqd5qg%3D"],["[震惊]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5ad931c7dca449ba9d9ba836591f2481?x-expires=2023614000&x-signature=PEsTEBQhjqozDnAAidHcq8cdUZ4%3D"],["[送心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dc5e9f3be1b34bf08afa83009f5ce1bb?x-expires=2023614000&x-signature=xC52%2BMs8%2FVFXjhKUXWQ0uOU570s%3D"],["[困]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6a0abf13ec5042108b9bcf5d60c347cc?x-expires=2023614000&x-signature=qwKGHdd%2FCkriqhK1%2FcvjiQQOfhw%3D"],["[疑问]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/768f58a869cb4e7b905aff5f1cef9035?x-expires=2023614000&x-signature=TJdArvswfWvFPCbkSVJpoN4YKDY%3D"],["[what]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0ad29594535d4513a779488313ad8564?x-expires=1949886000&x-signature=%2BKoyzBd5kucyq7pImqNlytdTB88%3D"],["[泣不成声]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c150dd78ddb84d3eb437c6eeea07209b?x-expires=2023614000&x-signature=AJnlGz0a6OHG88gxLNUdQIVcbp8%3D"],["[小鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fe24ff0faddf4fb29e9a826497e17b90?x-expires=2023614000&x-signature=9tBTDMmGmf2LKYFCSNE4E%2FH1jpI%3D"],["[大金牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/38f7954e677e4dfc89f8cd273b2d14d1?x-expires=2023614000&x-signature=u9578lCRSLhocyTbEEqN%2BJPkCvQ%3D"],["[偷笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df2909979ff24ce4a63e92011a5e987c?x-expires=2023614000&x-signature=%2BqKk0IVBXdz2ucLYV9iMKnPzyLg%3D"],["[石化]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8a16851874fb4f789eb1e3c77b74bf1d?x-expires=2023614000&x-signature=qn8Ht9hw2wRvG8FK%2FCfc4UW3Xoc%3D"],["[思考]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c051ef63150343d4a8de3c06ac800e05?x-expires=2023614000&x-signature=X8TvUi6loFSdmaGcZtsQ1UmSQV4%3D"],["[吐血]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec5e68bf82dc44bead4c47d2dca2f741?x-expires=2023614000&x-signature=3bQQG2WJB%2FQ2SMffmINo76No3Is%3D"],["[可怜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b27562e43df74d94afc6e9aeceb02d0f?x-expires=2023614000&x-signature=2cdatNo4XFq5v8gXAM2mV2OJke0%3D"],["[嘘]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b00abe8162ca4194a80df85dd5ffb32b?x-expires=2023614000&x-signature=m7BScMJSMXg0WKJ6lPUPVx7a0oc%3D"],["[撇嘴]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d91ff743cf864740ba038711c2c2e7ff?x-expires=2023614000&x-signature=wtS8%2FHP1z24gk2Roh4WZlY9X6zc%3D"],["[尴尬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/271b6d252671495b9e0c6b753c3d6d74?x-expires=1949886000&x-signature=ycneobP5YUkMVgFqeT%2BDkFTXxjo%3D"],["[黑线]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/271b6d252671495b9e0c6b753c3d6d74?x-expires=1949886000&x-signature=ycneobP5YUkMVgFqeT%2BDkFTXxjo%3D"],["[笑哭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fb9ded0468104415be654f97a0bcb91b?x-expires=2023614000&x-signature=%2BAjqpjgBlEd78liXtoeNwmJfYM0%3D"],["[生病]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adaa6f335ff6480685dfc76754572014?x-expires=1949886000&x-signature=7i55rYyuMt5jnZuNOfPYtECxTDc%3D"],["[雾霾]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adaa6f335ff6480685dfc76754572014?x-expires=1949886000&x-signature=7i55rYyuMt5jnZuNOfPYtECxTDc%3D"],["[奸笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/65e5b8f17b3a4bee91733df0fa61081e?x-expires=2023614000&x-signature=2QA0bka3dLMFH%2FRfAI5LnQqi4gg%3D"],["[得意]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f1b940072c6746198b0866691e91ac29?x-expires=2023614000&x-signature=mp5el9PE1d3SY1u90lfhCz4qFIQ%3D"],["[憨笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92b1551788aa4fdba9abe0ff0146e007?x-expires=2023614000&x-signature=UAUOcCbATSG5Fl5Hl76adagjxdQ%3D"],["[坏笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cc9e395c367c4e8181489fdc46a2c1b4?x-expires=2023614000&x-signature=QfsFrP8CkLWtP6bU3%2Fub0bCPyz8%3D"],["[抓狂]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5a10a55042d448119204da73eeaeaac6?x-expires=2023614000&x-signature=L6%2Fvadj9gDHkQW6jZ36WMIDQJNQ%3D"],["[泪奔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b4311ade08724146813ee5fbfadc0463?x-expires=2023614000&x-signature=lYsy3Y9diD2JOo%2BqYXRldfB8QcU%3D"],["[钱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1c0d7f79a5ab4165a4e0f1a5bb268dc3?x-expires=2023614000&x-signature=6mOWR8SSaqTD7pdKknrb6VhxMV8%3D"],["[亲亲]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d1802aa908b4e94bde21703944bd932?x-expires=1949886000&x-signature=7aXRCvNNfMeTbUP%2F3%2BVkXavbH%2BA%3D"],["[吻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d1802aa908b4e94bde21703944bd932?x-expires=1949886000&x-signature=7aXRCvNNfMeTbUP%2F3%2BVkXavbH%2BA%3D"],["[恐惧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/44805befaa0e41a7a5c2eb55d3dfa246?x-expires=2023614000&x-signature=mn22dWHjA%2FLCBsYF2j9w8vdouRo%3D"],["[愉快]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a3d4676f88994158a300f9efbdfeac6a?x-expires=2023614000&x-signature=HCYMiCJcey22R%2BiAIp0OgP5KqaM%3D"],["[笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e95a4f4e48334867b099906e03e0d066?x-expires=1949886000&x-signature=GB%2B4kuurtOF4tEH2HsmURmudWHg%3D"],["[快哭了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dd42df4077854e1eb34c2621b44563e1?x-expires=2023614000&x-signature=42vv1bjEIjrKo7EmaPn2X%2Fub3sg%3D"],["[翻白眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/05b74b2b0e0141e995bb132e393e2f13?x-expires=2023614000&x-signature=%2FHFW8KTrkY1C6lZpMcKzztUfHHs%3D"],["[傲慢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/efc7316963ea48bba5884177f871b751?x-expires=1949886000&x-signature=RTYzEzvwmszv3C%2Bj6ZtDAoR4CmM%3D"],["[互粉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6283d505694b4c10b1a278d44a3ac7b1?x-expires=2023614000&x-signature=QEto4Rr7g%2BlnZE0YXhESfTkbF2A%3D"],["[我想静静]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8f277ea9e3504250ad0238510cb134f9?x-expires=2023614000&x-signature=o0jtwSSqvdQx9oFy4ymGKRGaFOk%3D"],["[委屈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2d517b569412487aaaf55fccd9b7dfcf?x-expires=2023614000&x-signature=6SYFb7AgQBV9kVqy2JCHhEPnU4s%3D"],["[舔屏]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f9cd7efe3ab84700a80def92b649615f?x-expires=2023614000&x-signature=IMI7zlgnXzDkO%2Bz%2FPrDOR0lYD38%3D"],["[鄙视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/14415ddc88074dbca9b68bb16c1906ca?x-expires=2023614000&x-signature=vIIBPn6kAedu7sLNHfNKyy4fqUA%3D"],["[飞吻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/35fd0e6e23b34c069c24560e3884bc4f?x-expires=2023614000&x-signature=8lQ9KR%2BtuMfign4eyFFx%2F3dUmRQ%3D"],["[再见]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/70f25ab16d9742378f89f1745df5e5e6?x-expires=2023614000&x-signature=qMA796tZ5E91K5aMPCVYJg9zjW8%3D"],["[紫薇别走]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e71c31c00eb04a0187d474ff1cd92178?x-expires=2023614000&x-signature=yGoI88ZznbOESG9IYq27Ey%2F%2B0AI%3D"],["[听歌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fb1d47dd1b4e49bab3f51288644cb71d?x-expires=2023614000&x-signature=lkbV8Lynll9%2BQ4GIX5h%2BC%2BkyFGs%3D"],["[拥抱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cd93218dd1654cd38afc70f8a9d91c76?x-expires=1949886000&x-signature=7FKT7aMh3d7dEkF1eWwfssTTVMw%3D"],["[求抱抱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e095144f3ed244638fc1afb695693231?x-expires=2023614000&x-signature=Q%2FIebwgzw1Wy9SrPWNB0kuCxWA4%3D"],["[绝望的凝视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec01edfc1c564636981cbfbf659f15e7?x-expires=2023614000&x-signature=aiXyHTVqi0KvHHRBupFbZGQP%2FHE%3D"],["[不失礼貌的微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/969553fb63764433ba9619043908f6b6?x-expires=2023614000&x-signature=4WhaEgGERuIyCmccSIzWoKOhees%3D"],["[吐舌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a3a20d3c5c9b4b3c8f4a32dae2ef49af?x-expires=2023614000&x-signature=7Xlx7NLefL3vP8eGbr0nsgaU%2B80%3D"],["[呆无辜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/58d8184dbc38479bbe963f8f0029b4f6?x-expires=2023614000&x-signature=3ihT05FDtvJxb%2F4dgMO0gwbeGIw%3D"],["[看]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e3a3205efba94c0a8a30640333e7ca8a?x-expires=2023614000&x-signature=nBKj0TMlOIcb4%2FooapG%2BP0SRK%2F0%3D"],["[白眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/08ac3eb9f3c7470c8222e1f65f539f64?x-expires=2023614000&x-signature=iE9LqelIiZZi8IiERIMTf1GLgb8%3D"],["[熊吉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b50c0b507d4842e18f3c29c5216ab56a?x-expires=2023614000&x-signature=UiW%2BTORsvEM1VSHrRGV6s2FJArc%3D"],["[猪头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1dc9428ab41c47d4979e58359b27eb86?x-expires=2023614000&x-signature=YMxV3Hg3J6FC9P2WuviKCfczCZ0%3D"],["[不看]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/51a2d685c2f349e9ab5adaf8449852f3?x-expires=2023614000&x-signature=nyVAPQKF88Cgui4mAiFjigJe8vQ%3D"],["[冷漠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f635c1934c88434cbbaa41bd35971bc4?x-expires=2023614000&x-signature=v%2BIXJ%2FoW43R0uxyuFpGat9hyLTI%3D"],["[微笑袋鼠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d8a901b00a044a13a09bde1f190ef853?x-expires=2023614000&x-signature=w69s074u1nTvhknTIK4qwlG%2BaZw%3D"],["[凝视]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/11e76cce4bed4537887b3b2cab423242?x-expires=2023614000&x-signature=Rj1%2FTkeQrEjDxeGEjBk0%2FZCOPg8%3D"],["[暗中观察]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1e56fc8088b84d119d8b218d4005a31d?x-expires=2023614000&x-signature=eAskhRsbzyZ3G67%2FljmTWFQTF9o%3D"],["[骷髅]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7bf96aeb700b4f45ac7f66eeda0adc08?x-expires=1949886000&x-signature=GaLeuZxgi7%2BdC7wzJlnIo5CzBpA%3D"],["[黑脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1c14aa8bfb1a471f88959d80e8a236c0?x-expires=2023614000&x-signature=T0Sc9y4o0EPORp32ctoRlBChTCs%3D"],["[吃瓜群众]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ca4e821f45d44d8d853c608a9bd607da?x-expires=2023614000&x-signature=G49Zvge%2BzYbzJI7pI%2FTrahPD4iE%3D"],["[绿帽子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ce10a6b2584c478bb89c8b7eb4cf3c82?x-expires=2023614000&x-signature=eljMgbfGD1r05DXH%2FFfgdJ0ijEk%3D"],["[流汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/48f4840755b543da91fb0c2dd4e6a46e?x-expires=1949886000&x-signature=hbJzeF2MZM9iRk2eGxi09iNjAgA%3D"],["[汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/48f4840755b543da91fb0c2dd4e6a46e?x-expires=1949886000&x-signature=hbJzeF2MZM9iRk2eGxi09iNjAgA%3D"],["[摸头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7f37190fa48e484fa0689f4c6a2e6b53?x-expires=2023614000&x-signature=5aXfAemU1SCiNbWZchLWct5a3og%3D"],["[皱眉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/27fbe79e299f4109ac7a366b1a02dd05?x-expires=2023614000&x-signature=EukXue%2F5OI8qHcXFThFoIIBo4q0%3D"],["[擦汗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4ecd00e5f9a7454b856dee77e1e26cd9?x-expires=2023614000&x-signature=pRrj1d43dKS5pImegarBGUnFo4E%3D"],["[红脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92f13b1d35a94a4e91153ce6ed4318bf?x-expires=2023614000&x-signature=IBy%2BBX%2F1xnlgSWHSCcxQGKNRyd0%3D"],["[尬笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/455d711edbee4930b0ee5137408d019c?x-expires=2023614000&x-signature=yenWxnJI8sIw0Fn1n3%2BmPViuuZM%3D"],["[做鬼脸]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d574175036114525bd0537635aa3793c?x-expires=2023614000&x-signature=pMyLz0YJ4ZP6h4Fvs0szKyAAuCU%3D"],["[强]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/51876b0543304a5286dd1ff02e6506be?x-expires=2023614000&x-signature=HwVQc4SmmblCGB2INvN7pkw1KiU%3D"],["[如花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1a80a192990b48e18c59d9eedcfd5757?x-expires=2023614000&x-signature=oaEysWENGxdy%2B95Bxm6MfB0gltg%3D"],["[吐]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0b565689372840a1ab2de8a5e1692527?x-expires=2023614000&x-signature=SAuBGMbcH7nufHsDXDyPAskOvm0%3D"],["[惊喜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/583d33092fd7456f849933f12e300ece?x-expires=2023614000&x-signature=U8TMrDI7FZY%2B%2BIgqXnV6KP%2Bd3a0%3D"],["[敲打]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ddb66c9b56af49c3a2843f65a4caed7a?x-expires=2023614000&x-signature=qAQsRxYqo15Nhq%2BWCN445Fqxp%2BM%3D"],["[奋斗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3d7d8b9f01a34d138feead1a3860a04f?x-expires=2023614000&x-signature=JMv%2BUBc%2BVNmJAkkt15dkepzixFI%3D"],["[吐彩虹]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df6fb9f5f6f04a73afb49c5d78bef06b?x-expires=2023614000&x-signature=w8k9wqyUhBlWOt9%2BDTNq8Z4YpoU%3D"],["[大哭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b2c8ee0975264dedb7d1be43ec090d31?x-expires=2023614000&x-signature=uixNFJ%2FFgcVEVQ%2BiPEozjwScZUY%3D"],["[嘿哈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/82aac9bd5bef42bcb8db64100033de2b?x-expires=2023614000&x-signature=AFdCVQ0V21xZdIRMzbpRTEm%2FaPo%3D"],["[加好友]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c9953ef876c949b7b961df5086d05f86?x-expires=2023614000&x-signature=Vj72TXLGIKzm9C4baUPDxRV7u%2BI%3D"],["[惊恐]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2ea24af231e244c7be98ef96507f7081?x-expires=2023614000&x-signature=kBgSl4oM2HGeKuZVxrjPnUARu4Y%3D"],["[惊讶]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ab23dfb38aca4a7eae8aa65ba23352c3?x-expires=2023614000&x-signature=neCA8mdoyy76YBtgZ08koRdztEk%3D"],["[囧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a00e57ea57534718a8ca306e2a9cf5db?x-expires=2023614000&x-signature=%2B8WfJrEIvbNGqTYL%2BNdY7D7VLVY%3D"],["[难过]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/984dcf2da90b4f78b17047f976d5e28d?x-expires=2023614000&x-signature=ZqLvm8Ds%2FsY1aMKdbfn8b3uk8oU%3D"],["[斜眼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/eb037efed83e47ecb81bea527830c561?x-expires=2023614000&x-signature=BcKkF%2F4d8iyIU6AUEIQdwc2cuQs%3D"],["[阴险]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f590ea1031ba451c97e4a28df78c438b?x-expires=2023614000&x-signature=wmK%2B3SDf7ehLRNnn76eaV5Ltors%3D"],["[左哼哼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fdc9d3bf655042f185d352dad70c80af?x-expires=1949886000&x-signature=2H8ZkGayyjwzVctXbwV7sQ4%2B%2BaQ%3D"],["[右哼哼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/99ee7e92370e4c79b074af1b22476aec?x-expires=1949886000&x-signature=9S7dzm8EUVvNPIhdgJpng%2B%2BPPtI%3D"],["[悠闲]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1d062954fd7a4fdeb4dd73ca6bd5142d?x-expires=2023614000&x-signature=d6CSO0LCDFVVH9fwGMTLnXobaa0%3D"],["[咒骂]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e5447595d746460d93b2a2dd1708dc49?x-expires=2023614000&x-signature=sypv07NPg2DGIHVlHj9WjAWQ%2FQM%3D"],["[比心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/adc5116e9de74cf99d1a578b33d7d302?x-expires=2023614000&x-signature=IYdktc3HcWcRNBnMJDIjhn%2BfCC8%3D"],["[强壮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/9937cb04d8be40ecbdf54ed45d746ce7?x-expires=2023614000&x-signature=LYrp9Sh7kp8EVjkgq8FBGc%2FvJrg%3D"],["[加油]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b3ab7751b34e41d185ab5ac8a22821bf?x-expires=1949886000&x-signature=8MRaKCqfi7NoLFw4paWUNk7akKQ%3D"],["[碰拳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/888715d3f43641be885685229d086ec9?x-expires=2023614000&x-signature=1bIeZ92a69WN9yjmd3gtEiGobvA%3D"],["[OK]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e24366eccea24549bb2072e0df463cc7?x-expires=2023614000&x-signature=%2F08gNzuWnkcbSoYpzTwZ5adMp4g%3D"],["[ok]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5aaea4f6b86e43b7b8ecc7f8fa9859df?x-expires=1949886000&x-signature=OQfhJ7DSSzskO37piqTQMPV7618%3D"],["[击掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/9c93658259b94c6f934406752789376c?x-expires=2023614000&x-signature=PsgkL%2Bev6VizYW8vlPdSwWuLrdA%3D"],["[左上]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/84e87569232545338fcaae2dfba56e18?x-expires=2023614000&x-signature=0MpJUc9qQdzgjyuHUuS3DrtcuJQ%3D"],["[握手]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ba5cdabaccb342f98c661b0142c65ffc?x-expires=2023614000&x-signature=%2BKW%2BmDWhn%2Bq6pqFSCoserJh%2FUAU%3D"],["[抱拳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/89b3920503004984b10cabd2d372a3b9?x-expires=2023614000&x-signature=PbwAKJNqxGLbFQXHecsbHWyDHpI%3D"],["[勾引]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/cd2c005a10dc4692a9c305ae824486c5?x-expires=2023614000&x-signature=QYPIJNOVaFhYVjRWP5Zs0j69Gj8%3D"],["[拳头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/1294101394cb49009dfac8730740c2f8?x-expires=2023614000&x-signature=vWLwCFbJYOKl0bIDOMqtdUfqY5A%3D"],["[弱]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b718e36cbe12426f80a846e87a2c8617?x-expires=2023614000&x-signature=47DoM4KjzZ6tooYBZVD%2Fzi5R9BQ%3D"],["[胜利]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ae9976b0d27d4f7f95eaa5017fbf2282?x-expires=2023614000&x-signature=hmE8ec8CCbKhiEzuVHJ%2BfqDCTX0%3D"],["[右边]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3b658993b51f433f999bf0bdf42e4c68?x-expires=2023614000&x-signature=82hOZ5SBRhc9rCYcpYUrZ0NNYHM%3D"],["[左边]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5c674af7379444d695a88c740dbd58a8?x-expires=2023614000&x-signature=eNPAF6RWe6FCyaFw2r1b3Hzt4A4%3D"],["[嘴唇]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b083870e6af040b088882a67a57f256e?x-expires=2023614000&x-signature=2ZyJ3DRykRx3m77IiPWw8T0VmTI%3D"],["[kiss]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a4d9971c511748ff9920dafc2ba64da9?x-expires=1949886000&x-signature=SBNTQ7SgyQfm%2BN3xg5VCpr1NigY%3D"],["[去污粉]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2a21cca85ed84db4b0a1826ff897c2a3?x-expires=2023614000&x-signature=mj7W%2BtzpAQSgeHqf080P2gl%2FLZA%3D"],["[666]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/505780ba25284f97bf0251ddc89dbdbd?x-expires=2023614000&x-signature=EHCURY2xk9f5kji5vUmKtCx29Uw%3D"],["[玫瑰]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8ec4606cfd4f4778ad03c8c6e6c82265?x-expires=2023614000&x-signature=BHEmTRNwiqY7qZsUkBO7TQmWbso%3D"],["[胡瓜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/12db3f1b1e564578a3af1e9880c077d1?x-expires=2023614000&x-signature=zFv1GaNZ9xZuSQCPShwmP1GZ1b8%3D"],["[啤酒]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7e81dc405625453a9b550f28c76c3021?x-expires=2023614000&x-signature=gIHYf1%2B0uQjyLQHS421BeP5iX4o%3D"],["[18禁]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bb5fb02ce7c94a8582f231816e66a4fb?x-expires=2023614000&x-signature=bz61mHnEIj7lsFeuF1uWjfvY0Wc%3D"],["[我太难了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ede137e322dc4ccd967606c0e7688fd2?x-expires=2023614000&x-signature=CkIuHk60qNe4cNTZ4N0yZaev1zo%3D"],["[菜刀]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/46c690f4d09a496f9de8e7a2677a27fb?x-expires=1949886000&x-signature=ZvnGuyA1vxCHsYytcTZO6LxE8TQ%3D"],["[刀]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/46c690f4d09a496f9de8e7a2677a27fb?x-expires=1949886000&x-signature=ZvnGuyA1vxCHsYytcTZO6LxE8TQ%3D"],["[V5]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b1d4123eb73a42bb8aaa7e1b0454f1b8?x-expires=2023614000&x-signature=LRx2QE8vsX0%2FyWveBxWeWVQfKwc%3D"],["[给力]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2de75742e1dc4d618bb8d8056eb16a6a?x-expires=2023614000&x-signature=cMlE2V%2FUeo7En5tZdRgn9GrzXy0%3D"],["[爱心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0e8e3438de4943c79db4caa5b64c4208?x-expires=2023614000&x-signature=L%2BZKGU7gdE0HKwm1rpZtc7xwol0%3D"],["[心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f92622805ce748cab050f59892013d08?x-expires=1949886000&x-signature=jP%2BKOOBFsigtheKEpFlAwKc7HEk%3D"],["[心碎]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/313735c1648847fcbde5443ff9749328?x-expires=2023614000&x-signature=3%2BTrb%2B1mHqPxqTYP3dv2%2FotEIDk%3D"],["[伤心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/065fe191252243a6b9c6f9d1ed9c0705?x-expires=1949886000&x-signature=n73eSB3oJNgdN09yEuJXqG%2BmFXw%3D"],["[便便]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7d8abaef1de244c2b8ed04dc7a38ea07?x-expires=1949886000&x-signature=mjffI12RBCO6lWh2V5Bt11o%2B%2F0E%3D"],["[屎]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/166b7cfacb284fae9d10fb5bb40caf73?x-expires=2023614000&x-signature=Pk9n2EVBRedNoRBw6aXLFNB8yxU%3D"],["[加鸡腿]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/95996779237b42549cadaf82d0d7913c?x-expires=2023614000&x-signature=ynrKYuaJP1Mu4csumycLRscxnQ8%3D"],["[蛋糕]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d39ce52f9f02466db04a5b7800f73046?x-expires=2023614000&x-signature=TrEg2Buv%2BB1XvJN8qtRJXG5WJfw%3D"],["[气球]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2f69fd57679d4ceda1e9c6bc715ff6da?x-expires=2023614000&x-signature=hrv5Y28c6VSebnlaTeW29kZ9rHQ%3D"],["[炸弹]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4c6f47980de742a6b790d617a283a6a0?x-expires=2023614000&x-signature=75CVxTTQ1E%2FSbKuR34uSEyUURrc%3D"],["[发]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7807930dc47040f0b0273eea12a8b177?x-expires=2023614000&x-signature=xnx%2FlvtvJAbJBWUdjn1lwo1t0y4%3D"],["[派对]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c18699407752477bbbc61e316274f280?x-expires=1949886000&x-signature=ysPm45kcokslgfPcifPD%2B%2FeTu%2BI%3D"],["[撒花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6ff8a80bc0ff496aa85182d198c54012?x-expires=2023614000&x-signature=yiGWrq7sebudNPMceXTFGis5cIQ%3D"],["[礼物]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/38635588204c4eb7a12e94d0ac5112be?x-expires=2023614000&x-signature=aGtDgtDK2CQKFimJx5pZ0ZBQ6Eo%3D"],["[红包]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8cb649567b0646b3b3c919c8710627a2?x-expires=2023614000&x-signature=DGQuQUf01xB7HI0FVJqcY7cswRE%3D"],["[咖啡]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c84f8f3c54c04b50892822c8ab315990?x-expires=2023614000&x-signature=Pz9jip4ks%2BT%2F7Jo46IcJBMwy40k%3D"],["[凋谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/79f72bb689f649df8ac93e1086290a30?x-expires=2023614000&x-signature=8txRiQScmFJ4KPxWhATmYT5azI0%3D"],["[西瓜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3895c1af5f4b469eaf0b33373a26a233?x-expires=2023614000&x-signature=mVI9hlWEXyT8B%2FbXoT22UxDP4YM%3D"],["[太阳]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b0b16a243dca467fb6cf197716499e6b?x-expires=2023614000&x-signature=L3LSXKMqEq%2BwZq%2Ftxx%2BuKbPVlqo%3D"],["[月亮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/133763c26f254df695216f6d6a086f97?x-expires=2023614000&x-signature=JZG4Y%2BBUgsPfkldGm2QhtmpX%2FVs%3D"],["[锦鲤]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0fccedd7d90d428891d6e2c86a4119bb?x-expires=2023614000&x-signature=zRKYxhK9EFevvKhModAWZJ8v28k%3D"],["[过年鼠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/37413a95c85d4ae785001b8d14906547?x-expires=1949886000&x-signature=qb3Q82cDFHEEWHAvnjnFLKtyCzU%3D"],["[圣诞树]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f100454a3a5846a6bfe363abbdefcb12?x-expires=2023614000&x-signature=X0f08e63ujAfYqHZrsbG17NK2q8%3D"],["[圣诞帽]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/872cd36a5e8f4720ba86bf2e358d3ecd?x-expires=2023614000&x-signature=evUDS163eDBEcGAJqcc3Gu4gHy0%3D"],["[雪花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c7ff946dada547f8a690570095d9af2f?x-expires=2023614000&x-signature=cJ1Gj4TJZNi80SeuCUFNX59HaAQ%3D"],["[平安果]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2f36db7f1be14eb0898be4590d6fe5d8?x-expires=2023614000&x-signature=3ou2tti5v4aVjgR8laGD6r029qE%3D"],["[握爪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/534f3205cf404d8eaa547e8d70abe10d?x-expires=2023614000&x-signature=Znjz%2FZyB1u6fVtUlgrQvzu415dE%3D"],["[我酸了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/646c771af9f745daaf0fdf2c93af9da9?x-expires=2023614000&x-signature=ZjDKfdRFgj0NtlFhQMTOA5fyoIs%3D"],["[小黄鸭]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0083c5211f4f47b8ad3f065be0d0dd0f?x-expires=2023614000&x-signature=XKE8amq5g6VRO%2By29EicjSqVFcA%3D"],["[棒棒糖]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b4bc03a48d714102988d629966153697?x-expires=2023614000&x-signature=hM9roYw2aTTMBCkxfll78NkCG9k%3D"],["[纸飞机]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/328371f15f4448138b3d4ef8a8d9a8af?x-expires=2023614000&x-signature=YVTDUxy3IVxyBAEGAOcFsOTPdk4%3D"],["[必胜]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/660724d3b82a4dc2870e4d9980f9fc48?x-expires=2023614000&x-signature=17x88Kw5bET770brSXzg3mEq1CA%3D"],["[粽子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d69e7ce989d04594b3adfe4e7b9266a3?x-expires=2023614000&x-signature=vqOH06BWaHMOC67CQe9jqiA4Iew%3D"],["[蕉绿]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/563140ae857f49188a23176f7781b530?x-expires=2023614000&x-signature=qFNfnqouPNqBp130EkPCGm1znW8%3D"],["[绝]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7e3eaafd7bb94521909a3b638690914e?x-expires=2023614000&x-signature=17mFoLgXwBI1g%2Ft4oki10c%2F3e9w%3D"],["[给跪了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4b64dc730f4045c6aa5967fa6169cdab?x-expires=2023614000&x-signature=7NIIos8cpOxl91nDqYZtwj74lOI%3D"],["[扎心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f4d3973212204ac1aab83acbe4cab1ee?x-expires=2023614000&x-signature=3S7kOaT7Qkapa1GLOkyhhdmzZhY%3D"],["[干杯]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0065f8fb0d6c4f82bb7cefcc49245660?x-expires=2023614000&x-signature=%2FabGbP4z8W9qwNr069tr5PWr7ww%3D"],["[烟花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2fa9247aad5e4bffb2a4811b6b94aca4?x-expires=2023614000&x-signature=tleDzfUTQLUZsNtwnTQLMGh2D04%3D"],["[小红花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/dc0e065b1b564552be3ec9001f13cc8f?x-expires=1949886000&x-signature=LeOgZ99u0KIHrSkyss9LMv07NEs%3D"],["[饺子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0bc2ea35e655469bb3e86f6053ea0112?x-expires=2023614000&x-signature=IlZOsKy%2FrknTsDWUPN6%2FO6QcDnU%3D"],["[福]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a329cbc22ce946f4aa001da51e6f4312?x-expires=2023614000&x-signature=cCd36BADuv33KyTLdTXNvaHVAm4%3D"],["[灯笼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92467d8e9d1a4dfda6bb7c5c3493769e?x-expires=2023614000&x-signature=itagUD7YZJCAcwqnSM1nIX8TZ5U%3D"],["[巧克力]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ed77974545254216a06340a702bafa52?x-expires=2023614000&x-signature=BrX0N0Urp5hx7GjqGxTOhAVn%2B4o%3D"],["[戒指]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e3de7e70e1b24c7bb4b912f9ff4b2bad?x-expires=2023614000&x-signature=lgAT8KgubsyutN%2BGHsftoZoQBeM%3D"],["[罗三炮]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ef2ab85fe47348d7a348b05ebb3794cb?x-expires=1949886000&x-signature=Xo0E1f7KTmazDCd0fE7CcibGAVA%3D"],["[抱抱你]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5ee86f77cb8d447fa6f84e83747b6043?x-expires=2023614000&x-signature=1E2J1AC%2FNHVXpRy4ORVgpYuYYXE%3D"],["[裂开]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8f77df684ae54e2787d5f8b6da8a91c9?x-expires=2023614000&x-signature=foOR6XEDlqTSjuoowGdgTwFeXno%3D"],["[干饭人]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0674983aa4254fbfa936ad857d11d9e8?x-expires=2023614000&x-signature=qsZ5YdTt%2FXykCnsxTjPLXlXEkx8%3D"],["[二哈]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/bde1bddfe53d4d35b119103bdb6155be?x-expires=2023614000&x-signature=dSnhK4CRHwby0q0EBXA%2FEh0dB54%3D"],["[菜狗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/92ef276920da4fbca76c9dcbd96ecf98?x-expires=2023614000&x-signature=6QI4IxVqQQMgXp2%2FVmAi8GSar4M%3D"],["[展开说说]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/59103f22480446239f9534700307416a?x-expires=2023614000&x-signature=JF10RNStrmNjLRwRYmAt4iS5FmQ%3D"],["[蜜蜂狗]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/20b7bfa94ab84713a0d97bd0ebb619c7?x-expires=2023614000&x-signature=zs0jOWaTe%2BtpIs40u4yO5spfaSc%3D"],["[真的会谢]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8de486f844ec4ef4a4e6d3d3bf6a8422?x-expires=2023614000&x-signature=NBZ2doLFDnQhC5KjB5J3q61Nofs%3D"],["[达咩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c606611c7f324f2b890f92f7cbd20421?x-expires=2023614000&x-signature=PllK7E9APv9K2QnuJUCqD%2BbQYms%3D"],["[敢怒不敢言]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/4d6d02d56b2445be8691666bb6018d0a?x-expires=2023614000&x-signature=uCYtYSxG9o%2BZvzUnRBtKvEjadCE%3D"],["[投降]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/23ed04ffdbb2450eb3e1368bb3ff17d7?x-expires=2023614000&x-signature=pbRRMQkwG57hYEd%2BSM1f2uaMoqM%3D"],["[求求了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fd9c6a643f5e4968a745c74d3556a387?x-expires=2023614000&x-signature=MRb6bbkpPl2imAcqb3LjlD18zzg%3D"],["[眼含热泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/460e6bdd35b741edb3f924895eef8e80?x-expires=2023614000&x-signature=bElQuDF2I24rnn6uj0oLAX%2BKG%2FU%3D"],["[叹气]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/05a5e1e98bfa418697e9fea1bad1d726?x-expires=2023614000&x-signature=kN24ogXu9%2BCmjMG8hE8B6qANqx8%3D"],["[好开心]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a84a0b3b9e034a87877e98e626db102b?x-expires=2023614000&x-signature=INwrbxJzHz0BhQw8a7cT6N6n5cQ%3D"],["[不是吧]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/542a3c0ca97b4af49d4000bc7699442f?x-expires=2023614000&x-signature=AhGaZShGcL84gHCURJdEgDqrT28%3D"],["[动动脑子]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/0a6cd538c5a840db9090f50ad07807ad?x-expires=2023614000&x-signature=jP7k5a17REo6hZJPh0UoX3%2F4%2FBY%3D"],["[表面微笑]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7c9d311e31fd4d588b62ecb4040e1f24?x-expires=2023614000&x-signature=UeTGzDK%2BsfjvENeCWkeDCz5PPgQ%3D"],["[表面呲牙]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/53afcfc64848447cad6f147062165a46?x-expires=2023614000&x-signature=eN58ebpihs67f3vWAcJWpUf%2BWPQ%3D"],["[鞠躬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c687e7fe926d46bcbe5bc143f99fe2f1?x-expires=2023614000&x-signature=E6dqgBTnhrE%2FlXLI45%2FBFJFwKr8%3D"],["[躺平]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2d02a01973c24c3d9902b6cb9acf55c0?x-expires=2023614000&x-signature=aHVUeWihdYFUfPAUMckisHyQB9Q%3D"],["[九转大肠]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/fc20a426ce394359880b199caa6599b2?x-expires=2023614000&x-signature=nmgqJw8RfyKzcAwFkTDB%2FeYjwg8%3D"],["[敲木鱼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b0bfd31106ff49ddb69334d3013eaed9?x-expires=2023614000&x-signature=pFLxkvVt1%2FcmBCyrJQ9kFMvtt90%3D"],["[不你不想]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/22fd973f607441199270a000de0db1fd?x-expires=2023614000&x-signature=SEyhZAY1gSsnPakQUiRUbhtx8bQ%3D"],["[一头乱麻]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/61782e2e8ede4471be3163e89e8a07f8?x-expires=2023614000&x-signature=QvjjyIP1%2FX8sLTsQmqssnR6YIu8%3D"],["[kisskiss]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/06380f50ce1e411cb1cbc8418f302c4b?x-expires=2023614000&x-signature=riWBXYMpPCt6FpbFjvBpNLTdte4%3D"],["[你不大行]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d30c5738dd1f44a7a87aa3d68db7a37a?x-expires=2023614000&x-signature=tQkArXmckZC%2BE1t5AfLc6jiCkCM%3D"],["[噢买尬]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5668c7f5a9384be8a0c5abb8738ce513?x-expires=2023614000&x-signature=Nhl70yJWDk5JsLElcXbB3yk4XBM%3D"],["[宕机]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e704e29b5579406a8a3eb03236625d02?x-expires=2023614000&x-signature=PcCxILogGbozw4R%2FWbQw6daVx8s%3D"],["[还得是我]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/8a6ae559cc5e4020b084767c99c35c2f?x-expires=2023614000&x-signature=fUnu7IWgZeS0WzqMTdPvbFuXjyA%3D"],["[6]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ea9e64cf725d4419911a428435404d20?x-expires=2023614000&x-signature=enAL6ID5Iq%2F9T%2F%2BH2z8qoF03usg%3D"],["[脸疼]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6252bc2e9ac44d129bb99306f79f69ee?x-expires=2023614000&x-signature=sr95bCvTmn7EndjQncoey5ezdGQ%3D"],["[他急了]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/ec9e82b623ff4fa98badede8ee5bc2ec?x-expires=2023614000&x-signature=YXjDn2eElfjrtkDyHuU3J%2BvCBJY%3D"],["[苦涩]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/df3429529c2e4faeb6b519dbf0682998?x-expires=2023614000&x-signature=I2Sh2mbXKQyJF9SkrZKqYcGT8Bs%3D"],["[逞强落泪]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c4cf290ea2884dca8d536fedf051b6fb?x-expires=2023614000&x-signature=aa0Id7UQOh5GxGydwWmyKXjluNc%3D"],["[亚运鼓掌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/a9f4421cf71449d39344ae6ca6e53ccb?x-expires=2023614000&x-signature=%2B8WX81wxjje5fNRYcDR0NhT5ceQ%3D"],["[金牌]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/82f91be0c3e74ad1a7418d8b671e4897?x-expires=2023614000&x-signature=2n54KQ0N7dnKC04BxElZVcV%2FBTc%3D"],["[手花]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/67926a0606e849aebcf4b506ff810b60?x-expires=2023614000&x-signature=0Wm36wXu83TZ6Iz182YVzCADP%2Fw%3D"],["[加一]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/f574622f4be04c668e3845635df0463e?x-expires=2023614000&x-signature=BVcoZwJCKxSWGtnzNaqk1se8bIo%3D"],["[减一]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/2cba29ef16fb4741855e26de5c644067?x-expires=2023614000&x-signature=EtaH2Wy9UU%2BrfrN6tfUQR%2F9hL1c%3D"],["[okk]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/6381b4679e5a4e95a2abfa19976ac880?x-expires=2023614000&x-signature=3sKBRaC6DhZwSSMk4VG1UkpbO4w%3D"],["[yyds]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/75196c50b300474ea9510aa926db5aa1?x-expires=2023614000&x-signature=qrMkn4oLYcSGUMSgozmEe9Ppj2o%3D"],["[emo]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/884e0576cfab47c183c5c174d137d965?x-expires=2023614000&x-signature=nM1sh03Fy4O2FfXNckNZRvD8lDg%3D"],["[开心兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/b5fa370d2f7f4b44a3154b49e594ac19?x-expires=2023614000&x-signature=rl7Gz1EpKmYv03X439LAyunah%2Fw%3D"],["[招财兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e4f03c234a4649a29f8fa720f9588a9c?x-expires=2023614000&x-signature=QFoCVkdzTGjwfS3s8LNScLV%2BIl4%3D"],["[年兽兔]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/c077c8b084a74c29a1c4527b74559a02?x-expires=2023614000&x-signature=CqsikylUTFIoYEEUrId9dLrogiY%3D"],["[打call]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7ab1e46bc5c945b4a0c45e4c0589b4dc?x-expires=2023614000&x-signature=nVsqYoU%2B%2BOSLkhHMXE6W3wRB23w%3D"],["[栓Q]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/e0e6830fa83b490c87d567fee28d86a6?x-expires=2023614000&x-signature=xVLQpuYEuvBq3zjoeLYETuJWBnI%3D"],["[无语]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/81deba7ec54c4001a87b489b7dd6ef9f?x-expires=2023614000&x-signature=QIQhYsAXfvNteigmt5MfMwwn%2FCo%3D"],["[雪人]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5171c553be284ab0ba8da88824f57859?x-expires=2023614000&x-signature=YjOrFBHB1bCJCNoWtfN2m3Zg2mo%3D"],["[candy]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/460154736e734265bf349bb76915d7a9?x-expires=2023614000&x-signature=tX%2FkiuYr7oU5URfF71LZy%2BCA0qE%3D"],["[糖葫芦]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d4aa8a0ff46a445e861ad8fb78c07140?x-expires=2023614000&x-signature=FvN4ytTGjC7Mww8KX4BRIg9wcTE%3D"],["[虎头]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7569ffeaa3894b8b8ea843c0e5a05f63?x-expires=2023614000&x-signature=m%2Bi3d034xBQkuBqx4xrvzru5q6A%3D"],["[iloveyou]","https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/798bcfd9811f4fcd97df92af06c87a0e?x-expires=2023614000&x-signature=DuK8xhX7glgLx44H53PrhM32D44%3D"]],I=[["[dog]","http://i0.hdslb.com/bfs/live/4428c84e694fbf4e0ef6c06e958d9352c3582740.png"],["[花]","http://i0.hdslb.com/bfs/live/7dd2ef03e13998575e4d8a803c6e12909f94e72b.png"],["[妙]","http://i0.hdslb.com/bfs/live/08f735d950a0fba267dda140673c9ab2edf6410d.png"],["[哇]","http://i0.hdslb.com/bfs/live/650c3e22c06edcbca9756365754d38952fc019c3.png"],["[爱]","http://i0.hdslb.com/bfs/live/1daaa5d284dafaa16c51409447da851ff1ec557f.png"],["[手机]","http://i0.hdslb.com/bfs/live/b159f90431148a973824f596288e7ad6a8db014b.png"],["[撇嘴]","http://i0.hdslb.com/bfs/live/4255ce6ed5d15b60311728a803d03dd9a24366b2.png"],["[委屈]","http://i0.hdslb.com/bfs/live/69312e99a00d1db2de34ef2db9220c5686643a3f.png"],["[抓狂]","http://i0.hdslb.com/bfs/live/a7feb260bb5b15f97d7119b444fc698e82516b9f.png"],["[比心]","http://i0.hdslb.com/bfs/live/4e029593562283f00d39b99e0557878c4199c71d.png"],["[赞]","http://i0.hdslb.com/bfs/live/2dd666d3651bafe8683acf770b7f4163a5f49809.png"],["[滑稽]","http://i0.hdslb.com/bfs/live/8624fd172037573c8600b2597e3731ef0e5ea983.png"],["[吃瓜]","http://i0.hdslb.com/bfs/live/ffb53c252b085d042173379ac724694ce3196194.png"],["[笑哭]","http://i0.hdslb.com/bfs/live/c5436c6806c32b28d471bb23d42f0f8f164a187a.png"],["[捂脸]","http://i0.hdslb.com/bfs/live/e6073c6849f735ae6cb7af3a20ff7dcec962b4c5.png"],["[喝彩]","http://i0.hdslb.com/bfs/live/b51824125d09923a4ca064f0c0b49fc97d3fab79.png"],["[偷笑]","http://i0.hdslb.com/bfs/live/e2ba16f947a23179cdc00420b71cc1d627d8ae25.png"],["[大笑]","http://i0.hdslb.com/bfs/live/e2589d086df0db8a7b5ca2b1273c02d31d4433d4.png"],["[惊喜]","http://i0.hdslb.com/bfs/live/9c75761c5b6e1ff59b29577deb8e6ad996b86bd7.png"],["[傲娇]","http://i0.hdslb.com/bfs/live/b5b44f099059a1bafb2c2722cfe9a6f62c1dc531.png"],["[疼]","http://i0.hdslb.com/bfs/live/492b10d03545b7863919033db7d1ae3ef342df2f.png"],["[吓]","http://i0.hdslb.com/bfs/live/c6bed64ffb78c97c93a83fbd22f6fdf951400f31.png"],["[阴险]","http://i0.hdslb.com/bfs/live/a4df45c035b0ca0c58f162b5fb5058cf273d0d09.png"],["[惊讶]","http://i0.hdslb.com/bfs/live/bc26f29f62340091737c82109b8b91f32e6675ad.png"],["[生病]","http://i0.hdslb.com/bfs/live/84c92239591e5ece0f986c75a39050a5c61c803c.png"],["[嘘]","http://i0.hdslb.com/bfs/live/b6226219384befa5da1d437cb2ff4ba06c303844.png"],["[奸笑]","http://i0.hdslb.com/bfs/live/5935e6a4103d024955f749d428311f39e120a58a.png"],["[囧]","http://i0.hdslb.com/bfs/live/204413d3cf330e122230dcc99d29056f2a60e6f2.png"],["[捂脸2]","http://i0.hdslb.com/bfs/live/a2ad0cc7e390a303f6d243821479452d31902a5f.png"],["[出窍]","http://i0.hdslb.com/bfs/live/bb8e95fa54512ffea07023ea4f2abee4a163e7a0.png"],["[吐了啊]","http://i0.hdslb.com/bfs/live/2b6b4cc33be42c3257dc1f6ef3a39d666b6b4b1a.png"],["[鼻子]","http://i0.hdslb.com/bfs/live/f4ed20a70d0cb85a22c0c59c628aedfe30566b37.png"],["[调皮]","http://i0.hdslb.com/bfs/live/84fe12ecde5d3875e1090d83ac9027cb7d7fba9f.png"],["[酸]","http://i0.hdslb.com/bfs/live/98fd92c6115b0d305f544b209c78ec322e4bb4ff.png"],["[冷]","http://i0.hdslb.com/bfs/live/b804118a1bdb8f3bec67d9b108d5ade6e3aa93a9.png"],["[OK]","http://i0.hdslb.com/bfs/live/86268b09e35fbe4215815a28ef3cf25ec71c124f.png"],["[微笑]","http://i0.hdslb.com/bfs/live/f605dd8229fa0115e57d2f16cb019da28545452b.png"],["[藏狐]","http://i0.hdslb.com/bfs/live/05ef7849e7313e9c32887df922613a7c1ad27f12.png"],["[龇牙]","http://i0.hdslb.com/bfs/live/8b99266ea7b9e86cf9d25c3d1151d80c5ba5c9a1.png"],["[防护]","http://i0.hdslb.com/bfs/live/17435e60dcc28ce306762103a2a646046ff10b0a.png"],["[笑]","http://i0.hdslb.com/bfs/live/a91a27f83c38b5576f4cd08d4e11a2880de78918.png"],["[一般]","http://i0.hdslb.com/bfs/live/8d436de0c3701d87e4ca9c1be01c01b199ac198e.png"],["[嫌弃]","http://i0.hdslb.com/bfs/live/c409425ba1ad2c6534f0df7de350ba83a9c949e5.png"],["[无语]","http://i0.hdslb.com/bfs/live/4781a77be9c8f0d4658274eb4e3012c47a159f23.png"],["[哈欠]","http://i0.hdslb.com/bfs/live/6e496946725cd66e7ff1b53021bf1cc0fc240288.png"],["[可怜]","http://i0.hdslb.com/bfs/live/8e88e6a137463703e96d4f27629f878efa323456.png"],["[歪嘴笑]","http://i0.hdslb.com/bfs/live/bea1f0497888f3e9056d3ce14ba452885a485c02.png"],["[亲亲]","http://i0.hdslb.com/bfs/live/10662d9c0d6ddb3203ecf50e77788b959d4d1928.png"],["[问号]","http://i0.hdslb.com/bfs/live/a0c456b6d9e3187399327828a9783901323bfdb5.png"],["[波吉]","http://i0.hdslb.com/bfs/live/57dee478868ed9f1ce3cf25a36bc50bde489c404.png"],["[OH]","http://i0.hdslb.com/bfs/live/0d5123cddf389302df6f605087189fd10919dc3c.png"],["[再见]","http://i0.hdslb.com/bfs/live/f408e2af700adcc2baeca15510ef620bed8d4c43.png"],["[白眼]","http://i0.hdslb.com/bfs/live/7fa907ae85fa6327a0466e123aee1ac32d7c85f7.png"],["[鼓掌]","http://i0.hdslb.com/bfs/live/d581d0bc30c8f9712b46ec02303579840c72c42d.png"],["[大哭]","http://i0.hdslb.com/bfs/live/816402551e6ce30d08b37a917f76dea8851fe529.png"],["[呆]","http://i0.hdslb.com/bfs/live/179c7e2d232cd74f30b672e12fc728f8f62be9ec.png"],["[流汗]","http://i0.hdslb.com/bfs/live/b00e2e02904096377061ec5f93bf0dd3321f1964.png"],["[生气]","http://i0.hdslb.com/bfs/live/2c69dad2e5c0f72f01b92746bc9d148aee1993b2.png"],["[加油]","http://i0.hdslb.com/bfs/live/fbc3c8bc4152a65bbf4a9fd5a5d27710fbff2119.png"],["[害羞]","http://i0.hdslb.com/bfs/live/d8ce9b05c0e40cec61a15ba1979c8517edd270bf.png"],["[虎年]","http://i0.hdslb.com/bfs/live/a51af0d7d9e60ce24f139c468a3853f9ba9bb184.png"],["[doge2]","http://i0.hdslb.com/bfs/live/f547cc853cf43e70f1e39095d9b3b5ac1bf70a8d.png"],["[金钱豹]","http://i0.hdslb.com/bfs/live/b6e8131897a9a718ee280f2510bfa92f1d84429b.png"],["[瓜子]","http://i0.hdslb.com/bfs/live/fd35718ac5a278fd05fe5287ebd41de40a59259d.png"],["[墨镜]","http://i0.hdslb.com/bfs/live/5e01c237642c8b662a69e21b8e0fbe6e7dbc2aa1.png"],["[难过]","http://i0.hdslb.com/bfs/live/5776481e380648c0fb3d4ad6173475f69f1ce149.png"],["[抱抱]","http://i0.hdslb.com/bfs/live/abddb0b621b389fc8c2322b1cfcf122d8936ba91.png"],["[跪了]","http://i0.hdslb.com/bfs/live/4f2155b108047d60c1fa9dccdc4d7abba18379a0.png"],["[摊手]","http://i0.hdslb.com/bfs/live/1e0a2baf088a34d56e2cc226b2de36a5f8d6c926.png"],["[热]","http://i0.hdslb.com/bfs/live/6df760280b17a6cbac8c1874d357298f982ba4cf.png"],["[三星堆]","http://i0.hdslb.com/bfs/live/0a1ab3f0f2f2e29de35c702ac1ecfec7f90e325d.png"],["[鼠]","http://i0.hdslb.com/bfs/live/98f842994035505c728e32e32045d649e371ecd6.png"],["[汤圆]","http://i0.hdslb.com/bfs/live/23ae12d3a71b9d7a22c8773343969fcbb94b20d0.png"],["[泼水]","http://i0.hdslb.com/bfs/live/29533893115c4609a4af336f49060ea13173ca78.png"],["[鬼魂]","http://i0.hdslb.com/bfs/live/5d86d55ba9a2f99856b523d8311cf75cfdcccdbc.png"],["[不行]","http://i0.hdslb.com/bfs/live/607f74ccf5eec7d2b17d91b9bb36be61a5dd196b.png"],["[响指]","http://i0.hdslb.com/bfs/live/3b2fedf09b0ac79679b5a47f5eb3e8a38e702387.png"],["[牛]","http://i0.hdslb.com/bfs/live/5e61223561203c50340b4c9b41ba7e4b05e48ae2.png"],["[保佑]","http://i0.hdslb.com/bfs/live/241b13adb4933e38b7ea6f5204e0648725e76fbf.png"],["[抱拳]","http://i0.hdslb.com/bfs/live/3f170894dd08827ee293afcb5a3d2b60aecdb5b1.png"],["[给力]","http://i0.hdslb.com/bfs/live/d1ba5f4c54332a21ed2ca0dcecaedd2add587839.png"],["[耶]","http://i0.hdslb.com/bfs/live/eb2d84ba623e2335a48f73fb5bef87bcf53c1239.png"]],A=[["[666]","https://ali2.a.yximgs.com/bs2/emotion/1704763447505third_party_s1296657489.png"],["[奸笑]","https://ali2.a.yximgs.com/bs2/emotion/1704776059816third_party_s1296748052.png"],["[捂脸]","https://bd.a.yximgs.com/bs2/emotion/1704776021202third_party_s1296747457.png"],["[龇牙]","https://bd.a.yximgs.com/bs2/emotion/1704775978144third_party_s1296746882.png"],["[哼]","https://ali2.a.yximgs.com/bs2/emotion/1704775935917third_party_s1296746407.png"],["[哦]","https://ali2.a.yximgs.com/bs2/emotion/1704775888472third_party_s1296745888.png"],["[微笑]","https://ali2.a.yximgs.com/bs2/emotion/1704775840073third_party_s1296745254.png"],["[老铁]","https://ali2.a.yximgs.com/bs2/emotion/1704766004548third_party_s1296668542.png"],["[双鸡]","https://ali2.a.yximgs.com/bs2/emotion/1704765943430third_party_s1296668337.png"],["[调皮]","https://ali2.a.yximgs.com/bs2/emotion/1704775798640third_party_s1296744691.png"],["[呆住]","https://ali2.a.yximgs.com/bs2/emotion/1704775755675third_party_s1296744198.png"],["[星星眼]","https://ali2.a.yximgs.com/bs2/emotion/1704775705283third_party_s1296743591.png"],["[爱心]","https://ali2.a.yximgs.com/bs2/emotion/1704765876094third_party_s1296667852.png"],["[疑问]","https://ali2.a.yximgs.com/bs2/emotion/1704775660342third_party_s1296742992.png"],["[生气]","https://ali2.a.yximgs.com/bs2/emotion/1704775610489third_party_s1296742417.png"],["[难过]","https://ali2.a.yximgs.com/bs2/emotion/1704775560543third_party_s1296741805.png"],["[撇嘴]","https://ali2.a.yximgs.com/bs2/emotion/1704775517486third_party_s1296741380.png"],["[惊讶]","https://ali2.a.yximgs.com/bs2/emotion/1704775445666third_party_s1296740420.png"],["[羞涩]","https://ali2.a.yximgs.com/bs2/emotion/1704772289790third_party_s1296705324.png"],["[色]","https://ali2.a.yximgs.com/bs2/emotion/1704772231770third_party_s1296704846.png"],["[汗]","https://ali2.a.yximgs.com/bs2/emotion/1704772177310third_party_s1296704283.png"],["[呕吐]","https://ali2.a.yximgs.com/bs2/emotion/1704772118979third_party_s1296703810.png"],["[老司机]","https://ali2.a.yximgs.com/bs2/emotion/1704772048844third_party_s1296703216.png"],["[头盔]","https://ali2.a.yximgs.com/bs2/emotion/1704771654524third_party_s1296700611.png"],["[酷]","https://ali2.a.yximgs.com/bs2/emotion/1704771603139third_party_s1296700263.png"],["[笑哭]","https://ali2.a.yximgs.com/bs2/emotion/1704771554781third_party_s1296699971.png"],["[愉快]","https://ali2.a.yximgs.com/bs2/emotion/1704771498312third_party_s1296699382.png"],["[委屈]","https://ali2.a.yximgs.com/bs2/emotion/1704771450694third_party_s1296699070.png"],["[鄙视]","https://ali2.a.yximgs.com/bs2/emotion/1704771395457third_party_s1296698891.png"],["[白眼]","https://ali2.a.yximgs.com/bs2/emotion/1704771346135third_party_s1296698660.png"],["[安排]","https://ali2.a.yximgs.com/bs2/emotion/1704771294552third_party_s1296698182.png"],["[点点关注]","https://ali2.a.yximgs.com/bs2/emotion/1704771236940third_party_s1296697797.png"],["[鼓掌]","https://ali2.a.yximgs.com/bs2/emotion/1704771184363third_party_s1296697359.png"],["[抱抱]","https://ali2.a.yximgs.com/bs2/emotion/1704766474596third_party_s1296670536.png"],["[哈欠]","https://ali2.a.yximgs.com/bs2/emotion/1704771131055third_party_s1296696977.png"],["[骂你]","https://bd.a.yximgs.com/bs2/emotion/1704771079728third_party_s1296696446.png"],["[大哭]","https://ali2.a.yximgs.com/bs2/emotion/1704771028940third_party_s1296696033.png"],["[闭嘴]","https://ali2.a.yximgs.com/bs2/emotion/1704770709451third_party_s1296694128.png"],["[惊恐]","https://bd.a.yximgs.com/bs2/emotion/1704770650664third_party_s1296693781.png"],["[红脸蛋]","https://ali2.a.yximgs.com/bs2/emotion/1704770591150third_party_s1296693499.png"],["[亲亲]","https://bd.a.yximgs.com/bs2/emotion/1704770453439third_party_s1296692624.png"],["[冷汗]","https://ali2.a.yximgs.com/bs2/emotion/1704770395028third_party_s1296692231.png"],["[晕]","https://ali2.a.yximgs.com/bs2/emotion/1704770038072third_party_s1296690336.png"],["[皇冠]","https://ali2.a.yximgs.com/bs2/emotion/1704765811100third_party_s1296667470.png"],["[火]","https://ali2.a.yximgs.com/bs2/emotion/1704763504359third_party_s1296657659.png"],["[坏笑]","https://ali2.a.yximgs.com/bs2/emotion/1704769906157third_party_s1296689515.png"],["[爆炸]","https://ali2.a.yximgs.com/bs2/emotion/1704763342710third_party_s1296657261.png"],["[大便]","https://ali2.a.yximgs.com/bs2/emotion/1704763289677third_party_s1296657112.png"],["[可怜]","https://ali2.a.yximgs.com/bs2/emotion/1704769849712third_party_s1296689281.png"],["[抠鼻]","https://ali2.a.yximgs.com/bs2/emotion/1704769802638third_party_s1296689012.png"],["[再见]","https://ali2.a.yximgs.com/bs2/emotion/1704769742626third_party_s1296688705.png"],["[摄像机]","https://ali2.a.yximgs.com/bs2/emotion/1704763241589third_party_s1296656998.png"],["[赞]","https://ali2.a.yximgs.com/bs2/emotion/1704762153449third_party_s1296652881.png"],["[平底锅]","https://ali2.a.yximgs.com/bs2/emotion/1704769687542third_party_s1296688270.png"],["[囧]","https://bd.a.yximgs.com/bs2/emotion/1704769626325third_party_s1296687863.png"],["[大哥]","https://ali2.a.yximgs.com/bs2/emotion/1704769568039third_party_s1296687559.png"],["[玫瑰]","https://bd.a.yximgs.com/bs2/emotion/1704763142635third_party_s1296656612.png"],["[抓狂]","https://ali2.a.yximgs.com/bs2/emotion/1704769507289third_party_s1296687303.png"],["[嘘]","https://ali2.a.yximgs.com/bs2/emotion/1704769442407third_party_s1296686829.png"],["[快哭了]","https://ali2.a.yximgs.com/bs2/emotion/1704769347108third_party_s1296686284.png"],["[骷髅]","https://ali2.a.yximgs.com/bs2/emotion/1704768884061third_party_s1296683458.png"],["[偷笑]","https://ali2.a.yximgs.com/bs2/emotion/1704768706672third_party_s1296682428.png"],["[落泪]","https://bd.a.yximgs.com/bs2/emotion/1704768657909third_party_s1296681906.png"],["[挑逗]","https://ali2.a.yximgs.com/bs2/emotion/1704768600457third_party_s1296681529.png"],["[困]","https://ali2.a.yximgs.com/bs2/emotion/1704768550467third_party_s1296681259.png"],["[睡觉]","https://ali2.a.yximgs.com/bs2/emotion/1704768494268third_party_s1296681034.png"],["[右哼哼]","https://ali2.a.yximgs.com/bs2/emotion/1704768448493third_party_s1296680688.png"],["[左哼哼]","https://ali2.a.yximgs.com/bs2/emotion/1704768392482third_party_s1296680332.png"],["[打招呼]","https://ali2.a.yximgs.com/bs2/emotion/1704762100195third_party_s1296652661.png"],["[流鼻血]","https://ali2.a.yximgs.com/bs2/emotion/1704768330183third_party_s1296680037.png"],["[偷瞄]","https://ali2.a.yximgs.com/bs2/emotion/1704768270249third_party_s1296679827.png"],["[吃瓜]","https://ali2.a.yximgs.com/bs2/emotion/1704768220721third_party_s1296679581.png"],["[黑脸问]","https://ali2.a.yximgs.com/bs2/emotion/1704768168791third_party_s1296679234.png"],["[旋转]","https://bd.a.yximgs.com/bs2/emotion/1704768117560third_party_s1296678783.png"],["[憨笑]","https://ali2.a.yximgs.com/bs2/emotion/1704768054223third_party_s1296678500.png"],["[吐彩虹]","https://ali2.a.yximgs.com/bs2/emotion/1704767994674third_party_s1296678327.png"],["[擦鼻涕]","https://ali2.a.yximgs.com/bs2/emotion/1704767940928third_party_s1296677841.png"],["[怒言]","https://ali2.a.yximgs.com/bs2/emotion/1704767890021third_party_s1296677678.png"],["[拜托]","https://ali2.a.yximgs.com/bs2/emotion/1704767838535third_party_s1296677360.png"],["[加油]","https://bd.a.yximgs.com/bs2/emotion/1704767780611third_party_s1296677057.png"],["[暴汗]","https://ali2.a.yximgs.com/bs2/emotion/1704767728861third_party_s1296676729.png"],["[想吃]","https://ali2.a.yximgs.com/bs2/emotion/1704767667849third_party_s1296676449.png"],["[打脸]","https://ali2.a.yximgs.com/bs2/emotion/1704767617056third_party_s1296676208.png"],["[吐血]","https://ali2.a.yximgs.com/bs2/emotion/1704767567911third_party_s1296675878.png"],["[尴尬]","https://bd.a.yximgs.com/bs2/emotion/1704767506569third_party_s1296675528.png"],["[出魂儿]","https://ali2.a.yximgs.com/bs2/emotion/1704767441130third_party_s1296675286.png"],["[大鼻孔]","https://ali2.a.yximgs.com/bs2/emotion/1704767388991third_party_s1296674947.png"],["[嘣]","https://ali2.a.yximgs.com/bs2/emotion/1704767331411third_party_s1296674616.png"],["[天啊]","https://ali2.a.yximgs.com/bs2/emotion/1704767271335third_party_s1296674239.png"],["[石化]","https://bd.a.yximgs.com/bs2/emotion/1704767221776third_party_s1296674013.png"],["[皱眉]","https://bd.a.yximgs.com/bs2/emotion/1704767005855third_party_s1296672942.png"],["[装傻]","https://ali2.a.yximgs.com/bs2/emotion/1704766945094third_party_s1296672714.png"],["[酸了]","https://ali2.a.yximgs.com/bs2/emotion/1704761625171third_party_s1296650672.png"],["[柴犬]","https://bd.a.yximgs.com/bs2/emotion/1704761562366third_party_s1296650505.png"],["[狗粮]","https://bd.a.yximgs.com/bs2/emotion/1704762211958third_party_s1296653006.png"],["[期待]","https://ali2.a.yximgs.com/bs2/emotion/1704766537316third_party_s1296670779.png"],["[红包]","https://ali2.a.yximgs.com/bs2/emotion/1704762630876third_party_s1296654958.png"],["[干杯]","https://ali2.a.yximgs.com/bs2/emotion/1704762976549third_party_s1296656073.png"],["[祈祷]","https://ali2.a.yximgs.com/bs2/emotion/1704762918273third_party_s1296655765.png"],["[花谢了]","https://bd.a.yximgs.com/bs2/emotion/1704763094568third_party_s1296656398.png"],["[跪下]","https://ali2.a.yximgs.com/bs2/emotion/1704762867899third_party_s1296655667.png"],["[南]","https://ali2.a.yximgs.com/bs2/emotion/1704762761234third_party_s1296655362.png"],["[发]","https://ali2.a.yximgs.com/bs2/emotion/1704762689267third_party_s1296655142.png"],["[板砖]","https://ali2.a.yximgs.com/bs2/emotion/1704763039720third_party_s1296656165.png"],["[灯笼]","https://bd.a.yximgs.com/bs2/emotion/1704762583000third_party_s1296654733.png"],["[福字]","https://ali2.a.yximgs.com/bs2/emotion/1704762521906third_party_s1296654390.png"],["[鞭炮]","https://ali2.a.yximgs.com/bs2/emotion/1704762474616third_party_s1296654064.png"],["[烟花]","https://ali2.a.yximgs.com/bs2/emotion/1704762425707third_party_s1296653845.png"],["[元宝]","https://ali2.a.yximgs.com/bs2/emotion/1704762370541third_party_s1296653559.png"],["[钱]","https://ali2.a.yximgs.com/bs2/emotion/1704762316380third_party_s1296653319.png"],["[气球]","https://ali2.a.yximgs.com/bs2/emotion/1704762265510third_party_s1296653172.png"],["[庆祝]","https://ali2.a.yximgs.com/bs2/emotion/1704770972968third_party_s1296695686.png"],["[礼花]","https://ali2.a.yximgs.com/bs2/emotion/1704766060554third_party_s1296668711.png"],["[爱你]","https://ali2.a.yximgs.com/bs2/emotion/1704766815314third_party_s1296671857.png"],["[摸头]","https://bd.a.yximgs.com/bs2/emotion/1704766657395third_party_s1296671198.png"],["[雾霾]","https://ali2.a.yximgs.com/bs2/emotion/1704766594591third_party_s1296670988.png"],["[化妆]","https://ali2.a.yximgs.com/bs2/emotion/1704766889905third_party_s1296672534.png"],["[涂指甲]","https://ali2.a.yximgs.com/bs2/emotion/1704761682759third_party_s1296650876.png"],["[欢迎]","https://ali2.a.yximgs.com/bs2/emotion/1704762048343third_party_s1296652504.png"],["[左拳]","https://ali2.a.yximgs.com/bs2/emotion/1704761978093third_party_s1296652142.png"],["[右拳]","https://ali2.a.yximgs.com/bs2/emotion/1704761920283third_party_s1296651882.png"],["[我爱你]","https://ali2.a.yximgs.com/bs2/emotion/1704761864978third_party_s1296651546.png"],["[比心]","https://ali2.a.yximgs.com/bs2/emotion/1704761810228third_party_s1296651375.png"],["[肌肉]","https://ali2.a.yximgs.com/bs2/emotion/1704761751472third_party_s1296651098.png"],["[狮子]","https://ali2.a.yximgs.com/bs2/emotion/1704761502720third_party_s1296650143.png"],["[龙]","https://ali2.a.yximgs.com/bs2/emotion/1704761427407third_party_s1296649954.png"],["[狗]","https://bd.a.yximgs.com/bs2/emotion/1704761371094third_party_s1296649726.png"],["[网红猫]","https://ali2.a.yximgs.com/bs2/emotion/1704761307262third_party_s1296649487.png"],["[猫]","https://ali2.a.yximgs.com/bs2/emotion/1704761245827third_party_s1296649373.png"],["[老鼠]","https://ali2.a.yximgs.com/bs2/emotion/1704761189331third_party_s1296649156.png"],["[不看]","https://ali2.a.yximgs.com/bs2/emotion/1704761136865third_party_s1296649061.png"],["[不听]","https://ali2.a.yximgs.com/bs2/emotion/1704761074831third_party_s1296648807.png"],["[不说]","https://ali2.a.yximgs.com/bs2/emotion/1704761014678third_party_s1296648623.png"],["[猪头]","https://ali2.a.yximgs.com/bs2/emotion/1704760952536third_party_s1296648309.png"],["[猪鼻子]","https://ali2.a.yximgs.com/bs2/emotion/1704760884297third_party_s1296648188.png"],["[猪蹄]","https://ali2.a.yximgs.com/bs2/emotion/1704760771304third_party_s1296648058.png"],["[羊驼]","https://ali2.a.yximgs.com/bs2/emotion/1704760711037third_party_s1296647965.png"],["[麦克风]","https://ali2.a.yximgs.com/bs2/emotion/1704760647218third_party_s1296647852.png"],["[跳舞]","https://ali2.a.yximgs.com/bs2/emotion/1704760582888third_party_s1296647756.png"],["[蛋糕]","https://bd.a.yximgs.com/bs2/emotion/1704760405763third_party_s1296647250.png"],["[口红]","https://ali2.a.yximgs.com/bs2/emotion/1704760472494third_party_s1296647403.png"],["[水枪]","https://ali2.a.yximgs.com/bs2/emotion/1704760254873third_party_s1296646780.png"],["[空投]","https://bd.a.yximgs.com/bs2/emotion/1704760193986third_party_s1296646575.png"],["[手柄]","https://ali2.a.yximgs.com/bs2/emotion/1704760091452third_party_s1296646374.png"],["[坑]","https://ali2.a.yximgs.com/bs2/emotion/1704759985787third_party_s1296646211.png"],["[八倍镜]","https://ali2.a.yximgs.com/bs2/emotion/1704759889785third_party_s1296646065.png"],["[网红]","https://bd.a.yximgs.com/bs2/emotion/1704759766583third_party_s1296645553.png"],["[优秀]","https://ali2.a.yximgs.com/bs2/emotion/1704759660137third_party_s1296645301.png"],["[减1]","https://ali2.a.yximgs.com/bs2/emotion/1704720665766third_party_s1296409266.png"],["[必胜]","https://bd.a.yximgs.com/bs2/emotion/1704759542034third_party_s1296644941.png"],["[戴口罩]","https://ali2.a.yximgs.com/bs2/emotion/1704704107430third_party_s1295984389.png"],["[勤洗手]","https://ali2.a.yximgs.com/bs2/emotion/1704703259238third_party_s1295977084.png"],["[心心]","https://ali2.a.yximgs.com/bs2/emotion/1704772346276third_party_s1296705763.png"],["[哭笑]","https://ali2.a.yximgs.com/bs2/emotion/1704702678707third_party_s1295972366.png"],["[点赞]","https://ali2.a.yximgs.com/bs2/emotion/1704701773745third_party_s1295965382.png"],["[菜刀]","https://ali2.a.yximgs.com/bs2/emotion/1704762819173third_party_s1296655522.png"],["[扎心]","https://ali2.a.yximgs.com/bs2/emotion/1704763391921third_party_s1296657345.png"],["[拍一拍]","https://ali2.a.yximgs.com/bs2/emotion/1704699252327third_party_s1295948859.png"],["[稳]","https://ali2.a.yximgs.com/bs2/emotion/1704780742645third_party_s1296794020.png"],["[收到]","https://ali2.a.yximgs.com/bs2/emotion/1704782800053third_party_s1296805478.png"],["[加1]","https://bd.a.yximgs.com/bs2/emotion/1704782930366third_party_s1296806744.png"],["[叉号]","https://ali2.a.yximgs.com/bs2/emotion/1704782991766third_party_s1296807145.png"],["[对号]","https://ali2.a.yximgs.com/bs2/emotion/1704783055649third_party_s1296807447.png"],["[no]","https://ali2.a.yximgs.com/bs2/emotion/1704783096203third_party_s1296807744.png"],["[yes]","https://ali2.a.yximgs.com/bs2/emotion/1704783149616third_party_s1296808385.png"],["[湿巾]","https://ali2.a.yximgs.com/bs2/emotion/1704783721396third_party_s1296812504.png"],["[吃饭]","https://ali2.a.yximgs.com/bs2/emotion/1704783768169third_party_s1296812801.png"],["[莫吉托]","https://ali2.a.yximgs.com/bs2/emotion/1704783816852third_party_s1296812989.png"],["[香草蛋糕]","https://ali2.a.yximgs.com/bs2/emotion/1704783879438third_party_s1296813277.png"],["[健身]","https://ali2.a.yximgs.com/bs2/emotion/1704783968269third_party_s1296813760.png"],["[思考]","https://ali2.a.yximgs.com/bs2/emotion/1704784017068third_party_s1296813974.png"],["[疯狂工作]","https://bd.a.yximgs.com/bs2/emotion/1704784063813third_party_s1296814234.png"],["[充满干劲]","https://ali2.a.yximgs.com/bs2/emotion/1704785056742third_party_s1296820406.png"],["[放轻松]","https://ali2.a.yximgs.com/bs2/emotion/1704785103740third_party_s1296820865.png"],["[卷]","https://ali2.a.yximgs.com/bs2/emotion/1704786813813third_party_s1296831667.png"],["[熬夜]","https://ali2.a.yximgs.com/bs2/emotion/1704786853592third_party_s1296831948.png"],["[先睡了]","https://ali2.a.yximgs.com/bs2/emotion/1704786910336third_party_s1296832209.png"],["[emo]","https://ali2.a.yximgs.com/bs2/emotion/1704786943774third_party_s1296832458.png"],["[听音乐]","https://bd.a.yximgs.com/bs2/emotion/1704786984951third_party_s1296832685.png"],["[好运来]","https://ali2.a.yximgs.com/bs2/emotion/1704787279186third_party_s1296834761.png"],["[元气满满]","https://ali2.a.yximgs.com/bs2/emotion/1704787606436third_party_s1296836908.png"],["[学习]","https://ali2.a.yximgs.com/bs2/emotion/1704787673918third_party_s1296837372.png"],["[打电话]","https://ali2.a.yximgs.com/bs2/emotion/1704787717756third_party_s1296837621.png"],["[熬夜工作]","https://ali2.a.yximgs.com/bs2/emotion/1704787761789third_party_s1296837795.png"],["[一起嗨皮]","https://ali2.a.yximgs.com/bs2/emotion/1704787815614third_party_s1296838146.png"],["[难受]","https://ali2.a.yximgs.com/bs2/emotion/1704787901952third_party_s1296838607.png"],["[上吊]","https://ali2.a.yximgs.com/bs2/emotion/1704787935223third_party_s1296838745.png"],["[吓]","https://ali2.a.yximgs.com/bs2/emotion/1704787981957third_party_s1296839028.png"],["[发呆]","https://bd.a.yximgs.com/bs2/emotion/1704788025440third_party_s1296839215.png"],["[疲惫]","https://ali2.a.yximgs.com/bs2/emotion/1704788904736third_party_s1296845175.png"],["[裂开]","https://ali2.a.yximgs.com/bs2/emotion/1704788951325third_party_s1296845410.png"],["[强颜欢笑]","https://ali2.a.yximgs.com/bs2/emotion/1704788997306third_party_s1296845817.png"],["[翻白眼]","https://ali2.a.yximgs.com/bs2/emotion/1704789037112third_party_s1296846026.png"],["[难过至极]","https://ali2.a.yximgs.com/bs2/emotion/1704789078980third_party_s1296846236.png"],["[美滋滋]","https://ali2.a.yximgs.com/bs2/emotion/1704789133176third_party_s1296846710.png"],["[马上安排]","https://ali2.a.yximgs.com/bs2/emotion/1704789177867third_party_s1296847087.png"],["[摸鱼]","https://ali2.a.yximgs.com/bs2/emotion/1704789217352third_party_s1296847412.png"],["[敬礼]","https://ali2.a.yximgs.com/bs2/emotion/1704789256009third_party_s1296847689.png"],["[求求了]","https://ali2.a.yximgs.com/bs2/emotion/1704789289580third_party_s1296847957.png"],["[赢麻了]","https://ali2.a.yximgs.com/bs2/emotion/1704789337176third_party_s1296848206.png"],["[遥遥领先]","https://ali2.a.yximgs.com/bs2/emotion/1704789382578third_party_s1296848447.png"],["[辣眼睛]","https://ali2.a.yximgs.com/bs2/emotion/1704789443283third_party_s1296848822.png"],["[ok]","https://ali2.a.yximgs.com/bs2/emotion/1704789999083third_party_s1296852648.png"],["[握手]","https://ali2.a.yximgs.com/bs2/emotion/1704790046552third_party_s1296852850.png"],["[抱拳]","https://bd.a.yximgs.com/bs2/emotion/1704790113221third_party_s1296853443.png"],["[早上好]","https://ali2.a.yximgs.com/bs2/emotion/1704790167344third_party_s1296853922.png"],["[胡思乱想]","https://ali2.a.yximgs.com/bs2/emotion/1704790657229third_party_s1296858542.png"]],b=class b{constructor(t){h(this,"rawType");h(this,"rawContent");h(this,"_cachedValues",{});this.rawType=t.type;try{typeof t.content=="string"?this.rawContent=JSON.parse(t.content):this.rawContent=t.content}catch{this.rawContent=t.content}const i=this,s=Object.getPrototypeOf(this);Object.getOwnPropertyNames(s).forEach(e=>{const n=Object.getOwnPropertyDescriptor(s,e);n&&typeof n.get=="function"&&Object.defineProperty(i,e,{get:function(){return i.getCachedValue(e,()=>{var p;return(p=n.get)==null?void 0:p.call(i)})},enumerable:!0,configurable:!0})})}getCachedValue(t,i){try{return this._cachedValues[t]||(this._cachedValues[t]=i()),this._cachedValues[t]}catch(s){console.error(s);return}}get platform(){const t=/^Webcast[A-Z][a-zA-Z]*Message$/,i=/^(Common|Acfun)(Action|State)Signal[A-Z][a-zA-Z]*/;if("cmd"in this.rawContent&&typeof this.rawContent.cmd=="string")return this.rawContent.cmd.includes("LIVE_OPEN_PLATFORM")?"openblive":"bilibili";if(t.test(this.rawType))return"douyin";if(this.rawType.startsWith("Kuaishou"))return"kuaishou";if(this.rawType.startsWith("Chzzk"))return"chzzk";if(i.test(this.rawType))return"acfun"}get type(){const t={comment:["LIVE_OPEN_PLATFORM_DM","CommonActionSignalComment","WebcastChatMessage","DANMU_MSG","KuaishouCommentFeeds","ChzzkChatMessage"],gift:["LIVE_OPEN_PLATFORM_SEND_GIFT","CommonActionSignalGift","WebcastGiftMessage","SEND_GIFT","KuaishouGiftFeeds"],follow:["CommonActionSignalUserFollowAuthor"],joinclub:["AcfunActionSignalJoinClub","WebcastFansclubMessage"],like:["LIVE_OPEN_PLATFORM_LIKE","CommonActionSignalLike","WebcastLikeMessage","LIKE_INFO_V3_CLICK","KuaishouLikeFeeds"],guard:["LIVE_OPEN_PLATFORM_GUARD","GUARD_BUY","ChzzkSubscriptionMessage"],superchat:["LIVE_OPEN_PLATFORM_SUPER_CHAT","SUPER_CHAT_MESSAGE","ChzzkDonationMessage"],enter:["CommonActionSignalUserEnterRoom","WebcastMemberMessage"],share:["KuaishouShareFeeds"]};if(!(this.rawType==="WebcastGiftMessage"&&this.rawContent.repeatEnd===1)){for(let i in t)if(t[i].includes(this.rawType))return i;if(this.rawType==="INTERACT_WORD")return[void 0,"enter","follow","share","follow","follow","like"][this.rawContent.data.msg_type];if(this.rawType==="WebcastSocialMessage"){if(this.rawContent.action===1)return"follow";if(this.rawContent.action===3)return"share"}}}get userName(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[2][1];if("data"in this.rawContent){if("user_info"in this.rawContent.data&&"uname"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uname;if("uname"in this.rawContent.data)return this.rawContent.data.uname;if("username"in this.rawContent.data)return this.rawContent.data.username}}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.nickname;if("userInfo"in this.rawContent)return this.rawContent.userInfo.nickname}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.nickName;if(this.platform==="kuaishou"&&"user"in this.rawContent)return this.rawContent.user.userName;if(this.platform==="chzzk"&&this.rawContent.profile)return JSON.parse(this.rawContent.profile).nickname}get uid(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[2][0];if("data"in this.rawContent){if("user_info"in this.rawContent.data&&"uid"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uid;if("uid"in this.rawContent.data)return this.rawContent.data.uid}}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.userId;if("userInfo"in this.rawContent)return this.rawContent.userInfo.userId}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.id;if(this.platform==="kuaishou"&&"user"in this.rawContent)return this.rawContent.user.principalId;if(this.platform==="chzzk"&&"uid"in this.rawContent)return this.rawContent.uid}get clubLevel(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[3][0];if("data"in this.rawContent){if("medal_info"in this.rawContent.data&&"medal_level"in this.rawContent.data.medal_info)return this.rawContent.data.medal_info.medal_level;if("fans_medal"in this.rawContent.data&&this.rawContent.data.fans_medal!==null&&"medal_level"in this.rawContent.data.fans_medal)return this.rawContent.data.fans_medal.medal_level;if("fans_medal_level"in this.rawContent.data)return this.rawContent.data.fans_medal_level}}if(this.platform==="acfun"){let t;if("gift"in this.rawContent&&(t=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(t=this.rawContent.userInfo),t&&t.badge.length>0)return JSON.parse(t.badge).medalInfo.level}if(this.platform==="douyin"&&"user"in this.rawContent&&this.rawContent.user.fansClub!==null)return this.rawContent.user.fansClub.data.level}get clubName(){var t,i;if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[3][1];if("data"in this.rawContent){if("medal_info"in this.rawContent.data&&"medal_name"in this.rawContent.data.medal_info)return this.rawContent.data.medal_info.medal_name;if("fans_medal"in this.rawContent.data&&this.rawContent.data.fans_medal!==null&&"medal_name"in this.rawContent.data.fans_medal)return this.rawContent.data.fans_medal.medal_name;if("fans_medal_name"in this.rawContent.data)return this.rawContent.data.fans_medal_name}}if(this.platform==="acfun"){let s;if("gift"in this.rawContent&&(s=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(s=this.rawContent.userInfo),s&&s.badge.length>0)return JSON.parse(s.badge).medalInfo.clubName}if(this.platform==="douyin"&&"user"in this.rawContent)return(i=(t=this.rawContent.user.fansClub)==null?void 0:t.data)==null?void 0:i.clubName}get acfunClubUid(){if(this.platform==="acfun"){let t;if("gift"in this.rawContent&&(t=this.rawContent.gift.userInfo),"userInfo"in this.rawContent&&(t=this.rawContent.userInfo),t&&t.badge.length>0)return JSON.parse(t.badge).medalInfo.uperId}}get douyinSubscribe(){if(this.platform==="douyin"&&"user"in this.rawContent&&this.rawContent.user.fansClub!==null){const t=this.rawContent.user.fansClub.data.badge.icons;return"6"in t&&t[6].uri.includes("subscribe_year")||"5"in t&&t[5].uri.includes("subscribe_year")?2:"3"in t||"5"in t?1:0}}get avatar(){if((this.platform==="bilibili"||this.platform==="openblive")&&"data"in this.rawContent){if("user_info"in this.rawContent.data){if("face"in this.rawContent.data.user_info)return this.rawContent.data.user_info.face;if("uface"in this.rawContent.data.user_info)return this.rawContent.data.user_info.uface}if("face"in this.rawContent.data)return this.rawContent.data.face;if("uface"in this.rawContent.data)return this.rawContent.data.uface}if(this.platform==="acfun"){if("gift"in this.rawContent)return this.rawContent.gift.userInfo.avatar[0].url;if("userInfo"in this.rawContent)return this.rawContent.userInfo.avatar[0].url}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.avatarThumb.urlListList[0];if(this.platform==="kuaishou"&&"user"in this.rawContent&&"headUrl"in this.rawContent.user&&this.rawContent.user.headUrl)return this.rawContent.user.headUrl}get comment(){const t={acfun:()=>this.rawContent.content,bilibili:()=>this.rawContent.info[1],openblive:()=>this.rawContent.data.msg,douyin:()=>this.rawContent.content,kuaishou:()=>this.rawContent.content,chzzk:()=>this.rawContent.msg};return this.type==="comment"&&t[this.platform]?t[this.platform]():this.type==="superchat"?this.superChatComment:void 0}getCommentHTML(t={}){const{stickerStyle:i="",stickerClass:s="",emotStyle:e="",emotClass:n="",acfunCustomStickers:p=[],acfunCustomHtmlBuilder:r}=t,g={acfun:()=>{let o=f(this.rawContent.content);if("emotionUrl"in this.rawContent&&this.rawContent.emotionUrl)return`<img src="${this.rawContent.emotionUrl}" alt="" style="${i}" class="${s}">`;let a;return p.forEach(c=>{o.includes(c.keyWord)&&(a=c.path)}),a!=null?r!=null?r(a,o):`<div style="display:flex;">
|
|
2
|
+
<img src="${a}" alt="" style="${i}" class="${s}">
|
|
3
3
|
<div style="flex-grow:1;">${o}</div>
|
|
4
|
-
</div>`:
|
|
4
|
+
</div>`:f(this.rawContent.content)},bilibili:()=>{if(typeof this.rawContent.info[0][13]=="object")return`<img src="${this.rawContent.info[0][13].url}" alt="" style="${i}" class="${s}">`;const o=this.rawContent.info[0][15].extra,a=JSON.parse(o);let c=f(a.content);const j=a.emots;for(let v in j){const S=new RegExp(`\\${v}`,"g");c=c.replace(S,`<img src="${j[v].url}" alt="" style="${e}" class="${n}">`)}return c},openblive:()=>{if(this.rawContent.data.emoji_img_url)return`<img src="${this.rawContent.data.emoji_img_url}" alt="" style="${i}" class="${s}">`;let o=f(this.rawContent.data.msg);return I.forEach(a=>{const c=new RegExp(`\\${a[0]}`,"g");o=o.replace(c,`<img src="${a[1]}" alt="" style="${e}" class="${n}">`)}),o},douyin:()=>{let o=f(this.rawContent.content);return T.forEach(a=>{const c=new RegExp(`\\${a[0]}`,"g");o=o.replace(c,`<img src="${a[1]}" alt="" style="${e}" class="${n}">`)}),o},kuaishou:()=>{let o=f(this.rawContent.content);return A.forEach(a=>{const c=new RegExp(`\\${a[0]}`,"g");o=o.replace(c,`<img src="${a[1]}" alt="" style="${e}" class="${n}">`)}),o},chzzk:()=>{let o=f(this.rawContent.msg);if(this.rawContent.extras){const c=JSON.parse(this.rawContent.extras).emojis||{};for(let j in c){const v=new RegExp(`\\{:${j}:}`,"g");o=o.replace(v,`<img src="${c[j]}" alt="" style="${e}" class="${n}">`)}return o}}};if(this.type==="comment"&&g[this.platform])return g[this.platform]()}CommentBuilder(t){const i={acfun:()=>{let s=f(this.rawContent.content),e="emotionUrl"in this.rawContent&&this.rawContent.emotionUrl?this.rawContent.emotionUrl:void 0;return t(s,e)},bilibili:()=>{let s,e=[];typeof this.rawContent.info[0][13]=="object"&&(s=this.rawContent.info[0][13].url);const n=this.rawContent.info[0][15].extra,p=JSON.parse(n),r=f(p.content),g=p.emots;for(let o in g)e.push([o,g[o].url]);return t(r,s,e)},openblive:()=>{let s;this.rawContent.data.emoji_img_url&&(s=this.rawContent.data.emoji_img_url);const e=f(this.rawContent.data.msg);return t(e,s,I)},douyin:()=>{const s=f(this.rawContent.content);return t(s,void 0,T)},kuaishou:()=>{const s=f(this.rawContent.content);return t(s,void 0,A)},chzzk:()=>{let s=f(this.rawContent.msg),e=[];if(this.rawContent.extras){const p=JSON.parse(this.rawContent.extras).emojis||{};for(let r in p)e.push([`{:${r}:}`,p[r]])}return t(s,void 0,e)}};if(this.type==="comment"&&i[this.platform])return i[this.platform]()}get guardLevel(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="DANMU_MSG")return this.rawContent.info[7];if("data"in this.rawContent){if("guard_level"in this.rawContent.data)return this.rawContent.data.guard_level;if("privilege_type"in this.rawContent.data)return this.rawContent.data.privilege_type}}if(this.platform==="chzzk"){const t=this.chzzkTier;return t&&t<=3&&t>=1?4-t:0}}get guardNum(){if(this.platform==="bilibili"||this.platform==="openblive"){if(this.rawType==="GUARD_BUY")return this.rawContent.data.num;if("data"in this.rawContent&&"guard_num"in this.rawContent.data)return this.rawContent.guard_num}if(this.platform==="chzzk")return this.chzzkTierMonth}get guardPrice(){if((this.platform==="bilibili"||this.platform==="openblive")&&"data"in this.rawContent&&"price"in this.rawContent.data)return this.rawContent.data.price/1e3}get chzzkTier(){if(this.platform==="chzzk"&&this.rawType==="ChzzkSubscriptionMessage"&&this.rawContent.extras)return JSON.parse(this.rawContent.extras).tierNo}get chzzkTierMonth(){if(this.platform==="chzzk"&&this.rawType==="ChzzkSubscriptionMessage"&&this.rawContent.extras)return JSON.parse(this.rawContent.extras).month}get giftName(){const t={acfun:()=>this.rawContent.giftInfo.name,bilibili:()=>this.rawContent.data.giftName,openblive:()=>this.rawContent.data.gift_name,douyin:()=>this.rawContent.gift.name,kuaishou:()=>this.rawContent.giftInfo.name};if(this.type==="gift"&&t[this.platform])return t[this.platform]()}get giftNum(){const t={acfun:()=>this.rawContent.gift.batchSize,bilibili:()=>this.rawContent.data.num,openblive:()=>this.rawContent.data.gift_num,douyin:()=>{if(this.rawContent.sendType===4){const s=this.rawContent.comboCount,e=this.rawContent.groupId,n=this.rawContent.giftId,p=this.uid,r=`${e}_${p}_${n}`;let g=0;return b.douyinGiftGroup.has(r)&&(g=b.douyinGiftGroup.get(r)??0),b.douyinGiftGroup.set(r,s),b.douyinGiftGroup.size>1024&&b.douyinGiftGroup.delete(b.douyinGiftGroup.keys().next().value??""),s-g}return this.rawContent.groupCount},kuaishou:()=>{const s=this.rawContent.batchSize*this.rawContent.comboCount,e=this.rawContent.mergeKey;let n=0;return b.kuaishouGiftGroup.has(e)&&(n=b.kuaishouGiftGroup.get(e)??0),b.kuaishouGiftGroup.set(e,s),b.kuaishouGiftGroup.size>1024&&b.kuaishouGiftGroup.delete(b.kuaishouGiftGroup.keys().next().value??""),s-n}};if(this.type==="gift"&&t[this.platform])return t[this.platform]()}get giftUnitPrice(){const t={acfun:()=>this.rawContent.gift.giftId!==1?this.rawContent.giftInfo.value/10:0,bilibili:()=>this.rawContent.data.coin_type!=="silver"?this.rawContent.data.price/1e3:0,openblive:()=>this.rawContent.data.paid?this.rawContent.data.price/1e3:0,douyin:()=>this.rawContent.gift.diamondCount/10,kuaishou:()=>this.rawContent.giftInfo.unitPrice/10};if(this.type==="gift"&&t[this.platform])return t[this.platform]()}get giftTotalPrice(){if(this.giftNum!==void 0&&this.giftUnitPrice!==void 0)return this.giftNum*this.giftUnitPrice}get giftImage(){return this.type!=="gift"?void 0:{acfun:()=>this.rawContent.giftInfo.pic,bilibili:()=>this.rawContent.data.gift_info.webp,openblive:()=>this.rawContent.data.gift_icon,douyin:()=>this.rawContent.gift.image.urlListList[0],kuaishou:()=>this.rawContent.giftInfo.picUrl[0].url}[this.platform]()}get superChatComment(){const t={bilibili:()=>this.rawContent.data.message,openblive:()=>this.rawContent.data.message,chzzk:()=>this.rawContent.msg};if(this.type==="superchat"&&t[this.platform])return t[this.platform]()}get superChatPrice(){const t={bilibili:()=>this.rawContent.data.price,openblive:()=>this.rawContent.data.rmb,chzzk:()=>{if(this.rawContent.extras)return JSON.parse(this.rawContent.extras).payAmount}};if(this.type==="superchat"&&t[this.platform])return t[this.platform]()}get price(){if(this.type==="gift")return this.giftTotalPrice;if(this.type==="superchat")return this.superChatPrice;if(this.type==="guard")return this.guardPrice}getAbstractLevel(t={}){const{douyinSteps:i=[7,11,15],kuaishouSteps:s=[7,11,15],acfunSteps:e=[7,11,15],acfunClubUid:n=0}=t,p=o=>{if(this.clubLevel===void 0)return 0;const a=o.findIndex(c=>this.clubLevel<=c);return a!==-1?a:o.length},r=()=>this.guardLevel&&this.guardLevel>0?4-this.guardLevel:0,g={douyin:()=>p(i),kuaishou:()=>p(s),acfun:()=>n>0&&this.acfunClubUid!==n?0:p(e),bilibili:()=>r(),openblive:()=>r(),chzzk:()=>this.chzzkTier??0};if(g[this.platform])return g[this.platform]()}};h(b,"douyinGiftGroup",new Map),h(b,"kuaishouGiftGroup",new Map);let z=b;function f(x){return x.replace(/[&<>"']/g,function(t){switch(t){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"'":return"'";default:return t}})}d.Parser=z,d.WebSocketManager=_,d.getBfaceURL=M,d.getWebSocketURL=F,d.onMessage=E,Object.defineProperty(d,Symbol.toStringTag,{value:"Module"})});
|
package/dist/parser.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare class Parser {
|
|
|
15
15
|
*
|
|
16
16
|
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-platform}
|
|
17
17
|
*/
|
|
18
|
-
get platform(): "acfun" | "openblive" | "bilibili" | "douyin" | "kuaishou" | undefined;
|
|
18
|
+
get platform(): "acfun" | "openblive" | "bilibili" | "douyin" | "kuaishou" | "chzzk" | undefined;
|
|
19
19
|
/**
|
|
20
20
|
* Message Type.
|
|
21
21
|
*
|
|
@@ -70,6 +70,8 @@ declare class Parser {
|
|
|
70
70
|
get guardLevel(): 0 | 3 | 2 | 1 | undefined;
|
|
71
71
|
get guardNum(): number | undefined;
|
|
72
72
|
get guardPrice(): number | undefined;
|
|
73
|
+
get chzzkTier(): number | undefined;
|
|
74
|
+
get chzzkTierMonth(): number | undefined;
|
|
73
75
|
get giftName(): string | undefined;
|
|
74
76
|
get giftNum(): number | undefined;
|
|
75
77
|
get giftUnitPrice(): number | undefined;
|