@allior/wmake-streamelements-events 2.0.3 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +110 -86
  2. package/dist/react/hooks/factory.d.ts +31 -0
  3. package/dist/react/hooks/factory.d.ts.map +1 -0
  4. package/dist/react/hooks/use-on-event-received.d.ts +73 -13
  5. package/dist/react/hooks/use-on-event-received.d.ts.map +1 -1
  6. package/dist/react/hooks/use-on-widget-load.d.ts +1 -1
  7. package/dist/react/index.iife.js +2 -2
  8. package/dist/react/index.iife.js.map +1 -1
  9. package/dist/react/index.js +49 -91
  10. package/dist/react/index.js.map +1 -1
  11. package/dist/root/{aggregate.d.ts → aggregator/index.d.ts} +5 -3
  12. package/dist/root/aggregator/index.d.ts.map +1 -0
  13. package/dist/root/aggregator/types.d.ts +14 -0
  14. package/dist/root/aggregator/types.d.ts.map +1 -0
  15. package/dist/root/classifier.d.ts.map +1 -1
  16. package/dist/root/guards/on-event-received.d.ts +2 -3
  17. package/dist/root/guards/on-event-received.d.ts.map +1 -1
  18. package/dist/root/index.d.ts +1 -1
  19. package/dist/root/index.d.ts.map +1 -1
  20. package/dist/root/index.iife.js +2 -2
  21. package/dist/root/index.iife.js.map +1 -1
  22. package/dist/root/index.js +2 -3116
  23. package/dist/root/queue/alert-queue.d.ts +1 -1
  24. package/dist/root/queue/next-alert-callback.d.ts +1 -1
  25. package/dist/root/types/on-event-received/base.d.ts +0 -13
  26. package/dist/root/types/on-event-received/base.d.ts.map +1 -1
  27. package/dist/root/types/on-event-received/button.d.ts +10 -0
  28. package/dist/root/types/on-event-received/button.d.ts.map +1 -0
  29. package/dist/root/types/on-event-received/index.d.ts +8 -8
  30. package/dist/root/types/on-event-received/index.d.ts.map +1 -1
  31. package/dist/root/types/on-event-received/message.d.ts +1 -1
  32. package/dist/root/types/on-event-received/moderation.d.ts +9 -1
  33. package/dist/root/types/on-event-received/moderation.d.ts.map +1 -1
  34. package/dist/root/types/on-event-received/subscriber.d.ts +2 -2
  35. package/dist/root/types/on-event-received/subscriber.d.ts.map +1 -1
  36. package/dist/root/types/on-event-received/unknown.d.ts +6 -0
  37. package/dist/root/types/on-event-received/unknown.d.ts.map +1 -0
  38. package/dist/root-DJod-F4M.js +2918 -0
  39. package/dist/root-DJod-F4M.js.map +1 -0
  40. package/package.json +9 -4
  41. package/dist/root/aggregate.d.ts.map +0 -1
  42. package/dist/root/index.js.map +0 -1
  43. package/dist/root/types/on-event-received/donation.d.ts +0 -25
  44. package/dist/root/types/on-event-received/donation.d.ts.map +0 -1
  45. package/dist/root/types/on-event-received/other.d.ts +0 -10
  46. package/dist/root/types/on-event-received/other.d.ts.map +0 -1
