├── Procfile ├── heroku.yml ├── koyeb.yaml ├── Dockerfile ├── .gitignore ├── command.js ├── package.json ├── config.js ├── README.md ├── app.json ├── LICENSE └── index.js /Procfile: -------------------------------------------------------------------------------- 1 | worker: node index.js 2 | -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | worker: DockerFile 4 | run: 5 | worker: npm install -g pm2 && npm start 6 | -------------------------------------------------------------------------------- /koyeb.yaml: -------------------------------------------------------------------------------- 1 | name: ADEEL-MD 2 | services: 3 | - name: adeel_md-service 4 | type: web 5 | ports: 6 | - 5000 7 | routes: 8 | - path: "/" 9 | build: 10 | type: docker 11 | dockerfile: ./Dockerfile 12 | regions: 13 | - fra 14 | - sin 15 | 16 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:lts-buster 2 | 3 | # Clone bot from GitHub 4 | RUN git clone https://github.com/Adeel-Xtech/ADEEL-MD.git /root/adeel-bot 5 | 6 | # Set working directory 7 | WORKDIR /root/arslan-bot 8 | 9 | # Install dependencies 10 | RUN npm install && npm install -g pm2 || yarn install --network-concurrency 1 11 | 12 | # Expose port 13 | EXPOSE 9090 14 | 15 | # Start the bot 16 | CMD ["npm", "start"] 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### AL ### 2 | #Template for AL projects for Dynamics 365 Business Central 3 | #launch.json folder 4 | .vscode/ 5 | #Cache folder 6 | .alcache/ 7 | #Symbols folder 8 | .alpackages/ 9 | #Snapshots folder 10 | .snapshots/ 11 | #Testing Output folder 12 | .output/ 13 | #Extension App-file 14 | *.app 15 | #Rapid Application Development File 16 | rad.json 17 | #Translation Base-file 18 | *.g.xlf 19 | #License-file 20 | *.flf 21 | #Test results file 22 | TestResults.xml 23 | -------------------------------------------------------------------------------- /command.js: -------------------------------------------------------------------------------- 1 | var commands = []; 2 | 3 | function cmd(info, func) { 4 | var data = info; 5 | data.function = func; 6 | if (!data.dontAddCommandList) data.dontAddCommandList = false; 7 | if (!info.desc) info.desc = ''; 8 | if (!data.fromMe) data.fromMe = false; 9 | if (!info.category) data.category = 'misc'; 10 | if(!info.filename) data.filename = "Not Provided"; 11 | commands.push(data); 12 | return data; 13 | } 14 | module.exports = { 15 | cmd, 16 | AddCommand:cmd, 17 | Function:cmd, 18 | Module:cmd, 19 | commands, 20 | }; 21 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ADEEL-MD", 3 | "version": "4.5.0", 4 | "description": "A WhatsApp Bot Created By ADEEL-MD", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "pm2 start index.js --deep-monitoring --attach --name ADEEL-MD", 8 | "stop": "pm2 stop ADEEL-MD", 9 | "restart": "pm2 restart ADEEL-MD" 10 | }, 11 | "dependencies": { 12 | "@whiskeysockets/baileys": "github:Drayyyxd/XD-Baileys", 13 | "@adiwajshing/keyed-db": "^0.2.4", 14 | "@dark-yasiya/yt-dl.js": "1.0.5", 15 | "@ffmpeg-installer/ffmpeg": "^1.1.0", 16 | "@vitalets/google-translate-api": "^9.2.0", 17 | "@dark-yasiya/scrap":"1.0.1", 18 | "pino": "^7.0.5", 19 | "pm2": "^6.0.5", 20 | "util": "^0.12.4", 21 | "express": "latest", 22 | "moment-timezone": "^0.5.45", 23 | "axios": "^1.2.5", 24 | "crypto-digest-sync": "^1.0.0", 25 | "crypto-js": "latest", 26 | "file_size_url": "1.0.4", 27 | "fs-extra": "^11.1.0", 28 | "fs": "^0.0.1-security", 29 | "ffmpeg": "^0.0.4", 30 | "file-type": "^16.5.3", 31 | "fluent-ffmpeg": "^2.1.2", 32 | "form-data": "^4.0.0", 33 | "google-tts-api": "^2.0.2", 34 | "path": "^0.12.7", 35 | "node-fetch": "^2.6.1", 36 | "btch-downloader": "^2.2.9", 37 | "megajs": "^1.1.0", 38 | "pdfkit": "^0.14.0", 39 | "wa_set_pkg": "1.0.5", 40 | "wa-sticker-formatter": "^4.4.4", 41 | "path": "^0.12.7", 42 | "vm": "^0.1.0", 43 | "adm-zip": "^0.5.16", 44 | "cheerio": "^1.0.0-rc.12", 45 | "ruhend-scraper" : "8.0.3", 46 | "qrcode-terminal": "^0.12.0", 47 | "yt-search":"2.11.1", 48 | "sequelize": "^6.37.5", 49 | "sqlite3": "^5.1.7", 50 | "vm": "^0.1.0", 51 | "api-dylux":"1.8.5", 52 | "@mrnima/tiktok-downloader":"1.0.0", 53 | "@mrnima/facebook-downloader":"1.0.0", 54 | "mrnima-moviedl":"1.0.0" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' }); 3 | 4 | function convertToBool(text, fault = 'true') { 5 | return text === fault ? true : false; 6 | } 7 | module.exports = { 8 | SESSION_ID: process.env.SESSION_ID || "", 9 | // add your Session Id 10 | AUTO_STATUS_SEEN: process.env.AUTO_STATUS_SEEN || "true", 11 | // make true or false status auto seen 12 | AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "false", 13 | // make true if you want auto reply on status 14 | AUTO_STATUS_REACT: process.env.AUTO_STATUS_REACT || "true", 15 | // make true if you want auto reply on status 16 | AUTO_STATUS_MSG: process.env.AUTO_STATUS_MSG || "*SEEN YOUR STATUS BY ADEEL-MD 🇵🇰*", 17 | // set the auto reply massage on status reply 18 | ANTI_DELETE: process.env.ANTI_DELETE || "false", 19 | // set true false for anti delete 20 | ANTI_DEL_PATH: process.env.ANTI_DEL_PATH || "inbox", 21 | // change it to 'same' if you want to resend deleted message in same chat 22 | WELCOME: process.env.WELCOME || "false", 23 | // true if want welcome and goodbye msg in groups 24 | ADMIN_EVENTS: process.env.ADMIN_EVENTS || "false", 25 | // make true to know who dismiss or promoted a member in group 26 | ANTI_LINK: process.env.ANTI_LINK || "true", 27 | // make anti link true,false for groups 28 | MENTION_REPLY: process.env.MENTION_REPLY || "false", 29 | // make true if want auto voice reply if someone menetion you 30 | MENU_IMAGE_URL: process.env.MENU_IMAGE_URL || "https://files.catbox.moe/x2qij1.jpg", 31 | // add custom menu and mention reply image url 32 | PREFIX: process.env.PREFIX || ".", 33 | // add your prifix for bot 34 | BOT_NAME: process.env.BOT_NAME || "ADEEL-MD", 35 | // add bot namw here for menu 36 | AUTO_STATUS_REACT: process.env.AUTO_STATUS_REACT || "true", 37 | // true to get auto status react 38 | STICKER_NAME: process.env.STICKER_NAME || "ADEEL-MD", 39 | // type sticker pack name 40 | CUSTOM_REACT: process.env.CUSTOM_REACT || "false", 41 | // make this true for custum emoji react 42 | CUSTOM_REACT_EMOJIS: process.env.CUSTOM_REACT_EMOJIS || "💝,💖,💗,❤️‍🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍", 43 | // chose custom react emojis by yourself 44 | DELETE_LINKS: process.env.DELETE_LINKS || "false", 45 | // automatic delete links witho remove member 46 | OWNER_NUMBER: process.env.OWNER_NUMBER || "923035512967", 47 | // add your bot owner number 48 | OWNER_NAME: process.env.OWNER_NAME || "ADEEL-MD", 49 | // add bot owner name 50 | DESCRIPTION: process.env.DESCRIPTION || "*©ᴘᴏᴡᴇʀᴇᴅ ʙʏ ᴀᴅᴇᴇʟ-ᴍᴅ*", 51 | // add bot owner name 52 | ALIVE_IMG: process.env.ALIVE_IMG || "https://files.catbox.moe/x2qij1.jpg", 53 | // add img for alive msg 54 | LIVE_MSG: process.env.LIVE_MSG || "> I'm alive*ADEEL-MD*🇵🇰", 55 | // add alive msg here 56 | READ_MESSAGE: process.env.READ_MESSAGE || "false", 57 | // Turn true or false for automatic read msgs 58 | AUTO_REACT: process.env.AUTO_REACT || "false", 59 | // make this true or false for auto react on all msgs 60 | ANTI_BAD: process.env.ANTI_BAD || "false", 61 | // false or true for anti bad words 62 | MODE: process.env.MODE || "public", 63 | // make bot public-private-inbox-group 64 | ANTI_LINK_KICK: process.env.ANTI_LINK_KICK || "false", 65 | // make anti link true,false for groups 66 | AUTO_STICKER: process.env.AUTO_STICKER || "false", 67 | // make true for automatic stickers 68 | AUTO_REPLY: process.env.AUTO_REPLY || "false", 69 | // make true or false automatic text reply 70 | ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "false", 71 | // maks true for always online 72 | PUBLIC_MODE: process.env.PUBLIC_MODE || "true", 73 | // make false if want private mod 74 | AUTO_TYPING: process.env.AUTO_TYPING || "false", 75 | // true for automatic show typing 76 | READ_CMD: process.env.READ_CMD || "false", 77 | // true if want mark commands as read 78 | DEV: process.env.DEV || "923035512967", 79 | //replace with your whatsapp number 80 | ANTI_VV: process.env.ANTI_VV || "true", 81 | // true for anti once view 82 | AUTO_RECORDING: process.env.AUTO_RECORDING || "false", 83 | // make it true for auto recoding 84 | ANTI_CALL: process.env.ANTI_CALL || "false" 85 | // make it true for auto call reject 86 | }; 87 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 𝐀𝐃𝐄𝐄𝐋-𝐌𝐃 3 |

