forked from HYPER-MOD/bug-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhypermod.js
More file actions
2495 lines (2489 loc) · 195 KB
/
hypermod.js
File metadata and controls
2495 lines (2489 loc) · 195 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//JANGAN DIUBAH NTR EROR NGAMOKK
//SUBSCRIBE AREXANS
const _0x289794 = _0x378e;
(function(_0x17bfb2, _0x7b6e8f) {
const _0x45a765 = _0x378e,
_0x82cb17 = _0x17bfb2();
while (!![]) {
try {
const _0x5478be = -parseInt(_0x45a765(0x32a)) / 0x1 + parseInt(_0x45a765(0x121)) / 0x2 * (parseInt(_0x45a765(0xf1)) / 0x3) + -parseInt(_0x45a765(0x20d)) / 0x4 * (-parseInt(_0x45a765(0x169)) / 0x5) + parseInt(_0x45a765(0x202)) / 0x6 + parseInt(_0x45a765(0x32f)) / 0x7 + parseInt(_0x45a765(0x362)) / 0x8 + -parseInt(_0x45a765(0x231)) / 0x9;
if (_0x5478be === _0x7b6e8f) break;
else _0x82cb17['push'](_0x82cb17['shift']());
} catch (_0x59fcf0) {
_0x82cb17['push'](_0x82cb17['shift']());
}
}
}(_0x5750, 0x9b0a4));
function _0x378e(_0x1fe52d, _0x100690) {
const _0x5750bc = _0x5750();
return _0x378e = function(_0x378e68, _0xa666af) {
_0x378e68 = _0x378e68 - 0xf0;
let _0x48b692 = _0x5750bc[_0x378e68];
return _0x48b692;
}, _0x378e(_0x1fe52d, _0x100690);
}
const {
WAConnection,
MessageType,
Presence,
MessageOptions,
Mimetype,
WALocationMessage,
WA_MESSAGE_STUB_TYPES,
ReconnectMode,
ProxyAgent,
GroupSettingChange,
ChatModification,
waChatKey,
WA_DEFAULT_EPHEMERAL,
mentionedJid,
processTime,
ECONNABORTED,
WA_DEAFULT_EPHEMERAL,
DataView,
TypedArray,
device,
Browser
} = require(_0x289794(0x221)), {
color,
bgcolor
} = require('./lib/color'), {
wait,
simih,
getBuffer,
h2k,
generateMessageID,
getGroupAdmins,
getRandom,
banner,
start,
info,
success,
close
} = require(_0x289794(0x182)), {
fetchJson,
fetchText
} = require('./lib/fetcher'), {
recognize
} = require(_0x289794(0x263)), yts = require(_0x289794(0x2ae)), imgbb = require(_0x289794(0x35b)), request = require(_0x289794(0x1f8)), fs = require('fs'), moment = require(_0x289794(0x268)), {
exec
} = require(_0x289794(0x13e)), fetch = require(_0x289794(0x35f)), axios = require(_0x289794(0x13d)), ffmpeg = require(_0x289794(0x1db)), {
removeBackgroundFromImageFile
} = require(_0x289794(0x19b)), lolis = require(_0x289794(0x2cb)), loli = new lolis(), welkom = JSON[_0x289794(0x379)](fs[_0x289794(0x267)](_0x289794(0x2d4))), setting = JSON[_0x289794(0x379)](fs[_0x289794(0x267)](_0x289794(0x2d0))), nsfw = JSON[_0x289794(0x379)](fs['readFileSync']('./src/nsfw.json')), samih = JSON[_0x289794(0x379)](fs['readFileSync'](_0x289794(0x1a3))), setiker = JSON['parse'](fs[_0x289794(0x267)]('./temp/stik.json')), audionye = JSON[_0x289794(0x379)](fs[_0x289794(0x267)](_0x289794(0x204))), imagenye = JSON[_0x289794(0x379)](fs[_0x289794(0x267)](_0x289794(0x192))), videonye = JSON[_0x289794(0x379)](fs['readFileSync'](_0x289794(0x155))), {
help
} = require(_0x289794(0x280)), {
emoji1
} = require(_0x289794(0x298)), {
emoji2
} = require(_0x289794(0x352)), {
virtex
} = require(_0x289794(0x1e8)), {
virtex2
} = require(_0x289794(0x32e)), {
virtex3
} = require('./virtex/virtex3'), {
virtex4
} = require('./virtex/virtex4'), {
virtex5
} = require(_0x289794(0x20b)), {
virtex6
} = require(_0x289794(0x15c)), {
virtex7
} = require(_0x289794(0x20a)), {
virtex8
} = require(_0x289794(0x1ce)), {
virtex9
} = require(_0x289794(0x238)), {
virtexbyhypermod
} = require('./virtex/virtexbyhypermod'), {
ngazap
} = require(_0x289794(0x36d)), {
virtag
} = require('./virtex/virtag');
owner = setting[_0x289794(0x152)], apikey = setting[_0x289794(0x262)], xchillds = setting[_0x289794(0x2f5)], zeks = setting[_0x289794(0x1ae)], fake = '𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️', gh = _0x289794(0x110), shp = '⬡', monoscape = _0x289794(0x370), image = fs[_0x289794(0x267)]('./media/image.jpeg'), thumbnail = fs[_0x289794(0x267)](_0x289794(0x30d)), gif = fs[_0x289794(0x267)]('./media/gif.gif'), virgam = fs[_0x289794(0x267)]('./media/virgam.jpeg');
function _0x5750() {
const _0xb7c7c1 = ['heapUsed', 'addOutputOptions', 'warn', 'ffmpeg\x20-i\x20', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=feet&apikey=hardianto', 'Hmmmm', 'status@broadcast', 'vname', './virtex/virtex8', '\x20-filter:a\x20\x22volume=200\x22\x20', '\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️', 'jid', '.exif', 'https://i0.wp.com/www.gambarunik.id/wp-content/uploads/2019/06/Top-Gambar-Foto-Profil-Kosong-Lucu-Tergokil-.jpg', 'connect', 'Gagal\x20om', 'Textnya\x20mana\x20um?', 'Perintah\x20di\x20terima,\x20mengeluarkan\x20:\x20@', './media/hypermod.json', 'Sukses\x20delete\x20all\x20chat\x20:)', '*Format\x20Error!*\x0a\x0a*Example\x20:*\x0a\x20•', 'fluent-ffmpeg', 'content-type', '\x20As\x20Admin\x20Group!', '.pdf', 'webp', '*\x0a▢\x20*Ext:\x20Mp3*\x0a▢\x20*Like\x20:\x20', '482007', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=neko&apikey=hardianto', 'key', 'maker3d3', 'https://api-xchillds.herokuapp.com/api/textmaker/senja?text=', '\x20})()', 'hgif', './virtex/virtex', 'This\x20is\x20list\x20of\x20blocked\x20number\x20:\x0a', 'user', 'quote', 'maker3d', 'version', '*Sticker\x20list\x20:*\x0a\x0a', 'blocked', 'toimg', '&apikey=', 'relayWAMessage', 'Started\x20:\x20', '*\x0a⌬\x20\x20*BIO\x20:\x20', 'fast', './media/\x20ꪶ𖣂ꫂ\x20HYPER\x20ボ\x20MOD\x20〽️.pdf', 'feet', 'request', 'upswteks', 'Reply\x20imagenya', 'Sukses\x20upload\x20sticker', 'BEGIN:VCARD\x0aVERSION:3.0\x0aN:©\x20𝘏𝘠𝘗𝘌𝘙\x20/>;;;\x0aFN:©\x20𝘏𝘠𝘗𝘌𝘙\x20/>\x0aitem1.TEL;waid=', '\x0a➸\x20*Extension\x20:*\x20', '\x20-filter:a\x20\x22atempo=1.0,asetrate=12345\x22\x20', '.webp', '&theme=battlefield&apikey=', 'https://imgur.com/', '1092702FwYQyu', '.......', './temp/vn.json', 'application/pdf', 'subject', '\x20```Loaded\x20Message```\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a```\x20-\x20[\x20', 'chat', '\x20-vcodec\x20copy\x20-an\x20', './virtex/virtex7', './virtex/virtex5', 'glow', '360176EbjoSH', '*\x0a\x0a*Lirik\x20:*\x20\x0a', '1629279246', 'end', '*\x0a\x0a*[\x20Wait\x20]Tunggu\x20Sebentar\x20kak...*', '>//<', 'wooden', 'notify', 'extension', 'profilehd', 'DD/MM\x20HH:mm:ss', '.jpeg', 'holo', 'coffeecup2', 'Nama\x20sticker\x20nya\x20apa?', '*\x0a▢\x20*Size\x20:\x20', 'futanari', 'title', 'tupai', 'createWriteStream', '@adiwajshing/baileys', '/v/t62.15575-24/25960156_531858411454529_1661348967408437918_n.enc?ccb=11-4&oh=da463aa9266c7fd0dde4594737ad854c&oe=614205F5', 'args\x20:', 'https://i.ibb.co/3hrZZ6s/hypermod.png', 'author', 'imageMessage', 'flower', 'Jumlah\x20harus\x20berupa\x20angka!', '*\x0a⌬\x20\x20*Following\x20:\x20', 'ghost', 'action', '359996400', 'ytmp4\x20[Link]', 'from', '\x20Become\x20Member\x20Group!', 'hash', '10870389vZtvPI', 'Success\x20disable\x20mode\x20simi\x20di\x20group\x20ini\x20🔥', 'Finish', '*「\x20INSTAGRAM\x20STALK」*\x0a\x0a⌬\x20\x20*Username\x20:\x20', 'img2url', 'Success\x20activate\x20features\x20welcome\x20di\x20group\x20ini\x20🔥', 'DD/MM/YY\x20HH:mm:ss', './virtex/virtex9', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=holo&apikey=hardianto', 'video/mp4', 'pastikan\x20link\x20sudah\x20benar!', 'buggc', 'groupSettingChange', '_[\x20!\x20]\x20Error\x20Query\x20Yang\x20Anda\x20Masukan\x20Tidak\x20Ada_', 'https://hardianto-chan.herokuapp.com/api/anime/random?sfw=gecg&apikey=hardianto', 'shift', './media/hypermod.txt', '𐨹𐨹𐨹𐨹𐨹𐨹𐨹𐨹𐨸𐨸𐨸𐨸𐨁𐨁𐨁𐨁𐨁𐨁𐨅𐨆𐨆𐨆𐨆𐨅𐨆𐨅𐨂𐨁𐨆𐨁𐨅𐨂𐨅𐨂𐨆𐨅𐨁𐨂𐨂𐨂𐨂𐨂𐨂𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨂𐨆𐨆𐨆𐨆𐨆𐨆𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨹𐨹𐨹𐨹𐨹𐨹𐨹𐨹𐨸𐨸𐨸𐨸𐨁𐨁𐨁𐨁𐨁𐨁𐨅𐨆𐨆𐨆𐨆𐨅𐨆𐨅𐨂𐨁𐨆𐨁𐨅𐨂𐨅𐨂𐨆𐨅𐨁𐨂𐨂𐨂𐨂𐨂𐨂𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨁𐨅𐨁𐨆𐨂𐨆𐨆𐨆𐨆𐨆𐨆𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨅𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨁𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨆𐨠\x20ꪶ𖣂ꫂ\x20𝘏𝘠𝘗𝘌𝘙\x20ボ\x20𝘔𝘖𝘋', 'display_url', 'floor', 'wait', 'tempo', 'Link\x20Nya\x20Mana?', 'Reply\x20vidionya', 'Error\x20:\x20%s', '\x20hypermod|chan', 'bugvn', 'groupAdd', 'upswimg', 'https://kagchi-api.glitch.me/meme/memes', 'linkgc', 'timestamp', 'yuri', '&theme=neon&apikey=', 'toggleDisappearingMessages', 'Tag\x20audio/vn\x20nya!', 'Apa\x20Yang\x20Mau\x20Dicari?', 'tits', 'Only\x20Owner', 'mirror', 'id1', '\x20hypermodChan', '\x20\x20@', 'nosound', '𝗸𝗶𝗿𝗶𝗺\x20𝗴𝗮𝗺𝗯𝗮𝗿\x20𝗱𝗲𝗻𝗴𝗮𝗻\x20𝗰𝗮𝗽𝘁𝗶𝗼𝗻\x20', 'http://zekais-api.herokuapp.com/ytmp4?url=', 'remoteJid', 'prepareMessageFromContent', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=eroFeet&apikey=hardianto', 'apikey', './lib/ocr', '\x20-filter_complex\x20\x22[0:v]setpts=0.5*PTS[v];[0:a]atempo=2[a]\x22\x20-map\x20\x22[v]\x22\x20-map\x20\x22[a]\x22\x20', 'audio/mp4', 'maker2d3', 'readFileSync', 'moment-timezone', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=kitsune&apikey=hardianto', '\x20\x0a\x09\x09\x09\x09\x09\x20\x20\x20\x20@', 'menu', 'sticker', '_[\x20!\x20]\x20Error\x20Saat\x20Memasuki\x20Web\x20Y2mate_', 'videoId', 'mau\x20send\x20berapa\x20bug\x20nya\x20bos?', 'following', 'splice', '.Playing\x20', 'https://api-xchillds.herokuapp.com/api/maker3?text=', 'deleteChat', '*\x0a▢\x20*Like\x20:\x20', 'tovn', 'conversation', './media/image.jpeg', 'bugdoc', 'lirik', 'neon', '\x20-filter_complex\x20\x22afftfilt=real=\x27hypot(re,im)*sin(0)\x27:imag=\x27hypot(re,im)*cos(0)\x27:win_size=512:overlap=0.75\x22\x20', '*Nama\x20bot*\x20:\x20', 'AR6z9PAvHjs9Qa7AYgBUjSEvcnOcRWycFpwieIhaMKdrhQ==', 'format', './menu/help', 'Yang\x20mau\x20di\x20add\x20jin\x20ya?', '\x20-af\x20atempo=4/3,asetrate=44500*3/4\x20', 'Pack\x20tidak\x20terdaftar', 'setprefix', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=holoEro&apikey=hardianto', '\x20-vcodec\x20libwebp\x20-filter:v\x20fps=fps=20\x20-lossless\x201\x20-loop\x200\x20-preset\x20default\x20-an\x20-vsync\x200\x20-s\x20512:512\x20', '©\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️', '*\x0a\x0a⌬\x20\x20*_Link\x20INSTAGRAM\x20:_*\x0a\x20\x20\x20\x20\x20https://instagram.com/', 'promote', 'remove', '\x0a\x20*ID\x20Video\x20:*\x20', 'blocklist', 'robot', 'result', 'USD', 'sendbug', 'Tag\x20cvk', 'Sayonara\x20@', 'WABot', 'participants', 'wallpaper', 'asupan', 'ffmpeg\x20-y\x20-i\x20', './virtex/emoji1', 'memoryUsage', '\x0a*Total\x20:\x20', 'mystatus', '.jpg', 'femdom', 'toLowerCase', 'green', '*\x0a▢\x20*Dislike\x20:\x20', 'https://api-xchillds.herokuapp.com/api/maker3d/no3?text=', 'base64EncodedAuthInfo', '「\x20*YOUTUBE\x20MP4*\x20」\x0a*Data\x20Berhasil\x20diDapatkan!*\x0a\x0a▢\x20*Judul\x20:\x20', 'stringify', 'Error\x20:\x20', 'messages', 'hex', 'thumb', 'erokemonomimi', 'transformer', 'Tolong\x20masukan\x20query!', 'XCHillDs', 'pesan\x20yang\x20anda\x20reply\x20tidak\x20mengandung\x20reply!', 'yt-search', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=trap&apikey=hardianto', '𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️', '```Reply\x20videonya!```', 'linkgroup', 'Uwu', '.png', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=femdom&apikey=hardianto', 'keys', 'Berhasil\x20Demote\x20@', 'bugloc', 'copyNForward', '\x0a\x20*Channel\x20:*\x20', 'map', 'audio', 'Masukin\x20id\x20grupnya\x20tolol', 'hode', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=eroYuri&apikey=hardianto', '\x0a>\x20:\x20', '*Image\x20list\x20:*\x0a\x0a', 'loli', 'Sukses\x20Menambahkan\x20Sticker\x0aCek\x20dengan\x20cara\x20', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=randomHentaiGif&apikey=hardianto', 'contextInfo', 'follower', 'Nama\x20vidionya\x20apa', 'log', 'https://api-xchillds.herokuapp.com/api/textmaker/alam?text=', '99999999', 'lolis.life', 'bugv1', 'neko', '\x20nopref\x0a\x20•', '&theme=golden&apikey=', './src/settings.json', 'name', 'unshift', 'mentionedJid', './src/welkom.json', 'fromMe', 'leave', 'stick', '\x20]\x20WA\x20Version```\x0a```\x20-\x20[\x20Baileys\x20]\x20Server```\x0a```\x20-\x20[\x20SELF\x20]\x20MODE```\x0a```\x20-\x20[\x20', 'foxgirl', '\x0a*Nomor\x20Bot*\x20:\x20@', '\x20Playing\x20', 'Sukses\x20menonaktifkan\x20fitur\x20welcome\x20di\x20group\x20ini\x20🔥', '*\x0a⌬\x20\x20*Full\x20Name\x20:\x20', 'budek', 'groupDemoteAdmin', 'participant', 'red', 'imut', 'igstalk', 'CATALOG', '_[\x20!\x20]\x20Error\x20Gagal\x20Dalam\x20Mendownload\x20Dan\x20Mengirim\x20Media_', 'ago', 'upswvid', 'AaaaGoblok', 'url2img', 'stickerMessage', 'downloadAndSaveMediaMessage', '*\x20\x0a\x20*Judul\x20:*\x20', 'https://chat.whatsapp.com/', 'Reply\x20Sticker\x20Nya\x20Bwang:D', 'Example\x20:\x20', 'https://api-xchillds.herokuapp.com/api/maker2?text=', 'https://api-xchillds.herokuapp.com/api/maker3d/no4?text=', 'contacts', 'bugimg', 'trim', 'xchillds', 'Suksess\x20broadcast', 'bugpc', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=gasm&apikey=hardianto', '\x20-strict\x20experimental\x20-vf\x20hue=s=0\x20-vcodec\x20mpeg4\x20-b\x202097152\x20-r\x2030\x20', 'views', 'pipe', '12012010222@s.whatsapp.net', 'Reply\x20gambarnya!', 'groupMetadata', '\x20multi\x0a\x20•', '*wait kkk 😉 | පොඩ්ඩක් ඉම්න 😉*', 'includes', '𝘀𝘁𝗶𝗰𝗸𝗲𝗿\x20𝗮𝘁𝗮𝘂\x20𝗿𝗲𝗽𝗹𝘆/𝘁𝗮𝗴\x20𝗴𝗮𝗺𝗯𝗮𝗿', 'startsWith', 'save', 'groupRemove', 'Tag\x20target\x20yang\x20ingin\x20di\x20tendang!', 'Penggunaan\x20', 'downloadMediaMessage', 'done', 'hasNewMessage', 'chat-update', 'gemes', './media/thumbnail.jpeg', 'bugpdf', 'Sukses\x20upload\x20audio', 's.whatsapp.net', '*List\x20Video\x20:*\x0a\x0a', 'location', '-vcodec', 'INQUIRY', 'Sukses\x20Upload\x20Story\x20Image\x20dengan\x20Caption:\x20', '\x0a*The\x20bot\x20is\x20active\x20on*\x20:\x20', 'demote', 'only', 'endsWith', 'https://api-xchillds.herokuapp.com/api/textmaker/roses?text=', 'maker2d4', './temp/audio/', 'mime', 'SINGLE_SELECT', 'Gunakan\x20kode\x20negara\x20mas', '1\x20untuk\x20mengaktifkan,\x200\x20untuk\x20menonaktifkan', '\x0a\x20*Views\x20:*\x20', 'replace', '[EVAL]', 'tutupgrup', 'catch', 'https://api.zeks.xyz/api/gtext?apikey=', 'ytmp3\x20[Link]\x20Or\x20', 'Berhasil\x20Demote\x0a', 'LINK\x20ERROR!', '1087417mjRkRF', 'bugbutton', 'toFixed', './stik', './virtex/virtex2', '6594301LuwALj', '©\x20XChiDs\x20/>*', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=girlSolo&apikey=hardianto', 'BRUwBrI0whaH8T/i6QORE0lWlBfxld1VFHrNLGvhKdU=', './temp/stick/hypermod.webp', '❏\x20Upload:\x20', 'open', 'google', 'hidetag', 'https://api-xchillds.herokuapp.com/api/textmaker/random?text=', 'updateProfilePicture', 'white', 'text', 'likes', 'Error!', 'uploadDate', '*\x0a▢\x20*Views\x20:\x20', 'videoMessage', './temp/foto/', 'getProfilePicture', '\x0a*Prefix*\x20:\x20', 'sendMessage', 'match', '\x20[Link]', 'toFormat', 'quotedM', 'clearall', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=eroKemonomimi&apikey=hardianto', 'hitamputih', 'string', 'buggif', '\x20-filter:a\x20\x22atempo=1.6,asetrate=3486\x22\x20', 'Gagal\x20menambahkan\x20target,\x20mungkin\x20karena\x20di\x20private', '\x20]\x20\x20Total\x20Chat```\x0a```\x20-\x20[\x20Vivo\x20]\x20HANDPHONE```\x0a```\x20-\x20[\x20', '*List\x20Vn:*\x0a\x0a', './virtex/emoji2', 'phone', 'spam', 'addvn', 'auto', 'golden', 'error', 'existsSync', 'Sukses\x20Up\x20story\x20wea\x20teks\x20', 'imgbb-uploader', '\x1b[1;31m~\x1b[1;37m>', 'This\x20command\x20can\x20only\x20be\x20used\x20in\x20groups!', 'getimg', 'node-fetch', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=keta&apikey=hardianto', 'listvid', '63080ZZkvkg', 'selesai', 'virtex', '_Succses\x20mengganti\x20Prefix\x20ke\x20Multiprefix!_', '\x0a*Total\x20Block\x20Contact*\x20:\x20', 'Sukses\x20Upload\x20Story\x20Video\x20dengan\x20Caption:\x20', 'E7DD5E109999869A96DAC0C5E2B2FD11', 'image', '\x20hypermod|chan|kawai', '&theme=art-quote&apikey=', '&theme=wooden-boarch&apikey=', './virtex/ngazap', 'getvn', 'kitsune', '```', '\x20Jam\x20', 'https://youtube.com/c/HYPERMOD', '&text3=', 'slice', 'contactsArrayMessage', 'gifstiker', 'bugtroli', '-vf', 'parse', 'burn', '\x20hypermod\x20chan', 'runtime', '\x20-filter:a\x20\x22atempo=1.6,asetrate=22100\x22\x20', 'length', '*Example\x20:*\x0a', '599519108102353', '\x0a\x20*Diupload\x20Pada\x20:*\x20', 'listvn', '[\x1b[1;32mEXEC\x1b[1;37m]', '「\x20*YOUTUBE\x20MP4*\x20」\x0a\x0a▢\x20*Judul\x20:*\x20', './temp/stick/', 'SUKSES', 'caption', 'unlinkSync', 'Yah\x20Error:v', 'uptime', 'nightcore', '9kmlZLy', 'ephemeralMessage', 'virtag', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=nekoGif&apikey=hardianto', 'Success\x20activate\x20mode\x20simi\x20di\x20group\x20ini\x20🔥', '\x20Detik', 'prepareMessageMedia', 'gasm', 'Err:\x20', 'add', 'logger', '&theme=coffee-cup2&apikey=', '~>\x20@', 'reply\x20videonya!', 'groupInviteCode', 'image/jpeg', '@c.us', 'ngif', './media/virgam.jpeg', 'erokitsune', './temp/stik.json', 'nobg', 'https://hardianto-chan.herokuapp.com/api/asupan?apikey=hardianto', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=avatar&apikey=hardianto', '©\x20𝘏𝘠𝘗𝘌𝘙\x20/>', '❒\x20*「\x20Lirik\x20Lagu\x20」*\x20❒\x20\x0a\x0a*Judul\x20:\x20', 'culik', 'Message', 'Yah\x20error\x20dek', 'dislike', 'g+QkG4LM8COUKZeFzWoIm0w5rF05bA0+59yiXtlIT6g=', 'https://github.com/hypermodChanKawaiii', 'e4bb5222011a8521cc60ce61a2aa1f98', 'https://mmg.whatsapp.net/d/f/AkTub54MdjyctBTY78KORwCzxRg5em6z0m0qpNOsNn6k.enc', 'message', 'trap', '_Sukses\x20Sloerr_', 'scale=\x27min(320,iw)\x27:min\x27(320,ih)\x27:force_original_aspect_ratio=decrease,fps=15,\x20pad=320:320:-1:-1:color=white@0.0,\x20split\x20[a][b];\x20[a]\x20palettegen=reserve_transparent=on:transparency_color=ffffff\x20[p];\x20[b][p]\x20paletteuse', '@g.us', '0@s.whatsapp.net', 'join', 'url', 'gif', 'then', 'Teksnya?', '\x0a\x20*Durasi\x20:*\x20', './temp/video/', '\x0a________________________\x0a\x0a', '718590eaXwYh', 'all', 'maker3d4', 'writeFile', '*Teks\x20nya\x20mana?*', 'group', 'Command\x20this\x20only\x20can\x20in\x20use\x20by\x20owner\x20bot!', 'bass', 'output', 'getQuotedObj', '*\x0a▢\x20*Ext:\x20Mp4*\x0a▢\x20*Quality\x20:\x20', '&theme=google-suggestion&apikey=', 'Tag\x20target\x20yang\x20ingin\x20di\x20clone', '\x20-filter:v\x20\x22split\x20[main][tmp];\x20[tmp]\x20crop=iw:ih/2:0:0,\x20vflip\x20[flip];\x20[main][flip]\x20overlay=0:H/2\x22\x20', 'Reply\x20audionya!', 'inputFormat', 'results', 'MB\x20/\x204095\x20]\x20RAM```\x0a\x0a```Speed\x20:\x20', '_Succses\x20mengganti\x20Prefix\x20ke\x20noprefix!_', 'quoted', 'reply\x20pesan!', '12012010222@s.whatsapp.net', 'meme', 'https://api.zeks.xyz/api/hartatahta?apikey=', 'image/gif', 'coffeecup', 'getvid', 'teks', 'axios', 'child_process', 'yts', 'http://zekais-api.herokuapp.com/ytmp3?url=', 'addstik', 'buglist', 'bugkatalog', '\x20-af\x20equalizer=f=94:width_type=o:width=2:g=30\x20', '9JQb+8+4H7C63cCm', 'liststik', '\x20\x20\x20@', '*\x0a⌬\x20\x20*Followers\x20:\x20', 'prefix', 'locationMessage', 'Command\x20this\x20only\x20can\x20in\x20use\x20by\x20admin\x20group!', 'multi', 'libwebp', 'https://api-xchillds.herokuapp.com/api/textmaker?text=', '[\x20INI\x20BC\x20]\x0a\x0a', 'upswsticker', 'CB:Blocklist', 'owner', 'kemonomimi', 'input', './temp/video.json', '999999999', 'chats', 'Udah\x20aktif\x20um', 'https://hardianto-chan.herokuapp.com/api/anime/random?sfw=foxGirl&apikey=hardianto', 'Reply\x20stikernya!', 'concat', './virtex/virtex6', '&theme=flower&apikey=', 'performance-now', '16408', 'Sukses\x20upload\x20lokasi:\x0a', '_Sudah\x20diaktifkan\x20sebelumnya!_', 'quotedMessage', 'video', '\x0a➸\x20*URL\x20:*\x20', 'J93DHS3AqHmXJQWm4XLv9iRY', '.mp4', 'serializeM', 'keta', '40tGioEn', 'announcement', 'size', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=yuri&apikey=hardianto', '*Uploading\x20kkk\x20👍*', 'Halo\x20@', 'Link\x20Tidack\x20Valid\x20Bruh:v️', 'bugstik', 'https://hardianto-chan.herokuapp.com/api/anime/random?sfw=wallpaper&apikey=hardianto', '\x20-filter_complex\x20\x22[0:v]setpts=2*PTS[v];[0:a]atempo=0.5[a]\x22\x20-map\x20\x22[v]\x22\x20-map\x20\x22[a]\x22\x20', 'maker3d2', 'bio', '\x20Menit\x20', 'stiker', '\x0aSelamat\x20datang\x20di\x20group\x20*', 'push', 'simi', 'https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=eroNeko&apikey=hardianto', 'close', 'Result\x20From\x20Database\x20:\x20', 'bugkontak', 'groupLeave', 'https://api-xchillds.herokuapp.com/api/maker4?text=', 'black', './src/stickers/', './lib/functions', 'eroneko', '&theme=summer&apikey=', 'application/txt', '_Gagal,\x20pada\x20saat\x20mengkonversi\x20sticker\x20ke\x20gambar_', 'data', 'start', 'setMaxListeners', '\x20*Youtube\x20Search*\x0a\x20*Judul\x20:*\x20', 'admin', 'https://api-xchillds.herokuapp.com/api/maker3d/no2?text=', '27Dd1fdsgQMoYR80f7Sbr5Vr58/689q4BagQZse40dg=', 'clone', 'writeFileSync', 'Error\x20:', 'Connecting...', './temp/image.json', 'now', './media/yamete.mp3', 'image/webp', 'messageTimestamp', 'Asia/Jakarta', '.mp3', 'Sukses\x20Menambahkan\x20video\x0aCek\x20dengan\x20cara\x20', 'Reply\x20videonya!', 'remove.bg', './src/y2mate.js', '\x0a\x0a*_Tunggu\x20Proses\x20Upload....._*\x0a', '_Succses\x20mengganti\x20Prefix\x20ke\x20', 'yellow', '「\x20*YOUTUBE\x20MP3*\x20」\x0a\x0a▢\x20*Judul\x20:*\x20', 'extendedTextMessage', 'Mode\x20simi\x20sudah\x20aktif', './src/simi.json', '\x20-filter:a\x20\x22atempo=1.0,asetrate=50000\x22\x20', 'glitch', '-doc', '\x0a\x0aහයිපර්\x20මොඩ්\x20තමා\x20ඉතින්😉\x20:\x20https://youtube.com/c/HYPERMOD', '&theme=glow&apikey=', 'username', '&theme=coffee-cup&apikey=', '&text2=', '*\x0a▢\x20*Upload\x20:\x20', 'Kebanyakan!', 'zeks', '[\x1b[1;31mRECV\x1b[1;37m]', 'battlefield', '❒\x20「\x20*IMGBB\x20TO\x20URL*\x20」\x0a\x0a➸\x20*ID\x20:*\x20', '@s.whatsapp.net', 'split', 'Bot', 'toString', '\x0a*Link\x20Channel\x20:*\x20', 'listimg', 'addvid', 'https://api-xchillds.herokuapp.com/api/maker/special/transformer?text=', 'ytmp4', 'Reply\x20stiker\x20nya', 'fastt', 'Isi\x20teksnya!', 'c.us', 'Command\x20this\x20only\x20can\x20in\x20use\x20by\x20owner\x20group!', 'head', '「\x20*YOUTUBE\x20SEARCH*\x20」', '\x0a▢\x20*Size\x20:\x20', 'Hallo\x20', '[\x20Broadcast\x20]\x0a\x0a', 'fullname'];
_0x5750 = function() {
return _0xb7c7c1;
};
return _0x5750();
}
let multi = !![],
nopref = ![],
single = ![],
prefa = 'Z';
blocked = [];
function kyun(_0x4a0c2b) {
const _0x1b98a6 = _0x289794;
function _0x1ede1b(_0x50ef24) {
return (_0x50ef24 < 0xa ? '0' : '') + _0x50ef24;
}
var _0x21d8ac = Math[_0x1b98a6(0x244)](_0x4a0c2b / (0x3c * 0x3c)),
_0x496dbc = Math[_0x1b98a6(0x244)](_0x4a0c2b % (0x3c * 0x3c) / 0x3c),
_0x4a0c2b = Math['floor'](_0x4a0c2b % 0x3c);
return _0x1ede1b(_0x21d8ac) + _0x1b98a6(0x371) + _0x1ede1b(_0x496dbc) + _0x1b98a6(0x175) + _0x1ede1b(_0x4a0c2b) + _0x1b98a6(0xf6);
}
async function starts() {
const _0x4c41e3 = _0x289794,
_0x476a5c = new WAConnection();
_0x476a5c[_0x4c41e3(0x1ed)] = [0x2, 0x847, 0x6], _0x476a5c[_0x4c41e3(0xfb)]['level'] = _0x4c41e3(0x1c8), console['log'](banner[_0x4c41e3(0x34c)]), _0x476a5c['on']('qr', () => {
const _0x159d29 = _0x4c41e3;
console[_0x159d29(0x2c8)](color('[', _0x159d29(0x33a)), color('!', _0x159d29(0x2e1)), color(']', _0x159d29(0x33a)), color('\x20Scan\x20the\x20qr\x20code\x20above'));
}), fs[_0x4c41e3(0x359)](_0x4c41e3(0x1d8)) && _0x476a5c['loadAuthInfo'](_0x4c41e3(0x1d8)), _0x476a5c['on']('connecting', () => {
const _0x500123 = _0x4c41e3;
start('2', _0x500123(0x191));
}), _0x476a5c['on'](_0x4c41e3(0x335), () => {
success('2', 'Connected');
}), await _0x476a5c[_0x4c41e3(0x1d4)]({
'timeoutMs': 0x1e * 0x3e8
}), fs[_0x4c41e3(0x18f)]('./media/hypermod.json', JSON[_0x4c41e3(0x2a4)](_0x476a5c[_0x4c41e3(0x2a2)](), null, '\x09')), _0x476a5c['on']('group-participants-update', async _0x53c70f => {
const _0x15039b = _0x4c41e3;
if (!welkom[_0x15039b(0x301)](_0x53c70f[_0x15039b(0x1d1)])) return;
try {
const _0x358f8b = await _0x476a5c[_0x15039b(0x2fe)](_0x53c70f['jid']);
console[_0x15039b(0x2c8)](_0x53c70f);
if (_0x53c70f[_0x15039b(0x22b)] == _0x15039b(0xfa)) {
num = _0x53c70f[_0x15039b(0x294)][0x0];
try {
ppimg = await _0x476a5c[_0x15039b(0x342)](_0x53c70f[_0x15039b(0x294)][0x0][_0x15039b(0x1b3)]('@')[0x0] + _0x15039b(0x101));
} catch {
ppimg = _0x15039b(0x1d3);
}
teks = _0x15039b(0x16e) + num['split']('@')[0x0] + _0x15039b(0x177) + _0x358f8b[_0x15039b(0x206)] + '*';
let _0x46f012 = await getBuffer(ppimg);
_0x476a5c['sendMessage'](_0x358f8b['id'], _0x46f012, MessageType[_0x15039b(0x369)], {
'caption': teks,
'contextInfo': {
'mentionedJid': [num]
}
});
} else {
if (_0x53c70f[_0x15039b(0x22b)] == _0x15039b(0x28a)) {
num = _0x53c70f[_0x15039b(0x294)][0x0];
try {
ppimg = await _0x476a5c[_0x15039b(0x342)](num[_0x15039b(0x1b3)]('@')[0x0] + _0x15039b(0x101));
} catch {
ppimg = _0x15039b(0x1d3);
}
teks = _0x15039b(0x292) + num[_0x15039b(0x1b3)]('@')[0x0];
let _0x44406b = await getBuffer(ppimg);
_0x476a5c[_0x15039b(0x344)](_0x358f8b['id'], _0x44406b, MessageType[_0x15039b(0x369)], {
'caption': teks,
'contextInfo': {
'mentionedJid': [num]
}
});
}
}
} catch (_0x21253a) {
console[_0x15039b(0x2c8)]('Error\x20:\x20%s', color(_0x21253a, 'red'));
}
}), _0x476a5c['on'](_0x4c41e3(0x151), _0x22e9a4 => {
const _0x33d4f9 = _0x4c41e3;
if (blocked[_0x33d4f9(0x37e)] > 0x2) return;
for (let _0x2cd860 of _0x22e9a4[0x1][_0x33d4f9(0x28c)]) {
blocked[_0x33d4f9(0x178)](_0x2cd860[_0x33d4f9(0x322)](_0x33d4f9(0x1be), _0x33d4f9(0x310)));
}
}), _0x476a5c['on'](_0x4c41e3(0x30b), async _0xbc1548 => {
const _0x551a81 = _0x4c41e3;
try {
if (!_0xbc1548[_0x551a81(0x30a)]) return;
_0xbc1548 = _0xbc1548[_0x551a81(0x2a6)][_0x551a81(0x122)]()[0x0];
if (!_0xbc1548[_0x551a81(0x113)]) return;
if (_0xbc1548[_0x551a81(0x1e3)] && _0xbc1548[_0x551a81(0x1e3)]['remoteJid'] == _0x551a81(0x1cc)) return;
if (!_0xbc1548[_0x551a81(0x1e3)][_0x551a81(0x2d5)]) return;
_0xbc1548['message'] = Object[_0x551a81(0x2b6)](_0xbc1548[_0x551a81(0x113)])[0x0] === _0x551a81(0xf2) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0xf2)][_0x551a81(0x113)] : _0xbc1548[_0x551a81(0x113)], global[_0x551a81(0x149)], global[_0x551a81(0x1ef)];
const _0x34a492 = JSON['stringify'](_0xbc1548[_0x551a81(0x113)]),
_0x282284 = _0xbc1548[_0x551a81(0x1e3)][_0x551a81(0x25f)],
_0x5845d9 = require(_0x551a81(0x15e)),
_0x1d58e2 = await _0x476a5c[_0x551a81(0x157)]['all'](),
_0x38cef4 = Object[_0x551a81(0x2b6)](_0xbc1548[_0x551a81(0x113)])[0x0],
{
text: _0x3223a1,
extendedText: _0x201e57,
contact: _0x3f753a,
location: _0x199697,
liveLocation: _0x3a2267,
image: _0x5bbf93,
video: _0x17442c,
sticker: _0x58632f,
document: _0x4af711,
audio: _0x1b1a60,
product: _0x3128db
} = MessageType,
_0x58e270 = moment['tz'](_0x551a81(0x197))['format'](_0x551a81(0x217)),
_0x31920a = _0x38cef4 === _0x551a81(0x277) && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x277)] ? _0xbc1548['message'][_0x551a81(0x277)] : _0x38cef4 == _0x551a81(0x226) && _0xbc1548['message'][_0x551a81(0x226)][_0x551a81(0x387)] ? _0xbc1548[_0x551a81(0x113)]['imageMessage'][_0x551a81(0x387)] : _0x38cef4 == _0x551a81(0x340) && _0xbc1548['message'][_0x551a81(0x340)]['caption'] ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x340)]['caption'] : _0x38cef4 == _0x551a81(0x1a1) && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x1a1)]['text'] ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x1a1)][_0x551a81(0x33b)] : '' [_0x551a81(0x374)](0x1)[_0x551a81(0x2f4)]()['split'](/ +/)[_0x551a81(0x240)]()['toLowerCase']();
if (multi) var _0x165b0f = /^[°•π÷×¶∆£¢€¥®™✓=|~zZ+×_*!#$%^&./\\©^]/ ['test'](_0x31920a) ? _0x31920a['match'](/^[°•π÷×¶∆£¢€¥®™✓=|~xzZ+×_*!#$,|`÷?;:%^&./\\©^]/gi) : 'Z';
else nopref ? _0x165b0f = '' : single && (_0x165b0f = prefa);
body = _0x38cef4 === 'conversation' && _0xbc1548['message'][_0x551a81(0x277)]['startsWith'](_0x165b0f) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x277)] : _0x38cef4 == _0x551a81(0x226) && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x226)][_0x551a81(0x387)][_0x551a81(0x303)](_0x165b0f) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x226)][_0x551a81(0x387)] : _0x38cef4 == _0x551a81(0x340) && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x340)][_0x551a81(0x387)][_0x551a81(0x303)](_0x165b0f) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x340)]['caption'] : _0x38cef4 == _0x551a81(0x1a1) && _0xbc1548['message'][_0x551a81(0x1a1)]['text'][_0x551a81(0x303)](_0x165b0f) ? _0xbc1548['message'][_0x551a81(0x1a1)][_0x551a81(0x33b)] : '', budy = _0x38cef4 === 'conversation' ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x277)] : _0x38cef4 === _0x551a81(0x1a1) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x1a1)][_0x551a81(0x33b)] : '';
const _0x4eeb46 = body[_0x551a81(0x322)](_0x165b0f, '')['trim']()[_0x551a81(0x1b3)](/ +/)[_0x551a81(0x240)]()[_0x551a81(0x29e)](),
_0x68de3b = body[_0x551a81(0x2f4)]()[_0x551a81(0x1b3)](/ +/)['slice'](0x1),
_0x525d89 = body[_0x551a81(0x303)](_0x165b0f);
chats = _0x38cef4 === _0x551a81(0x277) ? _0xbc1548[_0x551a81(0x113)][_0x551a81(0x277)] : _0x38cef4 === _0x551a81(0x1a1) ? _0xbc1548[_0x551a81(0x113)]['extendedTextMessage']['text'] : '';
const _0x110974 = chats[_0x551a81(0x374)](_0x4eeb46[_0x551a81(0x37e)] + 0x2, chats[_0x551a81(0x37e)]);
mess = {
'wait': _0x551a81(0x300),
'success': 'Ok',
'error': {
'stick': _0x551a81(0x389),
'Iv': _0x551a81(0x16f)
},
'only': {
'group': _0x551a81(0x35d),
'ownerG': _0x551a81(0x1bf),
'ownerB': _0x551a81(0x127),
'admin': _0x551a81(0x14b),
'Badmin': 'Commands\x20this\x20only\x20can\x20in\x20use\x20when\x20bot\x20becomes\x20admin!'
}
};
const _0x1c0267 = _0x476a5c[_0x551a81(0x1ea)][_0x551a81(0x1d1)],
_0x276aa2 = [setting['owner'] + _0x551a81(0x1b2)],
_0x5917db = _0x282284[_0x551a81(0x319)](_0x551a81(0x117)),
_0x2b6367 = _0x5917db ? _0xbc1548[_0x551a81(0x2e0)] : _0xbc1548['key'][_0x551a81(0x25f)],
_0x22bf98 = _0x5917db ? await _0x476a5c[_0x551a81(0x2fe)](_0x282284) : '',
_0xdb60fc = _0x5917db ? _0x22bf98[_0x551a81(0x206)] : '',
_0x1d759d = _0x5917db ? _0x22bf98[_0x551a81(0x1d1)] : '',
_0x2a848f = _0x5917db ? _0x22bf98['participants'] : '',
_0x4460af = _0x5917db ? getGroupAdmins(_0x2a848f) : '',
_0x470464 = _0x4460af['includes'](_0x1c0267) || ![],
_0x1a1662 = _0x4460af[_0x551a81(0x301)](_0x2b6367) || ![],
_0x161999 = _0x5917db ? welkom[_0x551a81(0x301)](_0x282284) : ![],
_0x3ac2d9 = _0x5917db ? nsfw[_0x551a81(0x301)](_0x282284) : ![],
_0x4fc8fb = _0x68de3b[_0x551a81(0x119)]('\x20'),
_0x5458fa = _0xbc1548[_0x551a81(0x1e3)][_0x551a81(0x2d5)] ? _0x476a5c[_0x551a81(0x1ea)]['name'] : conts[_0x551a81(0x214)] || conts[_0x551a81(0x1cd)] || conts[_0x551a81(0x2d1)] || '-',
_0x203932 = _0x5917db ? samih[_0x551a81(0x301)](_0x282284) : ![],
_0x438b84 = _0x276aa2['includes'](_0x2b6367),
_0x1575dd = _0x3a9f8e => {
const _0x47b41f = _0x551a81;
return _0x3a9f8e[_0x47b41f(0x345)](new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&/=]*)/, 'gi'));
},
{
y2mateA: _0xc1fd28,
y2mateV: _0x5cf324
} = require(_0x551a81(0x19c)),
_0x2f7479 = async (_0x5e92b5, _0x30576c, _0x1f81f2) => {
const _0x22a7c7 = _0x551a81;
hasil = await getBuffer(_0x5e92b5), _0x476a5c[_0x22a7c7(0x344)](_0x282284, hasil, _0x30576c, _0x1f81f2)[_0x22a7c7(0x325)](_0x5a8f12 => {
const _0x433e5d = _0x22a7c7;
fetch(_0x5e92b5)[_0x433e5d(0x11c)](_0x160ea4 => {
const _0x390185 = _0x433e5d;
_0x476a5c['sendMessage'](_0x282284, _0x160ea4, _0x30576c, _0x1f81f2)[_0x390185(0x325)](_0x304256 => {
const _0x3bda79 = _0x390185;
_0x476a5c[_0x3bda79(0x344)](_0x282284, {
'url': _0x5e92b5
}, _0x30576c, _0x1f81f2)[_0x3bda79(0x325)](_0x4a0aaa => {
const _0x17e565 = _0x3bda79;
_0x2d6888(_0x17e565(0x2e5)), console['log'](_0x4a0aaa);
});
});
});
});
}, _0x2d6888 = _0x2d6bd9 => {
_0x476a5c['sendMessage'](_0x282284, _0x2d6bd9, _0x3223a1, {
'quoted': _0xbc1548
});
}, _0x3b1f8b = {
'key': {
'participant': _0x551a81(0x118)
},
'message': {
'locationMessage': {
'name': fake,
'jpegThumbnail': thumbnail
}
}
}, _0x5223f8 = {
'key': {
'participant': _0x551a81(0x118)
},
'message': {
'documentMessage': {
'title': fake,
'jpegThumbnail': thumbnail
}
}
}, _0x512aa8 = {
'key': {
'fromMe': ![],
'participant': '0@s.whatsapp.net',
..._0x282284 ? {
'remoteJid': _0x551a81(0x1cc)
} : {}
},
'message': {
'productMessage': {
'product': {
'productImage': {
'mimetype': _0x551a81(0x100),
'jpegThumbnail': thumbnail
},
'title': fake,
'description': _0x551a81(0x2b3),
'currencyCode': _0x551a81(0x28f),
'priceAmount1000': _0x551a81(0x1e1),
'retailerId': fake,
'productImageCount': 0x1
},
'businessOwnerJid': _0x551a81(0x118)
}
}
}, _0x2d1dca = {
'key': {
'fromMe': ![],
'participant': _0x551a81(0x118),
'remoteJid': _0x551a81(0x118)
},
'message': {
'orderMessage': {
'itemCount': 0xa,
'status': 0xc8,
'thumbnail': _0x5bbf93,
'surface': 0xc8,
'message': fake + _0x551a81(0x2c0) + _0x4eeb46,
'orderTitle': 'Hmm',
'sellerJid': _0x551a81(0x118)
}
}
}, _0x8e3ad = {
'key': {
'remoteJid': _0x551a81(0x136),
'fromMe': !![],
'id': 'E7DD5E109999869A96DAC0C5E2B2FD11'
},
'message': {
'stickerMessage': {
'url': _0x551a81(0x112),
'fileSha256': _0x551a81(0x18d),
'fileEncSha256': _0x551a81(0x10f),
'mediaKey': _0x551a81(0x332),
'mimetype': _0x551a81(0x195),
'height': 0x40,
'width': 0x40,
'directPath': '/v/t62.15575-24/25960156_531858411454529_1661348967408437918_n.enc?ccb=11-4&oh=da463aa9266c7fd0dde4594737ad854c&oe=614205F5',
'fileLength': _0x551a81(0x15f),
'mediaKeyTimestamp': _0x551a81(0x20f),
'isAnimated': ![]
}
}
}, _0x26987d = async (_0x3317ae, _0x22e81b, _0x2e84d3 = '', _0x528847 = []) => {
const _0x2da025 = _0x551a81;
_0x528847[_0x2da025(0x37e)] > 0x0 && (_0x2e84d3 = normalizeMention(_0x3317ae, _0x2e84d3, _0x528847));
const _0xfdf4c3 = Date['now']() / 0x2710,
_0x1fb563 = _0xfdf4c3[_0x2da025(0x1b5)]();
let _0x113846 = '';
var _0x4feb50 = function(_0xe17bcb, _0x1d1efe, _0x3b7368) {
const _0x214eca = _0x2da025;
request[_0x214eca(0x1c0)](_0xe17bcb, function(_0x397ab8, _0x13de8d, _0x1ca1d8) {
const _0x4d94ae = _0x214eca;
_0x113846 = _0x13de8d['headers'][_0x4d94ae(0x1dc)], request(_0xe17bcb)[_0x4d94ae(0x2fb)](fs[_0x4d94ae(0x220)](_0x1d1efe))['on']('close', _0x3b7368);
});
};
_0x4feb50(_0x22e81b, _0x1fb563, async function() {
const _0x42f69e = _0x2da025;
console['log'](_0x42f69e(0x309));
let _0x5c69f3 = fs[_0x42f69e(0x267)](_0x1fb563),
_0x1140b3 = _0x113846[_0x42f69e(0x1b3)]('/')[0x0] + _0x42f69e(0x10c);
_0x113846 === _0x42f69e(0x139) && (_0x1140b3 = MessageType[_0x42f69e(0x163)], _0x113846 = Mimetype['gif']), _0x113846['split']('/')[0x0] === _0x42f69e(0x2bc) && (_0x113846 = Mimetype['mp4Audio']), _0x476a5c[_0x42f69e(0x344)](_0x3317ae, _0x5c69f3, _0x1140b3, {
'quoted': _0xbc1548,
'mimetype': _0x113846,
'caption': _0x2e84d3,
'contextInfo': {
'mentionedJid': _0x528847
}
}), fs[_0x42f69e(0x388)](_0x1fb563);
});
}, _0x285406 = (_0x1568f1, _0x25feb4) => {
const _0x140906 = _0x551a81;
_0x476a5c[_0x140906(0x344)](_0x1568f1, _0x25feb4, _0x3223a1);
}, _0x20810b = (_0x5344f6, _0xce5a2c, _0x1d953e) => {
const _0x5b12db = _0x551a81;
_0x1d953e == null || _0x1d953e == undefined || _0x1d953e == ![] ? _0x476a5c['sendMessage'](_0x282284, _0x5344f6['trim'](), _0x201e57, {
'contextInfo': {
'mentionedJid': _0xce5a2c
}
}) : _0x476a5c[_0x5b12db(0x344)](_0x282284, _0x5344f6[_0x5b12db(0x2f4)](), _0x201e57, {
'quoted': _0xbc1548,
'contextInfo': {
'mentionedJid': _0xce5a2c
}
});
}, _0xcac994 = async (_0x242a16, _0x30315f) => {
const _0xbd66ef = _0x551a81;
var _0x1a13a7 = Date[_0xbd66ef(0x193)]() / 0x2710,
_0x49b266 = function(_0x1d553f, _0x5936ab, _0x4e12b2) {
const _0x2be013 = _0xbd66ef;
request[_0x2be013(0x1c0)](_0x1d553f, function(_0xef3c86, _0x39a426, _0x5ba67e) {
const _0x2cec77 = _0x2be013;
request(_0x1d553f)['pipe'](fs['createWriteStream'](_0x5936ab))['on'](_0x2cec77(0x17b), _0x4e12b2);
});
};
_0x49b266(_0x30315f, _0xbd66ef(0x32d) + _0x1a13a7 + _0xbd66ef(0x2b4), async function() {
const _0x57dfdd = _0xbd66ef;
console['log'](_0x57dfdd(0x363));
let _0x2a4aea = _0x57dfdd(0x32d) + _0x1a13a7 + _0x57dfdd(0x2b4),
_0x59c02b = './stik' + _0x1a13a7 + _0x57dfdd(0x1ff);
exec(_0x57dfdd(0x1c9) + _0x2a4aea + _0x57dfdd(0x286) + _0x59c02b, _0x40dab0 => {
const _0x4eb599 = _0x57dfdd;
let _0x5d8b06 = fs[_0x4eb599(0x267)](_0x59c02b);
_0x476a5c['sendMessage'](_0x242a16, _0x5d8b06, MessageType[_0x4eb599(0x26c)], {
'quoted': _0xbc1548
}), fs[_0x4eb599(0x388)](_0x2a4aea), fs['unlinkSync'](_0x59c02b);
});
});
};
colors = ['red', 'white', _0x551a81(0x180), 'blue', _0x551a81(0x19f), _0x551a81(0x29f)];
const _0x1da0fd = _0x38cef4 === _0x551a81(0x226) || _0x38cef4 === _0x551a81(0x340),
_0x1f8df6 = _0x38cef4 === 'extendedTextMessage' && _0x34a492[_0x551a81(0x301)]('imageMessage'),
_0x49b3f4 = _0x38cef4 === _0x551a81(0x1a1) && _0x34a492[_0x551a81(0x301)]('audioMessage'),
_0xf9b2b7 = _0x38cef4 === _0x551a81(0x1a1) && _0x34a492[_0x551a81(0x301)](_0x551a81(0x14a)),
_0x306d3f = _0x38cef4 === 'extendedTextMessage' && _0x34a492['includes']('videoMessage'),
_0x493573 = _0x38cef4 === _0x551a81(0x1a1) && _0x34a492['includes'](_0x551a81(0x2ea));
if (!_0x5917db && _0x525d89) console[_0x551a81(0x2c8)](_0x551a81(0x35c), _0x551a81(0x383), _0x58e270, color(_0x4eeb46), _0x551a81(0x22e), color(_0x2b6367[_0x551a81(0x1b3)]('@')[0x0]), _0x551a81(0x223), color(_0x68de3b[_0x551a81(0x37e)]));
if (!_0x5917db && !_0x525d89) console['log'](_0x551a81(0x35c), _0x551a81(0x1af), _0x58e270, color('Message'), _0x551a81(0x22e), color(_0x2b6367[_0x551a81(0x1b3)]('@')[0x0]), _0x551a81(0x223), color(_0x68de3b[_0x551a81(0x37e)]));
if (_0x525d89 && _0x5917db) console[_0x551a81(0x2c8)](_0x551a81(0x35c), _0x551a81(0x383), _0x58e270, color(_0x4eeb46), _0x551a81(0x22e), color(_0x2b6367[_0x551a81(0x1b3)]('@')[0x0]), 'in', color(_0xdb60fc), _0x551a81(0x223), color(_0x68de3b[_0x551a81(0x37e)]));
if (!_0x525d89 && _0x5917db) console[_0x551a81(0x2c8)](_0x551a81(0x35c), _0x551a81(0x1af), _0x58e270, color(_0x551a81(0x10c)), _0x551a81(0x22e), color(_0x2b6367[_0x551a81(0x1b3)]('@')[0x0]), 'in', color(_0xdb60fc), _0x551a81(0x223), color(_0x68de3b['length']));
let _0x345c78 = _0x476a5c[_0x551a81(0x2f2)][_0x282284] != undefined ? _0x476a5c[_0x551a81(0x2f2)][_0x282284]['vname'] || _0x476a5c[_0x551a81(0x2f2)][_0x282284][_0x551a81(0x214)] : undefined;
if (_0x345c78 != undefined) {} else _0x345c78 = _0xdb60fc;
function _0x5f2a09(_0x1a8c46, _0x23a76c) {
const _0x49fe0b = _0x551a81;
if (!_0x1a8c46) _0x1a8c46 = _0x49fe0b(0x293);
if (!_0x23a76c) _0x23a76c = _0x49fe0b(0x1b4);
_0x23a76c = _0x23a76c['replace'](/[^a-zA-Z0-9]/g, '');
let _0x42134d = _0x23a76c + '_' + _0x1a8c46;
if (fs[_0x49fe0b(0x359)](_0x49fe0b(0x181) + _0x42134d + _0x49fe0b(0x1d2))) return './src/stickers/' + _0x42134d + _0x49fe0b(0x1d2);
const _0x3a02b7 = {
'sticker-pack-name': _0x1a8c46,
'sticker-pack-publisher': _0x23a76c
},
_0x1ef53e = Buffer[_0x49fe0b(0x22e)]([0x49, 0x49, 0x2a, 0x0, 0x8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x41, 0x57, 0x7, 0x0]),
_0x5f07b5 = [0x0, 0x0, 0x16, 0x0, 0x0, 0x0];
let _0x30220d = JSON['stringify'](_0x3a02b7)[_0x49fe0b(0x37e)],
_0x24e99d;
_0x30220d > 0x100 ? (_0x30220d = _0x30220d - 0x100, _0x5f07b5[_0x49fe0b(0x2d2)](0x1)) : _0x5f07b5['unshift'](0x0);
_0x30220d < 0x10 ? (_0x24e99d = _0x30220d['toString'](0x10), _0x24e99d = '0' + _0x30220d) : _0x24e99d = _0x30220d['toString'](0x10);
const _0x1056dc = Buffer['from'](_0x24e99d, _0x49fe0b(0x2a7)),
_0x2152d5 = Buffer[_0x49fe0b(0x22e)](_0x5f07b5),
_0x601332 = Buffer[_0x49fe0b(0x22e)](JSON['stringify'](_0x3a02b7)),
_0x1c3652 = Buffer[_0x49fe0b(0x15b)]([_0x1ef53e, _0x1056dc, _0x2152d5, _0x601332]);
fs[_0x49fe0b(0x124)](_0x49fe0b(0x181) + _0x42134d + _0x49fe0b(0x1d2), _0x1c3652, _0x1caed1 => {
const _0x2c7015 = _0x49fe0b;
return _0x2c7015(0x181) + _0x42134d + _0x2c7015(0x1d2);
});
}
switch (_0x4eeb46) {
case _0x551a81(0x26b):
case 'help':
let _0x36770c = fs[_0x551a81(0x267)](_0x551a81(0x278)),
_0x14c0a7 = await _0x476a5c['prepareMessageMedia'](_0x36770c, MessageType[_0x551a81(0x369)], {
'thumbnail': fs['readFileSync']('./media/thumbnail.jpeg')
}),
_0x21e7c8 = 0x4,
_0x4a1386 = [{
'buttonId': 'id1',
'buttonText': {
'displayText': _0x551a81(0x2b0)
},
'type': 0x1
}],
_0x47b740 = {
'contentText': help(_0x165b0f, shp, monoscape),
'footerText': _0x551a81(0x109),
'buttons': _0x4a1386,
'headerType': 0x4,
..._0x14c0a7
};
_0x476a5c[_0x551a81(0x344)](_0x282284, _0x47b740, MessageType['buttonsMessage'], {
'contextInfo': {
'text': '🔥',
'forwardingScore': 0x3b9aca00,
'isForwarded': ![],
'sendEphemeral': ![],
'externalAdReply': {
'title': _0x551a81(0x1c3) + _0x5458fa,
'body': '',
'previewType': 'PHOTO',
'thumbnailUrl': _0x551a81(0x224),
'thumbnail': fs[_0x551a81(0x267)](_0x551a81(0x30d)),
'sourceUrl': _0x551a81(0x372)
}
},
'quoted': {
'key': {
'remoteJid': _0x551a81(0x136),
'fromMe': !![],
'id': _0x551a81(0x368)
},
'message': {
'stickerMessage': {
'url': _0x551a81(0x112),
'fileSha256': _0x551a81(0x18d),
'fileEncSha256': _0x551a81(0x10f),
'mediaKey': 'BRUwBrI0whaH8T/i6QORE0lWlBfxld1VFHrNLGvhKdU=',
'mimetype': _0x551a81(0x195),
'height': 0x40,
'width': 0x40,
'directPath': _0x551a81(0x222),
'fileLength': '16408',
'mediaKeyTimestamp': _0x551a81(0x20f),
'isAnimated': ![]
}
}
}
});
break;
case _0x551a81(0x37c):
run = process['uptime'](), teks = '' + kyun(run), _0x2d6888(teks);
break;
case _0x551a81(0x1f9):
if (!_0x4fc8fb) return _0x2d6888(_0x551a81(0x1bd));
_0x476a5c[_0x551a81(0x344)](_0x551a81(0x1cc), '' + _0x4fc8fb, _0x201e57), _0x2d6888(_0x551a81(0x35a) + _0x4fc8fb);
break;
case _0x551a81(0x24d):
if (_0x1f8df6) {
const _0x5de3a6 = _0x1f8df6 ? JSON[_0x551a81(0x379)](JSON[_0x551a81(0x2a4)](_0xbc1548)[_0x551a81(0x322)](_0x551a81(0x348), 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)][_0x551a81(0x2c5)] : _0xbc1548;
cihcih = await _0x476a5c[_0x551a81(0x308)](_0x5de3a6), _0x476a5c[_0x551a81(0x344)](_0x551a81(0x1cc), cihcih, _0x5bbf93, {
'caption': '' + _0x4fc8fb
}), bur = _0x551a81(0x315) + _0x4fc8fb, _0x476a5c['sendMessage'](_0x282284, bur, _0x3223a1, {
'quoted': _0xbc1548
});
} else _0x2d6888(_0x551a81(0x2fd));
break;
case _0x551a81(0x2e7):
if (_0x306d3f) {
const _0x1179a9 = _0x306d3f ? JSON[_0x551a81(0x379)](JSON[_0x551a81(0x2a4)](_0xbc1548)[_0x551a81(0x322)](_0x551a81(0x348), 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)]['contextInfo'] : _0xbc1548;
cihcih = await _0x476a5c[_0x551a81(0x308)](_0x1179a9), _0x476a5c[_0x551a81(0x344)](_0x551a81(0x1cc), cihcih, _0x17442c, {
'caption': '' + _0x4fc8fb
}), bur = _0x551a81(0x367) + _0x4fc8fb, _0x476a5c[_0x551a81(0x344)](_0x282284, bur, _0x3223a1, {
'quoted': _0xbc1548
});
} else _0x2d6888(_0x551a81(0xfe));
break;
case 'maker2d2':
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + '\x20hypermod\x20chan');
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x2f0) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)]['results']), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x266):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x273) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu['result'][_0x551a81(0x131)]), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x31b):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x17f) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x131)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x1ec):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body['slice'](0x8), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/maker3d?text=' + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)]['results']), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x173):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body['slice'](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x18c) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x131)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x1e4):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x2a1) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x131)]), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + '\x0a\x0aහයිපර්\x20මොඩ්\x20තමා\x20ඉතින්😉\x20:\x20https://youtube.com/c/HYPERMOD'
});
break;
case _0x551a81(0x123):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x2f1) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu['result'][_0x551a81(0x131)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x2aa):
if (_0x68de3b['length'] < 0x1) return _0x2d6888('*Example\x20:*\x0a' + _0x165b0f + _0x4eeb46 + _0x551a81(0x37b));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x1b9) + darknn + _0x551a81(0x1f1) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x131)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x336):
if (_0x68de3b['length'] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x36a));
darknn = body[_0x551a81(0x374)](0x9), ll1 = darknn[_0x551a81(0x1b3)]('|')[0x0], ll2 = darknn[_0x551a81(0x1b3)]('|')[0x1], ll3 = darknn['split']('|')[0x0], _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x14e) + ll1 + '&text2=' + ll2 + _0x551a81(0x373) + ll3 + _0x551a81(0x12c) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)]['url']), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x1b0):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x24a));
darknn = body[_0x551a81(0x374)](0x9), ll1 = darknn[_0x551a81(0x1b3)]('|')[0x0], ll2 = darknn[_0x551a81(0x1b3)]('|')[0x1], _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/textmaker/game?text=' + ll1 + _0x551a81(0x1ab) + ll2 + _0x551a81(0x200) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + '\x0a\x0aහයිපර්\x20මොඩ්\x20තමා\x20ඉතින්😉\x20:\x20https://youtube.com/c/HYPERMOD'
});
break;
case _0x551a81(0x13a):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + '\x20hypermod\x20chan');
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x1e5) + darknn + _0x551a81(0x1aa) + xchillds), buffer1 = await getBuffer(anu['result']['url']), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x21a):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + '\x20hypermod\x20chan');
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x1e5) + darknn + _0x551a81(0xfc) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)]['url']), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x27b):
if (_0x68de3b['length'] < 0x1) return _0x2d6888('*Example\x20:*\x0a' + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/textmaker/metallic?text=' + darknn + _0x551a81(0x252) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x290):
anu = body[_0x551a81(0x374)](0xb), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c[_0x551a81(0x253)](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x476a5c['toggleDisappearingMessages'](anu, 0x7 * 0x18 * 0x3c * 0x3c), _0x2d6888(_0x551a81(0x115));
break;
case _0x551a81(0x20c):
if (_0x68de3b['length'] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/textmaker/metallic?text=' + darknn + _0x551a81(0x1a8) + xchillds), buffer1 = await getBuffer(anu['result'][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case 'summer':
if (_0x68de3b['length'] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body['slice'](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x2c9) + darknn + _0x551a81(0x184) + xchillds), buffer1 = await getBuffer(anu['result'][_0x551a81(0x11a)]), _0x476a5c['sendMessage'](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x227):
if (_0x68de3b['length'] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/textmaker/alam?text=' + darknn + _0x551a81(0x15d) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x37a):
if (_0x68de3b['length'] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson(_0x551a81(0x338) + darknn + '&theme=text-burn&apikey=' + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x1eb):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888('*Example\x20:*\x0a' + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('https://api-xchillds.herokuapp.com/api/textmaker/random?text=' + darknn + _0x551a81(0x36b) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x213):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + _0x551a81(0x25a));
darknn = body['slice'](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x31a) + darknn + _0x551a81(0x36c) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x357):
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x37f) + _0x165b0f + _0x4eeb46 + '\x20hypermodChan');
darknn = body[_0x551a81(0x374)](0x9), _0x2d6888(mess['wait']), anu = await fetchJson(_0x551a81(0x31a) + darknn + _0x551a81(0x2cf) + xchillds), buffer1 = await getBuffer(anu[_0x551a81(0x28e)][_0x551a81(0x11a)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buffer1, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': darknn + _0x551a81(0x1a7)
});
break;
case _0x551a81(0x376):
case 's':
case 'stickergif':
case 'sticker':
case _0x551a81(0x176):
if ((_0x1da0fd && !_0xbc1548[_0x551a81(0x113)][_0x551a81(0x340)] || _0x1f8df6) && _0x68de3b[_0x551a81(0x37e)] == 0x0) {
const _0x3cc9b1 = _0x1f8df6 ? JSON[_0x551a81(0x379)](JSON[_0x551a81(0x2a4)](_0xbc1548)[_0x551a81(0x322)]('quotedM', 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)]['contextInfo'] : _0xbc1548,
_0x13ed9f = await _0x476a5c['downloadAndSaveMediaMessage'](_0x3cc9b1);
ran = getRandom(_0x551a81(0x1ff)), await ffmpeg('./' + _0x13ed9f)[_0x551a81(0x154)](_0x13ed9f)['on'](_0x551a81(0x188), function(_0x489ce4) {
const _0x10c495 = _0x551a81;
console[_0x10c495(0x2c8)]('Started\x20:\x20' + _0x489ce4);
})['on']('error', function(_0x3f1504) {
const _0x27d66f = _0x551a81;
console[_0x27d66f(0x2c8)](_0x27d66f(0x2a5) + _0x3f1504), fs[_0x27d66f(0x388)](_0x13ed9f), _0x2d6888(mess[_0x27d66f(0x358)][_0x27d66f(0x2d7)]);
})['on'](_0x551a81(0x210), function() {
const _0x7d0482 = _0x551a81;
console['log'](_0x7d0482(0x233)), buff = fs[_0x7d0482(0x267)](ran), _0x476a5c['sendMessage'](_0x282284, fs[_0x7d0482(0x267)](ran), _0x58632f, {
'quoted': _0xbc1548
}), fs[_0x7d0482(0x388)](_0x13ed9f), fs[_0x7d0482(0x388)](ran);
})['addOutputOptions']([_0x551a81(0x313), _0x551a81(0x14d), _0x551a81(0x378), _0x551a81(0x116)])[_0x551a81(0x347)](_0x551a81(0x1df))[_0x551a81(0x304)](ran);
} else {
if ((_0x1da0fd && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x340)]['seconds'] < 0xb || _0x306d3f && _0xbc1548[_0x551a81(0x113)][_0x551a81(0x1a1)][_0x551a81(0x2c5)][_0x551a81(0x162)][_0x551a81(0x340)]['seconds'] < 0xb) && _0x68de3b['length'] == 0x0) {
const _0x9b682 = _0x306d3f ? JSON[_0x551a81(0x379)](JSON['stringify'](_0xbc1548)['replace']('quotedM', 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)]['contextInfo'] : _0xbc1548,
_0x5ec485 = await _0x476a5c[_0x551a81(0x2eb)](_0x9b682);
ran = getRandom(_0x551a81(0x1ff)), _0x2d6888(mess['wait']), await ffmpeg('./' + _0x5ec485)[_0x551a81(0x130)](_0x5ec485[_0x551a81(0x1b3)]('.')[0x1])['on'](_0x551a81(0x188), function(_0x1684c3) {
const _0x69dfd0 = _0x551a81;
console[_0x69dfd0(0x2c8)](_0x69dfd0(0x1f3) + _0x1684c3);
})['on'](_0x551a81(0x358), function(_0x236549) {
const _0x4f046b = _0x551a81;
console[_0x4f046b(0x2c8)](_0x4f046b(0x2a5) + _0x236549), fs['unlinkSync'](_0x5ec485), tipe = _0x5ec485[_0x4f046b(0x319)](_0x4f046b(0x166)) ? _0x4f046b(0x163) : 'gif', _0x2d6888(_0x4f046b(0x10d));
})['on'](_0x551a81(0x210), function() {
const _0xd9e559 = _0x551a81;
console[_0xd9e559(0x2c8)](_0xd9e559(0x233)), buff = fs[_0xd9e559(0x267)](ran), _0x476a5c[_0xd9e559(0x344)](_0x282284, buff, _0x58632f, {
'quoted': _0xbc1548
}), fs[_0xd9e559(0x388)](_0x5ec485), fs[_0xd9e559(0x388)](ran);
})[_0x551a81(0x1c7)]([_0x551a81(0x313), _0x551a81(0x14d), _0x551a81(0x378), 'scale=\x27min(320,iw)\x27:min\x27(320,ih)\x27:force_original_aspect_ratio=decrease,fps=15,\x20pad=320:320:-1:-1:color=white@0.0,\x20split\x20[a][b];\x20[a]\x20palettegen=reserve_transparent=on:transparency_color=ffffff\x20[p];\x20[b][p]\x20paletteuse'])['toFormat'](_0x551a81(0x1df))[_0x551a81(0x304)](ran);
} else {
if ((_0x1da0fd || _0x1f8df6) && _0x68de3b[0x0] == _0x551a81(0x106)) {
const _0x10bbac = _0x1f8df6 ? JSON['parse'](JSON[_0x551a81(0x2a4)](_0xbc1548)['replace']('quotedM', 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)][_0x551a81(0x2c5)] : _0xbc1548,
_0x26ca56 = await _0x476a5c[_0x551a81(0x2eb)](_0x10bbac);
ranw = getRandom(_0x551a81(0x1ff)), ranp = getRandom(_0x551a81(0x2b4)), _0x2d6888(mess[_0x551a81(0x245)]), keyrmbg = _0x551a81(0x165), await removeBackgroundFromImageFile({
'path': _0x26ca56,
'apiKey': keyrmbg[_0x551a81(0x28e)],
'size': _0x551a81(0x356),
'type': 'auto',
'ranp': ranp
})[_0x551a81(0x11c)](_0x180c03 => {
const _0x108548 = _0x551a81;
fs[_0x108548(0x388)](_0x26ca56);
let _0x2ca0b4 = Buffer['from'](_0x180c03['base64img'], 'base64');
fs[_0x108548(0x18f)](ranp, _0x2ca0b4, _0x49a486 => {
const _0x371166 = _0x108548;
if (_0x49a486) return _0x2d6888(_0x371166(0x10d));
}), exec(_0x108548(0x1c9) + ranp + _0x108548(0x286) + ranw, _0x2554b7 => {
const _0xc9c49c = _0x108548;
fs[_0xc9c49c(0x388)](ranp);
if (_0x2554b7) return _0x2d6888(mess['error']['stick']);
buff = fs['readFileSync'](ranw), _0x476a5c['sendMessage'](_0x282284, buff, _0x58632f, {
'quoted': _0xbc1548
});
});
});
} else _0x2d6888(_0x551a81(0x25d) + _0x165b0f + _0x551a81(0x302));
}
}
break;
case 'bukagrup':
_0x476a5c[_0x551a81(0x23d)](_0x282284, 'announcement', ![])[_0x551a81(0x11c)](_0x37f7de => _0x2d6888(jsonformat(_0x37f7de)))[_0x551a81(0x325)](_0xcd08d => _0x2d6888(jsonformat(_0xcd08d)));
break;
case _0x551a81(0x324):
_0x476a5c[_0x551a81(0x23d)](_0x282284, _0x551a81(0x16a), !![])[_0x551a81(0x11c)](_0x58bcb3 => _0x2d6888(jsonformat(_0x58bcb3)))[_0x551a81(0x325)](_0x164d33 => _0x2d6888(jsonformat(_0x164d33)));
break;
case 'info':
me = _0x476a5c[_0x551a81(0x1ea)], uptime = process[_0x551a81(0x38a)](), teks = _0x551a81(0x27d) + me[_0x551a81(0x2d1)] + _0x551a81(0x2da) + me[_0x551a81(0x1d1)]['split']('@')[0x0] + _0x551a81(0x343) + _0x165b0f + _0x551a81(0x366) + blocked[_0x551a81(0x37e)] + _0x551a81(0x316) + kyun(uptime), buffer = await getBuffer(me['imgUrl']), _0x476a5c['sendMessage'](_0x282284, buffer, _0x5bbf93, {
'caption': teks,
'contextInfo': {
'mentionedJid': [me[_0x551a81(0x1d1)]]
}
});
break;
case 'blocklist':
teks = _0x551a81(0x1e9);
for (let _0x2a486d of blocked) {
teks += _0x551a81(0xfd) + _0x2a486d[_0x551a81(0x1b3)]('@')[0x0] + '\x0a';
}
teks += 'Total\x20:\x20' + blocked[_0x551a81(0x37e)], _0x476a5c[_0x551a81(0x344)](_0x282284, teks[_0x551a81(0x2f4)](), _0x201e57, {
'quoted': _0xbc1548,
'contextInfo': {
'mentionedJid': blocked
}
});
break;
case 'virgam':
const _0x165936 = fs[_0x551a81(0x267)](_0x551a81(0x278));
_0x476a5c[_0x551a81(0x344)](_0x282284, _0x165936, _0x5bbf93, {
'mimetype': Mimetype[_0x551a81(0x369)],
'quoted': _0x5223f8,
'thumbnail': fs['readFileSync'](_0x551a81(0x103))
});
break;
case _0x551a81(0x137):
meme = await fetchJson(_0x551a81(0x24e), {
'method': 'get'
}), buffer = await getBuffer(_0x551a81(0x201) + meme[_0x551a81(0x230)] + _0x551a81(0x29c)), _0x476a5c['sendMessage'](_0x282284, buffer, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x203)
});
break;
case 'q':
if (!m[_0x551a81(0x134)]) return _0x2d6888(_0x551a81(0x135));
let _0x554a97 = _0x476a5c[_0x551a81(0x167)](await m[_0x551a81(0x12a)]());
if (!_0x554a97[_0x551a81(0x134)]) return _0x2d6888(_0x551a81(0x2ad));
await _0x554a97['quoted'][_0x551a81(0x2b9)](m['chat'], !![]);
break;
case _0x551a81(0x337):
var _0x5ea38d = body[_0x551a81(0x374)](0x9),
_0x3a0885 = await _0x476a5c[_0x551a81(0x2fe)](_0x282284),
_0x182a4b = _0x3a0885['participants'],
_0x3a4e69 = [];
_0x182a4b[_0x551a81(0x2bb)](async _0x7c4197 => {
const _0x14336a = _0x551a81;
_0x3a4e69[_0x14336a(0x178)](_0x7c4197['id']['replace'](_0x14336a(0x1be), 's.whatsapp.net'));
});
var _0x3f4ef8 = {
'text': _0x5ea38d,
'contextInfo': {
'mentionedJid': _0x3a4e69,
'quoted': _0xbc1548
}
};
_0x476a5c[_0x551a81(0x344)](_0x282284, _0x3f4ef8, _0x3223a1);
break;
case _0x551a81(0x2e3):
if (!_0x4fc8fb) return _0x2d6888('Example\x20:\x20' + (_0x165b0f + _0x4eeb46) + '\x20oreki.houtarou.v');
_0x2d6888(mess[_0x551a81(0x245)]), anu = await fetchJson('http://zekais-api.herokuapp.com/igs?username=' + _0x4fc8fb), ig = _0x551a81(0x234) + anu[_0x551a81(0x187)][_0x551a81(0x1a9)] + _0x551a81(0x2dd) + anu['data'][_0x551a81(0x1c5)] + _0x551a81(0x148) + anu[_0x551a81(0x187)][_0x551a81(0x2c6)] + _0x551a81(0x229) + anu[_0x551a81(0x187)][_0x551a81(0x270)] + _0x551a81(0x1f4) + anu[_0x551a81(0x187)][_0x551a81(0x174)] + _0x551a81(0x288) + _0x4fc8fb, buff = await getBuffer(anu['data'][_0x551a81(0x216)]), _0x476a5c[_0x551a81(0x344)](_0x282284, buff, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': ig
});
break;
case _0x551a81(0x27a):
if (!_0x4fc8fb) return _0x2d6888(_0x551a81(0x2ef) + (_0x165b0f + _0x4eeb46) + '\x20melukis\x20mekja');
anu = await fetchJson('http://zekais-api.herokuapp.com/lirik?query=' + _0x4fc8fb), lirik = _0x551a81(0x10a) + anu[_0x551a81(0x21e)] + '*\x0a*Author\x20:\x20' + anu[_0x551a81(0x225)] + _0x551a81(0x20e) + anu[_0x551a81(0x27a)] + '\x20', buf = await getBuffer(anu[_0x551a81(0x2a8)]), _0x476a5c['sendMessage'](_0x282284, buf, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': lirik
});
break;
case _0x551a81(0x1a5):
if (!_0x4fc8fb) return _0x2d6888(_0x551a81(0x2ef) + _0x165b0f + 'glitch\x20nama|autor');
g1 = _0x4fc8fb['split']('|')[0x0], g2 = _0x4fc8fb[_0x551a81(0x1b3)]('|')[0x1], _0x2d6888(mess[_0x551a81(0x245)]), glitch = await getBuffer(_0x551a81(0x326) + zeks + '&text1=' + g1 + '&text2=' + g2), _0x476a5c[_0x551a81(0x344)](_0x282284, glitch, _0x5bbf93, {
'quoted': _0xbc1548
});
break;
case 'tahta':
if (_0x68de3b[_0x551a81(0x37e)] < 0x1) return _0x2d6888(_0x551a81(0x125));
tahta = _0x68de3b['join']('\x20'), tahta = await getBuffer(_0x551a81(0x138) + zeks + '&text=' + tahta), _0x476a5c[_0x551a81(0x344)](_0x282284, tahta, _0x5bbf93, {
'quoted': _0xbc1548
});
break;
case _0x551a81(0x2e9):
if (!_0x4fc8fb) return _0x2d6888('Url\x20nya\x20mana?');
_0x26987d(_0x282284, '' + _0x4fc8fb);
break;
case _0x551a81(0x235):
var _0x576053 = _0x1f8df6 ? JSON[_0x551a81(0x379)](JSON[_0x551a81(0x2a4)](_0xbc1548)[_0x551a81(0x322)](_0x551a81(0x348), 'm'))['message'][_0x551a81(0x1a1)][_0x551a81(0x2c5)] : _0xbc1548,
_0x209422 = await _0x476a5c[_0x551a81(0x2eb)](_0x576053),
_0x43a16e = require('imgbb-uploader');
_0x43a16e(_0x551a81(0x111), _0x209422)[_0x551a81(0x11c)](_0x1b0402 => {
const _0x2ce63b = _0x551a81;
var _0xd57af3 = _0x2ce63b(0x1b1) + _0x1b0402['id'] + '\x0a➸\x20\x20*MimeType\x20:*\x20' + _0x1b0402['image'][_0x2ce63b(0x31d)] + _0x2ce63b(0x1fd) + _0x1b0402[_0x2ce63b(0x369)][_0x2ce63b(0x215)] + _0x2ce63b(0x164) + _0x1b0402[_0x2ce63b(0x243)];
ibb = fs[_0x2ce63b(0x267)](_0x209422), _0x476a5c[_0x2ce63b(0x344)](_0x282284, ibb, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0xd57af3
});
})[_0x551a81(0x325)](_0x25969e => {
throw _0x25969e;
});
break;
case _0x551a81(0x276):
if (!_0x49b3f4) return _0x2d6888(_0x551a81(0x254));
_0x576053 = JSON[_0x551a81(0x379)](JSON['stringify'](_0xbc1548)[_0x551a81(0x322)]('quotedM', 'm'))[_0x551a81(0x113)][_0x551a81(0x1a1)]['contextInfo'], _0x209422 = await _0x476a5c[_0x551a81(0x2eb)](_0x576053), hah = fs['readFileSync'](_0x209422), _0x476a5c[_0x551a81(0x344)](_0x282284, hah, _0x1b1a60, {
'mimetype': _0x551a81(0x265),
'ptt': !![],
'quoted': _0xbc1548
}), fs[_0x551a81(0x388)](_0x209422);
break;
case _0x551a81(0x2cd):
anu = await getBuffer(_0x551a81(0x1e2)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': '©\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️'
});
break;
case _0x551a81(0x102):
anu = await getBuffer(_0x551a81(0xf4)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x17442c, {
'mimetype': Mimetype[_0x551a81(0x11b)]
}, {
'quoted': _0xbc1548
});
break;
case _0x551a81(0x1e7):
anu = await getBuffer(_0x551a81(0x2c4)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x17442c, {
'mimetype': Mimetype[_0x551a81(0x11b)]
}, {
'quoted': _0xbc1548
});
break;
case _0x551a81(0x296):
anu = await getBuffer(_0x551a81(0x107)), _0x476a5c['sendMessage'](_0x282284, anu, _0x17442c, {
'quoted': _0xbc1548
});
break;
case _0x551a81(0xf8):
anu = await getBuffer(_0x551a81(0x2f8)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case 'eroyuri':
anu = await getBuffer(_0x551a81(0x2bf)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': '©\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️'
});
break;
case _0x551a81(0x183):
anu = await getBuffer(_0x551a81(0x17a)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x2a9):
anu = await getBuffer(_0x551a81(0x34a)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x104):
anu = await getBuffer('https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=eroKitsune&apikey=hardianto'), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x1f7):
anu = await getBuffer(_0x551a81(0x1ca)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': '©\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️'
});
break;
case 'erofeet':
anu = await getBuffer(_0x551a81(0x261)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x29d):
anu = await getBuffer(_0x551a81(0x2b5)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x21d):
anu = await getBuffer('https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=futanari&apikey=hardianto'), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case 'hentai':
anu = await getBuffer('https://hardianto-chan.herokuapp.com/api/anime/random?nsfw=hentai&apikey=hardianto'), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x2c2):
anu = await getBuffer('https://hardianto-chan.herokuapp.com/api/anime/loli?apikey=hardianto'), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case 'holoero':
anu = await getBuffer(_0x551a81(0x285)), _0x476a5c['sendMessage'](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x219):
anu = await getBuffer(_0x551a81(0x239)), _0x476a5c['sendMessage'](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': _0x551a81(0x287)
});
break;
case _0x551a81(0x168):
anu = await getBuffer(_0x551a81(0x360)), _0x476a5c[_0x551a81(0x344)](_0x282284, anu, _0x5bbf93, {
'quoted': _0xbc1548,
'caption': '©\x20𝘏𝘠𝘗𝘌𝘙\x20咽翁\x20𝔹𝕆𝕋️'