@@ -0,0 +1,2918 @@
1
+ //#region src/root/classifier.ts
2
+ function e(e) {
3
+ if (e == null) return {
4
+ tier: 0,
5
+ tierText: ""
6
+ };
7
+ let t = typeof e == "string" ? e : String(e), n = parseInt(t, 10);
8
+ return Number.isNaN(n) ? {
9
+ tier: 0,
10
+ tierText: t
11
+ } : {
12
+ tier: n >= 3e3 ? 3 : n >= 2e3 ? 2 : +(n >= 1e3),
13
+ tierText: t
14
+ };
15
+ }
16
+ function t(e) {
17
+ let t = e.listener, n = e.event ?? {}, r = n.activityGroup, i = n.activityId ?? n._id;
18
+ return r ? String(r) : i ? String(i) : t === "subscriber-latest" && n.bulkGifted ? "sl-bulk-" + (n.sender ?? "") + "-" + (n.amount ?? "") + "-" + (n.tier ?? "") + "-" + (n._id ?? "") : `sl-${n._id ?? n.activityId ?? ""}`;
19
+ }
20
+ function n(t) {
21
+ let n = t.listener, r = t.event ?? {}, i = r.data ?? r, a = e(i.tier ?? r.tier);
22
+ if (n === "event") {
23
+ if (r.type === "communityGiftPurchase") {
24
+ let e = i.username && String(i.username).toLowerCase() === "anonymous" || i.sender === "Anonymous";
25
+ return {
26
+ type: e ? "community-gift-anonymous" : "community-gift",
27
+ tier: a.tier,
28
+ tierText: a.tierText,
29
+ totalAmount: parseInt(String(i.amount), 10) || 1,
30
+ recipients: [],
31
+ sender: e ? void 0 : i.sender ?? i.displayName ?? i.username,
32
+ anonymousDisplayName: e ? i.displayName ?? "Anonymous" : void 0
33
+ };
34
+ }
35
+ if (r.type === "subscriber") {
36
+ let e = i.gifted === !0, n = i.sender, o = parseInt(String(i.amount), 10) || 1, s = i.username ?? i.displayName, c = r.activityGroup;
37
+ if (n === "Anonymous" && c) return {
38
+ type: "community-gift-anonymous",
39
+ _role: "recipient",
40
+ activityGroup: c,
41
+ recipient: s ?? i.displayName,
42
+ tier: a.tier,
43
+ tierText: a.tierText
44
+ };
45
+ if (e && n && n !== "Anonymous") {
46
+ if (!(i.communityGifted === !0 || c != null && c !== "")) {
47
+ let e = String(i.message ?? "").indexOf("first Gift Sub") !== -1;
48
+ return {
49
+ type: "solo-sub-to-someone",
50
+ sender: n,
51
+ recipient: s ?? i.displayName,
52
+ tier: a.tier,
53
+ tierText: a.tierText,
54
+ firstGiftInChannel: e
55
+ };
56
+ }
57
+ return {
58
+ type: "community-gift",
59
+ _role: "recipient",
60
+ activityGroup: c ?? "",
61
+ recipient: s ?? i.displayName,
62
+ tier: a.tier,
63
+ tierText: a.tierText
64
+ };
65
+ }
66
+ return !e && o > 1 ? {
67
+ type: "sub-renewal",
68
+ name: s ?? i.displayName,
69
+ months: o,
70
+ tier: a.tier,
71
+ tierText: a.tierText
72
+ } : !e && o === 1 ? {
73
+ type: "self-sub",
74
+ name: s ?? i.displayName,
75
+ tier: a.tier,
76
+ tierText: a.tierText
77
+ } : c ? {
78
+ type: "community-gift",
79
+ _role: "recipient",
80
+ activityGroup: c,
81
+ recipient: s ?? i.displayName,
82
+ tier: a.tier,
83
+ tierText: a.tierText
84
+ } : {
85
+ type: "unknown",
86
+ detail: t
87
+ };
88
+ }
89
+ return {
90
+ type: "unknown",
91
+ detail: t
92
+ };
93
+ }
94
+ if (n === "subscriber-latest") {
95
+ let e = r.bulkGifted === !0, n = r.sender, i = r.name, o = parseInt(String(r.amount), 10) || 1, s = r.gifted === !0, c = r.isCommunityGift === !0 || r.communityGifted === !0;
96
+ if (e && n === "Anonymous") return {
97
+ type: "community-gift-anonymous",
98
+ tier: a.tier,
99
+ tierText: a.tierText,
100
+ totalAmount: o,
101
+ recipients: []
102
+ };
103
+ if (e && n) return {
104
+ type: "community-gift",
105
+ sender: n,
106
+ tier: a.tier,
107
+ tierText: a.tierText,
108
+ totalAmount: o,
109
+ recipients: []
110
+ };
111
+ if (s && !c && n) {
112
+ let e = String(r.message ?? "").indexOf("first Gift Sub") !== -1;
113
+ return {
114
+ type: "solo-sub-to-someone",
115
+ sender: n,
116
+ recipient: i ?? "",
117
+ tier: a.tier,
118
+ tierText: a.tierText,
119
+ firstGiftInChannel: e
120
+ };
121
+ }
122
+ return !s && o > 1 ? {
123
+ type: "sub-renewal",
124
+ name: i ?? "",
125
+ months: o,
126
+ tier: a.tier,
127
+ tierText: a.tierText
128
+ } : !s && o === 1 && (n == null || i === n) ? {
129
+ type: "self-sub",
130
+ name: i ?? "",
131
+ tier: a.tier,
132
+ tierText: a.tierText
133
+ } : {
134
+ type: "unknown",
135
+ detail: t
136
+ };
137
+ }
138
+ if (n === "follower-latest") return {
139
+ type: "follow",
140
+ name: r.name ?? ""
141
+ };
142
+ if (n === "cheer-latest") {
143
+ let e = parseInt(String(r.amount), 10) || 0;
144
+ return {
145
+ type: "cheer",
146
+ name: r.name ?? "",
147
+ amount: e
148
+ };
149
+ }
150
+ if (n === "raid-latest") {
151
+ let e = parseInt(String(r.amount), 10) || 0;
152
+ return {
153
+ type: "raid",
154
+ name: r.name ?? "",
155
+ viewers: e
156
+ };
157
+ }
158
+ return n === "delete-message" ? {
159
+ type: "delete-message",
160
+ messageId: r.msgId ?? ""
161
+ } : n === "delete-messages" ? {
162
+ type: "delete-messages",
163
+ userName: r.userId ?? ""
164
+ } : n === "event:test" && r.listener === "widget-button" ? {
165
+ type: "button",
166
+ field: r.field
167
+ } : {
168
+ type: "unknown",
169
+ detail: t
170
+ };
171
+ }
172
+ //#endregion
173
+ //#region src/root/aggregator/index.ts
174
+ var r = 2500, i = {}, a = {};
175
+ function o(e, t) {
176
+ if (!e) return null;
177
+ if (typeof e._has == "function" && typeof e._set == "function") return e;
178
+ let n = e[t];
179
+ return n && typeof n._has == "function" ? n : null;
180
+ }
181
+ function s(e, t, n, r) {
182
+ let i = o(n, t.type);
183
+ i?._has(e) || (i && i._set(e, !0), r(t));
184
+ }
185
+ function c(e, t, n, r) {
186
+ let o = i[e];
187
+ if (!o) return;
188
+ delete i[e], a[e] && (clearTimeout(a[e]), delete a[e]);
189
+ let c = o.purchase, l = o.subscribers ?? [], u = o.type, d = o.tier, f = o.tierText, p = o.totalAmount ?? l.length, m = l.map((e) => e.recipient ?? e.username ?? e.name).filter(Boolean), h = l[0]?.sender, g = c?.sender ?? o.sender ?? h;
190
+ u === "community-gift" && r && g === r || (u === "community-gift-anonymous" ? s(e, {
191
+ type: "community-gift-anonymous",
192
+ tier: d,
193
+ tierText: f,
194
+ totalAmount: p,
195
+ recipients: m,
196
+ anonymousDisplayName: c?.anonymousDisplayName
197
+ }, t, n) : s(e, {
198
+ type: "community-gift",
199
+ sender: g,
200
+ tier: d,
201
+ tierText: f,
202
+ totalAmount: p,
203
+ recipients: m
204
+ }, t, n));
205
+ }
206
+ function l(e, o, s) {
207
+ let l = o?.cacheSubs, u = o?.broadcasterLogin ?? "", d = n(e);
208
+ if (!d) {
209
+ s(null);
210
+ return;
211
+ }
212
+ let f = t(e), p = e.event ?? {}, m = p.data ?? p;
213
+ if (d._role === "recipient") {
214
+ let e = d, t = e.activityGroup ?? f;
215
+ i[t] || (i[t] = {
216
+ type: e.type,
217
+ subscribers: [],
218
+ tier: e.tier,
219
+ tierText: e.tierText,
220
+ totalAmount: 0
221
+ }), a[t] && clearTimeout(a[t]), a[t] = setTimeout(() => {
222
+ c(t, l, s, u);
223
+ }, r), i[t].subscribers.push({
224
+ recipient: e.recipient,
225
+ username: m.username,
226
+ name: m.displayName,
227
+ sender: m.sender
228
+ }), i[t].totalAmount === 0 && (i[t].totalAmount = 1);
229
+ return;
230
+ }
231
+ if (d.type === "community-gift-anonymous" || d.type === "community-gift") {
232
+ if (e.listener === "event" && p.type === "communityGiftPurchase") {
233
+ let e = p.activityGroup ?? m?.activityGroup ?? f, t = d;
234
+ i[e] ? (i[e].purchase = t, i[e].tier = t.tier, i[e].tierText = t.tierText, i[e].totalAmount = t.totalAmount ?? i[e].totalAmount, i[e].sender = t.sender, a[e] && clearTimeout(a[e]), a[e] = setTimeout(() => {
235
+ c(e, l, s, u);
236
+ }, r)) : (i[e] = {
237
+ type: t.type,
238
+ purchase: t,
239
+ subscribers: [],
240
+ tier: t.tier,
241
+ tierText: t.tierText,
242
+ totalAmount: Number(t.totalAmount) || 0,
243
+ sender: t.sender
244
+ }, a[e] = setTimeout(() => {
245
+ c(e, l, s, u);
246
+ }, r));
247
+ return;
248
+ }
249
+ if (e.listener === "subscriber-latest") {
250
+ let e = d;
251
+ if (d.type === "community-gift" && u && e.sender === u) {
252
+ s(null);
253
+ return;
254
+ }
255
+ return;
256
+ }
257
+ return;
258
+ }
259
+ }
260
+ //#endregion
261
+ //#region src/root/sources/on-widget-load-detail.ts
262
+ var u = {
263
+ session: {
264
+ data: {
265
+ "follower-latest": { name: "imacanadiannn" },
266
+ "follower-session": { count: 0 },
267
+ "follower-week": { count: 0 },
268
+ "follower-month": { count: 0 },
269
+ "follower-goal": { amount: 137 },
270
+ "follower-total": {
271
+ count: 118,
272
+ activityId: "",
273
+ sessionTop: !1
274
+ },
275
+ "subscriber-latest": {
276
+ name: "",
277
+ amount: 0,
278
+ tier: "",
279
+ message: ""
280
+ },
281
+ "subscriber-new-latest": {
282
+ name: "",
283
+ amount: 0,
284
+ message: ""
285
+ },
286
+ "subscriber-resub-latest": {
287
+ name: "",
288
+ amount: 0,
289
+ message: ""
290
+ },
291
+ "subscriber-gifted-latest": {
292
+ name: "",
293
+ amount: 0,
294
+ message: "",
295
+ tier: "",
296
+ sender: ""
297
+ },
298
+ "subscriber-session": { count: 0 },
299
+ "subscriber-new-session": { count: 0 },
300
+ "subscriber-resub-session": { count: 0 },
301
+ "subscriber-gifted-session": { count: 0 },
302
+ "subscriber-week": { count: 0 },
303
+ "subscriber-month": { count: 0 },
304
+ "subscriber-goal": { amount: 0 },
305
+ "subscriber-total": {
306
+ count: 0,
307
+ activityId: "",
308
+ sessionTop: !1
309
+ },
310
+ "subscriber-points": {
311
+ amount: 0,
312
+ activityId: "",
313
+ sessionTop: !1
314
+ },
315
+ "subscriber-alltime-gifter": {
316
+ name: "",
317
+ amount: 0
318
+ },
319
+ "host-latest": {
320
+ name: "",
321
+ amount: 0
322
+ },
323
+ "raid-latest": {
324
+ name: "agnascor2",
325
+ amount: 6
326
+ },
327
+ "cheer-session": { amount: 0 },
328
+ "cheer-week": { amount: 0 },
329
+ "cheer-month": { amount: 0 },
330
+ "cheer-total": { amount: 0 },
331
+ "cheer-count": { count: 0 },
332
+ "cheer-goal": { amount: 0 },
333
+ "cheer-latest": {
334
+ name: "",
335
+ amount: 0
336
+ },
337
+ "cheer-session-top-donation": {
338
+ amount: 0,
339
+ name: ""
340
+ },
341
+ "cheer-weekly-top-donation": {
342
+ amount: 0,
343
+ name: ""
344
+ },
345
+ "cheer-monthly-top-donation": {
346
+ amount: 0,
347
+ name: ""
348
+ },
349
+ "cheer-alltime-top-donation": {
350
+ amount: 0,
351
+ name: ""
352
+ },
353
+ "cheer-session-top-donator": {
354
+ amount: 0,
355
+ name: ""
356
+ },
357
+ "cheer-weekly-top-donator": {
358
+ amount: 0,
359
+ name: ""
360
+ },
361
+ "cheer-monthly-top-donator": {
362
+ amount: 0,
363
+ name: ""
364
+ },
365
+ "cheer-alltime-top-donator": {
366
+ amount: 0,
367
+ name: ""
368
+ },
369
+ "tip-latest": {
370
+ name: "",
371
+ amount: 0
372
+ },
373
+ "tip-session-top-donation": {
374
+ amount: 0,
375
+ name: ""
376
+ },
377
+ "tip-weekly-top-donation": {
378
+ name: "",
379
+ amount: 0
380
+ },
381
+ "tip-monthly-top-donation": {
382
+ name: "",
383
+ amount: 0
384
+ },
385
+ "tip-alltime-top-donation": {
386
+ name: "",
387
+ amount: 0
388
+ },
389
+ "tip-session-top-donator": {
390
+ amount: 0,
391
+ name: ""
392
+ },
393
+ "tip-weekly-top-donator": {
394
+ name: "",
395
+ amount: 0
396
+ },
397
+ "tip-monthly-top-donator": {
398
+ name: "",
399
+ amount: 0
400
+ },
401
+ "tip-alltime-top-donator": {
402
+ name: "",
403
+ amount: 0
404
+ },
405
+ "tip-session": { amount: 0 },
406
+ "tip-week": { amount: 0 },
407
+ "tip-month": { amount: 0 },
408
+ "tip-total": { amount: 0 },
409
+ "tip-count": { count: 0 },
410
+ "tip-goal": { amount: 0 },
411
+ "merch-goal-orders": { amount: 0 },
412
+ "merch-goal-items": { amount: 0 },
413
+ "merch-goal-total": { amount: 0 },
414
+ "merch-latest": {
415
+ name: "",
416
+ amount: 0,
417
+ items: []
418
+ },
419
+ "charityCampaignDonation-latest": {
420
+ name: "",
421
+ amount: 0
422
+ },
423
+ "charityCampaignDonation-weekly-top-donation": {
424
+ name: "",
425
+ amount: 0
426
+ },
427
+ "charityCampaignDonation-monthly-top-donation": {
428
+ name: "",
429
+ amount: 0
430
+ },
431
+ "charityCampaignDonation-alltime-top-donation": {
432
+ name: "",
433
+ amount: 0
434
+ },
435
+ "charityCampaignDonation-weekly-top-donator": {
436
+ name: "",
437
+ amount: 0
438
+ },
439
+ "charityCampaignDonation-monthly-top-donator": {
440
+ name: "",
441
+ amount: 0
442
+ },
443
+ "charityCampaignDonation-alltime-top-donator": {
444
+ name: "",
445
+ amount: 0
446
+ },
447
+ "cheerPurchase-latest": {
448
+ name: "",
449
+ amount: 0
450
+ },
451
+ "cheerPurchase-weekly-top-donation": {
452
+ name: "",
453
+ amount: 0
454
+ },
455
+ "cheerPurchase-monthly-top-donation": {
456
+ name: "",
457
+ amount: 0
458
+ },
459
+ "cheerPurchase-alltime-top-donation": {
460
+ name: "",
461
+ amount: 0
462
+ },
463
+ "cheerPurchase-weekly-top-donator": {
464
+ name: "",
465
+ amount: 0
466
+ },
467
+ "cheerPurchase-monthly-top-donator": {
468
+ name: "",
469
+ amount: 0
470
+ },
471
+ "cheerPurchase-alltime-top-donator": {
472
+ name: "",
473
+ amount: 0
474
+ },
475
+ "superchat-latest": {
476
+ name: "",
477
+ amount: 0
478
+ },
479
+ "superchat-weekly-top-donation": {
480
+ name: "",
481
+ amount: 0
482
+ },
483
+ "superchat-monthly-top-donation": {
484
+ name: "",
485
+ amount: 0
486
+ },
487
+ "superchat-alltime-top-donation": {
488
+ name: "",
489
+ amount: 0
490
+ },
491
+ "superchat-weekly-top-donator": {
492
+ name: "",
493
+ amount: 0
494
+ },
495
+ "superchat-monthly-top-donator": {
496
+ name: "",
497
+ amount: 0
498
+ },
499
+ "superchat-alltime-top-donator": {
500
+ name: "",
501
+ amount: 0
502
+ },
503
+ "superchat-session": { amount: 0 },
504
+ "superchat-week": { amount: 0 },
505
+ "superchat-month": { amount: 0 },
506
+ "superchat-total": { amount: 0 },
507
+ "superchat-count": { count: 0 },
508
+ "superchat-goal": { amount: 0 },
509
+ "purchase-latest": {
510
+ name: "",
511
+ amount: 0,
512
+ avatar: "",
513
+ message: "",
514
+ items: []
515
+ },
516
+ "follower-recent": [
517
+ {
518
+ name: "imacanadiannn",
519
+ createdAt: "2026-01-13T01:53:50.296Z",
520
+ type: "follower"
521
+ },
522
+ {
523
+ name: "piwo143",
524
+ createdAt: "2026-01-13T01:51:39.472Z",
525
+ type: "follower"
526
+ },
527
+ {
528
+ name: "latvan_",
529
+ createdAt: "2026-01-12T23:54:29.235Z",
530
+ type: "follower"
531
+ },
532
+ {
533
+ name: "wheinwait",
534
+ createdAt: "2026-01-12T23:11:28.946Z",
535
+ type: "follower"
536
+ },
537
+ {
538
+ name: "agnascor2",
539
+ createdAt: "2026-01-12T23:11:14.880Z",
540
+ type: "follower"
541
+ },
542
+ {
543
+ name: "sunlitetuts",
544
+ createdAt: "2026-01-12T21:03:59.207Z",
545
+ type: "follower"
546
+ },
547
+ {
548
+ name: "ayanamya",
549
+ createdAt: "2026-01-12T20:00:55.509Z",
550
+ type: "follower"
551
+ },
552
+ {
553
+ name: "hopeless28",
554
+ createdAt: "2026-01-12T18:35:21.731Z",
555
+ type: "follower"
556
+ },
557
+ {
558
+ name: "kakoytoclown",
559
+ createdAt: "2026-01-11T18:39:36.843Z",
560
+ type: "follower"
561
+ },
562
+ {
563
+ name: "dababe__jq1",
564
+ createdAt: "2024-10-10T23:27:49.699Z",
565
+ type: "follower"
566
+ },
567
+ {
568
+ name: "jjjllkmf",
569
+ createdAt: "2024-05-05T09:44:16.287Z",
570
+ type: "follower"
571
+ },
572
+ {
573
+ name: "d4c_valintine",
574
+ createdAt: "2024-05-03T15:13:28.365Z",
575
+ type: "follower"
576
+ },
577
+ {
578
+ name: "angelbliss_",
579
+ createdAt: "2024-04-30T20:07:23.132Z",
580
+ type: "follower"
581
+ },
582
+ {
583
+ name: "o1zich",
584
+ createdAt: "2024-04-22T16:23:26.139Z",
585
+ type: "follower"
586
+ },
587
+ {
588
+ name: "nearbuziky",
589
+ createdAt: "2024-04-19T19:21:27.569Z",
590
+ type: "follower"
591
+ },
592
+ {
593
+ name: "samirkasamsa",
594
+ createdAt: "2024-04-19T17:06:38.963Z",
595
+ type: "follower"
596
+ },
597
+ {
598
+ name: "flip1mip",
599
+ createdAt: "2024-04-19T17:06:18.276Z",
600
+ type: "follower"
601
+ },
602
+ {
603
+ name: "valerie_solo",
604
+ createdAt: "2024-04-19T17:06:07.473Z",
605
+ type: "follower"
606
+ },
607
+ {
608
+ name: "sxaelence",
609
+ createdAt: "2024-04-19T07:06:46.330Z",
610
+ type: "follower"
611
+ },
612
+ {
613
+ name: "avokadik99",
614
+ createdAt: "2024-04-17T16:11:29.604Z",
615
+ type: "follower"
616
+ },
617
+ {
618
+ name: "blackvoronstream",
619
+ createdAt: "2024-04-16T21:29:33.306Z",
620
+ type: "follower"
621
+ },
622
+ {
623
+ name: "baldejniyy",
624
+ createdAt: "2024-04-16T21:29:09.647Z",
625
+ type: "follower"
626
+ },
627
+ {
628
+ name: "p3ch4n_ka",
629
+ createdAt: "2024-04-16T16:37:31.841Z",
630
+ type: "follower"
631
+ },
632
+ {
633
+ name: "kakosik_bee",
634
+ createdAt: "2024-04-16T15:56:27.435Z",
635
+ type: "follower"
636
+ },
637
+ {
638
+ name: "hikotoru",
639
+ createdAt: "2024-04-16T15:13:25.226Z",
640
+ type: "follower"
641
+ }
642
+ ],
643
+ "subscriber-recent": [],
644
+ "host-recent": [],
645
+ "raid-recent": [
646
+ {
647
+ name: "agnascor2",
648
+ amount: 6,
649
+ createdAt: "2026-01-12T23:08:21.815Z",
650
+ type: "raid"
651
+ },
652
+ {
653
+ name: "justduckomgg",
654
+ amount: 7,
655
+ createdAt: "2024-04-19T17:05:53.185Z",
656
+ type: "raid"
657
+ },
658
+ {
659
+ name: "veessmk",
660
+ amount: 6,
661
+ createdAt: "2024-04-17T15:40:43.945Z",
662
+ type: "raid"
663
+ },
664
+ {
665
+ name: "night_sculptor",
666
+ amount: 12,
667
+ createdAt: "2024-04-16T18:07:40.040Z",
668
+ type: "raid"
669
+ },
670
+ {
671
+ name: "pixiemays",
672
+ amount: 6,
673
+ createdAt: "2024-04-16T16:37:24.433Z",
674
+ type: "raid"
675
+ },
676
+ {
677
+ name: "night_sculptor",
678
+ amount: 8,
679
+ createdAt: "2024-04-14T18:31:20.049Z",
680
+ type: "raid"
681
+ },
682
+ {
683
+ name: "pixiemays",
684
+ amount: 19,
685
+ createdAt: "2024-04-14T13:22:05.794Z",
686
+ type: "raid"
687
+ },
688
+ {
689
+ name: "pixiemays",
690
+ amount: 15,
691
+ createdAt: "2024-04-12T17:03:36.115Z",
692
+ type: "raid"
693
+ },
694
+ {
695
+ name: "alechkavt",
696
+ amount: 9,
697
+ createdAt: "2024-04-11T17:54:47.691Z",
698
+ type: "raid"
699
+ },
700
+ {
701
+ name: "pixiemays",
702
+ amount: 8,
703
+ createdAt: "2024-04-11T14:10:49.548Z",
704
+ type: "raid"
705
+ },
706
+ {
707
+ name: "night_sculptor",
708
+ amount: 22,
709
+ createdAt: "2024-04-09T16:13:41.195Z",
710
+ type: "raid"
711
+ },
712
+ {
713
+ name: "pixiemays",
714
+ amount: 5,
715
+ createdAt: "2024-04-08T09:54:01.603Z",
716
+ type: "raid"
717
+ },
718
+ {
719
+ name: "aki_neki",
720
+ amount: 5,
721
+ createdAt: "2024-04-07T21:52:45.919Z",
722
+ type: "raid"
723
+ },
724
+ {
725
+ name: "alechkavt",
726
+ amount: 11,
727
+ createdAt: "2024-04-07T18:59:39.286Z",
728
+ type: "raid"
729
+ },
730
+ {
731
+ name: "veessmk",
732
+ amount: 15,
733
+ createdAt: "2024-04-07T16:13:25.172Z",
734
+ type: "raid"
735
+ },
736
+ {
737
+ name: "veessmk",
738
+ amount: 10,
739
+ createdAt: "2024-03-17T16:11:38.631Z",
740
+ type: "raid"
741
+ }
742
+ ],
743
+ "charityCampaignDonation-recent": [],
744
+ "cheer-recent": [],
745
+ "cheerPurchase-recent": [],
746
+ "superchat-recent": [],
747
+ "tip-recent": [],
748
+ "merch-recent": [],
749
+ "channel-points-latest": {
750
+ amount: 0,
751
+ message: "",
752
+ name: "",
753
+ redemption: ""
754
+ },
755
+ "community-gift-latest": {
756
+ amount: 0,
757
+ name: "",
758
+ tier: ""
759
+ },
760
+ "charityCampaignDonation-session-top-donation": {
761
+ amount: 0,
762
+ name: ""
763
+ },
764
+ "charityCampaignDonation-session-top-donator": {
765
+ amount: 0,
766
+ name: ""
767
+ },
768
+ "cheerPurchase-session-top-donation": {
769
+ amount: 0,
770
+ name: ""
771
+ },
772
+ "cheerPurchase-session-top-donator": {
773
+ amount: 0,
774
+ name: ""
775
+ },
776
+ "hypetrain-latest": {
777
+ active: 0,
778
+ amount: 0,
779
+ level: 0,
780
+ levelChanged: 0,
781
+ name: "",
782
+ type: ""
783
+ },
784
+ "hypetrain-latest-top-contributors": [],
785
+ "hypetrain-level-goal": { amount: 0 },
786
+ "hypetrain-level-progress": {
787
+ amount: 0,
788
+ percent: 0
789
+ },
790
+ "hypetrain-total": { amount: 0 },
791
+ "superchat-session-top-donation": {
792
+ amount: 0,
793
+ name: ""
794
+ },
795
+ "superchat-session-top-donator": {
796
+ amount: 0,
797
+ name: ""
798
+ }
799
+ },
800
+ settings: {
801
+ autoReset: !0,
802
+ calendar: !1,
803
+ resetOnStart: !1
804
+ }
805
+ },
806
+ recents: [
807
+ {
808
+ name: "imacanadiannn",
809
+ createdAt: "2026-01-13T01:53:50.296Z",
810
+ type: "follower"
811
+ },
812
+ {
813
+ name: "piwo143",
814
+ createdAt: "2026-01-13T01:51:39.472Z",
815
+ type: "follower"
816
+ },
817
+ {
818
+ name: "latvan_",
819
+ createdAt: "2026-01-12T23:54:29.235Z",
820
+ type: "follower"
821
+ },
822
+ {
823
+ name: "wheinwait",
824
+ createdAt: "2026-01-12T23:11:28.946Z",
825
+ type: "follower"
826
+ },
827
+ {
828
+ name: "agnascor2",
829
+ createdAt: "2026-01-12T23:11:14.880Z",
830
+ type: "follower"
831
+ },
832
+ {
833
+ name: "sunlitetuts",
834
+ createdAt: "2026-01-12T21:03:59.207Z",
835
+ type: "follower"
836
+ },
837
+ {
838
+ name: "ayanamya",
839
+ createdAt: "2026-01-12T20:00:55.509Z",
840
+ type: "follower"
841
+ },
842
+ {
843
+ name: "hopeless28",
844
+ createdAt: "2026-01-12T18:35:21.731Z",
845
+ type: "follower"
846
+ },
847
+ {
848
+ name: "kakoytoclown",
849
+ createdAt: "2026-01-11T18:39:36.843Z",
850
+ type: "follower"
851
+ },
852
+ {
853
+ name: "dababe__jq1",
854
+ createdAt: "2024-10-10T23:27:49.699Z",
855
+ type: "follower"
856
+ },
857
+ {
858
+ name: "jjjllkmf",
859
+ createdAt: "2024-05-05T09:44:16.287Z",
860
+ type: "follower"
861
+ },
862
+ {
863
+ name: "d4c_valintine",
864
+ createdAt: "2024-05-03T15:13:28.365Z",
865
+ type: "follower"
866
+ },
867
+ {
868
+ name: "angelbliss_",
869
+ createdAt: "2024-04-30T20:07:23.132Z",
870
+ type: "follower"
871
+ },
872
+ {
873
+ name: "o1zich",
874
+ createdAt: "2024-04-22T16:23:26.139Z",
875
+ type: "follower"
876
+ },
877
+ {
878
+ name: "nearbuziky",
879
+ createdAt: "2024-04-19T19:21:27.569Z",
880
+ type: "follower"
881
+ },
882
+ {
883
+ name: "samirkasamsa",
884
+ createdAt: "2024-04-19T17:06:38.963Z",
885
+ type: "follower"
886
+ },
887
+ {
888
+ name: "flip1mip",
889
+ createdAt: "2024-04-19T17:06:18.276Z",
890
+ type: "follower"
891
+ },
892
+ {
893
+ name: "valerie_solo",
894
+ createdAt: "2024-04-19T17:06:07.473Z",
895
+ type: "follower"
896
+ },
897
+ {
898
+ name: "sxaelence",
899
+ createdAt: "2024-04-19T07:06:46.330Z",
900
+ type: "follower"
901
+ },
902
+ {
903
+ name: "avokadik99",
904
+ createdAt: "2024-04-17T16:11:29.604Z",
905
+ type: "follower"
906
+ },
907
+ {
908
+ name: "blackvoronstream",
909
+ createdAt: "2024-04-16T21:29:33.306Z",
910
+ type: "follower"
911
+ },
912
+ {
913
+ name: "baldejniyy",
914
+ createdAt: "2024-04-16T21:29:09.647Z",
915
+ type: "follower"
916
+ },
917
+ {
918
+ name: "p3ch4n_ka",
919
+ createdAt: "2024-04-16T16:37:31.841Z",
920
+ type: "follower"
921
+ },
922
+ {
923
+ name: "kakosik_bee",
924
+ createdAt: "2024-04-16T15:56:27.435Z",
925
+ type: "follower"
926
+ },
927
+ {
928
+ name: "hikotoru",
929
+ createdAt: "2024-04-16T15:13:25.226Z",
930
+ type: "follower"
931
+ },
932
+ {
933
+ name: "agnascor2",
934
+ amount: 6,
935
+ createdAt: "2026-01-12T23:08:21.815Z",
936
+ type: "raid"
937
+ },
938
+ {
939
+ name: "justduckomgg",
940
+ amount: 7,
941
+ createdAt: "2024-04-19T17:05:53.185Z",
942
+ type: "raid"
943
+ },
944
+ {
945
+ name: "veessmk",
946
+ amount: 6,
947
+ createdAt: "2024-04-17T15:40:43.945Z",
948
+ type: "raid"
949
+ },
950
+ {
951
+ name: "night_sculptor",
952
+ amount: 12,
953
+ createdAt: "2024-04-16T18:07:40.040Z",
954
+ type: "raid"
955
+ },
956
+ {
957
+ name: "pixiemays",
958
+ amount: 6,
959
+ createdAt: "2024-04-16T16:37:24.433Z",
960
+ type: "raid"
961
+ },
962
+ {
963
+ name: "night_sculptor",
964
+ amount: 8,
965
+ createdAt: "2024-04-14T18:31:20.049Z",
966
+ type: "raid"
967
+ },
968
+ {
969
+ name: "pixiemays",
970
+ amount: 19,
971
+ createdAt: "2024-04-14T13:22:05.794Z",
972
+ type: "raid"
973
+ },
974
+ {
975
+ name: "pixiemays",
976
+ amount: 15,
977
+ createdAt: "2024-04-12T17:03:36.115Z",
978
+ type: "raid"
979
+ },
980
+ {
981
+ name: "alechkavt",
982
+ amount: 9,
983
+ createdAt: "2024-04-11T17:54:47.691Z",
984
+ type: "raid"
985
+ },
986
+ {
987
+ name: "pixiemays",
988
+ amount: 8,
989
+ createdAt: "2024-04-11T14:10:49.548Z",
990
+ type: "raid"
991
+ },
992
+ {
993
+ name: "night_sculptor",
994
+ amount: 22,
995
+ createdAt: "2024-04-09T16:13:41.195Z",
996
+ type: "raid"
997
+ },
998
+ {
999
+ name: "pixiemays",
1000
+ amount: 5,
1001
+ createdAt: "2024-04-08T09:54:01.603Z",
1002
+ type: "raid"
1003
+ },
1004
+ {
1005
+ name: "aki_neki",
1006
+ amount: 5,
1007
+ createdAt: "2024-04-07T21:52:45.919Z",
1008
+ type: "raid"
1009
+ },
1010
+ {
1011
+ name: "alechkavt",
1012
+ amount: 11,
1013
+ createdAt: "2024-04-07T18:59:39.286Z",
1014
+ type: "raid"
1015
+ },
1016
+ {
1017
+ name: "veessmk",
1018
+ amount: 15,
1019
+ createdAt: "2024-04-07T16:13:25.172Z",
1020
+ type: "raid"
1021
+ },
1022
+ {
1023
+ name: "veessmk",
1024
+ amount: 10,
1025
+ createdAt: "2024-03-17T16:11:38.631Z",
1026
+ type: "raid"
1027
+ }
1028
+ ],
1029
+ currency: {
1030
+ code: "USD",
1031
+ name: "U.S. Dollar",
1032
+ symbol: "$"
1033
+ },
1034
+ channel: {
1035
+ username: "encry_s",
1036
+ apiToken: "HAHANOTNOW",
1037
+ id: "65ba7503dc0415cb368947b1",
1038
+ providerId: "485678132",
1039
+ avatar: "https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg"
1040
+ },
1041
+ fieldData: {
1042
+ testMessageButton: "zaytri_dynamicchatbubbles",
1043
+ previewMode: !1,
1044
+ previewType: "random",
1045
+ previewMessage: "",
1046
+ theme: "animal-crossing",
1047
+ corner: "round",
1048
+ darkMode: !1,
1049
+ highlightStyle: "normal",
1050
+ actionStyle: "italics",
1051
+ maxWidth: 400,
1052
+ maxHeight: 300,
1053
+ fixedWidth: !1,
1054
+ positionMode: "list",
1055
+ listDirection: "bottom",
1056
+ listAlignment: "center",
1057
+ topEdge: !0,
1058
+ bottomEdge: !0,
1059
+ leftEdge: !0,
1060
+ rightEdge: !0,
1061
+ edgeDeviation: 0,
1062
+ padding: 30,
1063
+ animation: "dynamic",
1064
+ dynamicModifier: 1.75,
1065
+ maxMessages: 25,
1066
+ hideOutOfBounds: !0,
1067
+ lifetime: 0,
1068
+ delay: 1,
1069
+ googleFont: "Nunito",
1070
+ customFont: "",
1071
+ fontSize: 18,
1072
+ fontWeight: "bold",
1073
+ textDirection: "ltr",
1074
+ useCustomBorderColors: !0,
1075
+ borderColor: "#fed400",
1076
+ nameColor: "#000000",
1077
+ useCustomMessageColors: !0,
1078
+ backgroundColor: "#fff3c0",
1079
+ textColor: "#000000",
1080
+ pronounsMode: "suffix",
1081
+ pronounsLowercase: !0,
1082
+ pronounsBadgeCustomColors: !1,
1083
+ pronounsBadgeBackgroundColor: "#000000",
1084
+ pronounsBadgeBorderColor: "#FFFFFF",
1085
+ pronounsBadgeTextColor: "#FFFFFF",
1086
+ showBadges: !0,
1087
+ largeEmotes: !0,
1088
+ ffzGlobal: !1,
1089
+ bttvGlobal: !1,
1090
+ emoteOnly: !1,
1091
+ highlightOnly: !1,
1092
+ allowedStrings: [],
1093
+ minMessages: 0,
1094
+ messageCooldown: 0,
1095
+ raidCooldown: 0,
1096
+ raidMin: 0,
1097
+ includeEveryone: !0,
1098
+ includeFollowers: "true",
1099
+ minFollowTime: 1,
1100
+ includeSubs: !0,
1101
+ includeVIPs: !0,
1102
+ includeMods: !0,
1103
+ allowUserList: [],
1104
+ ignoreUserList: [
1105
+ "StreamElements",
1106
+ "Streamlabs",
1107
+ "Nightbot",
1108
+ "Sery_Bot"
1109
+ ],
1110
+ ignorePrefixList: ["!"],
1111
+ volume: 50,
1112
+ soundGroup1: [],
1113
+ userLevelSoundGroup1: "everyone",
1114
+ specificUsersSoundGroup1: [],
1115
+ messageTypeSoundGroup1: "all",
1116
+ soundGroup2: [],
1117
+ userLevelSoundGroup2: "everyone",
1118
+ specificUsersSoundGroup2: [],
1119
+ messageTypeSoundGroup2: "all",
1120
+ soundGroup3: [],
1121
+ userLevelSoundGroup3: "everyone",
1122
+ specificUsersSoundGroup3: [],
1123
+ messageTypeSoundGroup3: "all",
1124
+ soundGroup4: [],
1125
+ userLevelSoundGroup4: "everyone",
1126
+ specificUsersSoundGroup4: [],
1127
+ messageTypeSoundGroup4: "all",
1128
+ soundGroup5: [],
1129
+ userLevelSoundGroup5: "everyone",
1130
+ specificUsersSoundGroup5: [],
1131
+ messageTypeSoundGroup5: "all",
1132
+ soundGroup6: [],
1133
+ userLevelSoundGroup6: "everyone",
1134
+ specificUsersSoundGroup6: [],
1135
+ messageTypeSoundGroup6: "all",
1136
+ soundGroup7: [],
1137
+ userLevelSoundGroup7: "everyone",
1138
+ specificUsersSoundGroup7: [],
1139
+ messageTypeSoundGroup7: "all",
1140
+ soundGroup8: [],
1141
+ userLevelSoundGroup8: "everyone",
1142
+ specificUsersSoundGroup8: [],
1143
+ messageTypeSoundGroup8: "all",
1144
+ soundGroup9: [],
1145
+ userLevelSoundGroup9: "everyone",
1146
+ specificUsersSoundGroup9: [],
1147
+ messageTypeSoundGroup9: "all",
1148
+ soundGroup10: [],
1149
+ userLevelSoundGroup10: "everyone",
1150
+ specificUsersSoundGroup10: [],
1151
+ messageTypeSoundGroup10: "all",
1152
+ widgetName: "Chat Bubbles",
1153
+ widgetAuthor: "Zaytri",
1154
+ widgetVersion: "2.12.0",
1155
+ widgetUpdateUrl: "https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles",
1156
+ ignoreFirst: !0
1157
+ },
1158
+ overlay: {
1159
+ isEditorMode: !0,
1160
+ muted: !1
1161
+ }
1162
+ }, d = {
1163
+ follower: {
1164
+ listener: "follower-latest",
1165
+ event: { name: "An1by" }
1166
+ },
1167
+ communityGiftAnonymous: {
1168
+ listener: "event",
1169
+ event: {
1170
+ type: "communityGiftPurchase",
1171
+ provider: "twitch",
1172
+ channel: "663b10ba6cd449c4162a2230",
1173
+ activityGroup: "41a50a915794e4ae7cf5e600fd3445d4",
1174
+ data: {
1175
+ amount: 2,
1176
+ username: "anonymous",
1177
+ displayName: "AnAnonymousGifter",
1178
+ tier: "2000",
1179
+ sender: "Anonymous"
1180
+ },
1181
+ _id: "699868d7df734989ec85d393",
1182
+ activityId: "699868d7df734989ec85d393"
1183
+ }
1184
+ },
1185
+ communityGift: {
1186
+ listener: "event",
1187
+ event: {
1188
+ type: "communityGiftPurchase",
1189
+ provider: "twitch",
1190
+ channel: "663b10ba6cd449c4162a2230",
1191
+ activityGroup: "841592c0bccbf3e1e7de71e1c8f4d9f0",
1192
+ data: {
1193
+ amount: 1,
1194
+ username: "rishamon",
1195
+ displayName: "rishamon",
1196
+ tier: "1000",
1197
+ sender: "rishamon"
1198
+ },
1199
+ _id: "699867c7fef23197a6a089f5",
1200
+ activityId: "699867c7fef23197a6a089f5"
1201
+ }
1202
+ },
1203
+ sub: {
1204
+ listener: "subscriber-latest",
1205
+ event: {
1206
+ name: "An1by",
1207
+ amount: 1
1208
+ }
1209
+ },
1210
+ selfSub: {
1211
+ listener: "event",
1212
+ event: {
1213
+ type: "subscriber",
1214
+ provider: "twitch",
1215
+ channel: "663b10ba6cd449c4162a2230",
1216
+ data: {
1217
+ amount: 1,
1218
+ username: "rishamon",
1219
+ displayName: "rishamon",
1220
+ tier: "1000"
1221
+ },
1222
+ _id: "6998676317aed69e62b8f283",
1223
+ activityId: "6998676317aed69e62b8f283"
1224
+ }
1225
+ },
1226
+ soloSubToSomeone: {
1227
+ listener: "event",
1228
+ event: {
1229
+ type: "subscriber",
1230
+ provider: "twitch",
1231
+ channel: "663b10ba6cd449c4162a2230",
1232
+ data: {
1233
+ amount: 1,
1234
+ username: "encry_s",
1235
+ displayName: "encry_s",
1236
+ message: "rishamon gifted a Tier 1 sub to encry_s! This is their first Gift Sub in the channel!",
1237
+ tier: "1000",
1238
+ sender: "rishamon",
1239
+ gifted: !0
1240
+ },
1241
+ _id: "699866e82d9cd9a70854baf2",
1242
+ activityId: "699866e82d9cd9a70854baf2"
1243
+ }
1244
+ },
1245
+ subRenewal: {
1246
+ listener: "event",
1247
+ event: {
1248
+ type: "subscriber",
1249
+ provider: "twitch",
1250
+ channel: "663b10ba6cd449c4162a2230",
1251
+ data: {
1252
+ amount: 8,
1253
+ username: "silgestian",
1254
+ displayName: "SilgeStian",
1255
+ tier: "1000"
1256
+ },
1257
+ _id: "69986dfaf25724ff4162bd1a",
1258
+ activityId: "69986dfaf25724ff4162bd1a"
1259
+ }
1260
+ },
1261
+ bits: {
1262
+ listener: "cheer-latest",
1263
+ event: {
1264
+ name: "An1by",
1265
+ amount: 30
1266
+ }
1267
+ },
1268
+ raid: {
1269
+ listener: "raid-latest",
1270
+ event: {
1271
+ name: "An1by",
1272
+ amount: 50
1273
+ }
1274
+ },
1275
+ donationShortText: {
1276
+ listener: "donation",
1277
+ event: { data: {
1278
+ alert_type: "1",
1279
+ currency: "RUB",
1280
+ billing_system: "CARD",
1281
+ id: 5,
1282
+ amount_main: 500,
1283
+ amount: 500,
1284
+ username: "An1by",
1285
+ message: "Simple message text"
1286
+ } }
1287
+ },
1288
+ donationLongText: {
1289
+ listener: "donation",
1290
+ event: { data: {
1291
+ alert_type: "1",
1292
+ currency: "RUB",
1293
+ billing_system: "CARD",
1294
+ id: 5,
1295
+ amount_main: 500,
1296
+ amount: 500,
1297
+ username: "An1by",
1298
+ message: "A plain gray stone lay on the shore, basking in the sun's warmth. A shove broke its peace—a thoughtless toss sent it flying. The stone splashed into water. Ripples spread, yet none noticed. It sank to the bottom, heavy with loneliness. \"Didn't I deserve to stay where I was happy still?\" it wondered."
1299
+ } }
1300
+ },
1301
+ donation: {
1302
+ listener: "donation",
1303
+ event: { data: {
1304
+ alert_type: "1",
1305
+ currency: "RUB",
1306
+ billing_system: "CARD",
1307
+ id: 5,
1308
+ amount_main: 500,
1309
+ amount: 500,
1310
+ username: "An1by",
1311
+ message: ""
1312
+ } }
1313
+ }
1314
+ }, f = {
1315
+ zeroWidthEmotesInRow: {
1316
+ listener: "message",
1317
+ event: {
1318
+ service: "twitch",
1319
+ data: {
1320
+ time: 1768317417111,
1321
+ tags: {
1322
+ "badge-info": "subscriber/23",
1323
+ badges: "broadcaster/1,subscriber/0",
1324
+ "client-nonce": "f70c4cd8b6034d1f805298246ee1bc35",
1325
+ color: "#DAA520",
1326
+ "display-name": "An1by",
1327
+ emotes: "",
1328
+ "first-msg": "0",
1329
+ flags: "",
1330
+ id: "5f752ae3-4be9-4f93-82d1-d78575ba07fd",
1331
+ mod: "0",
1332
+ "returning-chatter": "0",
1333
+ "room-id": "958683839",
1334
+ subscriber: "1",
1335
+ "tmi-sent-ts": "1768317416862",
1336
+ turbo: "0",
1337
+ "user-id": "958683839",
1338
+ "user-type": ""
1339
+ },
1340
+ nick: "an1by",
1341
+ userId: "958683839",
1342
+ displayName: "An1by",
1343
+ displayColor: "#DAA520",
1344
+ badges: [{
1345
+ type: "broadcaster",
1346
+ version: "1",
1347
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
1348
+ description: "Broadcaster"
1349
+ }, {
1350
+ type: "subscriber",
1351
+ version: "0",
1352
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
1353
+ description: "Subscriber"
1354
+ }],
1355
+ channel: "an1by",
1356
+ text: "Censored Censored Censored emotes in row",
1357
+ isAction: !1,
1358
+ emotes: [
1359
+ {
1360
+ type: "7tv",
1361
+ name: "Censored",
1362
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
1363
+ gif: !0,
1364
+ animated: !0,
1365
+ urls: {
1366
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
1367
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
1368
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
1369
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
1370
+ },
1371
+ start: 0,
1372
+ end: 8
1373
+ },
1374
+ {
1375
+ type: "7tv",
1376
+ name: "Censored",
1377
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
1378
+ gif: !0,
1379
+ animated: !0,
1380
+ urls: {
1381
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
1382
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
1383
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
1384
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
1385
+ },
1386
+ start: 9,
1387
+ end: 17
1388
+ },
1389
+ {
1390
+ type: "7tv",
1391
+ name: "Censored",
1392
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
1393
+ gif: !0,
1394
+ animated: !0,
1395
+ urls: {
1396
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
1397
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
1398
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
1399
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
1400
+ },
1401
+ start: 18,
1402
+ end: 26
1403
+ }
1404
+ ],
1405
+ msgId: "5f752ae3-4be9-4f93-82d1-d78575ba07fd"
1406
+ },
1407
+ renderedText: "<img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\">emotes in row"
1408
+ }
1409
+ },
1410
+ zeroWidthEmoteInMiddle: {
1411
+ listener: "message",
1412
+ event: {
1413
+ service: "twitch",
1414
+ data: {
1415
+ time: 1768317383248,
1416
+ tags: {
1417
+ "badge-info": "subscriber/23",
1418
+ badges: "broadcaster/1,subscriber/0",
1419
+ "client-nonce": "847f9c27722340d090eddcb0d0662b5b",
1420
+ color: "#DAA520",
1421
+ "display-name": "An1by",
1422
+ emotes: "",
1423
+ "first-msg": "0",
1424
+ flags: "",
1425
+ id: "3dea1e1e-89f7-4a5f-b743-13ba0386492f",
1426
+ mod: "0",
1427
+ "returning-chatter": "0",
1428
+ "room-id": "958683839",
1429
+ subscriber: "1",
1430
+ "tmi-sent-ts": "1768317382987",
1431
+ turbo: "0",
1432
+ "user-id": "958683839",
1433
+ "user-type": ""
1434
+ },
1435
+ nick: "an1by",
1436
+ userId: "958683839",
1437
+ displayName: "An1by",
1438
+ displayColor: "#DAA520",
1439
+ badges: [{
1440
+ type: "broadcaster",
1441
+ version: "1",
1442
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
1443
+ description: "Broadcaster"
1444
+ }, {
1445
+ type: "subscriber",
1446
+ version: "0",
1447
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
1448
+ description: "Subscriber"
1449
+ }],
1450
+ channel: "an1by",
1451
+ text: "text and Censored emote",
1452
+ isAction: !1,
1453
+ emotes: [{
1454
+ type: "7tv",
1455
+ name: "Censored",
1456
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
1457
+ gif: !0,
1458
+ animated: !0,
1459
+ urls: {
1460
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
1461
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
1462
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
1463
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
1464
+ },
1465
+ start: 9,
1466
+ end: 17
1467
+ }],
1468
+ msgId: "3dea1e1e-89f7-4a5f-b743-13ba0386492f"
1469
+ },
1470
+ renderedText: "text and <img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\">emote"
1471
+ }
1472
+ },
1473
+ zeroWidthEmoteFirst: {
1474
+ listener: "message",
1475
+ event: {
1476
+ service: "twitch",
1477
+ data: {
1478
+ time: 1768317236883,
1479
+ tags: {
1480
+ "badge-info": "subscriber/23",
1481
+ badges: "broadcaster/1,subscriber/0",
1482
+ "client-nonce": "e9d0621827184c1b940fd700ae599d60",
1483
+ color: "#DAA520",
1484
+ "display-name": "An1by",
1485
+ emotes: "",
1486
+ "first-msg": "0",
1487
+ flags: "",
1488
+ id: "6f347337-354a-42e5-bab0-935e19d74152",
1489
+ mod: "0",
1490
+ "returning-chatter": "0",
1491
+ "room-id": "958683839",
1492
+ subscriber: "1",
1493
+ "tmi-sent-ts": "1768317236625",
1494
+ turbo: "0",
1495
+ "user-id": "958683839",
1496
+ "user-type": ""
1497
+ },
1498
+ nick: "an1by",
1499
+ userId: "958683839",
1500
+ displayName: "An1by",
1501
+ displayColor: "#DAA520",
1502
+ badges: [{
1503
+ type: "broadcaster",
1504
+ version: "1",
1505
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
1506
+ description: "Broadcaster"
1507
+ }, {
1508
+ type: "subscriber",
1509
+ version: "0",
1510
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
1511
+ description: "Subscriber"
1512
+ }],
1513
+ channel: "an1by",
1514
+ text: "Censored <- zeroWidth emote on the first place",
1515
+ isAction: !1,
1516
+ emotes: [{
1517
+ type: "7tv",
1518
+ name: "Censored",
1519
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
1520
+ gif: !0,
1521
+ animated: !0,
1522
+ urls: {
1523
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
1524
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
1525
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
1526
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
1527
+ },
1528
+ start: 0,
1529
+ end: 8
1530
+ }],
1531
+ msgId: "6f347337-354a-42e5-bab0-935e19d74152"
1532
+ },
1533
+ renderedText: "<img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\">&lt;- zeroWidth emote on the first place"
1534
+ }
1535
+ },
1536
+ veryShort: {
1537
+ listener: "message",
1538
+ event: {
1539
+ service: "twitch",
1540
+ data: {
1541
+ time: 1749743750546,
1542
+ tags: {
1543
+ "badge-info": "",
1544
+ badges: "",
1545
+ "client-nonce": "a3fe71a5771d0c31466dd333c963231e",
1546
+ color: "",
1547
+ "display-name": "An1by",
1548
+ emotes: "",
1549
+ "first-msg": "0",
1550
+ flags: "",
1551
+ id: "3d0d1a43-45e5-4652-be59-0b31dfeba796",
1552
+ mod: "0",
1553
+ "returning-chatter": "0",
1554
+ "room-id": "958683839",
1555
+ subscriber: "0",
1556
+ "tmi-sent-ts": "1749743749437",
1557
+ turbo: "0",
1558
+ "user-id": "958683839",
1559
+ "user-type": ""
1560
+ },
1561
+ nick: "IHaveVeryBigNickname",
1562
+ userId: "958683839",
1563
+ displayName: "IHaveVeryBigNickname",
1564
+ displayColor: "",
1565
+ badges: [],
1566
+ channel: "IHaveVeryBigNickname",
1567
+ text: "A!",
1568
+ isAction: !1,
1569
+ emotes: [],
1570
+ msgId: "3d0d1a43-45e5-4652-be59-0b31dfeba796"
1571
+ },
1572
+ renderedText: "A!"
1573
+ }
1574
+ },
1575
+ viewer: {
1576
+ listener: "message",
1577
+ event: {
1578
+ service: "twitch",
1579
+ data: {
1580
+ time: 1749743750546,
1581
+ tags: {
1582
+ "badge-info": "",
1583
+ badges: "",
1584
+ "client-nonce": "a3fe71a5771d0c31466dd333c963231e",
1585
+ color: "",
1586
+ "display-name": "An1by",
1587
+ emotes: "",
1588
+ "first-msg": "0",
1589
+ flags: "",
1590
+ id: "3d0d1a43-45e5-4652-be59-0b31dfeba796",
1591
+ mod: "0",
1592
+ "returning-chatter": "0",
1593
+ "room-id": "958683839",
1594
+ subscriber: "0",
1595
+ "tmi-sent-ts": "1749743749437",
1596
+ turbo: "0",
1597
+ "user-id": "958683839",
1598
+ "user-type": ""
1599
+ },
1600
+ nick: "SimpleViewer",
1601
+ userId: "958683839",
1602
+ displayName: "SimpleViewer",
1603
+ displayColor: "",
1604
+ badges: [],
1605
+ channel: "SimpleViewer",
1606
+ text: "I finally finished it...",
1607
+ isAction: !1,
1608
+ emotes: [],
1609
+ msgId: "3d0d1a43-45e5-4652-be59-0b31dfeba796"
1610
+ },
1611
+ renderedText: "I finally finished it..."
1612
+ }
1613
+ },
1614
+ vip: {
1615
+ listener: "message",
1616
+ event: {
1617
+ service: "twitch",
1618
+ data: {
1619
+ time: 1749743844261,
1620
+ tags: {
1621
+ "badge-info": "",
1622
+ badges: "vip/1",
1623
+ "client-nonce": "fd72ba163a9cc1a6486b2eddb0f5d893",
1624
+ color: "",
1625
+ "display-name": "An1by",
1626
+ emotes: "",
1627
+ "first-msg": "0",
1628
+ flags: "",
1629
+ id: "51cac44b-9908-49d2-b424-489276e1e521",
1630
+ mod: "0",
1631
+ "returning-chatter": "0",
1632
+ "room-id": "958683839",
1633
+ subscriber: "0",
1634
+ "tmi-sent-ts": "1749743843170",
1635
+ turbo: "0",
1636
+ "user-id": "958683839",
1637
+ "user-type": "",
1638
+ vip: "1"
1639
+ },
1640
+ nick: "VipPersona",
1641
+ userId: "958683839",
1642
+ displayName: "VipPersona",
1643
+ displayColor: "",
1644
+ badges: [{
1645
+ type: "vip",
1646
+ version: "1",
1647
+ url: "https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",
1648
+ description: "VIP"
1649
+ }],
1650
+ channel: "VipPersona",
1651
+ text: "I am a VIP persona!",
1652
+ isAction: !1,
1653
+ emotes: [],
1654
+ msgId: "51cac44b-9908-49d2-b424-489276e1e521"
1655
+ },
1656
+ renderedText: "I am a VIP persona!"
1657
+ }
1658
+ },
1659
+ vipLong: {
1660
+ listener: "message",
1661
+ event: {
1662
+ service: "twitch",
1663
+ data: {
1664
+ time: 1749743844261,
1665
+ tags: {
1666
+ "badge-info": "",
1667
+ badges: "vip/1",
1668
+ "client-nonce": "fd72ba163a9cc1a6486b2eddb0f5d893",
1669
+ color: "",
1670
+ "display-name": "An1by",
1671
+ emotes: "",
1672
+ "first-msg": "0",
1673
+ flags: "",
1674
+ id: "51cac44b-9908-49d2-b424-489276e1e521",
1675
+ mod: "0",
1676
+ "returning-chatter": "0",
1677
+ "room-id": "958683839",
1678
+ subscriber: "0",
1679
+ "tmi-sent-ts": "1749743843170",
1680
+ turbo: "0",
1681
+ "user-id": "958683839",
1682
+ "user-type": "",
1683
+ vip: "1"
1684
+ },
1685
+ nick: "VipPersona",
1686
+ userId: "958683839",
1687
+ displayName: "VipPersona",
1688
+ displayColor: "",
1689
+ badges: [{
1690
+ type: "vip",
1691
+ version: "1",
1692
+ url: "https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",
1693
+ description: "VIP"
1694
+ }],
1695
+ channel: "VipPersona",
1696
+ text: "I am a VIP persona! Are you see this?",
1697
+ isAction: !1,
1698
+ emotes: [],
1699
+ msgId: "51cac44b-9908-49d2-b424-489276e1e521"
1700
+ },
1701
+ renderedText: "I am a VIP persona! Are you see this?"
1702
+ }
1703
+ },
1704
+ artist: {
1705
+ listener: "message",
1706
+ event: {
1707
+ service: "twitch",
1708
+ data: {
1709
+ time: 1749743916482,
1710
+ tags: {
1711
+ "badge-info": "",
1712
+ badges: "artist-badge/1",
1713
+ "client-nonce": "54128d734d44e28ffc32e1ce236993f5",
1714
+ color: "",
1715
+ "display-name": "An1by",
1716
+ emotes: "",
1717
+ "first-msg": "0",
1718
+ flags: "",
1719
+ id: "8ee7e71a-3608-486a-bd82-a82b65982ca7",
1720
+ mod: "0",
1721
+ "returning-chatter": "0",
1722
+ "room-id": "958683839",
1723
+ subscriber: "0",
1724
+ "tmi-sent-ts": "1749743915371",
1725
+ turbo: "0",
1726
+ "user-id": "958683839",
1727
+ "user-type": ""
1728
+ },
1729
+ nick: "StarArtist",
1730
+ userId: "958683839",
1731
+ displayName: "StarArtist",
1732
+ displayColor: "",
1733
+ badges: [{
1734
+ type: "artist-badge",
1735
+ version: "1",
1736
+ url: "https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/3",
1737
+ description: "Artist"
1738
+ }],
1739
+ channel: "StarArtist",
1740
+ text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
1741
+ isAction: !1,
1742
+ emotes: [],
1743
+ msgId: "8ee7e71a-3608-486a-bd82-a82b65982ca7"
1744
+ },
1745
+ renderedText: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
1746
+ }
1747
+ },
1748
+ subscriber: {
1749
+ listener: "message",
1750
+ event: {
1751
+ data: {
1752
+ tags: {
1753
+ badges: "subscriber/1",
1754
+ color: "#ff69b4",
1755
+ vip: "0",
1756
+ subscriber: "1",
1757
+ "user-id": "100135110",
1758
+ "user-type": "subscriber"
1759
+ },
1760
+ nick: "YourSub",
1761
+ userId: "100135110",
1762
+ displayName: "YourSub",
1763
+ displayColor: "#ff69b4",
1764
+ badges: [{
1765
+ type: "partner",
1766
+ version: "1",
1767
+ url: "https://static-cdn.jtvnw.net/badges/v1/d12a2e27-16f6-41d0-ab77-b780518f00a3/3",
1768
+ description: "Verified"
1769
+ }],
1770
+ text: "This is a subscriber's test message. I'm just a subscriber, srsly.",
1771
+ emotes: [],
1772
+ msgId: "43285909-412c-4eee-b80d-89f1482ba53142"
1773
+ },
1774
+ renderedText: "This is a subscriber's test message. I'm just a subscriber, srsly."
1775
+ }
1776
+ },
1777
+ founder: {
1778
+ listener: "message",
1779
+ event: {
1780
+ service: "twitch",
1781
+ data: {
1782
+ time: 1749743750546,
1783
+ tags: {
1784
+ "badge-info": "",
1785
+ badges: "founder/1,subscriber/1",
1786
+ "client-nonce": "a3fe71a5771d0c31466dd333c963231e",
1787
+ color: "",
1788
+ "display-name": "sub__founder",
1789
+ emotes: "",
1790
+ "first-msg": "0",
1791
+ flags: "",
1792
+ id: "3d0d1a43-45e5-4652-be59-0b31dfeba796",
1793
+ mod: "0",
1794
+ "returning-chatter": "0",
1795
+ "room-id": "958683839",
1796
+ subscriber: "1",
1797
+ "tmi-sent-ts": "1749743749437",
1798
+ turbo: "0",
1799
+ "user-id": "958683839",
1800
+ "user-type": ""
1801
+ },
1802
+ nick: "sub__founder",
1803
+ userId: "958683839",
1804
+ displayName: "sub__founder",
1805
+ displayColor: "",
1806
+ badges: [{ type: "founder" }],
1807
+ channel: "an1by",
1808
+ text: "I finally finished it...",
1809
+ isAction: !1,
1810
+ emotes: [],
1811
+ msgId: "3d0d1a43-45e5-4652-be59-0b31dfeba796"
1812
+ },
1813
+ renderedText: "I finally finished it..."
1814
+ }
1815
+ },
1816
+ moderator: {
1817
+ listener: "message",
1818
+ event: {
1819
+ service: "twitch",
1820
+ data: {
1821
+ time: 1749743997223,
1822
+ tags: {
1823
+ "badge-info": "",
1824
+ badges: "moderator/1",
1825
+ color: "",
1826
+ "display-name": "An1by",
1827
+ emotes: "",
1828
+ "first-msg": "0",
1829
+ flags: "",
1830
+ id: "3e7ba532-f181-4bcc-90f1-a3c48ca3c820",
1831
+ mod: "1",
1832
+ "returning-chatter": "0",
1833
+ "room-id": "958683839",
1834
+ subscriber: "0",
1835
+ "tmi-sent-ts": "1749743996136",
1836
+ turbo: "0",
1837
+ "user-id": "958683839",
1838
+ "user-type": "mod"
1839
+ },
1840
+ nick: "mediator",
1841
+ userId: "958683839",
1842
+ displayName: "mediator",
1843
+ displayColor: "",
1844
+ badges: [{
1845
+ type: "moderator",
1846
+ version: "1",
1847
+ url: "https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",
1848
+ description: "Moderator"
1849
+ }],
1850
+ channel: "mediator",
1851
+ text: "Did someone say... MODERATOR!?",
1852
+ isAction: !1,
1853
+ emotes: [],
1854
+ msgId: "3e7ba532-f181-4bcc-90f1-a3c48ca3c820"
1855
+ },
1856
+ renderedText: "Did someone say... MODERATOR!?"
1857
+ }
1858
+ },
1859
+ moderatorLong: {
1860
+ listener: "message",
1861
+ event: {
1862
+ service: "twitch",
1863
+ data: {
1864
+ time: 1749743997223,
1865
+ tags: {
1866
+ "badge-info": "",
1867
+ badges: "moderator/1",
1868
+ color: "",
1869
+ "display-name": "An1by",
1870
+ emotes: "",
1871
+ "first-msg": "0",
1872
+ flags: "",
1873
+ id: "3e7ba532-f181-4bcc-90f1-a3c48ca3c820",
1874
+ mod: "1",
1875
+ "returning-chatter": "0",
1876
+ "room-id": "958683839",
1877
+ subscriber: "0",
1878
+ "tmi-sent-ts": "1749743996136",
1879
+ turbo: "0",
1880
+ "user-id": "958683839",
1881
+ "user-type": "mod"
1882
+ },
1883
+ nick: "mediator",
1884
+ userId: "958683839",
1885
+ displayName: "mediator",
1886
+ displayColor: "",
1887
+ badges: [{
1888
+ type: "moderator",
1889
+ version: "1",
1890
+ url: "https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",
1891
+ description: "Moderator"
1892
+ }],
1893
+ channel: "mediator",
1894
+ text: "Did someone say... MODERATOR!? Yes, I am moderator!",
1895
+ isAction: !1,
1896
+ emotes: [],
1897
+ msgId: "3e7ba532-f181-4bcc-90f1-a3c48ca3c820"
1898
+ },
1899
+ renderedText: "Did someone say... MODERATOR!? Yes, I am moderator!"
1900
+ }
1901
+ },
1902
+ broadcaster: {
1903
+ listener: "message",
1904
+ event: {
1905
+ service: "twitch",
1906
+ data: {
1907
+ time: 1749744800809,
1908
+ tags: {
1909
+ "badge-info": "subscriber/16",
1910
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
1911
+ "client-nonce": "6989104421ee14c0a8c216ef1c6bb5ed",
1912
+ color: "#DAA520",
1913
+ "display-name": "An1by",
1914
+ emotes: "",
1915
+ "first-msg": "0",
1916
+ flags: "",
1917
+ id: "35a9bea7-076e-4d17-8cb7-7e65c8111b3d",
1918
+ mod: "0",
1919
+ "returning-chatter": "0",
1920
+ "room-id": "958683839",
1921
+ subscriber: "1",
1922
+ "tmi-sent-ts": "1749744799706",
1923
+ turbo: "0",
1924
+ "user-id": "958683839",
1925
+ "user-type": ""
1926
+ },
1927
+ nick: "an1by",
1928
+ userId: "958683839",
1929
+ displayName: "An1by",
1930
+ displayColor: "#DAA520",
1931
+ badges: [
1932
+ {
1933
+ type: "broadcaster",
1934
+ version: "1",
1935
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
1936
+ description: "Broadcaster"
1937
+ },
1938
+ {
1939
+ type: "subscriber",
1940
+ version: "0",
1941
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
1942
+ description: "Subscriber"
1943
+ },
1944
+ {
1945
+ type: "minecraft-15th-anniversary-celebration",
1946
+ version: "1",
1947
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
1948
+ description: "Minecraft 15th Anniversary Celebration"
1949
+ }
1950
+ ],
1951
+ channel: "an1by",
1952
+ text: "I made this chat Besplatno",
1953
+ isAction: !1,
1954
+ emotes: [{
1955
+ type: "7tv",
1956
+ name: "Besplatno",
1957
+ id: "01FE70VRT00009TR6M9N941A28",
1958
+ gif: !0,
1959
+ animated: !0,
1960
+ urls: {
1961
+ 1: "https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp",
1962
+ 2: "https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp",
1963
+ 3: "https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/3x.webp",
1964
+ 4: "https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp"
1965
+ },
1966
+ start: 17,
1967
+ end: 26
1968
+ }],
1969
+ msgId: "35a9bea7-076e-4d17-8cb7-7e65c8111b3d"
1970
+ },
1971
+ renderedText: "I made this chat <img src=\"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x\" title=\"Besplatno\" class=\"emote\">"
1972
+ }
1973
+ },
1974
+ broadcasterShort: {
1975
+ listener: "message",
1976
+ event: {
1977
+ service: "twitch",
1978
+ data: {
1979
+ time: 1749744800809,
1980
+ tags: {
1981
+ "badge-info": "subscriber/16",
1982
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
1983
+ "client-nonce": "6989104421ee14c0a8c216ef1c6bb5ed",
1984
+ color: "#DAA520",
1985
+ "display-name": "An1by",
1986
+ emotes: "",
1987
+ "first-msg": "0",
1988
+ flags: "",
1989
+ id: "35a9bea7-076e-4d17-8cb7-7e65c8111b3d",
1990
+ mod: "0",
1991
+ "returning-chatter": "0",
1992
+ "room-id": "958683839",
1993
+ subscriber: "1",
1994
+ "tmi-sent-ts": "1749744799706",
1995
+ turbo: "0",
1996
+ "user-id": "958683839",
1997
+ "user-type": ""
1998
+ },
1999
+ nick: "an1by",
2000
+ userId: "958683839",
2001
+ displayName: "An1by",
2002
+ displayColor: "#DAA520",
2003
+ badges: [
2004
+ {
2005
+ type: "broadcaster",
2006
+ version: "1",
2007
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2008
+ description: "Broadcaster"
2009
+ },
2010
+ {
2011
+ type: "subscriber",
2012
+ version: "0",
2013
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2014
+ description: "Subscriber"
2015
+ },
2016
+ {
2017
+ type: "minecraft-15th-anniversary-celebration",
2018
+ version: "1",
2019
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2020
+ description: "Minecraft 15th Anniversary Celebration"
2021
+ }
2022
+ ],
2023
+ channel: "an1by",
2024
+ text: "okak",
2025
+ isAction: !1,
2026
+ emotes: [],
2027
+ msgId: "35a9bea7-076e-4d17-8cb7-7e65c8111b3d"
2028
+ },
2029
+ renderedText: "I made this chat <img src=\"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x\" title=\"Besplatno\" class=\"emote\">"
2030
+ }
2031
+ },
2032
+ emoteSolo: {
2033
+ listener: "message",
2034
+ event: {
2035
+ service: "twitch",
2036
+ data: {
2037
+ time: 1749744097330,
2038
+ tags: {
2039
+ "badge-info": "",
2040
+ badges: "",
2041
+ color: "",
2042
+ "display-name": "An1by",
2043
+ emotes: "",
2044
+ "first-msg": "0",
2045
+ flags: "",
2046
+ id: "9ab645b9-7c27-4c6f-99fd-f63727ca3700",
2047
+ mod: "0",
2048
+ "returning-chatter": "0",
2049
+ "room-id": "958683839",
2050
+ subscriber: "0",
2051
+ "tmi-sent-ts": "1749744096217",
2052
+ turbo: "0",
2053
+ "user-id": "958683839",
2054
+ "user-type": ""
2055
+ },
2056
+ nick: "tr0l1",
2057
+ userId: "958683839",
2058
+ displayName: "tr0l1",
2059
+ displayColor: "",
2060
+ badges: [],
2061
+ channel: "tr0l1",
2062
+ text: "🤤😮💀👈👉",
2063
+ isAction: !1,
2064
+ emotes: [
2065
+ {
2066
+ type: "emoji",
2067
+ name: "1f62e",
2068
+ id: "1f62e",
2069
+ gif: !1,
2070
+ urls: { 1: "https://twemoji.maxcdn.com/36x36/1f62e.png" }
2071
+ },
2072
+ {
2073
+ type: "emoji",
2074
+ name: "1f480",
2075
+ id: "1f480",
2076
+ gif: !1,
2077
+ urls: { 1: "https://twemoji.maxcdn.com/36x36/1f480.png" }
2078
+ },
2079
+ {
2080
+ type: "emoji",
2081
+ name: "1f448",
2082
+ id: "1f448",
2083
+ gif: !1,
2084
+ urls: { 1: "https://twemoji.maxcdn.com/36x36/1f448.png" }
2085
+ },
2086
+ {
2087
+ type: "emoji",
2088
+ name: "1f449",
2089
+ id: "1f449",
2090
+ gif: !1,
2091
+ urls: { 1: "https://twemoji.maxcdn.com/36x36/1f449.png" }
2092
+ }
2093
+ ],
2094
+ msgId: "9ab645b9-7c27-4c6f-99fd-f63727ca3700"
2095
+ },
2096
+ renderedText: "🤤😮💀👈👉"
2097
+ }
2098
+ },
2099
+ emoteOne: {
2100
+ listener: "message",
2101
+ event: {
2102
+ service: "twitch",
2103
+ data: {
2104
+ time: 1749744131183,
2105
+ tags: {
2106
+ "badge-info": "",
2107
+ badges: "",
2108
+ color: "",
2109
+ "display-name": "An1by",
2110
+ emotes: "41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18",
2111
+ "first-msg": "0",
2112
+ flags: "",
2113
+ id: "beb957ea-dfbd-4184-82a3-458121f44867",
2114
+ mod: "0",
2115
+ "returning-chatter": "0",
2116
+ "room-id": "958683839",
2117
+ subscriber: "0",
2118
+ "tmi-sent-ts": "1749744130018",
2119
+ turbo: "0",
2120
+ "user-id": "958683839",
2121
+ "user-type": ""
2122
+ },
2123
+ nick: "tr0l1",
2124
+ userId: "958683839",
2125
+ displayName: "tr0l1",
2126
+ displayColor: "",
2127
+ badges: [],
2128
+ channel: "tr0l1",
2129
+ text: "SeemsGood",
2130
+ isAction: !1,
2131
+ emotes: [{
2132
+ type: "twitch",
2133
+ name: "SeemsGood",
2134
+ id: "64138",
2135
+ gif: !1,
2136
+ animated: !1,
2137
+ urls: {
2138
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",
2139
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",
2140
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"
2141
+ },
2142
+ start: 0,
2143
+ end: 9
2144
+ }],
2145
+ msgId: "beb957ea-dfbd-4184-82a3-458121f44867"
2146
+ },
2147
+ renderedText: "<img src=\"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x\" title=\"SeemsGood\" class=\"emote\">"
2148
+ }
2149
+ },
2150
+ emoteText: {
2151
+ listener: "message",
2152
+ event: {
2153
+ service: "twitch",
2154
+ data: {
2155
+ time: 1749744131183,
2156
+ tags: {
2157
+ "badge-info": "",
2158
+ badges: "",
2159
+ color: "",
2160
+ "display-name": "7TVUser",
2161
+ emotes: "41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18",
2162
+ "first-msg": "0",
2163
+ flags: "",
2164
+ id: "beb957ea-dfbd-4184-82a3-458121f44867",
2165
+ mod: "0",
2166
+ "returning-chatter": "0",
2167
+ "room-id": "958683839",
2168
+ subscriber: "0",
2169
+ "tmi-sent-ts": "1749744130018",
2170
+ turbo: "0",
2171
+ "user-id": "958683839",
2172
+ "user-type": ""
2173
+ },
2174
+ nick: "7TVUser",
2175
+ userId: "958683839",
2176
+ displayName: "7TVUser",
2177
+ displayColor: "",
2178
+ badges: [],
2179
+ channel: "7TVUser",
2180
+ text: "Not emote SeemsGood Kreygasm ResidentSleeper WutFace NotLikeThis <3",
2181
+ isAction: !1,
2182
+ emotes: [
2183
+ {
2184
+ type: "twitch",
2185
+ name: "SeemsGood",
2186
+ id: "64138",
2187
+ gif: !1,
2188
+ animated: !1,
2189
+ urls: {
2190
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",
2191
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",
2192
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"
2193
+ },
2194
+ start: 10,
2195
+ end: 19
2196
+ },
2197
+ {
2198
+ type: "twitch",
2199
+ name: "Kreygasm",
2200
+ id: "41",
2201
+ gif: !1,
2202
+ animated: !1,
2203
+ urls: {
2204
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0",
2205
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0",
2206
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0"
2207
+ },
2208
+ start: 20,
2209
+ end: 28
2210
+ },
2211
+ {
2212
+ type: "twitch",
2213
+ name: "ResidentSleeper",
2214
+ id: "245",
2215
+ gif: !1,
2216
+ animated: !1,
2217
+ urls: {
2218
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0",
2219
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0",
2220
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0"
2221
+ },
2222
+ start: 29,
2223
+ end: 44
2224
+ },
2225
+ {
2226
+ type: "twitch",
2227
+ name: "WutFace",
2228
+ id: "28087",
2229
+ gif: !1,
2230
+ animated: !1,
2231
+ urls: {
2232
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0",
2233
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0",
2234
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0"
2235
+ },
2236
+ start: 45,
2237
+ end: 52
2238
+ },
2239
+ {
2240
+ type: "twitch",
2241
+ name: "NotLikeThis",
2242
+ id: "58765",
2243
+ gif: !1,
2244
+ animated: !1,
2245
+ urls: {
2246
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0",
2247
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0",
2248
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0"
2249
+ },
2250
+ start: 53,
2251
+ end: 64
2252
+ },
2253
+ {
2254
+ type: "twitch",
2255
+ name: "<3",
2256
+ id: "9",
2257
+ gif: !1,
2258
+ animated: !1,
2259
+ urls: {
2260
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0",
2261
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0",
2262
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0"
2263
+ },
2264
+ start: 65,
2265
+ end: 67
2266
+ }
2267
+ ],
2268
+ msgId: "beb957ea-dfbd-4184-82a3-458121f44867"
2269
+ },
2270
+ renderedText: "Not emote <img src=\"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x\" title=\"SeemsGood\" class=\"emote\"><img src=\"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0 4x\" title=\"Kreygasm\" class=\"emote\"><img src=\"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0 4x\" title=\"ResidentSleeper\" class=\"emote\"><img src=\"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0 4x\" title=\"WutFace\" class=\"emote\"><img src=\"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0 4x\" title=\"NotLikeThis\" class=\"emote\"><img src=\"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0 4x\" title=\"<3\" class=\"emote\">"
2271
+ }
2272
+ },
2273
+ zeroWidthEmotes: {
2274
+ listener: "message",
2275
+ event: {
2276
+ service: "twitch",
2277
+ data: {
2278
+ time: 1759956619137,
2279
+ tags: {
2280
+ "badge-info": "subscriber/20",
2281
+ badges: "",
2282
+ "client-nonce": "f7b17aea5c07c5c08fd920278fb52b5a",
2283
+ color: "#DAA520",
2284
+ "display-name": "7TVUser",
2285
+ emotes: "",
2286
+ "first-msg": "0",
2287
+ flags: "",
2288
+ id: "b44d1c53-1de9-454c-a269-bd8849cbcd2d",
2289
+ mod: "0",
2290
+ "returning-chatter": "0",
2291
+ "room-id": "958683839",
2292
+ subscriber: "1",
2293
+ "tmi-sent-ts": "1759956618295",
2294
+ turbo: "0",
2295
+ "user-id": "958683839",
2296
+ "user-type": ""
2297
+ },
2298
+ nick: "7TVUser",
2299
+ userId: "958683839",
2300
+ displayName: "7TVUser",
2301
+ displayColor: "#DAA520",
2302
+ badges: [{
2303
+ type: "minecraft-15th-anniversary-celebration",
2304
+ version: "1",
2305
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2306
+ description: "Minecraft 15th Anniversary Celebration"
2307
+ }],
2308
+ channel: "7TVUser",
2309
+ text: "Zero-width emotes AYAYA PETPET right there!!",
2310
+ isAction: !1,
2311
+ emotes: [{
2312
+ type: "7tv",
2313
+ name: "AYAYA",
2314
+ id: "01GB32XE6R00018VJGJ4A9BNCV",
2315
+ gif: !1,
2316
+ animated: !1,
2317
+ urls: {
2318
+ 1: "https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp",
2319
+ 2: "https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp",
2320
+ 3: "https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/3x.webp",
2321
+ 4: "https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp"
2322
+ },
2323
+ start: 18,
2324
+ end: 23
2325
+ }, {
2326
+ type: "7tv",
2327
+ name: "PETPET",
2328
+ id: "01FE3XY508000AA32JP519W2EW",
2329
+ gif: !0,
2330
+ animated: !0,
2331
+ urls: {
2332
+ 1: "https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp",
2333
+ 2: "https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp",
2334
+ 3: "https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/3x.webp",
2335
+ 4: "https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp"
2336
+ },
2337
+ start: 24,
2338
+ end: 30
2339
+ }],
2340
+ msgId: "b44d1c53-1de9-454c-a269-bd8849cbcd2d"
2341
+ },
2342
+ renderedText: "Zero-width emotes <img src=\"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp 1x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp 2x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp 4x\" title=\"AYAYA\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp 1x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp 2x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp 4x\" title=\"PETPET\" class=\"emote\">right there!!"
2343
+ }
2344
+ },
2345
+ sevenTv: {
2346
+ listener: "message",
2347
+ event: {
2348
+ service: "twitch",
2349
+ data: {
2350
+ time: 1749744413746,
2351
+ tags: {
2352
+ "badge-info": "",
2353
+ badges: "",
2354
+ "client-nonce": "2bd56e3c058b5a4fc4e46c3e369891e6",
2355
+ color: "",
2356
+ "display-name": "An1by",
2357
+ emotes: "",
2358
+ "first-msg": "0",
2359
+ flags: "",
2360
+ id: "4c71789c-8c02-4e25-a71f-3a7d0ef19a33",
2361
+ mod: "0",
2362
+ "returning-chatter": "0",
2363
+ "room-id": "958683839",
2364
+ subscriber: "0",
2365
+ "tmi-sent-ts": "1749744412641",
2366
+ turbo: "0",
2367
+ "user-id": "958683839",
2368
+ "user-type": ""
2369
+ },
2370
+ nick: "tr0l1",
2371
+ userId: "958683839",
2372
+ displayName: "tr0l1",
2373
+ displayColor: "",
2374
+ badges: [],
2375
+ channel: "tr0l1",
2376
+ text: "ало ало Инса Каори Hello everyone! Hello everyone! Hello everyone!Hello everyone! Hello everyone! Hello everyone! Hello everyone! Hello everyone!",
2377
+ isAction: !1,
2378
+ emotes: [
2379
+ {
2380
+ type: "7tv",
2381
+ name: "ало",
2382
+ id: "01F6PRA3N80003BH8AEY9DWKDQ",
2383
+ gif: !0,
2384
+ animated: !0,
2385
+ urls: {
2386
+ 1: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",
2387
+ 2: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",
2388
+ 3: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",
2389
+ 4: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"
2390
+ },
2391
+ start: 0,
2392
+ end: 3
2393
+ },
2394
+ {
2395
+ type: "7tv",
2396
+ name: "ало",
2397
+ id: "01F6PRA3N80003BH8AEY9DWKDQ",
2398
+ gif: !0,
2399
+ animated: !0,
2400
+ urls: {
2401
+ 1: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",
2402
+ 2: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",
2403
+ 3: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",
2404
+ 4: "https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"
2405
+ },
2406
+ start: 4,
2407
+ end: 7
2408
+ },
2409
+ {
2410
+ type: "7tv",
2411
+ name: "Инса",
2412
+ id: "01JRE4VRRXWF0922HA3F9BZG6M",
2413
+ gif: !1,
2414
+ animated: !1,
2415
+ urls: {
2416
+ 1: "https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp",
2417
+ 2: "https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp",
2418
+ 3: "https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/3x.webp",
2419
+ 4: "https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp"
2420
+ },
2421
+ start: 8,
2422
+ end: 12
2423
+ },
2424
+ {
2425
+ type: "7tv",
2426
+ name: "Каори",
2427
+ id: "01GY6TCEFG000BGHWA5T6NGBRA",
2428
+ gif: !1,
2429
+ animated: !1,
2430
+ urls: {
2431
+ 1: "https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp",
2432
+ 2: "https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp",
2433
+ 3: "https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/3x.webp",
2434
+ 4: "https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp"
2435
+ },
2436
+ start: 13,
2437
+ end: 18
2438
+ }
2439
+ ],
2440
+ msgId: "4c71789c-8c02-4e25-a71f-3a7d0ef19a33"
2441
+ },
2442
+ renderedText: "<img src=\"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x\" title=\"ало\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x\" title=\"ало\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp 1x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp 2x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp 4x\" title=\"Инса\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp 1x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp 2x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp 4x\" title=\"Каори\" class=\"emote\">Hello everyone!"
2443
+ }
2444
+ },
2445
+ sevenTvSolo: {
2446
+ listener: "message",
2447
+ event: {
2448
+ service: "twitch",
2449
+ data: {
2450
+ time: 1768321684253,
2451
+ tags: {
2452
+ "badge-info": "subscriber/23",
2453
+ badges: "broadcaster/1,subscriber/0",
2454
+ "client-nonce": "51cc77206bf346eda20774b75aac675d",
2455
+ color: "#DAA520",
2456
+ "display-name": "An1by",
2457
+ emotes: "",
2458
+ "first-msg": "0",
2459
+ flags: "",
2460
+ id: "e30a02bf-a3c7-40f2-9325-cdc2690d3631",
2461
+ mod: "0",
2462
+ "returning-chatter": "0",
2463
+ "room-id": "958683839",
2464
+ subscriber: "1",
2465
+ "tmi-sent-ts": "1768321684074",
2466
+ turbo: "0",
2467
+ "user-id": "958683839",
2468
+ "user-type": ""
2469
+ },
2470
+ nick: "an1by",
2471
+ userId: "958683839",
2472
+ displayName: "An1by",
2473
+ displayColor: "#DAA520",
2474
+ badges: [{
2475
+ type: "broadcaster",
2476
+ version: "1",
2477
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2478
+ description: "Broadcaster"
2479
+ }, {
2480
+ type: "subscriber",
2481
+ version: "0",
2482
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2483
+ description: "Subscriber"
2484
+ }],
2485
+ channel: "an1by",
2486
+ text: "DurkaDance ͏",
2487
+ isAction: !1,
2488
+ emotes: [{
2489
+ type: "7tv",
2490
+ name: "DurkaDance",
2491
+ id: "01JQBC7K2FX7HE4SFZFJEN6CWY",
2492
+ gif: !0,
2493
+ animated: !0,
2494
+ urls: {
2495
+ 1: "https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp",
2496
+ 2: "https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp",
2497
+ 3: "https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/3x.webp",
2498
+ 4: "https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp"
2499
+ },
2500
+ start: 0,
2501
+ end: 10
2502
+ }],
2503
+ msgId: "e30a02bf-a3c7-40f2-9325-cdc2690d3631"
2504
+ },
2505
+ renderedText: "<img src=\"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp 1x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp 2x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp 4x\" title=\"DurkaDance\" class=\"emote\"> ͏"
2506
+ }
2507
+ },
2508
+ replyToEmotes: {
2509
+ listener: "message",
2510
+ event: {
2511
+ service: "twitch",
2512
+ data: {
2513
+ time: 1761442000746,
2514
+ tags: {
2515
+ "badge-info": "subscriber/21",
2516
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
2517
+ "client-nonce": "467bc72d78248ec07dfb0602744268ca",
2518
+ color: "#DAA520",
2519
+ "display-name": "An1by",
2520
+ emotes: "",
2521
+ "first-msg": "0",
2522
+ flags: "",
2523
+ id: "9efd9377-2bd3-4c69-ace4-c21760337bab",
2524
+ mod: "0",
2525
+ "returning-chatter": "0",
2526
+ "room-id": "958683839",
2527
+ subscriber: "1",
2528
+ "tmi-sent-ts": "1761442000143",
2529
+ turbo: "0",
2530
+ "user-id": "958683839",
2531
+ "user-type": ""
2532
+ },
2533
+ nick: "an1by",
2534
+ userId: "958683839",
2535
+ displayName: "An1by",
2536
+ displayColor: "#DAA520",
2537
+ badges: [
2538
+ {
2539
+ type: "broadcaster",
2540
+ version: "1",
2541
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2542
+ description: "Broadcaster"
2543
+ },
2544
+ {
2545
+ type: "subscriber",
2546
+ version: "0",
2547
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2548
+ description: "Subscriber"
2549
+ },
2550
+ {
2551
+ type: "minecraft-15th-anniversary-celebration",
2552
+ version: "1",
2553
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2554
+ description: "Minecraft 15th Anniversary Celebration"
2555
+ }
2556
+ ],
2557
+ channel: "an1by",
2558
+ text: "AREYOUAGIRL Censored Emotes there DiscoDoge Кута",
2559
+ isAction: !1,
2560
+ emotes: [
2561
+ {
2562
+ type: "7tv",
2563
+ name: "AREYOUAGIRL",
2564
+ id: "01F6N58M5R0004P7N4A9PK7KD9",
2565
+ gif: !0,
2566
+ animated: !0,
2567
+ urls: {
2568
+ 1: "https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp",
2569
+ 2: "https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp",
2570
+ 3: "https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/3x.webp",
2571
+ 4: "https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp"
2572
+ },
2573
+ start: 0,
2574
+ end: 11
2575
+ },
2576
+ {
2577
+ type: "7tv",
2578
+ name: "Censored",
2579
+ id: "01GC2KBETR0009QMKQRDSHDTVB",
2580
+ gif: !0,
2581
+ animated: !0,
2582
+ urls: {
2583
+ 1: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",
2584
+ 2: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",
2585
+ 3: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",
2586
+ 4: "https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"
2587
+ },
2588
+ start: 12,
2589
+ end: 20
2590
+ },
2591
+ {
2592
+ type: "7tv",
2593
+ name: "DiscoDoge",
2594
+ id: "01F6REQR2R0006GRP49Q74YFVT",
2595
+ gif: !0,
2596
+ animated: !0,
2597
+ urls: {
2598
+ 1: "https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp",
2599
+ 2: "https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp",
2600
+ 3: "https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/3x.webp",
2601
+ 4: "https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp"
2602
+ },
2603
+ start: 34,
2604
+ end: 43
2605
+ },
2606
+ {
2607
+ type: "7tv",
2608
+ name: "Кута",
2609
+ id: "01GZRXWQMR0001GP2RPRY13KD2",
2610
+ gif: !0,
2611
+ animated: !0,
2612
+ urls: {
2613
+ 1: "https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp",
2614
+ 2: "https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp",
2615
+ 3: "https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/3x.webp",
2616
+ 4: "https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp"
2617
+ },
2618
+ start: 44,
2619
+ end: 48
2620
+ }
2621
+ ],
2622
+ msgId: "9efd9377-2bd3-4c69-ace4-c21760337bab"
2623
+ },
2624
+ renderedText: "<img src=\"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp 1x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp 2x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp 4x\" title=\"AREYOUAGIRL\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x\" title=\"Censored\" class=\"emote\">Emotes there <img src=\"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp 1x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp 2x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp 4x\" title=\"DiscoDoge\" class=\"emote\"><img src=\"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp 1x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp 2x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp 4x\" title=\"Кута\" class=\"emote\">"
2625
+ }
2626
+ },
2627
+ replyFromEmotes: {
2628
+ listener: "message",
2629
+ event: {
2630
+ service: "twitch",
2631
+ data: {
2632
+ time: 1761442023380,
2633
+ tags: {
2634
+ "badge-info": "subscriber/21",
2635
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
2636
+ "client-nonce": "4052e6a7ed6bb6b8836aa625170c4f7b",
2637
+ color: "#DAA520",
2638
+ "display-name": "An1by",
2639
+ emotes: "",
2640
+ "first-msg": "0",
2641
+ flags: "",
2642
+ id: "f7bed8dd-5a48-4209-8617-e1a3c0720ee4",
2643
+ mod: "0",
2644
+ "reply-parent-display-name": "An1by",
2645
+ "reply-parent-msg-body": "AREYOUAGIRL\\sCensored\\sThere\\semotes\\sDiscoDoge\\sКута",
2646
+ "reply-parent-msg-id": "9efd9377-2bd3-4c69-ace4-c21760337bab",
2647
+ "reply-parent-user-id": "958683839",
2648
+ "reply-parent-user-login": "an1by",
2649
+ "reply-thread-parent-display-name": "An1by",
2650
+ "reply-thread-parent-msg-id": "9efd9377-2bd3-4c69-ace4-c21760337bab",
2651
+ "reply-thread-parent-user-id": "958683839",
2652
+ "reply-thread-parent-user-login": "an1by",
2653
+ "returning-chatter": "0",
2654
+ "room-id": "958683839",
2655
+ subscriber: "1",
2656
+ "tmi-sent-ts": "1761442022738",
2657
+ turbo: "0",
2658
+ "user-id": "958683839",
2659
+ "user-type": ""
2660
+ },
2661
+ nick: "an1by",
2662
+ userId: "958683839",
2663
+ displayName: "An1by",
2664
+ displayColor: "#DAA520",
2665
+ badges: [
2666
+ {
2667
+ type: "broadcaster",
2668
+ version: "1",
2669
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2670
+ description: "Broadcaster"
2671
+ },
2672
+ {
2673
+ type: "subscriber",
2674
+ version: "0",
2675
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2676
+ description: "Subscriber"
2677
+ },
2678
+ {
2679
+ type: "minecraft-15th-anniversary-celebration",
2680
+ version: "1",
2681
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2682
+ description: "Minecraft 15th Anniversary Celebration"
2683
+ }
2684
+ ],
2685
+ channel: "an1by",
2686
+ text: "@An1by I'm replying to message with emotes agarge Looks good, am I right?",
2687
+ isAction: !1,
2688
+ emotes: [{
2689
+ type: "7tv",
2690
+ name: "agarge",
2691
+ id: "01HTDV6DE8000B1F9GAE4NZ73B",
2692
+ gif: !1,
2693
+ animated: !1,
2694
+ urls: {
2695
+ 1: "https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp",
2696
+ 2: "https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp",
2697
+ 3: "https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/3x.webp",
2698
+ 4: "https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp"
2699
+ },
2700
+ start: 43,
2701
+ end: 49
2702
+ }],
2703
+ msgId: "f7bed8dd-5a48-4209-8617-e1a3c0720ee4"
2704
+ },
2705
+ renderedText: "@An1by I'm replying to message with emotes <img src=\"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp\" srcset=\"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp 1x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp 2x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp 4x\" title=\"agarge\" class=\"emote\">Looks good, am I right?"
2706
+ }
2707
+ },
2708
+ replyTo: {
2709
+ listener: "message",
2710
+ event: {
2711
+ service: "twitch",
2712
+ data: {
2713
+ time: 1761435519083,
2714
+ tags: {
2715
+ "badge-info": "subscriber/21",
2716
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
2717
+ "client-nonce": "da4c68fddba7eb1be7ae2b6a44c207a2",
2718
+ color: "#DAA520",
2719
+ "display-name": "An1by",
2720
+ emotes: "",
2721
+ "first-msg": "0",
2722
+ flags: "",
2723
+ id: "794c103d-a5d5-4ce1-bcd8-98ac6717c8e7",
2724
+ mod: "0",
2725
+ "returning-chatter": "0",
2726
+ "room-id": "958683839",
2727
+ subscriber: "1",
2728
+ "tmi-sent-ts": "1761435518511",
2729
+ turbo: "0",
2730
+ "user-id": "958683839",
2731
+ "user-type": ""
2732
+ },
2733
+ nick: "an1by",
2734
+ userId: "958683839",
2735
+ displayName: "An1by",
2736
+ displayColor: "#DAA520",
2737
+ badges: [
2738
+ {
2739
+ type: "broadcaster",
2740
+ version: "1",
2741
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2742
+ description: "Broadcaster"
2743
+ },
2744
+ {
2745
+ type: "subscriber",
2746
+ version: "0",
2747
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2748
+ description: "Subscriber"
2749
+ },
2750
+ {
2751
+ type: "minecraft-15th-anniversary-celebration",
2752
+ version: "1",
2753
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2754
+ description: "Minecraft 15th Anniversary Celebration"
2755
+ }
2756
+ ],
2757
+ channel: "an1by",
2758
+ text: "I'll reply to that message",
2759
+ isAction: !1,
2760
+ emotes: [],
2761
+ msgId: "794c103d-a5d5-4ce1-bcd8-98ac6717c8e7"
2762
+ },
2763
+ renderedText: "I'll reply to that message"
2764
+ }
2765
+ },
2766
+ replyFrom: {
2767
+ listener: "message",
2768
+ event: {
2769
+ service: "twitch",
2770
+ data: {
2771
+ time: 1761435541811,
2772
+ tags: {
2773
+ "badge-info": "subscriber/21",
2774
+ badges: "broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1",
2775
+ "client-nonce": "b59db94320a8a01942290c61f6a27480",
2776
+ color: "#DAA520",
2777
+ "display-name": "An1by",
2778
+ emotes: "emotesv2_f54e2bcddf4948808b845e37dd4e08de:26-36",
2779
+ "first-msg": "0",
2780
+ flags: "",
2781
+ id: "bc101ec7-5663-4ee5-9580-536ed9a5804e",
2782
+ mod: "0",
2783
+ "reply-parent-display-name": "An1by",
2784
+ "reply-parent-msg-body": "I'll\\sreply\\sto\\sthat\\smessage",
2785
+ "reply-parent-msg-id": "794c103d-a5d5-4ce1-bcd8-98ac6717c8e7",
2786
+ "reply-parent-user-id": "958683839",
2787
+ "reply-parent-user-login": "an1by",
2788
+ "reply-thread-parent-display-name": "An1by",
2789
+ "reply-thread-parent-msg-id": "794c103d-a5d5-4ce1-bcd8-98ac6717c8e7",
2790
+ "reply-thread-parent-user-id": "958683839",
2791
+ "reply-thread-parent-user-login": "an1by",
2792
+ "returning-chatter": "0",
2793
+ "room-id": "958683839",
2794
+ subscriber: "1",
2795
+ "tmi-sent-ts": "1761435541217",
2796
+ turbo: "0",
2797
+ "user-id": "958683839",
2798
+ "user-type": ""
2799
+ },
2800
+ nick: "an1by",
2801
+ userId: "958683839",
2802
+ displayName: "An1by",
2803
+ displayColor: "#DAA520",
2804
+ badges: [
2805
+ {
2806
+ type: "broadcaster",
2807
+ version: "1",
2808
+ url: "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",
2809
+ description: "Broadcaster"
2810
+ },
2811
+ {
2812
+ type: "subscriber",
2813
+ version: "0",
2814
+ url: "https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",
2815
+ description: "Subscriber"
2816
+ },
2817
+ {
2818
+ type: "minecraft-15th-anniversary-celebration",
2819
+ version: "1",
2820
+ url: "https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",
2821
+ description: "Minecraft 15th Anniversary Celebration"
2822
+ }
2823
+ ],
2824
+ channel: "an1by",
2825
+ text: "@An1by Replying right now akidaKrutoi",
2826
+ isAction: !1,
2827
+ emotes: [{
2828
+ type: "twitch",
2829
+ name: "akidaKrutoi",
2830
+ id: "emotesv2_f54e2bcddf4948808b845e37dd4e08de",
2831
+ gif: !1,
2832
+ urls: {
2833
+ 1: "https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0",
2834
+ 2: "https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0",
2835
+ 4: "https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0"
2836
+ },
2837
+ start: 26,
2838
+ end: 36
2839
+ }],
2840
+ msgId: "bc101ec7-5663-4ee5-9580-536ed9a5804e"
2841
+ },
2842
+ renderedText: "@An1by Replying right now <img src=\"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0\" srcset=\"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0 4x\" title=\"akidaKrutoi\" class=\"emote\">"
2843
+ }
2844
+ }
2845
+ }, p = "onEventReceived";
2846
+ function m(e) {
2847
+ if (typeof window > "u") return;
2848
+ let t = f[e.startsWith("testMessage_") ? e.replace("testMessage_", "") : e];
2849
+ t && window.dispatchEvent(new CustomEvent(p, { detail: t }));
2850
+ }
2851
+ function h(e) {
2852
+ if (typeof window > "u") return;
2853
+ let t = d[e.startsWith("testAlert_") ? e.replace("testAlert_", "") : e];
2854
+ t && window.dispatchEvent(new CustomEvent(p, { detail: t }));
2855
+ }
2856
+ //#endregion
2857
+ //#region src/root/keys.ts
2858
+ function g(e) {
2859
+ if (!e.startsWith("testMessage")) return null;
2860
+ let t = e.replace("testMessage", "");
2861
+ return t.charAt(0).toLowerCase() + t.slice(1);
2862
+ }
2863
+ function _(e) {
2864
+ if (!e.startsWith("testAlert")) return null;
2865
+ let t = e.replace("testAlert", "");
2866
+ return t.charAt(0).toLowerCase() + t.slice(1);
2867
+ }
2868
+ //#endregion
2869
+ //#region src/root/message/twitch/user-message-data.ts
2870
+ var v = /* @__PURE__ */ function(e) {
2871
+ return e.BROADCASTER = "broadcaster", e.LEAD_MODERATOR = "lead_moderator", e.MODERATOR = "moderator", e.VIP = "vip", e.ARTIST = "artist", e.FOUNDER = "founder", e.SUBSCRIBER = "subscriber", e.TURBO = "turbo", e.DEFAULT = "default", e;
2872
+ }({}), y = ({ badges: e = [], tags: t = {} }) => {
2873
+ let n = (t) => !!e.find((e) => e.type === t), r = t.badges ?? "", i = t["user-type"] ?? "", a = r.includes("subscriber/1") || t.subscriber === "1" || n("subscriber"), o = r.includes("founder/1") || n("founder"), s = r.includes("broadcaster/1") || n("broadcaster"), c = t["first-msg"] === "1", l = t.turbo === "1", u = t.vip === "1" || r.includes("vip/1") || n("vip"), d = r.includes("lead_moderator/1") || n("lead_moderator"), f = (t.mod === "1" || r.includes("moderator/1") || i === "mod") && !d || n("moderator"), p = f || d, m = r.includes("artist-badge/1") || n("artist-badge"), h = [];
2874
+ return s && h.push(v.BROADCASTER), d && h.push(v.LEAD_MODERATOR), f && h.push(v.MODERATOR), u && h.push(v.VIP), m && h.push(v.ARTIST), o && h.push(v.FOUNDER), a && h.push(v.SUBSCRIBER), l && h.push(v.TURBO), h.push(v.DEFAULT), {
2875
+ isSubscriber: a,
2876
+ isBroadcaster: s,
2877
+ isFirstMessageChatter: c,
2878
+ isFounder: o,
2879
+ isTurbo: l,
2880
+ isVip: u,
2881
+ isAnyModerator: p,
2882
+ isModerator: f,
2883
+ isLeadModerator: d,
2884
+ isArtist: m,
2885
+ roles: h,
2886
+ includesBadgeType: n,
2887
+ getSubscriberMonths: () => {
2888
+ for (let e of ["badge-info", "badges"]) {
2889
+ let n = t[e];
2890
+ if (n) {
2891
+ let e = n.match(/^subscriber\/(\d+)$/);
2892
+ if (e) return parseInt(e[1], 10);
2893
+ }
2894
+ }
2895
+ return 0;
2896
+ },
2897
+ getBadgeUrlByType: (t) => e.find((e) => e.type === t)?.url
2898
+ };
2899
+ }, b = class {
2900
+ queue = [];
2901
+ isShowingAlert = !1;
2902
+ onNextAlert;
2903
+ constructor(e) {
2904
+ this.onNextAlert = e;
2905
+ }
2906
+ push(e) {
2907
+ this.queue.push(e);
2908
+ }
2909
+ processNextAlert() {
2910
+ if (this.queue.length === 0 || this.isShowingAlert) return;
2911
+ let e = this.queue.shift();
2912
+ e && (this.isShowingAlert = !0, this.onNextAlert(this, e));
2913
+ }
2914
+ };
2915
+ //#endregion
2916
+ export { g as a, f as c, l as d, n as f, _ as i, d as l, e as m, y as n, h as o, t as p, v as r, m as s, b as t, u };
2917
+
2918
+ //# sourceMappingURL=root-DJod-F4M.js.map