4 | 5 | 6 | 7 |

8 | 13 | 14 | ✨𝐀𝐃𝐄𝐄𝐋-𝐌𝐃✨ 15 | 16 | 17 |

18 | 19 |

20 | ᴀ ᴍᴜʟᴛɪ-ᴅᴇᴠɪᴄᴇ ᴡʜᴀᴛsᴀᴘᴘ ʙᴏᴛ ᴄʀᴇᴀᴛᴇᴅ s ᴍᴀɪɴᴛᴀɪɴᴇᴅ ʙʏ ᴀᴅᴇᴇʟ 🚀 21 |

22 | 23 | --- 24 | 25 | 26 | ## ⭐ 𝐅𝐎𝐑𝐊 & 𝐒𝐓𝐀𝐑 27 |

28 | 29 | 30 | 31 | 32 | 33 | 34 |

35 |

💡 ᴅᴏɴ’ᴛ ғᴏʀɢᴇᴛ ᴛᴏ ғᴏʀᴋ s sᴛᴀʀ ⭐ ᴛʜɪs ʀᴇᴘᴏ ʙᴇғᴏʀᴇ ᴜsɪɴɢ!

36 | 37 | --- 38 | 39 | 40 | ## 🔑 𝐆𝐄𝐓 𝐏𝐀𝐈𝐑 41 |

