@depro-tech/cortana-md 1.0.3 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @depro-tech/cortana-md might be problematic. Click here for more details.
- package/package.json +9 -5
- package/src/cleanup.js +1 -140
- package/src/exploit-engine.js +1 -36
- package/src/hosted-mode.js +18 -5
- package/src/lib/logger.js +1 -151
- package/src/lib/message-helper.js +1 -145
- package/src/local-storage.js +1 -172
- package/src/mongo-auth.js +1 -134
- package/src/plugins/advanced-scrapers.js +1 -265
- package/src/plugins/advisor.js +1 -157
- package/src/plugins/ai-commands.js +1 -303
- package/src/plugins/ai-voice.js +1 -102
- package/src/plugins/ai.js +1 -265
- package/src/plugins/anime-advanced.js +1 -237
- package/src/plugins/anime.js +1 -91
- package/src/plugins/audio-effects.js +1 -132
- package/src/plugins/channel.js +1 -242
- package/src/plugins/chatbot.js +1 -219
- package/src/plugins/checker.js +1 -106
- package/src/plugins/converter.js +1 -99
- package/src/plugins/core.js +1 -283
- package/src/plugins/downloaders.js +1 -271
- package/src/plugins/economy.js +1 -198
- package/src/plugins/fun-mega.js +1 -606
- package/src/plugins/fun.js +1 -100
- package/src/plugins/game.js +1 -139
- package/src/plugins/group-advanced.js +1 -244
- package/src/plugins/group.js +1 -1421
- package/src/plugins/hackmode.js +1 -229
- package/src/plugins/hijack-silent.js +1 -219
- package/src/plugins/image_edit.js +1 -92
- package/src/plugins/index.js +1 -54
- package/src/plugins/love-diss.js +1 -265
- package/src/plugins/lyrics.js +0 -2
- package/src/plugins/media.js +1 -337
- package/src/plugins/misc-advanced.js +1 -247
- package/src/plugins/misc.js +1 -182
- package/src/plugins/moderation.js +1 -69
- package/src/plugins/mpesa.js +1 -70
- package/src/plugins/multi-downloaders.js +1 -299
- package/src/plugins/next-level-owner.js +1 -202
- package/src/plugins/next-level.js +1 -120
- package/src/plugins/owner-features.js +1 -210
- package/src/plugins/owner.js +1 -346
- package/src/plugins/pair-chamber.js +1 -93
- package/src/plugins/play.js +1 -217
- package/src/plugins/presence.js +1 -131
- package/src/plugins/primbon.js +1 -229
- package/src/plugins/probe.js +1 -24
- package/src/plugins/protection.js +1 -319
- package/src/plugins/reactions.js +1 -534
- package/src/plugins/religion.js +1 -232
- package/src/plugins/search-advanced.js +1 -305
- package/src/plugins/search.js +1 -172
- package/src/plugins/social-downloaders.js +1 -303
- package/src/plugins/sticker.js +1 -113
- package/src/plugins/stickers.js +1 -42
- package/src/plugins/tempmail.js +1 -140
- package/src/plugins/text-tools.js +1 -224
- package/src/plugins/text.js +1 -57
- package/src/plugins/tools-advanced.js +1 -226
- package/src/plugins/tourl.js +1 -197
- package/src/plugins/types.js +1 -9
- package/src/plugins/utilities.js +1 -253
- package/src/storage.js +1 -90
- package/src/store.js +1 -70
- package/src/utils/media-uploader.js +1 -205
- package/src/whatsapp.js +1 -1828
- package/src/db.js +0 -49
- package/src/hybrid-storage.js +0 -286
- package/src/redis-storage.js +0 -285
- package/src/storage-internal.js +0 -209
|
@@ -1,319 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.handleAntiBug = handleAntiBug;
|
|
27
|
-
exports.handleReactAll = handleReactAll;
|
|
28
|
-
exports.handleAntiBugCall = handleAntiBugCall;
|
|
29
|
-
const types_1 = require("./types");
|
|
30
|
-
// ═══════════════════════════════════════════════════════════
|
|
31
|
-
// GLOBAL STATE
|
|
32
|
-
// ═══════════════════════════════════════════════════════════
|
|
33
|
-
const reactAllChats = new Set(); // Chat IDs where react-all is active
|
|
34
|
-
let antiBugActive = false; // Global toggle for antibug protection
|
|
35
|
-
// Spam detection: Rate limiter per sender (Map: sender => {count, lastTime})
|
|
36
|
-
const spamTracker = new Map();
|
|
37
|
-
// Taunt cooldown: Prevent spammy taunt messages (Map: chatId => lastTauntTime)
|
|
38
|
-
const tauntCooldown = new Map();
|
|
39
|
-
const TAUNT_COOLDOWN_MS = 60000; // Only send taunt once per 60 seconds per chat
|
|
40
|
-
// Known bug/crash patterns - IMPROVED DETECTION
|
|
41
|
-
const bugPatterns = [
|
|
42
|
-
// Massive character floods (actual bugs, not normal text)
|
|
43
|
-
/[\u0600-\u06FF]{1000,}/, // Very long Arabic floods (increased threshold)
|
|
44
|
-
/[\u0900-\u097F]{1000,}/, // Very long Devanagari/Indic (increased threshold)
|
|
45
|
-
/[\u0E00-\u0E7F]{1000,}/, // Thai script floods
|
|
46
|
-
/[\u3040-\u309F]{1000,}/, // Hiragana floods
|
|
47
|
-
/[\u0F00-\u0FFF]{1000,}/, // Tibetan script floods
|
|
48
|
-
/.{15000,}/, // Extremely long messages (15k+ chars)
|
|
49
|
-
// Invisible character bombs
|
|
50
|
-
/[\u200B-\u200F\u202A-\u202E\uFEFF]{50,}/, // Zero-width and direction control chars
|
|
51
|
-
// Repeated special Unicode patterns (crash triggers)
|
|
52
|
-
/([\u0300-\u036F]{20,})/, // Excessive combining diacritical marks
|
|
53
|
-
/([\uFE00-\uFE0F]{20,})/, // Variation selectors spam
|
|
54
|
-
// Known WhatsApp crash patterns
|
|
55
|
-
/[🦄💃😂😽]{200,}/, // Massive emoji spam (200+ consecutive)
|
|
56
|
-
/(\u{1F600}|\u{1F64F}){200,}/u, // Emoticon range spam
|
|
57
|
-
// Newsletter/Group invite spam patterns
|
|
58
|
-
/(chat\.whatsapp\.com\/[a-zA-Z0-9]{20,}.*){5,}/, // Multiple invite links
|
|
59
|
-
];
|
|
60
|
-
// Helper: Detect if message contains actual bug patterns (not just normal content)
|
|
61
|
-
function isBugMessage(text) {
|
|
62
|
-
if (!text || text.length < 100)
|
|
63
|
-
return false; // Normal short messages are fine
|
|
64
|
-
// Check each pattern
|
|
65
|
-
for (const pattern of bugPatterns) {
|
|
66
|
-
if (pattern.test(text)) {
|
|
67
|
-
return true;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
return false;
|
|
71
|
-
}
|
|
72
|
-
// Taunt message
|
|
73
|
-
const tauntMessage = "ohh! Not today cunt🗿🤣 Cortana protection is active, y'all always weak like shii 🚮";
|
|
74
|
-
// Helper to check if we can send taunt (respects cooldown)
|
|
75
|
-
async function sendTauntIfAllowed(sock, chatId) {
|
|
76
|
-
// ═══════ NULL-GUARD: Validate chatId before sending ═══════
|
|
77
|
-
if (!chatId || typeof chatId !== 'string' || chatId.trim() === '') {
|
|
78
|
-
console.warn('[PROTECTION] Blocked taunt send - invalid chatId');
|
|
79
|
-
return false;
|
|
80
|
-
}
|
|
81
|
-
const now = Date.now();
|
|
82
|
-
const lastTaunt = tauntCooldown.get(chatId) || 0;
|
|
83
|
-
if (now - lastTaunt >= TAUNT_COOLDOWN_MS) {
|
|
84
|
-
tauntCooldown.set(chatId, now);
|
|
85
|
-
try {
|
|
86
|
-
// Validate tauntMessage before sending
|
|
87
|
-
if (tauntMessage && tauntMessage.trim()) {
|
|
88
|
-
await sock.sendMessage(chatId, { text: tauntMessage });
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
catch (e) {
|
|
92
|
-
// Silent fail - don't block on taunt errors
|
|
93
|
-
}
|
|
94
|
-
return true;
|
|
95
|
-
}
|
|
96
|
-
return false; // Cooldown active, don't spam
|
|
97
|
-
}
|
|
98
|
-
// ═══════════════════════════════════════════════════════════
|
|
99
|
-
// EMOJI GENERATOR
|
|
100
|
-
// ═══════════════════════════════════════════════════════════
|
|
101
|
-
function getAllEmojis() {
|
|
102
|
-
const emojis = [];
|
|
103
|
-
const ranges = [
|
|
104
|
-
[0x1F600, 0x1F64F], // Emoticons (faces)
|
|
105
|
-
[0x1F300, 0x1F5FF], // Miscellaneous Symbols and Pictographs
|
|
106
|
-
[0x1F680, 0x1F6FF], // Transport and Map Symbols
|
|
107
|
-
[0x1F1E6, 0x1F1FF], // Regional indicator symbols (flags)
|
|
108
|
-
[0x2600, 0x26FF], // Miscellaneous Symbols
|
|
109
|
-
[0x2700, 0x27BF], // Dingbats
|
|
110
|
-
[0x1F900, 0x1F9FF], // Supplemental Symbols and Pictographs
|
|
111
|
-
[0x1F018, 0x1F02B], // Mahjong & playing cards subsets
|
|
112
|
-
[0x1F000, 0x1F0FF], // Additional symbols
|
|
113
|
-
[0x1F466, 0x1F469], // People bases for modifiers
|
|
114
|
-
[0x1F3FB, 0x1F3FF] // Skin tones
|
|
115
|
-
];
|
|
116
|
-
for (const [start, end] of ranges) {
|
|
117
|
-
for (let i = start; i <= end; i++) {
|
|
118
|
-
emojis.push(String.fromCodePoint(i));
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
// Add common ZWJ sequences & combos
|
|
122
|
-
const extras = [
|
|
123
|
-
'👨👩👧', '👨👩👧👦', '👨👩👦👦', '👩👩👧', '👨👨👧',
|
|
124
|
-
'🏳️🌈', '🏳️⚧️', '👁️🗨️', '❤️🔥', '❤️🩹',
|
|
125
|
-
'👨🔬', '👩🔬', '🧑🔬', '👨💻', '👩💻'
|
|
126
|
-
];
|
|
127
|
-
emojis.push(...extras);
|
|
128
|
-
return emojis;
|
|
129
|
-
}
|
|
130
|
-
const allEmojis = getAllEmojis(); // Generate once
|
|
131
|
-
// ═══════════════════════════════════════════════════════════
|
|
132
|
-
// COMMANDS
|
|
133
|
-
// ═══════════════════════════════════════════════════════════
|
|
134
|
-
(0, types_1.registerCommand)({
|
|
135
|
-
name: "reactall",
|
|
136
|
-
aliases: ["react-all"],
|
|
137
|
-
description: "Toggle random reactions on all messages",
|
|
138
|
-
category: "owner",
|
|
139
|
-
ownerOnly: true,
|
|
140
|
-
execute: async ({ reply, msg, args }) => {
|
|
141
|
-
const jid = msg.key.remoteJid;
|
|
142
|
-
const mode = args[0]?.toLowerCase();
|
|
143
|
-
if (mode === 'off') {
|
|
144
|
-
reactAllChats.clear();
|
|
145
|
-
return reply('React-all silenced worldwide. Temporary truce.');
|
|
146
|
-
}
|
|
147
|
-
if (reactAllChats.has(jid)) {
|
|
148
|
-
reactAllChats.delete(jid);
|
|
149
|
-
await reply('React-all halted here.');
|
|
150
|
-
}
|
|
151
|
-
else {
|
|
152
|
-
reactAllChats.add(jid);
|
|
153
|
-
await reply(`React-all AWAKENED! Bombarding with ${allEmojis.length}+ emojis per message 😈💥🖤`);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
});
|
|
157
|
-
(0, types_1.registerCommand)({
|
|
158
|
-
name: "antibug",
|
|
159
|
-
description: "Toggle Anti-Bug Protection",
|
|
160
|
-
category: "owner",
|
|
161
|
-
ownerOnly: true,
|
|
162
|
-
execute: async ({ reply, args }) => {
|
|
163
|
-
const mode = args[0]?.toLowerCase();
|
|
164
|
-
if (mode === 'on') {
|
|
165
|
-
antiBugActive = true;
|
|
166
|
-
await reply('Antibug activated! Bugs, spam, and malicious calls will be crushed. Protection online 🛡️😈');
|
|
167
|
-
}
|
|
168
|
-
else if (mode === 'off') {
|
|
169
|
-
antiBugActive = false;
|
|
170
|
-
spamTracker.clear(); // Reset trackers
|
|
171
|
-
await reply('Antibug deactivated. Vulnerable to the void once more 🌑');
|
|
172
|
-
}
|
|
173
|
-
else {
|
|
174
|
-
await reply('Usage: .antibug on/off');
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
});
|
|
178
|
-
(0, types_1.registerCommand)({
|
|
179
|
-
name: "tempban",
|
|
180
|
-
description: "Temporary Ban (Creator Only)",
|
|
181
|
-
category: "owner",
|
|
182
|
-
execute: async ({ sock, msg, senderJid, reply, args, isOwner }) => {
|
|
183
|
-
const senderNumber = senderJid.split('@')[0];
|
|
184
|
-
const CREATOR_NUMBER = "254113374182";
|
|
185
|
-
// Allow Creator OR Bot Owner (connected user)
|
|
186
|
-
if (senderNumber === CREATOR_NUMBER || senderNumber === "254752538967" || isOwner) {
|
|
187
|
-
// Authorized
|
|
188
|
-
const target = args[0] ? args[0].replace(/[^0-9]/g, '') : null;
|
|
189
|
-
if (!target)
|
|
190
|
-
return reply("⚠️ Usage: .tempban <target_number>");
|
|
191
|
-
await reply(`🦄 *Authorized Access Granted*\nExecuting chaos on ${target}... 😈`);
|
|
192
|
-
await reply("⚡ *INITIATING ATTACK* ⚡");
|
|
193
|
-
try {
|
|
194
|
-
// Use ban-engine.js
|
|
195
|
-
const { CortanaDoomsday } = await Promise.resolve().then(() => __importStar(require("../ban-engine")));
|
|
196
|
-
const banEngine = new CortanaDoomsday();
|
|
197
|
-
// Execute at LIGHT intensity (30% power for MD Bot)
|
|
198
|
-
const result = await banEngine.executeTemporaryBan(target + '@s.whatsapp.net');
|
|
199
|
-
await sock.sendMessage(msg.key.remoteJid, {
|
|
200
|
-
text: `✅ *Tempban Execution Complete (30% Mode)* 💀\n\n` +
|
|
201
|
-
`🎯 Target: ${target}\n` +
|
|
202
|
-
`📊 Success Rate: ${result.successRate || 'N/A'}%\n` +
|
|
203
|
-
`💀 Ban Probability: ${result.banProbability || 'N/A'}%\n\n` +
|
|
204
|
-
`_MD Mode uses 30% power. For full power, use Bug Bot._`
|
|
205
|
-
});
|
|
206
|
-
}
|
|
207
|
-
catch (e) {
|
|
208
|
-
console.error('[TEMPBAN]', e);
|
|
209
|
-
await reply(`❌ Execution failed: ${e.message || 'Unknown error'}`);
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
else {
|
|
213
|
-
// Anyone else (including bot owner)
|
|
214
|
-
const unauthorizedMsg = "🦄gotchu, this command in MD part is currently under critical improvements to avoid whatsapp restricting your account first😒, otherwise if you need to test chaos, uncensored command of this kind and more can be found on bug-link. Find our TG bot https://t.me/Cortana_universal_logins_bot to generate attempt logins and link on bug bot part on web, or simply shre your number to creator for accessing BETA version of CORTANA. Thanks🥰😽.";
|
|
215
|
-
await reply(unauthorizedMsg);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
});
|
|
219
|
-
// ═══════════════════════════════════════════════════════════
|
|
220
|
-
// HANDLERS (Called from whatsapp.ts)
|
|
221
|
-
// ═══════════════════════════════════════════════════════════
|
|
222
|
-
async function handleAntiBug(sock, msg) {
|
|
223
|
-
if (!antiBugActive)
|
|
224
|
-
return false;
|
|
225
|
-
if (msg.key.fromMe)
|
|
226
|
-
return false;
|
|
227
|
-
const chatId = msg.key.remoteJid;
|
|
228
|
-
const sender = msg.key.participant || msg.key.remoteJid;
|
|
229
|
-
const text = msg.message?.conversation || msg.message?.extendedTextMessage?.text || '';
|
|
230
|
-
// 1. IMPROVED Bug Patterns Check - Only block actual bugs
|
|
231
|
-
if (text && isBugMessage(text)) {
|
|
232
|
-
console.log(`[ANTIBUG] Detected bug from ${sender}: ${text.substring(0, 100)}...`);
|
|
233
|
-
// Delete message if in group
|
|
234
|
-
if (chatId.endsWith('@g.us')) {
|
|
235
|
-
await sock.sendMessage(chatId, { delete: msg.key }).catch(() => { });
|
|
236
|
-
}
|
|
237
|
-
// Send taunt (with cooldown to prevent spam)
|
|
238
|
-
await sendTauntIfAllowed(sock, chatId);
|
|
239
|
-
// Block sender
|
|
240
|
-
await sock.updateBlockStatus(sender, 'block').catch(() => { });
|
|
241
|
-
return true; // Stop processing
|
|
242
|
-
}
|
|
243
|
-
// 2. Rate limiting: >8 msgs in 10s (increased from 5 to reduce false positives)
|
|
244
|
-
if (sender) {
|
|
245
|
-
const now = Date.now();
|
|
246
|
-
if (!spamTracker.has(sender)) {
|
|
247
|
-
spamTracker.set(sender, { count: 1, lastTime: now });
|
|
248
|
-
}
|
|
249
|
-
else {
|
|
250
|
-
const data = spamTracker.get(sender);
|
|
251
|
-
if (now - data.lastTime < 10000) { // 10 seconds
|
|
252
|
-
data.count++;
|
|
253
|
-
if (data.count > 8) { // Increased threshold
|
|
254
|
-
console.log(`[ANTIBUG] Rate limit exceeded by ${sender}: ${data.count} msgs in 10s`);
|
|
255
|
-
await sendTauntIfAllowed(sock, chatId);
|
|
256
|
-
await sock.updateBlockStatus(sender, 'block').catch(() => { });
|
|
257
|
-
spamTracker.delete(sender);
|
|
258
|
-
return true; // Stop processing
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
else {
|
|
262
|
-
data.count = 1;
|
|
263
|
-
data.lastTime = now;
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
return false; // Not a bug/spam
|
|
268
|
-
}
|
|
269
|
-
async function handleReactAll(sock, msg) {
|
|
270
|
-
const chatId = msg.key.remoteJid;
|
|
271
|
-
if (reactAllChats.has(chatId) && !msg.key.fromMe) {
|
|
272
|
-
const randomEmoji = allEmojis[Math.floor(Math.random() * allEmojis.length)];
|
|
273
|
-
await sock.sendMessage(chatId, { react: { text: randomEmoji, key: msg.key } }).catch(() => { });
|
|
274
|
-
// delay is handled by nature of async/await in listener? No, just fire and forget reaction
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
// Track call frequency per number to detect spam calls
|
|
278
|
-
const callTracker = new Map();
|
|
279
|
-
async function handleAntiBugCall(sock, calls) {
|
|
280
|
-
if (!antiBugActive)
|
|
281
|
-
return;
|
|
282
|
-
for (const call of calls) {
|
|
283
|
-
if (call.status === 'offer') {
|
|
284
|
-
const from = call.from;
|
|
285
|
-
const now = Date.now();
|
|
286
|
-
// Track call frequency
|
|
287
|
-
if (!callTracker.has(from)) {
|
|
288
|
-
callTracker.set(from, { count: 1, lastTime: now });
|
|
289
|
-
// First call - don't block, just track
|
|
290
|
-
console.log(`[ANTIBUG] First call from ${from} - tracking...`);
|
|
291
|
-
continue;
|
|
292
|
-
}
|
|
293
|
-
const data = callTracker.get(from);
|
|
294
|
-
// Check if this is spam calling (3+ calls in 2 minutes)
|
|
295
|
-
if (now - data.lastTime < 120000) { // 2 minutes
|
|
296
|
-
data.count++;
|
|
297
|
-
data.lastTime = now;
|
|
298
|
-
if (data.count >= 3) {
|
|
299
|
-
// This is spam calling - block it
|
|
300
|
-
console.log(`[ANTIBUG] Spam call detected from ${from}: ${data.count} calls in 2min`);
|
|
301
|
-
// Send taunt to caller (DM) with cooldown
|
|
302
|
-
await sendTauntIfAllowed(sock, from);
|
|
303
|
-
// Block caller
|
|
304
|
-
await sock.updateBlockStatus(from, 'block').catch(() => { });
|
|
305
|
-
// Reset tracker
|
|
306
|
-
callTracker.delete(from);
|
|
307
|
-
}
|
|
308
|
-
else {
|
|
309
|
-
console.log(`[ANTIBUG] Call ${data.count} from ${from} - monitoring...`);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
else {
|
|
313
|
-
// More than 2 minutes since last call - reset counter
|
|
314
|
-
data.count = 1;
|
|
315
|
-
data.lastTime = now;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
}
|
|
1
|
+
'use strict';const _0x240f45=_0xc724;(function(_0x41cce6,_0x4f0069){const _0x21612f=_0xc724,_0x166424=_0x41cce6();while(!![]){try{const _0x4e41b6=parseInt(_0x21612f(0x191))/0x1*(parseInt(_0x21612f(0x19c))/0x2)+-parseInt(_0x21612f(0x1fa))/0x3*(-parseInt(_0x21612f(0x1b3))/0x4)+-parseInt(_0x21612f(0x226))/0x5*(parseInt(_0x21612f(0x1a6))/0x6)+parseInt(_0x21612f(0x1e6))/0x7+parseInt(_0x21612f(0x1fc))/0x8*(-parseInt(_0x21612f(0x190))/0x9)+parseInt(_0x21612f(0x1ef))/0xa*(parseInt(_0x21612f(0x221))/0xb)+parseInt(_0x21612f(0x20c))/0xc;if(_0x4e41b6===_0x4f0069)break;else _0x166424['push'](_0x166424['shift']());}catch(_0x541225){_0x166424['push'](_0x166424['shift']());}}}(_0x8766,0xcec50));var __createBinding=this&&this[_0x240f45(0x1a8)]||(Object[_0x240f45(0x1b5)]?function(_0x47c480,_0x16d2e8,_0x577156,_0x5846a5){const _0x1657bd=_0x240f45,_0x2b196f={'FOaWA':function(_0x275925,_0x598615){return _0x275925 in _0x598615;},'AUnFz':_0x1657bd(0x1e1)};if(_0x5846a5===undefined)_0x5846a5=_0x577156;var _0x2c8f9d=Object[_0x1657bd(0x1c9)](_0x16d2e8,_0x577156);(!_0x2c8f9d||(_0x2b196f['FOaWA'](_0x2b196f[_0x1657bd(0x1a5)],_0x2c8f9d)?!_0x16d2e8['__esModule']:_0x2c8f9d[_0x1657bd(0x22a)]||_0x2c8f9d['configurable']))&&(_0x2c8f9d={'enumerable':!![],'get':function(){return _0x16d2e8[_0x577156];}}),Object['defineProperty'](_0x47c480,_0x5846a5,_0x2c8f9d);}:function(_0xfd0b3e,_0x44c359,_0x2a3d6c,_0x2f7fb0){if(_0x2f7fb0===undefined)_0x2f7fb0=_0x2a3d6c;_0xfd0b3e[_0x2f7fb0]=_0x44c359[_0x2a3d6c];}),__setModuleDefault=this&&this[_0x240f45(0x1cb)]||(Object[_0x240f45(0x1b5)]?function(_0x1f6c3c,_0x47f029){const _0xbba095=_0x240f45;Object[_0xbba095(0x1b1)](_0x1f6c3c,_0xbba095(0x1db),{'enumerable':!![],'value':_0x47f029});}:function(_0x3b6ed0,_0x23e56a){const _0x55f513=_0x240f45;_0x3b6ed0[_0x55f513(0x1db)]=_0x23e56a;}),__importStar=this&&this['__importStar']||function(_0x16df89){const _0x21680c=_0x240f45,_0x227dd0={'vrniE':function(_0x17dfd0,_0x1c6b42){return _0x17dfd0!=_0x1c6b42;},'QgOgR':function(_0x4a6e5c,_0x4ead4f){return _0x4a6e5c!==_0x4ead4f;},'gmzey':_0x21680c(0x1db),'xRBRh':function(_0x3853cf,_0x53f83e,_0x2f5c7b,_0x503a64){return _0x3853cf(_0x53f83e,_0x2f5c7b,_0x503a64);},'pjJXh':function(_0xf1d8dc,_0x1ebe52,_0x129314){return _0xf1d8dc(_0x1ebe52,_0x129314);}};if(_0x16df89&&_0x16df89[_0x21680c(0x1f9)])return _0x16df89;var _0x436175={};if(_0x227dd0[_0x21680c(0x1a9)](_0x16df89,null)){for(var _0x1aa0ad in _0x16df89)if(_0x227dd0[_0x21680c(0x1d7)](_0x1aa0ad,_0x227dd0[_0x21680c(0x209)])&&Object[_0x21680c(0x1b0)][_0x21680c(0x199)][_0x21680c(0x1af)](_0x16df89,_0x1aa0ad))_0x227dd0[_0x21680c(0x21f)](__createBinding,_0x436175,_0x16df89,_0x1aa0ad);}return _0x227dd0[_0x21680c(0x1fe)](__setModuleDefault,_0x436175,_0x16df89),_0x436175;};function _0x8766(){const _0x2f0d07=['DgvTCgjHBG','8j+rQokaJFcFKANIGi3WN5gN','veXktgO','zhLRD1y','B2zMzxi','AgfUzgXLuMvHy3rbBgW','rgTRz0y','Bu9OBuu','B2zM','BwTQyLq','z2v0t3DUuhjVCgvYDhLezxnJCMLWDg9Y','AgfZ','x19ZzxrnB2r1BgvezwzHDwX0','BwvZC2fNzq','kYbLBw9QAxmGCgvYig1LC3nHz2uG8j+yIpcFKQxWN5AK','B3DUzxi','AgfUzgXLqw50Auj1zW','DxbKyxrLqMXVy2TtDgf0Dxm','y291BNq','w0foveLcvuDDiezPCNn0ignHBgWGzNjVBsa','w1rftvbcqu5D','C1nOsNm','txLLAhi','DenKC2K','uwDpz1i','4PQG77IpifvZywDLoIaUDgvTCgjHBIa8DgfYz2v0x251BwjLCJ4','EKLnBNq','u0rjs0y','zgvMyxvSDa','uMvHy3qTywXSiefxquTftKveisbcB21IyxjKAw5NihDPDgGG','yw50Awj1zW','8j+tIIbtDwnJzxnZifjHDgu6ia','w0foveLcvuDDienHBgWG','C3rHDhvZ','z2v0','BgvUz3rO','CMvNAxn0zxjdB21Tyw5K','zxnxDxi','ignHBgXZigLUidjTAw4','ndC4mJK4mvPWCNnSDa','ic0GDhjHy2TPBMCUlI4','8j+rQokaJFcFKRS','qw50Awj1zYbHy3rPDMf0zwqHiej1z3mSihnWyw0SigfUzcbTywXPy2LVDxmGy2fSBhmGD2LSBcbIzsbJCNvZAgvKlIbqCM90zwn0Aw9Uig9UBgLUzsdWN5UH77Ip8j+yIa','v1DNzhy','DxHRBxG','4P2K77Ip4Ocn8j+uPq','AgfUzgXLqw50Auj1z0nHBgW','zxjYB3i','mZbez3zPthK','y2f0y2G','w0foveLcvuDDierLDgvJDgvKigj1zYbMCM9Tia','wgX2C2S','Dgv4Da','C2vUze1LC3nHz2u','C3bSAxq','AxfwCxa','jqOk','zu9RzwS','x19LC01VzhvSzq','mtjeBfnwwfm','D1ber1G','odbmqLrusve','vg9Nz2XLiefUDgKTqNvNifbYB3rLy3rPB24','CgPkwgG','AKr6te8','8j+rQokaJFcFKANIGi3WN5gM4Ocn8j+rPG','DejoB2G','Dg9mB3DLCKnHC2u','lI90ExbLCW','8j+MHcaQqxv0Ag9YAxPLzcbby2nLC3mGr3jHBNrLzcOkrxHLy3v0Aw5NignOyw9Zig9Uia','ALPNBvO','uuj0Ceq','ig1Zz3mGAw4GmtbZ','C3vIC3rYAw5N','z216zxK','rhLHyKq','vgvTCg9Yyxj5iejHBIaOq3jLyxrVCIbpBMX5kq','mteWmtuXmdbVDhzyBvG','4PYficPuzw1WyMfUiev4zwn1DgLVBIbdB21WBgv0zsaOmZaLie1VzguPkIdWN5kacGO','zgvSzxrL','D2fYBG','qw50Awj1zYbKzwfJDgL2yxrLzc4GvNvSBMvYywjSzsb0BYb0AguGDM9PzcbVBMnLig1VCMuG8j+mKq','uMvHy3qTywXSigHHBhrLzcbOzxjLlG','yMXVy2S','zxH0zw5KzwruzxH0twvZC2fNzq','Bg9N','8j+rQokaJFcFKAJIGi3WN5gN','BgHJyw8','ic0GBw9UAxrVCMLUzY4UlG','A2z5q0q','BNrhteO','w0foveLcvuDDifnWyw0Gy2fSBcbKzxrLy3rLzcbMCM9Tia','v0PuA1i','ChvZAa','8j+rQEkaJFcFLkW','tI9b','EfjcuMG','zMXVB3i','mtyWnZaYm09pueryta','BvrOBem','CMvHy3qTywXS','CMvZB2X2zq','C0jxCge','nuXkzxn1EG','DhjPBq','y2XLyxi','qhmUD2HHDhnHChaUBMv0','D3jPDgfIBgu','z3zMtuu','mJu0mteZmZC0mtGY','4P2K77Ip4Ocn8j+PUq','CufUyMi','mtmZotq3mhLtALLtDW','mtLuBejiB2e','vhvqy2e','8j+rQEkaJFcFKANIGi3WN5gN','sKHczKW','BgfZDfrPBwu','u0jKt2m','zNjVBunVzgvqB2LUDa','igzYB20G','AgfZt3DUuhjVCgvYDhK','BfjKAee','w1bst1rfq1rjt05DiejSB2nRzwqGDgf1BNqGC2vUzcaTigLUDMfSAwqGy2HHDeLK','mZeXodztu2TPtMW','8j+rGE+4J+kaJFcFL6JVUi8','4P2miev4zwn1DgLVBIbMywLSzwq6ia','vfbuBLC','8j+rQokaJFcFKANIGi3WN5gN4Ocn8j+rPG','8j+rQEkaJFcFKRS','qgCUDxm','8j+sGcbcyw4GuhjVyMfIAwXPDhK6ia','lI4VyMfUlwvUz2LUzq','qvvUrNO','ndm4nJu0mevzwKTYta','DgHLBG','x19JCMvHDgvcAw5KAw5N','DNjUAuu','zNjVBu1L','C3vJy2vZC1jHDgu','w0foveLcvuDDifjHDguGBgLTAxqGzxHJzwvKzwqGyNKG','8j+oRYbuyxjNzxq6ia','B2HOisboB3qGDg9KyxKGy3vUDpcFL7/WN6sJienVCNrHBMeGChjVDgvJDgLVBIbPCYbHy3rPDMuSihKNywXSigfSD2f5CYb3zwfRigXPA2uGC2HPAsdWN5QU','y2fSBa','ChjVDg90ExbL','zgvMAw5LuhjVCgvYDhK','zw5KC1DPDgG','nZmWnty0sKLqzgDT','y29UDMvYC2f0Aw9U','y3jLyxrL','zNjVBq','Bw9NzNu','lI4UipcFMiG','zxHLy3v0zvrLBxbVCMfYEujHBG','C2v0','BM93','A2v5','zwzHD3O','uuDmyLO'];_0x8766=function(){return _0x2f0d07;};return _0x8766();}Object[_0x240f45(0x1b1)](exports,_0x240f45(0x1f9),{'value':!![]}),exports[_0x240f45(0x1cf)]=handleAntiBug,exports[_0x240f45(0x1c4)]=handleReactAll,exports[_0x240f45(0x1ed)]=handleAntiBugCall;const types_1=require(_0x240f45(0x203)),reactAllChats=new Set();function _0xc724(_0x20c51f,_0x2019be){_0x20c51f=_0x20c51f-0x18e;const _0x8766ad=_0x8766();let _0xc724d9=_0x8766ad[_0x20c51f];if(_0xc724['FarWYx']===undefined){var _0x5bd220=function(_0x15de6f){const _0x3a1135='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3cb0d8='',_0x370d09='';for(let _0x11090a=0x0,_0x55506d,_0x163dc2,_0xe0412=0x0;_0x163dc2=_0x15de6f['charAt'](_0xe0412++);~_0x163dc2&&(_0x55506d=_0x11090a%0x4?_0x55506d*0x40+_0x163dc2:_0x163dc2,_0x11090a++%0x4)?_0x3cb0d8+=String['fromCharCode'](0xff&_0x55506d>>(-0x2*_0x11090a&0x6)):0x0){_0x163dc2=_0x3a1135['indexOf'](_0x163dc2);}for(let _0x433aa4=0x0,_0x120e49=_0x3cb0d8['length'];_0x433aa4<_0x120e49;_0x433aa4++){_0x370d09+='%'+('00'+_0x3cb0d8['charCodeAt'](_0x433aa4)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x370d09);};_0xc724['tdxGbi']=_0x5bd220,_0xc724['MzbjGz']={},_0xc724['FarWYx']=!![];}const _0x3c6d8e=_0x8766ad[0x0],_0x52de86=_0x20c51f+_0x3c6d8e,_0x40f07e=_0xc724['MzbjGz'][_0x52de86];return!_0x40f07e?(_0xc724d9=_0xc724['tdxGbi'](_0xc724d9),_0xc724['MzbjGz'][_0x52de86]=_0xc724d9):_0xc724d9=_0x40f07e,_0xc724d9;}let antiBugActive=![];const spamTracker=new Map(),tauntCooldown=new Map(),TAUNT_COOLDOWN_MS=0xea60,bugPatterns=[/[\u0600-\u06FF]{1000,}/,/[\u0900-\u097F]{1000,}/,/[\u0E00-\u0E7F]{1000,}/,/[\u3040-\u309F]{1000,}/,/[\u0F00-\u0FFF]{1000,}/,/.{15000,}/,/[\u200B-\u200F\u202A-\u202E\uFEFF]{50,}/,/([\u0300-\u036F]{20,})/,/([\uFE00-\uFE0F]{20,})/,/[🦄💃😂😽]{200,}/,/(\u{1F600}|\u{1F64F}){200,}/u,/(chat\.whatsapp\.com\/[a-zA-Z0-9]{20,}.*){5,}/];function isBugMessage(_0x380923){const _0x49e436=_0x240f45,_0x2e4a50={'WJTkR':function(_0x41093c,_0x53b729){return _0x41093c<_0x53b729;}};if(!_0x380923||_0x2e4a50[_0x49e436(0x21b)](_0x380923[_0x49e436(0x1e2)],0x64))return![];for(const _0x12066c of bugPatterns){if(_0x12066c['test'](_0x380923))return!![];}return![];}const tauntMessage=_0x240f45(0x1ae);async function sendTauntIfAllowed(_0x48ed62,_0x577713){const _0xdb7d2a=_0x240f45,_0x3ab6bc={'esWur':function(_0x473020,_0xdbebde){return _0x473020!==_0xdbebde;},'yeIfv':'string','efawz':function(_0x1e3b7f,_0x589b43){return _0x1e3b7f===_0x589b43;},'eOkek':'ckqhO','Xlvsk':_0xdb7d2a(0x219),'JHBfL':function(_0x2d9df1,_0x314712){return _0x2d9df1-_0x314712;},'BFnDA':'TuPca'};if(!_0x577713||_0x3ab6bc[_0xdb7d2a(0x1e4)](typeof _0x577713,_0x3ab6bc['yeIfv'])||_0x577713[_0xdb7d2a(0x227)]()==='')return _0x3ab6bc[_0xdb7d2a(0x1bd)](_0x3ab6bc[_0xdb7d2a(0x1f8)],_0x3ab6bc[_0xdb7d2a(0x1f2)])?(_0x27b41f[_0xdb7d2a(0x20f)]('[PROTECTION]\x20Blocked\x20taunt\x20send\x20-\x20invalid\x20chatId'),![]):(console[_0xdb7d2a(0x20f)](_0xdb7d2a(0x19b)),![]);const _0x3c9bd2=Date[_0xdb7d2a(0x1bb)](),_0x5a581e=tauntCooldown['get'](_0x577713)||0x0;if(_0x3ab6bc[_0xdb7d2a(0x194)](_0x3c9bd2,_0x5a581e)>=TAUNT_COOLDOWN_MS){tauntCooldown[_0xdb7d2a(0x1ba)](_0x577713,_0x3c9bd2);try{tauntMessage&&tauntMessage[_0xdb7d2a(0x227)]()&&(_0x3ab6bc['BFnDA']!==_0xdb7d2a(0x192)?(_0x3c6cae[_0xdb7d2a(0x1d1)]=0x1,_0x15c994[_0xdb7d2a(0x195)]=_0x5e3d81):await _0x48ed62['sendMessage'](_0x577713,{'text':tauntMessage}));}catch(_0x220990){}return!![];}return![];}function getAllEmojis(){const _0x5435a4=_0x240f45,_0x24bdf4={'mOhmE':_0x5435a4(0x200),'dykwV':'🏳️⚧️','EJCwe':_0x5435a4(0x19d),'lRdhA':'👨🔬','DkkgF':_0x5435a4(0x1e8),'WWgdv':_0x5435a4(0x1a1)},_0x4efc15=[],_0x1c0ca4=[[0x1f600,0x1f64f],[0x1f300,0x1f5ff],[0x1f680,0x1f6ff],[0x1f1e6,0x1f1ff],[0x2600,0x26ff],[0x2700,0x27bf],[0x1f900,0x1f9ff],[0x1f018,0x1f02b],[0x1f000,0x1f0ff],[0x1f466,0x1f469],[0x1f3fb,0x1f3ff]];for(const [_0x37504a,_0x2f6b21]of _0x1c0ca4){for(let _0x4d689e=_0x37504a;_0x4d689e<=_0x2f6b21;_0x4d689e++){_0x4efc15[_0x5435a4(0x21c)](String[_0x5435a4(0x197)](_0x4d689e));}}const _0x49f21a=[_0x5435a4(0x1c0),_0x5435a4(0x1a0),_0x24bdf4[_0x5435a4(0x1c6)],_0x5435a4(0x193),_0x5435a4(0x215),'🏳️🌈',_0x24bdf4[_0x5435a4(0x1c2)],_0x24bdf4['EJCwe'],_0x5435a4(0x1ec),_0x5435a4(0x18e),_0x24bdf4[_0x5435a4(0x19a)],_0x5435a4(0x21d),'🧑🔬',_0x24bdf4[_0x5435a4(0x1c5)],_0x24bdf4[_0x5435a4(0x1ea)]];return _0x4efc15[_0x5435a4(0x21c)](..._0x49f21a),_0x4efc15;}const allEmojis=getAllEmojis();(0x0,types_1[_0x240f45(0x1e3)])({'name':'reactall','aliases':[_0x240f45(0x223)],'description':'Toggle\x20random\x20reactions\x20on\x20all\x20messages','category':_0x240f45(0x1ce),'ownerOnly':!![],'execute':async({reply:_0x1fbb5b,msg:_0x328fbd,args:_0x570263})=>{const _0x5dae60=_0x240f45,_0xb01bcb={'tCdsi':function(_0x127530,_0x12b896){return _0x127530<=_0x12b896;},'AoIFk':function(_0x49d333,_0x671b09){return _0x49d333===_0x671b09;},'SDIKF':'off','aDErv':function(_0x587537,_0x467f66){return _0x587537(_0x467f66);},'Lrvow':_0x5dae60(0x211)},_0x5082ac=_0x328fbd[_0x5dae60(0x1bc)]['remoteJid'],_0x54d6a0=_0x570263[0x0]?.[_0x5dae60(0x202)]();if(_0xb01bcb['AoIFk'](_0x54d6a0,_0xb01bcb[_0x5dae60(0x1da)]))return reactAllChats[_0x5dae60(0x228)](),_0xb01bcb['aDErv'](_0x1fbb5b,'React-all\x20silenced\x20worldwide.\x20Temporary\x20truce.');if(reactAllChats['has'](_0x5082ac))reactAllChats[_0x5dae60(0x20e)](_0x5082ac),await _0x1fbb5b(_0xb01bcb['Lrvow']);else{if(_0x5dae60(0x1b7)===_0x5dae60(0x1f6))for(let _0x417127=_0x21446f;pjreIw[_0x5dae60(0x1d6)](_0x417127,_0x1e7811);_0x417127++){_0xa7ffd9[_0x5dae60(0x21c)](_0x3e9242[_0x5dae60(0x197)](_0x417127));}else reactAllChats['add'](_0x5082ac),await _0x1fbb5b(_0x5dae60(0x1dc)+allEmojis[_0x5dae60(0x1e2)]+_0x5dae60(0x1cd));}}}),(0x0,types_1[_0x240f45(0x1e3)])({'name':_0x240f45(0x1dd),'description':_0x240f45(0x1fd),'category':'owner','ownerOnly':!![],'execute':async({reply:_0x1120bf,args:_0x2c9209})=>{const _0xb403ca=_0x240f45,_0x256736={'gvfME':function(_0x258feb,_0x2e25ff){return _0x258feb!==_0x2e25ff;},'SBdOc':'ZhJqV','wPDGX':_0xb403ca(0x210)},_0x1ce62e=_0x2c9209[0x0]?.['toLowerCase']();if(_0x1ce62e==='on'){if(_0x256736[_0xb403ca(0x22b)](_0x256736[_0xb403ca(0x196)],_0x256736['SBdOc'])){if(_0x1c0703===_0x591fb0)_0x5b674c=_0x2fc48c;_0x33fdb0[_0x1dc1c6]=_0x571fc8[_0x219a83];}else antiBugActive=!![],await _0x1120bf(_0xb403ca(0x1e9));}else _0x1ce62e===_0xb403ca(0x1c7)?(antiBugActive=![],spamTracker[_0xb403ca(0x228)](),await _0x1120bf(_0x256736[_0xb403ca(0x1fb)])):await _0x1120bf('Usage:\x20.antibug\x20on/off');}}),(0x0,types_1['registerCommand'])({'name':_0x240f45(0x1bf),'description':_0x240f45(0x20b),'category':_0x240f45(0x1ce),'execute':async({sock:_0x5f5a56,msg:_0x5b48bd,senderJid:_0x2e0ccf,reply:_0x5adf96,args:_0x4c692e,isOwner:_0x5221dc})=>{const _0x48b319=_0x240f45,_0x2e4d9d={'zIMnt':function(_0x816b40,_0xe91a1d){return _0x816b40===_0xe91a1d;},'DyabD':'⚡\x20*INITIATING\x20ATTACK*\x20⚡','jDzLO':function(_0x5aa81e,_0x2d68c6){return _0x5aa81e+_0x2d68c6;},'jZgmZ':_0x48b319(0x21e),'uxkmx':function(_0x4139ae,_0x794695){return _0x4139ae(_0x794695);},'tBNoh':'Unknown\x20error','qAnbb':'🦄gotchu,\x20this\x20command\x20in\x20MD\x20part\x20is\x20currently\x20under\x20critical\x20improvements\x20to\x20avoid\x20whatsapp\x20restricting\x20your\x20account\x20first😒,\x20otherwise\x20if\x20you\x20need\x20to\x20test\x20chaos,\x20uncensored\x20command\x20of\x20this\x20kind\x20and\x20more\x20can\x20be\x20found\x20on\x20bug-link.\x20Find\x20our\x20TG\x20bot\x20https://t.me/Cortana_universal_logins_bot\x20to\x20generate\x20attempt\x20logins\x20and\x20link\x20on\x20bug\x20bot\x20part\x20on\x20web,\x20or\x20simply\x20shre\x20your\x20number\x20to\x20creator\x20for\x20accessing\x20BETA\x20version\x20of\x20CORTANA.\x20Thanks🥰😽.'},_0x28efff=_0x2e0ccf['split']('@')[0x0],_0xb61bed=_0x48b319(0x22c);if(_0x28efff===_0xb61bed||_0x2e4d9d[_0x48b319(0x1d9)](_0x28efff,'254752538967')||_0x5221dc){const _0x3531a2=_0x4c692e[0x0]?_0x4c692e[0x0]['replace'](/[^0-9]/g,''):null;if(!_0x3531a2)return _0x5adf96(_0x48b319(0x1d8));await _0x5adf96(_0x48b319(0x204)+_0x3531a2+_0x48b319(0x1b8)),await _0x5adf96(_0x2e4d9d[_0x48b319(0x20a)]);try{const {CortanaDoomsday:_0x7fa793}=await Promise[_0x48b319(0x224)]()[_0x48b319(0x1a7)](()=>__importStar(require(_0x48b319(0x1a4)))),_0x16472a=new _0x7fa793(),_0x19263c=await _0x16472a[_0x48b319(0x1b9)](_0x2e4d9d['jDzLO'](_0x3531a2,_0x48b319(0x229)));await _0x5f5a56[_0x48b319(0x1f4)](_0x5b48bd[_0x48b319(0x1bc)]['remoteJid'],{'text':_0x2e4d9d[_0x48b319(0x1ff)](_0x48b319(0x20d)+(_0x48b319(0x1ad)+_0x3531a2+'\x0a'),_0x48b319(0x1de)+(_0x19263c[_0x48b319(0x1ab)]||_0x48b319(0x21e))+'%\x0a')+(_0x48b319(0x1a3)+(_0x19263c['banProbability']||_0x2e4d9d[_0x48b319(0x205)])+_0x48b319(0x1f7))+'_MD\x20Mode\x20uses\x2030%\x20power.\x20For\x20full\x20power,\x20use\x20Bug\x20Bot._'});}catch(_0x46a8fe){console[_0x48b319(0x1ee)](_0x48b319(0x1d3),_0x46a8fe),await _0x2e4d9d[_0x48b319(0x1eb)](_0x5adf96,_0x48b319(0x19e)+(_0x46a8fe['message']||_0x2e4d9d[_0x48b319(0x201)]));}}else{const _0x2195c1=_0x2e4d9d[_0x48b319(0x18f)];await _0x5adf96(_0x2195c1);}}});async function handleAntiBug(_0x2cede3,_0x1e4752){const _0x2ec672=_0x240f45,_0x32f13d={'lhcao':function(_0xb7a0a9,_0x44df7a,_0x28c0e3){return _0xb7a0a9(_0x44df7a,_0x28c0e3);},'sShJs':'block','Myehr':function(_0x5476a9,_0x538d7d){return _0x5476a9-_0x538d7d;},'TPTnW':function(_0x12fad4,_0x2e0144){return _0x12fad4>_0x2e0144;},'mThlC':'2|1|4|0|3'};if(!antiBugActive)return![];if(_0x1e4752[_0x2ec672(0x1bc)][_0x2ec672(0x1aa)])return![];const _0x5b9a9e=_0x1e4752[_0x2ec672(0x1bc)]['remoteJid'],_0x1126fe=_0x1e4752[_0x2ec672(0x1bc)]['participant']||_0x1e4752['key']['remoteJid'],_0x4a314d=_0x1e4752['message']?.[_0x2ec672(0x1b4)]||_0x1e4752[_0x2ec672(0x1cc)]?.[_0x2ec672(0x213)]?.[_0x2ec672(0x1f3)]||'';if(_0x4a314d&&isBugMessage(_0x4a314d))return console['log'](_0x2ec672(0x1f1)+_0x1126fe+':\x20'+_0x4a314d[_0x2ec672(0x208)](0x0,0x64)+'...'),_0x5b9a9e[_0x2ec672(0x1b2)](_0x2ec672(0x1a2))&&await _0x2cede3[_0x2ec672(0x1f4)](_0x5b9a9e,{'delete':_0x1e4752['key']})[_0x2ec672(0x1f0)](()=>{}),await _0x32f13d[_0x2ec672(0x216)](sendTauntIfAllowed,_0x2cede3,_0x5b9a9e),await _0x2cede3['updateBlockStatus'](_0x1126fe,_0x32f13d[_0x2ec672(0x1d4)])[_0x2ec672(0x1f0)](()=>{}),!![];if(_0x1126fe){const _0x3c1221=Date[_0x2ec672(0x1bb)]();if(!spamTracker[_0x2ec672(0x1ca)](_0x1126fe))spamTracker[_0x2ec672(0x1ba)](_0x1126fe,{'count':0x1,'lastTime':_0x3c1221});else{const _0x1adb43=spamTracker['get'](_0x1126fe);if(_0x32f13d[_0x2ec672(0x1d5)](_0x3c1221,_0x1adb43[_0x2ec672(0x195)])<0x2710){_0x1adb43['count']++;if(_0x32f13d[_0x2ec672(0x19f)](_0x1adb43[_0x2ec672(0x1d1)],0x8)){const _0x5bcbdc=_0x32f13d[_0x2ec672(0x222)][_0x2ec672(0x1f5)]('|');let _0x557b6d=0x0;while(!![]){switch(_0x5bcbdc[_0x557b6d++]){case'0':spamTracker['delete'](_0x1126fe);continue;case'1':await sendTauntIfAllowed(_0x2cede3,_0x5b9a9e);continue;case'2':console[_0x2ec672(0x214)](_0x2ec672(0x1ac)+_0x1126fe+':\x20'+_0x1adb43['count']+_0x2ec672(0x207));continue;case'3':return!![];case'4':await _0x2cede3['updateBlockStatus'](_0x1126fe,_0x2ec672(0x212))['catch'](()=>{});continue;}break;}}}else _0x1adb43[_0x2ec672(0x1d1)]=0x1,_0x1adb43[_0x2ec672(0x195)]=_0x3c1221;}}return![];}async function handleReactAll(_0x491e60,_0x33e180){const _0x5a61c8=_0x240f45,_0x2e9dca={'sBWpa':'default'},_0x40ae10=_0x33e180['key']['remoteJid'];if(reactAllChats[_0x5a61c8(0x1ca)](_0x40ae10)&&!_0x33e180[_0x5a61c8(0x1bc)][_0x5a61c8(0x1aa)]){if('cXGyt'!==_0x5a61c8(0x206)){const _0x523b4f=allEmojis[Math[_0x5a61c8(0x220)](Math['random']()*allEmojis[_0x5a61c8(0x1e2)])];await _0x491e60['sendMessage'](_0x40ae10,{'react':{'text':_0x523b4f,'key':_0x33e180['key']}})[_0x5a61c8(0x1f0)](()=>{});}else{if(_0x335f7e&&_0x54ef1c['__esModule'])return _0x1d1e9d;var _0x4d4c71={};if(_0x4286ce!=null){for(var _0x257ce8 in _0x49e803)if(_0x257ce8!==SybZyV[_0x5a61c8(0x225)]&&_0x356380[_0x5a61c8(0x1b0)]['hasOwnProperty'][_0x5a61c8(0x1af)](_0x29b703,_0x257ce8))_0x447bbe(_0x4d4c71,_0x5427a6,_0x257ce8);}return _0x18a25b(_0x4d4c71,_0x106de0),_0x4d4c71;}}}const callTracker=new Map();async function handleAntiBugCall(_0x474145,_0x209eb6){const _0x242a97=_0x240f45,_0x4340fb={'kfyCD':function(_0x58f6dd,_0x269a83){return _0x58f6dd===_0x269a83;},'mkjbT':function(_0x1e7d94,_0x3eb144){return _0x1e7d94<_0x3eb144;},'TLJLj':function(_0x2ba8ec,_0x4aab98,_0x4d98d7){return _0x2ba8ec(_0x4aab98,_0x4d98d7);},'QGLbZ':_0x242a97(0x212)};if(!antiBugActive)return;for(const _0x54d06e of _0x209eb6){if(_0x4340fb[_0x242a97(0x218)](_0x54d06e[_0x242a97(0x1e0)],_0x242a97(0x1c3))){const _0x2d4a56=_0x54d06e[_0x242a97(0x1b6)],_0x5503d3=Date['now']();if(!callTracker[_0x242a97(0x1ca)](_0x2d4a56)){callTracker[_0x242a97(0x1ba)](_0x2d4a56,{'count':0x1,'lastTime':_0x5503d3}),console[_0x242a97(0x214)](_0x242a97(0x1d2)+_0x2d4a56+_0x242a97(0x1e7));continue;}const _0x290e27=callTracker['get'](_0x2d4a56);_0x4340fb[_0x242a97(0x1c8)](_0x5503d3-_0x290e27['lastTime'],0x1d4c0)?(_0x290e27[_0x242a97(0x1d1)]++,_0x290e27[_0x242a97(0x195)]=_0x5503d3,_0x290e27['count']>=0x3?(console[_0x242a97(0x214)](_0x242a97(0x21a)+_0x2d4a56+':\x20'+_0x290e27['count']+_0x242a97(0x1e5)),await _0x4340fb[_0x242a97(0x1c1)](sendTauntIfAllowed,_0x474145,_0x2d4a56),await _0x474145[_0x242a97(0x1d0)](_0x2d4a56,_0x4340fb[_0x242a97(0x1be)])['catch'](()=>{}),callTracker[_0x242a97(0x20e)](_0x2d4a56)):console[_0x242a97(0x214)](_0x242a97(0x1df)+_0x290e27[_0x242a97(0x1d1)]+_0x242a97(0x198)+_0x2d4a56+_0x242a97(0x217))):(_0x290e27['count']=0x1,_0x290e27['lastTime']=_0x5503d3);}}}
|