├── .env ├── Ibrahim ├── adams.js ├── app.js ├── dl │ ├── Adams.js │ ├── Function.js │ ├── dl.json │ └── ytdl-core.js ├── imgur.js ├── index.js ├── mesfonctions.js ├── stylish-font.js ├── traduction.js ├── unicode.js └── ytdl-core.js ├── Procfile ├── README.md ├── Session └── Adams.js ├── app.json ├── body.js ├── config.env ├── config.js ├── files ├── Adams.json ├── Fff.js ├── antibot.gif ├── chat-container.jpg ├── chrono.webp ├── deleted-message.jpg ├── logo_css.png ├── logo_html.png ├── profile-pic.jpg ├── remover.gif ├── rm.gif ├── showcase 3.jpg ├── showcase.jpg └── showcase1.jpg ├── gif └── gif.json ├── her2.js ├── lib ├── Adams.js ├── Readme.md ├── alive.js ├── antibot.js ├── antilien.js ├── banGroup.js ├── banUser.js ├── cron.js ├── hentai.js ├── ibraah ├── level.js ├── mention.js ├── onlyAdmin.js ├── stickcmd.js ├── style.css ├── sudo.js ├── warn.js ├── welcome.js └── xmd.md ├── main.html ├── package.json ├── public └── index.html ├── scs ├── 1.js ├── 1a.js ├── 1b.js ├── 1c.js ├── 1d.js ├── 1e.js ├── 2.js ├── 2a.js ├── 2b.js ├── 2c.js ├── 2d.js ├── 2e.js ├── 3.js ├── 3a.js ├── 3b.js ├── 3c.js ├── 3d.js ├── 4.js ├── 4a.js ├── 4b.js ├── 4c.js ├── 4d.js ├── 5.js ├── 5b.js ├── 5c.js ├── 5d.js ├── 6.js ├── 6a.js ├── 6b.js ├── 6c.js ├── 6d.js ├── 7.js ├── 7a.js ├── 7b.js ├── 7c.js ├── 7d.js ├── 8.js ├── 8a.js ├── 8c.js ├── 8d.js ├── 9.js ├── 9a.js ├── 9b.js ├── 9c.js ├── 9d.js ├── col-on.js ├── cunt.js ├── lamg.js ├── obt.js ├── popent.js ├── pt4.js └── shilla.js └── xmd ├── alive.json ├── antibot.json ├── antilien.json ├── banUser.js ├── bangroup.json ├── bwm.json ├── carl.md ├── cron.json ├── events.json ├── hentai.json ├── mention.json ├── onlyAdmin.json ├── stickcmd.json ├── sudo.json ├── user_rank.json └── warn.json /.env: -------------------------------------------------------------------------------- 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 | OWNER_NAME="carl" 888 | PREFIX="." 889 | PUBLIC_MODE='yes' 890 | AUTO_READ_STATUS="yes" 891 | AUTO_DOWNLOAD_STATUS="no" 892 | BOT_NAME= "Carl-x" 893 | IMAGE_MENU=https://files.catbox.moe/3dslpd.js 894 | BOT_OWNER=enzo25412 895 | NUMERO_OWNER= "" 896 | OWNER_NAME= "᚛carl᚜" 897 | DATABASE_URL= "postgresql://postgres:bKlIqoOUWFIHOAhKxRWQtGfKfhGKgmRX@viaduct.proxy.rlwy.net:47738/railway" 898 | GITHUB_GIT=https://api.bwmxmd.online 899 | WARN_COUNT= "2" 900 | OPENAI_API_KEY= "" 901 | STARTING_BOT_MESSAGE='yes' 902 | ANTI_DELETE_MESSAGE='yes' 903 | -------------------------------------------------------------------------------- /Ibrahim/adams.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x434cfe=_0x2946;(function(_0x2ae1fb,_0x3f6028){const _0x342c25=_0x2946,_0x463f70=_0x2ae1fb();while(!![]){try{const _0x1239e8=parseInt(_0x342c25(0x1cc))/(-0x541*-0x7+0x27e*-0x4+0xd67*-0x2)*(parseInt(_0x342c25(0x1c6))/(0x2*0x359+-0x3*-0x5d+0x7c7*-0x1))+parseInt(_0x342c25(0x1cf))/(0x458+0x11bc+-0x10d*0x15)*(-parseInt(_0x342c25(0x1c8))/(-0x1fa1+-0x408+0x23ad))+-parseInt(_0x342c25(0x1c7))/(0x1642+-0x717+0xf26*-0x1)*(-parseInt(_0x342c25(0x1c4))/(-0x4*0x944+0xbe0+0x1*0x1936))+-parseInt(_0x342c25(0x1ca))/(0x1d8+0x11*0x17+-0x358)+-parseInt(_0x342c25(0x1c5))/(-0x116e+0x986+0x7f0)+parseInt(_0x342c25(0x1d3))/(0xd86+-0x190f+0xb92)*(-parseInt(_0x342c25(0x1ce))/(-0x1ca3+0x1*0x1759+0x554))+parseInt(_0x342c25(0x1c9))/(-0x552+0x1e2e+0x1*-0x18d1);if(_0x1239e8===_0x3f6028)break;else _0x463f70['push'](_0x463f70['shift']());}catch(_0x1b4ec7){_0x463f70['push'](_0x463f70['shift']());}}}(_0x1da5,-0x79a9a+0xab5b4+0x2eab8));var tabCmds=[];let cm=[];function _0x2946(_0x33944f,_0x168fc8){const _0x38aa56=_0x1da5();return _0x2946=function(_0xa5e795,_0x4114a8){_0xa5e795=_0xa5e795-(-0x1bd0+-0x1ac2+-0xb44*-0x5);let _0x5f06c6=_0x38aa56[_0xa5e795];return _0x5f06c6;},_0x2946(_0x33944f,_0x168fc8);}function _0x1da5(){const _0x53bc96=['182389pIzsHu','fonction','20uCUhxW','48066FjkoOm','General','exports','push','331029VRfKFY','PPNKl','categorie','1230CcEEDc','1256296bGDATy','2eyqSoT','14880nRGNGd','68yMAQCL','7832770pnsFMp','4248020lccoyN','reaction'];_0x1da5=function(){return _0x53bc96;};return _0x1da5();}function adams(_0x2a73cc,_0xe48927){const _0x49ff62=_0x2946,_0x2f1c6f={'PPNKl':_0x49ff62(0x1d0)};let _0x36518=_0x2a73cc;return!_0x2a73cc[_0x49ff62(0x1c3)]&&(_0x36518[_0x49ff62(0x1c3)]=_0x2f1c6f[_0x49ff62(0x1c2)]),!_0x2a73cc[_0x49ff62(0x1cb)]&&(_0x36518[_0x49ff62(0x1cb)]='🪀'),_0x36518[_0x49ff62(0x1cd)]=_0xe48927,cm[_0x49ff62(0x1d2)](_0x36518),_0x36518;}module[_0x434cfe(0x1d1)]={'adams':adams,'Module':adams,'cm':cm}; 4 | -------------------------------------------------------------------------------- /Ibrahim/app.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 'use strict';var _0x1b2ec6=_0x5c30;(function(_0x27394a,_0xd5aad4){var _0x2c1733=_0x5c30,_0x42de08=_0x27394a();while(!![]){try{var _0x199c80=-parseInt(_0x2c1733(0xf5))/(-0x1*0xce5+0x152a+-0x4*0x211)+-parseInt(_0x2c1733(0xf2))/(-0x1b*-0x172+-0x9ca+0x3a*-0x81)*(parseInt(_0x2c1733(0xf0))/(-0x19*-0x2a+-0x62*-0x59+-0x1*0x2629))+-parseInt(_0x2c1733(0xf8))/(0x1236+-0x134f+0x11d)*(-parseInt(_0x2c1733(0xfd))/(0x7*-0x1d3+0x1069+-0x39f*0x1))+parseInt(_0x2c1733(0xf6))/(0x11cd+0x2eb*0x3+-0x1a88)+parseInt(_0x2c1733(0xfc))/(-0x756+-0xbec+0x1349)+parseInt(_0x2c1733(0xf9))/(-0x2436+-0x1*-0x649+-0x1df5*-0x1)+-parseInt(_0x2c1733(0xf4))/(-0x1*0xdbf+-0x298*-0xd+-0x13f0);if(_0x199c80===_0xd5aad4)break;else _0x42de08['push'](_0x42de08['shift']());}catch(_0xc8d74){_0x42de08['push'](_0x42de08['shift']());}}}(_0x2028,-0x147*-0x23a+-0x2f7cd+0x2475f));function _0x2028(){var _0x50bd8f=['sendMessag','2rmlkIe','key','252450GBYyEs','110725NKbgsg','72600ePAUFA','erty','22836NtGVMW','74272CXwukz','__esModule','reagir','1647212IsPdmP','245lVEVqh','defineProp','769326kXgzrz'];_0x2028=function(){return _0x50bd8f;};return _0x2028();}function _0x5c30(_0x267b77,_0x27d95c){var _0x517520=_0x2028();return _0x5c30=function(_0x48f5fd,_0x172d15){_0x48f5fd=_0x48f5fd-(-0x250+-0xd76*-0x1+-0xa36);var _0x14b79b=_0x517520[_0x48f5fd];return _0x14b79b;},_0x5c30(_0x267b77,_0x27d95c);}Object[_0x1b2ec6(0xfe)+_0x1b2ec6(0xf7)](exports,_0x1b2ec6(0xfa),{'value':!![]}),exports[_0x1b2ec6(0xfb)]=void(-0x3db+0x2405+-0x202a);async function reagir(_0x37643b,_0x55940d,_0x438ef6,_0x1ff1d1){var _0x27335c=_0x1b2ec6;await _0x55940d[_0x27335c(0xf1)+'e'](_0x37643b,{'react':{'text':_0x1ff1d1,'key':_0x438ef6[_0x27335c(0xf3)]}});}exports[_0x1b2ec6(0xfb)]=reagir; 4 | -------------------------------------------------------------------------------- /Ibrahim/dl/Adams.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Ibrahim/dl/Function.js: -------------------------------------------------------------------------------- 1 | var __importDefault = (this && this.__importDefault) || function (mod) { 2 | return (mod && mod.__esModule) ? mod : { "default": mod } 3 | } 4 | Object.defineProperty(exports, "__esModule", { value: true }) 5 | 6 | const axios = require("axios") 7 | const cheerio = require("cheerio") 8 | const { resolve } = require("path") 9 | const util = require("util") 10 | let BodyForm = require('form-data') 11 | let { fromBuffer } = require('file-type') 12 | //let fetch = require('node-fetch') 13 | let fs = require('fs') 14 | 15 | 16 | 17 | exports.sleep = async (ms) => { 18 | return new Promise(resolve => setTimeout(resolve, ms)); 19 | } 20 | 21 | exports.fetchBuffer = async (url, options) => { 22 | try { 23 | options ? options : {} 24 | const res = await axios({ 25 | method: "GET", 26 | url, 27 | headers: { 28 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36", 29 | 'DNT': 1, 30 | 'Upgrade-Insecure-Request': 1 31 | }, 32 | ...options, 33 | responseType: 'arraybuffer' 34 | }) 35 | return res.data 36 | } catch (err) { 37 | return err 38 | } 39 | } 40 | exports.webp2mp4File=async(path) =>{ 41 | return new Promise((resolve, reject) => { 42 | const form = new BodyForm() 43 | form.append('new-image-url', '') 44 | form.append('new-image', fs.createReadStream(path)) 45 | axios({ 46 | method: 'post', 47 | url: 'https://s6.ezgif.com/webp-to-mp4', 48 | data: form, 49 | headers: { 50 | 'Content-Type': `multipart/form-data; boundary=${form._boundary}` 51 | } 52 | }).then(({ data }) => { 53 | const bodyFormThen = new BodyForm() 54 | const $ = cheerio.load(data) 55 | const file = $('input[name="file"]').attr('value') 56 | bodyFormThen.append('file', file) 57 | bodyFormThen.append('convert', "Convert WebP to MP4!") 58 | axios({ 59 | method: 'post', 60 | url: 'https://ezgif.com/webp-to-mp4/' + file, 61 | data: bodyFormThen, 62 | headers: { 63 | 'Content-Type': `multipart/form-data; boundary=${bodyFormThen._boundary}` 64 | } 65 | }).then(({ data }) => { 66 | const $ = cheerio.load(data) 67 | const result = 'https:' + $('div#output > p.outfile > video > source').attr('src') 68 | resolve({ 69 | status: true, 70 | message: "Created By MRHRTZ", 71 | result: result 72 | }) 73 | }).catch(reject) 74 | }).catch(reject) 75 | }) 76 | } 77 | 78 | exports.fetchUrl = async (url, options) => { 79 | try { 80 | options ? options : {} 81 | const res = await axios({ 82 | method: 'GET', 83 | url: url, 84 | headers: { 85 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36' 86 | }, 87 | ...options 88 | }) 89 | return res.data 90 | } catch (err) { 91 | return err 92 | } 93 | } 94 | 95 | exports.WAVersion = async () => { 96 | let get = await exports.fetchUrl("https://web.whatsapp.com/check-update?version=1&platform=web") 97 | let version = [get.currentVersion.replace(/[.]/g, ", ")] 98 | return version 99 | } 100 | 101 | exports.getRandom = (ext) => { 102 | return `${Math.floor(Math.random() * 10000)}${ext}` 103 | } 104 | 105 | exports.isUrl = (url) => { 106 | return url.match(new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/, 'gi')) 107 | } 108 | 109 | exports.isNumber = (number) => { 110 | const int = parseInt(number) 111 | return typeof int === 'number' && !isNaN(int) 112 | } 113 | -------------------------------------------------------------------------------- /Ibrahim/dl/dl.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Ibrahim/imgur.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x5647(_0x5778bc,_0x132b67){const _0x147c33=_0x5575();return _0x5647=function(_0x16c6ad,_0x1a9f15){_0x16c6ad=_0x16c6ad-(0xcf5*0x1+-0xf94+0x44a);let _0x4b3c95=_0x147c33[_0x16c6ad];return _0x4b3c95;},_0x5647(_0x5778bc,_0x132b67);}function _0x5575(){const _0x2ecf60=['\x20est\x20surve','image','7754008NFQNjW','oi\x20sur\x20Img','10UruJzG','s\x20de\x20l\x27env','1168213WxNBrQ','error','LIlJn','ur:','post','https://ap','620802BFteFo','HNUVP','1389764QtyegU','5493264DJMUnP','PuPEM','Une\x20erreur','sur\x20Imgur.','exports','e\x20l\x27envoi\x20','Erreur\x20lor','prjyG','data','getHeaders','form-data','createRead','Stream','axios','9eBvUUl','i.imgur.co','UgSfc','m/3/image','DOySV','2189844Wxtvof','nue\x20lors\x20d','Client-ID\x20','append','159652DYQomt','link'];_0x5575=function(){return _0x2ecf60;};return _0x5575();}const _0x42f572=_0x5647;(function(_0xbe70eb,_0x2239b4){const _0x4825ee=_0x5647,_0x66bead=_0xbe70eb();while(!![]){try{const _0x38175e=-parseInt(_0x4825ee(0x1b3))/(0x1*-0x19ed+0xae*-0x2b+0x3728)+-parseInt(_0x4825ee(0x1bb))/(-0x2e*-0xb8+-0x2154+0x1*0x46)+parseInt(_0x4825ee(0x1cf))/(0x7*-0xaf+-0x2524+0x29f0)+parseInt(_0x4825ee(0x1ab))/(0xdef+-0x3*0x4ff+0x112)*(-parseInt(_0x4825ee(0x1b1))/(-0x1666+-0xc23*-0x1+0xa48))+parseInt(_0x4825ee(0x1b9))/(0x18b8+0x1fb9+-0x8f*0x65)+parseInt(_0x4825ee(0x1bc))/(-0x16f6+0x10ca+0x633)+-parseInt(_0x4825ee(0x1af))/(-0x2131*-0x1+-0x1a7*-0xc+-0x34fd)*(-parseInt(_0x4825ee(0x1ca))/(-0x50b*0x5+-0xa3c+0x237c));if(_0x38175e===_0x2239b4)break;else _0x66bead['push'](_0x66bead['shift']());}catch(_0x2448d1){_0x66bead['push'](_0x66bead['shift']());}}}(_0x5575,-0x101666+-0x35a61+0x1d4658));const axios=require(_0x42f572(0x1c9)),fs=require('fs'),FormData=require(_0x42f572(0x1c6));async function uploadImageToImgur(_0x50ed9,_0xcacbb6){const _0x3bf48c=_0x42f572,_0x3506a2={'UgSfc':_0x3bf48c(0x1ae),'PuPEM':_0x3bf48c(0x1b7),'DOySV':_0x3bf48c(0x1b8)+_0x3bf48c(0x1cb)+_0x3bf48c(0x1cd),'LIlJn':function(_0x222284,_0xcfc526){return _0x222284(_0xcfc526);},'prjyG':_0x3bf48c(0x1c2)+_0x3bf48c(0x1b2)+_0x3bf48c(0x1b0)+_0x3bf48c(0x1b6),'HNUVP':_0x3bf48c(0x1be)+_0x3bf48c(0x1ad)+_0x3bf48c(0x1d0)+_0x3bf48c(0x1c1)+_0x3bf48c(0x1bf)};try{const _0x153f32=new FormData();_0x153f32[_0x3bf48c(0x1d2)](_0x3506a2[_0x3bf48c(0x1cc)],fs[_0x3bf48c(0x1c7)+_0x3bf48c(0x1c8)](_0x50ed9));const _0x133fb0={'Authorization':_0x3bf48c(0x1d1)+_0xcacbb6,..._0x153f32[_0x3bf48c(0x1c5)]()},_0x3d54a3={'method':_0x3506a2[_0x3bf48c(0x1bd)],'maxBodyLength':Infinity,'url':_0x3506a2[_0x3bf48c(0x1ce)],'headers':_0x133fb0,'data':_0x153f32},_0x45a552=await _0x3506a2[_0x3bf48c(0x1b5)](axios,_0x3d54a3),_0x148c1e=_0x45a552[_0x3bf48c(0x1c4)][_0x3bf48c(0x1c4)][_0x3bf48c(0x1ac)];return _0x148c1e;}catch(_0x3870e9){console[_0x3bf48c(0x1b4)](_0x3506a2[_0x3bf48c(0x1c3)],_0x3870e9);throw new Error(_0x3506a2[_0x3bf48c(0x1ba)]);}}module[_0x42f572(0x1c0)]={'uploadImageToImgur':uploadImageToImgur}; 5 | -------------------------------------------------------------------------------- /Ibrahim/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 'use strict';const _0x22cf1c=_0xe414;(function(_0x39aa30,_0x42f191){const _0x44359c=_0xe414,_0x1cede5=_0x39aa30();while(!![]){try{const _0x4e1197=parseInt(_0x44359c(0xab))/(-0x1add+0x821+0x12bd)+-parseInt(_0x44359c(0xb5))/(0x7c4+0x4*0x509+-0x1be6)*(parseInt(_0x44359c(0xad))/(-0x8d8+-0xcb9+0xaca*0x2))+parseInt(_0x44359c(0xc1))/(0xd98+-0x4b*0x22+-0x39e*0x1)*(parseInt(_0x44359c(0xc0))/(-0xd66+0x1fac+0x1*-0x1241))+-parseInt(_0x44359c(0xba))/(0x15*0x147+0x1ab9+-0x3586)*(parseInt(_0x44359c(0xa9))/(-0x512+-0x94*0x2a+0x1d61))+-parseInt(_0x44359c(0xb9))/(0x98c+-0x113e+0x56*0x17)+parseInt(_0x44359c(0xc3))/(-0x1e46+0x1057+0xdf8)*(parseInt(_0x44359c(0xb4))/(0x1f7a+-0x1*-0xe1f+-0x2d8f))+-parseInt(_0x44359c(0xbb))/(0x29*0x91+-0x7a6*-0x2+-0x32*0xc5)*(-parseInt(_0x44359c(0xaa))/(0x68*0x57+-0x121d*-0x2+0xe4e*-0x5));if(_0x4e1197===_0x42f191)break;else _0x1cede5['push'](_0x1cede5['shift']());}catch(_0x21bca0){_0x1cede5['push'](_0x1cede5['shift']());}}}(_0x4169,0xf355b+0x17*0x6191+-0xc5f76));function _0xe414(_0x53e813,_0x2cabd7){const _0x29a7a1=_0x4169();return _0xe414=function(_0x2f018d,_0x58326e){_0x2f018d=_0x2f018d-(-0x158*0x11+-0x244c+0x3bcc);let _0x128b81=_0x29a7a1[_0x2f018d];return _0x128b81;},_0xe414(_0x53e813,_0x2cabd7);}Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xb8),{'value':!![]}),exports[_0x22cf1c(0xae)+_0x22cf1c(0xb0)]=exports[_0x22cf1c(0xac)]=exports[_0x22cf1c(0xb1)]=exports[_0x22cf1c(0xb2)]=exports[_0x22cf1c(0xbe)]=exports[_0x22cf1c(0xbf)]=exports[_0x22cf1c(0xbd)]=exports[_0x22cf1c(0xc4)]=exports[_0x22cf1c(0xb3)]=void(0x4af+0x151*0x1a+-0x26e9);let {adams}=require(_0x22cf1c(0xbc));exports[_0x22cf1c(0xb3)]=adams;const mesfonctions_1=require(_0x22cf1c(0xa8)+_0x22cf1c(0xaf));function _0x4169(){const _0x3c9291=['erty','7442532giclFA','police','./mesfonct','7qOVJTz','10456404iHroUS','871480hqDbat','stick','6uMQOmS','genererNom','ions','Fichier','format','styletext','adams','10YkSgAs','1289446tyBhDA','./app','defineProp','__esModule','11689600tcYWZz','3570144hezsul','22oCrYti','./adams','reaction','zJson','getBuffer','10QdeniT','1329616qHnMSk'];_0x4169=function(){return _0x3c9291;};return _0x4169();}Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xbd),{'enumerable':!![],'get':function(){const _0x4a5299=_0x22cf1c;return mesfonctions_1[_0x4a5299(0xbd)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xc4),{'enumerable':!![],'get':function(){const _0x1cd57b=_0x22cf1c;return mesfonctions_1[_0x1cd57b(0xc4)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xbf),{'enumerable':!![],'get':function(){const _0xb88f2c=_0x22cf1c;return mesfonctions_1[_0xb88f2c(0xbf)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xbe),{'enumerable':!![],'get':function(){const _0x274598=_0x22cf1c;return mesfonctions_1[_0x274598(0xbe)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xb1),{'enumerable':!![],'get':function(){const _0x97e30f=_0x22cf1c;return mesfonctions_1[_0x97e30f(0xb1)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xb2),{'enumerable':!![],'get':function(){const _0x2f2809=_0x22cf1c;return mesfonctions_1[_0x2f2809(0xb2)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xac),{'enumerable':!![],'get':function(){const _0x28da56=_0x22cf1c;return mesfonctions_1[_0x28da56(0xac)];}}),Object[_0x22cf1c(0xb7)+_0x22cf1c(0xc2)](exports,_0x22cf1c(0xae)+_0x22cf1c(0xb0),{'enumerable':!![],'get':function(){const _0x94a415=_0x22cf1c;return mesfonctions_1[_0x94a415(0xae)+_0x94a415(0xb0)];}});var {reagir}=require(_0x22cf1c(0xb6)); 4 | -------------------------------------------------------------------------------- /Ibrahim/traduction.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x1fd6(_0x420273,_0x80ddb8){const _0x4e5474=_0x341c();return _0x1fd6=function(_0x3d087b,_0x46b347){_0x3d087b=_0x3d087b-(-0x4*-0x70b+0x73*-0x49+0xcb*0x7);let _0x473f2c=_0x4e5474[_0x3d087b];return _0x473f2c;},_0x1fd6(_0x420273,_0x80ddb8);}const _0x3e7916=_0x1fd6;function _0x341c(){const _0x24c930=['translatte','1buZGVj','1659860hRKjSB','2896JfEUDT','332112mLigQG','1645cPrhbp','2285022yjWdlX','1498995CMzNyf','10zdsELH','447422FHtKIM','exports','593493YeRlaj','MFVSm','text'];_0x341c=function(){return _0x24c930;};return _0x341c();}(function(_0x2309b8,_0x669ca6){const _0x117a88=_0x1fd6,_0x2d2248=_0x2309b8();while(!![]){try{const _0x2b566e=-parseInt(_0x117a88(0xf2))/(-0x2*-0xb5d+-0x2486+0xdcd)*(parseInt(_0x117a88(0xfa))/(0x14c7+-0xe*0x6b+-0xeeb))+-parseInt(_0x117a88(0xee))/(0x235f+0x896+0x2*-0x15f9)+parseInt(_0x117a88(0xf5))/(0x4*-0x476+-0x126d+0x7*0x52f)*(parseInt(_0x117a88(0xf9))/(0x1*0x14ea+0x1*0x2f+0x1514*-0x1))+parseInt(_0x117a88(0xf7))/(0xe28*0x1+-0x21db+-0x9*-0x231)+parseInt(_0x117a88(0xf6))/(-0x1a*-0x173+-0xaf7*-0x1+-0x309e)*(parseInt(_0x117a88(0xf4))/(-0x169d+-0xe15+0x24ba*0x1))+-parseInt(_0x117a88(0xf8))/(0x498+-0x1*0x7f+0x1*-0x410)+parseInt(_0x117a88(0xf3))/(-0xf37+-0x1322+0x2263);if(_0x2b566e===_0x669ca6)break;else _0x2d2248['push'](_0x2d2248['shift']());}catch(_0x2d5dc5){_0x2d2248['push'](_0x2d2248['shift']());}}}(_0x341c,0x1*-0x4fcfa+0x3043a+0x4a*0x11e6));const translatte=require(_0x3e7916(0xf1));async function traduire(_0x3d35ce,_0x345c71){const _0x2161bc=_0x3e7916,_0x13290f={'MFVSm':function(_0x3f30fb,_0x18d313,_0x5530ca){return _0x3f30fb(_0x18d313,_0x5530ca);}};try{const _0x3c11cb=await _0x13290f[_0x2161bc(0xef)](translatte,_0x3d35ce,_0x345c71);return _0x3c11cb[_0x2161bc(0xf0)];}catch(_0x22e3d0){throw _0x22e3d0;}}module[_0x3e7916(0xfb)]=traduire; 5 | -------------------------------------------------------------------------------- /Ibrahim/ytdl-core.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0xad12(){const _0x55421e=['title','ytdl-core','6377261uMJozh','yt-search','9JQcIBM','chooseForm','downloadFr','getInfo','omInfo','url','3166056ALlPmW','formats','4016pXwlhM','205Ghifqv','videoId','exports','ddCni','66426BZbvso','error','197hhKCqb','7419UibDCe','s\x20de\x20la\x20re','uTube\x20:','timestamp','7078EYOTmz','10505930FOsvls','Erreur\x20lor','964OLIOuh','2338wnZuQA','thumbnail','videos','cherche\x20Yo','KsmpB'];_0xad12=function(){return _0x55421e;};return _0xad12();}const _0x4d46b5=_0x4b99;(function(_0xd5f6de,_0x3daebf){const _0x5d53e7=_0x4b99,_0xd5ef80=_0xd5f6de();while(!![]){try{const _0x582cec=parseInt(_0x5d53e7(0x1f2))/(-0x1c3f*-0x1+0xa00+0x263e*-0x1)*(-parseInt(_0x5d53e7(0x1f7))/(-0xbdd*-0x2+-0x186b+-0xb3*-0x1))+parseInt(_0x5d53e7(0x1f3))/(-0xa21+0xda*-0xe+0x1610)*(parseInt(_0x5d53e7(0x1fa))/(-0x160f+0x1cfd+-0x6ea))+parseInt(_0x5d53e7(0x1ec))/(0x26db*-0x1+0x633+0x20ad)*(parseInt(_0x5d53e7(0x1f0))/(-0x3ab*0x8+-0x347*-0x4+-0x2*-0x821))+-parseInt(_0x5d53e7(0x1da))/(-0x59b*-0x1+0xf55+0x35*-0x65)*(-parseInt(_0x5d53e7(0x1eb))/(0x1*-0x1855+0x2f6*0x2+-0x1271*-0x1))+-parseInt(_0x5d53e7(0x1e3))/(-0x5*-0x4f2+0x1a7*-0xd+-0x336)*(-parseInt(_0x5d53e7(0x1f8))/(-0x1*-0x81d+-0xdd9*-0x1+-0x2e*0x7a))+-parseInt(_0x5d53e7(0x1e1))/(0x45*-0x13+0x487*-0x2+0xe38)+-parseInt(_0x5d53e7(0x1e9))/(0x179*-0x3+-0x1664+0x1adb);if(_0x582cec===_0x3daebf)break;else _0xd5ef80['push'](_0xd5ef80['shift']());}catch(_0x37546d){_0xd5ef80['push'](_0xd5ef80['shift']());}}}(_0xad12,0x13*-0xacb3+-0x1*-0x13447d+0x4a62d));function _0x4b99(_0xbe363e,_0x4378f4){const _0x5b1eb4=_0xad12();return _0x4b99=function(_0x291c6e,_0x454318){_0x291c6e=_0x291c6e-(-0x2380+0x1*-0x229e+0x292*0x1c);let _0x363210=_0x5b1eb4[_0x291c6e];return _0x363210;},_0x4b99(_0xbe363e,_0x4378f4);}const yts=require(_0x4d46b5(0x1e2)),ytdl=require(_0x4d46b5(0x1e0)),fs=require('fs');async function getytlink(_0x2c12e6){const _0x337f21=_0x4d46b5,_0x3a38c5={'KsmpB':function(_0x4f8eaf,_0x263f79){return _0x4f8eaf(_0x263f79);},'ddCni':_0x337f21(0x1f9)+_0x337f21(0x1f4)+_0x337f21(0x1dd)+_0x337f21(0x1f5)};try{const _0x1a68f1=await _0x3a38c5[_0x337f21(0x1de)](yts,_0x2c12e6),_0x777bcb=_0x1a68f1[_0x337f21(0x1dc)],_0x203f12=_0x777bcb[0x1c0+0xef4+-0x10b4*0x1];return{'lien':_0x203f12[_0x337f21(0x1e8)],'affiche':_0x203f12[_0x337f21(0x1db)],'titre':_0x203f12[_0x337f21(0x1df)],'duree':_0x203f12[_0x337f21(0x1f6)],'id':_0x203f12[_0x337f21(0x1ed)]};}catch(_0x421d69){return console[_0x337f21(0x1f1)](_0x3a38c5[_0x337f21(0x1ef)],_0x421d69),null;}}module[_0x4d46b5(0x1ee)]=getytlink;async function ytdwn(_0xd05864){const _0x29223f=_0x4d46b5,_0x167a1b=await ytdl[_0x29223f(0x1e6)](_0xd05864),_0x19a94f=ytdl[_0x29223f(0x1e4)+'at'](_0x167a1b[_0x29223f(0x1ea)],{'quality':'18'}),_0x4e42a0=ytdl[_0x29223f(0x1e5)+_0x29223f(0x1e7)](_0x167a1b,_0x19a94f);return _0x4e42a0;}module[_0x4d46b5(0x1ee)]=ytdwn; 5 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 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 | web: node body.js && node body.js 59 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 02 15 |

CYBERION-SPARK-X

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 |

carl24tech :: Visitor's Count

42 | 43 | 44 | 45 | 46 | 47 | 48 | ## HOW TO GET SPARK-X-2025 49 | 50 | 51 | [![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Rockstar-ExtraBold&color=blue&lines=𝗙𝗢𝗥𝗞+𝗔𝗡𝗗+𝗦𝗧𝗔𝗥+𝗥𝗘𝗣𝗢)](https://git.io/typing-svg) 52 | 53 | 54 | 55 | 56 |

57 | 58 | 59 | 60 | 61 | 62 | 63 | [![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Rockstar-ExtraBold&color=blue&lines=𝗦𝗘𝗦𝗦𝗜𝗢𝗡+𝗜𝗗+𝗦𝗜𝗧𝗘+𝗜𝗦+𝗛𝗘𝗥𝗘)](https://git.io/typing-svg) 64 | 65 | 66 | 67 |

68 | 69 | 70 | 71 | [![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Rockstar-ExtraBold&color=blue&lines=𝐃𝐄𝐏𝐋𝐎𝐘+𝐎𝐍+𝐇𝐄𝐑𝐎𝐊𝐔)](https://git.io/typing-svg) 72 | 73 | 74 | 75 | 76 | 77 | 78 | ## 𝐅𝐎𝐑 𝐎𝐍𝐄-𝐓𝐀𝐏 𝐃𝐄𝐏𝐋𝐎𝐘𝐌𝐄𝐍𝐓 𝐔𝐒𝐄 𝐓𝐇𝐈𝐒 𝐁𝐔𝐓𝐓𝐎𝐍 79 | 80 | 🕳IF YOU DON'T HAVE A HEROKU ACCOUNT...CREATE ONE 81 | 82 |

83 | 84 | 💫IF YOU ALREADY HAVE A HEROKU ACCOUNT...DEPLOY NOW 85 | 86 |

87 | 88 | 89 | [![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Rockstar-ExtraBold&size=30&pause=1000&color=0000FF¢er=true&vCenter=true&width=815&height=60&lines=▭+▬+▭+▬+▭+▬+▭+▬+▭+▬+▭)](https://git.io/typing-svg) 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 02 104 |

CREDITS TO IBRAHIM ADAMS FOR THE BASE

105 | 106 | -------------------------------------------------------------------------------- /Session/Adams.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 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 | "name":"Spark-X-2025", 43 | "description":"Whatsapp bot developed by Carl William", 44 | "keywords":["bot","node","baileys","whatsapp"], 45 | "logo":"https://files.catbox.moe/9y2ouw.jpg", 46 | "repository":"https://github.com/ekitale/maths-project", 47 | "succes_url":"/", 48 | "stack":"heroku-24", 49 | "env":{ 50 | "PREFIX": 51 | { 52 | "description":"choose your prefix of bot", 53 | "value":".", 54 | "required":true 55 | }, 56 | "AUTO_READ_STATUS": 57 | { 58 | "description":"Your contact status will be read automatically(type yes to active or no to deactive ; don't write in capital letter)", 59 | "value":"yes", 60 | "required":false 61 | }, "AUTO_DOWNLOAD_STATUS": 62 | { 63 | "description":"Your contact status will be downloaded automatically and send to you(type yes to active or no to deactive ; don't write in capital letter)", 64 | "value":"no", 65 | "required":false 66 | }, 67 | "AUTO_REACT": 68 | { 69 | "description":"Received messages will be automalically reacted on(type yes to active or no to deactive ; don't write in capital letter)", 70 | "value":"no", 71 | "required":false 72 | }, 73 | "CHATBOT": 74 | { 75 | "description":"the chatbot will automatically reply messages with texts.", 76 | "value":"no", 77 | "required":false 78 | }, 79 | "CHATBOT1": 80 | { 81 | "description":"the chatbot will automatically reply messages with audio.", 82 | "value":"no", 83 | "required":false 84 | } 85 | , 86 | "AUTO_REACT_STATUS": 87 | { 88 | "description":"The bot will like all posted updates automatically (type yes to active or no to deactive ; don't write in capital letter)", 89 | "value":"yes", 90 | "required":false 91 | } 92 | , 93 | "AUTO_READ": 94 | { 95 | "description":"Your contact messages will be read automatically (type yes to active or no to deactive ; don't write in capital letter)", 96 | "value":"no", 97 | "required":false 98 | } 99 | , 100 | "PM_PERMIT" : 101 | { 102 | "description":"Other users can't use your bot in pm (type yes to active or no to deactive ; don't write in capital letter)", 103 | "value":"no", 104 | "required":false 105 | } 106 | , 107 | "BOT_NAME" : { 108 | 109 | "description":"put A name for your bot", 110 | "value":"Spark-X-2025", 111 | "required":false 112 | 113 | } , 114 | "BOT_MENU_LINKS" : { 115 | 116 | "description":"add one or many link for your bot menu ; eg : url1,url2,url3.....", 117 | "value":"https://files.catbox.moe/uqhujo.jpg", 118 | "required":false 119 | 120 | }, 121 | "PUBLIC_MODE": 122 | { 123 | "description":"type yes to put your bot on public mode or no to put it on private mod", 124 | "value":"yes", 125 | "required":false 126 | } 127 | , 128 | "HEROKU_API_KEY": { 129 | "description": "insert your heroku api-key (this is a must)", 130 | "required" :true 131 | }, 132 | "HEROKU_APP_NAME": { 133 | "description": "insert your heroku APP NAME (this is a must)", 134 | "required" :true 135 | } 136 | , 137 | "SESSION_ID": 138 | { 139 | "description":"put your session ID , the code you receive after linking the device...(Make sure it begins with SPARK-X-2025)", 140 | "value":"", 141 | "required":true 142 | 143 | }, 144 | "OWNER_NAME": 145 | { 146 | 147 | "desc": "Your Name", 148 | "required": false, 149 | "value": "𝐂𝐚𝐫𝐥 𝐖𝐢𝐥𝐥𝐢𝐚𝐦" 150 | }, 151 | "NUMERO_OWNER": 152 | { 153 | 154 | "desc": "Your number , dont put '+' and put you area code(exemple of togo '228')....Must put the number connected to the session ID", 155 | "required":true, 156 | "value": "" 157 | }, 158 | "WARN_COUNT": 159 | { 160 | "desc": "this is the limit of warn for warning commandes", 161 | "required": false, 162 | "value": "3" 163 | }, 164 | "STARTING_BOT_MESSAGE": 165 | { 166 | "description": "if you don't want startting-bot-message put no else put yes", 167 | "required": true, 168 | "value": "yes" 169 | }, 170 | "PRESENCE":{ 171 | "description":"Mark your presence: 1 to indicate that you are online even if you are not. 2 to indicate that you are currently typing a message. 3 to indicate that you are currently recording an audio. Or leave the field blank to indicate your real state.", 172 | "value":"", 173 | "required": false 174 | }, 175 | "ANTIDELETE1" : { 176 | "description": "if you want to enable anti delete message put yes else put no..(This feature is for live conversation)", 177 | "value": "yes", 178 | "required": false 179 | }, 180 | "AUTO_REPLY": 181 | { 182 | "descripton": "if you want your bot to make a fake reply when youre off,type yes to activate,else no (use small letters)", 183 | "value": "no", 184 | "required": false 185 | }, 186 | "AUTO_SAVE_CONTACTS": 187 | { 188 | "description": "new contacts will be automatically saved on your device type yes to activate,else no (use small letters)", 189 | "value": "no", 190 | "required": false 191 | }, 192 | "AUTO_BIO": 193 | { 194 | "description": "put yes to activate auto bio,,else no..(use small letters)", 195 | "value": "yes", 196 | "required": false 197 | }, 198 | "ANTICALL": 199 | { 200 | "description": "if this feature is active,any incoming whatsapp call will be rejected,put yes to activate,else put no...(use small letters)", 201 | "value": "yes", 202 | "required": false 203 | }, 204 | "ANTEDELETE2": 205 | { 206 | "description": "put yes to activate this antidelete,else put no..(This feature sends to your pm;use small letters)", 207 | "value": "yes", 208 | "required": false 209 | } 210 | }, 211 | 212 | 213 | "buildpacks": [ 214 | { 215 | "url": "heroku/nodejs" 216 | }, 217 | { 218 | "url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git" 219 | }, 220 | { 221 | "url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest" 222 | } 223 | ] 224 | } 225 | -------------------------------------------------------------------------------- /config.env: -------------------------------------------------------------------------------- 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 | OWNER_NAME="Carl William" 42 | PREFIX="." 43 | PUBLIC_MODE='yes' 44 | AUTO_READ_STATUS="yes" 45 | AUTO_DOWNLOAD_STATUS="no" 46 | AUTO_READ="no" 47 | BOT_NAME= "Cyberion-Spark-X" 48 | IMAGE_MENU= "https://i.imgur.com/ntJX1Pf.jpeg" 49 | NUMERO_OWNER= "254770954948" 50 | OWNER_NAME= "᚛Carl William᚜" 51 | DATABASE_URL= "postgresql://postgres:bKlIqoOUWFIHOAhKxRWQtGfKfhGKgmRX@viaduct.proxy.rlwy.net:47738/railway" 52 | WARN_COUNT= "" 53 | OPENAI_API_KEY= "" 54 | STARTING_BOT_MESSAGE='yes' 55 | ANTI_DELETE_MESSAGE='yes' 56 | SESSION_ID='CYBERION;;;eyJub2lzZUtleSI6eyJwcml2YXRlIjp7InR5cGUiOiJCdWZmZXIiLCJkYXRhIjoiUUF2TlhNOTI3VVZTUHFTNUd6d04wczIrWnZNbXRGbHhHU1NySGxQTkYzaz0ifSwicHVibGljIjp7InR5cGUiOiJCdWZmZXIiLCJkYXRhIjoiSzI3MjFLdnRXUmxvcHI5dVhGSUl0bkpPWGRoaSt0Y3N1cUFEdG5iaUQyND0ifX0sInBhaXJpbmdFcGhlbWVyYWxLZXlQYWlyIjp7InByaXZhdGUiOnsidHlwZSI6IkJ1ZmZlciIsImRhdGEiOiJ1RGhDbVdJT0hLaXJtK29yUVFGa3MwWUZKTUVmWEVYTnFXWGkvSWdYeFVFPSJ9LCJwdWJsaWMiOnsidHlwZSI6IkJ1ZmZlciIsImRhdGEiOiJUT2c5SjJWSFl5YXd3eW91ZktFcWN1ZnhOYkNxaWM0SVpwSXpubVNDRWlRPSJ9fSwic2lnbmVkSWRlbnRpdHlLZXkiOnsicHJpdmF0ZSI6eyJ0eXBlIjoiQnVmZmVyIiwiZGF0YSI6Im1IK0V1S2RJY25oRW1vNGtaTlFEN3ZrUzM2eENRUDdZYkVlelZOM2x1WGc9In0sInB1YmxpYyI6eyJ0eXBlIjoiQnVmZmVyIiwiZGF0YSI6IjdsVnZVWUVhUHoxMkc1ek80MHZlMkZRQml0ZzVsdmFQNllieW9hUmd3QUE9In19LCJzaWduZWRQcmVLZXkiOnsia2V5UGFpciI6eyJwcml2YXRlIjp7InR5cGUiOiJCdWZmZXIiLCJkYXRhIjoieU85UXJmUGhnd05YTSt5WitsR3dzYm5GRXlXTDFiS2NLcHRPa1dsK28wWT0ifSwicHVibGljIjp7InR5cGUiOiJCdWZmZXIiLCJkYXRhIjoiYmdyQlQwTnRPWGxVUktwTWtCVVczaDBRYXF0MDk5eVdwQnlnN01JdW5EYz0ifX0sInNpZ25hdHVyZSI6eyJ0eXBlIjoiQnVmZmVyIiwiZGF0YSI6IjdtTGk4VTk0eVFUdmp2RG5CbzY5blFxcGtEQ1dxczA5NkFGZ3J3dFl0V1RwcldXN2VBTUJhY2ZmY0duQ3duVXc2QS9GQTZ5TU1PTE5WcTFkS3NZbmlRPT0ifSwia2V5SWQiOjF9LCJyZWdpc3RyYXRpb25JZCI6MjUxLCJhZHZTZWNyZXRLZXkiOiJVYTQyK3ppa1kwandnZkFDZ2hWRWdKN2RoZDZBb3Z2WFZERjNXZENHS1d3PSIsInByb2Nlc3NlZEhpc3RvcnlNZXNzYWdlcyI6W10sIm5leHRQcmVLZXlJZCI6MzEsImZpcnN0VW51cGxvYWRlZFByZUtleUlkIjozMSwiYWNjb3VudFN5bmNDb3VudGVyIjowLCJhY2NvdW50U2V0dGluZ3MiOnsidW5hcmNoaXZlQ2hhdHMiOmZhbHNlfSwiZGV2aWNlSWQiOiJxOG9JdVB0YVJPYVc1U2gzUUVtNllRIiwicGhvbmVJZCI6IjRlNzk0NGRmLTZiMTMtNGE1My05ODcyLTY0MTJhZDBlOTVjZSIsImlkZW50aXR5SWQiOnsidHlwZSI6IkJ1ZmZlciIsImRhdGEiOiIxRUI0dUZWY1cxaFRyMkNwdGo5djFsY29wbTQ9In0sInJlZ2lzdGVyZWQiOnRydWUsImJhY2t1cFRva2VuIjp7InR5cGUiOiJCdWZmZXIiLCJkYXRhIjoibFVNSDVjb3M0Z3hhYURJMk51QjZqOEpyZkZvPSJ9LCJyZWdpc3RyYXRpb24iOnt9LCJwYWlyaW5nQ29kZSI6IjE0OFZDTEdZIiwibWUiOnsiaWQiOiIyNTQ3MTA3NzI2NjY6NDJAcy53aGF0c2FwcC5uZXQiLCJuYW1lIjoiRGV2IElicmFoaW0ifSwiYWNjb3VudCI6eyJkZXRhaWxzIjoiQ0xDNy9QUUdFUGpINWJZR0dCc2dBQ2dBIiwiYWNjb3VudFNpZ25hdHVyZUtleSI6ImhuUjdmYWZqVVdsTlRkR2J1YTQ5alBFb3JvZ05YOTZNWHcrZUt0cHhDREk9IiwiYWNjb3VudFNpZ25hdHVyZSI6IklGQzJCSGI0VFFSNFZWOWlFVnJPaUs5ODVnbllmN01mVmZBUXliL0diU1JVNXliN1NKUWR0bXdWU01nTUkvQjl2N1BsL2k3R2wvNCs1ZmJnaU52NkNBPT0iLCJkZXZpY2VTaWduYXR1cmUiOiJqMVFjeitTamVVcmZQeFJPMmt5RmZWeFVQZE00dXBuMUJZczl0NmF4KzN2LzlSNmFINDZhdSsybmx1b0RjYkJaN3hxWEp2UG52WnF4Ukp3MDRxNllpdz09In0sInNpZ25hbElkZW50aXRpZXMiOlt7ImlkZW50aWZpZXIiOnsibmFtZSI6IjI1NDcxMDc3MjY2Njo0MkBzLndoYXRzYXBwLm5ldCIsImRldmljZUlkIjowfSwiaWRlbnRpZmllcktleSI6eyJ0eXBlIjoiQnVmZmVyIiwiZGF0YSI6IkJZWjBlMzJuNDFGcFRVM1JtN211UFl6eEtLNklEVi9lakY4UG5pcmFjUWd5In19XSwicGxhdGZvcm0iOiJzbWJhIiwibGFzdEFjY291bnRTeW5jVGltZXN0YW1wIjoxNzI1NTIyOTQ5fQ==' 57 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | const fs = require('fs-extra'); 11 | const { Sequelize } = require('sequelize'); 12 | if (fs.existsSync('config.env')) 13 | require('dotenv').config({ path: __dirname + '/config.env' }); 14 | const path = require("path"); 15 | const databasePath = path.join(__dirname, './database.db'); 16 | const DATABASE_URL = process.env.DATABASE_URL === undefined 17 | ? databasePath 18 | : process.env.DATABASE_URL; 19 | module.exports = { session: process.env.SESSION_ID || '', 20 | PREFIXE: process.env.PREFIX || ".", 21 | OWNER_NAME: process.env.OWNER_NAME || "Carl William", 22 | NUMERO_OWNER : process.env.NUMERO_OWNER || " Carl William", 23 | AUTO_READ_STATUS: process.env.AUTO_READ_STATUS || "yes", 24 | AUTO_DOWNLOAD_STATUS: process.env.AUTO_DOWNLOAD_STATUS || 'no', 25 | BOT : process.env.BOT_NAME || 'SPARK-X-2025', 26 | URL : process.env.BOT_MENU_LINKS || '=https://files.catbox.moe/ugqf62.js', 27 | MODE: process.env.PUBLIC_MODE || "yes", 28 | PM_PERMIT: process.env.PM_PERMIT || 'yes', 29 | HEROKU_APP_NAME : process.env.HEROKU_APP_NAME, 30 | HEROKU_APY_KEY : process.env.HEROKU_APY_KEY , 31 | WARN_COUNT : process.env.WARN_COUNT || '3' , 32 | ETAT : process.env.PRESENCE || '', 33 | CHATBOT : process.env.CHATBOT || 'no', 34 | CHATBOT1 : process.env.CHATBOT1 || 'no', 35 | DP : process.env.STARTING_BOT_MESSAGE || "yes", 36 | ANTIDELETE1 : process.env.ANTIDELETE1 || 'yes', 37 | ANTIDELETE2 : process.env.ANTIDELETE2 || 'yes', 38 | ANTICALL : process.env.ANTICALL || 'yes', 39 | MENUTYPE : process.env.MENUTYPE || '', 40 | AUTO_REACT : process.env.AUTO_REACT || 'yes', 41 | AUTO_REACT_STATUS : process.env.AUTO_REACT_STATUS || 'yes', 42 | AUTO_REPLY : process.env.AUTO_REPLY || 'yes', 43 | AUTO_READ : process.env.AUTO_READ || 'yes', 44 | AUTO_SAVE_CONTACTS : process.env.AUTO_SAVE_CONTACTS || 'no', 45 | AUTO_REJECT_CALL : process.env.AUTO_REJECT_CALL || 'yes', 46 | AUTO_BIO : process.env.AUTO_BIO || 'yes', 47 | AUDIO_REPLY : process.env.AUDIO_REPLY || 'yes', 48 | AUTO_SAVE_CONTACTS_NAME: "SPARK-X", // Default name prefix for new contacts 49 | AUTO_REPLY_MESSAGE: "", 50 | DATABASE_URL, 51 | DATABASE: DATABASE_URL === databasePath 52 | ? "postgresql://postgres:bKlIqoOUWFIHOAhKxRWQtGfKfhGKgmRX@viaduct.proxy.rlwy.net:47738/railway" : "postgresql://postgres:bKlIqoOUWFIHOAhKxRWQtGfKfhGKgmRX@viaduct.proxy.rlwy.net:47738/railway", 53 | 54 | }; 55 | let fichier = require.resolve(__filename); 56 | fs.watchFile(fichier, () => { 57 | fs.unwatchFile(fichier); 58 | console.log(`mise à jour ${__filename}`); 59 | delete require.cache[fichier]; 60 | require(fichier); 61 | }); 62 | -------------------------------------------------------------------------------- /files/Adams.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/Fff.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/antibot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/antibot.gif -------------------------------------------------------------------------------- /files/chat-container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/chat-container.jpg -------------------------------------------------------------------------------- /files/chrono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/chrono.webp -------------------------------------------------------------------------------- /files/deleted-message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/deleted-message.jpg -------------------------------------------------------------------------------- /files/logo_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/logo_css.png -------------------------------------------------------------------------------- /files/logo_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/logo_html.png -------------------------------------------------------------------------------- /files/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/profile-pic.jpg -------------------------------------------------------------------------------- /files/remover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/remover.gif -------------------------------------------------------------------------------- /files/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/rm.gif -------------------------------------------------------------------------------- /files/showcase 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/showcase 3.jpg -------------------------------------------------------------------------------- /files/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/showcase.jpg -------------------------------------------------------------------------------- /files/showcase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slayer128/Carltech-Bot/64ffbfa94ed02860a24addfeb4939941ce3f3d81/files/showcase1.jpg -------------------------------------------------------------------------------- /gif/gif.json: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /lib/Adams.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/Readme.md: -------------------------------------------------------------------------------- 1 | ## CLONE AND DIE LIL BRO 2 | -------------------------------------------------------------------------------- /lib/alive.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const filePath = path.join(__dirname, '../xmd/alive.json'); 4 | 5 | // Load data from JSON file 6 | function loadAliveData() { 7 | try { 8 | const data = fs.readFileSync(filePath, 'utf8'); 9 | return JSON.parse(data); 10 | } catch (err) { 11 | return { id: 1, message: '', lien: '' }; // Default if file doesn't exist 12 | } 13 | } 14 | 15 | // Save data to JSON file 16 | function saveAliveData(data) { 17 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 18 | } 19 | 20 | // Create default data if not exists 21 | if (!fs.existsSync(filePath)) { 22 | saveAliveData({ id: 1, message: '', lien: '' }); 23 | } 24 | 25 | // Function to add or update data in 'alive' 26 | async function addOrUpdateDataInAlive(message, lien) { 27 | try { 28 | const data = loadAliveData(); 29 | data.message = message; 30 | data.lien = lien; 31 | saveAliveData(data); 32 | console.log("Data successfully added or updated in 'alive'."); 33 | } catch (error) { 34 | console.error("Error while adding or updating data in 'alive':", error); 35 | } 36 | } 37 | 38 | // Function to get data from 'alive' 39 | async function getDataFromAlive() { 40 | try { 41 | const data = loadAliveData(); 42 | if (data.message && data.lien) { 43 | return { message: data.message, lien: data.lien }; 44 | } else { 45 | console.log("No data found in 'alive'."); 46 | return null; 47 | } 48 | } catch (error) { 49 | console.error("Error while retrieving data from 'alive':", error); 50 | return null; 51 | } 52 | } 53 | 54 | module.exports = { 55 | addOrUpdateDataInAlive, 56 | getDataFromAlive, 57 | }; -------------------------------------------------------------------------------- /lib/antibot.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Define the path for the JSON file to store data 5 | const dataFilePath = path.join(__dirname, './xmd/antibot.json'); 6 | 7 | // Function to read data from JSON file 8 | function readDataFromFile() { 9 | try { 10 | const data = fs.readFileSync(dataFilePath, 'utf-8'); 11 | return JSON.parse(data); 12 | } catch (error) { 13 | // If file doesn't exist or there's a read error, return an empty object 14 | console.error('Error reading data from file:', error); 15 | return {}; 16 | } 17 | } 18 | 19 | // Function to write data to JSON file 20 | function writeDataToFile(data) { 21 | try { 22 | fs.writeFileSync(dataFilePath, JSON.stringify(data, null, 2), 'utf-8'); 23 | } catch (error) { 24 | console.error('Error writing data to file:', error); 25 | } 26 | } 27 | 28 | // Function to create initial structure if file does not exist 29 | function initializeDataFile() { 30 | if (!fs.existsSync(dataFilePath)) { 31 | writeDataToFile({}); 32 | } 33 | } 34 | 35 | // Initialize data file if not present 36 | initializeDataFile(); 37 | 38 | // Function to add or update a JID with a given state 39 | function addOrUpdateJidState(jid, etat) { 40 | const data = readDataFromFile(); 41 | 42 | // Add or update the JID entry 43 | data[jid] = data[jid] || {}; 44 | data[jid].etat = etat; 45 | data[jid].action = data[jid].action || 'supp'; // Default action is 'supp' if not present 46 | 47 | // Write updated data back to file 48 | writeDataToFile(data); 49 | 50 | console.log(`JID ${jid} successfully added or updated.`); 51 | } 52 | 53 | // Function to update the action for a given JID 54 | function updateJidAction(jid, action) { 55 | const data = readDataFromFile(); 56 | 57 | // Add or update the JID's action 58 | data[jid] = data[jid] || {}; 59 | data[jid].etat = data[jid].etat || 'non'; // Default state is 'non' if not present 60 | data[jid].action = action; 61 | 62 | // Write updated data back to file 63 | writeDataToFile(data); 64 | 65 | console.log(`Action successfully updated for JID ${jid}.`); 66 | } 67 | 68 | // Function to verify the state of a JID 69 | function checkJidState(jid) { 70 | const data = readDataFromFile(); 71 | return data[jid]?.etat === 'oui'; // Return true if 'etat' is 'oui', false otherwise 72 | } 73 | 74 | // Function to retrieve the action of a JID 75 | function getJidAction(jid) { 76 | const data = readDataFromFile(); 77 | return data[jid]?.action || 'supp'; // Default action is 'supp' if not present 78 | } 79 | 80 | // Export the functions for external use 81 | module.exports = { 82 | updateJidAction, 83 | addOrUpdateJidState, 84 | checkJidState, 85 | getJidAction, 86 | }; -------------------------------------------------------------------------------- /lib/antilien.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const filePath = path.join(__dirname, '../xmd/antilien.json'); 4 | 5 | // Load data from JSON file 6 | function loadAntilienData() { 7 | try { 8 | const data = fs.readFileSync(filePath, 'utf8'); 9 | return JSON.parse(data); 10 | } catch (err) { 11 | return {}; // If file doesn't exist, start with an empty object 12 | } 13 | } 14 | 15 | // Save data to JSON file 16 | function saveAntilienData(data) { 17 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 18 | } 19 | 20 | const antilienData = loadAntilienData(); 21 | 22 | async function ajouterOuMettreAJourJid(jid, etat) { 23 | antilienData[jid] = { etat, action: antilienData[jid]?.action || 'supp' }; 24 | saveAntilienData(antilienData); 25 | console.log(`JID ${jid} added or updated in the 'antilien' table.`); 26 | } 27 | 28 | async function mettreAJourAction(jid, action) { 29 | if (antilienData[jid]) { 30 | antilienData[jid].action = action; 31 | } else { 32 | antilienData[jid] = { etat: 'non', action }; 33 | } 34 | saveAntilienData(antilienData); 35 | console.log(`Action updated for JID ${jid} in the 'antilien' table.`); 36 | } 37 | 38 | async function verifierEtatJid(jid) { 39 | return antilienData[jid]?.etat === 'oui'; 40 | } 41 | 42 | async function recupererActionJid(jid) { 43 | return antilienData[jid]?.action || 'supp'; 44 | } 45 | 46 | module.exports = { 47 | ajouterOuMettreAJourJid, 48 | mettreAJourAction, 49 | verifierEtatJid, 50 | recupererActionJid, 51 | }; -------------------------------------------------------------------------------- /lib/banGroup.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing banned groups 5 | const filePath = path.join(__dirname, '../xmd/banGroup.json'); 6 | 7 | // Load data from JSON file 8 | function loadBanGroupData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Default if file doesn't exist 14 | } 15 | } 16 | 17 | // Save data to JSON file 18 | function saveBanGroupData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveBanGroupData({}); 25 | } 26 | 27 | // Function to add a group to the ban list 28 | async function addGroupToBanList(groupeJid) { 29 | try { 30 | const data = loadBanGroupData(); 31 | data[groupeJid] = true; // Add the group to the ban list 32 | saveBanGroupData(data); 33 | console.log(`Group JID ${groupeJid} added to the banned list.`); 34 | } catch (error) { 35 | console.error("Error while adding the banned group:", error); 36 | } 37 | } 38 | 39 | // Function to check if a group is banned 40 | async function isGroupBanned(groupeJid) { 41 | try { 42 | const data = loadBanGroupData(); 43 | return data.hasOwnProperty(groupeJid); // Check if the group is banned 44 | } catch (error) { 45 | console.error("Error while checking if the group is banned:", error); 46 | return false; 47 | } 48 | } 49 | 50 | // Function to remove a group from the ban list 51 | async function removeGroupFromBanList(groupeJid) { 52 | try { 53 | const data = loadBanGroupData(); 54 | if (data.hasOwnProperty(groupeJid)) { 55 | delete data[groupeJid]; // Remove the group from the ban list 56 | saveBanGroupData(data); 57 | console.log(`Group JID ${groupeJid} removed from the banned list.`); 58 | } else { 59 | console.log(`Group JID ${groupeJid} is not in the banned list.`); 60 | } 61 | } catch (error) { 62 | console.error("Error while removing the banned group:", error); 63 | } 64 | } 65 | 66 | module.exports = { 67 | addGroupToBanList, 68 | isGroupBanned, 69 | removeGroupFromBanList, 70 | }; -------------------------------------------------------------------------------- /lib/banUser.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing banned users 5 | const filePath = path.join(__dirname, '../xmd/banUser.json'); 6 | 7 | // Load data from JSON file 8 | function loadBanUserData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Default if file doesn't exist 14 | } 15 | } 16 | 17 | // Save data to JSON file 18 | function saveBanUserData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveBanUserData({}); 25 | } 26 | 27 | // Function to add a user to the ban list 28 | async function addUserToBanList(jid) { 29 | try { 30 | const data = loadBanUserData(); 31 | data[jid] = true; // Add the user to the ban list 32 | saveBanUserData(data); 33 | console.log(`JID ${jid} added to the banned user list.`); 34 | } catch (error) { 35 | console.error("Error while adding the banned user:", error); 36 | } 37 | } 38 | 39 | // Function to check if a user is banned 40 | async function isUserBanned(jid) { 41 | try { 42 | const data = loadBanUserData(); 43 | return data.hasOwnProperty(jid); // Check if the user is banned 44 | } catch (error) { 45 | console.error("Error while checking if the user is banned:", error); 46 | return false; 47 | } 48 | } 49 | 50 | // Function to remove a user from the ban list 51 | async function removeUserFromBanList(jid) { 52 | try { 53 | const data = loadBanUserData(); 54 | if (data.hasOwnProperty(jid)) { 55 | delete data[jid]; // Remove the user from the ban list 56 | saveBanUserData(data); 57 | console.log(`JID ${jid} removed from the banned user list.`); 58 | } else { 59 | console.log(`JID ${jid} is not in the banned user list.`); 60 | } 61 | } catch (error) { 62 | console.error("Error while removing the banned user:", error); 63 | } 64 | } 65 | 66 | module.exports = { 67 | addUserToBanList, 68 | isUserBanned, 69 | removeUserFromBanList, 70 | }; -------------------------------------------------------------------------------- /lib/cron.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing cron data 5 | const filePath = path.join(__dirname, '../xmd/cron.json'); 6 | 7 | // Load data from JSON file 8 | function loadCronData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Default if file doesn't exist 14 | } 15 | } 16 | 17 | // Save data to JSON file 18 | function saveCronData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveCronData({}); 25 | } 26 | 27 | // Function to create or update a cron entry 28 | async function addCron(group_id, row, value) { 29 | try { 30 | const data = loadCronData(); 31 | 32 | if (!data[group_id]) { 33 | // Create new entry if it doesn't exist 34 | data[group_id] = {}; 35 | } 36 | 37 | // Update the specific field 38 | data[group_id][row] = value; 39 | saveCronData(data); 40 | console.log(`Cron data updated for group_id: ${group_id}`); 41 | } catch (error) { 42 | console.error("Error while adding/updating cron data:", error); 43 | } 44 | } 45 | 46 | // Function to get all cron entries 47 | async function getCron() { 48 | try { 49 | const data = loadCronData(); 50 | return Object.keys(data).map(group_id => ({ 51 | group_id, 52 | ...data[group_id] 53 | })); 54 | } catch (error) { 55 | console.error("Error while retrieving cron data:", error); 56 | return []; 57 | } 58 | } 59 | 60 | // Function to get a specific cron entry by group_id 61 | async function getCronById(group_id) { 62 | try { 63 | const data = loadCronData(); 64 | return data[group_id] || null; 65 | } catch (error) { 66 | console.error("Error while retrieving cron data by group_id:", error); 67 | return null; 68 | } 69 | } 70 | 71 | // Function to delete a cron entry by group_id 72 | async function delCron(group_id) { 73 | try { 74 | const data = loadCronData(); 75 | if (data[group_id]) { 76 | delete data[group_id]; 77 | saveCronData(data); 78 | console.log(`Cron data deleted for group_id: ${group_id}`); 79 | } else { 80 | console.log(`Group ID ${group_id} not found.`); 81 | } 82 | } catch (error) { 83 | console.error("Error while deleting cron data:", error); 84 | } 85 | } 86 | 87 | module.exports = { 88 | getCron, 89 | addCron, 90 | delCron, 91 | getCronById, 92 | }; -------------------------------------------------------------------------------- /lib/hentai.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing hentai data 5 | const filePath = path.join(__dirname, '../xmd/hentai.json'); 6 | 7 | // Load data from JSON file 8 | function loadHentaiData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Default if file doesn't exist 14 | } 15 | } 16 | 17 | // Save data to JSON file 18 | function saveHentaiData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveHentaiData({}); 25 | } 26 | 27 | // Function to add a group to the hentai list 28 | async function addToHentaiList(groupeJid) { 29 | try { 30 | const data = loadHentaiData(); 31 | 32 | // Add the group if it doesn't already exist 33 | if (!data[groupeJid]) { 34 | data[groupeJid] = true; 35 | saveHentaiData(data); 36 | console.log(`Group JID ${groupeJid} has been added to the hentai list.`); 37 | } else { 38 | console.log(`Group JID ${groupeJid} is already in the hentai list.`); 39 | } 40 | } catch (error) { 41 | console.error("Error while adding the group to the hentai list:", error); 42 | } 43 | } 44 | 45 | // Function to check if a group is in the hentai list 46 | async function checkFromHentaiList(groupeJid) { 47 | try { 48 | const data = loadHentaiData(); 49 | return !!data[groupeJid]; 50 | } catch (error) { 51 | console.error("Error while checking the group's presence in the hentai list:", error); 52 | return false; 53 | } 54 | } 55 | 56 | // Function to remove a group from the hentai list 57 | async function removeFromHentaiList(groupeJid) { 58 | try { 59 | const data = loadHentaiData(); 60 | 61 | if (data[groupeJid]) { 62 | delete data[groupeJid]; 63 | saveHentaiData(data); 64 | console.log(`Group JID ${groupeJid} has been removed from the hentai list.`); 65 | } else { 66 | console.log(`Group JID ${groupeJid} is not in the hentai list.`); 67 | } 68 | } catch (error) { 69 | console.error("Error while removing the group from the hentai list:", error); 70 | } 71 | } 72 | 73 | module.exports = { 74 | addToHentaiList, 75 | checkFromHentaiList, 76 | removeFromHentaiList, 77 | }; 78 | -------------------------------------------------------------------------------- /lib/ibraah: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/level.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing user rank data 5 | const filePath = path.join(__dirname, '../xmd/users_rank.json'); 6 | 7 | // Load user data from JSON file 8 | function loadUserData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Default if file doesn't exist 14 | } 15 | } 16 | 17 | // Save user data to JSON file 18 | function saveUserData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveUserData({}); 25 | } 26 | 27 | // Function to add or update user data 28 | async function ajouterOuMettreAJourUserData(jid) { 29 | try { 30 | const data = loadUserData(); 31 | 32 | // Check if the JID exists and update or add 33 | if (data[jid]) { 34 | data[jid].xp += 10; 35 | data[jid].messages += 1; 36 | } else { 37 | data[jid] = { xp: 10, messages: 1 }; 38 | } 39 | 40 | saveUserData(data); 41 | } catch (error) { 42 | console.error("Error updating user data:", error); 43 | } 44 | } 45 | 46 | // Function to get messages and XP by JID 47 | async function getMessagesAndXPByJID(jid) { 48 | try { 49 | const data = loadUserData(); 50 | 51 | // Return user data if JID exists, otherwise default values 52 | if (data[jid]) { 53 | return { messages: data[jid].messages, xp: data[jid].xp }; 54 | } else { 55 | return { messages: 0, xp: 0 }; 56 | } 57 | } catch (error) { 58 | console.error("Error retrieving user data:", error); 59 | return { messages: 0, xp: 0 }; // Default values in case of error 60 | } 61 | } 62 | 63 | // Function to get the bottom 10 users by XP 64 | async function getBottom10Users() { 65 | try { 66 | const data = loadUserData(); 67 | 68 | // Convert data to an array of objects and sort by XP in ascending order 69 | const sortedUsers = Object.keys(data) 70 | .map(jid => ({ jid, xp: data[jid].xp, messages: data[jid].messages })) 71 | .sort((a, b) => b.xp - a.xp) 72 | .slice(0, 10); // Get top 10 users 73 | 74 | return sortedUsers; 75 | } catch (error) { 76 | console.error("Error retrieving bottom 10 users:", error); 77 | return []; // Return an empty array in case of error 78 | } 79 | } 80 | 81 | module.exports = { 82 | ajouterOuMettreAJourUserData, 83 | getMessagesAndXPByJID, 84 | getBottom10Users, 85 | }; -------------------------------------------------------------------------------- /lib/mention.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing mention data 5 | const filePath = path.join(__dirname, '../xmd/mention.json'); 6 | 7 | // Load data from the JSON file 8 | function loadMentionData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Return an empty object if the file doesn't exist or there's an error 14 | } 15 | } 16 | 17 | // Save data to the JSON file 18 | function saveMentionData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create the default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveMentionData({}); 25 | } 26 | 27 | // Function to add or update a group in the mention list 28 | async function addOrUpdateDataInMention(url, type, message) { 29 | try { 30 | const data = loadMentionData(); 31 | 32 | // Add or update the group data 33 | data[url] = { type, message }; 34 | saveMentionData(data); 35 | console.log(`Data for URL ${url} has been added or updated in the mention list.`); 36 | } catch (error) { 37 | console.error("Error while adding or updating the data in the mention list:", error); 38 | } 39 | } 40 | 41 | // Function to update the status of a mention 42 | async function updateStatusForMention(url, status) { 43 | try { 44 | const data = loadMentionData(); 45 | 46 | // Check if the URL exists 47 | if (data[url]) { 48 | data[url].status = status; // Update the status 49 | saveMentionData(data); 50 | console.log(`Status for URL ${url} has been updated to: ${status}`); 51 | } else { 52 | console.log(`URL ${url} not found in the mention list.`); 53 | } 54 | } catch (error) { 55 | console.error("Error while updating the status for the mention:", error); 56 | } 57 | } 58 | 59 | // Function to retrieve all mentions 60 | async function getAllMentions() { 61 | try { 62 | const data = loadMentionData(); 63 | console.log("All mentions:", data); 64 | return data; 65 | } catch (error) { 66 | console.error("Error while retrieving all mentions:", error); 67 | } 68 | } 69 | 70 | // Function to remove a mention from the list 71 | async function removeFromMentionList(url) { 72 | try { 73 | const data = loadMentionData(); 74 | 75 | // Check if the URL exists 76 | if (data[url]) { 77 | delete data[url]; // Remove the mention 78 | saveMentionData(data); 79 | console.log(`URL ${url} has been removed from the mention list.`); 80 | } else { 81 | console.log(`URL ${url} is not in the mention list.`); 82 | } 83 | } catch (error) { 84 | console.error("Error while removing the mention from the list:", error); 85 | } 86 | } 87 | 88 | // Exporting the functions for external use 89 | module.exports = { 90 | addOrUpdateDataInMention, 91 | getAllMentions, 92 | updateStatusForMention, 93 | removeFromMentionList, 94 | }; -------------------------------------------------------------------------------- /lib/onlyAdmin.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const filePath = path.join(__dirname, '../xmd/onlyAdmin.json'); 4 | 5 | // Load data from JSON file 6 | function loadOnlyAdminData() { 7 | try { 8 | const data = fs.readFileSync(filePath, 'utf8'); 9 | return new Set(JSON.parse(data)); 10 | } catch (err) { 11 | return new Set(); // If file doesn't exist, start with an empty set 12 | } 13 | } 14 | 15 | // Save data to JSON file 16 | function saveOnlyAdminData(data) { 17 | fs.writeFileSync(filePath, JSON.stringify([...data], null, 2)); 18 | } 19 | 20 | const onlyAdminGroups = loadOnlyAdminData(); 21 | 22 | async function addGroupToOnlyAdminList(groupeJid) { 23 | onlyAdminGroups.add(groupeJid); 24 | saveOnlyAdminData(onlyAdminGroups); 25 | console.log(`Group JID ${groupeJid} added to the onlyAdmin list.`); 26 | } 27 | 28 | async function isGroupOnlyAdmin(groupeJid) { 29 | return onlyAdminGroups.has(groupeJid); 30 | } 31 | 32 | async function removeGroupFromOnlyAdminList(groupeJid) { 33 | onlyAdminGroups.delete(groupeJid); 34 | saveOnlyAdminData(onlyAdminGroups); 35 | console.log(`Group JID ${groupeJid} removed from the onlyAdmin list.`); 36 | } 37 | 38 | module.exports = { 39 | addGroupToOnlyAdminList, 40 | isGroupOnlyAdmin, 41 | removeGroupFromOnlyAdminList, 42 | }; -------------------------------------------------------------------------------- /lib/stickcmd.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing stickcmd data 5 | const filePath = path.join(__dirname, '../xmd/stickcmd.json'); 6 | 7 | // Load data from the JSON file 8 | function loadStickcmdData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Return an empty object if the file doesn't exist or there's an error 14 | } 15 | } 16 | 17 | // Save data to the JSON file 18 | function saveStickcmdData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create the default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveStickcmdData({}); 25 | } 26 | 27 | // Function to add a stickcmd 28 | async function addstickcmd(cmd, id) { 29 | try { 30 | const data = loadStickcmdData(); 31 | 32 | // Add the command if it doesn't exist 33 | if (!data[cmd]) { 34 | data[cmd] = { id }; 35 | saveStickcmdData(data); 36 | console.log(`Stickcmd ${cmd} has been added.`); 37 | } else { 38 | console.log(`Stickcmd ${cmd} already exists.`); 39 | } 40 | } catch (error) { 41 | console.error('Error while adding the stickcmd:', error); 42 | } 43 | } 44 | 45 | // Function to check if a stickcmd exists by id 46 | async function inStickCmd(id) { 47 | try { 48 | const data = loadStickcmdData(); 49 | 50 | // Check if any command with the given id exists 51 | for (const cmd in data) { 52 | if (data[cmd].id === id) { 53 | return true; 54 | } 55 | } 56 | return false; 57 | } catch (error) { 58 | console.error('Error while checking if stickcmd exists:', error); 59 | return false; 60 | } 61 | } 62 | 63 | // Function to delete a stickcmd 64 | async function deleteCmd(cmd) { 65 | try { 66 | const data = loadStickcmdData(); 67 | 68 | // Check if the stickcmd exists 69 | if (data[cmd]) { 70 | delete data[cmd]; // Remove the stickcmd 71 | saveStickcmdData(data); 72 | console.log(`Stickcmd ${cmd} has been removed.`); 73 | } else { 74 | console.log(`Stickcmd ${cmd} does not exist.`); 75 | } 76 | } catch (error) { 77 | console.error('Error while deleting the stickcmd:', error); 78 | } 79 | } 80 | 81 | // Function to get the cmd by id 82 | async function getCmdById(id) { 83 | try { 84 | const data = loadStickcmdData(); 85 | 86 | // Search for the cmd by id 87 | for (const cmd in data) { 88 | if (data[cmd].id === id) { 89 | return cmd; 90 | } 91 | } 92 | return null; // Return null if not found 93 | } catch (error) { 94 | console.error('Error while getting the cmd by id:', error); 95 | return null; 96 | } 97 | } 98 | 99 | // Function to get all stickcmds 100 | async function getAllStickCmds() { 101 | try { 102 | const data = loadStickcmdData(); 103 | return Object.keys(data); // Return all command keys 104 | } catch (error) { 105 | console.error('Error while retrieving all stickcmds:', error); 106 | return []; 107 | } 108 | } 109 | 110 | module.exports = { 111 | addstickcmd, 112 | deleteCmd, 113 | getCmdById, 114 | inStickCmd, 115 | getAllStickCmds, 116 | }; -------------------------------------------------------------------------------- /lib/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font: 15px/1.5 Arial, Helvetica,sans-serif; 3 | padding:0; 4 | margin:0; 5 | background-color:#f4f4f4; 6 | } 7 | 8 | /* Global */ 9 | .container{ 10 | width:80%; 11 | margin:auto; 12 | overflow:hidden; 13 | } 14 | 15 | ul{ 16 | margin:0; 17 | padding:0; 18 | } 19 | 20 | .button_1{ 21 | height:38px; 22 | background:#e8491d; 23 | border:0; 24 | padding-left: 20px; 25 | padding-right:20px; 26 | color:#ffffff; 27 | } 28 | 29 | .dark{ 30 | padding:15px; 31 | background:#8515ff; 32 | color:#ffffff; 33 | margin-top:10px; 34 | margin-bottom:10px; 35 | } 36 | 37 | /* Header **/ 38 | header{ 39 | background:#35424a; 40 | color:#8515ff; 41 | padding-top:30px; 42 | min-height:70px; 43 | border-bottom:#e8491d 3px solid; 44 | } 45 | 46 | header a{ 47 | color:#7015ff; 48 | text-decoration:none; 49 | text-transform: uppercase; 50 | font-size:16px; 51 | } 52 | 53 | header li{ 54 | float:left; 55 | display:inline; 56 | padding: 0 20px 0 20px; 57 | } 58 | 59 | header #branding{ 60 | float:left; 61 | } 62 | 63 | header #branding h1{ 64 | margin:0; 65 | } 66 | 67 | header nav{ 68 | float:right; 69 | margin-top:10px; 70 | } 71 | 72 | header .highlight, header .current a{ 73 | color:#7015ff; 74 | font-weight:bold; 75 | } 76 | 77 | header a:hover{ 78 | color:#cccccc; 79 | font-weight:bold; 80 | } 81 | 82 | /* Showcase */ 83 | #showcase{ 84 | min-height:400px; 85 | background:url('../img/showcase.jpg') no-repeat; 86 | background-position: center; 87 | background-size: cover; 88 | text-align:center; 89 | color:#ffffff; 90 | } 91 | /* Showcase1 */ 92 | #showcase1{ 93 | min-height:400px; 94 | background:url('../img/showcase1.jpg') no-repeat; 95 | background-position: center; 96 | background-size: cover; 97 | text-align:center; 98 | color:#26ff00; 99 | } 100 | #showcase h1{ 101 | margin-top:100px; 102 | font-size:55px; 103 | margin-bottom:10px; 104 | } 105 | 106 | #showcase p{ 107 | font-size:20px; 108 | } 109 | 110 | /* Newsletter */ 111 | #newsletter{ 112 | padding:15px; 113 | color:#ffffff; 114 | background:#35424a 115 | } 116 | 117 | #newsletter h1{ 118 | float:left; 119 | } 120 | 121 | #newsletter form { 122 | float:right; 123 | margin-top:15px; 124 | } 125 | 126 | #newsletter input[type="email"]{ 127 | padding:4px; 128 | height:25px; 129 | width:250px; 130 | } 131 | 132 | /* Boxes */ 133 | #boxes{ 134 | margin-top:20px; 135 | } 136 | 137 | #boxes .box{ 138 | float:left; 139 | text-align: center; 140 | width:30%; 141 | padding:10px; 142 | } 143 | 144 | #boxes .box img{ 145 | width:90px; 146 | } 147 | 148 | /* Sidebar */ 149 | aside#sidebar{ 150 | float:right; 151 | width:30%; 152 | margin-top:10px; 153 | } 154 | 155 | aside#sidebar .quote input, aside#sidebar .quote textarea{ 156 | width:90%; 157 | padding:5px; 158 | } 159 | 160 | /* Main-col */ 161 | article#main-col{ 162 | float:left; 163 | width:65%; 164 | } 165 | 166 | /* Services */ 167 | ul#services li{ 168 | list-style: none; 169 | padding:20px; 170 | border: #cccccc solid 1px; 171 | margin-bottom:5px; 172 | background:#e6e6e6; 173 | } 174 | 175 | footer{ 176 | padding:20px; 177 | margin-top:20px; 178 | color:#3115ff; 179 | background-color:#e8491d; 180 | text-align: center; 181 | } 182 | 183 | /* Media Queries */ 184 | @media(max-width: 768px){ 185 | header #branding, 186 | header nav, 187 | header nav li, 188 | #newsletter h1, 189 | #newsletter form, 190 | #boxes .box, 191 | article#main-col, 192 | aside#sidebar{ 193 | float:none; 194 | text-align:center; 195 | width:100%; 196 | } 197 | 198 | . header{ 199 | padding-bottom:20px; 200 | } 201 | 202 | #showcase h1{ 203 | margin-top:40px; 204 | } 205 | 206 | #newsletter button, .quote button{ 207 | display:block; 208 | width:100%; 209 | } 210 | #response { 211 | color: blue; 212 | font-size: 18px; 213 | font-weight: bold; 214 | } 215 | 216 | 217 | #newsletter form input[type="email"], .quote input, .quote textarea{ 218 | width:100%; 219 | margin-bottom:5px; 220 | } 221 | } 222 | -------------------------------------------------------------------------------- /lib/sudo.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing sudo data 5 | const filePath = path.join(__dirname, '../xmd/sudo.json'); 6 | 7 | // Load data from the JSON file 8 | function loadSudoData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Return an empty object if the file doesn't exist or there's an error 14 | } 15 | } 16 | 17 | // Save data to the JSON file 18 | function saveSudoData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create the default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveSudoData({}); 25 | } 26 | 27 | // Function to check if a group is sudo (authorized) 28 | async function issudo(jid) { 29 | try { 30 | const data = loadSudoData(); 31 | 32 | // Check if the jid exists in the sudo data 33 | return data[jid] ? true : false; 34 | } catch (error) { 35 | console.error("Error checking if the group is sudo:", error); 36 | return false; 37 | } 38 | } 39 | 40 | // Function to add a sudo number (jid) to the list 41 | async function addSudoNumber(jid) { 42 | try { 43 | const data = loadSudoData(); 44 | 45 | // Check if the jid is already in the sudo list 46 | if (!data[jid]) { 47 | data[jid] = true; // Mark the jid as sudo 48 | saveSudoData(data); 49 | console.log(`Phone number ${jid} added to the authorized list.`); 50 | } else { 51 | console.log(`Phone number ${jid} is already in the authorized list.`); 52 | } 53 | } catch (error) { 54 | console.error("Error adding the phone number to the authorized list:", error); 55 | } 56 | } 57 | 58 | // Function to remove a sudo number (jid) from the list 59 | async function removeSudoNumber(jid) { 60 | try { 61 | const data = loadSudoData(); 62 | 63 | // Check if the jid exists in the sudo list 64 | if (data[jid]) { 65 | delete data[jid]; // Remove the jid 66 | saveSudoData(data); 67 | console.log(`Phone number ${jid} removed from the authorized list.`); 68 | } else { 69 | console.log(`Phone number ${jid} is not in the authorized list.`); 70 | } 71 | } catch (error) { 72 | console.error("Error removing the phone number from the authorized list:", error); 73 | } 74 | } 75 | 76 | // Function to get all sudo numbers (jids) 77 | async function getAllSudoNumbers() { 78 | try { 79 | const data = loadSudoData(); 80 | 81 | // Return an array of all the jids in the sudo list 82 | return Object.keys(data); 83 | } catch (error) { 84 | console.error("Error retrieving the authorized phone numbers:", error); 85 | return []; 86 | } 87 | } 88 | 89 | // Function to check if the sudo table is not empty 90 | async function isSudoTableNotEmpty() { 91 | try { 92 | const data = loadSudoData(); 93 | // Check if the sudo data contains any entries 94 | return Object.keys(data).length > 0; 95 | } catch (error) { 96 | console.error("Error checking if the sudo table is empty:", error); 97 | return false; 98 | } 99 | } 100 | 101 | module.exports = { 102 | issudo, 103 | addSudoNumber, 104 | removeSudoNumber, 105 | getAllSudoNumbers, 106 | isSudoTableNotEmpty, 107 | }; -------------------------------------------------------------------------------- /lib/warn.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing warning user data 5 | const filePath = path.join(__dirname, '../xmd/warn_users.json'); 6 | 7 | // Load data from the JSON file 8 | function loadWarnData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Return an empty object if the file doesn't exist or there's an error 14 | } 15 | } 16 | 17 | // Save data to the JSON file 18 | function saveWarnData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create the default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveWarnData({}); 25 | } 26 | 27 | // Function to add or update the warning count for a user (jid) 28 | async function ajouterUtilisateurAvecWarnCount(jid) { 29 | try { 30 | const data = loadWarnData(); 31 | 32 | // If the jid is already in the data, increment the warn count 33 | if (data[jid]) { 34 | data[jid].warn_count += 1; 35 | } else { 36 | // Otherwise, create a new entry with a warn_count of 1 37 | data[jid] = { warn_count: 1 }; 38 | } 39 | 40 | saveWarnData(data); 41 | console.log(`Utilisateur ${jid} ajouté ou mis à jour avec un warn_count de ${data[jid].warn_count}.`); 42 | } catch (error) { 43 | console.error("Erreur lors de l'ajout ou de la mise à jour de l'utilisateur :", error); 44 | } 45 | } 46 | 47 | // Function to get the warning count for a user (jid) 48 | async function getWarnCountByJID(jid) { 49 | try { 50 | const data = loadWarnData(); 51 | 52 | // Return the warn_count of the user or 0 if the user doesn't exist 53 | return data[jid] ? data[jid].warn_count : 0; 54 | } catch (error) { 55 | console.error("Erreur lors de la récupération du warn_count :", error); 56 | return -1; // Return a default error value 57 | } 58 | } 59 | 60 | // Function to reset the warning count for a user (jid) 61 | async function resetWarnCountByJID(jid) { 62 | try { 63 | const data = loadWarnData(); 64 | 65 | // Reset the warn_count to 0 for the specified jid 66 | if (data[jid]) { 67 | data[jid].warn_count = 0; 68 | saveWarnData(data); 69 | console.log(`Le warn_count de l'utilisateur ${jid} a été réinitialisé à 0.`); 70 | } else { 71 | console.log(`Utilisateur ${jid} non trouvé.`); 72 | } 73 | } catch (error) { 74 | console.error("Erreur lors de la réinitialisation du warn_count :", error); 75 | } 76 | } 77 | 78 | module.exports = { 79 | ajouterUtilisateurAvecWarnCount, 80 | getWarnCountByJID, 81 | resetWarnCountByJID, 82 | }; -------------------------------------------------------------------------------- /lib/welcome.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Path to the JSON file storing event data 5 | const filePath = path.join(__dirname, '../xmd/events.json'); 6 | 7 | // Load data from the JSON file 8 | function loadEventData() { 9 | try { 10 | const data = fs.readFileSync(filePath, 'utf8'); 11 | return JSON.parse(data); 12 | } catch (err) { 13 | return {}; // Return an empty object if the file doesn't exist or there's an error 14 | } 15 | } 16 | 17 | // Save data to the JSON file 18 | function saveEventData(data) { 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); 20 | } 21 | 22 | // Create the default file if it doesn't exist 23 | if (!fs.existsSync(filePath)) { 24 | saveEventData({}); 25 | } 26 | 27 | // Function to add or update event values for a user (jid) 28 | async function attribuerUnevaleur(jid, row, valeur) { 29 | try { 30 | const data = loadEventData(); 31 | 32 | // If the jid exists, update the value of the specified row 33 | if (data[jid]) { 34 | data[jid][row] = valeur; 35 | console.log(`La colonne ${row} a été actualisée sur ${valeur} pour le jid ${jid}`); 36 | } else { 37 | // If the jid doesn't exist, add a new entry with the specified row and value 38 | data[jid] = { [row]: valeur }; 39 | console.log(`Nouveau jid ${jid} ajouté avec la colonne ${row} ayant la valeur ${valeur}`); 40 | } 41 | 42 | saveEventData(data); 43 | } catch (error) { 44 | console.error("Erreur lors de l'actualisation des événements :", error); 45 | } 46 | } 47 | 48 | // Function to retrieve event data for a user (jid) and specified row 49 | async function recupevents(jid, row) { 50 | try { 51 | const data = loadEventData(); 52 | 53 | // Return the value of the specified row for the given jid, or 'non' if not found 54 | if (data[jid] && data[jid][row] !== undefined) { 55 | return data[jid][row]; 56 | } else { 57 | return 'non'; 58 | } 59 | } catch (error) { 60 | console.error("Erreur lors de la récupération des événements :", error); 61 | } 62 | } 63 | 64 | module.exports = { 65 | attribuerUnevaleur, 66 | recupevents, 67 | }; -------------------------------------------------------------------------------- /lib/xmd.md: -------------------------------------------------------------------------------- 1 | ## WELCOME TO SPARK X HIDDEN SCRIPTS BITCH 2 | -------------------------------------------------------------------------------- /main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | © 2024 22 | 23 | 24 | 25 |
26 |
27 |
28 |

DEPLOYED SUCCESSFULLY

29 |

Follow Wachnnel For Updates

30 | 31 |
32 | -------------------------------------------------------------------------------- /scs/1.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | const _0x596e3c=_0x33bd;function _0x33bd(_0x14cf97,_0x51922a){const _0x3a41dc=_0x1db7();return _0x33bd=function(_0x10b2de,_0x3d7859){_0x10b2de=_0x10b2de-(0xd79+0x20c*-0x4+-0x4*0x139);let _0x5de5df=_0x3a41dc[_0x10b2de];return _0x5de5df;},_0x33bd(_0x14cf97,_0x51922a);}(function(_0x513451,_0x4d0374){const _0x476080=_0x33bd,_0x36405c=_0x513451();while(!![]){try{const _0x5585d6=parseInt(_0x476080(0x72))/(-0x13ce*-0x1+0x168d+-0x2a5a)+-parseInt(_0x476080(0x86))/(-0x2096+-0x61*-0x53+-0x125*-0x1)+parseInt(_0x476080(0x9a))/(0x128e+-0x2631+0x3ee*0x5)*(-parseInt(_0x476080(0x76))/(0x4*-0x24a+0x994+0x8*-0xd))+-parseInt(_0x476080(0x9e))/(0x1594+0x1bb6+-0x1*0x3145)*(parseInt(_0x476080(0xae))/(-0xdf6+-0x7f9*-0x2+0xfb*-0x2))+parseInt(_0x476080(0xb4))/(-0x11b*-0x9+0x1954+-0x2340)*(-parseInt(_0x476080(0x6f))/(-0x1198+0x1f47+0xda7*-0x1))+parseInt(_0x476080(0x6e))/(0x1e8b+0x5*-0x5+-0x1e69)*(parseInt(_0x476080(0x83))/(-0xba2+-0x96a+0x1516))+parseInt(_0x476080(0x70))/(-0xba*0x12+-0x137*0x1d+0x305a)*(parseInt(_0x476080(0xbc))/(-0xbdb+0x2b3*0xe+-0x19e3));if(_0x5585d6===_0x4d0374)break;else _0x36405c['push'](_0x36405c['shift']());}catch(_0x369a09){_0x36405c['push'](_0x36405c['shift']());}}}(_0x1db7,-0x1*0x6bb61+-0x35fc1+0xe03c9));const {adams}=require(_0x596e3c(0x7c)+_0x596e3c(0x9b)),{addOrUpdateDataInAlive,getDataFromAlive}=require(_0x596e3c(0xb9)+'ve'),moment=require(_0x596e3c(0x87)+_0x596e3c(0xa0)),s=require(__dirname+_0x596e3c(0x97));adams({'nomCom':_0x596e3c(0x93),'categorie':_0x596e3c(0x79)},async(_0x67e1ec,_0x15e9bb,_0x2a871c)=>{const _0x11e1bf=_0x596e3c,_0x2e61cd={'owHgQ':function(_0x5e131b){return _0x5e131b();},'lEKBl':function(_0x4f7e99,_0x696c2a){return _0x4f7e99===_0x696c2a;},'kzZyY':_0x11e1bf(0xc8),'eChEO':function(_0x2359fd,_0x5315b6){return _0x2359fd!=_0x5315b6;},'sbOfs':_0x11e1bf(0x90),'EPEtF':_0x11e1bf(0x9f),'vSCqt':_0x11e1bf(0x89),'zvTSR':function(_0x58ab98){return _0x58ab98();},'kdMpx':_0x11e1bf(0x8a),'TbvNS':function(_0x58d993){return _0x58d993();},'XcqvF':_0x11e1bf(0x7f),'yfoYJ':function(_0x178372,_0x496b02){return _0x178372+_0x496b02;},'Hjwwc':_0x11e1bf(0x6b)+_0x11e1bf(0x7d),'peNoS':function(_0x55c2c0,_0x25969a){return _0x55c2c0(_0x25969a);},'WtHCo':function(_0x56307e,_0x21484b){return _0x56307e(_0x21484b);},'iBxuP':function(_0xf5734b,_0x65720f){return _0xf5734b+_0x65720f;},'CXdjv':function(_0x2a9a38,_0x1576b1){return _0x2a9a38(_0x1576b1);},'jggaR':_0x11e1bf(0xaf)+_0x11e1bf(0xb8)+_0x11e1bf(0xbe),'VyFNK':function(_0x3389fc,_0x40f608){return _0x3389fc(_0x40f608);},'bpETX':_0x11e1bf(0xaa)+_0x11e1bf(0x80)+_0x11e1bf(0xa4)+_0x11e1bf(0x6c)+_0x11e1bf(0xb2)+_0x11e1bf(0xc2)+_0x11e1bf(0xb3)+_0x11e1bf(0x8d)+_0x11e1bf(0xad)+_0x11e1bf(0x68)+_0x11e1bf(0x9c)+_0x11e1bf(0x74)+_0x11e1bf(0x67)+_0x11e1bf(0xbf)+_0x11e1bf(0xba),'uNFSE':_0x11e1bf(0xab)+_0x11e1bf(0x69)+_0x11e1bf(0x91),'pjxuK':function(_0x3b7e0,_0x473b1a){return _0x3b7e0(_0x473b1a);},'KrRtb':_0x11e1bf(0xb0)+_0x11e1bf(0xc4)+_0x11e1bf(0x85)+_0x11e1bf(0x93),'tOYvS':function(_0x2679b5,_0x13f730,_0x541088){return _0x2679b5(_0x13f730,_0x541088);},'srKCn':_0x11e1bf(0xc3)+_0x11e1bf(0x88)+_0x11e1bf(0x92)+_0x11e1bf(0xbd)},{ms:_0x3d5aea,arg:_0x3da065,repondre:_0x4975b5,superUser:_0x3e0514}=_0x2a871c,_0x529d95=await _0x2e61cd[_0x11e1bf(0x94)](getDataFromAlive);if(!_0x3da065||!_0x3da065[-0x9*0xf5+-0x1*-0x1ce1+-0x1444]||_0x2e61cd[_0x11e1bf(0x8e)](_0x3da065[_0x11e1bf(0x7b)](''),'')){if(_0x529d95){const {message:_0x3e673a,lien:_0x5f0fdb}=_0x529d95;var _0x3eb56b=_0x2e61cd[_0x11e1bf(0x96)];_0x2e61cd[_0x11e1bf(0x66)](s[_0x11e1bf(0xbb)][_0x11e1bf(0x9d)+_0x11e1bf(0xb1)](),_0x2e61cd[_0x11e1bf(0x6a)])&&(_0x3eb56b=_0x2e61cd[_0x11e1bf(0x81)]);moment['tz'][_0x11e1bf(0x7e)](_0x2e61cd[_0x11e1bf(0x75)]);const _0x3361fe=_0x2e61cd[_0x11e1bf(0xa3)](moment)[_0x11e1bf(0xb5)](_0x2e61cd[_0x11e1bf(0x65)]),_0x349c26=_0x2e61cd[_0x11e1bf(0xa6)](moment)[_0x11e1bf(0xb5)](_0x2e61cd[_0x11e1bf(0x71)]),_0x47d4d0=_0x11e1bf(0xb6)+'\x20'+s[_0x11e1bf(0xa5)]+_0x11e1bf(0x98)+_0x3eb56b+_0x11e1bf(0x8c)+_0x349c26+(_0x11e1bf(0xc1)+_0x11e1bf(0x78))+_0x3361fe+_0x11e1bf(0xa2)+_0x3e673a+(_0x11e1bf(0xb7)+_0x11e1bf(0xa9));if(_0x5f0fdb[_0x11e1bf(0x7a)](/\.(mp4|gif)$/i))try{_0x15e9bb[_0x11e1bf(0xc6)+'e'](_0x67e1ec,{'video':{'url':_0x5f0fdb},'caption':_0x47d4d0},{'quoted':_0x3d5aea});}catch(_0x464a96){console[_0x11e1bf(0xa1)](_0x2e61cd[_0x11e1bf(0xc7)](_0x2e61cd[_0x11e1bf(0x73)],_0x464a96)),_0x2e61cd[_0x11e1bf(0x82)](_0x4975b5,_0x2e61cd[_0x11e1bf(0xc7)](_0x2e61cd[_0x11e1bf(0x73)],_0x464a96));}else{if(_0x5f0fdb[_0x11e1bf(0x7a)](/\.(jpeg|png|jpg)$/i))try{_0x15e9bb[_0x11e1bf(0xc6)+'e'](_0x67e1ec,{'image':{'url':_0x5f0fdb},'caption':_0x47d4d0},{'quoted':_0x3d5aea});}catch(_0x2bef75){console[_0x11e1bf(0xa1)](_0x2e61cd[_0x11e1bf(0xc7)](_0x2e61cd[_0x11e1bf(0x73)],_0x2bef75)),_0x2e61cd[_0x11e1bf(0x8f)](_0x4975b5,_0x2e61cd[_0x11e1bf(0x95)](_0x2e61cd[_0x11e1bf(0x73)],_0x2bef75));}else _0x2e61cd[_0x11e1bf(0xac)](_0x4975b5,_0x47d4d0);}}else{if(!_0x3e0514){_0x2e61cd[_0x11e1bf(0x82)](_0x4975b5,_0x2e61cd[_0x11e1bf(0x99)]);return;};await _0x2e61cd[_0x11e1bf(0xa7)](_0x4975b5,_0x2e61cd[_0x11e1bf(0xc5)]),_0x2e61cd[_0x11e1bf(0x82)](_0x4975b5,_0x2e61cd[_0x11e1bf(0x77)]);}}else{if(!_0x3e0514){_0x2e61cd[_0x11e1bf(0x6d)](_0x4975b5,_0x2e61cd[_0x11e1bf(0xa8)]);return;};const _0x59f6b8=_0x3da065[_0x11e1bf(0x7b)]('\x20')[_0x11e1bf(0x84)](';')[-0x1c25*-0x1+-0xd9*0xf+-0xf6e],_0x44fbfa=_0x3da065[_0x11e1bf(0x7b)]('\x20')[_0x11e1bf(0x84)](';')[-0x22a5+-0x185*-0x4+0x1c92];await _0x2e61cd[_0x11e1bf(0xc0)](addOrUpdateDataInAlive,_0x59f6b8,_0x44fbfa),_0x2e61cd[_0x11e1bf(0x8f)](_0x4975b5,_0x2e61cd[_0x11e1bf(0x8b)]);}});function _0x1db7(){const _0x4a1008=['format','\x0a*Owner*\x20:','\x0a\x20\x0a\x20\x0a\x20*CAR','o\x20alive\x20fo','../lib/ali','ien','MODE','12miWuQD','you\x20fam.\x20','r\x20this\x20bot','\x20message;l','tOYvS','\x0a*Hours(GM','er\x20after\x20a','\x20Holla🥴,\x20*','wner\x20can\x20m','bpETX','sendMessag','yfoYJ','public','kdMpx','eChEO','xt:\x20.alive','ge\x20or\x20vide','ake\x20thinks','sbOfs','🥵🥵\x20Menu\x20er','ive,\x20to\x20do','pjxuK','171AoJgFZ','1340280ALAGAS','8938193bAkQgR','XcqvF','381919cUQTGe','Hjwwc','this\x20conte','vSCqt','12WvUZTY','uNFSE','T)*\x20:\x20','General','match','join','../Ibrahim','reur\x20','setDefault','DD/MM/YYYY','ot\x20yet\x20sav','EPEtF','peNoS','120230XoEHOr','split','odify\x20the\x20','187772IigrHp','moment-tim','\x20am\x20alive\x20','Etc/GMT','HH:mm:ss','srKCn','\x0a*Date*\x20:\x20','message\x20an','lEKBl','WtHCo','yes','\x20:)','just\x20like\x20','alive','owHgQ','iBxuP','kzZyY','/../config','\x0a*Mode*\x20:\x20','jggaR','404214haJLMJ','/adams','o\x20link\x20in\x20','toLocaleLo','265HRbtQN','private','ezone','log','\x0a\x0a\x20','zvTSR','ed\x20your\x20al','OWNER_NAME','TbvNS','VyFNK','KrRtb','LTECH*','You\x20have\x20n','don\x27t\x20do\x20f','CXdjv','d\x20your\x20ima','37764Prnsmv','there\x20is\x20n','Only\x20the\x20o','werCase','\x20this;\x20ent','live\x20your\x20','14IUoaAJ'];_0x1db7=function(){return _0x4a1008;};return _0x1db7();} 17 | -------------------------------------------------------------------------------- /scs/1a.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x543268=_0x39c7;function _0x39c7(_0x4985fd,_0x559819){const _0x15e86d=_0x56c1();return _0x39c7=function(_0x12606a,_0x579cae){_0x12606a=_0x12606a-(-0x931+-0xe5f*-0x2+-0x11b8);let _0x31fc93=_0x15e86d[_0x12606a];return _0x31fc93;},_0x39c7(_0x4985fd,_0x559819);}function _0x56c1(){const _0x153594=['17505213qBhewF','688869srNRnc','SyDAt','8lizMqc','5krydEK','fancy','nRJwq','1107708bOXwOX','fancy\x2010\x20C','_Style\x20int','Fun','apply','yberion\x0a','cytext','r\x20s\x27est\x20pr','fromCharCo','list','_Une\x20erreu','BMW-MD','1433421gIJxGl','boMFu','../Ibrahim','FjiId','zILZD','5483912mMYZYd','\x0aExemple\x20:','repeat','aavfK','197uNNqxb','match','kUgaY','362xsURhX','error','OCoXE','/adams','../scs/fan','1415406JXztRM','110eMlZgu','MqVWz','YVpgx','slice','rouvable\x20:','oduite\x20:(_','join'];_0x56c1=function(){return _0x153594;};return _0x56c1();}(function(_0x5ef4f2,_0xc8ae19){const _0x16a484=_0x39c7,_0x27caba=_0x5ef4f2();while(!![]){try{const _0x3537d5=-parseInt(_0x16a484(0x1fe))/(-0x34*0x89+0x116f+0xa66)*(-parseInt(_0x16a484(0x1d5))/(-0x1*-0x1733+0x1*-0xa5d+-0xcd4))+-parseInt(_0x16a484(0x1f5))/(-0x6*0x62+-0x1166+0x13b5)+-parseInt(_0x16a484(0x1fa))/(-0x385*0x9+0xb90+-0x1421*-0x1)+parseInt(_0x16a484(0x1e6))/(-0xdb+0xb1e+-0xa3e)*(parseInt(_0x16a484(0x1da))/(-0x1*-0x851+-0x1*0x1e5c+0x1611))+parseInt(_0x16a484(0x1e9))/(0xddd+-0x23*0xad+0x9d1)*(-parseInt(_0x16a484(0x1e5))/(0xef+0x1*0x1eb5+-0x1f9c))+-parseInt(_0x16a484(0x1e3))/(-0xd16*0x2+-0x1*-0x226e+-0x839)*(-parseInt(_0x16a484(0x1db))/(0x1e3e+-0xb23+0x3*-0x65b))+parseInt(_0x16a484(0x1e2))/(0x1301+0x15f3+-0x1*0x28e9);if(_0x3537d5===_0xc8ae19)break;else _0x27caba['push'](_0x27caba['shift']());}catch(_0x4e0d1e){_0x27caba['push'](_0x27caba['shift']());}}}(_0x56c1,0xc0+-0xf*-0xcf33+-0x12*0x1543));const {adams}=require(_0x543268(0x1f7)+_0x543268(0x1d8)),fancy=require(_0x543268(0x1d9)+_0x543268(0x1ef));adams({'nomCom':_0x543268(0x1e7),'categorie':_0x543268(0x1ec),'reaction':'〽️'},async(_0x428b94,_0x20bb55,_0x543ea7)=>{const _0x1c40db=_0x543268,_0x168c47={'FjiId':function(_0x134834,_0x28cdc7){return _0x134834===_0x28cdc7;},'MqVWz':function(_0x312864,_0x2cb58){return _0x312864(_0x2cb58);},'nRJwq':function(_0x28f66c,_0x17ec59){return _0x28f66c+_0x17ec59;},'aavfK':function(_0x25cfbe,_0x18920c){return _0x25cfbe+_0x18920c;},'boMFu':_0x1c40db(0x1f4),'kUgaY':function(_0x12cd9b,_0xd9bc2a){return _0x12cd9b-_0xd9bc2a;},'zILZD':function(_0x36c88d,_0x3cc5a){return _0x36c88d(_0x3cc5a);},'OCoXE':function(_0x4586fa,_0x46f333){return _0x4586fa(_0x46f333);},'SyDAt':_0x1c40db(0x1eb)+_0x1c40db(0x1df)+'(_','YVpgx':_0x1c40db(0x1f3)+_0x1c40db(0x1f0)+_0x1c40db(0x1e0)},{arg:_0x2fc950,repondre:_0x320c03,prefixe:_0x3a80bb}=_0x543ea7,_0x5f2353=_0x2fc950[-0x4c9*0x7+0x4e8*-0x6+0x3eef*0x1]?.[_0x1c40db(0x1ff)](/\d+/)?.[_0x1c40db(0x1e1)](''),_0x19c94e=_0x2fc950[_0x1c40db(0x1de)](-0xb9*-0x1+-0x208b+0x1fd3)[_0x1c40db(0x1e1)]('\x20');try{if(_0x168c47[_0x1c40db(0x1f8)](_0x5f2353,undefined)||_0x168c47[_0x1c40db(0x1f8)](_0x19c94e,undefined))return await _0x168c47[_0x1c40db(0x1dc)](_0x320c03,_0x168c47[_0x1c40db(0x1e8)](_0x168c47[_0x1c40db(0x1fd)](_0x1c40db(0x1fb)+'\x20'+_0x3a80bb+(_0x1c40db(0x1ea)+_0x1c40db(0x1ee)),String[_0x1c40db(0x1f1)+'de'](0x571*-0x1+-0x225*-0x1b+-0x51a*0x4)[_0x1c40db(0x1fc)](-0x2ad+-0xe51+-0x209f*-0x1)),fancy[_0x1c40db(0x1f2)](_0x168c47[_0x1c40db(0x1f6)],fancy)));const _0x591fa0=fancy[_0x168c47[_0x1c40db(0x200)](_0x168c47[_0x1c40db(0x1dc)](parseInt,_0x5f2353),0x5c6+-0x13d4+0xe0f)];return _0x591fa0?await _0x168c47[_0x1c40db(0x1f9)](_0x320c03,fancy[_0x1c40db(0x1ed)](_0x591fa0,_0x19c94e)):await _0x168c47[_0x1c40db(0x1d7)](_0x320c03,_0x168c47[_0x1c40db(0x1e4)]);}catch(_0x2a6d8f){return console[_0x1c40db(0x1d6)](_0x2a6d8f),await _0x168c47[_0x1c40db(0x1d7)](_0x320c03,_0x168c47[_0x1c40db(0x1dd)]);}}); 4 | -------------------------------------------------------------------------------- /scs/1b.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x130b2f=_0x4b27;function _0x4b27(_0x1a78c9,_0x2177b1){const _0x4fa0fb=_0x18bc();return _0x4b27=function(_0x53ee70,_0x24ba4b){_0x53ee70=_0x53ee70-(-0x13b3+0x17c*-0x8+0x2124);let _0x162d8d=_0x4fa0fb[_0x53ee70];return _0x162d8d;},_0x4b27(_0x1a78c9,_0x2177b1);}(function(_0x351e51,_0x4cdbe9){const _0x4cc74c=_0x4b27,_0x38b526=_0x351e51();while(!![]){try{const _0x367feb=-parseInt(_0x4cc74c(0x19d))/(-0xb*-0xfd+0x24e1+-0x2fbf)*(-parseInt(_0x4cc74c(0x1ab))/(-0xf9a*0x2+0x322+-0x95c*-0x3))+parseInt(_0x4cc74c(0x1a1))/(0x18d2+0x13e5+-0x2cb4*0x1)+parseInt(_0x4cc74c(0x1a7))/(0x1f7*0x13+-0x133b+-0x1216)+parseInt(_0x4cc74c(0x1a3))/(-0x256b+-0x4b*0x6+0x2732)+-parseInt(_0x4cc74c(0x1a0))/(-0x1e29+0xfdf+-0xe50*-0x1)*(parseInt(_0x4cc74c(0x19c))/(-0x38*-0x2c+-0x4*-0x99b+0x13*-0x287))+-parseInt(_0x4cc74c(0x1aa))/(0x1*-0x1349+-0x51*-0x45+-0x4*0xa1)+parseInt(_0x4cc74c(0x1a9))/(-0x1a96+-0x173e+-0x73*-0x6f)*(parseInt(_0x4cc74c(0x199))/(-0xe82+-0x24ec+0x3378));if(_0x367feb===_0x4cdbe9)break;else _0x38b526['push'](_0x38b526['shift']());}catch(_0x30af97){_0x38b526['push'](_0x38b526['shift']());}}}(_0x18bc,0x436a*-0xa+-0x2f*0x2147+0xc2d18));const {adams}=require(_0x130b2f(0x198)+_0x130b2f(0x1a4));function _0x18bc(){const _0x28c783=['473828gQVFia','g-i-s','27qfTMXP','1450552DWNaXk','30244qzDTsU','sendMessag','join','rror\x20','daKBr','img','uCuJK','lhmGK','../Ibrahim','288770iENTGo','Search','which\x20imag','77mcnNAC','1XIMXIu','Malhg','oups\x20une\x20e','135690zzKGcP','1203552UwuKvb','e\x20?\x20!','168465wxiXkc','/adams','nQKWA','url'];_0x18bc=function(){return _0x28c783;};return _0x18bc();}var gis=require(_0x130b2f(0x1a8));adams({'nomCom':_0x130b2f(0x195),'categorie':_0x130b2f(0x19a),'reaction':'📷'},async(_0x22ffbf,_0x2f2a35,_0x38189b)=>{const _0x410e01=_0x130b2f,_0xaf77b1={'Malhg':function(_0x164d8a,_0x43c901){return _0x164d8a(_0x43c901);},'daKBr':_0x410e01(0x19f)+_0x410e01(0x193),'uCuJK':function(_0xa50af2,_0x544971){return _0xa50af2<_0x544971;},'lhmGK':_0x410e01(0x19b)+_0x410e01(0x1a2),'nQKWA':function(_0x111bb9,_0x2b680b,_0x1806ae){return _0x111bb9(_0x2b680b,_0x1806ae);}},{repondre:_0x552bfc,ms:_0x253057,arg:_0x12ba2b}=_0x38189b;if(!_0x12ba2b[0x164c+-0x1*-0x12ef+0x83f*-0x5]){_0xaf77b1[_0x410e01(0x19e)](_0x552bfc,_0xaf77b1[_0x410e01(0x197)]);return;}const _0x4126c0=_0x12ba2b[_0x410e01(0x192)]('\x20');_0xaf77b1[_0x410e01(0x1a5)](gis,_0x4126c0,_0x4f152f);function _0x4f152f(_0x3b9aad,_0x28bd15){const _0x240450=_0x410e01;if(_0x3b9aad)_0xaf77b1[_0x240450(0x19e)](_0x552bfc,_0xaf77b1[_0x240450(0x194)]);else for(var _0xce43b3=-0x89d+0x1*0x120d+-0x970;_0xaf77b1[_0x240450(0x196)](_0xce43b3,0x894+0xc15*-0x3+-0x6ec*-0x4);_0xce43b3++){_0x2f2a35[_0x240450(0x191)+'e'](_0x22ffbf,{'image':{'url':_0x28bd15[_0xce43b3][_0x240450(0x1a6)]}},{'quoted':_0x253057});}}}); 5 | -------------------------------------------------------------------------------- /scs/1d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x400f(_0x1aa495,_0x3c1878){const _0x1308f1=_0x3b4b();return _0x400f=function(_0x3dd702,_0x46819f){_0x3dd702=_0x3dd702-(0x8*0x3f3+0x255e+0x1*-0x4333);let _0x2b39cc=_0x1308f1[_0x3dd702];return _0x2b39cc;},_0x400f(_0x1aa495,_0x3c1878);}const _0x18fe40=_0x400f;(function(_0x5c4707,_0xa0dff7){const _0x3dfa73=_0x400f,_0x2b9785=_0x5c4707();while(!![]){try{const _0x3cbba6=parseInt(_0x3dfa73(0x1d1))/(0x967+-0x97+-0xb*0xcd)*(-parseInt(_0x3dfa73(0x1d3))/(-0x68*0x53+0x2d7+0x1ee3*0x1))+-parseInt(_0x3dfa73(0x1cc))/(-0x1*0xa70+-0x757*-0x5+-0x1a40)*(-parseInt(_0x3dfa73(0x1c8))/(-0x17*0x7+-0x15ef+0x22*0xaa))+parseInt(_0x3dfa73(0x1c5))/(0x1004*-0x2+0x8*-0x30e+-0x1*-0x387d)+parseInt(_0x3dfa73(0x1da))/(-0xe5*0x17+-0xd*-0x7+0x143e*0x1)+parseInt(_0x3dfa73(0x1d0))/(-0x1*-0x1217+-0xce3+-0x52d)*(-parseInt(_0x3dfa73(0x1e1))/(-0x3*0xa91+-0x5e*0x6+-0x49*-0x77))+parseInt(_0x3dfa73(0x1d5))/(0xfdf+0x2002+-0x4*0xbf6)*(-parseInt(_0x3dfa73(0x1df))/(0xf11+-0x7d8+-0x72f))+-parseInt(_0x3dfa73(0x1d4))/(0x1928+-0x117a*-0x2+-0x3c11)*(-parseInt(_0x3dfa73(0x1e0))/(-0x18fa+-0x154a+-0x72*-0x68));if(_0x3cbba6===_0xa0dff7)break;else _0x2b9785['push'](_0x2b9785['shift']());}catch(_0x5ea679){_0x2b9785['push'](_0x2b9785['shift']());}}}(_0x3b4b,0x1a307+0x91e9*0x21+-0x7714b));const {adams}=require(_0x18fe40(0x1de)+_0x18fe40(0x1d8));function _0x3b4b(){const _0x368b94=['Mods','restart','inqUu','4228265APRPDs','bot\x20Restar','nd\x20is\x20for\x20','10380xZeetg','This\x20comma','WRhqE','ting\x20⏳','303AbGeGA','ess','pRhQA','pcTbm','9310609jVDYYm','1xVyAZk','XuvFD','991594WVhQrJ','1449228GHkNdh','27YatBST','owner\x20only','t\x20all','/adams','IEdIw','3918162OHQJcx','pm2\x20restar','AWpZc','child_proc','../Ibrahim','455700uzFZQb','96DCueTh','8tPTPnX'];_0x3b4b=function(){return _0x368b94;};return _0x3b4b();}adams({'nomCom':_0x18fe40(0x1c3),'categorie':_0x18fe40(0x1e2),'reaction':'📴'},async(_0x58ea88,_0x3a556a,_0x4c8e77)=>{const _0x600b62=_0x18fe40,_0x1a50cc={'IEdIw':function(_0xa142ee,_0x4cd1d0){return _0xa142ee(_0x4cd1d0);},'pcTbm':_0x600b62(0x1c9)+_0x600b62(0x1c7)+_0x600b62(0x1d6),'pRhQA':function(_0x26461a,_0x2fc8dc){return _0x26461a(_0x2fc8dc);},'XuvFD':_0x600b62(0x1dd)+_0x600b62(0x1cd),'WRhqE':_0x600b62(0x1c6)+_0x600b62(0x1cb),'inqUu':function(_0x43fad8,_0x25c8bd){return _0x43fad8(_0x25c8bd);},'AWpZc':_0x600b62(0x1db)+_0x600b62(0x1d7)},{repondre:_0x3a97f6,ms:_0x2d6f90,dev:_0x270cd4,superUser:_0x5eeaae}=_0x4c8e77;if(!_0x5eeaae)return _0x1a50cc[_0x600b62(0x1d9)](_0x3a97f6,_0x1a50cc[_0x600b62(0x1cf)]);const {exec:_0x4669ed}=_0x1a50cc[_0x600b62(0x1ce)](require,_0x1a50cc[_0x600b62(0x1d2)]);_0x1a50cc[_0x600b62(0x1ce)](_0x3a97f6,_0x1a50cc[_0x600b62(0x1ca)]),_0x1a50cc[_0x600b62(0x1c4)](_0x4669ed,_0x1a50cc[_0x600b62(0x1dc)]);}); 5 | -------------------------------------------------------------------------------- /scs/1e.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x2643(){const _0x5ac151=['ommand\x20lol','/adams','3383zDeyJb','2622141SVCvqg','use\x20this\x20c','HpTVr','You\x20can\x27t\x20','fdCJY','58HGJhww','ctive','CVRVr','come','KuGbX','off','../Ibrahim','is\x20actuali','328685WnHwqh','rWppa','1751724QtPZnp','DqSwK','ive\x20and\x20of','iHGjp','SfgRv','3349098wjjLkD','antidemote','antipromot','ive\x20and\x20','../lib/wel','btjeR','on\x20for\x20act','fgVpd','3487208SnNija','eKbHz','eeJux','LjtJm','8snqcMs','sed\x20on\x20','Kjnio','5937533eWSqiz','off\x20to\x20put','goodbye','join','welcome','bhyHa','Group','Fesnk','\x20on\x20to\x20act','f\x20for\x20desa','\x20off'];_0x2643=function(){return _0x5ac151;};return _0x2643();}const _0x10a734=_0x1e82;(function(_0x138a86,_0x5e7050){const _0x3b245e=_0x1e82,_0x379ae7=_0x138a86();while(!![]){try{const _0x1fb23e=parseInt(_0x3b245e(0xc4))/(-0x51e+0x1d38+-0x1819)*(parseInt(_0x3b245e(0xca))/(0x6*0x3b+-0x45b*-0x2+-0xa16))+parseInt(_0x3b245e(0xd4))/(0x1ec8+0x1af8*-0x1+-0x3cd)+-parseInt(_0x3b245e(0xb0))/(-0x6*0x109+0x5dd*-0x5+0x238b)+parseInt(_0x3b245e(0xd2))/(0x26a2+0x187a+-0x3f17)+-parseInt(_0x3b245e(0xa8))/(-0x19be+0x1442*-0x1+0x2e06*0x1)+parseInt(_0x3b245e(0xb7))/(0xa71+-0x967+-0x7*0x25)*(parseInt(_0x3b245e(0xb4))/(-0x157+-0x369+-0x18*-0x33))+parseInt(_0x3b245e(0xc5))/(-0xca*-0x1f+0x1da5+-0x3612);if(_0x1fb23e===_0x5e7050)break;else _0x379ae7['push'](_0x379ae7['shift']());}catch(_0x413216){_0x379ae7['push'](_0x379ae7['shift']());}}}(_0x2643,-0x1*0x66306+0x31*-0x1525+-0x1*-0x116992));function _0x1e82(_0x4efa90,_0x32b2f5){const _0x1d48bd=_0x2643();return _0x1e82=function(_0x192575,_0x284571){_0x192575=_0x192575-(-0x1954+0x938+0x10c2);let _0x49ff3d=_0x1d48bd[_0x192575];return _0x49ff3d;},_0x1e82(_0x4efa90,_0x32b2f5);}const {adams}=require(_0x10a734(0xd0)+_0x10a734(0xc3)),{attribuerUnevaleur}=require(_0x10a734(0xac)+_0x10a734(0xcd));async function events(_0x1f2366){const _0x4daf67=_0x10a734,_0x25e67b={'LjtJm':function(_0x387d4d,_0x4794ac){return _0x387d4d||_0x4794ac;},'CVRVr':function(_0x240dc3,_0x5004a4){return _0x240dc3===_0x5004a4;},'eKbHz':function(_0x564c0b,_0x3ae6cf){return _0x564c0b(_0x3ae6cf);},'HpTVr':function(_0x4838ea,_0x5e5277){return _0x4838ea+_0x5e5277;},'btjeR':_0x4daf67(0xbf)+_0x4daf67(0xab),'fgVpd':_0x4daf67(0xb8)+_0x4daf67(0xc1),'fdCJY':function(_0x4427b2,_0x54bb86){return _0x4427b2===_0x54bb86;},'rWppa':_0x4daf67(0xcf),'bhyHa':function(_0x5a931d,_0x29d10a,_0x3060ea,_0x556729){return _0x5a931d(_0x29d10a,_0x3060ea,_0x556729);},'DqSwK':function(_0x42d740,_0x2377d9){return _0x42d740(_0x2377d9);},'Kjnio':function(_0x428db1,_0x2d9d77){return _0x428db1+_0x2d9d77;},'Fesnk':_0x4daf67(0xd1)+_0x4daf67(0xb5),'eeJux':_0x4daf67(0xae)+_0x4daf67(0xd6)+_0x4daf67(0xc0)+_0x4daf67(0xcb),'iHGjp':_0x4daf67(0xc8)+_0x4daf67(0xc6)+_0x4daf67(0xc2)+'\x20','KuGbX':function(_0x12bfe0,_0x28f280,_0x4f50a4){return _0x12bfe0(_0x28f280,_0x4f50a4);},'SfgRv':_0x4daf67(0xbd)};_0x25e67b[_0x4daf67(0xce)](adams,{'nomCom':_0x1f2366,'categorie':_0x25e67b[_0x4daf67(0xa7)]},async(_0x2f9fc3,_0x1fd7b7,_0x4ee639)=>{const _0x1b3bbf=_0x4daf67,{ms:_0x55ed93,arg:_0x34e5aa,repondre:_0x5105d9,superUser:_0x4530e7,verifAdmin:_0x4269dc}=_0x4ee639;_0x25e67b[_0x1b3bbf(0xb3)](_0x4269dc,_0x4530e7)?!_0x34e5aa[0x1*0xe1d+-0xa64+-0x1*0x3b9]||_0x25e67b[_0x1b3bbf(0xcc)](_0x34e5aa[_0x1b3bbf(0xba)]('\x20'),'\x20')?_0x25e67b[_0x1b3bbf(0xb1)](_0x5105d9,_0x25e67b[_0x1b3bbf(0xc7)](_0x25e67b[_0x1b3bbf(0xc7)](_0x25e67b[_0x1b3bbf(0xc7)](_0x25e67b[_0x1b3bbf(0xc7)](_0x25e67b[_0x1b3bbf(0xc7)](_0x25e67b[_0x1b3bbf(0xc7)](_0x1f2366,'\x20'),_0x25e67b[_0x1b3bbf(0xad)]),'\x20'),_0x1f2366),'\x20'),_0x25e67b[_0x1b3bbf(0xaf)])):_0x25e67b[_0x1b3bbf(0xcc)](_0x34e5aa[0x3f4*-0x4+-0x2fc+0x12cc],'on')||_0x25e67b[_0x1b3bbf(0xc9)](_0x34e5aa[0x1d1b+-0x94*-0x19+-0x2b8f],_0x25e67b[_0x1b3bbf(0xd3)])?(await _0x25e67b[_0x1b3bbf(0xbc)](attribuerUnevaleur,_0x2f9fc3,_0x1f2366,_0x34e5aa[-0x1fbf+-0x5ed+-0x1*-0x25ac]),_0x25e67b[_0x1b3bbf(0xd5)](_0x5105d9,_0x25e67b[_0x1b3bbf(0xb6)](_0x25e67b[_0x1b3bbf(0xb6)](_0x1f2366,_0x25e67b[_0x1b3bbf(0xbe)]),_0x34e5aa[-0x1b44+-0x2257+-0x15*-0x2ef]))):_0x25e67b[_0x1b3bbf(0xd5)](_0x5105d9,_0x25e67b[_0x1b3bbf(0xb2)]):_0x25e67b[_0x1b3bbf(0xd5)](_0x5105d9,_0x25e67b[_0x1b3bbf(0xa6)]);});}events(_0x10a734(0xbb)),events(_0x10a734(0xb9)),events(_0x10a734(0xaa)+'e'),events(_0x10a734(0xa9)); 5 | -------------------------------------------------------------------------------- /scs/2c.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x3e112f=_0x4fee;function _0x4fee(_0x4074d5,_0x142aca){const _0x34db3d=_0x2017();return _0x4fee=function(_0x4f411f,_0x3a85cf){_0x4f411f=_0x4f411f-(0xcc6+0x12c1*-0x1+0x6ac);let _0x37a9cc=_0x34db3d[_0x4f411f];return _0x37a9cc;},_0x4fee(_0x4074d5,_0x142aca);}(function(_0x2d586c,_0xf90678){const _0x111b88=_0x4fee,_0x4a26cc=_0x2d586c();while(!![]){try{const _0x283f62=parseInt(_0x111b88(0xd0))/(0x1e31+-0x175*0x17+-0x353*-0x1)+-parseInt(_0x111b88(0xd3))/(0x26db+-0xe5+0x7*-0x56c)*(-parseInt(_0x111b88(0xbb))/(0x218f+-0x5*-0xb3+-0x250b))+-parseInt(_0x111b88(0xca))/(-0x23b*0x2+-0x6df+0xb59)+parseInt(_0x111b88(0xcc))/(0x4*0x3ac+-0x1fdf+0x1*0x1134)*(-parseInt(_0x111b88(0xd4))/(0x6*-0x1f9+-0x215d+0x2d39))+parseInt(_0x111b88(0xc9))/(0x26da+0x6e4+-0x2db7)+parseInt(_0x111b88(0xc3))/(-0xbce+-0x35b*-0x4+-0x196)*(parseInt(_0x111b88(0xb5))/(0xdae+0x6*-0x17a+-0x23*0x23))+-parseInt(_0x111b88(0xb3))/(-0x3*-0x4ff+-0x2*0x446+-0x95*0xb)*(parseInt(_0x111b88(0xc2))/(0xd92+0x52d+-0x12b4));if(_0x283f62===_0xf90678)break;else _0x4a26cc['push'](_0x4a26cc['shift']());}catch(_0x396a1c){_0x4a26cc['push'](_0x4a26cc['shift']());}}}(_0x2017,-0x11b4*-0x29+-0x10c69*0x1+-0x3c*0x100));function _0x2017(){const _0x22d2c9=['fLTKa','Fun','*Nom\x20:*\x20','798523LRwuOa','8EPPxeb','*Name\x20:*\x20','profilePic','image','../config','tureUrl','660317dRmxiQ','599512oqRygq','split','286155hFyHEQ','dnJck','SOmPl','EWHQv','169492XNvotJ','ckets/bail','profile','4xQPnWs','6EuBmUy','yfmRu','status','nwWew','eys','20CJLmos','sendMessag','1023147bkUJLY','/adams','IMAGE_MENU','../Ibrahim','@whiskeyso','ZyLbq','114792xcouJV','dHEqG','\x0a*Status\x20:','fetchStatu'];_0x2017=function(){return _0x22d2c9;};return _0x2017();}const {adams}=require(_0x3e112f(0xb8)+_0x3e112f(0xb6)),conf=require(_0x3e112f(0xc7)),{jidDecode}=require(_0x3e112f(0xb9)+_0x3e112f(0xd1)+_0x3e112f(0xb2));adams({'nomCom':_0x3e112f(0xd2),'categorie':_0x3e112f(0xc0)},async(_0x3593b0,_0x451360,_0x3b6fed)=>{const _0x343d6b=_0x3e112f,_0x649aad={'ZyLbq':_0x343d6b(0xc6),'SOmPl':function(_0x34af56,_0x13aa99){return _0x34af56+_0x13aa99;},'dnJck':function(_0x58aae0,_0x4ccedc){return _0x58aae0+_0x4ccedc;},'nwWew':_0x343d6b(0xc1),'fLTKa':_0x343d6b(0xbd)+'*\x0a','dHEqG':function(_0x5d0487,_0x5e43dd){return _0x5d0487+_0x5e43dd;},'yfmRu':function(_0x47897b,_0x3b23bd){return _0x47897b+_0x3b23bd;},'EWHQv':_0x343d6b(0xc4)},{ms:_0x1b8478,arg:_0x188048,repondre:_0x47e650,auteurMessage:_0x40b08d,nomAuteurMessage:_0x56c107,msgRepondu:_0x1bc008,auteurMsgRepondu:_0x17bba7}=_0x3b6fed;let _0x3c2c39=null,_0x3362e3=null;if(!_0x1bc008){_0x3c2c39=_0x40b08d,_0x3362e3=_0x56c107;try{ppUrl=await _0x451360[_0x343d6b(0xc5)+_0x343d6b(0xc8)](_0x3c2c39,_0x649aad[_0x343d6b(0xba)]);}catch{ppUrl=conf[_0x343d6b(0xb7)];};const _0x10e730=await _0x451360[_0x343d6b(0xbe)+'s'](_0x3c2c39);mess={'image':{'url':ppUrl},'caption':_0x649aad[_0x343d6b(0xce)](_0x649aad[_0x343d6b(0xce)](_0x649aad[_0x343d6b(0xcd)](_0x649aad[_0x343d6b(0xb1)],_0x3362e3),_0x649aad[_0x343d6b(0xbf)]),_0x10e730[_0x343d6b(0xd6)])};}else{_0x3c2c39=_0x17bba7,_0x3362e3=_0x649aad[_0x343d6b(0xce)]('@',_0x17bba7[_0x343d6b(0xcb)]('@')[0xdc6*0x2+0x3c1*0x6+-0x22*0x179]);try{ppUrl=await _0x451360[_0x343d6b(0xc5)+_0x343d6b(0xc8)](_0x3c2c39,_0x649aad[_0x343d6b(0xba)]);}catch{ppUrl=conf[_0x343d6b(0xb7)];};const _0x16e5d1=await _0x451360[_0x343d6b(0xbe)+'s'](_0x3c2c39);mess={'image':{'url':ppUrl},'caption':_0x649aad[_0x343d6b(0xce)](_0x649aad[_0x343d6b(0xbc)](_0x649aad[_0x343d6b(0xd5)](_0x649aad[_0x343d6b(0xcf)],_0x3362e3),_0x649aad[_0x343d6b(0xbf)]),_0x16e5d1[_0x343d6b(0xd6)]),'mentions':[_0x17bba7]};};_0x451360[_0x343d6b(0xb4)+'e'](_0x3593b0,mess,{'quoted':_0x1b8478});}); 5 | -------------------------------------------------------------------------------- /scs/2d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x5cc53a=_0x3af7;(function(_0x4dfa0a,_0x363b64){const _0x5bc69f=_0x3af7,_0x3dab9a=_0x4dfa0a();while(!![]){try{const _0x4d0564=-parseInt(_0x5bc69f(0x180))/(-0x257f+-0x163b+0x3bbb)+-parseInt(_0x5bc69f(0x1c3))/(-0x27*0x14+0x1f72+-0x2*0xe32)+parseInt(_0x5bc69f(0x19b))/(0x1c71+-0xf4*-0x1f+-0x52*0xb5)+-parseInt(_0x5bc69f(0x176))/(-0x212c+-0x14+0x2144)*(parseInt(_0x5bc69f(0x1cf))/(0x77f*0x1+-0x20da+0x1960))+parseInt(_0x5bc69f(0x186))/(-0x12af+0x1*0xdb2+0x503)*(-parseInt(_0x5bc69f(0x1ae))/(0x1*-0x1cc1+-0x2*0x111f+-0x1502*-0x3))+parseInt(_0x5bc69f(0x1ab))/(0x4*-0x2fe+0xc*-0xd4+0x15f0)*(parseInt(_0x5bc69f(0x1d2))/(-0x1*0x24bc+0x2039+0x6*0xc2))+parseInt(_0x5bc69f(0x18b))/(-0x1127+0xb36+-0x1*-0x5fb)*(parseInt(_0x5bc69f(0x1b0))/(-0x216*0x9+-0x1*0x2c2+0x1593));if(_0x4d0564===_0x363b64)break;else _0x3dab9a['push'](_0x3dab9a['shift']());}catch(_0x378970){_0x3dab9a['push'](_0x3dab9a['shift']());}}}(_0x4513,-0x10ce2c+-0x108169+0x2e0f94));function _0x3af7(_0x3aebec,_0x17175e){const _0x238aab=_0x4513();return _0x3af7=function(_0x5af614,_0xf5002){_0x5af614=_0x5af614-(0x1*0x521+-0x26df*-0x1+-0x2a9a);let _0x55e455=_0x238aab[_0x5af614];return _0x55e455;},_0x3af7(_0x3aebec,_0x17175e);}function _0x4513(){const _0x23bb44=['moment-tim','MODE','3876690ZPwGeN','/../config','eYeqi','2358glUQZI','push','end\x20A\x20long','ur\x20own\x20num','Tap\x20on\x20tha','sWIYs','\x20Open\x20link','mit\x0a\x203.\x20Sp','nd\x20send\x20it','ark-X-2025','code\x20eg\x20:\x20','025\x20will\x20s','KwDvt','uGYwT','O\x20GET\x20SESS','UInjJ','etime\x20then','ber,beginn','JevnY','sapp\x20at\x20yo','o\x20get\x20sess','yes','vizvo','r\x20country\x20','\x20session\x20t','\x20session\x20a','8uiPOzU','at\x20Spark-X','ad\x20for\x20som','k-x-sessio','park-X-202','\x20your\x20what','public','eployer.\x0a\x20','ms\x20Tech','jwmYB','681050LbOSXs','nt\x20Notific','sapp\x20numbe','254,255.\x20A','ox\x20on\x20what','LGLTt','3966HZFQnl','General','werCase','5\x0a\x206.\x20Copy','private','33425030HQZIUZ','ing\x20with\x20S','It\x20will\x20lo','ovlhp','r\x20with\x20you','at\x20code.\x20T','categorie','ion*\x0a\x20\x0a\x20ht','ezone','scan','hen\x20whatsa','\x0a\x20🕵\x20\x0a\x20\x0a>\x20M','🕵\x20\x0a','QKHGv','\x20you.\x0a\x205.\x20','ade\x20by\x20:\x20©','118131iRSzHq','\x20will\x20sent','enter\x20in\x20t','pp\x20will\x20se','fVwYq','\x20to\x20your\x20d','HhhzR','🥵🥵\x20Menu\x20er','ION*\x0a\x20\x0a\x201.','sendMessag','map','tps://spar','\x20that\x20long','o\x20your\x20inb','\x0a\x20*Tap\x20on\x20','nomCom','6320VkywUO','tion\x20then\x20','setDefault','4487XTIjDh','m//adams','11DEeVcK','duQuB','VVCtT','m/adams','eloper\x20ada','log','Je\x20suis\x20*a','-2025\x20sent','Ftpls','n-c.onrend','toLocaleLo','dams*,\x20dév','t\x20notifica','nd\x20tap\x20sub','he\x20code\x20th','er.com\x0a\x20\x0a\x20','\x0a\x202.\x20Enter','the\x20link\x20t','/../Ibrahi','195700EPtIbN','Etc/GMT','\x20Spark-X-2','\x0a\x20*STEPS\x20T','\x20you\x20a\x20cod','reur\x20','match','WEBkp','ation\x0a\x204.\x20','e.\x20Copy\x20th'];_0x4513=function(){return _0x23bb44;};return _0x4513();}const {adams}=require(__dirname+(_0x5cc53a(0x1c2)+_0x5cc53a(0x1b3))),moment=require(_0x5cc53a(0x1cd)+_0x5cc53a(0x193)),s=require(__dirname+_0x5cc53a(0x1d0));adams({'nomCom':_0x5cc53a(0x194),'categorie':_0x5cc53a(0x187)},async(_0x304d0c,_0x12661b,_0x1c0071)=>{const _0x1dd2c8=_0x5cc53a,_0x1bf27f={'vizvo':function(_0x1b0b8a,_0x32d019){return _0x1b0b8a(_0x32d019);},'jwmYB':function(_0x2b62d3,_0x1d1ebe){return _0x2b62d3+_0x1d1ebe;},'KwDvt':_0x1dd2c8(0x1c2)+_0x1dd2c8(0x1af),'QKHGv':_0x1dd2c8(0x17c),'VVCtT':function(_0x5df18c,_0x386f66){return _0x5df18c!=_0x386f66;},'uGYwT':_0x1dd2c8(0x171),'UInjJ':_0x1dd2c8(0x18a),'WEBkp':_0x1dd2c8(0x1c4),'ovlhp':function(_0x3a1e95){return _0x3a1e95();},'duQuB':_0x1dd2c8(0x1a9)+_0x1dd2c8(0x1c1)+_0x1dd2c8(0x170)+_0x1dd2c8(0x192)+_0x1dd2c8(0x1a6)+_0x1dd2c8(0x179)+_0x1dd2c8(0x1b9)+_0x1dd2c8(0x1bf)+_0x1dd2c8(0x1c6)+_0x1dd2c8(0x16a)+_0x1dd2c8(0x1a3)+_0x1dd2c8(0x1d8)+_0x1dd2c8(0x1c0)+_0x1dd2c8(0x17b)+_0x1dd2c8(0x182)+_0x1dd2c8(0x18f)+_0x1dd2c8(0x173)+_0x1dd2c8(0x166)+_0x1dd2c8(0x183)+_0x1dd2c8(0x1bd)+_0x1dd2c8(0x1d9)+_0x1dd2c8(0x1db)+_0x1dd2c8(0x19c)+_0x1dd2c8(0x1c7)+_0x1dd2c8(0x1cc)+_0x1dd2c8(0x190)+_0x1dd2c8(0x195)+_0x1dd2c8(0x19e)+_0x1dd2c8(0x181)+_0x1dd2c8(0x1cb)+_0x1dd2c8(0x1d6)+_0x1dd2c8(0x1bc)+_0x1dd2c8(0x1ac)+_0x1dd2c8(0x19d)+_0x1dd2c8(0x1be)+_0x1dd2c8(0x177)+_0x1dd2c8(0x1b7)+_0x1dd2c8(0x199)+_0x1dd2c8(0x18d)+_0x1dd2c8(0x178)+_0x1dd2c8(0x16c)+_0x1dd2c8(0x1c5)+_0x1dd2c8(0x167)+_0x1dd2c8(0x1d4)+_0x1dd2c8(0x174)+_0x1dd2c8(0x1a8)+_0x1dd2c8(0x184)+_0x1dd2c8(0x16f)+_0x1dd2c8(0x1d5)+_0x1dd2c8(0x16d)+_0x1dd2c8(0x18c)+_0x1dd2c8(0x17a)+_0x1dd2c8(0x189)+_0x1dd2c8(0x1a7)+_0x1dd2c8(0x175)+_0x1dd2c8(0x1da)+_0x1dd2c8(0x1a0)+_0x1dd2c8(0x17d)+_0x1dd2c8(0x196)+_0x1dd2c8(0x19a)+_0x1dd2c8(0x197),'JevnY':_0x1dd2c8(0x1b6)+_0x1dd2c8(0x1bb)+_0x1dd2c8(0x1b4)+_0x1dd2c8(0x17e),'Ftpls':function(_0x23e8e3,_0x387767){return _0x23e8e3+_0x387767;},'LGLTt':_0x1dd2c8(0x1a2)+_0x1dd2c8(0x1c8),'fVwYq':function(_0x16e51b,_0x319ea7){return _0x16e51b(_0x319ea7);},'HhhzR':function(_0x337b4e,_0x340944){return _0x337b4e(_0x340944);},'sWIYs':function(_0x7e9bf6,_0x4d7ff6){return _0x7e9bf6+_0x4d7ff6;},'eYeqi':function(_0x514aa6,_0x2bd9f6){return _0x514aa6(_0x2bd9f6);}};let {ms:_0x2cedb9,repondre:_0x2507ea,prefixe:_0x50bbd7,nomAuteurMessage:_0x5fe0df,mybotpic:_0x1e2b9b}=_0x1c0071,{cm:_0x1f1773}=_0x1bf27f[_0x1dd2c8(0x172)](require,_0x1bf27f[_0x1dd2c8(0x17f)](__dirname,_0x1bf27f[_0x1dd2c8(0x168)]));var _0x39835d={},_0x279b34=_0x1bf27f[_0x1dd2c8(0x198)];_0x1bf27f[_0x1dd2c8(0x1b2)](s[_0x1dd2c8(0x1ce)][_0x1dd2c8(0x1ba)+_0x1dd2c8(0x188)](),_0x1bf27f[_0x1dd2c8(0x169)])&&(_0x279b34=_0x1bf27f[_0x1dd2c8(0x16b)]);_0x1f1773[_0x1dd2c8(0x1a5)](async(_0x284a2d,_0x3d697c)=>{const _0x59ff1b=_0x1dd2c8;!_0x39835d[_0x284a2d[_0x59ff1b(0x191)]]&&(_0x39835d[_0x284a2d[_0x59ff1b(0x191)]]=[]),_0x39835d[_0x284a2d[_0x59ff1b(0x191)]][_0x59ff1b(0x1d3)](_0x284a2d[_0x59ff1b(0x1aa)]);}),moment['tz'][_0x1dd2c8(0x1ad)](_0x1bf27f[_0x1dd2c8(0x1ca)]);var _0x23e9b3=_0x1bf27f[_0x1dd2c8(0x18e)](_0x1e2b9b);if(_0x23e9b3[_0x1dd2c8(0x1c9)](/\.(mp4|gif)$/i))try{_0x12661b[_0x1dd2c8(0x1a4)+'e'](_0x304d0c,{'video':{'url':_0x23e9b3},'caption':_0x1bf27f[_0x1dd2c8(0x1b1)],'footer':_0x1bf27f[_0x1dd2c8(0x16e)],'gifPlayback':!![]},{'quoted':_0x2cedb9});}catch(_0x2bfe34){console[_0x1dd2c8(0x1b5)](_0x1bf27f[_0x1dd2c8(0x1b8)](_0x1bf27f[_0x1dd2c8(0x185)],_0x2bfe34)),_0x1bf27f[_0x1dd2c8(0x19f)](_0x2507ea,_0x1bf27f[_0x1dd2c8(0x1b8)](_0x1bf27f[_0x1dd2c8(0x185)],_0x2bfe34));}else{if(_0x23e9b3[_0x1dd2c8(0x1c9)](/\.(jpeg|png|jpg)$/i))try{_0x12661b[_0x1dd2c8(0x1a4)+'e'](_0x304d0c,{'image':{'url':_0x23e9b3},'caption':_0x1bf27f[_0x1dd2c8(0x1b1)],'footer':_0x1bf27f[_0x1dd2c8(0x16e)]},{'quoted':_0x2cedb9});}catch(_0x46e882){console[_0x1dd2c8(0x1b5)](_0x1bf27f[_0x1dd2c8(0x17f)](_0x1bf27f[_0x1dd2c8(0x185)],_0x46e882)),_0x1bf27f[_0x1dd2c8(0x1a1)](_0x2507ea,_0x1bf27f[_0x1dd2c8(0x1d7)](_0x1bf27f[_0x1dd2c8(0x185)],_0x46e882));}else _0x1bf27f[_0x1dd2c8(0x1d1)](_0x2507ea,_0x1bf27f[_0x1dd2c8(0x1b1)]);}}); 4 | -------------------------------------------------------------------------------- /scs/2e.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x234de9=_0x47c7;(function(_0x18b332,_0x38738f){const _0x1dfe33=_0x47c7,_0x1a3ff1=_0x18b332();while(!![]){try{const _0x585982=parseInt(_0x1dfe33(0xe6))/(0x41*-0x23+0x5b0+-0x1*-0x334)*(parseInt(_0x1dfe33(0xed))/(-0xdf*0x4+0x164*0x16+0x1b1a*-0x1))+-parseInt(_0x1dfe33(0xde))/(0x1c*0x7+0x2218+0xb*-0x32b)+parseInt(_0x1dfe33(0xe7))/(-0x18be+-0x114*-0x5+-0x135e*-0x1)+-parseInt(_0x1dfe33(0xec))/(-0x1e2f+-0x9d*0x1f+0x3137)+-parseInt(_0x1dfe33(0xeb))/(0xaf*-0x2b+0x19*0xfd+0x4b6)+-parseInt(_0x1dfe33(0xf9))/(-0x24cb*-0x1+0x25a1+-0x4a65)*(-parseInt(_0x1dfe33(0xf2))/(0x3ce+-0x749+0x383))+parseInt(_0x1dfe33(0xdc))/(-0x1fc3+-0x42f*-0x3+0x133f)*(parseInt(_0x1dfe33(0xe9))/(-0x3*0x7f3+0x18e4+-0x101));if(_0x585982===_0x38738f)break;else _0x1a3ff1['push'](_0x1a3ff1['shift']());}catch(_0xe67ad5){_0x1a3ff1['push'](_0x1a3ff1['shift']());}}}(_0x2e88,-0xb6c8d*0x2+-0x495fa+0x65*0x63a6));function _0x47c7(_0x1f1994,_0x5097bd){const _0xda6899=_0x2e88();return _0x47c7=function(_0x332166,_0x119a6e){_0x332166=_0x332166-(-0xdcf+0x14*-0x25+0x1*0x118d);let _0x17ac12=_0xda6899[_0x332166];return _0x17ac12;},_0x47c7(_0x1f1994,_0x5097bd);}const JavaScriptObfuscator=require(_0x234de9(0xe5)+_0x234de9(0xfe)+'r'),{adams}=require(_0x234de9(0xfb)+_0x234de9(0xf7));function _0x2e88(){const _0x1423fc=['/adams','Something\x20','6419AdfagF','alid\x20JavaS','../Ibrahim','CCrNL','mLEBV','-obfuscato','Zspqc','getObfusca','4136868wApIMx','obfuscate','1976643jazOIX','cript\x20code','tedCode','is\x20wrong,\x20','\x20for\x20encry','check\x20if\x20y','and\x20has\x20th','javascript','8rCuZGU','4080020metGoP','e\x20correct\x20','10HzHtMv','General','7210068wBlmMY','3298925UXNJjQ','321628uBNnxu','join','After\x20the\x20','s\x20logical\x20','rovide\x20a\x20v','4648OZgRDe','ption','syntax','command,\x20p','our\x20code\x20i'];_0x2e88=function(){return _0x1423fc;};return _0x2e88();}adams({'nomCom':_0x234de9(0xdd),'categorie':_0x234de9(0xea)},async(_0x2df691,_0x58263f,_0x4d3b5b)=>{const _0x21675a=_0x234de9,_0x1b9ff1={'Zspqc':function(_0x427b7a,_0x170a1f){return _0x427b7a(_0x170a1f);},'CCrNL':_0x21675a(0xef)+_0x21675a(0xf5)+_0x21675a(0xf1)+_0x21675a(0xfa)+_0x21675a(0xdf)+_0x21675a(0xe2)+_0x21675a(0xf3),'mLEBV':_0x21675a(0xf8)+_0x21675a(0xe1)+_0x21675a(0xe3)+_0x21675a(0xf6)+_0x21675a(0xf0)+_0x21675a(0xe4)+_0x21675a(0xe8)+_0x21675a(0xf4)},{ms:_0x5cab97,arg:_0x26727f,repondre:_0x50fd26,auteurMessage:_0xe81fa1,nomAuteurMessage:_0xdb7ee9,msgRepondu:_0x1b46d7,auteurMsgRepondu:_0x5ad4bb}=_0x4d3b5b;try{let _0x87245a=_0x26727f[_0x21675a(0xee)]('\x20');if(!_0x26727f[0xd32+0x2b*-0xe5+0x1*0x1945]){_0x1b9ff1[_0x21675a(0xda)](_0x50fd26,_0x1b9ff1[_0x21675a(0xfc)]);return;};const _0x46f2f9=JavaScriptObfuscator[_0x21675a(0xdd)](_0x87245a,{'compact':!![],'controlFlowFlattening':!![],'controlFlowFlatteningThreshold':0x1,'numbersToExpressions':!![],'simplify':!![],'stringArrayShuffle':!![],'splitStrings':!![],'stringArrayThreshold':0x1});await _0x1b9ff1[_0x21675a(0xda)](_0x50fd26,_0x46f2f9[_0x21675a(0xdb)+_0x21675a(0xe0)]());}catch{_0x1b9ff1[_0x21675a(0xda)](_0x50fd26,_0x1b9ff1[_0x21675a(0xfd)]);}}); 5 | -------------------------------------------------------------------------------- /scs/3.js: -------------------------------------------------------------------------------- 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 | const _0x3ff459=_0x244e;(function(_0x1a83f1,_0x272900){const _0x3af6b9=_0x244e,_0x2ba04c=_0x1a83f1();while(!![]){try{const _0xe30280=-parseInt(_0x3af6b9(0x1a9))/(-0xe*-0x17b+-0x239*-0xc+0x2f65*-0x1)+-parseInt(_0x3af6b9(0x199))/(-0x5*-0x1ae+0x5b*-0x6+-0x642)*(-parseInt(_0x3af6b9(0x1ba))/(-0x1ef9+-0x1*-0x12fd+0xbff))+-parseInt(_0x3af6b9(0x193))/(-0x1b31*-0x1+-0x2*-0xa6+-0x1c79)+parseInt(_0x3af6b9(0x196))/(-0x30*0x2b+0x1*-0x635+0xe4a)*(parseInt(_0x3af6b9(0x1c1))/(0xcd+0x19*-0x1+0x3a*-0x3))+parseInt(_0x3af6b9(0x1b2))/(0x2*-0xdb2+0x2323+-0x7b8)+parseInt(_0x3af6b9(0x1ad))/(-0x77f*-0x5+-0x128d+-0x12e6)+-parseInt(_0x3af6b9(0x191))/(-0x2141*-0x1+0x1*0x1145+0x37*-0xeb);if(_0xe30280===_0x272900)break;else _0x2ba04c['push'](_0x2ba04c['shift']());}catch(_0x193581){_0x2ba04c['push'](_0x2ba04c['shift']());}}}(_0x87ef,0x9*-0xd3eb+-0x5*-0x335c3+-0x691d1*-0x1));function _0x244e(_0x56b569,_0x126c69){const _0x1e9792=_0x87ef();return _0x244e=function(_0x57c9de,_0x3cf378){_0x57c9de=_0x57c9de-(0x17c6+0x1774+-0x2dad);let _0x5d951a=_0x1e9792[_0x57c9de];return _0x5d951a;},_0x244e(_0x56b569,_0x126c69);}const {adams}=require(_0x3ff459(0x1be)+_0x3ff459(0x1c9)),canvacord=require(_0x3ff459(0x1c4)),{uploadImageToImgur}=require(_0x3ff459(0x1be)+_0x3ff459(0x1a6));function createCanvacordCommand(_0xf1b29,_0x8effab){const _0x56ce67=_0x3ff459,_0x24e004={'gfBve':_0x56ce67(0x19f)+_0x56ce67(0x1bc),'bwJpa':function(_0x1a7301,_0x55464b,_0x575f6c){return _0x1a7301(_0x55464b,_0x575f6c);},'EbCsy':_0x56ce67(0x195),'fMQvV':_0x56ce67(0x18f)+_0x56ce67(0x1b1)+_0x56ce67(0x194)+_0x56ce67(0x19a)+_0x56ce67(0x1a0)+_0x56ce67(0x1aa)+_0x56ce67(0x192)+'g','gHRUw':function(_0x29c405,_0x4ff9eb){return _0x29c405(_0x4ff9eb);},'QzVsZ':function(_0x6ea614,_0x124b5f,_0x8f23ad){return _0x6ea614(_0x124b5f,_0x8f23ad);},'chyCe':_0x56ce67(0x1af)};_0x24e004[_0x56ce67(0x1b4)](adams,{'nomCom':_0xf1b29,'categorie':_0x24e004[_0x56ce67(0x1ab)],'reaction':'🎉'},async(_0x5ad9ab,_0x2d1484,_0x27e0f9)=>{const _0xc0f547=_0x56ce67,{ms:_0x18e98d,msgRepondu:_0x4553dd,auteurMsgRepondu:_0x5c5dd0}=_0x27e0f9,_0x5f3110=_0x24e004[_0xc0f547(0x19b)];try{let _0x5ea40c;if(_0x4553dd){if(_0x4553dd[_0xc0f547(0x1a8)+'ge']){const _0x577caf=await _0x2d1484[_0xc0f547(0x1b3)+_0xc0f547(0x19e)+_0xc0f547(0x198)](_0x4553dd[_0xc0f547(0x1a8)+'ge']);_0x5ea40c=await _0x24e004[_0xc0f547(0x1c3)](uploadImageToImgur,_0x577caf,_0x5f3110);}else _0x5ea40c=await _0x2d1484[_0xc0f547(0x1c6)+_0xc0f547(0x1bb)](_0x5c5dd0,_0x24e004[_0xc0f547(0x190)]);}else _0x5ea40c=_0x24e004[_0xc0f547(0x1ae)];const _0x585f03=await _0x24e004[_0xc0f547(0x1b7)](_0x8effab,_0x5ea40c);await _0x2d1484[_0xc0f547(0x1c5)+'e'](_0x5ad9ab,{'image':_0x585f03},{'quoted':_0x18e98d});}catch(_0x2785c2){console[_0xc0f547(0x1c0)](_0xc0f547(0x1a5)+_0xc0f547(0x1a3)+'\x22'+_0xf1b29+'\x22:',_0x2785c2);}});}createCanvacordCommand(_0x3ff459(0x18d),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x18d)]),createCanvacordCommand(_0x3ff459(0x1a2),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1a2)]),createCanvacordCommand(_0x3ff459(0x1c2),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1c2)]),createCanvacordCommand(_0x3ff459(0x1a4),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1a4)]),createCanvacordCommand(_0x3ff459(0x197),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x197)]),createCanvacordCommand(_0x3ff459(0x1c7),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1c7)]),createCanvacordCommand(_0x3ff459(0x1b6),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1b6)]),createCanvacordCommand(_0x3ff459(0x1bf),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1bf)]),createCanvacordCommand(_0x3ff459(0x1a7),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1a7)]),createCanvacordCommand(_0x3ff459(0x19d),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x19d)]),createCanvacordCommand(_0x3ff459(0x1bd),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1bd)]),createCanvacordCommand(_0x3ff459(0x1b9),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1b9)]),createCanvacordCommand(_0x3ff459(0x1b8),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1b8)]),createCanvacordCommand(_0x3ff459(0x1ac),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1ac)]),createCanvacordCommand(_0x3ff459(0x18e),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x18e)]),createCanvacordCommand(_0x3ff459(0x1b5),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1b5)]),createCanvacordCommand(_0x3ff459(0x1b0),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x1b0)]),createCanvacordCommand(_0x3ff459(0x1a1),canvacord[_0x3ff459(0x1c8)][_0x3ff459(0x19c)+'ad']);function _0x87ef(){const _0x54a377=['Image-Edit','greyscale','pinimg.com','3957296wJxqdP','downloadAn','QzVsZ','facepalm','sepia','gHRUw','beautiful','affect','1830642jEyOvn','tureUrl','3cd4e','jail','../Ibrahim','rainbow','error','6pGIBdY','wanted','bwJpa','canvacord','sendMessag','profilePic','rip','Canvacord','/adams','shit','circle','https://i.','EbCsy','8622855hQScWH','0b5d84c.jp','5080900zlKfDA','/564x/84/0','image','5202550yODbFH','trash','Message','4uemgGf','9/12/84091','gfBve','jokeOverHe','invert','dSaveMedia','b40a1820d6','2dd744e666','joke','wasted','\x20ordering\x20','trigger','Error\x20when','/imgur','hitler','imageMessa','1342623WgWhSa','2ab211b807','chyCe','blur','13910544xjgnZJ','fMQvV'];_0x87ef=function(){return _0x54a377;};return _0x87ef();} 35 | -------------------------------------------------------------------------------- /scs/3a.js: -------------------------------------------------------------------------------- 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 | const _0x53a46f=_0x3659;function _0x3659(_0x306a2a,_0x4b9831){const _0x267d4b=_0x5b26();return _0x3659=function(_0x389519,_0x167742){_0x389519=_0x389519-(-0x591*0x3+0x6d*0x4a+0x2*-0x6b7);let _0x4f63f1=_0x267d4b[_0x389519];return _0x4f63f1;},_0x3659(_0x306a2a,_0x4b9831);}(function(_0x4643f4,_0x326122){const _0x578181=_0x3659,_0x4fcea0=_0x4643f4();while(!![]){try{const _0x1e77aa=-parseInt(_0x578181(0x1bf))/(-0x4e4*-0x7+0x5a9+-0x27e4)*(-parseInt(_0x578181(0x161))/(0x1d1a*-0x1+-0x1*0xb7f+0x289b))+parseInt(_0x578181(0x198))/(0x883*-0x1+0x1*-0x1f23+0xb*0x39b)*(parseInt(_0x578181(0x1c5))/(-0x80c+-0x71a+-0x50e*-0x3))+parseInt(_0x578181(0x192))/(-0x3*-0x1d7+0xa2f*0x1+0xb*-0x16d)+-parseInt(_0x578181(0x19f))/(0x2435+0xe00+-0x322f)+parseInt(_0x578181(0x190))/(0x1f4*0x3+0x7*-0x24b+-0x1b4*-0x6)+parseInt(_0x578181(0x191))/(-0x17*-0x53+0x1c5+-0x932)+-parseInt(_0x578181(0x1b6))/(-0x7c8+-0x20*-0xd0+-0x31*0x5f);if(_0x1e77aa===_0x326122)break;else _0x4fcea0['push'](_0x4fcea0['shift']());}catch(_0x9413c3){_0x4fcea0['push'](_0x4fcea0['shift']());}}}(_0x5b26,-0x1d*-0x7541+0x1264a2+0x456ca*-0x4));const {adams}=require(_0x53a46f(0x194)+_0x53a46f(0x1df)),{getAllSudoNumbers,isSudoTableNotEmpty}=require(_0x53a46f(0x163)+'o'),conf=require(_0x53a46f(0x1b4));function _0x5b26(){const _0x3bc335=['\x20:\x20https:/','owner','9Vak0genJ9','END:VCARD','h]\x20\x0a\x0a\x0acarl','Carl','YOU\x20FOLLOW','XimTD','gBlhg','OWNER_NAME','☉\x0a\x0a❒⁠⁠⁠⁠[h','match','EMED\x20USER,','cDHFZ','csrKd','TEL;type=C','hannel/002','zdsLI','TlwVW','/adams','70vLniyh','ai]\x20\x0a\x0a\x20☉TG','../lib/sud','dwCvx','r*\x0a\x20:\x0a-\x20🌟\x20','all','crLdH','LEGRAM\x20LIN','sendMessag','vmbJP','mHpTR','fgihK','ORG:undefi','sgPOe','WELCOME\x20TO','\x20IS\x20HERE\x20☉','HELLO\x20ESTE','link\x20error','PaiqK','sapp.com/c','tech','EL\x20LINK\x20☉\x20','vqkmQ','2547709549','ttps://t.m','dev','᚛CARLTECH᚜','ELL;type=V','----------','OICE;waid=','-\x20💼\x20@','fawWh','ELOPERS\x20BE','*My\x20Super-','OUR\x20SUPPOR','eJTkY','numero','FN:','KS\x20IF\x20YOU\x20','/wa.me/','e/carltech','General','other\x20sudo','tps://what','log','\x20HERE\x20ARE\x20','CENTER!\x20AS','12960325IzHhOh','13428584oeTibT','1519230bgAzcH','LzpCI','../Ibrahim','@s.whatsap','\x0a\x0a❒⁠⁠⁠⁠[ht','BEGIN:VCAR','3978fRRfYO','ned;\x0a','tps://t.me','h]\x20\x0a\x0a\x20☉\x20TE','\x0a\x0a\x20☉\x20CHANN','ntCon','\x20OUR\x20HELP\x20','3620562GGVDNl','nom','User*\x0a\x0a\x20*O','YcpfB','\x20THESE\x20LIN','/carlltecc','3wQXq3q6X3','KcOhc','acxDB','K\x20IS\x20HERE\x20','concat','MAKE\x20SURE\x20','\x20FROM\x20ANY\x20','OF\x20THE\x20DEV','cGNjN','replace','p.net','s*\x20-----\x0a','------\x0a•\x20','\x0a\x0a------\x20*','csVcY','../config','BWKyK','37753479daEzkp','LOW:\x0a\x0a','OYKWP','K\x20FOR\x20HELP','UQywO','TIVE\x20LINKS','DON\x27T\x20MIND','ZFRwG','ElaRj','25611llkBii','lKAkG','reur\x20','NUMERO_OWN','🥵🥵\x20Menu\x20er','GRecw','3036RgUbzo','support','VERSION:3.','kxuQP','vLYNz','wner\x20Numbe','zeLbG'];_0x5b26=function(){return _0x3bc335;};return _0x5b26();}adams({'nomCom':_0x53a46f(0x1cd),'categorie':_0x53a46f(0x18a),'reaction':'🪀'},async(_0x4a031d,_0x332998,_0x473d87)=>{const _0x2b4df0=_0x53a46f,_0x28a872={'LzpCI':function(_0x7274cd){return _0x7274cd();},'YcpfB':function(_0x144594){return _0x144594();},'crLdH':function(_0x306f6f,_0x4dc70d){return _0x306f6f+_0x4dc70d;},'csrKd':_0x2b4df0(0x195)+_0x2b4df0(0x1af),'dwCvx':function(_0x54f09f){return _0x54f09f();},'kxuQP':function(_0x58c386,_0x82f71a){return _0x58c386+_0x82f71a;},'eJTkY':function(_0x5b41a4,_0x2de9c9){return _0x5b41a4+_0x2de9c9;},'mHpTR':function(_0x61dcf5,_0x44f58d){return _0x61dcf5+_0x44f58d;},'KcOhc':function(_0x119d91,_0x475d2b){return _0x119d91+_0x475d2b;},'TlwVW':function(_0x975bbf,_0x23fb3c){return _0x975bbf+_0x23fb3c;},'zdsLI':function(_0x28f28d,_0x46e17c){return _0x28f28d+_0x46e17c;},'sgPOe':function(_0x2c4787,_0x3d207b){return _0x2c4787+_0x3d207b;},'csVcY':_0x2b4df0(0x197)+'D\x0a','ElaRj':_0x2b4df0(0x1c7)+'0\x0a','PaiqK':_0x2b4df0(0x186),'cDHFZ':_0x2b4df0(0x16d)+_0x2b4df0(0x199),'vLYNz':_0x2b4df0(0x1db)+_0x2b4df0(0x17c)+_0x2b4df0(0x17e),'BWKyK':_0x2b4df0(0x1cf)},{ms:_0x3e37b1,mybotpic:_0x4746de}=_0x473d87,_0x22c42f=await _0x28a872[_0x2b4df0(0x193)](isSudoTableNotEmpty);if(_0x22c42f){let _0x1aac78=_0x2b4df0(0x182)+_0x2b4df0(0x1a1)+_0x2b4df0(0x1ca)+_0x2b4df0(0x165)+'@'+conf[_0x2b4df0(0x1c2)+'ER']+(_0x2b4df0(0x1b2)+_0x2b4df0(0x18b)+_0x2b4df0(0x1b0)),_0x2214b7=await _0x28a872[_0x2b4df0(0x1a2)](getAllSudoNumbers);for(const _0x2f8315 of _0x2214b7){if(_0x2f8315)sudonumero=_0x2f8315[_0x2b4df0(0x1ae)](/[^0-9]/g,''),_0x1aac78+=_0x2b4df0(0x17f)+sudonumero+'\x0a';else return;}const _0x2f489e=_0x28a872[_0x2b4df0(0x167)](conf[_0x2b4df0(0x1c2)+'ER'][_0x2b4df0(0x1ae)](/[^0-9]/g),_0x28a872[_0x2b4df0(0x1da)]),_0x292e2c=_0x2214b7[_0x2b4df0(0x1a9)]([_0x2f489e]);console[_0x2b4df0(0x18d)](_0x2214b7),console[_0x2b4df0(0x18d)](_0x292e2c),_0x332998[_0x2b4df0(0x169)+'e'](_0x4a031d,{'image':{'url':_0x28a872[_0x2b4df0(0x164)](_0x4746de)},'caption':_0x1aac78,'mentions':_0x292e2c});}else{const _0x41dbde=_0x28a872[_0x2b4df0(0x1c8)](_0x28a872[_0x2b4df0(0x184)](_0x28a872[_0x2b4df0(0x1c8)](_0x28a872[_0x2b4df0(0x16b)](_0x28a872[_0x2b4df0(0x184)](_0x28a872[_0x2b4df0(0x1a6)](_0x28a872[_0x2b4df0(0x1de)](_0x28a872[_0x2b4df0(0x1a6)](_0x28a872[_0x2b4df0(0x184)](_0x28a872[_0x2b4df0(0x1dd)](_0x28a872[_0x2b4df0(0x16e)](_0x28a872[_0x2b4df0(0x1b3)],_0x28a872[_0x2b4df0(0x1be)]),_0x28a872[_0x2b4df0(0x173)]),conf[_0x2b4df0(0x1d5)]),'\x0a'),_0x28a872[_0x2b4df0(0x1d9)]),_0x28a872[_0x2b4df0(0x1c9)]),conf[_0x2b4df0(0x1c2)+'ER']),':+'),conf[_0x2b4df0(0x1c2)+'ER']),'\x0a'),_0x28a872[_0x2b4df0(0x1b5)]);_0x332998[_0x2b4df0(0x169)+'e'](_0x4a031d,{'contacts':{'displayName':conf[_0x2b4df0(0x1d5)],'contacts':[{'vcard':_0x41dbde}]}},{'quoted':_0x3e37b1});}}),adams({'nomCom':_0x53a46f(0x17a),'categorie':_0x53a46f(0x18a),'reaction':'🪀'},async(_0x106c56,_0x5886ea,_0x50d48f)=>{const _0x4cc134=_0x53a46f,_0x3569b0={'fawWh':_0x4cc134(0x1d1),'lKAkG':_0x4cc134(0x178)+'48','UQywO':_0x4cc134(0x17b),'XimTD':_0x4cc134(0x166),'gBlhg':_0x4cc134(0x16f)+_0x4cc134(0x19e)+_0x4cc134(0x18f)+_0x4cc134(0x1b9)+_0x4cc134(0x1ab)+_0x4cc134(0x1ac)+_0x4cc134(0x181)+_0x4cc134(0x1b7),'zeLbG':function(_0xc110d7){return _0xc110d7();},'vmbJP':function(_0x2ef9a0,_0x551f84){return _0x2ef9a0+_0x551f84;},'ZFRwG':_0x4cc134(0x1c3)+_0x4cc134(0x1c1),'cGNjN':function(_0x420352,_0x171013){return _0x420352(_0x171013);},'fgihK':function(_0x182989,_0x3c1b93){return _0x182989+_0x3c1b93;},'OYKWP':function(_0x391a84,_0x77d133){return _0x391a84(_0x77d133);},'GRecw':function(_0x4aebea,_0x1b709e){return _0x4aebea(_0x1b709e);},'acxDB':_0x4cc134(0x172)},{ms:_0x47a411,mybotpic:_0x339a5e}=_0x50d48f,_0xbcc084=[{'nom':_0x3569b0[_0x4cc134(0x180)],'numero':_0x3569b0[_0x4cc134(0x1c0)]},{'nom':_0x3569b0[_0x4cc134(0x1ba)],'numero':_0x3569b0[_0x4cc134(0x1c0)]},{'nom':_0x3569b0[_0x4cc134(0x1d3)],'numero':_0x3569b0[_0x4cc134(0x1c0)]}];let _0x1fd76c=_0x3569b0[_0x4cc134(0x1d4)];for(const _0x4c3dd1 of _0xbcc084){_0x1fd76c+=_0x4cc134(0x17d)+_0x4cc134(0x1b1)+_0x4c3dd1[_0x4cc134(0x1a0)]+(_0x4cc134(0x1cc)+_0x4cc134(0x188))+_0x4c3dd1[_0x4cc134(0x185)]+'\x0a';}var _0x103ca4=_0x3569b0[_0x4cc134(0x1cb)](_0x339a5e);if(_0x103ca4[_0x4cc134(0x1d7)](/\.(mp4|gif)$/i))try{_0x5886ea[_0x4cc134(0x169)+'e'](_0x106c56,{'video':{'url':_0x103ca4},'caption':_0x1fd76c},{'quoted':_0x47a411});}catch(_0x3cde50){console[_0x4cc134(0x18d)](_0x3569b0[_0x4cc134(0x16a)](_0x3569b0[_0x4cc134(0x1bd)],_0x3cde50)),_0x3569b0[_0x4cc134(0x1ad)](repondre,_0x3569b0[_0x4cc134(0x16a)](_0x3569b0[_0x4cc134(0x1bd)],_0x3cde50));}else{if(_0x103ca4[_0x4cc134(0x1d7)](/\.(jpeg|png|jpg)$/i))try{_0x5886ea[_0x4cc134(0x169)+'e'](_0x106c56,{'image':{'url':_0x103ca4},'caption':_0x1fd76c},{'quoted':_0x47a411});}catch(_0xc7f66f){console[_0x4cc134(0x18d)](_0x3569b0[_0x4cc134(0x16c)](_0x3569b0[_0x4cc134(0x1bd)],_0xc7f66f)),_0x3569b0[_0x4cc134(0x1ad)](repondre,_0x3569b0[_0x4cc134(0x16c)](_0x3569b0[_0x4cc134(0x1bd)],_0xc7f66f));}else _0x3569b0[_0x4cc134(0x1b8)](repondre,_0x103ca4),_0x3569b0[_0x4cc134(0x1c4)](repondre,_0x3569b0[_0x4cc134(0x1a7)]);}}),adams({'nomCom':_0x53a46f(0x1c6),'categorie':_0x53a46f(0x18a)},async(_0x3f96df,_0x47a4c8,_0x5871d1)=>{const _0x17cdd1=_0x53a46f,_0x65a1b4={'vqkmQ':function(_0x1cf37b,_0xf60974){return _0x1cf37b(_0xf60974);},'ntCon':_0x17cdd1(0x171)+_0x17cdd1(0x1d8)+_0x17cdd1(0x18e)+_0x17cdd1(0x183)+_0x17cdd1(0x1bb)+_0x17cdd1(0x19c)+_0x17cdd1(0x176)+_0x17cdd1(0x196)+_0x17cdd1(0x18c)+_0x17cdd1(0x174)+_0x17cdd1(0x1dc)+_0x17cdd1(0x1ce)+_0x17cdd1(0x1a5)+_0x17cdd1(0x19b)+_0x17cdd1(0x168)+_0x17cdd1(0x1a8)+_0x17cdd1(0x1d6)+_0x17cdd1(0x179)+_0x17cdd1(0x189)+_0x17cdd1(0x162)+_0x17cdd1(0x170)+_0x17cdd1(0x196)+_0x17cdd1(0x19a)+_0x17cdd1(0x1a4)+_0x17cdd1(0x1d0)+_0x17cdd1(0x175)},{ms:_0x3ab11a,repondre:_0x1b1a8d,auteurMessage:_0xe3269}=_0x5871d1;_0x65a1b4[_0x17cdd1(0x177)](_0x1b1a8d,_0x65a1b4[_0x17cdd1(0x19d)]),await _0x47a4c8[_0x17cdd1(0x169)+'e'](_0xe3269,{'text':_0x17cdd1(0x1aa)+_0x17cdd1(0x1d2)+_0x17cdd1(0x1a3)+_0x17cdd1(0x187)+_0x17cdd1(0x1bc)+'.\x20'},{'quoted':_0x3ab11a});}); 28 | -------------------------------------------------------------------------------- /scs/3c.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | const _0x172654=_0x127f;(function(_0x456883,_0x14b3f7){const _0x1cb8c3=_0x127f,_0x5af2b5=_0x456883();while(!![]){try{const _0x1857d8=parseInt(_0x1cb8c3(0x12c))/(0x68+-0x14dd+0x1476)*(-parseInt(_0x1cb8c3(0xfc))/(0x1f3*-0x4+-0x9cf+0x119d))+parseInt(_0x1cb8c3(0x115))/(-0x1*-0x2027+-0x89*0x15+-0x14e7*0x1)*(parseInt(_0x1cb8c3(0x125))/(0xa*-0xa9+0x1c8+-0x4d6*-0x1))+parseInt(_0x1cb8c3(0x133))/(0xa5*0x8+0xb*0x16f+-0x3*0x6f8)*(parseInt(_0x1cb8c3(0x124))/(0xa8+-0xc07*0x1+0xb65))+parseInt(_0x1cb8c3(0x10d))/(-0x521+0xb*-0x343+0x5*0x835)*(-parseInt(_0x1cb8c3(0x12b))/(-0xc2f*0x1+-0x1f*-0x74+-0x1d5))+parseInt(_0x1cb8c3(0x112))/(0xd2*0x1+0x1*-0x1c3d+-0x1b74*-0x1)*(-parseInt(_0x1cb8c3(0x117))/(-0x62d+-0x1*-0x26ba+-0x2083))+parseInt(_0x1cb8c3(0x101))/(-0x6f0*-0x5+0x1e8c+0x3*-0x15bb)*(parseInt(_0x1cb8c3(0x12e))/(-0x2ee+0x1d1c+-0x6*0x45b))+parseInt(_0x1cb8c3(0x108))/(-0x99*0x35+-0x58*-0x3d+0x396*0x3);if(_0x1857d8===_0x14b3f7)break;else _0x5af2b5['push'](_0x5af2b5['shift']());}catch(_0x51e234){_0x5af2b5['push'](_0x5af2b5['shift']());}}}(_0x2d7a,0x10d*-0xf71+0x8bc65+0x2fb6*0x6a));function _0x2d7a(){const _0x4273c3=['204tBqdBt','4aqpMsZ','xyksr','iquement','nyPdt','\x0a\x0a🎬\x20Anime:','ZyPsg','8TVecup','3567PMPpqT','nération\x20d','2832QbinSM','ion\x20:\x20','══════════','https://an','quote','55615bKQzbv','\x20groupe\x20un','╔═════════','z/api/rand','624dZOjcI','anime','hrLOg','QLTCE','║\x0a╚═══════','2376lOgvxy','json','\x0a\x0aPowered\x20','e\x20la\x20citat','═══════╗\x0a║','then','Xbagb','37320062tNCHkk','WGQef','s\x20de\x20la\x20gé','join','Fun','6535921CwbvVN','éservée\x20au','Commande\x20r','\x0a👤\x20Charact','Erreur\x20lor','9lLnKAX','bBAXF','imechan.xy','776598NnCNEG','\x20CYBERION\x20','7083470ojFNpd','../Ibrahim','═════════╝','er:\x20','\x0a💬\x20Quote:\x20','YYiaB','by\x20CARLTEC','om/charact','message','character','/adams','er?name=','DFpLh'];_0x2d7a=function(){return _0x4273c3;};return _0x2d7a();}function _0x127f(_0x1fce07,_0x2081ba){const _0x5ce5f8=_0x2d7a();return _0x127f=function(_0x510387,_0x50e485){_0x510387=_0x510387-(0xe2+0x1c03+-0x1be9);let _0x30e75b=_0x5ce5f8[_0x510387];return _0x30e75b;},_0x127f(_0x1fce07,_0x2081ba);}const {adams}=require(_0x172654(0x118)+_0x172654(0x121));adams({'nomCom':_0x172654(0x132),'categorie':_0x172654(0x10c)},async(_0x2d8837,_0x28a678,_0x47f853)=>{const _0x233ee2=_0x172654,_0x57b871={'Xbagb':function(_0x19b48a,_0xf40f95){return _0x19b48a(_0xf40f95);},'hrLOg':function(_0x27790f,_0x59bfdb){return _0x27790f(_0x59bfdb);},'WGQef':_0x233ee2(0x10f)+_0x233ee2(0x10e)+_0x233ee2(0x134)+_0x233ee2(0x127),'nyPdt':function(_0x450401,_0x351779){return _0x450401(_0x351779);},'ZyPsg':_0x233ee2(0x131)+_0x233ee2(0x114)+_0x233ee2(0x136)+'om','xyksr':function(_0x420f9f,_0x3d7436){return _0x420f9f+_0x3d7436;},'DFpLh':_0x233ee2(0x111)+_0x233ee2(0x10a)+_0x233ee2(0x12d)+_0x233ee2(0x104)+_0x233ee2(0x12f),'QLTCE':_0x233ee2(0x131)+_0x233ee2(0x114)+_0x233ee2(0x136)+_0x233ee2(0x11e)+_0x233ee2(0x122),'YYiaB':function(_0x503cc7,_0x184fb4){return _0x503cc7(_0x184fb4);},'bBAXF':function(_0xaa16d5,_0x3aed24){return _0xaa16d5+_0x3aed24;}},{ms:_0x1d18bb,repondre:_0x281034,verifGroupe:_0x2dbced,arg:_0x2f950b}=_0x47f853;if(!_0x2dbced){_0x57b871[_0x233ee2(0xfe)](_0x281034,_0x57b871[_0x233ee2(0x109)]);return;}if(!_0x2f950b[-0xfd8+0x2275+-0x5*0x3b9])try{_0x57b871[_0x233ee2(0x128)](fetch,_0x57b871[_0x233ee2(0x12a)])[_0x233ee2(0x106)](_0x9a29b=>_0x9a29b[_0x233ee2(0x102)]())[_0x233ee2(0x106)](async _0x2d6bd1=>{const _0x26917e=_0x233ee2;_0x57b871[_0x26917e(0x107)](_0x281034,_0x26917e(0x135)+_0x26917e(0x130)+_0x26917e(0x105)+_0x26917e(0x116)+_0x26917e(0x100)+_0x26917e(0x130)+_0x26917e(0x119)+_0x26917e(0x129)+'\x20'+_0x2d6bd1[_0x26917e(0xfd)]+(_0x26917e(0x110)+_0x26917e(0x11a))+_0x2d6bd1[_0x26917e(0x120)]+_0x26917e(0x11b)+_0x2d6bd1[_0x26917e(0x132)]+(_0x26917e(0x103)+_0x26917e(0x11d)+'H'));});}catch(_0x3fb13f){_0x57b871[_0x233ee2(0x107)](_0x281034,_0x57b871[_0x233ee2(0x126)](_0x57b871[_0x233ee2(0x123)],_0x3fb13f[_0x233ee2(0x11f)]));}else{const _0x347570=_0x2f950b[_0x233ee2(0x10b)]('\x20');try{_0x57b871[_0x233ee2(0x128)](fetch,_0x57b871[_0x233ee2(0x126)](_0x57b871[_0x233ee2(0xff)],_0x347570))[_0x233ee2(0x106)](_0x4ce00f=>_0x4ce00f[_0x233ee2(0x102)]())[_0x233ee2(0x106)](async _0x29737e=>{const _0x3edbb8=_0x233ee2;_0x57b871[_0x3edbb8(0x107)](_0x281034,_0x3edbb8(0x135)+_0x3edbb8(0x130)+_0x3edbb8(0x105)+_0x3edbb8(0x116)+_0x3edbb8(0x100)+_0x3edbb8(0x130)+_0x3edbb8(0x119)+_0x3edbb8(0x129)+'\x20'+_0x29737e[_0x3edbb8(0xfd)]+(_0x3edbb8(0x110)+_0x3edbb8(0x11a))+_0x29737e[_0x3edbb8(0x120)]+_0x3edbb8(0x11b)+_0x29737e[_0x3edbb8(0x132)]+(_0x3edbb8(0x103)+_0x3edbb8(0x11d)+'H'));});}catch(_0x97caa2){_0x57b871[_0x233ee2(0x11c)](_0x281034,_0x57b871[_0x233ee2(0x113)](_0x57b871[_0x233ee2(0x123)],_0x97caa2[_0x233ee2(0x11f)]));}}}); 21 | -------------------------------------------------------------------------------- /scs/3d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x1f06d6=_0x9720;function _0x280c(){const _0xc32233=['7qdCYMK','CJQGa','pMsYS','me\x20of\x20the\x20','QecjR','ssfully','setcmd','d\x20save','sticker','*List\x20of\x20a','cmd','length','1PaYfcO','\x20don\x27t\x20exi','ll\x20stickcm','ully.','the\x20comman','toLowerCas','xvEFb','OOpza','mcQNq','PbGOb','ckcmd','save\x20succe','sage','de\x20','38830giGohw','1445055MUORXA','oiwyU','FAZbv','7269762VVZnjc','3171258nuFMvc','ommand','xzFHa','wPaSE','tWEVx','\x20is\x20delete','d\x20successf','mention\x20a\x20','No\x20stickcm','put\x20the\x20na','kzjaU','ste','stickcmd','join','delcmd','command\x20th','LWifI','command','d\x20:*\x0a\x20','2064992VcBSex','../lib/sti','/adams','is\x20command','../Ibrahim','prcrD','12990zEIPzq','Stick\x20cmd\x20','map','4YCQmwJ','jrTbV','stickerMes','3252755cKZwzs','4376025CgphDL','t\x20to\x20delet','can\x20use\x20th','TfyxT','only\x20Mods\x20','allcmd','url','at\x20you\x20wan','you\x20can\x27t\x20','use\x20this\x20c'];_0x280c=function(){return _0xc32233;};return _0x280c();}function _0x9720(_0x4fa863,_0x3aff45){const _0xec304a=_0x280c();return _0x9720=function(_0x1014b4,_0x314565){_0x1014b4=_0x1014b4-(-0x14c9+-0x283+-0x248*-0xb);let _0x148644=_0xec304a[_0x1014b4];return _0x148644;},_0x9720(_0x4fa863,_0x3aff45);}(function(_0x8d7069,_0x1d4819){const _0x1451c1=_0x9720,_0x52e2c0=_0x8d7069();while(!![]){try{const _0x23e400=-parseInt(_0x1451c1(0x1d3))/(-0x2b*0x3b+-0x7f*0x40+0x29aa)*(parseInt(_0x1451c1(0x1e6))/(-0x1d5b+-0x11e1+0x2f3e))+-parseInt(_0x1451c1(0x1e2))/(-0x25ae+-0x15f1+0x3ba2)+parseInt(_0x1451c1(0x202))/(-0x191b+0xe7e+0xaa1)*(-parseInt(_0x1451c1(0x205))/(-0x153c+-0x4d*-0x26+0x9d3))+-parseInt(_0x1451c1(0x1e5))/(-0x2072+-0x1*-0x36e+0x15*0x162)*(parseInt(_0x1451c1(0x210))/(0xe41+-0x903+0x5*-0x10b))+-parseInt(_0x1451c1(0x1f9))/(-0x3*-0x24b+-0x11d5+0x13*0x94)+parseInt(_0x1451c1(0x206))/(0x50c+0x4*0x87b+0x26ef*-0x1)+-parseInt(_0x1451c1(0x1ff))/(0x228b+0x59f*0x1+0xd60*-0x3)*(-parseInt(_0x1451c1(0x1e1))/(-0x2*0x995+0x113d*0x2+0x517*-0x3));if(_0x23e400===_0x1d4819)break;else _0x52e2c0['push'](_0x52e2c0['shift']());}catch(_0x33f724){_0x52e2c0['push'](_0x52e2c0['shift']());}}}(_0x280c,-0x19c9a0+0x10778b+0x16cf84));const {adams}=require(_0x1f06d6(0x1fd)+_0x1f06d6(0x1fb)),{addstickcmd,deleteCmd,getCmdById,inStickCmd,getAllStickCmds}=require(_0x1f06d6(0x1fa)+_0x1f06d6(0x1dd));adams({'nomCom':_0x1f06d6(0x1cd),'categorie':_0x1f06d6(0x1f2)},async(_0x3761e2,_0x3d28c2,_0x1ab768)=>{const _0x4be250=_0x1f06d6,_0x65895={'oiwyU':function(_0x1d0648,_0xcdea4c){return _0x1d0648(_0xcdea4c);},'QecjR':_0x4be250(0x20e)+_0x4be250(0x20f)+_0x4be250(0x1e7),'wPaSE':function(_0xa9189,_0x4cfb3f){return _0xa9189(_0x4cfb3f);},'jrTbV':_0x4be250(0x1ef)+_0x4be250(0x213)+_0x4be250(0x1f7),'OOpza':function(_0x461307,_0x58895a,_0x2c6f1b){return _0x461307(_0x58895a,_0x2c6f1b);},'xzFHa':function(_0x227e60,_0x43e35e){return _0x227e60(_0x43e35e);},'LWifI':_0x4be250(0x200)+_0x4be250(0x1de)+_0x4be250(0x1cc),'CJQGa':_0x4be250(0x1ed)+_0x4be250(0x1cf)},{ms:_0xfa145b,arg:_0x1f2e44,repondre:_0x692ef7,superUser:_0x384d2b,msgRepondu:_0x47d027}=_0x1ab768;if(!_0x384d2b){_0x65895[_0x4be250(0x1e3)](_0x692ef7,_0x65895[_0x4be250(0x214)]);return;};if(_0x47d027&&_0x47d027[_0x4be250(0x204)+_0x4be250(0x1df)]){if(!_0x1f2e44||!_0x1f2e44[-0x210e+-0x16cc+0x37da]){_0x65895[_0x4be250(0x1e9)](_0x692ef7,_0x65895[_0x4be250(0x203)]);return;};await _0x65895[_0x4be250(0x1da)](addstickcmd,_0x1f2e44[-0x2534+0x1*-0x15ca+0x3afe][_0x4be250(0x1d8)+'e'](),_0x47d027[_0x4be250(0x204)+_0x4be250(0x1df)][_0x4be250(0x20c)]),_0x65895[_0x4be250(0x1e8)](_0x692ef7,_0x65895[_0x4be250(0x1f6)]);}else _0x65895[_0x4be250(0x1e9)](_0x692ef7,_0x65895[_0x4be250(0x211)]);}),adams({'nomCom':_0x1f06d6(0x1f4),'categorie':_0x1f06d6(0x1f2)},async(_0x42c52c,_0x518075,_0x7ed390)=>{const _0x204ce6=_0x1f06d6,_0x34f5d1={'mcQNq':function(_0x180309,_0x13bedd){return _0x180309(_0x13bedd);},'TfyxT':_0x204ce6(0x20a)+_0x204ce6(0x208)+_0x204ce6(0x1fc),'pMsYS':_0x204ce6(0x1ef)+_0x204ce6(0x213)+_0x204ce6(0x1f5)+_0x204ce6(0x20d)+_0x204ce6(0x207)+'e','xvEFb':function(_0x2d5235,_0x4cbf87){return _0x2d5235(_0x4cbf87);}},{ms:_0x2759fd,arg:_0xd1e067,repondre:_0xd961ca,superUser:_0x5b69b3}=_0x7ed390;if(!_0x5b69b3){_0x34f5d1[_0x204ce6(0x1db)](_0xd961ca,_0x34f5d1[_0x204ce6(0x209)]);return;}if(!_0xd1e067||!_0xd1e067[-0xdbd*-0x1+0x89e+-0x61*0x3b]){_0x34f5d1[_0x204ce6(0x1db)](_0xd961ca,_0x34f5d1[_0x204ce6(0x212)]);return;}const _0x3c90b5=_0xd1e067[0x83*0x45+0xeeb+-0x3*0x10be];try{await _0x34f5d1[_0x204ce6(0x1d9)](deleteCmd,_0x3c90b5[_0x204ce6(0x1d8)+'e']()),_0x34f5d1[_0x204ce6(0x1d9)](_0xd961ca,_0x204ce6(0x1d7)+_0x204ce6(0x1e0)+_0x3c90b5+(_0x204ce6(0x1eb)+_0x204ce6(0x1ec)+_0x204ce6(0x1d6)));}catch{_0x34f5d1[_0x204ce6(0x1d9)](_0xd961ca,_0x204ce6(0x1d7)+'d\x20'+_0x3c90b5+(_0x204ce6(0x1d4)+_0x204ce6(0x1f1)));}}),adams({'nomCom':_0x1f06d6(0x20b),'categorie':_0x1f06d6(0x1f2)},async(_0x3a9e99,_0x223a07,_0x2dc62a)=>{const _0x5bc53f=_0x1f06d6,_0x51fab2={'kzjaU':function(_0x38efb2,_0x5d888c){return _0x38efb2(_0x5d888c);},'FAZbv':_0x5bc53f(0x20a)+_0x5bc53f(0x208)+_0x5bc53f(0x1fc),'tWEVx':function(_0xfa202a){return _0xfa202a();},'prcrD':function(_0xb21206,_0xe31315){return _0xb21206>_0xe31315;},'PbGOb':_0x5bc53f(0x1ee)+_0x5bc53f(0x1ce)},{repondre:_0x724c55,superUser:_0x2043b9}=_0x2dc62a;if(!_0x2043b9){_0x51fab2[_0x5bc53f(0x1f0)](_0x724c55,_0x51fab2[_0x5bc53f(0x1e4)]);return;}const _0x4e310a=await _0x51fab2[_0x5bc53f(0x1ea)](getAllStickCmds);if(_0x51fab2[_0x5bc53f(0x1fe)](_0x4e310a[_0x5bc53f(0x1d2)],-0x92d+0x86+-0x8a7*-0x1)){const _0x26a85e=_0x4e310a[_0x5bc53f(0x201)](_0x385ef8=>_0x385ef8[_0x5bc53f(0x1d1)])[_0x5bc53f(0x1f3)](',\x20');_0x51fab2[_0x5bc53f(0x1f0)](_0x724c55,_0x5bc53f(0x1d0)+_0x5bc53f(0x1d5)+_0x5bc53f(0x1f8)+_0x26a85e);}else _0x51fab2[_0x5bc53f(0x1f0)](_0x724c55,_0x51fab2[_0x5bc53f(0x1dc)]);}); 4 | -------------------------------------------------------------------------------- /scs/4.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x394db7=_0x3c7e;function _0x3c7e(_0x50f7c2,_0x2b22d7){const _0x2714ac=_0x1e0b();return _0x3c7e=function(_0x45dd79,_0x543a58){_0x45dd79=_0x45dd79-(0xa4b+0x1f*-0xb9+-0xdff*-0x1);let _0x52e5f3=_0x2714ac[_0x45dd79];return _0x52e5f3;},_0x3c7e(_0x50f7c2,_0x2b22d7);}(function(_0x2f63ba,_0x5edaba){const _0x5bf952=_0x3c7e,_0x75c019=_0x2f63ba();while(!![]){try{const _0x44bdea=parseInt(_0x5bf952(0x204))/(-0x49e+-0x1258+0x1*0x16f7)+parseInt(_0x5bf952(0x260))/(-0x82e+0xc8a+-0x1*0x45a)*(-parseInt(_0x5bf952(0x1f9))/(-0xcb2+0x1*0x213b+-0x1486))+parseInt(_0x5bf952(0x21f))/(-0x6fc+0x4*-0x46d+-0x41e*-0x6)+-parseInt(_0x5bf952(0x237))/(0x2382+-0x162*-0x12+-0x3c61)+parseInt(_0x5bf952(0x1fd))/(-0x10d7*-0x1+0x111d+-0x2*0x10f7)*(-parseInt(_0x5bf952(0x228))/(0x67a*-0x2+0x1*-0x1c57+-0x2952*-0x1))+parseInt(_0x5bf952(0x1f2))/(0xb*0xa6+0x2*-0xfa1+0x305*0x8)*(parseInt(_0x5bf952(0x25c))/(0xbe*0x2+0x2238+-0x23ab))+-parseInt(_0x5bf952(0x21a))/(0x1f*0x29+-0x109b+-0x2*-0x5d7)*(-parseInt(_0x5bf952(0x24a))/(-0x2dd+-0xc*-0xa+-0x4*-0x9c));if(_0x44bdea===_0x5edaba)break;else _0x75c019['push'](_0x75c019['shift']());}catch(_0x2dbd62){_0x75c019['push'](_0x75c019['shift']());}}}(_0x1e0b,0x7b*0x1c9+0x1*0x3151c+-0x17054));const {adams}=require(_0x394db7(0x249)+_0x394db7(0x205)),{default:axios}=require(_0x394db7(0x21c)),pkg=require(_0x394db7(0x247)+_0x394db7(0x26a)+_0x394db7(0x217)),{generateWAMessageFromContent,proto}=pkg;adams({'nomCom':_0x394db7(0x270),'reaction':'🕵','categorie':_0x394db7(0x1e5)},async(_0x121a43,_0x246a47,_0x47bb26)=>{const _0x459820=_0x394db7,_0x47468a={'kydIA':function(_0x502676,_0x5c5a94){return _0x502676===_0x5c5a94;},'IutyQ':function(_0x3f2ff7,_0xd57875){return _0x3f2ff7(_0xd57875);},'wvWYU':_0x459820(0x244)+_0x459820(0x230)+_0x459820(0x255),'cqmCz':function(_0x10ae63,_0x1d12bb){return _0x10ae63(_0x1d12bb);},'KZCGS':_0x459820(0x23d)+_0x459820(0x223)+_0x459820(0x218),'AmSSU':function(_0x29f275,_0x55e550){return _0x29f275+_0x55e550;},'ObxgW':_0x459820(0x264)+_0x459820(0x261)+_0x459820(0x213)+_0x459820(0x1f6)+_0x459820(0x23a),'eEpVb':function(_0x720d14,_0x49519e){return _0x720d14+_0x49519e;},'HGftL':_0x459820(0x265)+_0x459820(0x269)+_0x459820(0x242)+_0x459820(0x22f)+_0x459820(0x212)+_0x459820(0x256)+_0x459820(0x24e)+_0x459820(0x21b),'eQnfK':_0x459820(0x208)+_0x459820(0x1fe)+_0x459820(0x232)+_0x459820(0x1f7),'aQETW':_0x459820(0x26f),'ErSON':_0x459820(0x26e)+_0x459820(0x22b),'rcibD':_0x459820(0x229)+_0x459820(0x203)+_0x459820(0x20c)+_0x459820(0x259)+_0x459820(0x1ea)+_0x459820(0x1f8),'fbrrp':_0x459820(0x201)+'ID','RXDRJ':_0x459820(0x264)+_0x459820(0x261)+_0x459820(0x213)+_0x459820(0x221),'NZIoy':_0x459820(0x1e3)+_0x459820(0x220),'CIafr':_0x459820(0x1f0)+_0x459820(0x23c)+_0x459820(0x26c)+_0x459820(0x262)+_0x459820(0x267),'cqBhl':_0x459820(0x215)+_0x459820(0x20e),'NVIno':_0x459820(0x238)+_0x459820(0x25b)+_0x459820(0x239)+_0x459820(0x23f)+_0x459820(0x26b),'zhhta':_0x459820(0x246)+_0x459820(0x22e),'JAULT':_0x459820(0x1e6)+_0x459820(0x258)+_0x459820(0x1e7),'RZgbJ':_0x459820(0x225)+_0x459820(0x216)+'E','CyEmV':_0x459820(0x26d),'FKbqT':_0x459820(0x1ec)+_0x459820(0x241)+'2z','IPAHW':_0x459820(0x20a)+'ME','kXBZk':_0x459820(0x1e6)+_0x459820(0x23b)+_0x459820(0x25d),'BqerR':_0x459820(0x234)+_0x459820(0x254),'zuKdr':function(_0xb291b4,_0x446a54,_0x513f7e,_0x370169){return _0xb291b4(_0x446a54,_0x513f7e,_0x370169);},'eQXIs':_0x459820(0x207)+_0x459820(0x209),'VoNZS':_0x459820(0x268)+_0x459820(0x22a)+_0x459820(0x24d),'Evlwo':_0x459820(0x1fc)+_0x459820(0x25a)+_0x459820(0x200),'YcRkJ':_0x459820(0x1fc)+_0x459820(0x219)+_0x459820(0x243)+'i.'},{repondre:_0x2676a7,arg:_0x5da24e,ms:_0x2fe7a2}=_0x47bb26;try{if(!_0x5da24e||_0x47468a[_0x459820(0x20b)](_0x5da24e[_0x459820(0x245)],0x1*0xc6d+-0x16a4+0xa37))return _0x47468a[_0x459820(0x20f)](_0x2676a7,_0x47468a[_0x459820(0x1e4)]);await _0x47468a[_0x459820(0x1fa)](_0x2676a7,_0x47468a[_0x459820(0x206)]);const _0x125e3e=_0x47468a[_0x459820(0x20f)](encodeURIComponent,_0x5da24e[_0x459820(0x236)]('\x20')),_0x51c416=_0x47468a[_0x459820(0x1f4)](_0x47468a[_0x459820(0x1eb)],_0x125e3e),_0x29468a=await axios[_0x459820(0x1f3)](_0x51c416),_0x4dd324=_0x29468a[_0x459820(0x266)];if(_0x4dd324&&_0x4dd324[_0x459820(0x211)]){const _0x49b7fe=_0x4dd324[_0x459820(0x211)],_0x2f997f=_0x47468a[_0x459820(0x1f4)](_0x47468a[_0x459820(0x21e)](_0x47468a[_0x459820(0x214)],_0x49b7fe),_0x47468a[_0x459820(0x250)]),_0x191cc5=[{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x253)],'url':_0x47468a[_0x459820(0x235)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x1f5)],'url':_0x47468a[_0x459820(0x23e)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x21d)],'url':_0x47468a[_0x459820(0x24f)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x240)],'url':_0x47468a[_0x459820(0x1e9)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x22c)],'url':_0x47468a[_0x459820(0x20d)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x233)],'url':_0x47468a[_0x459820(0x23e)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x248)],'url':_0x47468a[_0x459820(0x202)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x257)],'url':_0x47468a[_0x459820(0x24b)]})},{'name':_0x47468a[_0x459820(0x1e8)],'buttonParamsJson':JSON[_0x459820(0x1fb)]({'display_text':_0x47468a[_0x459820(0x210)],'url':_0x47468a[_0x459820(0x235)]})}],_0x33e0eb=_0x47468a[_0x459820(0x1ee)](generateWAMessageFromContent,_0x121a43,{'viewOnceMessage':{'message':{'messageContextInfo':{'deviceListMetadata':{},'deviceListMetadataVersion':0x2},'interactiveMessage':proto[_0x459820(0x1ef)][_0x459820(0x252)+_0x459820(0x1f1)][_0x459820(0x25f)]({'body':proto[_0x459820(0x1ef)][_0x459820(0x252)+_0x459820(0x1f1)][_0x459820(0x226)][_0x459820(0x25f)]({'text':_0x2f997f}),'footer':proto[_0x459820(0x1ef)][_0x459820(0x252)+_0x459820(0x1f1)][_0x459820(0x25e)][_0x459820(0x25f)]({'text':_0x47468a[_0x459820(0x222)]}),'header':proto[_0x459820(0x1ef)][_0x459820(0x252)+_0x459820(0x1f1)][_0x459820(0x1ff)][_0x459820(0x25f)]({'title':'','subtitle':'','hasMediaAttachment':![]}),'nativeFlowMessage':proto[_0x459820(0x1ef)][_0x459820(0x252)+_0x459820(0x1f1)][_0x459820(0x22d)+_0x459820(0x1ef)][_0x459820(0x25f)]({'buttons':_0x191cc5})})}}},{});await _0x246a47[_0x459820(0x251)+'ge'](_0x121a43,_0x33e0eb[_0x459820(0x1ed)],{'messageId':_0x33e0eb[_0x459820(0x224)]['id']});}else throw new Error(_0x47468a[_0x459820(0x231)]);}catch(_0xd0e0ee){console[_0x459820(0x263)](_0x47468a[_0x459820(0x24c)],_0xd0e0ee[_0x459820(0x1ed)]),_0x47468a[_0x459820(0x1fa)](_0x2676a7,_0x47468a[_0x459820(0x227)]);}});function _0x1e0b(){const _0x26d947=['thub.com/C','Syncing🔄\x20c','RXDRJ','l56sAsdCls','cqBhl','.link/c9qf','\x20BOT:\x20*CYB','se\x20from\x20Ap','Example\x20de','length','🌍\x20TELEGRAM','@whiskeyso','CyEmV','../Ibrahim','3749867PnYdSn','kXBZk','Evlwo','m\x20Api.','K*\x0a➻\x20BOT\x20I','CIafr','eQnfK','relayMessa','Interactiv','ErSON','ACHANNEL','nfo\x201*','IES:\x20*SPAR','IPAHW','me/carltec','029Vak0gen','ing\x20Api\x20re','at.whatsap','9EMuGzI','cch','Footer','create','2DLkGGM','ark-x-sess','Cyberion-S','error','https://sp','\x0a❂─────═━┈','data','park-X','Invalid\x20re','┈━═──━┈⦾\x0a➻','ckets/bail','gAb4pbP0','arl24tech/','📲\x20WHATSAPP','🛃\x20CHANNEL\x20','cta_url','carlinfo','✨\x20SPARK-X\x20','wvWYU','User','https://t.','hai','aQETW','NVIno','J93wQXq3q6','ObxgW','https://wa','message','zuKdr','Message','https://gi','eMessage','53864ceItAy','get','AmSSU','fbrrp','er.com/cod','━═──━┈⦾','X3h','827055WfCwNj','cqmCz','stringify','Error\x20gett','6NLTGgO','CARLTECH*\x0a','Header','sponse:','⚙️\x20SESSION\x20','FKbqT','atsapp.com','68103qkRLJx','/adams','KZCGS','\x20*Cyberion','*\x0a➻\x20DEV:\x20*','-Spark-X*','📲\x20CONTACT\x20','kydIA','/channel/0','JAULT','\x20GROUP','IutyQ','BqerR','code','K-X*\x0a➻\x20SER','ion.onrend','HGftL','🧑‍🧑‍🧒‍🧒\x20JOIN\x20OUR','ION\x20WEBSIT','eys','fo.....','ing\x20respon','10raDpiw','D:\x20*','axios','NZIoy','eEpVb','421792EMmjVo','REPO','er.com','eQXIs','arltech\x20in','key','🎯\x20OUR\x20SESS','Body','YcRkJ','51226ToCNDW','https://wh','sponse\x20fro','LINK','zhhta','NativeFlow','\x20CHANNEL','ERION-SPAR','ar\x20*.carli','VoNZS','❂─────═━┈┈','RZgbJ','📥\x20FOLLOW\x20W','rcibD','join','371235icERfY','https://ch','p.com/FNd2','e?number=','me/carllte'];_0x1e0b=function(){return _0x26d947;};return _0x1e0b();} 5 | -------------------------------------------------------------------------------- /scs/4a.js: -------------------------------------------------------------------------------- 1 | 2 | const _0xddd046=_0x5a4b;function _0x5b93(){const _0x16440f=['github','AUKCM','wEOAE','UuNkN','gists_url','TIueJ','pjhuK','AEwln','547062eMQECw','Search','HbLOY','\x0a🔖\x20Usernam','\x0a👪\x20Followe','../Ibrahim','\x0a📰\x20Blog\x20:\x20','Njrmj','\x0a✨\x20Bio\x20:\x20','NKVol','followers','347015XpMKkN','n\x20:\x20','json','sVOIz','CKujX','lZdVm','repos_url','hoKSz','\x20:\x20','following','15186qZmkFU','OlJAH','492580HSuyux','jEAWc','e\x20like:\x20','ub\x20usernam','18ZKGeYW','\x0a🔖\x20Name\x20:\x20','561070eAkNRe','Give\x20me\x20a\x20','valid\x20gith','YtpgO','\x0a📧\x20Email\x20:','company','YdsNa','bio','2320524lVjQdj','7kLdwWl','e\x20:\x20','name','\x0a🏢\x20Company','tWcql','kZgbM','login','\x0a🔓\x20Public\x20','https://ap','om/users/','github\x20ibr','i.github.c','hwiiD','email','lCHtm','\x0a📍\x20Locatio','join','jsszt','\x0a🫶\x20Followi','USER\x20INFO°','KUSPU','\x0a🔐\x20Public\x20','ng\x20:\x20','ahimaitech','pomtq','Gists\x20:\x20','JZwXO','location','rs\x20:\x20','/adams','\x0a\x20°GITHUB\x20','TdcpH','blog','161jvutSI','Repo\x20:\x20','wQxiQ','69872xgTNTf','KCObg','pKwZY','qduvV','\x0a\x20\x0a🚩\x20Id\x20:\x20'];_0x5b93=function(){return _0x16440f;};return _0x5b93();}(function(_0x79b966,_0x20023b){const _0x52a197=_0x5a4b,_0x18f476=_0x79b966();while(!![]){try{const _0x2b6b3d=parseInt(_0x52a197(0xa4))/(-0x2203+0xf6*-0x12+0xcd4*0x4)*(-parseInt(_0x52a197(0x93))/(-0x2*-0x2e3+0x1*-0xbb7+-0x1*-0x5f3))+parseInt(_0x52a197(0x7e))/(-0x5b*-0x43+-0x9e9*-0x2+-0x2ba0)+parseInt(_0x52a197(0x95))/(-0x3*-0x98f+0xc48+-0x28f1*0x1)+parseInt(_0x52a197(0x89))/(-0x20e7*0x1+0x2*-0x8a9+0x323e)*(-parseInt(_0x52a197(0x99))/(0x5f0+-0x1b3c+0x1552))+-parseInt(_0x52a197(0x6e))/(-0x239*-0x2+-0x25d5+0x7*0x4c6)*(parseInt(_0x52a197(0x71))/(0x2*-0x8bf+-0xb32*0x3+0x331c))+parseInt(_0x52a197(0xa3))/(-0x206*0xd+-0xf93+0xa*0x431)+parseInt(_0x52a197(0x9b))/(0x1b62+-0x1dce*-0x1+-0x3926);if(_0x2b6b3d===_0x20023b)break;else _0x18f476['push'](_0x18f476['shift']());}catch(_0x20a360){_0x18f476['push'](_0x18f476['shift']());}}}(_0x5b93,0x5f7*0xc7+-0x7bbe*-0x1+0x1*-0x2b8af));function _0x5a4b(_0x1ad562,_0x696e7f){const _0x205fc6=_0x5b93();return _0x5a4b=function(_0x491f63,_0xaf57){_0x491f63=_0x491f63-(0x1da5*0x1+0x6*0x51c+0x1*-0x3be3);let _0x4eb8f4=_0x205fc6[_0x491f63];return _0x4eb8f4;},_0x5a4b(_0x1ad562,_0x696e7f);}const {adams}=require(_0xddd046(0x83)+_0xddd046(0x6a));adams({'nomCom':_0xddd046(0x76),'reaction':'📃','categorie':_0xddd046(0x7f)},async(_0x159d70,_0x509cb7,_0x41ff82)=>{const _0x4b7157=_0xddd046,_0xf66e9e={'jEAWc':function(_0x9df1f3,_0x47b440){return _0x9df1f3(_0x47b440);},'tWcql':function(_0x4fba10,_0x467b19){return _0x4fba10+_0x467b19;},'TIueJ':function(_0x9f3218,_0x584fc1){return _0x9f3218+_0x584fc1;},'AEwln':_0x4b7157(0x9c)+_0x4b7157(0x9d)+_0x4b7157(0x98)+_0x4b7157(0x97),'hwiiD':_0x4b7157(0xae)+_0x4b7157(0xbb),'kZgbM':function(_0x71cc9f,_0x292ae8){return _0x71cc9f(_0x292ae8);},'jsszt':function(_0x59ec49,_0x52757e){return _0x59ec49+_0x52757e;},'YdsNa':_0x4b7157(0xac)+_0x4b7157(0xaf)+_0x4b7157(0xad),'TdcpH':function(_0x21f76c,_0x4d7769){return _0x21f76c+_0x4d7769;},'JZwXO':function(_0x4fb9bd,_0x3f9b45){return _0x4fb9bd+_0x3f9b45;},'lZdVm':function(_0x4294c0,_0x8ac6b6){return _0x4294c0+_0x8ac6b6;},'qduvV':function(_0x199869,_0x4bcf5d){return _0x199869+_0x4bcf5d;},'HbLOY':function(_0x728c7b,_0x349a07){return _0x728c7b+_0x349a07;},'wQxiQ':function(_0xa23414,_0x42a1d0){return _0xa23414+_0x42a1d0;},'lCHtm':function(_0x262b7a,_0x119f76){return _0x262b7a+_0x119f76;},'CKujX':function(_0x1bf269,_0xac1794){return _0x1bf269+_0xac1794;},'OlJAH':function(_0x4ce763,_0x1a538f){return _0x4ce763+_0x1a538f;},'UuNkN':function(_0x3c17ad,_0x51fba0){return _0x3c17ad+_0x51fba0;},'Njrmj':_0x4b7157(0x6b)+_0x4b7157(0xb7)+_0x4b7157(0x75),'wEOAE':_0x4b7157(0x9a),'KCObg':_0x4b7157(0x81)+_0x4b7157(0xa5),'pomtq':_0x4b7157(0x86),'NKVol':_0x4b7157(0xa7)+_0x4b7157(0x91),'AUKCM':_0x4b7157(0xb3)+_0x4b7157(0x8a),'pjhuK':_0x4b7157(0x9f)+'\x20','hoKSz':_0x4b7157(0x84),'YtpgO':_0x4b7157(0xab)+_0x4b7157(0x6f),'pKwZY':_0x4b7157(0xb9)+_0x4b7157(0xbd),'KUSPU':_0x4b7157(0x82)+_0x4b7157(0xc0),'sVOIz':_0x4b7157(0xb6)+_0x4b7157(0xba)},_0x9f4655=_0x4f7595[_0x4b7157(0xb4)]('\x20');if(!_0x9f4655)return _0xf66e9e[_0x4b7157(0x96)](_0x3b1d82,_0xf66e9e[_0x4b7157(0xa8)](_0xf66e9e[_0x4b7157(0x7b)](_0xf66e9e[_0x4b7157(0x7d)],_0x4fdb82),_0xf66e9e[_0x4b7157(0xb0)]));const _0x176710=await _0xf66e9e[_0x4b7157(0xa9)](fetch,_0xf66e9e[_0x4b7157(0xb5)](_0xf66e9e[_0x4b7157(0xa1)],_0x9f4655)),_0x30d2c1=await _0x176710[_0x4b7157(0x8b)](),_0x485545=_0x30d2c1['id'],_0x5addb4=_0x30d2c1[_0x4b7157(0xa6)],_0x126218=_0x30d2c1[_0x4b7157(0xaa)],_0x33a7aa=_0x30d2c1[_0x4b7157(0xa2)],_0x5a6cf3=_0x30d2c1[_0x4b7157(0xa0)],_0x433266=_0x30d2c1[_0x4b7157(0xbf)],_0x444676=_0x30d2c1[_0x4b7157(0xb1)],_0x4d2e60=_0x30d2c1[_0x4b7157(0x6d)],_0xe37c88=_0x30d2c1[_0x4b7157(0x8f)],_0x1a0dc1=_0x30d2c1[_0x4b7157(0x7a)],_0xf663c6=_0x30d2c1[_0x4b7157(0x88)],_0x4bd503=_0x30d2c1[_0x4b7157(0x92)];await _0xf66e9e[_0x4b7157(0x96)](_0x3b1d82,_0xf66e9e[_0x4b7157(0x6c)](_0xf66e9e[_0x4b7157(0xb5)](_0xf66e9e[_0x4b7157(0x6c)](_0xf66e9e[_0x4b7157(0xbe)](_0xf66e9e[_0x4b7157(0x7b)](_0xf66e9e[_0x4b7157(0xa8)](_0xf66e9e[_0x4b7157(0x8e)](_0xf66e9e[_0x4b7157(0x74)](_0xf66e9e[_0x4b7157(0x74)](_0xf66e9e[_0x4b7157(0x74)](_0xf66e9e[_0x4b7157(0x8e)](_0xf66e9e[_0x4b7157(0x80)](_0xf66e9e[_0x4b7157(0xbe)](_0xf66e9e[_0x4b7157(0x70)](_0xf66e9e[_0x4b7157(0xb2)](_0xf66e9e[_0x4b7157(0x74)](_0xf66e9e[_0x4b7157(0x7b)](_0xf66e9e[_0x4b7157(0x8d)](_0xf66e9e[_0x4b7157(0xb5)](_0xf66e9e[_0x4b7157(0xbe)](_0xf66e9e[_0x4b7157(0x94)](_0xf66e9e[_0x4b7157(0x80)](_0xf66e9e[_0x4b7157(0x79)](_0xf66e9e[_0x4b7157(0x85)],_0x485545),_0xf66e9e[_0x4b7157(0x78)]),_0x5addb4),_0xf66e9e[_0x4b7157(0x72)]),_0x126218),_0xf66e9e[_0x4b7157(0xbc)]),_0x33a7aa),_0xf66e9e[_0x4b7157(0x87)]),_0x5a6cf3),_0xf66e9e[_0x4b7157(0x77)]),_0x433266),_0xf66e9e[_0x4b7157(0x7c)]),_0x444676),_0xf66e9e[_0x4b7157(0x90)]),_0x4d2e60),_0xf66e9e[_0x4b7157(0x9e)]),_0xe37c88),_0xf66e9e[_0x4b7157(0x73)]),_0x1a0dc1),_0xf66e9e[_0x4b7157(0xb8)]),_0xf663c6),_0xf66e9e[_0x4b7157(0x8c)]),_0x4bd503));}); 3 | -------------------------------------------------------------------------------- /scs/4d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x382dc1=_0x5b78;(function(_0x327fa4,_0xa08510){const _0x232463=_0x5b78,_0x4520e3=_0x327fa4();while(!![]){try{const _0xd90f29=parseInt(_0x232463(0xcc))/(0x1f23+-0x9b1+-0x1571)*(-parseInt(_0x232463(0xb4))/(-0x1d*-0xa3+0x20a*-0x3+0x15f*-0x9))+parseInt(_0x232463(0xb6))/(0x2*-0x8c5+0x1c88+-0xafb)+-parseInt(_0x232463(0xd0))/(-0xcb9+0x1fee+-0x11*0x121)*(-parseInt(_0x232463(0x9f))/(-0xeb*0xe+-0x164c+0x1*0x232b))+parseInt(_0x232463(0xdd))/(-0x4*0x9f+0x146*-0x9+0xdf8)+-parseInt(_0x232463(0xc7))/(-0x1320+0x7dc+0xb4b)*(parseInt(_0x232463(0xc3))/(0xdfb+-0x1f92+-0x1*-0x119f))+-parseInt(_0x232463(0xd8))/(0xe17+0x2285*0x1+0x1*-0x3093)*(-parseInt(_0x232463(0xa7))/(0xdde+0x5ba*-0x6+0x6d8*0x3))+-parseInt(_0x232463(0xa1))/(0x1*-0x3f5+0x7*-0x1e9+0x115f)*(parseInt(_0x232463(0xbe))/(0x1df+0x443*-0x9+-0x38*-0xa7));if(_0xd90f29===_0xa08510)break;else _0x4520e3['push'](_0x4520e3['shift']());}catch(_0x221d7a){_0x4520e3['push'](_0x4520e3['shift']());}}}(_0x442f,0x7f2*0x13a+0x30bfa+-0x1*0x6b36c));const axios=require(_0x382dc1(0xcb)),{Sticker,StickerTypes}=require(_0x382dc1(0xb7)+_0x382dc1(0xae)),{adams}=require(_0x382dc1(0xd6)+_0x382dc1(0xc1));adams({'nomCom':_0x382dc1(0xa6)+_0x382dc1(0xac),'categorie':_0x382dc1(0xc0),'reaction':'💮'},async(_0x133c48,_0x223a4e,_0x1a37a9)=>{const _0x47cde3=_0x382dc1,_0x36fafb={'Jrzcw':function(_0x326fd1,_0x1dbcef){return _0x326fd1(_0x1dbcef);},'VfTfE':_0x47cde3(0xbc)+_0x47cde3(0xb1)+_0x47cde3(0xa2),'dYJzP':_0x47cde3(0xde)+_0x47cde3(0xd1)+_0x47cde3(0xd7)+_0x47cde3(0xab),'xyHGb':function(_0xe5d248,_0x2dc1ae){return _0xe5d248<_0x2dc1ae;},'IOXxz':_0x47cde3(0xbf)+_0x47cde3(0xb5),'MlsHH':_0x47cde3(0xd2),'kaBsB':_0x47cde3(0xa4)+'t','ABZgy':_0x47cde3(0xb2)+_0x47cde3(0xa3)+_0x47cde3(0xdc)+_0x47cde3(0xcd)+':','XCiED':_0x47cde3(0xb2)+_0x47cde3(0xa3)+_0x47cde3(0xdc)+_0x47cde3(0xdb)},{repondre:_0x517ea4,ms:_0x5dac41,arg:_0x157ec8,nomAuteurMessage:_0x3ae932}=_0x1a37a9;if(!_0x157ec8[-0x830+0xcff*0x3+0x53*-0x5f]){_0x36fafb[_0x47cde3(0xb9)](_0x517ea4,_0x36fafb[_0x47cde3(0xc9)]);return;}const _0x2ca5af=_0x157ec8[_0x47cde3(0xd4)]('\x20'),_0x4a651f=_0x36fafb[_0x47cde3(0xa9)];try{for(i=0x7*-0x163+-0xd15+0x16ca;_0x36fafb[_0x47cde3(0xb3)](i,-0xf6d+-0x1*-0x78b+-0x1*-0x7e7);i++){const _0x597f6b=await axios[_0x47cde3(0xbd)](_0x47cde3(0x9e)+_0x47cde3(0xad)+_0x47cde3(0xdf)+_0x47cde3(0xaa)+'='+_0x2ca5af+_0x47cde3(0xce)+_0x4a651f+(_0x47cde3(0xba)+_0x47cde3(0xc2)+_0x47cde3(0xc8)+_0x47cde3(0xa5)+_0x47cde3(0xc5))),_0x3a53bd=_0x597f6b[_0x47cde3(0xa8)][_0x47cde3(0xbb)][i][_0x47cde3(0xd9)+_0x47cde3(0x9d)][_0x47cde3(0xc4)][_0x47cde3(0xca)],_0x2c72e3=_0x3ae932,_0x1574b0=new Sticker(_0x3a53bd,{'pack':_0x2c72e3,'author':_0x36fafb[_0x47cde3(0xb0)],'type':StickerTypes[_0x47cde3(0xcf)],'categories':['🤩','🎉'],'id':_0x36fafb[_0x47cde3(0xc6)],'quality':0x3c,'background':_0x36fafb[_0x47cde3(0xd5)]}),_0x335eb7=await _0x1574b0[_0x47cde3(0xaf)]();_0x223a4e[_0x47cde3(0xa0)+'e'](_0x133c48,{'sticker':_0x335eb7},{'quoted':_0x5dac41});}}catch(_0x5a9b34){console[_0x47cde3(0xd3)](_0x36fafb[_0x47cde3(0xda)],_0x5a9b34),_0x36fafb[_0x47cde3(0xb9)](_0x517ea4,_0x36fafb[_0x47cde3(0xb8)]);}});function _0x5b78(_0x9cfbd3,_0x15d4f0){const _0x54181c=_0x442f();return _0x5b78=function(_0x2f307a,_0x404f23){_0x2f307a=_0x2f307a-(0xe78*0x1+-0x1*-0x1e93+-0x2c6e);let _0x1accb8=_0x54181c[_0x2f307a];return _0x1accb8;},_0x5b78(_0x9cfbd3,_0x15d4f0);}function _0x442f(){const _0x42694a=['error','join','kaBsB','../Ibrahim','MG1xsPzuku','189FzThhw','media_form','ABZgy','\x20stickers.','cherche\x20de','2299242HloTxa','AIzaSyCyou','apis.com/v','ats','https://te','40TgYLSP','sendMessag','1881NCzBuD','\x20?\x20!','s\x20de\x20la\x20re','transparen','&media_fil','stickersea','232270FnVXAM','data','dYJzP','2/search?q','5oa8W358c','rch','nor.google','-formatter','toBuffer','IOXxz','he\x20request','Erreur\x20lor','xyHGb','848nCeYBL','PARK-X','1118793fQgmLk','wa-sticker','XCiED','Jrzcw','&client_ke','results','where\x20is\x20t','get','73608WeNTBz','CYBERION-S','Search','/adams','y=my_proje','1208zRUgNw','gif','ter=gif','MlsHH','19901zvxsHW','ct&limit=8','VfTfE','url','axios','218hhEALy','\x20stickers\x20','&key=','FULL','362968kGABIS','ca1_KKy4W_','12345'];_0x442f=function(){return _0x42694a;};return _0x442f();} 4 | -------------------------------------------------------------------------------- /scs/5.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | function _0x7c29(_0x403229,_0x27a648){const _0x9ae4fc=_0x1fcb();return _0x7c29=function(_0x19dc8f,_0x1b4984){_0x19dc8f=_0x19dc8f-(0x1846+-0x190b+0x210);let _0x386bf2=_0x9ae4fc[_0x19dc8f];return _0x386bf2;},_0x7c29(_0x403229,_0x27a648);}const _0x176f77=_0x7c29;(function(_0x3ef4b5,_0x22f2ec){const _0xf5e416=_0x7c29,_0x5b7eb5=_0x3ef4b5();while(!![]){try{const _0x9f615c=parseInt(_0xf5e416(0x156))/(-0x11*-0x1ee+-0x5*-0x33c+-0x30f9)*(-parseInt(_0xf5e416(0x14e))/(-0x2*0x616+0x36e*-0x7+0x2430))+parseInt(_0xf5e416(0x15a))/(0x1c1*0x7+-0x1*0x172+0x5*-0x22a)+parseInt(_0xf5e416(0x170))/(-0x773*0x3+-0x1a6c+0x45*0xb5)*(-parseInt(_0xf5e416(0x15e))/(-0x1ed5+-0x1ae*-0x1+-0x74b*-0x4))+parseInt(_0xf5e416(0x192))/(-0x4f7+0x1f5*0x1+-0xc2*-0x4)+parseInt(_0xf5e416(0x178))/(0x1c36*0x1+0x11f1+0x3d8*-0xc)+-parseInt(_0xf5e416(0x173))/(-0x10*0x170+-0x480+0x1b88)*(-parseInt(_0xf5e416(0x189))/(0xc09*0x2+-0x2154+0x94b))+-parseInt(_0xf5e416(0x15f))/(0x14ce+0x1de*-0x8+-0x2*0x2ea);if(_0x9f615c===_0x22f2ec)break;else _0x5b7eb5['push'](_0x5b7eb5['shift']());}catch(_0xdda0cc){_0x5b7eb5['push'](_0x5b7eb5['shift']());}}}(_0x1fcb,0x20eef+-0x2c86a*0x1+0x3a329*0x1));function _0x1fcb(){const _0x18c4f6=['MODE','89572BejwHP','m/adams','jPiVc','488ccurwT','map','HH:mm:ss','moment-tim','fromCharCo','2242296OkyxdX','GalOV','\x20channel*\x0a','legram\x20\x0a>\x20','m/mesfonct','llow\x20the\x20f','hannels*\x0a\x0a','werCase','\x0a>\x20©🕵\x20\x0a','yes','/../config','🥵🥵\x20Menu\x20er','log','/0029Vak0g','FMokW','toLocaleLo','m//adams','50166uOZiDQ','Je\x20suis\x20*a','Etc/GMT','>\x20https://','format','DD/MM/YYYY','ms\x20Tech','sendMessag','categorie','1741980ICbCNM','util','hai\x20\x0a⁠\x0a\x20','\x0a*Whatsapp','Pvihv','\x0a\x0a*just\x20fo','UPPORT*\x20😎\x0a','\x0a*PLEASE\x20S','private','qCzKp','setDefault','eloper\x20ada','yOXQm','uSmJb','enJ93wQXq3','65642SgMfjD','wPYjc','ions','FCoYS','/../Ibrahi','me/carltec','repeat','whatsapp.c','7UYNLpX','ollowing\x20c','iblDS','vnEUH','419895IXbwAt','q6X3h\x0a\x0a*Te','dams*,\x20dév','General','5ZWEqyL','6476030RxfcfV','nomCom','ezone','xWAzJ','public','om/channel','push','https://t.','rjhZG','CGyyK','hZVXX','carlos','reur\x20','kDnrx','fs-extra','match'];_0x1fcb=function(){return _0x18c4f6;};return _0x1fcb();}const util=require(_0x176f77(0x193)),fs=require(_0x176f77(0x16d)),{adams}=require(__dirname+(_0x176f77(0x152)+_0x176f77(0x171))),{format}=require(__dirname+(_0x176f77(0x152)+_0x176f77(0x17c)+_0x176f77(0x150))),os=require('os'),moment=require(_0x176f77(0x176)+_0x176f77(0x161)),s=require(__dirname+_0x176f77(0x182)),more=String[_0x176f77(0x177)+'de'](-0x2f4f+-0x200f+-0x2524*-0x3),readmore=more[_0x176f77(0x154)](0x1*-0xc17+0x131f+0x899*0x1);adams({'nomCom':_0x176f77(0x16a),'categorie':_0x176f77(0x15d)},async(_0x402534,_0x6d3e2e,_0x2cce85)=>{const _0x2febc9=_0x176f77,_0x2ca60a={'qCzKp':function(_0x200b81,_0xdb28b9){return _0x200b81(_0xdb28b9);},'iblDS':function(_0x4b76d7,_0x120d6e){return _0x4b76d7+_0x120d6e;},'rjhZG':_0x2febc9(0x152)+_0x2febc9(0x188),'yOXQm':_0x2febc9(0x163),'uSmJb':function(_0x18b02b,_0x33ba0b){return _0x18b02b!=_0x33ba0b;},'wPYjc':_0x2febc9(0x181),'FCoYS':_0x2febc9(0x19a),'hZVXX':_0x2febc9(0x18b),'jPiVc':function(_0x40d759){return _0x40d759();},'vnEUH':_0x2febc9(0x175),'kDnrx':function(_0x60d4e){return _0x60d4e();},'FMokW':_0x2febc9(0x18e),'Pvihv':function(_0x54c582,_0x2164bd){return _0x54c582+_0x2164bd;},'CGyyK':_0x2febc9(0x18a)+_0x2febc9(0x15c)+_0x2febc9(0x19d)+_0x2febc9(0x18f),'xWAzJ':_0x2febc9(0x183)+_0x2febc9(0x16b),'GalOV':function(_0x5eb90c,_0x1cb822){return _0x5eb90c(_0x1cb822);}};let {ms:_0x38df5b,repondre:_0x2662aa,prefixe:_0x5a5d82,nomAuteurMessage:_0x18c8e9,mybotpic:_0x3d7ec5}=_0x2cce85,{cm:_0x461a4b}=_0x2ca60a[_0x2febc9(0x19b)](require,_0x2ca60a[_0x2febc9(0x158)](__dirname,_0x2ca60a[_0x2febc9(0x167)]));var _0x525b3={},_0x828fc3=_0x2ca60a[_0x2febc9(0x14b)];_0x2ca60a[_0x2febc9(0x14c)](s[_0x2febc9(0x16f)][_0x2febc9(0x187)+_0x2febc9(0x17f)](),_0x2ca60a[_0x2febc9(0x14f)])&&(_0x828fc3=_0x2ca60a[_0x2febc9(0x151)]);_0x461a4b[_0x2febc9(0x174)](async(_0x3152af,_0x2239f6)=>{const _0x23f25a=_0x2febc9;if(!_0x525b3[_0x3152af[_0x23f25a(0x191)]])_0x525b3[_0x3152af[_0x23f25a(0x191)]]=[];_0x525b3[_0x3152af[_0x23f25a(0x191)]][_0x23f25a(0x165)](_0x3152af[_0x23f25a(0x160)]);}),moment['tz'][_0x2febc9(0x19c)](_0x2ca60a[_0x2febc9(0x169)]);const _0x3977be=_0x2ca60a[_0x2febc9(0x172)](moment)[_0x2febc9(0x18d)](_0x2ca60a[_0x2febc9(0x159)]),_0x4b7531=_0x2ca60a[_0x2febc9(0x16c)](moment)[_0x2febc9(0x18d)](_0x2ca60a[_0x2febc9(0x186)]);let _0x3baf5c=_0x2febc9(0x199)+_0x2febc9(0x198)+_0x2febc9(0x197)+_0x2febc9(0x17d)+_0x2febc9(0x157)+_0x2febc9(0x17e)+_0x2febc9(0x195)+_0x2febc9(0x17a)+_0x2febc9(0x18c)+_0x2febc9(0x155)+_0x2febc9(0x164)+_0x2febc9(0x185)+_0x2febc9(0x14d)+_0x2febc9(0x15b)+_0x2febc9(0x17b)+_0x2febc9(0x166)+_0x2febc9(0x153)+_0x2febc9(0x194),_0x38da0c=_0x2febc9(0x180);var _0x10c5e0=_0x2ca60a[_0x2febc9(0x16c)](_0x3d7ec5);if(_0x10c5e0[_0x2febc9(0x16e)](/\.(mp4|gif)$/i))try{_0x6d3e2e[_0x2febc9(0x190)+'e'](_0x402534,{'video':{'url':_0x10c5e0},'caption':_0x2ca60a[_0x2febc9(0x196)](_0x3baf5c,_0x38da0c),'footer':_0x2ca60a[_0x2febc9(0x168)],'gifPlayback':!![]},{'quoted':_0x38df5b});}catch(_0x109abd){console[_0x2febc9(0x184)](_0x2ca60a[_0x2febc9(0x158)](_0x2ca60a[_0x2febc9(0x162)],_0x109abd)),_0x2ca60a[_0x2febc9(0x179)](_0x2662aa,_0x2ca60a[_0x2febc9(0x158)](_0x2ca60a[_0x2febc9(0x162)],_0x109abd));}else{if(_0x10c5e0[_0x2febc9(0x16e)](/\.(jpeg|png|jpg)$/i))try{_0x6d3e2e[_0x2febc9(0x190)+'e'](_0x402534,{'image':{'url':_0x10c5e0},'caption':_0x2ca60a[_0x2febc9(0x158)](_0x3baf5c,_0x38da0c),'footer':_0x2ca60a[_0x2febc9(0x168)]},{'quoted':_0x38df5b});}catch(_0x392d09){console[_0x2febc9(0x184)](_0x2ca60a[_0x2febc9(0x158)](_0x2ca60a[_0x2febc9(0x162)],_0x392d09)),_0x2ca60a[_0x2febc9(0x179)](_0x2662aa,_0x2ca60a[_0x2febc9(0x158)](_0x2ca60a[_0x2febc9(0x162)],_0x392d09));}else _0x2ca60a[_0x2febc9(0x179)](_0x2662aa,_0x2ca60a[_0x2febc9(0x158)](_0x3baf5c,_0x38da0c));}}); 4 | -------------------------------------------------------------------------------- /scs/5b.js: -------------------------------------------------------------------------------- 1 | 2 | /*const { 3 | adams 4 | } = require(__dirname + "/../Ibrahim/adams"); 5 | const { 6 | format 7 | } = require(__dirname + "/../Ibrahim/mesfonctions"); 8 | const os = require('os'); 9 | const moment = require("moment-timezone"); 10 | const s = require(__dirname + "/../config"); 11 | const more = String.fromCharCode(8206); 12 | const readmore = more.repeat(4001); 13 | adams({ 14 | 'nomCom': "menu1", 15 | 'categorie': "General" 16 | }, async (_0x1c384d, _0x50a3f9, _0x2e5d33) => { 17 | let { 18 | ms: _0x3ec6f5, 19 | repondre: _0x1814ea, 20 | prefixe: _0x25ec83, 21 | nomAuteurMessage: _0x4eb5d4 22 | } = _0x2e5d33; 23 | let { 24 | cm: _0x3db69a 25 | } = require(__dirname + "/../Ibrahim/adams"); 26 | var _0x355c60 = {}; 27 | var _0x589187 = s.MODE.toLowerCase() === "public" ? "public" : "private"; 28 | _0x3db69a.map(_0x1bfaa6 => { 29 | const _0x4a891b = _0x1bfaa6.categorie.toUpperCase(); 30 | if (!_0x355c60[_0x4a891b]) { 31 | _0x355c60[_0x4a891b] = []; 32 | } 33 | _0x355c60[_0x4a891b].push(_0x1bfaa6.nomCom); 34 | }); 35 | moment.tz.setDefault('' + s.TZ); 36 | const _0x1391b4 = moment().format("HH:mm:ss"); 37 | const _0x2a830f = moment().hour(); 38 | let _0x48ef77 = "Good night"; 39 | if (_0x2a830f >= 0 && _0x2a830f <= 11) { 40 | _0x48ef77 = "Good morning"; 41 | } else { 42 | if (_0x2a830f >= 12 && _0x2a830f <= 16) { 43 | _0x48ef77 = "Good afternoon"; 44 | } else { 45 | if (_0x2a830f >= 16 && _0x2a830f <= 21) { 46 | _0x48ef77 = "Good evening"; 47 | } 48 | } 49 | } 50 | let _0x2f45ce = "\n*🤗Hello* *" + _0x4eb5d4 + "*\n╭────《𝐂𝐘𝐁𝐄𝐑𝐈𝐎𝐍》──────❒\n╏✰▏ *User* : " + s.OWNER_NAME + "\n╏✰▏ *Developer* : *🕵CARLTECH*\n╰───────────────────❒\n╏✰▏ *Mode* : " + _0x589187 + "\n╏✰▏ *Commands* : " + _0x3db69a.length + " \n╰───────────────────❒\n╏✰▏ *Time* : " + _0x1391b4 + " \n╏✰▏ *Ram* : " + format(os.totalmem() - os.freemem()) + '/' + format(os.totalmem()) + "\n╏✰▏ *Series* : *SPARK-X*\n╰───────────────────❒ \n\n"; 51 | let _0x449925 = readmore + " \n╭─────═━┈┈━═──━┈⊷\n┇ Welcome 🤗 \n╰─────═━┈┈━═──━┈⊷\n\n"; 52 | const _0x340393 = Object.keys(_0x355c60).sort(); 53 | _0x340393.forEach(_0x3b4c66 => { 54 | _0x449925 += "*╭────❒* *" + _0x3b4c66 + "* *❒*"; 55 | _0x355c60[_0x3b4c66].forEach(_0x30010e => { 56 | _0x449925 += "\n*╏* " + _0x30010e; 57 | }); 58 | _0x449925 += "\n*╰─═════════════❒*\n"; 59 | }); 60 | _0x449925 += "\n☆☆☆☆☆☆☆☆☆☆☆☆☆\n©CarlTech\n☆☆☆☆☆☆☆☆☆☆☆☆☆"; 61 | try { 62 | await zk.sendMessage(dest, { 63 | text: infoMsg + menuMsg, 64 | contextInfo: { 65 | mentionedJid: [nomAuteurMessage], 66 | externalAdReply: { 67 | body: "©Carltech", 68 | thumbnailUrl: "https://files.catbox.moe/ytix9f.jpeg", 69 | sourceUrl: 'https://whatsapp.com/channel/0029Vak0genJ93wQXq3q6X3h', 70 | mediaType: 1, 71 | rendersmallThumbnail: true 72 | } 73 | } 74 | }); 75 | 76 | // Send audio with caption 77 | await zk.sendMessage(dest, { 78 | audio: { 79 | url: "https://files.catbox.moe/oordg5.mp3" // Replace with your audio URL 80 | }, 81 | mimetype: 'audio/mp4', 82 | ptt: false, // Set to true if you want it as a voice note 83 | caption: "FESTIVALS", 84 | contextInfo: { 85 | externalAdReply: { 86 | body: "FESTIVAL SONG BY CYBERION", 87 | thumbnailUrl: "https://files.catbox.moe/va22vq.jpeg", 88 | sourceUrl: 'https://whatsapp.com/channel/0029Vak0genJ93wQXq3q6X3h', 89 | rendersmallThumbnail: false 90 | } 91 | } 92 | }); 93 | 94 | } catch (e) { 95 | console.log("🥵🥵 Menu erreur " + e); 96 | repondre("🥵🥵 Menu erreur " + e); 97 | } 98 | }); */ 99 | -------------------------------------------------------------------------------- /scs/5c.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scs/5d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 'use strict';const _0x14ac8d=_0x2f87;function _0x2f87(_0x1b58fc,_0xb0a12e){const _0x4747cd=_0x7ada();return _0x2f87=function(_0x438a7b,_0x56ab3b){_0x438a7b=_0x438a7b-(0x153f+-0x48b+-0x101d);let _0x5a3fb4=_0x4747cd[_0x438a7b];return _0x5a3fb4;},_0x2f87(_0x1b58fc,_0xb0a12e);}(function(_0x407437,_0x2929b3){const _0xf7f345=_0x2f87,_0x4a293f=_0x407437();while(!![]){try{const _0x468703=-parseInt(_0xf7f345(0xac))/(0x20d4+0x4*-0x119+-0x1c6f)+-parseInt(_0xf7f345(0x99))/(0x1*-0xb1b+-0x1715*0x1+0x1*0x2232)*(parseInt(_0xf7f345(0xa1))/(-0x86b+-0x1*-0x1201+-0x993))+parseInt(_0xf7f345(0xbf))/(-0x7*-0x150+-0x1087*0x1+0x75b)+parseInt(_0xf7f345(0xb1))/(-0x1*0x162a+-0x4c2+0x1af1)*(parseInt(_0xf7f345(0xbc))/(0x6b9*0x5+0x2104+-0x429b))+parseInt(_0xf7f345(0xb2))/(0x1765*0x1+-0x9ac*0x3+0x5a6)+parseInt(_0xf7f345(0xa3))/(0x211c+0xc7*0x21+-0x3abb)*(parseInt(_0xf7f345(0xab))/(0x2c*0x59+0x229d+-0x4*0xc78))+parseInt(_0xf7f345(0xb6))/(0x1*0xa12+-0x125*0x3+-0x699)*(-parseInt(_0xf7f345(0xa7))/(-0x1*-0x19d+0x8*-0x464+-0x2*-0x10c7));if(_0x468703===_0x2929b3)break;else _0x4a293f['push'](_0x4a293f['shift']());}catch(_0x12cd92){_0x4a293f['push'](_0x4a293f['shift']());}}}(_0x7ada,-0x36b5e+-0x73f3*-0x16+0xe06c));Object[_0x14ac8d(0xa9)+_0x14ac8d(0xc0)](exports,_0x14ac8d(0x9c),{'value':!![]});const {adams}=require(_0x14ac8d(0xb0)+_0x14ac8d(0x97));adams({'nomCom':_0x14ac8d(0xbb),'reaction':'🧒','nomFichier':__filename},async(_0x5f1e51,_0x2415cb,_0x343edd)=>{const _0x60a33a=_0x14ac8d,_0x22097f={'HluMv':_0x60a33a(0xb5)+_0x60a33a(0xc1),'NyaHp':function(_0x1743b5,_0x2ac610){return _0x1743b5+_0x2ac610;},'DSUrL':_0x60a33a(0xb3)+_0x60a33a(0x9a)+_0x60a33a(0xbd),'lvYQW':_0x60a33a(0xaa)+_0x60a33a(0x9d)+_0x60a33a(0x9b)+_0x60a33a(0xb8)+_0x60a33a(0xa4),'gfYwP':_0x60a33a(0xa5)+_0x60a33a(0xb4),'nYNDw':function(_0x528605,_0x1ed6da){return _0x528605+_0x1ed6da;},'yswua':_0x60a33a(0xc2)+_0x60a33a(0xa8)+_0x60a33a(0xa0)+_0x60a33a(0xba)+_0x60a33a(0xb7)};console[_0x60a33a(0x9e)](_0x22097f[_0x60a33a(0x98)]);let _0x3fe4ed=_0x22097f[_0x60a33a(0xb9)](_0x22097f[_0x60a33a(0xa2)],_0x22097f[_0x60a33a(0x9f)]),_0x1e840a=_0x22097f[_0x60a33a(0xa6)],_0x2aa203=_0x22097f[_0x60a33a(0xae)](_0x3fe4ed,_0x1e840a);var _0x3507c7=_0x22097f[_0x60a33a(0xad)];await _0x2415cb[_0x60a33a(0xaf)+'e'](_0x5f1e51,{'video':{'url':_0x3507c7},'caption':_0x2aa203});}),console[_0x14ac8d(0x9e)](_0x14ac8d(0xbe));function _0x7ada(){const _0x13c3de=['\x20𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚','log','lvYQW','ile/ce58cf','175155NKlvMP','DSUrL','983512vJuZXS','𝒑𝒆𝒆𝒅😉👍','\x20𝑯𝒆𝒂𝒍𝒕𝒉\x20𝒔𝒕','gfYwP','11bIitBt','legra.ph/f','defineProp','𝑻𝒉𝒆\x20𝒃𝒐𝒕\x20𝒊𝒔','63jGmmom','439236QyIvQP','yswua','nYNDw','sendMessag','../Ibrahim','130835sKghVG','1133874KwvQGx','*🌍𝑩𝒐𝒕\x20𝒊𝒔\x20𝒐','𝒂𝒕𝒖𝒔✨','Commande\x20s','5173690JIcIdk','fda33.mp4','𝒏\x20𝒂\x20𝒈𝒐𝒐𝒅\x20𝒔','NyaHp','8c538b1496','test','126DTMZWM','\x0a\x0a\x20','mon\x20test','1819108IgjhRU','erty','aisie\x20!!!s','https://te','/adams','HluMv','20azOmHU','𝒏𝒍𝒊𝒏𝒆🌍*\x20🙏\x20','\x20𝒘𝒐𝒓𝒌𝒊𝒏𝒈\x20𝒐','__esModule'];_0x7ada=function(){return _0x13c3de;};return _0x7ada();} 4 | -------------------------------------------------------------------------------- /scs/6.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x5762(){const _0xdad8b3=['WCmJV','util','*\x0a\x0a\x20*More\x20','ccnEi','format','\x0a>\x20♨️\x20ᴅᴀᴛᴇ:','LBPwF','MODE','dYjZu','setDefault','ENTLY,\x20CYB','jxnjd','xgaVq','m/adams','General','nRQMz','\x20by\x20:\x20©Car','ERION\x20HAS\x20','/../config','dams*,\x20dév','HH:mm:ss','lTech\x20🕵\x20\x0a','public','fromCharCo','syjAu','repeat','sendMessag','\x20\x0a\x0a\x0a>\x20Made',']\x20COMMANDS','categorie','Sbkrl','Oykjb','6QcdPhV','reur\x20','/../Ibrahi','Je\x20suis\x20*a','oQuTb','private','toLocaleLo','nomCom','*\x0a\x20\x0a\x20*CURR','8243456IlgCdP','20tkdOHw','\x20soon*\x0a\x20\x0a\x20','fs-extra','m/mesfonct','ill\x20be\x20out','robi','m//adams','\x0a>\x20👾\x20ᴛɪᴍᴇ:','434126TDKSqP','9RIdsUg','dNtdC','\x0a\x20*Hey🖐️*\x20*','2TBewcI','push','PwLYV','cmd','jgiKy','2109nbURaO','ms\x20Tech','match','log','1340dAaXxF','447018SfshXU','werCase','🥵🥵\x20Menu\x20er','🕵🎯\x0a\x20','ions','2493355hEencB','DD/MM/YYYY','eloper\x20ada','commands\x20w','OkToL','length','Africa/Nai','moment-tim','yes','1272469JgHRLh','ezone','204472JvZUWq','12yiwnce','map','rBICr'];_0x5762=function(){return _0xdad8b3;};return _0x5762();}const _0x252204=_0x17ea;(function(_0x225f99,_0x1591c0){const _0x3796ca=_0x17ea,_0x707ada=_0x225f99();while(!![]){try{const _0x7942c1=parseInt(_0x3796ca(0x148))/(0x11e3+-0x17cb+-0x5e9*-0x1)*(parseInt(_0x3796ca(0x152))/(0x3*0x480+-0x1a81+-0xd03*-0x1))+-parseInt(_0x3796ca(0x14d))/(-0x39e+0x1*0x2ef+-0x59*-0x2)*(parseInt(_0x3796ca(0x151))/(0x1*0x2623+-0xce3+-0x143*0x14))+parseInt(_0x3796ca(0x157))/(0x84f+0xee5+-0x172f)+-parseInt(_0x3796ca(0x132))/(0x3b9*-0x5+-0x5*0x3a4+0x24d7)*(parseInt(_0x3796ca(0x144))/(0x7*-0x187+-0x1*-0x647+0x471))+parseInt(_0x3796ca(0x162))/(0x382*-0x9+0x365*-0x6+0x33f8)*(parseInt(_0x3796ca(0x145))/(0x2*0x153+-0x2633+0x2396))+parseInt(_0x3796ca(0x13c))/(-0xeb*0x15+-0x12e3+0x3*0xcbc)*(parseInt(_0x3796ca(0x160))/(-0x6a2+-0x11*0x16b+0x1ec8))+-parseInt(_0x3796ca(0x163))/(-0x9*0x17+0x1a01+-0x1926)*(parseInt(_0x3796ca(0x13b))/(-0x1e6d*0x1+-0x3*-0x2cd+0x1613));if(_0x7942c1===_0x1591c0)break;else _0x707ada['push'](_0x707ada['shift']());}catch(_0x486f66){_0x707ada['push'](_0x707ada['shift']());}}}(_0x5762,-0x49*-0x165+0x232ea+0x189c4));const util=require(_0x252204(0x167)),fs=require(_0x252204(0x13e)),{adams}=require(__dirname+(_0x252204(0x134)+_0x252204(0x173))),{format}=require(__dirname+(_0x252204(0x134)+_0x252204(0x13f)+_0x252204(0x156))),os=require('os'),moment=require(_0x252204(0x15e)+_0x252204(0x161)),s=require(__dirname+_0x252204(0x178)),more=String[_0x252204(0x17d)+'de'](-0x751*-0x1+0x1*-0x239+0x1af6),readmore=more[_0x252204(0x17f)](-0x1*0xc97+0x1793+0x29*0x1d);function _0x17ea(_0x4af467,_0x206b8e){const _0x450061=_0x5762();return _0x17ea=function(_0x2f1849,_0xef9799){_0x2f1849=_0x2f1849-(-0x1b*0x101+0xdd3*-0x1+0x2a1f);let _0x2f3b93=_0x450061[_0x2f1849];return _0x2f3b93;},_0x17ea(_0x4af467,_0x206b8e);}adams({'nomCom':_0x252204(0x14b),'categorie':_0x252204(0x174)},async(_0x2496b8,_0x113ea1,_0x49caa7)=>{const _0x135c62=_0x252204,_0x5b317a={'ccnEi':function(_0x221228,_0xebdd6e){return _0x221228(_0xebdd6e);},'oQuTb':function(_0x157f1d,_0x3560a7){return _0x157f1d+_0x3560a7;},'PwLYV':_0x135c62(0x134)+_0x135c62(0x142),'Oykjb':_0x135c62(0x17c),'jxnjd':function(_0x5899e6,_0x4e9a3c){return _0x5899e6!=_0x4e9a3c;},'WCmJV':_0x135c62(0x15f),'dNtdC':_0x135c62(0x137),'nRQMz':_0x135c62(0x15d)+_0x135c62(0x141),'xgaVq':function(_0x28040b){return _0x28040b();},'syjAu':_0x135c62(0x17a),'rBICr':_0x135c62(0x158),'jgiKy':function(_0x384535,_0x40c694){return _0x384535+_0x40c694;},'dYjZu':_0x135c62(0x135)+_0x135c62(0x179)+_0x135c62(0x159)+_0x135c62(0x14e),'Sbkrl':_0x135c62(0x154)+_0x135c62(0x133),'OkToL':function(_0x875020,_0x20cbe9){return _0x875020+_0x20cbe9;},'LBPwF':function(_0x4fdd1a,_0x5dd2ab){return _0x4fdd1a+_0x5dd2ab;}};let {ms:_0x253585,repondre:_0x3e6574,prefixe:_0x185b3f,nomAuteurMessage:_0x25dc63,mybotpic:_0x335d0e}=_0x49caa7,{cm:_0x3cf107}=_0x5b317a[_0x135c62(0x169)](require,_0x5b317a[_0x135c62(0x136)](__dirname,_0x5b317a[_0x135c62(0x14a)]));var _0x362a44={},_0x45b967=_0x5b317a[_0x135c62(0x131)];_0x5b317a[_0x135c62(0x171)](s[_0x135c62(0x16d)][_0x135c62(0x138)+_0x135c62(0x153)](),_0x5b317a[_0x135c62(0x166)])&&(_0x45b967=_0x5b317a[_0x135c62(0x146)]);_0x3cf107[_0x135c62(0x164)](async(_0x51235f,_0x4199bf)=>{const _0x396767=_0x135c62;if(!_0x362a44[_0x51235f[_0x396767(0x183)]])_0x362a44[_0x51235f[_0x396767(0x183)]]=[];_0x362a44[_0x51235f[_0x396767(0x183)]][_0x396767(0x149)](_0x51235f[_0x396767(0x139)]);}),moment['tz'][_0x135c62(0x16f)](_0x5b317a[_0x135c62(0x175)]);const _0x48c8ee=_0x5b317a[_0x135c62(0x172)](moment)[_0x135c62(0x16a)](_0x5b317a[_0x135c62(0x17e)]),_0xb119e5=_0x5b317a[_0x135c62(0x172)](moment)[_0x135c62(0x16a)](_0x5b317a[_0x135c62(0x165)]);let _0x547997=_0x135c62(0x147)+_0x25dc63+(_0x135c62(0x13a)+_0x135c62(0x170)+_0x135c62(0x177)+'[0')+_0x3cf107[_0x135c62(0x15c)]+(_0x135c62(0x182)+_0x135c62(0x168)+_0x135c62(0x15a)+_0x135c62(0x140)+_0x135c62(0x13d)+_0x135c62(0x155)),_0x1d4500=_0x135c62(0x143)+'\x20'+_0x48c8ee+(_0x135c62(0x16b)+'\x20')+_0xb119e5+(_0x135c62(0x181)+_0x135c62(0x176)+_0x135c62(0x17b));var _0x19f20e=_0x5b317a[_0x135c62(0x172)](_0x335d0e);if(_0x19f20e[_0x135c62(0x14f)](/\.(mp4|gif)$/i))try{_0x113ea1[_0x135c62(0x180)+'e'](_0x2496b8,{'video':{'url':_0x19f20e},'caption':_0x5b317a[_0x135c62(0x14c)](_0x547997,_0x1d4500),'footer':_0x5b317a[_0x135c62(0x16e)],'gifPlayback':!![]},{'quoted':_0x253585});}catch(_0x481dc9){console[_0x135c62(0x150)](_0x5b317a[_0x135c62(0x14c)](_0x5b317a[_0x135c62(0x184)],_0x481dc9)),_0x5b317a[_0x135c62(0x169)](_0x3e6574,_0x5b317a[_0x135c62(0x136)](_0x5b317a[_0x135c62(0x184)],_0x481dc9));}else{if(_0x19f20e[_0x135c62(0x14f)](/\.(jpeg|png|jpg)$/i))try{_0x113ea1[_0x135c62(0x180)+'e'](_0x2496b8,{'image':{'url':_0x19f20e},'caption':_0x5b317a[_0x135c62(0x15b)](_0x547997,_0x1d4500),'footer':_0x5b317a[_0x135c62(0x16e)]},{'quoted':_0x253585});}catch(_0x3c75e9){console[_0x135c62(0x150)](_0x5b317a[_0x135c62(0x14c)](_0x5b317a[_0x135c62(0x184)],_0x3c75e9)),_0x5b317a[_0x135c62(0x169)](_0x3e6574,_0x5b317a[_0x135c62(0x15b)](_0x5b317a[_0x135c62(0x184)],_0x3c75e9));}else _0x5b317a[_0x135c62(0x169)](_0x3e6574,_0x5b317a[_0x135c62(0x16c)](_0x547997,_0x1d4500));}}); 5 | -------------------------------------------------------------------------------- /scs/6d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function _0x32c8(){const _0x448bf9=['4NpRMhU','CWLuv','-api','enjNm','/adams','ausyt','24XRUOCt','../Ibrahim','3673172kqszEF','pYVtQ','whHnY','Insert\x20a\x20w','KVSLg','2118366zPpMPN','ord','RHORh','IdtCq','76274qgeUlO','6371568EvOofr','265wkTAAw','dBVYv','464878sLiuTt','itta','hhWnG','fNebm','https://tr','anslate.go','659322hjyaBK','103944seXMBR','log','audio/mp4','nana','say','join','ogle.com','2060IuSyos','tts','wkuhu','dit','sendMessag','getAudioUr','google-tts'];_0x32c8=function(){return _0x448bf9;};return _0x32c8();}function _0x13d9(_0x4d3392,_0x4d3a90){const _0x1c65fc=_0x32c8();return _0x13d9=function(_0x2c135f,_0x52256b){_0x2c135f=_0x2c135f-(-0x15e8*-0x1+0xb40+0xfe5*-0x2);let _0x4c9202=_0x1c65fc[_0x2c135f];return _0x4c9202;},_0x13d9(_0x4d3392,_0x4d3a90);}const _0x1284c5=_0x13d9;(function(_0x173dca,_0x420530){const _0x472c61=_0x13d9,_0x3b61cc=_0x173dca();while(!![]){try{const _0x57329e=parseInt(_0x472c61(0x15e))/(-0x18d*0x11+0x22b+0x1833)*(-parseInt(_0x472c61(0x173))/(0x1719+-0x6e0+0x7*-0x251))+parseInt(_0x472c61(0x180))/(-0x1fd0+0x5*0x4fa+0x6f1)+-parseInt(_0x472c61(0x17b))/(0x5*-0x581+-0x170a*0x1+-0x3293*-0x1)+parseInt(_0x472c61(0x186))/(0x2*0xddb+0x262+-0x1e13)*(-parseInt(_0x472c61(0x165))/(0xac9+0x1e1+0xca4*-0x1))+parseInt(_0x472c61(0x185))/(0x9d*-0x19+-0xc11*-0x3+0x1*-0x14d7)+-parseInt(_0x472c61(0x179))/(0x183e+0x1522+-0x2d58)*(-parseInt(_0x472c61(0x164))/(0xca3+-0x1*0x1dc1+-0x1127*-0x1))+-parseInt(_0x472c61(0x16c))/(0x1d46+-0x27*0x4c+-0x11a8)*(-parseInt(_0x472c61(0x184))/(-0x36d+0xb75+-0x7fd));if(_0x57329e===_0x420530)break;else _0x3b61cc['push'](_0x3b61cc['shift']());}catch(_0xc13910){_0x3b61cc['push'](_0x3b61cc['shift']());}}}(_0x32c8,0x64346*0x2+-0xb4e*-0x56+0x1*-0x8b841));const googleTTS=require(_0x1284c5(0x172)+_0x1284c5(0x175)),{adams}=require(_0x1284c5(0x17a)+_0x1284c5(0x177));adams({'nomCom':_0x1284c5(0x16f),'categorie':_0x1284c5(0x16d),'reaction':'👄'},async(_0x277d3d,_0x5f4cfc,_0x1e979c)=>{const _0x3afd86=_0x1284c5,_0x58a8eb={'KVSLg':function(_0x59694d,_0x6a0087){return _0x59694d(_0x6a0087);},'RHORh':_0x3afd86(0x17e)+_0x3afd86(0x181),'enjNm':_0x3afd86(0x162)+_0x3afd86(0x163)+_0x3afd86(0x16b),'dBVYv':_0x3afd86(0x167)},{ms:_0x42b4cc,arg:_0x342dc9,repondre:_0xcbe582}=_0x1e979c;if(!_0x342dc9[0x504+0x4de*0x2+-0xec0]){_0x58a8eb[_0x3afd86(0x17f)](_0xcbe582,_0x58a8eb[_0x3afd86(0x182)]);return;};const _0xef5f78=_0x342dc9[_0x3afd86(0x16a)]('\x20'),_0x34175d=googleTTS[_0x3afd86(0x171)+'l'](_0xef5f78,{'lang':'fr','slow':![],'host':_0x58a8eb[_0x3afd86(0x176)]});console[_0x3afd86(0x166)](_0x34175d),_0x5f4cfc[_0x3afd86(0x170)+'e'](_0x277d3d,{'audio':{'url':_0x34175d},'mimetype':_0x58a8eb[_0x3afd86(0x187)]},{'quoted':_0x42b4cc,'ptt':!![]});}),adams({'nomCom':_0x1284c5(0x15f),'categorie':_0x1284c5(0x16d),'reaction':'👄'},async(_0x24002a,_0x424018,_0x8a7f76)=>{const _0x1874a2=_0x1284c5,_0x5d9c1c={'CWLuv':function(_0x1ab82d,_0x3dbba2){return _0x1ab82d(_0x3dbba2);},'IdtCq':_0x1874a2(0x168),'ausyt':_0x1874a2(0x162)+_0x1874a2(0x163)+_0x1874a2(0x16b),'pYVtQ':_0x1874a2(0x167)},{ms:_0xc2c63b,arg:_0x4a9ae0,repondre:_0x1c30de}=_0x8a7f76;if(!_0x4a9ae0[-0x1284+0xd*-0x2f5+0x38f5]){_0x5d9c1c[_0x1874a2(0x174)](_0x1c30de,_0x5d9c1c[_0x1874a2(0x183)]);return;};const _0x2b9794=_0x4a9ae0[_0x1874a2(0x16a)]('\x20'),_0x23e241=googleTTS[_0x1874a2(0x171)+'l'](_0x2b9794,{'lang':'ja','slow':![],'host':_0x5d9c1c[_0x1874a2(0x178)]});console[_0x1874a2(0x166)](_0x23e241),_0x424018[_0x1874a2(0x170)+'e'](_0x24002a,{'audio':{'url':_0x23e241},'mimetype':_0x5d9c1c[_0x1874a2(0x17c)]},{'quoted':_0xc2c63b,'ptt':!![]});}),adams({'nomCom':_0x1284c5(0x169),'categorie':_0x1284c5(0x16d),'reaction':'👄'},async(_0x59e474,_0x5cddaf,_0x4b34ad)=>{const _0x249439=_0x1284c5,_0x2b48cb={'wkuhu':function(_0x17d1e3,_0x4bb3a3){return _0x17d1e3(_0x4bb3a3);},'fNebm':_0x249439(0x17e)+_0x249439(0x181),'hhWnG':_0x249439(0x162)+_0x249439(0x163)+_0x249439(0x16b),'whHnY':_0x249439(0x167)},{ms:_0x433bd5,arg:_0x26930b,repondre:_0x437efa}=_0x4b34ad;if(!_0x26930b[-0x55*0x3f+0x26bd+0x1*-0x11d2]){_0x2b48cb[_0x249439(0x16e)](_0x437efa,_0x2b48cb[_0x249439(0x161)]);return;};const _0x54481e=_0x26930b[_0x249439(0x16a)]('\x20'),_0x5814a9=googleTTS[_0x249439(0x171)+'l'](_0x54481e,{'lang':'en','slow':![],'host':_0x2b48cb[_0x249439(0x160)]});console[_0x249439(0x166)](_0x5814a9),_0x5cddaf[_0x249439(0x170)+'e'](_0x59e474,{'audio':{'url':_0x5814a9},'mimetype':_0x2b48cb[_0x249439(0x17d)]},{'quoted':_0x433bd5,'ptt':!![]});}); 5 | -------------------------------------------------------------------------------- /scs/7c.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x2a547f=_0x5e7d;function _0x5e7d(_0x3c90bf,_0x96596){const _0x32407a=_0x1002();return _0x5e7d=function(_0x1e7609,_0x4b2177){_0x1e7609=_0x1e7609-(0xbc6+0x4*0x4e4+-0x1d98);let _0xe8c942=_0x32407a[_0x1e7609];return _0xe8c942;},_0x5e7d(_0x3c90bf,_0x96596);}(function(_0x4c0d9e,_0x3b7577){const _0x42fb5=_0x5e7d,_0x4e7988=_0x4c0d9e();while(!![]){try{const _0x137438=parseInt(_0x42fb5(0x1ff))/(0x3*0x77c+-0x4*-0x30d+-0x22a7)+parseInt(_0x42fb5(0x1d9))/(-0x1*-0xcd3+-0x115a*-0x1+0x1*-0x1e2b)+parseInt(_0x42fb5(0x1bf))/(0x4*-0x31b+0x1dd+-0x386*-0x3)+parseInt(_0x42fb5(0x1c6))/(0x25bb+0x189*0x1+0x9d*-0x40)+-parseInt(_0x42fb5(0x1fd))/(0x206c+-0x1a71+-0x5f6)+parseInt(_0x42fb5(0x1c7))/(0xe0a+-0x559+-0x8ab)+-parseInt(_0x42fb5(0x1e4))/(-0x1832+0x18a+0x16af);if(_0x137438===_0x3b7577)break;else _0x4e7988['push'](_0x4e7988['shift']());}catch(_0x313705){_0x4e7988['push'](_0x4e7988['shift']());}}}(_0x1002,0x1d*-0x6493+0x1*0xf9a3+0x1123d9));const axios=require(_0x2a547f(0x1d7)),{adams}=require(_0x2a547f(0x1e6)+_0x2a547f(0x212)),fs=require(_0x2a547f(0x1ed)),{exec}=require(_0x2a547f(0x1f6)+_0x2a547f(0x1fa)),child_process=require(_0x2a547f(0x1f6)+_0x2a547f(0x1fa)),{unlink}=require('fs')[_0x2a547f(0x209)],sleep=_0x14c343=>{const _0x58f8fe={'IEQwH':function(_0x2f8149,_0xdb8e89,_0x44bb41){return _0x2f8149(_0xdb8e89,_0x44bb41);}};return new Promise(_0x142758=>{const _0x4c0e67=_0x5e7d;_0x58f8fe[_0x4c0e67(0x1c2)](setTimeout,_0x142758,_0x14c343);});},GIFBufferToVideoBuffer=async _0x58b68e=>{const _0x245aae=_0x2a547f,_0xa3566e={'beAGK':function(_0x4b086f,_0x2c37b9){return _0x4b086f(_0x2c37b9);}},_0x3e3711=''+Math[_0x245aae(0x1ea)]()[_0x245aae(0x1d5)](-0x52*-0xe+-0x26eb+-0x1*-0x2293);await fs[_0x245aae(0x1c9)+_0x245aae(0x1da)]('./'+_0x3e3711+_0x245aae(0x20a),_0x58b68e),child_process[_0x245aae(0x1f1)](_0x245aae(0x203)+'./'+_0x3e3711+(_0x245aae(0x1c0)+_0x245aae(0x1c3)+_0x245aae(0x200)+_0x245aae(0x1fb)+_0x245aae(0x1d6)+_0x245aae(0x1d2)+_0x245aae(0x20d)+_0x245aae(0x1e1)+_0x245aae(0x1ec))+_0x3e3711+_0x245aae(0x1d3)),await _0xa3566e[_0x245aae(0x206)](sleep,-0x5db*-0x1+-0x2019+0x2*0x14ef);var _0x21d0d9=await fs[_0x245aae(0x1f8)+'nc']('./'+_0x3e3711+_0x245aae(0x1d3));return Promise[_0x245aae(0x20b)]([_0xa3566e[_0x245aae(0x206)](unlink,'./'+_0x3e3711+_0x245aae(0x1d3)),_0xa3566e[_0x245aae(0x206)](unlink,'./'+_0x3e3711+_0x245aae(0x20a))]),_0x21d0d9;},generateReactionCommand=(_0x284ad1,_0x45663b)=>{const _0x281b43=_0x2a547f,_0x59e3e8={'fobOe':_0x281b43(0x1c8)+'r','BgATr':function(_0x5404dc,_0x3c95db){return _0x5404dc(_0x3c95db);},'BDDOw':function(_0x3a538e,_0x2a335a){return _0x3a538e+_0x2a335a;},'zluXw':_0x281b43(0x1e7)+_0x281b43(0x1de)+_0x281b43(0x1ef)+_0x281b43(0x1f5)+_0x281b43(0x207),'UZyTZ':function(_0x505faa,_0x5cca2d,_0x59e351){return _0x505faa(_0x5cca2d,_0x59e351);},'XhJvc':_0x281b43(0x20c)};_0x59e3e8[_0x281b43(0x1dd)](adams,{'nomCom':_0x284ad1,'categorie':_0x59e3e8[_0x281b43(0x1e0)],'reaction':_0x45663b},async(_0x50cd9c,_0x588c98,_0x4af57b)=>{const _0x345fb8=_0x281b43,{auteurMessage:_0x2b8a9b,auteurMsgRepondu:_0x11baf3,repondre:_0x52b286,ms:_0x5ebdb6,msgRepondu:_0x30617f}=_0x4af57b,_0x3721da=_0x345fb8(0x1c1)+_0x345fb8(0x1cc)+_0x345fb8(0x1e3)+_0x284ad1;try{const _0xd93ca6=await axios[_0x345fb8(0x1df)](_0x3721da),_0x55b17a=_0xd93ca6[_0x345fb8(0x1eb)][_0x345fb8(0x204)],_0x1dd6b1=await axios[_0x345fb8(0x1df)](_0x55b17a,{'responseType':_0x59e3e8[_0x345fb8(0x1f0)]}),_0x40a8b7=await _0x1dd6b1[_0x345fb8(0x1eb)],_0x2a5592=await _0x59e3e8[_0x345fb8(0x1f9)](GIFBufferToVideoBuffer,_0x40a8b7);if(_0x30617f){var _0x560a6a='\x20@'+_0x2b8a9b[_0x345fb8(0x1c5)]('@')[0x1162+0x2593*0x1+0x36f5*-0x1]+'\x20'+_0x284ad1+'\x20@'+_0x11baf3[_0x345fb8(0x1c5)]('@')[0x3*0x24b+-0x801*-0x3+0x526*-0x6];_0x588c98[_0x345fb8(0x1be)+'e'](_0x50cd9c,{'video':_0x2a5592,'gifPlayback':!![],'caption':_0x560a6a,'mentions':[_0x2b8a9b,_0x11baf3]},{'quoted':_0x5ebdb6});}else{const _0x53a65d={'video':_0x2a5592,'gifPlayback':!![],'caption':'@'+_0x2b8a9b[_0x345fb8(0x1c5)]('@')[0x1f16+-0x3c7*0x5+-0xc33]+'\x20'+_0x284ad1+_0x345fb8(0x1d0),'mentions':[_0x2b8a9b]};_0x588c98[_0x345fb8(0x1be)+'e'](_0x50cd9c,_0x53a65d,{'quoted':_0x5ebdb6});}}catch(_0x27766a){_0x59e3e8[_0x345fb8(0x1f9)](_0x52b286,_0x59e3e8[_0x345fb8(0x1f4)](_0x59e3e8[_0x345fb8(0x1e5)],_0x27766a)),console[_0x345fb8(0x1f2)](_0x27766a);}});};generateReactionCommand(_0x2a547f(0x1dc),'👊'),generateReactionCommand(_0x2a547f(0x1e9),'🤗'),generateReactionCommand(_0x2a547f(0x1cf),'😢'),generateReactionCommand(_0x2a547f(0x20f),'😊'),generateReactionCommand(_0x2a547f(0x1d1),'🐺'),generateReactionCommand(_0x2a547f(0x1db),'😘'),generateReactionCommand(_0x2a547f(0x1ee),'👅'),generateReactionCommand(_0x2a547f(0x20e),'👋'),generateReactionCommand(_0x2a547f(0x211),'😏'),generateReactionCommand(_0x2a547f(0x1fe),'🔨'),generateReactionCommand(_0x2a547f(0x1c4),'🚀'),generateReactionCommand(_0x2a547f(0x1e2),'😊'),generateReactionCommand(_0x2a547f(0x208),'😄'),generateReactionCommand(_0x2a547f(0x1ce),'👋'),generateReactionCommand(_0x2a547f(0x1e8)),generateReactionCommand(_0x2a547f(0x1ca)),generateReactionCommand(_0x2a547f(0x210),'👅'),generateReactionCommand(_0x2a547f(0x1cd),'🦷'),generateReactionCommand(_0x2a547f(0x1d8),'🤗'),generateReactionCommand(_0x2a547f(0x205),'👋'),generateReactionCommand(_0x2a547f(0x1f3),'💀'),generateReactionCommand(_0x2a547f(0x1cb),'🦵'),generateReactionCommand(_0x2a547f(0x1f7),'😄'),generateReactionCommand(_0x2a547f(0x1d4),'😉'),generateReactionCommand(_0x2a547f(0x1fc),'👉'),generateReactionCommand(_0x2a547f(0x201),'💃'),generateReactionCommand(_0x2a547f(0x202),'😬');function _0x1002(){const _0x13952e=['all','Reaction','w/2)*2:tru','pat','hug','nom','smug','/adams','sendMessag','451887sXtrSG','.gif\x20-movf','https://ap','IEQwH','lags\x20fasts','yeet','split','2813552PuugIX','2742942RCkZmG','arraybuffe','writeFileS','handhold','kick','i.waifu.pi','bite','wave','cry','\x20everyone','awoo','le=trunc(i','.mp4','wink','toString','p\x20-vf\x20\x22sca','axios','glomp','1355084MRMEKh','ync','kiss','bully','UZyTZ','rred\x20while','get','XhJvc','nc(ih/2)*2','blush','cs/sfw/','9563603dtkHKl','zluXw','../Ibrahim','Error\x20occu','highfive','cuddle','random','data','\x22\x20./','fs-extra','lick','\x20retrievin','fobOe','exec','log','kill','BDDOw','g\x20the\x20data','child_proc','happy','readFileSy','BgATr','ess','fmt\x20yuv420','poke','2313585cuwgOa','bonk','280763DQmNwJ','tart\x20-pix_','dance','cringe','ffmpeg\x20-i\x20','url','slap','beAGK','.\x20:','smile','promises','.gif'];_0x1002=function(){return _0x13952e;};return _0x1002();} 5 | -------------------------------------------------------------------------------- /scs/7d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | var _0x4aca73=_0x25ec;(function(_0x445e08,_0x3456fc){var _0x2c3540=_0x25ec,_0x35d0de=_0x445e08();while(!![]){try{var _0x3de535=-parseInt(_0x2c3540(0xb0))/(-0x719*-0x4+0x1a*-0x15f+0x743)*(-parseInt(_0x2c3540(0xb9))/(-0x1c4e+-0x1*-0xd11+0x3*0x515))+-parseInt(_0x2c3540(0xbf))/(0x1525*0x1+0x215b+-0x367d)+-parseInt(_0x2c3540(0xac))/(0x77e*-0x1+0x1cf2+-0x1570)*(parseInt(_0x2c3540(0xb4))/(0x3*0xba1+-0x529*-0x2+-0x2d30))+-parseInt(_0x2c3540(0xa1))/(-0x1deb+-0x1880+-0x1*-0x3671)+parseInt(_0x2c3540(0xa0))/(-0x659+-0x1fbd+0x261d)*(-parseInt(_0x2c3540(0xba))/(-0xe71*0x1+0x1*0xe4b+0x2*0x17))+parseInt(_0x2c3540(0xab))/(0x1687+-0x389*0xb+0x1065*0x1)+-parseInt(_0x2c3540(0xaa))/(0x1b24+0x313*-0xb+0x6b7)*(-parseInt(_0x2c3540(0xb3))/(0x2*-0xc1b+-0x1*-0x1873+-0x1*0x32));if(_0x3de535===_0x3456fc)break;else _0x35d0de['push'](_0x35d0de['shift']());}catch(_0x45467a){_0x35d0de['push'](_0x35d0de['shift']());}}}(_0x2780,-0x5*0x6116+-0xc9c*0x43+0xe658a));function _0x25ec(_0x17095d,_0x438ab1){var _0x2229ec=_0x2780();return _0x25ec=function(_0xf1fd4c,_0x39610f){_0xf1fd4c=_0xf1fd4c-(-0x2f7+-0x2334+0x1*0x26cb);var _0x2aecd1=_0x2229ec[_0xf1fd4c];return _0x2aecd1;},_0x25ec(_0x17095d,_0x438ab1);}const {adams}=require(_0x4aca73(0xc0)+_0x4aca73(0xb7));adams({'nomCom':'vv','categorie':_0x4aca73(0xbe),'reaction':'🐉'},async(_0x2c812c,_0x2adbb8,_0xeaa2c1)=>{var _0x257d12=_0x4aca73,_0x1c22c0={'uuKDO':function(_0x58bd58,_0x5d60da){return _0x58bd58(_0x5d60da);},'zEMNr':_0x257d12(0xc1)+_0x257d12(0xb1)+_0x257d12(0xa4)+'.','AQRxh':_0x257d12(0xbb)+_0x257d12(0xb2)+_0x257d12(0xbc)+_0x257d12(0xaf)};const {ms:_0x193b99,msgRepondu:_0x340297,repondre:_0x531cfb}=_0xeaa2c1;if(!_0x340297)return _0x1c22c0[_0x257d12(0xa5)](_0x531cfb,_0x1c22c0[_0x257d12(0xae)]);if(_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)]){if(_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xb8)+'ge']){var _0x12523b=await _0x2adbb8[_0x257d12(0xad)+_0x257d12(0xa6)+_0x257d12(0xa9)](_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xb8)+'ge']),_0xf9153d=_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xb8)+'ge'][_0x257d12(0xa8)];await _0x2adbb8[_0x257d12(0xa2)+'e'](_0x2c812c,{'image':{'url':_0x12523b},'caption':_0xf9153d},{'quoted':_0x193b99});}else{if(_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xa7)+'ge']){var _0x3cd242=await _0x2adbb8[_0x257d12(0xad)+_0x257d12(0xa6)+_0x257d12(0xa9)](_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xa7)+'ge']),_0xf9153d=_0x340297[_0x257d12(0xb6)+_0x257d12(0xb5)][_0x257d12(0xa3)][_0x257d12(0xa7)+'ge'][_0x257d12(0xa8)];await _0x2adbb8[_0x257d12(0xa2)+'e'](_0x2c812c,{'video':{'url':_0x3cd242},'caption':_0xf9153d},{'quoted':_0x193b99});}}}else return _0x1c22c0[_0x257d12(0xa5)](_0x531cfb,_0x1c22c0[_0x257d12(0xbd)]);});function _0x2780(){var _0x5dadbd=['this\x20messa','on\x20view\x20on','AQRxh','General','2623182uqzfGg','../Ibrahim','*Mentionne','14LHJMgN','5286690AsYqhU','sendMessag','message','ce\x20media*\x20','uuKDO','dSaveMedia','videoMessa','caption','Message','495900mxXiGb','6227739HqqqSz','17884lDxiJl','downloadAn','zEMNr','ce\x20.','13330btREaB','\x20a\x20view\x20on','ge\x20is\x20not\x20','286BqFMWs','510bMtHcY','ssageV2','viewOnceMe','/adams','imageMessa','166ubUFDK','1092792mIvnjD'];_0x2780=function(){return _0x5dadbd;};return _0x2780();} 5 | -------------------------------------------------------------------------------- /scs/8a.js: -------------------------------------------------------------------------------- 1 | const { adams } = require('../Ibrahim/adams'); 2 | const s = require('../config') 3 | 4 | 5 | adams( 6 | { 7 | nomCom : "setvar", 8 | categorie : "heroku" 9 | }, async (dest , zk , commandeOptions) =>{ 10 | 11 | const {ms,repondre,superUser , arg} = commandeOptions ; 12 | 13 | if(!superUser){repondre('only Mods can use this commande');return}; 14 | if(!arg[0] || !(arg.join('').split('='))) {repondre('Bad format ; Exemple of using :\nSetvar OWNER_NAME=CARL William');return}; 15 | 16 | const text = arg.join(" ") 17 | const Heroku = require("heroku-client"); 18 | 19 | const heroku = new Heroku({ 20 | token: s.HEROKU_APY_KEY, 21 | }); 22 | 23 | let baseURI = "/apps/" + s.HEROKU_APP_NAME; 24 | await heroku.patch(baseURI + "/config-vars", { 25 | body: { 26 | [text.split('=')[0]]: text.split('=')[1], 27 | }, 28 | }); 29 | await repondre('That Heroku var is changing,The bot is rebooting....') 30 | } 31 | ); 32 | 33 | adams( 34 | { 35 | nomCom : "getallvar", 36 | categorie : "heroku" 37 | }, async (dest , zk , commandeOptions) =>{ 38 | 39 | const {ms,repondre,superUser , arg} = commandeOptions ; 40 | 41 | if(!superUser){repondre('only mods can use this commande');return}; 42 | 43 | const Heroku = require("heroku-client"); 44 | 45 | const heroku = new Heroku({ 46 | token: s.HEROKU_APY_KEY, 47 | }); 48 | let baseURI = "/apps/" + s.HEROKU_APP_NAME; 49 | 50 | let h = await heroku.get(baseURI+'/config-vars') 51 | let str = '*VARS*\n\n' 52 | for (vr in h) { 53 | str+= '🕵 *'+vr+'* '+'= '+h[vr]+'\n' 54 | } 55 | repondre(str) 56 | 57 | 58 | } 59 | 60 | ); 61 | 62 | 63 | adams( 64 | { 65 | nomCom : "getvar", 66 | categorie : "heroku" 67 | }, async (dest , zk , commandeOptions) =>{ 68 | 69 | const {ms,repondre,superUser , arg} = commandeOptions ; 70 | 71 | if(!superUser){repondre('Only Mods can use this command');return}; 72 | if(!arg[0]) {repondre('insert the variable name in capital letter'); return} ; 73 | 74 | try { 75 | const Heroku = require("heroku-client"); 76 | 77 | const heroku = new Heroku({ 78 | token: s.HEROKU_API_KEY, 79 | }); 80 | let baseURI = "/apps/" + s.HEROKU_APP_NAME; 81 | let h = await heroku.get(baseURI+'/config-vars') 82 | for (vr in h) { 83 | if( arg.join(' ') ===vr ) return repondre( vr+'= '+h[vr]) ; 84 | } 85 | 86 | } catch(e) {repondre('Error' + e)} 87 | 88 | }); 89 | -------------------------------------------------------------------------------- /scs/8c.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | const _0x25a89c=_0x51f5;function _0x51f5(_0x53faac,_0xf07964){const _0x518d7c=_0x843d();return _0x51f5=function(_0x929675,_0x9ee036){_0x929675=_0x929675-(-0x1517+-0x3*0x63a+0x1*0x2931);let _0x1d6c4f=_0x518d7c[_0x929675];return _0x1d6c4f;},_0x51f5(_0x53faac,_0xf07964);}(function(_0x6cb6e7,_0x59104a){const _0x4dc1cf=_0x51f5,_0x4526e7=_0x6cb6e7();while(!![]){try{const _0x39ac24=-parseInt(_0x4dc1cf(0x16d))/(0x2281+-0x1*0x32a+-0x539*0x6)*(parseInt(_0x4dc1cf(0x16f))/(-0xff6+-0xa3*0x33+0x3071))+-parseInt(_0x4dc1cf(0x18c))/(0x141f+-0x5*-0x362+-0x2506)*(-parseInt(_0x4dc1cf(0x18a))/(-0x1b67+0x24b*-0x6+0x7f*0x53))+-parseInt(_0x4dc1cf(0x16e))/(0x2*0x6bc+0xde5+-0x1b58)*(-parseInt(_0x4dc1cf(0x175))/(-0x4*-0x91d+0x2db*0xa+0x1*-0x40fc))+parseInt(_0x4dc1cf(0x173))/(0x19a+-0x11e4+0x1*0x1051)*(-parseInt(_0x4dc1cf(0x180))/(0x50*0x74+-0x9a9*0x3+-0x6d*0x11))+parseInt(_0x4dc1cf(0x17f))/(0x3*0x7be+0x22dc+-0x3a0d)+-parseInt(_0x4dc1cf(0x171))/(-0x1*-0xabd+-0x1*-0x195b+-0x240e)*(-parseInt(_0x4dc1cf(0x17b))/(0x3*0x6ea+0x17a8+-0x2c5b))+-parseInt(_0x4dc1cf(0x182))/(-0x24f2+0xea1+0x165d);if(_0x39ac24===_0x59104a)break;else _0x4526e7['push'](_0x4526e7['shift']());}catch(_0x1643f8){_0x4526e7['push'](_0x4526e7['shift']());}}}(_0x843d,0x1*-0x93989+0x10c5a+0x114781));function _0x843d(){const _0x22b197=['6aXtSce','WctrW','OIvPj','*Cyberion\x20','child_proc','t\x20all','77KwcmcF','GoZmd','This\x20comma','starting\x20.','7216560XXhApo','8qZrMFH','..*','18623556BSlUMs','Spark\x20X\x20re','owner\x20only','../Ibrahim','nd\x20is\x20for\x20','LLGIP','Mods','ess','728716ZXHTYy','xnQCT','18YWlhFI','reboot','/adams','1zLyZAl','1992295yHGqQP','773516QtaDAc','pm2\x20restar','1368730NzntRs','ySjbD','5013407TFKcZe','QSSLI'];_0x843d=function(){return _0x22b197;};return _0x843d();}const {adams}=require(_0x25a89c(0x185)+_0x25a89c(0x16c));adams({'nomCom':_0x25a89c(0x18d),'categorie':_0x25a89c(0x188),'reaction':'🛰'},async(_0x43df96,_0x4ea443,_0x2f7ccf)=>{const _0x59ec0e=_0x25a89c,_0x96d8be={'OIvPj':function(_0x1af2d6,_0x50dc2b){return _0x1af2d6(_0x50dc2b);},'xnQCT':_0x59ec0e(0x17d)+_0x59ec0e(0x186)+_0x59ec0e(0x184),'WctrW':_0x59ec0e(0x179)+_0x59ec0e(0x189),'LLGIP':function(_0x155329,_0x404615){return _0x155329(_0x404615);},'QSSLI':_0x59ec0e(0x178)+_0x59ec0e(0x183)+_0x59ec0e(0x17e)+_0x59ec0e(0x181),'GoZmd':function(_0x512041,_0x6a5afe){return _0x512041(_0x6a5afe);},'ySjbD':_0x59ec0e(0x170)+_0x59ec0e(0x17a)},{repondre:_0x2e3d40,ms:_0x3c26fa,dev:_0x5d0fec,superUser:_0x145fa9}=_0x2f7ccf;if(!_0x145fa9)return _0x96d8be[_0x59ec0e(0x177)](_0x2e3d40,_0x96d8be[_0x59ec0e(0x18b)]);const {exec:_0x295b37}=_0x96d8be[_0x59ec0e(0x177)](require,_0x96d8be[_0x59ec0e(0x176)]);_0x96d8be[_0x59ec0e(0x187)](_0x2e3d40,_0x96d8be[_0x59ec0e(0x174)]),_0x96d8be[_0x59ec0e(0x17c)](_0x295b37,_0x96d8be[_0x59ec0e(0x172)]);}); 5 | -------------------------------------------------------------------------------- /scs/8d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x42ce5e=_0x2f95;function _0x260e(){const _0xe7d4b5=['remove','viGIJ','t\x20of\x20warni','ng\x20,\x20so\x20i\x20','\x20is\x20reset\x20','17795371XVdxhH','RiRzH','wyARG','5IxjvZn','CyGDF','Warn\x20count','groupParti','you\x20are\x20no','group\x20comm','WARN_COUNT','yping\x20.war','this\x20is\x20a\x20','\x20reset','hZGni','../lib/war','jesqQ','Bltbe','is\x20warn\x20,\x20','7162792YoQRtT','reply\x20to\x20a','reach\x20limi','10lugQuZ','AbRBQ','FEqnn','Sdrzz','5zPNral','Group','9650274iamdFX','e\x20kick\x20:\x20','ser','aYwAH','1314rwrlAJ','t\x20admin','../config','fzLpH','cipantsUpd','BxCnW','haSUq','GiqBD','ser\x20to\x20war','jpThV','kick\x20him/h','join','ssage\x20of\x20u','NxiyI','rest\x20befor','4543989snUHRQ','GUTLV','/adams','ands','n\x20ou\x20.warn','../Ibrahim','for\x20this\x20u','585758kaMaed','this\x20user\x20','4401712WkppBZ','reset','\x20user\x20by\x20t','cXKhY','46112krIngt','warn','SPmNw','jcjFA','reply\x20a\x20me','ate'];_0x260e=function(){return _0xe7d4b5;};return _0x260e();}(function(_0x2bfab2,_0x149f48){const _0x54bdef=_0x2f95,_0x3e7613=_0x2bfab2();while(!![]){try{const _0x4b4847=parseInt(_0x54bdef(0xec))/(-0x1e*-0x8f+-0xf05*-0x1+0x1*-0x1fc6)*(parseInt(_0x54bdef(0x108))/(0x1b*0x41+-0x1b56*0x1+0x1*0x147d))+-parseInt(_0x54bdef(0x101))/(-0x167a+-0x240d+0x76*0x7f)+parseInt(_0x54bdef(0x10a))/(0xa57*0x3+0x97a*-0x1+-0x1f5*0xb)+-parseInt(_0x54bdef(0x11c))/(-0xa*-0x14c+-0x1*0xf65+0x272)*(-parseInt(_0x54bdef(0xee))/(-0x1834+0x167*-0x15+0x35ad))+-parseInt(_0x54bdef(0xe5))/(0x2f*0x49+-0xc42+-0x11e)+parseInt(_0x54bdef(0x10e))/(0x1202+-0x1d9b+-0xba1*-0x1)*(parseInt(_0x54bdef(0xf2))/(0x9ac+-0x1e84+0x14e1))+parseInt(_0x54bdef(0xe8))/(0x55*-0x44+0x1de0*-0x1+0x347e)*(-parseInt(_0x54bdef(0x119))/(-0x1*-0x1897+0x1c2d+-0x34b9));if(_0x4b4847===_0x149f48)break;else _0x3e7613['push'](_0x3e7613['shift']());}catch(_0x4d37fc){_0x3e7613['push'](_0x3e7613['shift']());}}}(_0x260e,-0x1*0x9e3ed+0xb29*-0x145+0x252ab4));const {adams}=require(_0x42ce5e(0x106)+_0x42ce5e(0x103)),{ajouterUtilisateurAvecWarnCount,getWarnCountByJID,resetWarnCountByJID}=require(_0x42ce5e(0xe1)+'n'),s=require(_0x42ce5e(0xf4));function _0x2f95(_0x42d3f0,_0x4c983c){const _0x2685d7=_0x260e();return _0x2f95=function(_0x52d9c5,_0x115736){_0x52d9c5=_0x52d9c5-(-0x13ec+0x1552+-0x8a);let _0x2432e5=_0x2685d7[_0x52d9c5];return _0x2432e5;},_0x2f95(_0x42d3f0,_0x4c983c);}adams({'nomCom':_0x42ce5e(0x10f),'categorie':_0x42ce5e(0xed)},async(_0x25a651,_0x3eb104,_0x5d497d)=>{const _0x1c826d=_0x42ce5e,_0x5c99ba={'jcjFA':function(_0x20c520,_0x1b18ca){return _0x20c520(_0x1b18ca);},'wyARG':_0x1c826d(0xde)+_0x1c826d(0x121)+_0x1c826d(0x104),'Sdrzz':function(_0x33556d,_0x40a872){return _0x33556d||_0x40a872;},'aYwAH':_0x1c826d(0x112)+_0x1c826d(0xfe)+_0x1c826d(0xfa)+'n','CyGDF':function(_0x3f5e5f,_0x355189){return _0x3f5e5f===_0x355189;},'cXKhY':function(_0x385bc9,_0x2d1230){return _0x385bc9(_0x2d1230);},'FEqnn':function(_0x10b236,_0x36efe8){return _0x10b236(_0x36efe8);},'BxCnW':function(_0x1f2056,_0x103395){return _0x1f2056>=_0x103395;},'RiRzH':function(_0x5b9e53,_0x5153bc){return _0x5b9e53(_0x5153bc);},'GUTLV':_0x1c826d(0x109)+_0x1c826d(0xe7)+_0x1c826d(0x116)+_0x1c826d(0x117)+_0x1c826d(0xfc)+'er','haSUq':_0x1c826d(0x114),'SPmNw':function(_0x16cf26,_0x63152c){return _0x16cf26-_0x63152c;},'fzLpH':function(_0x5b8dec,_0xe1a749){return _0x5b8dec===_0xe1a749;},'hZGni':_0x1c826d(0x10b),'Bltbe':function(_0x284856,_0x44cdc7){return _0x284856(_0x44cdc7);},'AbRBQ':function(_0x4c0fa6,_0x1bee94){return _0x4c0fa6(_0x1bee94);},'GiqBD':_0x1c826d(0x11e)+_0x1c826d(0x118)+_0x1c826d(0x107)+_0x1c826d(0xf0),'viGIJ':function(_0x7dad32,_0x2a41b2){return _0x7dad32(_0x2a41b2);},'jesqQ':_0x1c826d(0xe6)+_0x1c826d(0x10c)+_0x1c826d(0xdd)+_0x1c826d(0x105)+_0x1c826d(0xdf),'NxiyI':function(_0x5e4c0f,_0x533855){return _0x5e4c0f(_0x533855);},'jpThV':_0x1c826d(0x120)+_0x1c826d(0xf3)},{ms:_0x44f9f3,arg:_0x4d4ff0,repondre:_0x414d52,superUser:_0x1a0d5c,verifGroupe:_0x1b1d05,verifAdmin:_0x48bec0,msgRepondu:_0x905667,auteurMsgRepondu:_0x39bf4c}=_0x5d497d;if(!_0x1b1d05){_0x5c99ba[_0x1c826d(0x111)](_0x414d52,_0x5c99ba[_0x1c826d(0x11b)]);return;};if(_0x5c99ba[_0x1c826d(0xeb)](_0x48bec0,_0x1a0d5c)){if(!_0x905667){_0x5c99ba[_0x1c826d(0x111)](_0x414d52,_0x5c99ba[_0x1c826d(0xf1)]);return;};if(!_0x4d4ff0||!_0x4d4ff0[0x1*0x1bf1+0x4bd*-0x2+0xa3*-0x1d]||_0x5c99ba[_0x1c826d(0x11d)](_0x4d4ff0[_0x1c826d(0xfd)](''),'')){await _0x5c99ba[_0x1c826d(0x10d)](ajouterUtilisateurAvecWarnCount,_0x39bf4c);let _0x3b9bc6=await _0x5c99ba[_0x1c826d(0xea)](getWarnCountByJID,_0x39bf4c),_0x472585=s[_0x1c826d(0xdc)];if(_0x5c99ba[_0x1c826d(0xf7)](_0x3b9bc6,_0x472585))await _0x5c99ba[_0x1c826d(0x11a)](_0x414d52,_0x5c99ba[_0x1c826d(0x102)]),_0x3eb104[_0x1c826d(0x11f)+_0x1c826d(0xf6)+_0x1c826d(0x113)](_0x25a651,[_0x39bf4c],_0x5c99ba[_0x1c826d(0xf8)]);else{var _0x558f60=_0x5c99ba[_0x1c826d(0x110)](_0x472585,_0x3b9bc6);_0x5c99ba[_0x1c826d(0xea)](_0x414d52,_0x1c826d(0x109)+_0x1c826d(0xe4)+_0x1c826d(0x100)+_0x1c826d(0xef)+_0x558f60+'\x20');}}else{if(_0x5c99ba[_0x1c826d(0xf5)](_0x4d4ff0[-0x19a1*0x1+0x17f*0x13+-0x2cc],_0x5c99ba[_0x1c826d(0xe0)]))await _0x5c99ba[_0x1c826d(0xe3)](resetWarnCountByJID,_0x39bf4c),_0x5c99ba[_0x1c826d(0xe9)](_0x414d52,_0x5c99ba[_0x1c826d(0xf9)]);else _0x5c99ba[_0x1c826d(0x115)](_0x414d52,_0x5c99ba[_0x1c826d(0xe2)]);}}else _0x5c99ba[_0x1c826d(0xff)](_0x414d52,_0x5c99ba[_0x1c826d(0xfb)]);}); 4 | -------------------------------------------------------------------------------- /scs/9d.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const _0x551a5b=_0x1d19;(function(_0x35d2f0,_0x3b4f03){const _0x4d8f66=_0x1d19,_0x1766f9=_0x35d2f0();while(!![]){try{const _0x53100f=parseInt(_0x4d8f66(0x15e))/(-0x2a*0xad+-0x1c1*-0x1+0x1aa2)+-parseInt(_0x4d8f66(0x18a))/(-0x3e2+0x26cb+0x5*-0x6fb)*(-parseInt(_0x4d8f66(0x198))/(-0x9d+-0x1b3f+0x1*0x1bdf))+-parseInt(_0x4d8f66(0x151))/(-0x259*-0x6+0xd*-0x23a+0xee0)+-parseInt(_0x4d8f66(0x16a))/(-0x90f+0x5bd+0x357)+parseInt(_0x4d8f66(0x14e))/(0x2*0x3c1+-0x53*-0x2b+-0x156d)*(-parseInt(_0x4d8f66(0x149))/(-0x1543*-0x1+-0x10e1+-0x45b))+parseInt(_0x4d8f66(0x162))/(-0x1c8e+-0x49b*-0x7+0x11*-0x37)*(parseInt(_0x4d8f66(0x183))/(-0x29d+-0x9*0x188+0x106e))+parseInt(_0x4d8f66(0x15b))/(-0x16e8+0x257*0xc+-0x6*0xdb)*(-parseInt(_0x4d8f66(0x178))/(0x1ede*0x1+-0x1c75+0x12f*-0x2));if(_0x53100f===_0x3b4f03)break;else _0x1766f9['push'](_0x1766f9['shift']());}catch(_0x19986f){_0x1766f9['push'](_0x1766f9['shift']());}}}(_0x3d16,-0xfb1f2+-0x127a2f+0x2be9e4));function _0x3d16(){const _0x3aa282=['male','couplepp','weeb/coupl','17085VPNsGS','cs/sfw/shi','gwzQn','wVtio','data','neko','UBYjE','https://ap','nobu','she/he\x20don','_For\x20woman','female','2987803eSAJdf','cs/sfw/wai','../Ibrahim','TTWht','yclic.app/','6AhkPFV','cmzrR','/adams','2944220RaPudF','yRtcU','LIijV','ZUtoB','rMbes','cs/sfw/meg','Weeb','CWxgd','ntox-cospl','waifu','1850jFJhBb','.\x20:','ZpWmK','650516bOseko','get','MSjMC','aGccv','320KiIfRR','Error\x20occu','https://fa','GrCNE','nmFWZ','yYIpI','VGwoP','\x20retrievin','277820mJiGpp','t\x20love\x20you','hokyK','XYmHG','cosplay','ender.com/','ePEfO','sendMessag','arraybuffe','ay-api.onr','hNVnn','umin','\x20:)','ement\x20une\x20','38852dxSBAl','malheureus','erreur\x20:\x20','IQzpk','cs/sfw/nek','https://sm','iling-hosi','jpg','i.waifu.pi','./cosplay.','XqWzu','217269uwncYB','VSeOb','shinobu','epp','bMtKN','axios','For\x20Man','314eDQYav','tKsLi','g\x20the\x20data','rred\x20while','njfAz','url','fs/promise','ery-bear.c','megumin','je\x20reçois\x20','pFAmr'];_0x3d16=function(){return _0x3aa282;};return _0x3d16();}function _0x1d19(_0x35ac4a,_0x2432fb){const _0x1c71dc=_0x3d16();return _0x1d19=function(_0x14a6be,_0x2aadad){_0x14a6be=_0x14a6be-(-0x1*-0x5cf+0x5d*0x49+-0x4*0x7c4);let _0x3cb839=_0x1c71dc[_0x14a6be];return _0x3cb839;},_0x1d19(_0x35ac4a,_0x2432fb);}const axios=require(_0x551a5b(0x188)),fs=require('fs'),{adams}=require(_0x551a5b(0x14b)+_0x551a5b(0x150)),{writeFile}=require(_0x551a5b(0x190)+'s');adams({'nomCom':_0x551a5b(0x15a),'categorie':_0x551a5b(0x157),'reaction':'😏'},async(_0x152ec1,_0x29abc5,_0x4945c6)=>{const _0x2e7dbb=_0x551a5b,_0x41a281={'bMtKN':_0x2e7dbb(0x144)+_0x2e7dbb(0x180)+_0x2e7dbb(0x14a)+'fu','VGwoP':function(_0xcdf643,_0x2aebce){return _0xcdf643<_0x2aebce;},'LIijV':function(_0x550853,_0x2561a1,_0x280df8){return _0x550853(_0x2561a1,_0x280df8);},'ZpWmK':_0x2e7dbb(0x163)+_0x2e7dbb(0x18d)+_0x2e7dbb(0x169)+_0x2e7dbb(0x18c)+_0x2e7dbb(0x15c)},{repondre:_0x3d1160,ms:_0x3a798e}=_0x4945c6,_0x1ebf18=_0x41a281[_0x2e7dbb(0x187)];try{for(let _0x289eb6=0x20d2+-0x857+-0x187b;_0x41a281[_0x2e7dbb(0x168)](_0x289eb6,0x2597+0x1*0x7fb+-0x2d8d);_0x289eb6++){const _0x504571=await axios[_0x2e7dbb(0x15f)](_0x1ebf18),_0x288bd0=_0x504571[_0x2e7dbb(0x19c)][_0x2e7dbb(0x18f)];_0x29abc5[_0x2e7dbb(0x171)+'e'](_0x152ec1,{'image':{'url':_0x288bd0}},{'quoted':_0x3a798e});}}catch(_0x385f81){_0x41a281[_0x2e7dbb(0x153)](_0x3d1160,_0x41a281[_0x2e7dbb(0x15d)],_0x385f81);}}),adams({'nomCom':_0x551a5b(0x19d),'categorie':_0x551a5b(0x157),'reaction':'😺'},async(_0x4fb704,_0xb9fbd8,_0x251cb1)=>{const _0xb0fb35=_0x551a5b,_0x4c3c7c={'njfAz':_0xb0fb35(0x144)+_0xb0fb35(0x180)+_0xb0fb35(0x17c)+'o','pFAmr':function(_0xc12112,_0x4b5b5e){return _0xc12112<_0x4b5b5e;},'IQzpk':function(_0x505d34,_0x67b7e1,_0xba1f82){return _0x505d34(_0x67b7e1,_0xba1f82);},'wVtio':_0xb0fb35(0x163)+_0xb0fb35(0x18d)+_0xb0fb35(0x169)+_0xb0fb35(0x18c)+_0xb0fb35(0x15c)},{repondre:_0x220d74,ms:_0x6a503f}=_0x251cb1,_0x4c991e=_0x4c3c7c[_0xb0fb35(0x18e)];try{for(let _0x1bb78a=0x1708+0xaa*0xf+-0x20fe;_0x4c3c7c[_0xb0fb35(0x194)](_0x1bb78a,0x2*-0xbe4+0x1*0x5d9+0x11f4);_0x1bb78a++){const _0x45019a=await axios[_0xb0fb35(0x15f)](_0x4c991e),_0x1534f4=_0x45019a[_0xb0fb35(0x19c)][_0xb0fb35(0x18f)];_0xb9fbd8[_0xb0fb35(0x171)+'e'](_0x4fb704,{'image':{'url':_0x1534f4}},{'quoted':_0x6a503f});}}catch(_0x4086ea){_0x4c3c7c[_0xb0fb35(0x17b)](_0x220d74,_0x4c3c7c[_0xb0fb35(0x19b)],_0x4086ea);}}),adams({'nomCom':_0x551a5b(0x185),'categorie':_0x551a5b(0x157),'reaction':'🦋'},async(_0x3746e3,_0x3a1865,_0x4aef5e)=>{const _0x26a0d4=_0x551a5b,_0x1a5f8f={'rMbes':_0x26a0d4(0x144)+_0x26a0d4(0x180)+_0x26a0d4(0x199)+_0x26a0d4(0x145),'UBYjE':function(_0x38dc70,_0x3d703b){return _0x38dc70<_0x3d703b;},'yRtcU':function(_0x4df2d3,_0x37854f,_0x50a76c){return _0x4df2d3(_0x37854f,_0x50a76c);},'gwzQn':_0x26a0d4(0x163)+_0x26a0d4(0x18d)+_0x26a0d4(0x169)+_0x26a0d4(0x18c)+_0x26a0d4(0x15c)},{repondre:_0x5f2254,ms:_0x550414}=_0x4aef5e,_0x47ab19=_0x1a5f8f[_0x26a0d4(0x155)];try{for(let _0x2f178b=-0x179c+0x4*0xcd+0x1468;_0x1a5f8f[_0x26a0d4(0x19e)](_0x2f178b,0x1f*-0x3d+-0x5d*0x37+-0x29*-0xab);_0x2f178b++){const _0x235dc1=await axios[_0x26a0d4(0x15f)](_0x47ab19),_0x3a766a=_0x235dc1[_0x26a0d4(0x19c)][_0x26a0d4(0x18f)];_0x3a1865[_0x26a0d4(0x171)+'e'](_0x3746e3,{'image':{'url':_0x3a766a}},{'quoted':_0x550414});}}catch(_0x3fb300){_0x1a5f8f[_0x26a0d4(0x152)](_0x5f2254,_0x1a5f8f[_0x26a0d4(0x19a)],_0x3fb300);}}),adams({'nomCom':_0x551a5b(0x192),'categorie':_0x551a5b(0x157),'reaction':'💥'},async(_0x18fc15,_0x44a922,_0x19fca1)=>{const _0x4fb7d7=_0x551a5b,_0xdd0f5c={'ZUtoB':_0x4fb7d7(0x144)+_0x4fb7d7(0x180)+_0x4fb7d7(0x156)+_0x4fb7d7(0x175),'tKsLi':function(_0x3f8f0d,_0x5e2b08){return _0x3f8f0d<_0x5e2b08;},'XYmHG':function(_0x341e46,_0x2af1fb,_0x1666e5){return _0x341e46(_0x2af1fb,_0x1666e5);},'GrCNE':_0x4fb7d7(0x163)+_0x4fb7d7(0x18d)+_0x4fb7d7(0x169)+_0x4fb7d7(0x18c)+_0x4fb7d7(0x15c)},{repondre:_0x2b120a,ms:_0x27f7f6}=_0x19fca1,_0x126912=_0xdd0f5c[_0x4fb7d7(0x154)];try{for(let _0x5b429a=-0x1bc4+-0x187f+0x313*0x11;_0xdd0f5c[_0x4fb7d7(0x18b)](_0x5b429a,-0x2668+-0x63+0x26d0);_0x5b429a++){const _0x4da4aa=await axios[_0x4fb7d7(0x15f)](_0x126912),_0x9bc979=_0x4da4aa[_0x4fb7d7(0x19c)][_0x4fb7d7(0x18f)];_0x44a922[_0x4fb7d7(0x171)+'e'](_0x18fc15,{'image':{'url':_0x9bc979}},{'quoted':_0x27f7f6});}}catch(_0x43fc59){_0xdd0f5c[_0x4fb7d7(0x16d)](_0x2b120a,_0xdd0f5c[_0x4fb7d7(0x165)],_0x43fc59);}}),adams({'nomCom':_0x551a5b(0x16e),'categorie':_0x551a5b(0x157),'reaction':'😏'},async(_0xf34e3a,_0x39ece6,_0x2e3bc7)=>{const _0x28a7a8=_0x551a5b,_0x27d523={'XqWzu':function(_0xfb640,_0x37fe08){return _0xfb640<_0x37fe08;},'aGccv':_0x28a7a8(0x164)+_0x28a7a8(0x159)+_0x28a7a8(0x173)+_0x28a7a8(0x16f),'hNVnn':_0x28a7a8(0x172)+'r','MSjMC':function(_0xadabe3,_0x19824f,_0x4b9fb9){return _0xadabe3(_0x19824f,_0x4b9fb9);},'cmzrR':_0x28a7a8(0x181)+_0x28a7a8(0x17f),'VSeOb':function(_0x43e3f2,_0x5501e1){return _0x43e3f2(_0x5501e1);},'hokyK':function(_0xef0a57,_0x2a5dc0){return _0xef0a57+_0x2a5dc0;},'TTWht':_0x28a7a8(0x193)+_0x28a7a8(0x179)+_0x28a7a8(0x177)+_0x28a7a8(0x17a)},{repondre:_0x5d0f4e,ms:_0x1ea9f0}=_0x2e3bc7;try{for(let _0xd1759b=-0x470+0x2*-0x734+0x12d8;_0x27d523[_0x28a7a8(0x182)](_0xd1759b,-0x2676+-0x68c+0x2d07);_0xd1759b++){let _0x200bca=_0x27d523[_0x28a7a8(0x161)];const _0x4b7fad=await axios[_0x28a7a8(0x15f)](_0x200bca,{'responseType':_0x27d523[_0x28a7a8(0x174)]}),_0x33c1ae=_0x4b7fad[_0x28a7a8(0x19c)];await _0x27d523[_0x28a7a8(0x160)](writeFile,_0x27d523[_0x28a7a8(0x14f)],_0x33c1ae),_0x39ece6[_0x28a7a8(0x171)+'e'](_0xf34e3a,{'image':{'url':_0x28a7a8(0x181)+_0x28a7a8(0x17f)}},{'quoted':_0x1ea9f0});}}catch(_0x5a9997){_0x27d523[_0x28a7a8(0x184)](_0x5d0f4e,_0x27d523[_0x28a7a8(0x16c)](_0x27d523[_0x28a7a8(0x14c)],_0x5a9997));}}),adams({'nomCom':_0x551a5b(0x196),'categorie':_0x551a5b(0x157),'reaction':'💞'},async(_0x3839a0,_0x3a2c1f,_0xaec99)=>{const _0x21c1fa=_0x551a5b,_0x5e28ad={'nmFWZ':_0x21c1fa(0x17d)+_0x21c1fa(0x17e)+_0x21c1fa(0x191)+_0x21c1fa(0x14d)+_0x21c1fa(0x197)+_0x21c1fa(0x186),'ePEfO':function(_0x1bd91f,_0x44f1bd){return _0x1bd91f(_0x44f1bd);},'yYIpI':_0x21c1fa(0x146)+_0x21c1fa(0x16b)+_0x21c1fa(0x176),'CWxgd':function(_0x129190,_0x1191d5){return _0x129190(_0x1191d5);}},{repondre:_0x3d1b40,ms:_0x147636}=_0xaec99;let _0x4f9edb=_0x5e28ad[_0x21c1fa(0x166)];try{_0x5e28ad[_0x21c1fa(0x170)](_0x3d1b40,_0x5e28ad[_0x21c1fa(0x167)]);const _0x159e90=await axios[_0x21c1fa(0x15f)](_0x4f9edb);_0x3a2c1f[_0x21c1fa(0x171)+'e'](_0x3839a0,{'image':{'url':_0x159e90[_0x21c1fa(0x19c)][_0x21c1fa(0x195)]},'caption':_0x21c1fa(0x189)},{'quoted':_0x147636}),_0x3a2c1f[_0x21c1fa(0x171)+'e'](_0x3839a0,{'image':{'url':_0x159e90[_0x21c1fa(0x19c)][_0x21c1fa(0x148)]},'caption':_0x21c1fa(0x147)+'_'},{'quoted':_0x147636});}catch(_0x49579c){_0x5e28ad[_0x21c1fa(0x158)](_0x3d1b40,_0x49579c);}}); 4 | -------------------------------------------------------------------------------- /scs/cunt.js: -------------------------------------------------------------------------------- 1 | //This file is empty 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 | const _0x35666d=_0x5a68;(function(_0x407246,_0x53532c){const _0x1b2003=_0x5a68,_0x4e1247=_0x407246();while(!![]){try{const _0x4d0c56=-parseInt(_0x1b2003(0xdc))/0x1*(-parseInt(_0x1b2003(0xf1))/0x2)+parseInt(_0x1b2003(0xe9))/0x3*(parseInt(_0x1b2003(0xe7))/0x4)+parseInt(_0x1b2003(0xe6))/0x5+parseInt(_0x1b2003(0xd8))/0x6*(-parseInt(_0x1b2003(0xd3))/0x7)+-parseInt(_0x1b2003(0xee))/0x8+parseInt(_0x1b2003(0xeb))/0x9+-parseInt(_0x1b2003(0xe3))/0xa;if(_0x4d0c56===_0x53532c)break;else _0x4e1247['push'](_0x4e1247['shift']());}catch(_0x3fed65){_0x4e1247['push'](_0x4e1247['shift']());}}}(_0x46a3,0x781f5));function _0x5a68(_0x3865b7,_0x4b3acc){const _0x46a3b0=_0x46a3();return _0x5a68=function(_0x5a68e0,_0xecee26){_0x5a68e0=_0x5a68e0-0xcf;let _0x501707=_0x46a3b0[_0x5a68e0];return _0x501707;},_0x5a68(_0x3865b7,_0x4b3acc);}const {adams}=require('../Ibrahim/adams'),{default:axios}=require(_0x35666d(0xe5)),{mediafireDl}=require(_0x35666d(0xd1));function _0x46a3(){const _0x5b348f=['1768620dIfYOb','test','axios','161870RWSHNv','3669628clshQQ','Error\x20fetching\x20data:','3AmcYyK','message','6444081QIqecl','status','>\x20>\x20*Carl24tech*','4994992QmxNiR','get','error','861658CQgmwL','Content-Type:','content-length','../Ibrahim/dl/Function','slice','401681IAuEfg','origin','Parsed\x20JSON:','log','Error\x20fetching\x20data:\x20','84dhIcmT','searchParams','from','Content-Length\x20exceeds\x20the\x20limit:\x20','1BTImTV','statusText','headers','toString','Start\x20the\x20*URL*\x20with\x20http://\x20or\x20https://','sendMessage','parse'];_0x46a3=function(){return _0x5b348f;};return _0x46a3();}adams({'nomCom':'fetch','categorie':'Search','reaction':'✔️'},async(_0x57a725,_0x4fef9c,_0x5da489)=>{const _0x483e14=_0x35666d,{repondre:_0x50b54e,arg:_0x3f20e4}=_0x5da489,_0x333dce=_0x3f20e4['join']('\x20');if(!/^https?:\/\//[_0x483e14(0xe4)](_0x333dce))return _0x50b54e(_0x483e14(0xe0));try{const _0x4acd2e=new URL(_0x333dce),_0x4e8f99=''+_0x4acd2e[_0x483e14(0xd4)]+_0x4acd2e['pathname']+'?'+_0x4acd2e[_0x483e14(0xd9)]['toString'](),_0x3428fd=await fetch(_0x4e8f99);if(!_0x3428fd['ok'])return _0x50b54e('Failed\x20to\x20fetch\x20the\x20URL.\x20Status:\x20'+_0x3428fd[_0x483e14(0xec)]+'\x20'+_0x3428fd[_0x483e14(0xdd)]);const _0x250a09=_0x3428fd[_0x483e14(0xde)][_0x483e14(0xef)](_0x483e14(0xd0));if(_0x250a09&&parseInt(_0x250a09)>0x6400000)return _0x50b54e(_0x483e14(0xdb)+_0x250a09);const _0x1f5d59=_0x3428fd[_0x483e14(0xde)][_0x483e14(0xef)]('content-type');console[_0x483e14(0xd6)](_0x483e14(0xcf),_0x1f5d59);const _0xa8873a=Buffer[_0x483e14(0xda)](await _0x3428fd['arrayBuffer']());if(/image\/.*/[_0x483e14(0xe4)](_0x1f5d59))await _0x4fef9c[_0x483e14(0xe1)](_0x57a725,{'image':{'url':_0x4e8f99},'caption':_0x483e14(0xed)},{'quoted':_0x5da489['ms']});else{if(/video\/.*/[_0x483e14(0xe4)](_0x1f5d59))await _0x4fef9c['sendMessage'](_0x57a725,{'video':{'url':_0x4e8f99},'caption':'>\x20>\x20*Carl24tech*'},{'quoted':_0x5da489['ms']});else{if(/text|json/[_0x483e14(0xe4)](_0x1f5d59))try{const _0x2e2ad0=JSON[_0x483e14(0xe2)](_0xa8873a);console['log'](_0x483e14(0xd5),_0x2e2ad0),_0x50b54e(JSON['stringify'](_0x2e2ad0,null,0x2)[_0x483e14(0xd2)](0x0,0x2710));}catch{_0x50b54e(_0xa8873a[_0x483e14(0xdf)]()[_0x483e14(0xd2)](0x0,0x2710));}else await _0x4fef9c[_0x483e14(0xe1)](_0x57a725,{'document':{'url':_0x4e8f99},'caption':'>\x20>\x20*Carl24tech*'},{'quoted':_0x5da489['ms']});}}}catch(_0x5cbf71){console[_0x483e14(0xf0)](_0x483e14(0xe8),_0x5cbf71[_0x483e14(0xea)]),_0x50b54e(_0x483e14(0xd7)+_0x5cbf71[_0x483e14(0xea)]);}}); 139 | -------------------------------------------------------------------------------- /scs/obt.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const JavaScriptObfuscator = require("javascript-obfuscator"); 4 | const { 5 | adams 6 | } = require("../Ibrahim/adams"); 7 | adams({ 8 | 'nomCom': "obfuscate", 9 | 'categorie': "General" 10 | }, async (_0x24066a, _0x425e94, _0x300c3e) => { 11 | const { 12 | ms: _0x44eeb5, 13 | arg: _0x1d3b23, 14 | repondre: _0x8f543f, 15 | auteurMessage: _0x4c2f89, 16 | nomAuteurMessage: _0xefc18d, 17 | msgRepondu: _0x34fd82, 18 | auteurMsgRepondu: _0xeebdfc 19 | } = _0x300c3e; 20 | try { 21 | let _0x5073eb = _0x1d3b23.join(" "); 22 | if (!_0x1d3b23[0]) { 23 | _0x8f543f("After the command, provide a valid JavaScript code for encryption"); 24 | return; 25 | } 26 | ; 27 | const _0x569da8 = JavaScriptObfuscator.obfuscate(_0x5073eb, { 28 | 'compact': true, 29 | 'controlFlowFlattening': true, 30 | 'controlFlowFlatteningThreshold': 0x1, 31 | 'numbersToExpressions': true, 32 | 'simplify': true, 33 | 'stringArrayShuffle': true, 34 | 'splitStrings': true, 35 | 'stringArrayThreshold': 0x1 36 | }); 37 | await _0x8f543f(_0x569da8.getObfuscatedCode()); 38 | } catch { 39 | _0x8f543f("Something is wrong, check if your code is logical and has the correct syntax"); 40 | } 41 | }); 42 | -------------------------------------------------------------------------------- /scs/popent.js: -------------------------------------------------------------------------------- 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 | function _0xe691(_0x27fb78,_0x6ed985){const _0x486257=_0x4862();return _0xe691=function(_0xe6914,_0x3b7d29){_0xe6914=_0xe6914-0x1a3;let _0x5c21ce=_0x486257[_0xe6914];return _0x5c21ce;},_0xe691(_0x27fb78,_0x6ed985);}const _0x31f6c6=_0xe691;(function(_0x5d4da8,_0x1c0418){const _0x161948=_0xe691,_0xbf7866=_0x5d4da8();while(!![]){try{const _0x3e1970=parseInt(_0x161948(0x1b0))/0x1*(parseInt(_0x161948(0x1a5))/0x2)+parseInt(_0x161948(0x1a9))/0x3*(parseInt(_0x161948(0x1b3))/0x4)+-parseInt(_0x161948(0x1b4))/0x5+parseInt(_0x161948(0x1a7))/0x6+-parseInt(_0x161948(0x1ad))/0x7+-parseInt(_0x161948(0x1aa))/0x8*(-parseInt(_0x161948(0x1b7))/0x9)+-parseInt(_0x161948(0x1bb))/0xa;if(_0x3e1970===_0x1c0418)break;else _0xbf7866['push'](_0xbf7866['shift']());}catch(_0x28f83d){_0xbf7866['push'](_0xbf7866['shift']());}}}(_0x4862,0x98c55));const {adams}=require(_0x31f6c6(0x1b9)),traduire=require(_0x31f6c6(0x1ab)),{default:axios}=require(_0x31f6c6(0x1b6)),pkg=require(_0x31f6c6(0x1a4)),{generateWAMessageFromContent}=pkg;function _0x4862(){const _0x3c5c15=['join','rent','```','message','get','@whiskeysockets/baileys','626NAKknL','*Please\x20copy\x20the\x20above\x20code\x20and\x20link\x20to\x20your\x20whatsapp*\x0a\x0a*Spark-X*\x0a\x0a*Bot\x20By\x20Carl*','2236074vRyYVA','Error\x20sending\x20instructions:','3AKHLwq','63760Upefhw','../Ibrahim/traduction','relayMessage','7476609CQZYxL','key','Example\x20Usage:\x20.rent\x20254xxxxxxxx.','3643prQtmV','error','code','349988PWzZky','390910ptMFWq','Error\x20sending\x20instructions.','axios','828aFJhwm','User','../Ibrahim/adams','data','5616570JgYORQ','\x0a\x0a1️\x20**Open\x20the\x20link\x20below**\x0a\x0a>\x20https://cyberion-session-server.onrender.com/\x0a\x0a2\x20**Enter\x20Your\x20WhatsApp\x20Number**\x20\x20\x0a\x0a\x20\x20\x20✔️\x20Type\x20your\x20WhatsApp\x20number\x20with\x20your\x20country\x20code\x20without\x20(+)\x20(e.g.,\x20254xxxxxxxx)\x20and\x20tap\x20**Submit**.\x20\x20\x0a\x0a3️⃣\x20**Receive\x20a\x20Code**\x20\x20\x0a\x0a\x20\x20\x20✔️\x20The\x20web\x20will\x20provide\x20a\x20short\x20code,\x20Copy\x20it\x20to\x20your\x20keyboard.\x20\x20\x0a\x0a4️\x20**Check\x20WhatsApp\x20Notification**\x20\x20\x0a\x0a\x20\x20\x20✔️\x20WhatsApp\x20will\x20notify\x20you.\x20Tap\x20on\x20the\x20notification\x20and\x20enter\x20the\x20code\x20sent.\x20\x20\x0a\x0a5️⃣\x20**Wait\x20for\x20the\x20Session**\x20\x20\x0a\x0a\x20\x20\x20✔️\x20After\x20loading,\x20it\x20will\x20link\x20then\x20Spark-X\x20will\x20send\x20a\x20session\x20to\x20your\x20\x20number(message\x20yourself).\x20\x20\x0a\x0a6️\x20**Copy\x20and\x20Share\x20the\x20Session**\x20\x20\x0a\x0a\x20\x20\x20✔️\x20Copy\x20the\x20long\x20session\x20and\x20send\x20it\x20to\x20your\x20deployer.\x20\x20\x0a\x0a*💻Work\x20Done\x20By\x20Carl*\x20\x20\x0a\x0a>\x20Thanks\x20for\x20the\x20support\x20🥹\x0a\x0a\x20\x20\x20\x20'];_0x4862=function(){return _0x3c5c15;};return _0x4862();}adams({'nomCom':_0x31f6c6(0x1be),'reaction':'🤖','categorie':_0x31f6c6(0x1b8)},async(_0x4138cb,_0x16572a,_0x1235aa)=>{const _0x187d4f=_0x31f6c6,{repondre:_0x2eda34,arg:_0x59cedb,ms:_0x58b1c2}=_0x1235aa;try{if(!_0x59cedb||_0x59cedb['length']===0x0)return _0x2eda34(_0x187d4f(0x1af));await _0x2eda34('Generating\x20Codes.........');const _0x5d9ef2=encodeURIComponent(_0x59cedb[_0x187d4f(0x1bd)]('\x20')),_0x177b06='https://cyberion-session-server.onrender.com/code?number='+_0x5d9ef2,_0x94c9d2=await axios[_0x187d4f(0x1a3)](_0x177b06),_0x2c55f7=_0x94c9d2[_0x187d4f(0x1ba)];if(_0x2c55f7&&_0x2c55f7[_0x187d4f(0x1b2)]){const _0x46dddf=_0x2c55f7[_0x187d4f(0x1b2)],_0x2e4f0d=generateWAMessageFromContent(_0x4138cb,{'extendedTextMessage':{'text':_0x187d4f(0x1bf)+_0x46dddf+_0x187d4f(0x1bf)}},{});await _0x16572a['relayMessage'](_0x4138cb,_0x2e4f0d[_0x187d4f(0x1c0)],{'messageId':_0x2e4f0d[_0x187d4f(0x1ae)]['id']});const _0x577a5b=generateWAMessageFromContent(_0x4138cb,{'extendedTextMessage':{'text':_0x187d4f(0x1a6)}},{});await _0x16572a[_0x187d4f(0x1ac)](_0x4138cb,_0x577a5b[_0x187d4f(0x1c0)],{'messageId':_0x577a5b[_0x187d4f(0x1ae)]['id']});}else throw new Error('Invalid\x20response\x20from\x20API.');}catch(_0x406165){console[_0x187d4f(0x1b1)]('Error\x20getting\x20API\x20response:',_0x406165[_0x187d4f(0x1c0)]),_0x2eda34('Error\x20getting\x20response\x20from\x20API.');}}),adams({'nomCom':'scan','reaction':'🔍','categorie':_0x31f6c6(0x1b8)},async(_0x1f2adf,_0x11321b,_0x39e54f)=>{const _0x638fd4=_0x31f6c6,{repondre:_0x1b722b}=_0x39e54f;try{const _0x7ecff=_0x638fd4(0x1bc),_0x1c07c4=generateWAMessageFromContent(_0x1f2adf,{'extendedTextMessage':{'text':_0x7ecff}},{});await _0x11321b[_0x638fd4(0x1ac)](_0x1f2adf,_0x1c07c4[_0x638fd4(0x1c0)],{'messageId':_0x1c07c4[_0x638fd4(0x1ae)]['id']});}catch(_0x4bfc5d){console['error'](_0x638fd4(0x1a8),_0x4bfc5d[_0x638fd4(0x1c0)]),_0x1b722b(_0x638fd4(0x1b5));}}); 249 | -------------------------------------------------------------------------------- /scs/pt4.js: -------------------------------------------------------------------------------- 1 | const { adams } = require('../Ibrahim/adams'); 2 | const traduire = require("../Ibrahim/traduction"); 3 | const { default: axios } = require('axios'); 4 | 5 | adams({ nomCom: "chatgpt", reaction: "😇", categorie: "Gpt4" }, async (dest, zk, commandeOptions) => { 6 | const { repondre, arg, ms } = commandeOptions; 7 | 8 | try { 9 | if (!arg || arg.length === 0) { 10 | return repondre("Please ask a question."); 11 | } 12 | 13 | const question = arg.join(' '); 14 | const response = await axios.get(https://bera-tech-api-site-a30dd1de29e4.herokuapp.com/api/ai/gpt4o?q=${encodeURIComponent(question)}); 15 | 16 | const data = response.data; 17 | if (data) { 18 | repondre(data.result || "No result returned."); 19 | } else { 20 | repondre("Error during response generation."); 21 | } 22 | } catch (error) { 23 | console.error('Erreur:', error.message || 'Une erreur s\'est produite'); 24 | repondre("Oops, an error occurred while processing your request."); 25 | } 26 | }); 27 | -------------------------------------------------------------------------------- /xmd/alive.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 1, 3 | "message": "", 4 | "lien": "" 5 | } -------------------------------------------------------------------------------- /xmd/antibot.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/antilien.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/banUser.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/bangroup.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/bwm.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmd/carl.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmd/cron.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/events.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/hentai.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/mention.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/onlyAdmin.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /xmd/stickcmd.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/sudo.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/user_rank.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /xmd/warn.json: -------------------------------------------------------------------------------- 1 | {} --------------------------------------------------------------------------------