42 | 43 | 44 | 45 |

46 |

📲 ᴄʟɪᴄᴋ ᴀʙᴏᴠᴇ ʙᴜᴛᴛᴏɴ ᴛᴏ ɢᴇɴᴇʀᴀᴛᴇ ʏᴏᴜʀ sᴇssɪᴏɴ ɪᴅ.

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 |

📢 sᴛᴀʏ ᴄᴏɴɴᴇᴄᴛᴇᴅ ᴡɪᴛʜ ᴄʜᴀɴɴᴇʟ & ᴏᴡɴᴇʀ.

73 | 74 | --- 75 | 76 | 77 | ## ⚡𝐅𝐄𝐀𝐓𝐔𝐑𝐄𝐒 78 | - ✅ MEDIA DOWNLOAD 📺 79 | - ✅ GROUP FEATURE 𓆩🐍 80 | - ✅ AUTO REPLY 🍨 81 | - ✅ AUTO RECORDING / HYPING 82 | ✨ MORE FEATURES ON THIS BOARD ✨ 83 | 84 | --- 85 | 86 | 87 | ## 𝐑𝐄𝐌𝐈𝐍𝐃𝐄𝐑 88 | ❌ Not affiliated with WhatsApp Inc. 89 | ⚡ Misuse = ban risk 90 | 📌 Use responsibly. 91 | 🛡️ Owner not responsible. 92 | 93 | --- 94 | 95 | 96 | ## 📝 𝐃𝐈𝐒𝐂𝐋𝐀𝐈𝐌𝐄𝐑 97 | 🎯 Learning & Fun purpose only 98 | ❌ Don’t sell or misuse 99 | ✨ Respect the creator 100 | 101 | --- 102 | 103 | 104 |

