dimsum-chat 0.1.7 → 0.1.8
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 +136 -92
- package/dist/dimsum-chat.umd.cjs +3 -3
- package/dist/parser.d.ts +38 -1
- package/package.json +1 -1
package/dist/dimsum-chat.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
const
|
|
1
|
+
var z = Object.defineProperty;
|
|
2
|
+
var C = (o, t, i) => t in o ? z(o, t, { enumerable: !0, configurable: !0, writable: !0, value: i }) : o[t] = i;
|
|
3
|
+
var u = (o, t, i) => (C(o, typeof t != "symbol" ? t + "" : t, i), i);
|
|
4
|
+
const g = class g {
|
|
5
5
|
constructor() {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
u(this, "webSocket");
|
|
7
|
+
u(this, "messageListeners");
|
|
8
8
|
this.webSocket = null, this.messageListeners = [];
|
|
9
9
|
}
|
|
10
10
|
static getInstance() {
|
|
11
|
-
return
|
|
11
|
+
return g.instance || (g.instance = new g()), g.instance;
|
|
12
12
|
}
|
|
13
13
|
connect(t) {
|
|
14
14
|
this.webSocket || (this.webSocket = new WebSocket(t), this.webSocket.onmessage = this.handleMessage.bind(this), this.webSocket.onopen = () => {
|
|
@@ -31,26 +31,26 @@ const u = class u {
|
|
|
31
31
|
i !== -1 && this.messageListeners.splice(i, 1);
|
|
32
32
|
}
|
|
33
33
|
};
|
|
34
|
-
|
|
35
|
-
let
|
|
36
|
-
function
|
|
37
|
-
const
|
|
34
|
+
u(g, "instance");
|
|
35
|
+
let m = g;
|
|
36
|
+
function w() {
|
|
37
|
+
const o = new URL(window.location.href), t = o.protocol === "https:" ? "wss:" : "ws:", i = o.host;
|
|
38
38
|
return `${t}//${i}/websocket`;
|
|
39
39
|
}
|
|
40
|
-
function
|
|
40
|
+
function F(o) {
|
|
41
41
|
const t = new URL(window.location.href), i = t.protocol, e = t.host;
|
|
42
|
-
return `${i}//${e}/bface/${
|
|
42
|
+
return `${i}//${e}/bface/${o}`;
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function I(o, t = {}) {
|
|
45
45
|
const {
|
|
46
|
-
customWsServer: i =
|
|
47
|
-
} = t, e =
|
|
48
|
-
e.connect(i), e.addMessageListener((
|
|
49
|
-
const
|
|
50
|
-
c
|
|
46
|
+
customWsServer: i = w()
|
|
47
|
+
} = t, e = m.getInstance();
|
|
48
|
+
e.connect(i), e.addMessageListener((s) => {
|
|
49
|
+
const c = JSON.parse(s), a = new j(c);
|
|
50
|
+
o(c, a);
|
|
51
51
|
});
|
|
52
52
|
}
|
|
53
|
-
const
|
|
53
|
+
const v = [
|
|
54
54
|
["[过年牛]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/3bb984085d52480ca846fa8f9a1782f6?x-expires=1949886000&x-signature=d8vUokaGkWD%2B4sAHNTLJquCrHrs%3D"],
|
|
55
55
|
["[元宝]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/5f8ac1b1ddd347c4be34b81b496fcc45?x-expires=2023614000&x-signature=UT%2F8fnFld4xuvjj2bttu6fh76lI%3D"],
|
|
56
56
|
["[鞭炮]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/02f8ee9536de4c6595171584e2322f0f?x-expires=2023614000&x-signature=Aa8eXgZqb0bx0QNeLONQVgNUbLI%3D"],
|
|
@@ -311,7 +311,7 @@ const j = [
|
|
|
311
311
|
["[糖葫芦]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/d4aa8a0ff46a445e861ad8fb78c07140?x-expires=2023614000&x-signature=FvN4ytTGjC7Mww8KX4BRIg9wcTE%3D"],
|
|
312
312
|
["[虎头]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/7569ffeaa3894b8b8ea843c0e5a05f63?x-expires=2023614000&x-signature=m%2Bi3d034xBQkuBqx4xrvzru5q6A%3D"],
|
|
313
313
|
["[iloveyou]", "https://p3-pc-sign.douyinpic.com/obj/tos-cn-i-tsj2vxp0zn/798bcfd9811f4fcd97df92af06c87a0e?x-expires=2023614000&x-signature=DuK8xhX7glgLx44H53PrhM32D44%3D"]
|
|
314
|
-
],
|
|
314
|
+
], y = [
|
|
315
315
|
["[dog]", "http://i0.hdslb.com/bfs/live/4428c84e694fbf4e0ef6c06e958d9352c3582740.png"],
|
|
316
316
|
["[花]", "http://i0.hdslb.com/bfs/live/7dd2ef03e13998575e4d8a803c6e12909f94e72b.png"],
|
|
317
317
|
["[妙]", "http://i0.hdslb.com/bfs/live/08f735d950a0fba267dda140673c9ab2edf6410d.png"],
|
|
@@ -394,12 +394,11 @@ const j = [
|
|
|
394
394
|
["[抱拳]", "http://i0.hdslb.com/bfs/live/3f170894dd08827ee293afcb5a3d2b60aecdb5b1.png"],
|
|
395
395
|
["[给力]", "http://i0.hdslb.com/bfs/live/d1ba5f4c54332a21ed2ca0dcecaedd2add587839.png"],
|
|
396
396
|
["[耶]", "http://i0.hdslb.com/bfs/live/eb2d84ba623e2335a48f73fb5bef87bcf53c1239.png"]
|
|
397
|
-
]
|
|
398
|
-
class w {
|
|
397
|
+
], x = class x {
|
|
399
398
|
constructor(t) {
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
399
|
+
u(this, "rawType");
|
|
400
|
+
u(this, "rawContent");
|
|
401
|
+
u(this, "_cachedValues", {});
|
|
403
402
|
this.rawType = t.type;
|
|
404
403
|
try {
|
|
405
404
|
typeof t.content == "string" ? this.rawContent = JSON.parse(t.content) : this.rawContent = t.content;
|
|
@@ -407,13 +406,13 @@ class w {
|
|
|
407
406
|
this.rawContent = t.content;
|
|
408
407
|
}
|
|
409
408
|
const i = this, e = Object.getPrototypeOf(this);
|
|
410
|
-
Object.getOwnPropertyNames(e).forEach((
|
|
411
|
-
const
|
|
412
|
-
|
|
409
|
+
Object.getOwnPropertyNames(e).forEach((s) => {
|
|
410
|
+
const c = Object.getOwnPropertyDescriptor(e, s);
|
|
411
|
+
c && typeof c.get == "function" && Object.defineProperty(i, s, {
|
|
413
412
|
get: function() {
|
|
414
|
-
return i.getCachedValue(
|
|
413
|
+
return i.getCachedValue(s, () => {
|
|
415
414
|
var a;
|
|
416
|
-
return (a =
|
|
415
|
+
return (a = c.get) == null ? void 0 : a.call(i);
|
|
417
416
|
});
|
|
418
417
|
},
|
|
419
418
|
enumerable: !0,
|
|
@@ -425,7 +424,7 @@ class w {
|
|
|
425
424
|
return this._cachedValues[t] || (this._cachedValues[t] = i()), this._cachedValues[t];
|
|
426
425
|
}
|
|
427
426
|
/**
|
|
428
|
-
*
|
|
427
|
+
* The live platform to which the message belongs.
|
|
429
428
|
*
|
|
430
429
|
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-platform}
|
|
431
430
|
*/
|
|
@@ -438,6 +437,12 @@ class w {
|
|
|
438
437
|
if (i.test(this.rawType))
|
|
439
438
|
return "acfun";
|
|
440
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* Message Type.
|
|
442
|
+
*
|
|
443
|
+
* @type see {@link MessageType}
|
|
444
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-type}
|
|
445
|
+
*/
|
|
441
446
|
get type() {
|
|
442
447
|
const t = {
|
|
443
448
|
comment: [
|
|
@@ -486,6 +491,11 @@ class w {
|
|
|
486
491
|
if (this.rawType === "INTERACT_WORD")
|
|
487
492
|
return [void 0, "enter", "follow", "share", "follow", "follow", "like"][this.rawContent.data.msg_type];
|
|
488
493
|
}
|
|
494
|
+
/**
|
|
495
|
+
* User Name.
|
|
496
|
+
*
|
|
497
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-username}
|
|
498
|
+
*/
|
|
489
499
|
get userName() {
|
|
490
500
|
if (this.platform === "bilibili" || this.platform === "openblive") {
|
|
491
501
|
if (this.rawType === "DANMU_MSG")
|
|
@@ -508,6 +518,11 @@ class w {
|
|
|
508
518
|
if (this.platform === "douyin" && "user" in this.rawContent)
|
|
509
519
|
return this.rawContent.user.nickName;
|
|
510
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* User ID.
|
|
523
|
+
*
|
|
524
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-uid}
|
|
525
|
+
*/
|
|
511
526
|
get uid() {
|
|
512
527
|
if (this.platform === "bilibili" || this.platform === "openblive") {
|
|
513
528
|
if (this.rawType === "DANMU_MSG")
|
|
@@ -577,7 +592,12 @@ class w {
|
|
|
577
592
|
return JSON.parse(t.badge).medalInfo.uperId;
|
|
578
593
|
}
|
|
579
594
|
}
|
|
580
|
-
|
|
595
|
+
/**
|
|
596
|
+
* User subscription status in the current Douyin live room.
|
|
597
|
+
*
|
|
598
|
+
* @type `0` for non-member, `1` for monthly member, `2` for annual member
|
|
599
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-douyinsubscribe}
|
|
600
|
+
*/
|
|
581
601
|
get douyinSubscribe() {
|
|
582
602
|
if (this.platform === "douyin" && "user" in this.rawContent && this.rawContent.user.fansClub !== null) {
|
|
583
603
|
const t = this.rawContent.user.fansClub.data.badge.icons;
|
|
@@ -615,79 +635,93 @@ class w {
|
|
|
615
635
|
};
|
|
616
636
|
return this.type === "comment" && t[this.platform] ? t[this.platform]() : this.type === "superchat" ? this.superChatComment : void 0;
|
|
617
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* Simple method to construct comments as HTML strings. Useful for rendering comment messages in general.
|
|
640
|
+
*
|
|
641
|
+
* @param options - {@link commentParseOptions}
|
|
642
|
+
* @returns Rendered comment HTML.
|
|
643
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-getcommenthtml}
|
|
644
|
+
*/
|
|
618
645
|
getCommentHTML(t = {}) {
|
|
619
646
|
const {
|
|
620
647
|
stickerStyle: i = "",
|
|
621
648
|
stickerClass: e = "",
|
|
622
|
-
emotStyle:
|
|
623
|
-
emotClass:
|
|
649
|
+
emotStyle: s = "",
|
|
650
|
+
emotClass: c = "",
|
|
624
651
|
acfunCustomStickers: a = [],
|
|
625
|
-
acfunCustomHtmlBuilder:
|
|
626
|
-
} = t,
|
|
652
|
+
acfunCustomHtmlBuilder: d
|
|
653
|
+
} = t, b = {
|
|
627
654
|
acfun: () => {
|
|
628
|
-
let
|
|
629
|
-
return a.forEach((
|
|
630
|
-
|
|
631
|
-
}),
|
|
632
|
-
<img src="${
|
|
633
|
-
<div style="flex-grow:1;">${
|
|
634
|
-
</div>` :
|
|
655
|
+
let n = f(this.rawContent.content), p;
|
|
656
|
+
return a.forEach((r) => {
|
|
657
|
+
n.includes(r.keyWord) && (p = r.path);
|
|
658
|
+
}), p != null ? d != null ? d(p, n) : `<div style="display:flex;">
|
|
659
|
+
<img src="${p}" alt="" style="${i}" class="${e}">
|
|
660
|
+
<div style="flex-grow:1;">${n}</div>
|
|
661
|
+
</div>` : f(this.rawContent.content);
|
|
635
662
|
},
|
|
636
663
|
bilibili: () => {
|
|
637
664
|
if (typeof this.rawContent.info[0][13] == "object")
|
|
638
665
|
return `<img src="${this.rawContent.info[0][13].url}" alt="" style="${i}" class="${e}">`;
|
|
639
|
-
const
|
|
640
|
-
let
|
|
641
|
-
const
|
|
642
|
-
for (let
|
|
643
|
-
const
|
|
644
|
-
|
|
666
|
+
const n = this.rawContent.info[0][15].extra, p = JSON.parse(n);
|
|
667
|
+
let r = f(p.content);
|
|
668
|
+
const l = p.emots;
|
|
669
|
+
for (let h in l) {
|
|
670
|
+
const D = new RegExp(`\\${h}`, "g");
|
|
671
|
+
r = r.replace(D, `<img src="${l[h].url}" alt="" style="${s}" class="${c}">`);
|
|
645
672
|
}
|
|
646
|
-
return
|
|
673
|
+
return r;
|
|
647
674
|
},
|
|
648
675
|
openblive: () => {
|
|
649
676
|
if (this.rawContent.data.emoji_img_url)
|
|
650
677
|
return `<img src="${this.rawContent.data.emoji_img_url}" alt="" style="${i}" class="${e}">`;
|
|
651
|
-
let
|
|
652
|
-
return
|
|
653
|
-
const
|
|
654
|
-
|
|
655
|
-
}),
|
|
678
|
+
let n = f(this.rawContent.data.msg);
|
|
679
|
+
return y.forEach((p) => {
|
|
680
|
+
const r = new RegExp(`\\${p[0]}`, "g");
|
|
681
|
+
n = n.replace(r, `<img src="${p[1]}" alt="" style="${s}" class="${c}">`);
|
|
682
|
+
}), n;
|
|
656
683
|
},
|
|
657
684
|
douyin: () => {
|
|
658
|
-
let
|
|
659
|
-
return
|
|
660
|
-
const
|
|
661
|
-
|
|
662
|
-
}),
|
|
685
|
+
let n = f(this.rawContent.content);
|
|
686
|
+
return v.forEach((p) => {
|
|
687
|
+
const r = new RegExp(`\\${p[0]}`, "g");
|
|
688
|
+
n = n.replace(r, `<img src="${p[1]}" alt="" style="${s}" class="${c}">`);
|
|
689
|
+
}), n;
|
|
663
690
|
}
|
|
664
691
|
};
|
|
665
|
-
if (this.type === "comment" &&
|
|
666
|
-
return
|
|
692
|
+
if (this.type === "comment" && b[this.platform])
|
|
693
|
+
return b[this.platform]();
|
|
667
694
|
}
|
|
695
|
+
/**
|
|
696
|
+
* Custom comment content builder.
|
|
697
|
+
*
|
|
698
|
+
* @param builder - builder function.
|
|
699
|
+
*
|
|
700
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-commentbuilder}
|
|
701
|
+
*/
|
|
668
702
|
CommentBuilder(t) {
|
|
669
703
|
const i = {
|
|
670
704
|
acfun: () => {
|
|
671
|
-
let e =
|
|
705
|
+
let e = f(this.rawContent.content);
|
|
672
706
|
return t(e);
|
|
673
707
|
},
|
|
674
708
|
bilibili: () => {
|
|
675
|
-
let e,
|
|
709
|
+
let e, s = [];
|
|
676
710
|
typeof this.rawContent.info[0][13] == "object" && (e = this.rawContent.info[0][13].url);
|
|
677
|
-
const
|
|
678
|
-
for (let
|
|
679
|
-
|
|
680
|
-
return t(
|
|
711
|
+
const c = this.rawContent.info[0][15].extra, a = JSON.parse(c), d = f(a.content), b = a.emots;
|
|
712
|
+
for (let n in b)
|
|
713
|
+
s.push([n, b[n].url]);
|
|
714
|
+
return t(d, e, s);
|
|
681
715
|
},
|
|
682
716
|
openblive: () => {
|
|
683
717
|
let e;
|
|
684
718
|
this.rawContent.data.emoji_img_url && (e = this.rawContent.data.emoji_img_url);
|
|
685
|
-
const
|
|
686
|
-
return t(
|
|
719
|
+
const s = f(this.rawContent.data.msg);
|
|
720
|
+
return t(s, e, y);
|
|
687
721
|
},
|
|
688
722
|
douyin: () => {
|
|
689
|
-
const e =
|
|
690
|
-
return t(e, void 0,
|
|
723
|
+
const e = f(this.rawContent.content);
|
|
724
|
+
return t(e, void 0, v);
|
|
691
725
|
}
|
|
692
726
|
};
|
|
693
727
|
if (this.type === "comment" && i[this.platform])
|
|
@@ -720,7 +754,7 @@ class w {
|
|
|
720
754
|
// 可能是单价(未确认),舰长价格198实际可能为138
|
|
721
755
|
get guardPrice() {
|
|
722
756
|
if ((this.platform === "bilibili" || this.platform === "openblive") && "data" in this.rawContent && "price" in this.rawContent.data)
|
|
723
|
-
return this.rawContent.price / 1e3;
|
|
757
|
+
return this.rawContent.data.price / 1e3;
|
|
724
758
|
}
|
|
725
759
|
get giftName() {
|
|
726
760
|
const t = {
|
|
@@ -737,7 +771,14 @@ class w {
|
|
|
737
771
|
acfun: () => this.rawContent.gift.batchSize,
|
|
738
772
|
bilibili: () => this.rawContent.data.num,
|
|
739
773
|
openblive: () => this.rawContent.data.gift_num,
|
|
740
|
-
douyin: () =>
|
|
774
|
+
douyin: () => {
|
|
775
|
+
if (this.rawContent.sendType === 4) {
|
|
776
|
+
const e = this.rawContent.comboCount, s = this.rawContent.groupId, c = this.rawContent.giftId, a = this.uid, d = `${s}_${a}_${c}`;
|
|
777
|
+
let b = 0;
|
|
778
|
+
return x.douyinGiftGroup.has(d) && (b = x.douyinGiftGroup.get(d) ?? 0), x.douyinGiftGroup.set(d, e), x.douyinGiftGroup.size > 1024 && x.douyinGiftGroup.delete(x.douyinGiftGroup.keys().next().value), e - b;
|
|
779
|
+
}
|
|
780
|
+
return this.rawContent.groupCount;
|
|
781
|
+
}
|
|
741
782
|
};
|
|
742
783
|
if (this.type === "gift" && t[this.platform])
|
|
743
784
|
return t[this.platform]();
|
|
@@ -784,24 +825,27 @@ class w {
|
|
|
784
825
|
const {
|
|
785
826
|
douyinSteps: i = [7, 11, 15],
|
|
786
827
|
acfunSteps: e = [7, 11, 15],
|
|
787
|
-
acfunClubUid:
|
|
788
|
-
} = t,
|
|
828
|
+
acfunClubUid: s = 0
|
|
829
|
+
} = t, c = (b) => {
|
|
789
830
|
if (this.clubLevel === void 0)
|
|
790
831
|
return 0;
|
|
791
|
-
const
|
|
792
|
-
return
|
|
793
|
-
}, a = () => this.guardLevel && this.guardLevel > 0 ? 4 - this.guardLevel : 0,
|
|
794
|
-
douyin: () =>
|
|
795
|
-
acfun: () =>
|
|
832
|
+
const n = b.findIndex((p) => this.clubLevel <= p);
|
|
833
|
+
return n !== -1 ? n : b.length;
|
|
834
|
+
}, a = () => this.guardLevel && this.guardLevel > 0 ? 4 - this.guardLevel : 0, d = {
|
|
835
|
+
douyin: () => c(i),
|
|
836
|
+
acfun: () => s > 0 && this.acfunClubUid !== s ? 0 : c(e),
|
|
796
837
|
bilibili: () => a(),
|
|
797
838
|
openblive: () => a()
|
|
798
839
|
};
|
|
799
|
-
if (
|
|
800
|
-
return
|
|
840
|
+
if (d[this.platform])
|
|
841
|
+
return d[this.platform]();
|
|
801
842
|
}
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
|
|
843
|
+
};
|
|
844
|
+
// groupId_userId_giftId : comboCount
|
|
845
|
+
u(x, "douyinGiftGroup", /* @__PURE__ */ new Map());
|
|
846
|
+
let j = x;
|
|
847
|
+
function f(o) {
|
|
848
|
+
return o.replace(/[&<>"']/g, function(t) {
|
|
805
849
|
switch (t) {
|
|
806
850
|
case "&":
|
|
807
851
|
return "&";
|
|
@@ -819,9 +863,9 @@ function b(c) {
|
|
|
819
863
|
});
|
|
820
864
|
}
|
|
821
865
|
export {
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
866
|
+
j as Parser,
|
|
867
|
+
m as WebSocketManager,
|
|
868
|
+
F as getBfaceURL,
|
|
869
|
+
w as getWebSocketURL,
|
|
870
|
+
I as onMessage
|
|
827
871
|
};
|
package/dist/dimsum-chat.umd.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(c,p){typeof exports=="object"&&typeof module<"u"?p(exports):typeof define=="function"&&define.amd?define(["exports"],p):(c=typeof globalThis<"u"?globalThis:c||self,p(c.DimSumChat={}))})(this,function(c){"use strict";var B=Object.defineProperty;var F=(c,p,x)=>p in c?B(c,p,{enumerable:!0,configurable:!0,writable:!0,value:x}):c[p]=x;var m=(c,p,x)=>(F(c,typeof p!="symbol"?p+"":p,x),x);const g=class g{constructor(){m(this,"webSocket");m(this,"messageListeners");this.webSocket=null,this.messageListeners=[]}static getInstance(){return g.instance||(g.instance=new g),g.instance}connect(t){this.webSocket||(this.webSocket=new WebSocket(t),this.webSocket.onmessage=this.handleMessage.bind(this),this.webSocket.onopen=()=>{console.log("connected")},this.webSocket.onclose=()=>{console.log("close"),setTimeout(()=>{this.webSocket=null,this.connect(t)},3e3)})}handleMessage(t){const i=t.data;this.messageListeners.forEach(e=>e(i))}addMessageListener(t){this.messageListeners.push(t)}removeMessageListener(t){const i=this.messageListeners.indexOf(t);i!==-1&&this.messageListeners.splice(i,1)}};m(g,"instance");let p=g;function x(){const f=new URL(window.location.href),t=f.protocol==="https:"?"wss:":"ws:",i=f.host;return`${t}//${i}/websocket`}function z(f){const t=new URL(window.location.href),i=t.protocol,e=t.host;return`${i}//${e}/bface/${f}`}function w(f,t={}){const{customWsServer:i=x()}=t,e=p.getInstance();e.connect(i),e.addMessageListener(n=>{const o=JSON.parse(n),d=new y(o);f(o,d)})}const l=[["[过年牛]","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"]],v=[["[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"]];class y{constructor(t){m(this,"rawType");m(this,"rawContent");m(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,e=Object.getPrototypeOf(this);Object.getOwnPropertyNames(e).forEach(n=>{const o=Object.getOwnPropertyDescriptor(e,n);o&&typeof o.get=="function"&&Object.defineProperty(i,n,{get:function(){return i.getCachedValue(n,()=>{var d;return(d=o.get)==null?void 0:d.call(i)})},enumerable:!0,configurable:!0})})}getCachedValue(t,i){return this._cachedValues[t]||(this._cachedValues[t]=i()),this._cachedValues[t]}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(i.test(this.rawType))return"acfun"}get type(){const t={comment:["LIVE_OPEN_PLATFORM_DM","CommonActionSignalComment","WebcastChatMessage","DANMU_MSG"],gift:["LIVE_OPEN_PLATFORM_SEND_GIFT","CommonActionSignalGift","WebcastGiftMessage","SEND_GIFT"],follow:["CommonActionSignalUserFollowAuthor","WebcastSocialMessage"],joinclub:["AcfunActionSignalJoinClub","WebcastFansclubMessage"],like:["LIVE_OPEN_PLATFORM_LIKE","CommonActionSignalLike","WebcastLikeMessage","LIKE_INFO_V3_CLICK"],guard:["LIVE_OPEN_PLATFORM_GUARD","GUARD_BUY"],superchat:["LIVE_OPEN_PLATFORM_SUPER_CHAT","SUPER_CHAT_MESSAGE"],enter:["CommonActionSignalUserEnterRoom","WebcastMemberMessage"],share:[]};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]}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}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}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&&"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(){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&&"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 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.clubName}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.fansClub.data.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]}get comment(){const t={acfun:()=>this.rawContent.content,bilibili:()=>this.rawContent.info[1],openblive:()=>this.rawContent.data.msg,douyin:()=>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:e="",emotStyle:n="",emotClass:o="",acfunCustomStickers:d=[],acfunCustomHtmlBuilder:h}=t,u={acfun:()=>{let s=r(this.rawContent.content),a;return d.forEach(b=>{s.includes(b.keyWord)&&(a=b.path)}),a!=null?h!=null?h(a,s):`<div style="display:flex;">
|
|
1
|
+
(function(p,o){typeof exports=="object"&&typeof module<"u"?o(exports):typeof define=="function"&&define.amd?define(["exports"],o):(p=typeof globalThis<"u"?globalThis:p||self,o(p.DimSumChat={}))})(this,function(p){"use strict";var F=Object.defineProperty;var I=(p,o,g)=>o in p?F(p,o,{enumerable:!0,configurable:!0,writable:!0,value:g}):p[o]=g;var m=(p,o,g)=>(I(p,typeof o!="symbol"?o+"":o,g),g);const j=class j{constructor(){m(this,"webSocket");m(this,"messageListeners");this.webSocket=null,this.messageListeners=[]}static getInstance(){return j.instance||(j.instance=new j),j.instance}connect(t){this.webSocket||(this.webSocket=new WebSocket(t),this.webSocket.onmessage=this.handleMessage.bind(this),this.webSocket.onopen=()=>{console.log("connected")},this.webSocket.onclose=()=>{console.log("close"),setTimeout(()=>{this.webSocket=null,this.connect(t)},3e3)})}handleMessage(t){const i=t.data;this.messageListeners.forEach(e=>e(i))}addMessageListener(t){this.messageListeners.push(t)}removeMessageListener(t){const i=this.messageListeners.indexOf(t);i!==-1&&this.messageListeners.splice(i,1)}};m(j,"instance");let o=j;function g(){const h=new URL(window.location.href),t=h.protocol==="https:"?"wss:":"ws:",i=h.host;return`${t}//${i}/websocket`}function C(h){const t=new URL(window.location.href),i=t.protocol,e=t.host;return`${i}//${e}/bface/${h}`}function w(h,t={}){const{customWsServer:i=g()}=t,e=o.getInstance();e.connect(i),e.addMessageListener(s=>{const c=JSON.parse(s),d=new l(c);h(c,d)})}const y=[["[过年牛]","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"]],D=[["[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"]],u=class u{constructor(t){m(this,"rawType");m(this,"rawContent");m(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,e=Object.getPrototypeOf(this);Object.getOwnPropertyNames(e).forEach(s=>{const c=Object.getOwnPropertyDescriptor(e,s);c&&typeof c.get=="function"&&Object.defineProperty(i,s,{get:function(){return i.getCachedValue(s,()=>{var d;return(d=c.get)==null?void 0:d.call(i)})},enumerable:!0,configurable:!0})})}getCachedValue(t,i){return this._cachedValues[t]||(this._cachedValues[t]=i()),this._cachedValues[t]}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(i.test(this.rawType))return"acfun"}get type(){const t={comment:["LIVE_OPEN_PLATFORM_DM","CommonActionSignalComment","WebcastChatMessage","DANMU_MSG"],gift:["LIVE_OPEN_PLATFORM_SEND_GIFT","CommonActionSignalGift","WebcastGiftMessage","SEND_GIFT"],follow:["CommonActionSignalUserFollowAuthor","WebcastSocialMessage"],joinclub:["AcfunActionSignalJoinClub","WebcastFansclubMessage"],like:["LIVE_OPEN_PLATFORM_LIKE","CommonActionSignalLike","WebcastLikeMessage","LIKE_INFO_V3_CLICK"],guard:["LIVE_OPEN_PLATFORM_GUARD","GUARD_BUY"],superchat:["LIVE_OPEN_PLATFORM_SUPER_CHAT","SUPER_CHAT_MESSAGE"],enter:["CommonActionSignalUserEnterRoom","WebcastMemberMessage"],share:[]};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]}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}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}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&&"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(){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&&"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 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.clubName}if(this.platform==="douyin"&&"user"in this.rawContent)return this.rawContent.user.fansClub.data.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]}get comment(){const t={acfun:()=>this.rawContent.content,bilibili:()=>this.rawContent.info[1],openblive:()=>this.rawContent.data.msg,douyin:()=>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:e="",emotStyle:s="",emotClass:c="",acfunCustomStickers:d=[],acfunCustomHtmlBuilder:b}=t,r={acfun:()=>{let n=x(this.rawContent.content),a;return d.forEach(f=>{n.includes(f.keyWord)&&(a=f.path)}),a!=null?b!=null?b(a,n):`<div style="display:flex;">
|
|
2
2
|
<img src="${a}" alt="" style="${i}" class="${e}">
|
|
3
|
-
<div style="flex-grow:1;">${
|
|
4
|
-
</div>`:
|
|
3
|
+
<div style="flex-grow:1;">${n}</div>
|
|
4
|
+
</div>`:x(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="${e}">`;const n=this.rawContent.info[0][15].extra,a=JSON.parse(n);let f=x(a.content);const z=a.emots;for(let v in z){const B=new RegExp(`\\${v}`,"g");f=f.replace(B,`<img src="${z[v].url}" alt="" style="${s}" class="${c}">`)}return f},openblive:()=>{if(this.rawContent.data.emoji_img_url)return`<img src="${this.rawContent.data.emoji_img_url}" alt="" style="${i}" class="${e}">`;let n=x(this.rawContent.data.msg);return D.forEach(a=>{const f=new RegExp(`\\${a[0]}`,"g");n=n.replace(f,`<img src="${a[1]}" alt="" style="${s}" class="${c}">`)}),n},douyin:()=>{let n=x(this.rawContent.content);return y.forEach(a=>{const f=new RegExp(`\\${a[0]}`,"g");n=n.replace(f,`<img src="${a[1]}" alt="" style="${s}" class="${c}">`)}),n}};if(this.type==="comment"&&r[this.platform])return r[this.platform]()}CommentBuilder(t){const i={acfun:()=>{let e=x(this.rawContent.content);return t(e)},bilibili:()=>{let e,s=[];typeof this.rawContent.info[0][13]=="object"&&(e=this.rawContent.info[0][13].url);const c=this.rawContent.info[0][15].extra,d=JSON.parse(c),b=x(d.content),r=d.emots;for(let n in r)s.push([n,r[n].url]);return t(b,e,s)},openblive:()=>{let e;this.rawContent.data.emoji_img_url&&(e=this.rawContent.data.emoji_img_url);const s=x(this.rawContent.data.msg);return t(s,e,D)},douyin:()=>{const e=x(this.rawContent.content);return t(e,void 0,y)}};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}}}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}}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 giftName(){const t={acfun:()=>this.rawContent.giftInfo.name,bilibili:()=>this.rawContent.data.giftName,openblive:()=>this.rawContent.data.gift_name,douyin:()=>this.rawContent.gift.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 e=this.rawContent.comboCount,s=this.rawContent.groupId,c=this.rawContent.giftId,d=this.uid,b=`${s}_${d}_${c}`;let r=0;return u.douyinGiftGroup.has(b)&&(r=u.douyinGiftGroup.get(b)??0),u.douyinGiftGroup.set(b,e),u.douyinGiftGroup.size>1024&&u.douyinGiftGroup.delete(u.douyinGiftGroup.keys().next().value),e-r}return this.rawContent.groupCount}};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};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 superChatComment(){const t={bilibili:()=>this.rawContent.data.message,openblive:()=>this.rawContent.data.message};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};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],acfunSteps:e=[7,11,15],acfunClubUid:s=0}=t,c=r=>{if(this.clubLevel===void 0)return 0;const n=r.findIndex(a=>this.clubLevel<=a);return n!==-1?n:r.length},d=()=>this.guardLevel&&this.guardLevel>0?4-this.guardLevel:0,b={douyin:()=>c(i),acfun:()=>s>0&&this.acfunClubUid!==s?0:c(e),bilibili:()=>d(),openblive:()=>d()};if(b[this.platform])return b[this.platform]()}};m(u,"douyinGiftGroup",new Map);let l=u;function x(h){return h.replace(/[&<>"']/g,function(t){switch(t){case"&":return"&";case"<":return"<";case">":return">";case'"':return""";case"'":return"'";default:return t}})}p.Parser=l,p.WebSocketManager=o,p.getBfaceURL=C,p.getWebSocketURL=g,p.onMessage=w,Object.defineProperty(p,Symbol.toStringTag,{value:"Module"})});
|
package/dist/parser.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type MessageType = "comment" | "gift" | "follow" | "joinclub" | "like" | "guard" | "superchat" | "enter" | "share" | undefined;
|
|
2
2
|
declare class Parser {
|
|
3
|
+
private static douyinGiftGroup;
|
|
3
4
|
readonly rawType: string;
|
|
4
5
|
readonly rawContent: any;
|
|
5
6
|
private _cachedValues;
|
|
@@ -9,21 +10,57 @@ declare class Parser {
|
|
|
9
10
|
});
|
|
10
11
|
private getCachedValue;
|
|
11
12
|
/**
|
|
12
|
-
*
|
|
13
|
+
* The live platform to which the message belongs.
|
|
13
14
|
*
|
|
14
15
|
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-platform}
|
|
15
16
|
*/
|
|
16
17
|
get platform(): "acfun" | "openblive" | "bilibili" | "douyin" | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* Message Type.
|
|
20
|
+
*
|
|
21
|
+
* @type see {@link MessageType}
|
|
22
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-type}
|
|
23
|
+
*/
|
|
17
24
|
get type(): MessageType;
|
|
25
|
+
/**
|
|
26
|
+
* User Name.
|
|
27
|
+
*
|
|
28
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-username}
|
|
29
|
+
*/
|
|
18
30
|
get userName(): string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* User ID.
|
|
33
|
+
*
|
|
34
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-uid}
|
|
35
|
+
*/
|
|
19
36
|
get uid(): number | string | undefined;
|
|
20
37
|
get clubLevel(): number | undefined;
|
|
21
38
|
get clubName(): string | undefined;
|
|
22
39
|
get acfunClubUid(): number | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* User subscription status in the current Douyin live room.
|
|
42
|
+
*
|
|
43
|
+
* @type `0` for non-member, `1` for monthly member, `2` for annual member
|
|
44
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-douyinsubscribe}
|
|
45
|
+
*/
|
|
23
46
|
get douyinSubscribe(): 0 | 1 | 2 | undefined;
|
|
24
47
|
get avatar(): string | undefined;
|
|
25
48
|
get comment(): string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* Simple method to construct comments as HTML strings. Useful for rendering comment messages in general.
|
|
51
|
+
*
|
|
52
|
+
* @param options - {@link commentParseOptions}
|
|
53
|
+
* @returns Rendered comment HTML.
|
|
54
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-getcommenthtml}
|
|
55
|
+
*/
|
|
26
56
|
getCommentHTML(options?: commentParseOptions): string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* Custom comment content builder.
|
|
59
|
+
*
|
|
60
|
+
* @param builder - builder function.
|
|
61
|
+
*
|
|
62
|
+
* @see {@link https://dimsum.chat/zh/api/parser.html#parser-commentbuilder}
|
|
63
|
+
*/
|
|
27
64
|
CommentBuilder(builder: (comment: string, stickerUrl?: string, emots?: [string, string][]) => string): string | undefined;
|
|
28
65
|
/**
|
|
29
66
|
* 大航海等级:0-无 3-舰长 2-提督 1-总督
|