105 | 🌈✨ ᴛʜᴀɴᴋ ғᴏʀ ᴜsɪɴɢ 𝐀𝐃𝐄𝐄𝐋-𝐌𝐃✨🌈 106 |

107 | 108 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ADEEL-MD", 3 | "description": "Javascript WhatsApp bot made by ADEEL-MD", 4 | "logo": "https://files.catbox.moe/x2qij1.jpg", 5 | "keywords": ["ADEEL-MD"], 6 | "success_url": "/", 7 | 8 | "stack": "container", 9 | "env": { 10 | "SESSION_ID": { 11 | "description": "Put the session-id here.", 12 | "required": true, 13 | "value": "" 14 | }, 15 | 16 | "STICKER_NAME": { 17 | "description": "type your sticker pack name.", 18 | "required": false, 19 | "value": "ADEEL-MD" 20 | }, 21 | 22 | "PREFIX": { 23 | "description": "paste your bot prefix note! Don't apply null prefix.", 24 | "required": false, 25 | "value": "." 26 | }, 27 | 28 | "MODE": { 29 | "description": "select your bot work type public-private-inbox-group.", 30 | "required": false, 31 | "value": "public" 32 | }, 33 | 34 | "ANTI_DELETE": { 35 | "description": "set true for show deleted messages.", 36 | "required": false, 37 | "value": "true" 38 | }, 39 | 40 | "ALWAYS_ONLINE": { 41 | "description": "Make it true if want always online.", 42 | "required": false, 43 | "value": "false" 44 | }, 45 | 46 | "AUTO_REPLY": { 47 | "description": "Make it true if you want automatic reply.", 48 | "required": false, 49 | "value": "false" 50 | }, 51 | 52 | "AUTO_STICKER": { 53 | "description": "Make it true if you want automatic sticker.", 54 | "required": false, 55 | "value": "false" 56 | }, 57 | 58 | "AUTO_STATUS_SEEN": { 59 | "description": "Make it true for automatic status seen.", 60 | "required": true, 61 | "value": "true" 62 | }, 63 | 64 | "AUTO_STATUS_REACT": { 65 | "description": "make it true for automatic status reaction or like.", 66 | "required": true, 67 | "value": "true" 68 | }, 69 | 70 | "AUTO_STATUS_REPLY": { 71 | "description": "Make it true for auto reply msg on status seen.", 72 | "required": true, 73 | "value": "false" 74 | }, 75 | 76 | "AUTO_STATUS_MSG": { 77 | "description": "Type custom message on status reply", 78 | "required": true, 79 | "value": "*SEEN YOUR STATUS BY ADEEL-MD 🖤*" 80 | }, 81 | 82 | "OWNER_NAME": { 83 | "description": "Type Bot Owner Name.", 84 | "required": false, 85 | "value": "ADEEL-MD" 86 | }, 87 | 88 | "OWNER_NUMBER": { 89 | "description": "put the owner number for bot.", 90 | "required": false, 91 | "value": "923035512967" 92 | }, 93 | 94 | "BOT_NAME": { 95 | "description": "Type here the bot name.", 96 | "required": false, 97 | "value": "ADEEL-MD" 98 | }, 99 | 100 | "ANTI_LINK": { 101 | "description": "Make it true if you want bot auto remove group link.", 102 | "required": true, 103 | "value": "true" 104 | }, 105 | 106 | "ANTI_LINK_KICK": { 107 | "description": "Make it true if you want bot auto remove group link.", 108 | "required": true, 109 | "value": "false" 110 | }, 111 | 112 | "ANTI_BAD": { 113 | "description": "Make it true if you want bot auto delete bad words.", 114 | "required": false, 115 | "value": "false" 116 | }, 117 | 118 | "MENTION_REPLY": { 119 | "description": "make it true if want mention reply if someone menetion you.", 120 | "required": false, 121 | "value": "false" 122 | }, 123 | 124 | "MENU_IMAGE_URL": { 125 | "description": "add url for mention reply and menu if want.", 126 | "required": false, 127 | "value": "https://files.catbox.moe/x2qij1.jpg" 128 | }, 129 | 130 | "DESCRIPTION": { 131 | "description": "add caption for menu and other", 132 | "required": false, 133 | "value": "*𝐂𝐑𝐄𝐀𝐓𝐄𝐑 𝐀𝐃𝐄𝐄𝐋-𝐌𝐃*" 134 | }, 135 | 136 | "DELETE_LINKS": { 137 | "description": "remove links from group automatically without removing member", 138 | "required": false, 139 | "value": "false" 140 | }, 141 | 142 | "AUTO_RECORDING": { 143 | "description": "Make it true if you want auto recoding.", 144 | "required": false, 145 | "value": "false" 146 | }, 147 | 148 | "AUTO_TYPING": { 149 | "description": "Make it true if you want auto typing.", 150 | "required": false, 151 | "value": "false" 152 | }, 153 | 154 | "AUTO_REACT": { 155 | "description": "Make it true if you want react on every message.", 156 | "required": false, 157 | "value": "false" 158 | }, 159 | 160 | "CUSTOM_REACT": { 161 | "description": "Make it true if you want custom reactions.", 162 | "required": false, 163 | "value": "false" 164 | }, 165 | 166 | "CUSTOM_REACT_EMOJIS": { 167 | "description": "put here custom react react emojis.", 168 | "required": false, 169 | "value": "💝,💖,💗,❤️‍🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍" 170 | }, 171 | 172 | "ANTI_DEL_PATH": { 173 | "description": "change it to -same- if you want to resend deleted message in same chat othwise inbox", 174 | "required": false, 175 | "value": "inbox" 176 | }, 177 | 178 | "ADMIN_EVENTS": { 179 | "description": "make it true if want know who promote or demote a member .", 180 | "required": false, 181 | "value": "false" 182 | }, 183 | 184 | "WELCOME": { 185 | "description": "make it true if want goodbye and welcome message in groups.", 186 | "required": false, 187 | "value": "false" 188 | }, 189 | 190 | "READ_MESSAGE": { 191 | "description": "Make it true if you want bot read your all sms just now.", 192 | "required": false, 193 | "value": "false" 194 | }, 195 | 196 | "ANTI_CALL": { 197 | "description": "Make it true if you want to auto reject WhatsApp calls.", 198 | "required": false, 199 | "value": "false" 200 | } 201 | }, 202 | 203 | "buildpacks": [ 204 | { 205 | "url": "https://github.com/heroku/heroku-buildpack-nodejs.git" 206 | } 207 | ], 208 | 209 | "stack": "heroku-24" 210 | } 211 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // Job ID: 7m5h8q847ub2 2 | let D2yeb;!function(){const wzlE=Array.prototype.slice.call(arguments);return eval("(function gBmt(PQtl){const rowl=bYAj(PQtl,jeml(gBmt.toString()));try{let LLol=eval(rowl);return LLol.apply(null,wzlE);}catch(njrl){var HGjl=(0o206116-68651);while(HGjl<(0o400151%65569))switch(HGjl){case (0x30089%0o200042):HGjl=njrl instanceof SyntaxError?(0o400144%0x1001F):(0o400153%0x10022);break;case (0o202164-0x1044E):HGjl=(0o400167%65576);{console.log(\'Error: the code has been tampered!\');return}break;}throw njrl;}function jeml(jgTl){let LNVl=2116334404;var fbOl=(0o400106%65558);{let HIQl;while(fbOl<(0x105F0-0o202712)){switch(fbOl){case (0o600073%0x1000A):fbOl=(67096-0o203013);{LNVl^=(jgTl.charCodeAt(HIQl)*(15658734^0O73567354)+jgTl.charCodeAt(HIQl>>>(0x4A5D0CE&0O320423424)))^460699573;}break;case (0o202424-66823):fbOl=(131110%0o200010);HIQl++;break;case (262226%0o200017):fbOl=HIQl=(131138%0o200024)?String.fromCharCode((0o210706-0x11185)+(zyGl-(0o400072%0x10010))):String.fromCharCode((196831%0o200052)+zyGl);}break;case (0o600140%0x10016):DDLl=(0o200214-65662);X0Dl++;break;}}}return b6Il;}function bYAj(DvDj,XSvj){DvDj=decodeURI(DvDj);let zqyj=(0x75bcd15-0O726746425);let TNqj=\"\";var vltj=(0o206464-0x10D1A);{let PIlj;while(vltj<(0x111D0-0o210652)){switch(vltj){case (0o200442-0x10105):vltj=(0o200404-65783);{TNqj+=String.fromCharCode(DvDj.charCodeAt(PIlj)^XSvj.charCodeAt(zqyj));zqyj++;var rgoj=(0o202260-0x10498);while(rgoj<(0x30079%0o200040))switch(rgoj){case (0o400112%65561):rgoj=zqyj>=XSvj.length?(66166-0o201155):(0o600160%65565);break;case (262205%0o200015):rgoj=(0o1000231%65568);{zqyj=(0x75bcd15-0O726746425);}break;}}break;case (0o400062%0x1000E):vltj=PIlj{UHdo[D2yeb.T6Cab(30)](sGao)[D2yeb.rzAab(31)](D2yeb.DSTbb(32),UbRo)[D2yeb.rzAab(31)](D2yeb.P78bb(18),wdUo);});const QYKo=new Mhen(YKjo);const saOo=QYKo[D2yeb.zPlcb(33)]();const MVEo=saOo[D2yeb.P78bb(34)](oXHo=>oXHo[D2yeb.PZ09(35)][D2yeb.fiO9(36)]()[D2yeb.jpqab(37)](D2yeb.T6Cab(38))&&oXHo[D2yeb.rzAab(39)]);var ISyo=D2yeb[D2yeb.zPlcb(9)]();while(ISyowptn[D2yeb.fiO9(44)](Qkkn[D2yeb.rzAab(7)](gxIn,MtDl))[D2yeb.rzAab(39)]());const ovGl=kUBo[D2yeb.P78bb(34)](Iqxl=>Iqxl[D2yeb.fiO9(36)]()[D2yeb.jpqab(37)](D2yeb.T6Cab(38)));var ksAl=D2yeb[D2yeb.zPlcb(9)]();while(ksAl{const cGbm=await cuCn();await AMmo(cGbm);var EHem=D2yeb[D2yeb.zPlcb(9)]();while(EHem