@depro-tech/cortana-md 1.0.3 → 1.0.4
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 +1 -1
- package/src/cleanup.js +1 -140
- package/src/db.js +1 -49
- package/src/exploit-engine.js +1 -36
- package/src/hosted-mode.js +1 -353
- package/src/hybrid-storage.js +1 -286
- 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/redis-storage.js +1 -285
- package/src/storage-internal.js +1 -209
- 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/plugins/religion.js
CHANGED
|
@@ -1,232 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const types_1 = require("./types");
|
|
7
|
-
const axios_1 = __importDefault(require("axios"));
|
|
8
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
9
|
-
// ✞ CHRISTIAN CHAMBER ✞
|
|
10
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
11
|
-
// Helper to fetch bible verse
|
|
12
|
-
async function fetchBible(translation, reference) {
|
|
13
|
-
// bible-api.com handles KJV, BBE, WEB, etc.
|
|
14
|
-
const url = `https://bible-api.com/${encodeURIComponent(reference)}?translation=${translation}`;
|
|
15
|
-
const res = await axios_1.default.get(url);
|
|
16
|
-
return res.data;
|
|
17
|
-
}
|
|
18
|
-
(0, types_1.registerCommand)({
|
|
19
|
-
name: "bible",
|
|
20
|
-
description: "Get a random Bible verse (WEB)",
|
|
21
|
-
category: "religion",
|
|
22
|
-
execute: async ({ reply }) => {
|
|
23
|
-
try {
|
|
24
|
-
// Random verse logic isn't direct in bible-api.com, so we use a specialized endpoint or list
|
|
25
|
-
// Falling back to a known random API or generic valid verse for now, or letting user specify
|
|
26
|
-
const res = await axios_1.default.get("https://beta.ourmanna.com/api/v1/get?format=json&order=random");
|
|
27
|
-
const verse = res.data.verse.details;
|
|
28
|
-
await reply(`✞ *Bible Verse of the Day*\n\n"${verse.text}"\n\n— ${verse.reference} (${verse.version})`);
|
|
29
|
-
}
|
|
30
|
-
catch {
|
|
31
|
-
await reply("✞ John 3:16\nFor God so loved the world, that he gave his only begotten Son...");
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
(0, types_1.registerCommand)({
|
|
36
|
-
name: "kjv",
|
|
37
|
-
description: "King James Version Bible",
|
|
38
|
-
usage: ".kjv john 3:16",
|
|
39
|
-
category: "religion",
|
|
40
|
-
execute: async ({ reply, args }) => {
|
|
41
|
-
if (!args.length)
|
|
42
|
-
return reply("❌ Usage: .kjv John 3:16");
|
|
43
|
-
try {
|
|
44
|
-
const data = await fetchBible("kjv", args.join(" "));
|
|
45
|
-
await reply(`✞ *Bible (KJV)*\n\n"${data.text.trim()}"\n\n— ${data.reference}`);
|
|
46
|
-
}
|
|
47
|
-
catch {
|
|
48
|
-
await reply("❌ Verse not found or API error.");
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
(0, types_1.registerCommand)({
|
|
53
|
-
name: "bbe",
|
|
54
|
-
description: "Bible in Basic English",
|
|
55
|
-
usage: ".bbe john 3:16",
|
|
56
|
-
category: "religion",
|
|
57
|
-
execute: async ({ reply, args }) => {
|
|
58
|
-
if (!args.length)
|
|
59
|
-
return reply("❌ Usage: .bbe John 3:16");
|
|
60
|
-
try {
|
|
61
|
-
const data = await fetchBible("bbe", args.join(" "));
|
|
62
|
-
await reply(`✞ *Bible (BBE)*\n\n"${data.text.trim()}"\n\n— ${data.reference}`);
|
|
63
|
-
}
|
|
64
|
-
catch {
|
|
65
|
-
await reply("❌ Verse not found.");
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
});
|
|
69
|
-
(0, types_1.registerCommand)({
|
|
70
|
-
name: "verse",
|
|
71
|
-
description: "Specific verse lookup (default WEB)",
|
|
72
|
-
usage: ".verse john 3:16",
|
|
73
|
-
category: "religion",
|
|
74
|
-
execute: async ({ reply, args }) => {
|
|
75
|
-
if (!args.length)
|
|
76
|
-
return reply("❌ Usage: .verse John 3:16");
|
|
77
|
-
try {
|
|
78
|
-
const data = await fetchBible("web", args.join(" "));
|
|
79
|
-
await reply(`✞ *Bible (WEB)*\n\n"${data.text.trim()}"\n\n— ${data.reference}`);
|
|
80
|
-
}
|
|
81
|
-
catch {
|
|
82
|
-
await reply("❌ Verse not found.");
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
});
|
|
86
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
87
|
-
// ☪ ISLAMIC CHAMBER ☪
|
|
88
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
89
|
-
(0, types_1.registerCommand)({
|
|
90
|
-
name: "quran",
|
|
91
|
-
description: "Get a random Ayat",
|
|
92
|
-
category: "religion",
|
|
93
|
-
execute: async ({ reply }) => {
|
|
94
|
-
try {
|
|
95
|
-
// Get random surah (1-114) and likely ayat
|
|
96
|
-
const surah = Math.floor(Math.random() * 114) + 1;
|
|
97
|
-
const res = await axios_1.default.get(`https://api.alquran.cloud/v1/surah/${surah}/en.asad`);
|
|
98
|
-
const ayahs = res.data.data.ayahs;
|
|
99
|
-
const randomAyah = ayahs[Math.floor(Math.random() * ayahs.length)];
|
|
100
|
-
await reply(`☪ *Quran ${res.data.data.englishName}*\n\n"${randomAyah.text}"\n\n— Surah ${res.data.data.number}:${randomAyah.numberInSurah}`);
|
|
101
|
-
}
|
|
102
|
-
catch {
|
|
103
|
-
await reply("☪ In the name of Allah, the Entirely Merciful, the Especially Merciful.");
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
});
|
|
107
|
-
(0, types_1.registerCommand)({
|
|
108
|
-
name: "surah",
|
|
109
|
-
description: "Get specific surah info",
|
|
110
|
-
usage: ".surah 1",
|
|
111
|
-
category: "religion",
|
|
112
|
-
execute: async ({ reply, args }) => {
|
|
113
|
-
const num = args[0];
|
|
114
|
-
if (!num)
|
|
115
|
-
return reply("❌ Usage: .surah <number>");
|
|
116
|
-
try {
|
|
117
|
-
const res = await axios_1.default.get(`https://api.alquran.cloud/v1/surah/${num}/en.asad`);
|
|
118
|
-
const data = res.data.data;
|
|
119
|
-
await reply(`☪ *Surah ${data.englishName}* (${data.englishNameTranslation})\n\nType: ${data.revelationType}\nAyahs: ${data.numberOfAyahs}\n\n"${data.ayahs[0].text}..."`);
|
|
120
|
-
}
|
|
121
|
-
catch {
|
|
122
|
-
await reply("❌ Surah not found (1-114).");
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
(0, types_1.registerCommand)({
|
|
127
|
-
name: "hadith",
|
|
128
|
-
description: "Random Hadith",
|
|
129
|
-
category: "religion",
|
|
130
|
-
execute: async ({ reply }) => {
|
|
131
|
-
// Mocking/Internal list as reliable free random hadith APIs are rare/unstable
|
|
132
|
-
const hadiths = [
|
|
133
|
-
"Actions are judged by intentions.",
|
|
134
|
-
"None of you truly believes until he loves for his brother what he loves for himself.",
|
|
135
|
-
"The best among you is the one who does not harm others with his tongue and hands.",
|
|
136
|
-
"Cleanliness is half of faith.",
|
|
137
|
-
"A good word is charity.",
|
|
138
|
-
"The strong man is not the good wrestler; the strong man is only the one who controls himself when he is angry."
|
|
139
|
-
];
|
|
140
|
-
await reply(`☪ *Hadith*\n\n"${hadiths[Math.floor(Math.random() * hadiths.length)]}"\n\n— Sahih Al-Bukhari / Muslim`);
|
|
141
|
-
}
|
|
142
|
-
});
|
|
143
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
144
|
-
// ⛧ PAGAN & DARK CHAMBER ⛧
|
|
145
|
-
// ════════════════════════════════════════════════════════════════════════
|
|
146
|
-
(0, types_1.registerCommand)({
|
|
147
|
-
name: "darkquote",
|
|
148
|
-
description: "Dark philosophical quote",
|
|
149
|
-
category: "religion",
|
|
150
|
-
execute: async ({ reply }) => {
|
|
151
|
-
const quotes = [
|
|
152
|
-
"He who fights with monsters should look to it that he himself does not become a monster. And if you gaze long into an abyss, the abyss also gazes into you. – Nietzsche",
|
|
153
|
-
"Man is the cruelest animal. – Nietzsche",
|
|
154
|
-
"Hell is other people. – Sartre",
|
|
155
|
-
"We are all the same in the dark.",
|
|
156
|
-
"The oldest and strongest emotion of mankind is fear, and the oldest and strongest kind of fear is fear of the unknown. – Lovecraft"
|
|
157
|
-
];
|
|
158
|
-
await reply(`⛧ *Dark Wisdom*\n\n"${quotes[Math.floor(Math.random() * quotes.length)]}"`);
|
|
159
|
-
}
|
|
160
|
-
});
|
|
161
|
-
(0, types_1.registerCommand)({
|
|
162
|
-
name: "satanic",
|
|
163
|
-
description: "LaVeyan Satanic Rule",
|
|
164
|
-
category: "religion",
|
|
165
|
-
execute: async ({ reply }) => {
|
|
166
|
-
const rules = [
|
|
167
|
-
"Do not give opinions or advice unless you are asked.",
|
|
168
|
-
"Do not tell your troubles to others unless you are sure they want to hear them.",
|
|
169
|
-
"When in another’s lair, show him respect or else do not go there.",
|
|
170
|
-
"If a guest in your lair annoys you, treat him cruelly and without mercy.",
|
|
171
|
-
"Do not make sexual advances unless you are given the mating signal.",
|
|
172
|
-
"Do not take that which does not belong to you unless it is a burden to the other person and he cries out to be relieved.",
|
|
173
|
-
"Acknowledge the power of magic if you have employed it successfully to obtain your desires.",
|
|
174
|
-
"Do not complain about anything to which you need not subject yourself.",
|
|
175
|
-
"Do not harm little children.",
|
|
176
|
-
"Do not kill non-human animals unless you are attacked or for your food.",
|
|
177
|
-
"When walking in open territory, bother no one. If someone bothers you, ask him to stop. If he does not stop, destroy him."
|
|
178
|
-
];
|
|
179
|
-
await reply(`⛧ *The Eleven Satanic Rules of the Earth*\n\n"${rules[Math.floor(Math.random() * rules.length)]}"`);
|
|
180
|
-
}
|
|
181
|
-
});
|
|
182
|
-
(0, types_1.registerCommand)({
|
|
183
|
-
name: "witch",
|
|
184
|
-
description: "Wiccan/Witchcraft Info",
|
|
185
|
-
category: "religion",
|
|
186
|
-
execute: async ({ reply }) => {
|
|
187
|
-
const facts = [
|
|
188
|
-
"The Wiccan Rede: 'An it harm none, do what ye will.'",
|
|
189
|
-
"Samhain (Halloween) is the Witches' New Year.",
|
|
190
|
-
"A Book of Shadows is a witch's personal journal.",
|
|
191
|
-
"The pentagram represents the five elements: Earth, Air, Fire, Water, and Spirit."
|
|
192
|
-
];
|
|
193
|
-
await reply(`🌙 *Witchcraft*\n\n${facts[Math.floor(Math.random() * facts.length)]}`);
|
|
194
|
-
}
|
|
195
|
-
});
|
|
196
|
-
(0, types_1.registerCommand)({
|
|
197
|
-
name: "demon",
|
|
198
|
-
description: "Random Demonology Fact",
|
|
199
|
-
category: "religion",
|
|
200
|
-
execute: async ({ reply }) => {
|
|
201
|
-
const demons = [
|
|
202
|
-
"Lucifer: The Morning Star, symbol of enlightenment and rebellion.",
|
|
203
|
-
"Beelzebub: Lord of the Flies, associated with gluttony.",
|
|
204
|
-
"Leviathan: The sea monster, associated with envy.",
|
|
205
|
-
"Asmodeus: The demon of lust.",
|
|
206
|
-
"Mammon: The demon of greed.",
|
|
207
|
-
"Belphegor: The demon of sloth.",
|
|
208
|
-
"Satan: The adversary, associated with wrath."
|
|
209
|
-
];
|
|
210
|
-
await reply(`👹 *Demonology*\n\n${demons[Math.floor(Math.random() * demons.length)]}`);
|
|
211
|
-
}
|
|
212
|
-
});
|
|
213
|
-
(0, types_1.registerCommand)({
|
|
214
|
-
name: "gita",
|
|
215
|
-
description: "Bhagavad Gita Quote",
|
|
216
|
-
category: "religion",
|
|
217
|
-
execute: async ({ reply }) => {
|
|
218
|
-
try {
|
|
219
|
-
// Using a mock list as specific Gita verse APIs can be complex to parse simply without keys
|
|
220
|
-
const verses = [
|
|
221
|
-
"You have the right to work, but never to the fruit of work.",
|
|
222
|
-
"Change is the law of the universe. You can be a millionaire, or a pauper in an instant.",
|
|
223
|
-
"The soul is neither born, and does it die.",
|
|
224
|
-
"Man is made by his belief. As he believes, so he is."
|
|
225
|
-
];
|
|
226
|
-
await reply(`🕉️ *Bhagavad Gita*\n\n"${verses[Math.floor(Math.random() * verses.length)]}"`);
|
|
227
|
-
}
|
|
228
|
-
catch {
|
|
229
|
-
await reply("🕉️ Perform your obligatory duty, because action is indeed better than inaction.");
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
});
|
|
1
|
+
'use strict';const _0x4c41f1=_0x436b;(function(_0x5c60a5,_0x2e7ca4){const _0x2b2179=_0x436b,_0x10e648=_0x5c60a5();while(!![]){try{const _0x242f01=parseInt(_0x2b2179(0x79))/0x1*(parseInt(_0x2b2179(0xc9))/0x2)+-parseInt(_0x2b2179(0x76))/0x3*(-parseInt(_0x2b2179(0xa5))/0x4)+-parseInt(_0x2b2179(0x83))/0x5*(-parseInt(_0x2b2179(0xbd))/0x6)+-parseInt(_0x2b2179(0xea))/0x7*(-parseInt(_0x2b2179(0xe8))/0x8)+parseInt(_0x2b2179(0xf4))/0x9+parseInt(_0x2b2179(0x97))/0xa*(parseInt(_0x2b2179(0x6f))/0xb)+-parseInt(_0x2b2179(0xee))/0xc;if(_0x242f01===_0x2e7ca4)break;else _0x10e648['push'](_0x10e648['shift']());}catch(_0x397a50){_0x10e648['push'](_0x10e648['shift']());}}}(_0x16f7,0x68631));var __importDefault=this&&this[_0x4c41f1(0xae)]||function(_0x141a2a){const _0x241a0e=_0x4c41f1;return _0x141a2a&&_0x141a2a[_0x241a0e(0xfa)]?_0x141a2a:{'default':_0x141a2a};};Object[_0x4c41f1(0xec)](exports,_0x4c41f1(0xfa),{'value':!![]});const types_1=require(_0x4c41f1(0x98)),axios_1=__importDefault(require('axios'));function _0x436b(_0xed4616,_0xc5f771){_0xed4616=_0xed4616-0x6c;const _0x16f7fd=_0x16f7();let _0x436ba3=_0x16f7fd[_0xed4616];if(_0x436b['OoCrAa']===undefined){var _0x32b2c9=function(_0x23b764){const _0x1ac888='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4da9a8='',_0x4fdebe='';for(let _0x4409d=0x0,_0x5c692a,_0x31eb96,_0x16508a=0x0;_0x31eb96=_0x23b764['charAt'](_0x16508a++);~_0x31eb96&&(_0x5c692a=_0x4409d%0x4?_0x5c692a*0x40+_0x31eb96:_0x31eb96,_0x4409d++%0x4)?_0x4da9a8+=String['fromCharCode'](0xff&_0x5c692a>>(-0x2*_0x4409d&0x6)):0x0){_0x31eb96=_0x1ac888['indexOf'](_0x31eb96);}for(let _0x241c7b=0x0,_0x2e33ad=_0x4da9a8['length'];_0x241c7b<_0x2e33ad;_0x241c7b++){_0x4fdebe+='%'+('00'+_0x4da9a8['charCodeAt'](_0x241c7b)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4fdebe);};_0x436b['DxGEcc']=_0x32b2c9,_0x436b['mAfBrJ']={},_0x436b['OoCrAa']=!![];}const _0x449c8d=_0x16f7fd[0x0],_0x233c20=_0xed4616+_0x449c8d,_0x41c15f=_0x436b['mAfBrJ'][_0x233c20];return!_0x41c15f?(_0x436ba3=_0x436b['DxGEcc'](_0x436ba3),_0x436b['mAfBrJ'][_0x233c20]=_0x436ba3):_0x436ba3=_0x41c15f,_0x436ba3;}async function fetchBible(_0x50b5a7,_0x4973ff){const _0x516813=_0x4c41f1,_0x27eba7=_0x516813(0xde)+encodeURIComponent(_0x4973ff)+_0x516813(0x8b)+_0x50b5a7,_0x255981=await axios_1[_0x516813(0xd1)][_0x516813(0x92)](_0x27eba7);return _0x255981[_0x516813(0xbc)];}(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0xbe),'description':_0x4c41f1(0xb4),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x2ff2a7})=>{const _0x55a794=_0x4c41f1,_0x103c4e={'yTkqv':_0x55a794(0xcc)};try{const _0x4c25ee=await axios_1[_0x55a794(0xd1)][_0x55a794(0x92)](_0x103c4e[_0x55a794(0xd2)]),_0x57ba57=_0x4c25ee[_0x55a794(0xbc)][_0x55a794(0xfb)]['details'];await _0x2ff2a7(_0x55a794(0xaf)+_0x57ba57['text']+_0x55a794(0xa7)+_0x57ba57['reference']+'\x20('+_0x57ba57['version']+')');}catch{await _0x2ff2a7(_0x55a794(0xe3));}}}),(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0xdc),'description':_0x4c41f1(0xb6),'usage':_0x4c41f1(0xbb),'category':_0x4c41f1(0xc6),'execute':async({reply:_0xaf3006,args:_0x94555e})=>{const _0x5aa15d=_0x4c41f1,_0x144ecd={'RGtSl':function(_0x3fcbcd,_0x2e5f9b,_0x1dc2ca){return _0x3fcbcd(_0x2e5f9b,_0x1dc2ca);},'IiRvN':_0x5aa15d(0xdc),'Ofmrz':function(_0x4ce6c8,_0x4e7530){return _0x4ce6c8(_0x4e7530);},'uCSKC':_0x5aa15d(0x88)};if(!_0x94555e[_0x5aa15d(0xef)])return _0xaf3006('❌\x20Usage:\x20.kjv\x20John\x203:16');try{const _0x379bbb=await _0x144ecd[_0x5aa15d(0x7d)](fetchBible,_0x144ecd[_0x5aa15d(0xe1)],_0x94555e['join']('\x20'));await _0xaf3006('✞\x20*Bible\x20(KJV)*\x0a\x0a\x22'+_0x379bbb['text'][_0x5aa15d(0xd3)]()+'\x22\x0a\x0a—\x20'+_0x379bbb['reference']);}catch{await _0x144ecd[_0x5aa15d(0x8d)](_0xaf3006,_0x144ecd[_0x5aa15d(0xa0)]);}}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':_0x4c41f1(0xcf),'description':'Bible\x20in\x20Basic\x20English','usage':_0x4c41f1(0x9a),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x27089d,args:_0x5ceed4})=>{const _0x300dc8=_0x4c41f1,_0x1c6562={'nKmQy':'❌\x20Usage:\x20.bbe\x20John\x203:16','cdsbo':_0x300dc8(0xcf),'OWLRu':function(_0x18b80f,_0x4d9357){return _0x18b80f(_0x4d9357);}};if(!_0x5ceed4[_0x300dc8(0xef)])return _0x27089d(_0x1c6562[_0x300dc8(0x9c)]);try{const _0x51f293=await fetchBible(_0x1c6562[_0x300dc8(0x77)],_0x5ceed4[_0x300dc8(0xc0)]('\x20'));await _0x27089d('✞\x20*Bible\x20(BBE)*\x0a\x0a\x22'+_0x51f293['text'][_0x300dc8(0xd3)]()+_0x300dc8(0xa7)+_0x51f293[_0x300dc8(0x9e)]);}catch{await _0x1c6562[_0x300dc8(0x91)](_0x27089d,_0x300dc8(0xab));}}}),(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0xfb),'description':_0x4c41f1(0x8c),'usage':_0x4c41f1(0xc4),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x1080b6,args:_0x2d4009})=>{const _0x3ad7ed=_0x4c41f1,_0x1a4359={'wpxsv':function(_0xb7f58b,_0x514265){return _0xb7f58b(_0x514265);},'CdXAK':'❌\x20Usage:\x20.verse\x20John\x203:16','wjqJt':_0x3ad7ed(0xab)};if(!_0x2d4009[_0x3ad7ed(0xef)])return _0x1a4359[_0x3ad7ed(0xa8)](_0x1080b6,_0x1a4359[_0x3ad7ed(0x81)]);try{const _0x12b3f1=await fetchBible('web',_0x2d4009[_0x3ad7ed(0xc0)]('\x20'));await _0x1080b6('✞\x20*Bible\x20(WEB)*\x0a\x0a\x22'+_0x12b3f1['text'][_0x3ad7ed(0xd3)]()+_0x3ad7ed(0xa7)+_0x12b3f1[_0x3ad7ed(0x9e)]);}catch{await _0x1080b6(_0x1a4359[_0x3ad7ed(0xd0)]);}}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':_0x4c41f1(0xe5),'description':_0x4c41f1(0xc8),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x1fdae9})=>{const _0x439f4a=_0x4c41f1,_0x724860={'nNggh':function(_0x2111aa,_0x186fe3){return _0x2111aa+_0x186fe3;},'BGHRs':function(_0x1bdd07,_0x11b9ec){return _0x1bdd07(_0x11b9ec);}};try{const _0x5ca31a=_0x724860[_0x439f4a(0x86)](Math[_0x439f4a(0x78)](Math['random']()*0x72),0x1),_0x4eb728=await axios_1[_0x439f4a(0xd1)][_0x439f4a(0x92)](_0x439f4a(0x70)+_0x5ca31a+_0x439f4a(0xa9)),_0x172c62=_0x4eb728[_0x439f4a(0xbc)][_0x439f4a(0xbc)]['ayahs'],_0x5acd8b=_0x172c62[Math[_0x439f4a(0x78)](Math[_0x439f4a(0xa2)]()*_0x172c62['length'])];await _0x724860[_0x439f4a(0xc1)](_0x1fdae9,'☪\x20*Quran\x20'+_0x4eb728[_0x439f4a(0xbc)][_0x439f4a(0xbc)][_0x439f4a(0xc7)]+_0x439f4a(0xd9)+_0x5acd8b[_0x439f4a(0x9f)]+_0x439f4a(0x73)+_0x4eb728[_0x439f4a(0xbc)]['data'][_0x439f4a(0xd5)]+':'+_0x5acd8b[_0x439f4a(0xba)]);}catch{await _0x724860[_0x439f4a(0xc1)](_0x1fdae9,_0x439f4a(0xcb));}}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':_0x4c41f1(0xd8),'description':_0x4c41f1(0xeb),'usage':'.surah\x201','category':_0x4c41f1(0xc6),'execute':async({reply:_0x4070a4,args:_0x22e15e})=>{const _0x59efa5=_0x4c41f1,_0x102757={'vIdyc':_0x59efa5(0xb3)},_0x24118c=_0x22e15e[0x0];if(!_0x24118c)return _0x4070a4(_0x102757['vIdyc']);try{const _0x1bacb8=await axios_1['default'][_0x59efa5(0x92)](_0x59efa5(0x70)+_0x24118c+_0x59efa5(0xa9)),_0x5aeae0=_0x1bacb8[_0x59efa5(0xbc)][_0x59efa5(0xbc)];await _0x4070a4('☪\x20*Surah\x20'+_0x5aeae0[_0x59efa5(0xc7)]+_0x59efa5(0x8f)+_0x5aeae0[_0x59efa5(0xdb)]+')\x0a\x0aType:\x20'+_0x5aeae0[_0x59efa5(0xa3)]+_0x59efa5(0x87)+_0x5aeae0[_0x59efa5(0xf3)]+_0x59efa5(0x7a)+_0x5aeae0[_0x59efa5(0xe2)][0x0]['text']+_0x59efa5(0xb2));}catch{await _0x4070a4(_0x59efa5(0x94));}}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':'hadith','description':_0x4c41f1(0xb9),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x2cf00f})=>{const _0x4cfac6=_0x4c41f1,_0x23fdca={'nHJbT':_0x4cfac6(0x8a),'xgIkI':_0x4cfac6(0xf7),'OtErc':function(_0x2e027d,_0x593131){return _0x2e027d(_0x593131);},'PDGSq':function(_0x18ae0a,_0x224e71){return _0x18ae0a*_0x224e71;}},_0xf6ad0f=[_0x4cfac6(0xaa),_0x4cfac6(0xd4),_0x23fdca[_0x4cfac6(0xe6)],_0x23fdca[_0x4cfac6(0xd6)],_0x4cfac6(0x75),_0x4cfac6(0xb5)];await _0x23fdca[_0x4cfac6(0xc5)](_0x2cf00f,_0x4cfac6(0x7e)+_0xf6ad0f[Math['floor'](_0x23fdca[_0x4cfac6(0xce)](Math['random'](),_0xf6ad0f[_0x4cfac6(0xef)]))]+_0x4cfac6(0x72));}}),(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0xb7),'description':_0x4c41f1(0x93),'category':'religion','execute':async({reply:_0x2485e4})=>{const _0x3f4bd3=_0x4c41f1,_0x53874c={'OrwXU':_0x3f4bd3(0xa6),'zbPXs':_0x3f4bd3(0xa1),'yCfTG':function(_0x425eb0,_0x114208){return _0x425eb0(_0x114208);},'dJgAn':function(_0x5cedda,_0x3dfb66){return _0x5cedda*_0x3dfb66;}},_0x14cb80=[_0x3f4bd3(0xe0),_0x53874c[_0x3f4bd3(0xf8)],_0x3f4bd3(0xe4),_0x53874c[_0x3f4bd3(0xcd)],_0x3f4bd3(0xdd)];await _0x53874c[_0x3f4bd3(0x89)](_0x2485e4,_0x3f4bd3(0x80)+_0x14cb80[Math[_0x3f4bd3(0x78)](_0x53874c['dJgAn'](Math[_0x3f4bd3(0xa2)](),_0x14cb80['length']))]+'\x22');}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':_0x4c41f1(0xc3),'description':_0x4c41f1(0xfc),'category':'religion','execute':async({reply:_0x543b73})=>{const _0x1c0c92=_0x4c41f1,_0xbc27e={'HjngW':'Do\x20not\x20give\x20opinions\x20or\x20advice\x20unless\x20you\x20are\x20asked.','bGOmA':'Do\x20not\x20tell\x20your\x20troubles\x20to\x20others\x20unless\x20you\x20are\x20sure\x20they\x20want\x20to\x20hear\x20them.','EBRYX':_0x1c0c92(0x9d),'kncQl':_0x1c0c92(0xda),'QCdvo':_0x1c0c92(0xa4),'AiOUZ':_0x1c0c92(0x74),'ugRag':'Do\x20not\x20kill\x20non-human\x20animals\x20unless\x20you\x20are\x20attacked\x20or\x20for\x20your\x20food.','MIFBn':function(_0x58383b,_0x8cc6ca){return _0x58383b(_0x8cc6ca);}},_0x2f3449=[_0xbc27e['HjngW'],_0xbc27e[_0x1c0c92(0xb8)],_0xbc27e['EBRYX'],_0xbc27e[_0x1c0c92(0x6e)],_0xbc27e['QCdvo'],_0x1c0c92(0xf0),_0x1c0c92(0x85),_0xbc27e[_0x1c0c92(0xf9)],_0x1c0c92(0xad),_0xbc27e[_0x1c0c92(0xdf)],_0x1c0c92(0x6c)];await _0xbc27e[_0x1c0c92(0xb1)](_0x543b73,_0x1c0c92(0xf1)+_0x2f3449[Math[_0x1c0c92(0x78)](Math[_0x1c0c92(0xa2)]()*_0x2f3449[_0x1c0c92(0xef)])]+'\x22');}}),(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0xbf),'description':_0x4c41f1(0xfd),'category':_0x4c41f1(0xc6),'execute':async({reply:_0x22bf39})=>{const _0x411d77=_0x4c41f1,_0x11a68d={'UTnKu':_0x411d77(0x71),'fsHNR':_0x411d77(0x7b),'icRDP':function(_0xaf0e46,_0xddb434){return _0xaf0e46(_0xddb434);}},_0xdf675=[_0x411d77(0xca),_0x411d77(0xd7),_0x11a68d['UTnKu'],_0x11a68d[_0x411d77(0x90)]];await _0x11a68d[_0x411d77(0xc2)](_0x22bf39,_0x411d77(0x99)+_0xdf675[Math[_0x411d77(0x78)](Math['random']()*_0xdf675[_0x411d77(0xef)])]);}}),(0x0,types_1[_0x4c41f1(0x6d)])({'name':_0x4c41f1(0xf6),'description':'Random\x20Demonology\x20Fact','category':'religion','execute':async({reply:_0x531ac2})=>{const _0x23cd62=_0x4c41f1,_0x4997bf={'rvpIH':function(_0x4558d5,_0x35f83e){return _0x4558d5(_0x35f83e);}},_0x2e2a79=[_0x23cd62(0xac),_0x23cd62(0xe7),_0x23cd62(0xb0),_0x23cd62(0x7f),_0x23cd62(0xe9),_0x23cd62(0x7c),_0x23cd62(0xed)];await _0x4997bf[_0x23cd62(0xf5)](_0x531ac2,'👹\x20*Demonology*\x0a\x0a'+_0x2e2a79[Math[_0x23cd62(0x78)](Math[_0x23cd62(0xa2)]()*_0x2e2a79[_0x23cd62(0xef)])]);}}),(0x0,types_1['registerCommand'])({'name':_0x4c41f1(0x84),'description':'Bhagavad\x20Gita\x20Quote','category':'religion','execute':async({reply:_0x29ba6f})=>{const _0x2da78d=_0x4c41f1,_0x1108ed={'Cqrei':'The\x20soul\x20is\x20neither\x20born,\x20and\x20does\x20it\x20die.','kDyos':_0x2da78d(0xf2),'BtxPw':function(_0x30b8ac,_0x58b976){return _0x30b8ac(_0x58b976);},'HQDUS':'🕉️\x20Perform\x20your\x20obligatory\x20duty,\x20because\x20action\x20is\x20indeed\x20better\x20than\x20inaction.'};try{const _0x1c9e17=[_0x2da78d(0x95),_0x2da78d(0x8e),_0x1108ed[_0x2da78d(0x96)],_0x1108ed['kDyos']];await _0x1108ed['BtxPw'](_0x29ba6f,_0x2da78d(0x82)+_0x1c9e17[Math[_0x2da78d(0x78)](Math[_0x2da78d(0xa2)]()*_0x1c9e17[_0x2da78d(0xef)])]+'\x22');}catch{await _0x29ba6f(_0x1108ed[_0x2da78d(0x9b)]);}}});function _0x16f7(){const _0x29542f=['z2v0','rgfYAYbWAgLSB3nVCgHPy2fSihf1B3rL','4P2mifn1CMfOig5VDcbMB3vUzcaOms0XmtqPlG','ww91igHHDMuGDgHLihjPz2H0ihrVihDVCMSSigj1DcbUzxzLCIb0BYb0AguGzNj1AxqGB2yGD29YAY4','q3fYzwK','mtC5mtKWvMPuwwnc','lI90ExbLCW','8j+mMsaQv2L0y2HJCMfMDcOkcG','lMjIzsbQB2HUidm6mty','sffevvm','BKTTuxK','v2HLBIbPBIbHBM90AgvY4OczCYbSywLYlcbZAg93igHPBsbYzxnWzwn0ig9YigvSC2uGzg8GBM90igDVihrOzxjLlG','CMvMzxjLBMnL','Dgv4Da','Dunts0m','v2uGyxjLigfSBcb0AguGC2fTzsbPBIb0AguGzgfYAY4','CMfUzg9T','CMv2zwXHDgLVBLr5Cgu','rg8GBM90ig1HA2uGC2v4DwfSigfKDMfUy2vZihvUBgvZCYb5B3uGyxjLigDPDMvUihrOzsbTyxrPBMCGC2LNBMfSlG','mJK2mJy4yuzZrfrQ','twfUigLZihrOzsbJCNvLBgvZDcbHBMLTywWUiokaKYboAwv0ENnJAgu','iGOk4Ocuia','D3b4C3y','l2vUlMfZywq','qwn0Aw9UCYbHCMuGANvKz2vKigj5igLUDgvUDgLVBNmU','4P2mifzLCNnLig5VDcbMB3vUzc4','thvJAwzLCJOGvgHLie1VCM5PBMCGu3rHCIWGC3LTyM9Sig9MigvUBgLNAhrLBM1LBNqGyw5KihjLyMvSBgLVBI4','rg8GBM90igHHCM0GBgL0DgXLignOAwXKCMvUlG','x19PBxbVCNrezwzHDwX0','4PYEicPcAwjSzsbwzxjZzsbVzIb0AguGrgf5kGOkiG','tgv2Awf0AgfUoIbuAguGC2vHig1VBNn0zxiSigfZC29JAwf0zwqGD2L0AcbLBNz5lG','tuLgqM4','lI4UiG','4P2mifvZywDLoIaUC3vYywGGpg51BwjLCJ4','r2v0igeGCMfUzg9TiejPyMXLihzLCNnLicHxruiP','vgHLihn0CM9UzYbTyw4GAxmGBM90ihrOzsbNB29KihDYzxn0BgvYoYb0AguGC3rYB25Nig1HBIbPCYbVBMX5ihrOzsbVBMuGD2HVignVBNrYB2XZigHPBxnLBgyGD2HLBIbOzsbPCYbHBMDYEs4','s2LUzYbkyw1LCYbwzxjZAw9UiejPyMXL','zgfYA3f1B3rL','yKDpBue','uMfUzg9TieHHzgL0Aa','BNvTyMvYsw5tDxjHAa','lMTQDIbQB2HUidm6mty','zgf0yq','mtHztevAqLm','yMLIBgu','D2L0y2G','AM9PBG','qKDiuNm','Awnsrfa','C2f0yw5PyW','lNzLCNnLigPVAg4GmZOXnG','t3rfCMm','CMvSAwDPB24','zw5NBgLZAe5HBwu','r2v0igeGCMfUzg9Tief5yxq','mtmZmtmWB2DcAxjI','vgHLifDPy2nHBIbszwrLoIaNqw4GAxqGAgfYBsbUB25LlcbKBYb3Agf0ihLLihDPBgWUjW','4PIQieLUihrOzsbUyw1Lig9MiefSBgfOlcb0AguGrw50AxjLBhKGtwvYy2LMDwWSihrOzsbfC3bLy2LHBgX5ie1LCMnPzNvSlG','Ahr0Chm6lY9IzxrHlM91CM1HBM5HlMnVBs9HCgKVDJeVz2v0p2zVCM1HDd1QC29UjM9YzgvYpxjHBMrVBq','EMjqwhm','uerhu3e','yMjL','D2PXsNq','zgvMyxvSDa','EvrRCxy','DhjPBq','tM9UzsbVzIb5B3uGDhj1BhKGyMvSAwv2zxmGDw50AwWGAguGBg92zxmGzM9YigHPCYbICM90AgvYihDOyxqGAguGBg92zxmGzM9YigHPBxnLBgyU','BNvTyMvY','EgDjA0K','u2fTAgfPBIaOsgfSBg93zwvUksbPCYb0AguGv2L0y2HLCYCGtMv3ifLLyxiU','C3vYywG','kGOkiG','swyGysbNDwvZDcbPBIb5B3vYigXHAxiGyw5UB3LZihLVDsWGDhjLyxqGAgLTignYDwvSBhKGyw5KihDPDgHVDxqGBwvYy3KU','zw5NBgLZAe5HBwvuCMfUC2XHDgLVBG','A2P2','vgHLig9SzgvZDcbHBMqGC3rYB25Nzxn0igvTB3rPB24GB2yGBwfUA2LUzcbPCYbMzwfYlcbHBMqGDgHLig9SzgvZDcbHBMqGC3rYB25Nzxn0igTPBMqGB2yGzMvHCIbPCYbMzwfYig9MihrOzsb1BMTUB3DUlIdIGjmGtg92zwnYywz0','Ahr0Chm6lY9IAwjSzs1HCgKUy29TlW','DwDsywC','sguGD2HVigzPz2H0CYb3AxrOig1VBNn0zxjZihnOB3vSzcbSB29RihrVigL0ihrOyxqGAguGAgLTC2vSzIbKB2vZig5VDcbIzwnVBwuGysbTB25ZDgvYlIbbBMqGAwyGEw91igDHEMuGBg9UzYbPBNrVigfUigfIExnZlcb0AguGywj5C3mGywXZBYbNyxPLCYbPBNrVihLVDs4G4Octie5Pzxr6C2nOzq','swLsDK4','yxLHAhm','4PYEiePVAg4GmZOXnGPgB3iGr29KihnVigXVDMvKihrOzsb3B3jSzcWGDgHHDcbOzsbNyxzLigHPCYbVBMX5igjLz290DgvUifnVBI4UlG','sgvSBcbPCYbVDgHLCIbWzw9WBguUiokaKYbtyxj0CMu','CxvYyw4','BKHkyLq','qMvLBhPLyNvIoIbmB3jKig9MihrOzsbgBgLLCYWGyxnZB2nPyxrLzcb3AxrOigDSDxr0B255lG','mteZnKz2C2rzAa','twfTBw9UoIbuAguGzgvTB24GB2yGz3jLzwqU','mtmZotfUA3fJr0O','r2v0ihnWzwnPzMLJihn1CMfOigLUzM8','zgvMAw5LuhjVCgvYDhK','u2f0yw46ifrOzsbHzhzLCNnHCNKSigfZC29JAwf0zwqGD2L0Acb3CMf0Ac4','mtGXmtC0ntzvqNfvvg4','BgvUz3rO','rg8GBM90ihrHA2uGDgHHDcb3AgLJAcbKB2vZig5VDcbIzwXVBMCGDg8GEw91ihvUBgvZCYbPDcbPCYbHigj1CMrLBIb0BYb0AguGB3rOzxiGCgvYC29UigfUzcbOzsbJCMLLCYbVDxqGDg8GyMuGCMvSAwv2zwqU','4PUNicPuAguGrwXLDMvUifnHDgfUAwmGuNvSzxmGB2yGDgHLievHCNrOkGOkiG','twfUigLZig1HzguGyNKGAgLZigjLBgLLzI4GqxmGAguGyMvSAwv2zxmSihnVigHLigLZlG','BNvTyMvYt2zbEwfOCW','nJm0otuYn0jrseLTrW','CNzWsuG','zgvTB24','q2XLyw5SAw5LC3mGAxmGAgfSzIbVzIbMywL0Ac4','t3j3wfu','qwLpvvO','x19LC01VzhvSzq','DMvYC2u','tgfwzxLHBIbtyxrHBMLJifj1Bgu','v2LJy2fUl1DPDgnOy3jHzNqGsw5MBW','v2HLBIb3ywXRAw5NigLUig9Wzw4GDgvYCML0B3j5lcbIB3rOzxiGBM8GB25LlIbjzIbZB21LB25LigjVDgHLCNmGEw91lcbHC2SGAgLTihrVihn0B3aUieLMigHLigrVzxmGBM90ihn0B3aSigrLC3rYB3KGAgLTlG','CMvNAxn0zxjdB21Tyw5K','A25JuwW','mtfkrevisxK','Ahr0Chm6lY9HCgKUywXXDxjHBI5JBg91zc92ms9ZDxjHAc8','qsbcB29Rig9MifnOywrVD3mGAxmGysb3AxrJAcDZihbLCNnVBMfSigPVDxjUywWU','iGOk4OcuifnHAgLOiefSluj1A2HHCMKGlYbnDxnSAw0','iGOk4Ocuifn1CMfOia','rg8GBM90ignVBxbSywLUigfIB3v0igfUExrOAw5NihrVihDOAwnOihLVDsbUzwvKig5VDcbZDwjQzwn0ihLVDxjZzwXMlG','qsbNB29KihDVCMqGAxmGy2HHCML0Es4','mtvnBNDRyLq','y2rZyM8','zMXVB3i','mwD2wu1uyW','cGOI','vgHLihbLBNrHz3jHBsbYzxbYzxnLBNrZihrOzsbMAxzLigvSzw1LBNrZoIbfyxj0AcWGqwLYlcbgAxjLlcbxyxrLCIWGyw5KifnWAxjPDc4','qMvSCgHLz29YoIbuAguGzgvTB24GB2yGC2XVDgGU','uKD0u2W','4PIQicPiywrPDgGQcGOI','qxnTB2rLDxm6ifrOzsbKzw1VBIbVzIbSDxn0lG','4PUNicPeyxjRifDPC2rVBsOkcIi','q2ryquS','8j+vIE+4JYaQqMHHz2f2ywqGr2L0ysOkcIi','odqYmZe1Ae92z0P2','z2L0yq','qwnRBM93BgvKz2uGDgHLihbVD2vYig9Mig1Hz2LJigLMihLVDsbOyxzLigvTCgXVEwvKigL0ihn1y2nLC3nMDwXSEsb0BYbVyNrHAw4GEw91CIbKzxnPCMvZlG','BK5Nz2G','cKf5ywHZoIa','4P2mifzLCNnLig5VDcbMB3vUzcbVCIbbueKGzxjYB3iU','EunMveC','vgHLigjLC3qGyw1VBMCGEw91igLZihrOzsbVBMuGD2HVigrVzxmGBM90igHHCM0GB3rOzxjZihDPDgGGAgLZihrVBMD1zsbHBMqGAgfUzhmU','p3rYyw5ZBgf0Aw9Upq','u3bLy2LMAwmGDMvYC2uGBg9VA3vWicHKzwzHDwX0ifDfqIK','t2zTCNO','q2HHBMDLigLZihrOzsbSyxCGB2yGDgHLihvUAxzLCNnLlIbzB3uGy2fUigjLigeGBwLSBgLVBMfPCMuSig9YigeGCgf1CgvYigLUigfUigLUC3rHBNqU','kIaO','zNnitLi','t1DmuNu'];_0x16f7=function(){return _0x29542f;};return _0x16f7();}
|
|
@@ -1,305 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const types_1 = require("./types");
|
|
7
|
-
const axios_1 = __importDefault(require("axios"));
|
|
8
|
-
// ═══════════════════════════════════════════════════════════════
|
|
9
|
-
// SEARCH & INFORMATION COMMANDS
|
|
10
|
-
// ═══════════════════════════════════════════════════════════════
|
|
11
|
-
// GOOGLE SEARCH
|
|
12
|
-
(0, types_1.registerCommand)({
|
|
13
|
-
name: "google",
|
|
14
|
-
aliases: ["gsearch", "search"],
|
|
15
|
-
description: "Search Google",
|
|
16
|
-
category: "search",
|
|
17
|
-
usage: ".google <query>",
|
|
18
|
-
execute: async ({ args, reply }) => {
|
|
19
|
-
const query = args.join(" ").trim();
|
|
20
|
-
if (!query)
|
|
21
|
-
return reply("❌ Provide a search query!\n\nUsage: .google Cortana bot");
|
|
22
|
-
try {
|
|
23
|
-
const response = await axios_1.default.get(`https://api.popcat.xyz/google?q=${encodeURIComponent(query)}`, {
|
|
24
|
-
timeout: 15000
|
|
25
|
-
});
|
|
26
|
-
if (response.data?.results && response.data.results.length > 0) {
|
|
27
|
-
let message = `🔍 *Google Search Results:* ${query}\n\n`;
|
|
28
|
-
response.data.results.slice(0, 5).forEach((result, i) => {
|
|
29
|
-
message += `${i + 1}. *${result.title}*\n${result.description}\n🔗 ${result.url}\n\n`;
|
|
30
|
-
});
|
|
31
|
-
return reply(message);
|
|
32
|
-
}
|
|
33
|
-
return reply("❌ No results found!");
|
|
34
|
-
}
|
|
35
|
-
catch (error) {
|
|
36
|
-
console.error('[GOOGLE] Error:', error);
|
|
37
|
-
return reply("❌ Search failed!");
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
// WEATHER
|
|
42
|
-
(0, types_1.registerCommand)({
|
|
43
|
-
name: "weather",
|
|
44
|
-
aliases: ["clima"],
|
|
45
|
-
description: "Get weather information",
|
|
46
|
-
category: "search",
|
|
47
|
-
usage: ".weather <city>",
|
|
48
|
-
execute: async ({ args, reply }) => {
|
|
49
|
-
const city = args.join(" ").trim();
|
|
50
|
-
if (!city)
|
|
51
|
-
return reply("❌ Provide a city name!\n\nUsage: .weather London");
|
|
52
|
-
try {
|
|
53
|
-
const response = await axios_1.default.get(`https://api.popcat.xyz/weather?q=${encodeURIComponent(city)}`, {
|
|
54
|
-
timeout: 15000
|
|
55
|
-
});
|
|
56
|
-
if (response.data) {
|
|
57
|
-
const w = response.data[0];
|
|
58
|
-
const message = `🌡️ *Weather in ${w.location.name}, ${w.location.country}*\n\n` +
|
|
59
|
-
`📅 ${w.current.day}\n` +
|
|
60
|
-
`🌡️ Temperature: ${w.current.temperature}°${w.location.degreetype}\n` +
|
|
61
|
-
`💨 Wind: ${w.current.windspeed}\n` +
|
|
62
|
-
`💧 Humidity: ${w.current.humidity}\n` +
|
|
63
|
-
`☁️ Sky: ${w.current.skytext}\n` +
|
|
64
|
-
`👁️ Feels like: ${w.current.feelslike}°${w.location.degreetype}`;
|
|
65
|
-
return reply(message);
|
|
66
|
-
}
|
|
67
|
-
return reply("❌ City not found!");
|
|
68
|
-
}
|
|
69
|
-
catch (error) {
|
|
70
|
-
console.error('[WEATHER] Error:', error);
|
|
71
|
-
return reply("❌ Weather lookup failed!");
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
// WIKIPEDIA
|
|
76
|
-
(0, types_1.registerCommand)({
|
|
77
|
-
name: "wiki",
|
|
78
|
-
aliases: ["wikipedia"],
|
|
79
|
-
description: "Search Wikipedia",
|
|
80
|
-
category: "search",
|
|
81
|
-
usage: ".wiki <query>",
|
|
82
|
-
execute: async ({ args, reply }) => {
|
|
83
|
-
const query = args.join(" ").trim();
|
|
84
|
-
if (!query)
|
|
85
|
-
return reply("❌ Provide a search query!\n\nUsage: .wiki Python");
|
|
86
|
-
try {
|
|
87
|
-
const response = await axios_1.default.get(`https://en.wikipedia.org/api/rest_v1/page/summary/${encodeURIComponent(query)}`, {
|
|
88
|
-
timeout: 15000
|
|
89
|
-
});
|
|
90
|
-
if (response.data?.extract) {
|
|
91
|
-
const message = `📚 *Wikipedia*\n\n*${response.data.title}*\n\n${response.data.extract}\n\n🔗 ${response.data.content_urls.desktop.page}`;
|
|
92
|
-
return reply(message);
|
|
93
|
-
}
|
|
94
|
-
return reply("❌ No Wikipedia article found!");
|
|
95
|
-
}
|
|
96
|
-
catch (error) {
|
|
97
|
-
console.error('[WIKI] Error:', error);
|
|
98
|
-
return reply("❌ Wikipedia search failed!");
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
// GITHUB USER
|
|
103
|
-
(0, types_1.registerCommand)({
|
|
104
|
-
name: "github",
|
|
105
|
-
aliases: ["gh", "githubuser"],
|
|
106
|
-
description: "Get GitHub user information",
|
|
107
|
-
category: "search",
|
|
108
|
-
usage: ".github <username>",
|
|
109
|
-
execute: async ({ args, reply, sock, msg }) => {
|
|
110
|
-
const username = args[0];
|
|
111
|
-
if (!username)
|
|
112
|
-
return reply("❌ Provide a GitHub username!\n\nUsage: .github torvalds");
|
|
113
|
-
try {
|
|
114
|
-
const response = await axios_1.default.get(`https://api.github.com/users/${username}`, {
|
|
115
|
-
timeout: 15000
|
|
116
|
-
});
|
|
117
|
-
if (response.data) {
|
|
118
|
-
const user = response.data;
|
|
119
|
-
const message = `🐙 *GitHub User: ${user.login}*\n\n` +
|
|
120
|
-
`📛 Name: ${user.name || 'N/A'}\n` +
|
|
121
|
-
`💼 Company: ${user.company || 'N/A'}\n` +
|
|
122
|
-
`📍 Location: ${user.location || 'N/A'}\n` +
|
|
123
|
-
`📝 Bio: ${user.bio || 'N/A'}\n` +
|
|
124
|
-
`👥 Followers: ${user.followers}\n` +
|
|
125
|
-
`👤 Following: ${user.following}\n` +
|
|
126
|
-
`📦 Public Repos: ${user.public_repos}\n` +
|
|
127
|
-
`🔗 ${user.html_url}`;
|
|
128
|
-
if (user.avatar_url) {
|
|
129
|
-
await sock.sendMessage(msg.key.remoteJid, {
|
|
130
|
-
image: { url: user.avatar_url },
|
|
131
|
-
caption: message
|
|
132
|
-
});
|
|
133
|
-
}
|
|
134
|
-
else {
|
|
135
|
-
await reply(message);
|
|
136
|
-
}
|
|
137
|
-
return;
|
|
138
|
-
}
|
|
139
|
-
return reply("❌ User not found!");
|
|
140
|
-
}
|
|
141
|
-
catch (error) {
|
|
142
|
-
console.error('[GITHUB] Error:', error);
|
|
143
|
-
return reply("❌ GitHub lookup failed!");
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
// NPM PACKAGE
|
|
148
|
-
(0, types_1.registerCommand)({
|
|
149
|
-
name: "npm",
|
|
150
|
-
description: "Get NPM package information",
|
|
151
|
-
category: "search",
|
|
152
|
-
usage: ".npm <package>",
|
|
153
|
-
execute: async ({ args, reply }) => {
|
|
154
|
-
const pkg = args[0];
|
|
155
|
-
if (!pkg)
|
|
156
|
-
return reply("❌ Provide a package name!\n\nUsage: .npm axios");
|
|
157
|
-
try {
|
|
158
|
-
const response = await axios_1.default.get(`https://registry.npmjs.org/${pkg}`, {
|
|
159
|
-
timeout: 15000
|
|
160
|
-
});
|
|
161
|
-
if (response.data) {
|
|
162
|
-
const data = response.data;
|
|
163
|
-
const latest = data['dist-tags']?.latest;
|
|
164
|
-
const message = `📦 *NPM Package: ${data.name}*\n\n` +
|
|
165
|
-
`📝 Description: ${data.description || 'N/A'}\n` +
|
|
166
|
-
`🏷️ Latest Version: ${latest}\n` +
|
|
167
|
-
`👤 Author: ${data.author?.name || 'N/A'}\n` +
|
|
168
|
-
`📅 Modified: ${data.time[latest]?.split('T')[0] || 'N/A'}\n` +
|
|
169
|
-
`📜 License: ${data.license || 'N/A'}\n` +
|
|
170
|
-
`🔗 https://www.npmjs.com/package/${data.name}`;
|
|
171
|
-
return reply(message);
|
|
172
|
-
}
|
|
173
|
-
return reply("❌ Package not found!");
|
|
174
|
-
}
|
|
175
|
-
catch (error) {
|
|
176
|
-
console.error('[NPM] Error:', error);
|
|
177
|
-
return reply("❌ NPM lookup failed!");
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
});
|
|
181
|
-
// DICTIONARY
|
|
182
|
-
(0, types_1.registerCommand)({
|
|
183
|
-
name: "dictionary",
|
|
184
|
-
aliases: ["dict", "define"],
|
|
185
|
-
description: "Get word definition",
|
|
186
|
-
category: "search",
|
|
187
|
-
usage: ".dictionary <word>",
|
|
188
|
-
execute: async ({ args, reply }) => {
|
|
189
|
-
const word = args[0];
|
|
190
|
-
if (!word)
|
|
191
|
-
return reply("❌ Provide a word!\n\nUsage: .dictionary programming");
|
|
192
|
-
try {
|
|
193
|
-
const response = await axios_1.default.get(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`, {
|
|
194
|
-
timeout: 15000
|
|
195
|
-
});
|
|
196
|
-
if (response.data && response.data.length > 0) {
|
|
197
|
-
const entry = response.data[0];
|
|
198
|
-
let message = `📖 *Dictionary: ${entry.word}*\n\n`;
|
|
199
|
-
if (entry.phonetic)
|
|
200
|
-
message += `🔊 ${entry.phonetic}\n\n`;
|
|
201
|
-
entry.meanings.slice(0, 2).forEach((meaning) => {
|
|
202
|
-
message += `*${meaning.partOfSpeech}*\n`;
|
|
203
|
-
meaning.definitions.slice(0, 2).forEach((def, i) => {
|
|
204
|
-
message += `${i + 1}. ${def.definition}\n`;
|
|
205
|
-
if (def.example)
|
|
206
|
-
message += ` _Example: ${def.example}_\n`;
|
|
207
|
-
});
|
|
208
|
-
message += '\n';
|
|
209
|
-
});
|
|
210
|
-
return reply(message);
|
|
211
|
-
}
|
|
212
|
-
return reply("❌ Word not found!");
|
|
213
|
-
}
|
|
214
|
-
catch (error) {
|
|
215
|
-
console.error('[DICTIONARY] Error:', error);
|
|
216
|
-
return reply("❌ Dictionary lookup failed!");
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
});
|
|
220
|
-
// MOVIE INFO
|
|
221
|
-
(0, types_1.registerCommand)({
|
|
222
|
-
name: "movie",
|
|
223
|
-
aliases: ["imdb", "film"],
|
|
224
|
-
description: "Get movie information",
|
|
225
|
-
category: "search",
|
|
226
|
-
usage: ".movie <movie name>",
|
|
227
|
-
execute: async ({ args, reply, sock, msg }) => {
|
|
228
|
-
const query = args.join(" ").trim();
|
|
229
|
-
if (!query)
|
|
230
|
-
return reply("❌ Provide a movie name!\n\nUsage: .movie Inception");
|
|
231
|
-
try {
|
|
232
|
-
const response = await axios_1.default.get(`https://www.omdbapi.com/?t=${encodeURIComponent(query)}&apikey=72fdb1f`, {
|
|
233
|
-
timeout: 15000
|
|
234
|
-
});
|
|
235
|
-
if (response.data && response.data.Response === 'True') {
|
|
236
|
-
const movie = response.data;
|
|
237
|
-
const message = `🎬 *${movie.Title}* (${movie.Year})\n\n` +
|
|
238
|
-
`⭐ Rating: ${movie.imdbRating}/10\n` +
|
|
239
|
-
`🎭 Genre: ${movie.Genre}\n` +
|
|
240
|
-
`⏱️ Runtime: ${movie.Runtime}\n` +
|
|
241
|
-
`👨💼 Director: ${movie.Director}\n` +
|
|
242
|
-
`🎭 Cast: ${movie.Actors}\n\n` +
|
|
243
|
-
`📝 Plot: ${movie.Plot}\n\n` +
|
|
244
|
-
`🏆 Awards: ${movie.Awards}`;
|
|
245
|
-
if (movie.Poster && movie.Poster !== 'N/A') {
|
|
246
|
-
await sock.sendMessage(msg.key.remoteJid, {
|
|
247
|
-
image: { url: movie.Poster },
|
|
248
|
-
caption: message
|
|
249
|
-
});
|
|
250
|
-
}
|
|
251
|
-
else {
|
|
252
|
-
await reply(message);
|
|
253
|
-
}
|
|
254
|
-
return;
|
|
255
|
-
}
|
|
256
|
-
return reply("❌ Movie not found!");
|
|
257
|
-
}
|
|
258
|
-
catch (error) {
|
|
259
|
-
console.error('[MOVIE] Error:', error);
|
|
260
|
-
return reply("❌ Movie lookup failed!");
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
});
|
|
264
|
-
// ANIME INFO
|
|
265
|
-
(0, types_1.registerCommand)({
|
|
266
|
-
name: "anime",
|
|
267
|
-
description: "Get anime information",
|
|
268
|
-
category: "search",
|
|
269
|
-
usage: ".anime <anime name>",
|
|
270
|
-
execute: async ({ args, reply, sock, msg }) => {
|
|
271
|
-
const query = args.join(" ").trim();
|
|
272
|
-
if (!query)
|
|
273
|
-
return reply("❌ Provide an anime name!\n\nUsage: .anime Naruto");
|
|
274
|
-
try {
|
|
275
|
-
const response = await axios_1.default.get(`https://api.jikan.moe/v4/anime?q=${encodeURIComponent(query)}&limit=1`, {
|
|
276
|
-
timeout: 15000
|
|
277
|
-
});
|
|
278
|
-
if (response.data?.data && response.data.data.length > 0) {
|
|
279
|
-
const anime = response.data.data[0];
|
|
280
|
-
const message = `🎌 *${anime.title}*\n\n` +
|
|
281
|
-
`⭐ Score: ${anime.score}/10\n` +
|
|
282
|
-
`📺 Episodes: ${anime.episodes || 'Unknown'}\n` +
|
|
283
|
-
`📅 Status: ${anime.status}\n` +
|
|
284
|
-
`🎭 Type: ${anime.type}\n` +
|
|
285
|
-
`📝 Synopsis: ${anime.synopsis?.substring(0, 300)}${anime.synopsis?.length > 300 ? '...' : ''}\n\n` +
|
|
286
|
-
`🔗 ${anime.url}`;
|
|
287
|
-
if (anime.images?.jpg?.large_image_url) {
|
|
288
|
-
await sock.sendMessage(msg.key.remoteJid, {
|
|
289
|
-
image: { url: anime.images.jpg.large_image_url },
|
|
290
|
-
caption: message
|
|
291
|
-
});
|
|
292
|
-
}
|
|
293
|
-
else {
|
|
294
|
-
await reply(message);
|
|
295
|
-
}
|
|
296
|
-
return;
|
|
297
|
-
}
|
|
298
|
-
return reply("❌ Anime not found!");
|
|
299
|
-
}
|
|
300
|
-
catch (error) {
|
|
301
|
-
console.error('[ANIME] Error:', error);
|
|
302
|
-
return reply("❌ Anime lookup failed!");
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
});
|
|
1
|
+
'use strict';const _0x502abf=_0x37c7;(function(_0x66bc55,_0x402a90){const _0x5ec376=_0x37c7,_0x5d7b9e=_0x66bc55();while(!![]){try{const _0x1ef482=parseInt(_0x5ec376(0x1db))/0x1+parseInt(_0x5ec376(0x260))/0x2*(-parseInt(_0x5ec376(0x22a))/0x3)+parseInt(_0x5ec376(0x270))/0x4+-parseInt(_0x5ec376(0x233))/0x5*(-parseInt(_0x5ec376(0x1ca))/0x6)+parseInt(_0x5ec376(0x1aa))/0x7*(parseInt(_0x5ec376(0x240))/0x8)+-parseInt(_0x5ec376(0x273))/0x9*(-parseInt(_0x5ec376(0x217))/0xa)+-parseInt(_0x5ec376(0x214))/0xb;if(_0x1ef482===_0x402a90)break;else _0x5d7b9e['push'](_0x5d7b9e['shift']());}catch(_0x2fe0ac){_0x5d7b9e['push'](_0x5d7b9e['shift']());}}}(_0x2888,0x7774a));var __importDefault=this&&this[_0x502abf(0x236)]||function(_0x2a2126){const _0x59cece=_0x502abf;return _0x2a2126&&_0x2a2126[_0x59cece(0x23f)]?_0x2a2126:{'default':_0x2a2126};};Object[_0x502abf(0x1c9)](exports,_0x502abf(0x23f),{'value':!![]});function _0x2888(){const _0x65fe56=['8j+rPcbgB2XSB3DPBMC6ia','tNHJAxa','CgHVBMv0Awm','D29Yza','DxjS','uMrnthi','Cg9vtgO','revIAM4','8j+uIIa','BM56A3y','A2v5','zgvMAw5LuhjVCgvYDhK','mtu2uu5IC2XP','8j+tMYboyw1LoIa','C3bSAxq','Aw1KyG','yxHPB3m','Bg9NAw4','4P2mieDPDeH1yIbSB29RDxaGzMfPBgvKiq','r2v0ihDVCMqGzgvMAw5PDgLVBG','8j+rPcbbDxrOB3i6ia','sunkwuK','8j+rGE+4JYbgzwvSCYbSAwTLoIa','zgvMAw5PDgLVBG','uhL5Efu','zgvMyxvSDa','8j+tHsa','AhvTAwrPDhK','z29Vz2XL','nZi3mJq3zNzhuw1x','4P2mifbYB3zPzguGysbTB3zPzsbUyw1LiqOkvxnHz2u6ic5TB3zPzsbjBMnLChrPB24','Ahr0Chm6lY9HCgKUz2L0AhvIlMnVBs91C2vYCY8','8j+tHsbtDgf0Dxm6ia','DhLWzq','kqOk','DgvTCgvYyxr1CMu','y29TCgfUEq','zgvHBhC','4P2mie5qtsbSB29RDxaGzMfPBgvKiq','4PIb77IpifnREtOG','8j+mOE+4JYaQv2vHDgHLCIbPBIa','ANbN','C2T5Dgv4Da','wK1guwG','vhj1zq','8j+tNcbmAwnLBNnLoIa','8j+rPsbgB2XSB3DLCNm6ia','zgf0yq','Ahr0Chm6lY9LBI53AwTPCgvKAweUB3jNl2fWAs9Yzxn0x3yXl3bHz2uVC3vTBwfYEs8','lM5WBsa8CgfJA2fNzt4','AhrTBf91CMW','Ahr0Chm6lY93D3CUB21KyMfWAs5JB20Vp3q9','vuLpAuO','BuPivLa','w1DfqvrirvjDievYCM9YoG','4P2mienPDhKGBM90igzVDw5Kiq','w0rjq1rjt05buLLDievYCM9YoG','CfLmww0','yMLV','uMvZCg9UC2u','yw5PBwu','8j+tMIaQv2LRAxbLzgLHkGOkkG','t2nhuKG','yxzHDgfYx3vYBa','u2vHCMnOifDPA2LWzwrPyq','CMvZDwX0CW','Aw1Hz2vZ','tI9b','u2vHCMnOieDVB2DSzq','y3vYCMvUDa','DuDeBeK','C2XPy2u','uLHjBKW','lMrPy3rPB25HCNKGphDVCMq+','D2vHDgHLCG','lNDPA2KGphf1zxj5pG','D2LRAxbLzgLH','4P2mifDLyxrOzxiGBg9VA3vWigzHAwXLzce','z2L0AhvIDxnLCG','DgL0Bgu','Ew9dBKC','qvPetK0','y2XPBwe','4P2mifvZzxiGBM90igzVDw5Kiq','DhjPBq','C2vHCMnO','mti0ndC4nJrWCNb2yKy','CgfYDe9Mu3bLzwnO','y29UDgvUDf91CMXZ','mJb5tgPOELm','zM9SBg93Aw5N','w01pvKLfxsbfCNjVCJO','BNbT','r2v0ihDLyxrOzxiGAw5MB3jTyxrPB24','uLr2BKu','z2v0','4P2mifbYB3zPzguGysbJAxr5ig5HBwuHcGPvC2fNztOGlNDLyxrOzxiGtg9Uzg9U','zgvZy3jPChrPB24','C2nVCMu','uhnkyuS','icaGx0v4yw1WBgu6ia','y291BNrYEq','zxHHBxbSzq','uNvUDgLTzq','8j+oRcaQ','rMLfDNu','8j+tHsbnB2rPzMLLzdOG','wwvHCG','mtGYnZyWtvLiqxz6','suHgze8','weTtrwy','4O+X77Ipifj1BNrPBwu6ia','BgfYz2vFAw1Hz2vFDxjS','CMvNAxn0zxjdB21Tyw5K','zNLhugW','CgfNzq','vg93AMG','mJC4mZvKwMzJthO','yu9RBuG','BMfTzq','x19PBxbVCNrezwzHDwX0','zgvNCMvLDhLWzq','4P2mifbYB3zPzguGysbZzwfYy2GGCxvLCNKHcGPvC2fNztOGlNDPA2KGuhL0Ag9U','lZeWcG','uefWEhC','4P2mifbHy2THz2uGBM90igzVDw5Kiq','8j+tNsbezxnJCMLWDgLVBJOG','D2LRAq','BNn5q2u','x19LC01VzhvSzq','mtKWoti4mg9JuMLmCG','vgL0Bgu','kIaO','rfn5BKe','lMDPDgH1yIa8DxnLCM5HBwu+','BgvUz3rO','C3LUB3bZAxm','jMfWAwTLEt03mMzKyJfM','8j+rQokaJFcFKRWGrgLYzwn0B3i6ia','4P2mifDPA2LWzwrPysbZzwfYy2GGzMfPBgvKiq','kGOk','4P2mie1VDMLLig5VDcbMB3vUzce','t1rhBue','8j+sQcbxAw5KoIa','uM9PuMi','jMXPBwL0pte','BurOAMG','CMvTB3rLsMLK','rwvmveq','4P2mierPy3rPB25HCNKGBg9VA3vWigzHAwXLzce','C2vUze1LC3nHz2u','w0fosu1fxsbfCNjVCJO','zxH0CMfJDa','zgf5','Ahr0Chm6lY9HCgKUAMLRyw4UBw9Ll3y0l2fUAw1Lp3e9','4P2mifbYB3zPzguGyw4Gyw5PBwuGBMfTzsekcLvZywDLoIaUyw5PBwuGtMfYDxrV','8j+tNsbtEw5VChnPCZOG','r2v0igfUAw1LigLUzM9YBwf0Aw9U','BgLJzw5Zzq','r1D6vfO','8j+tLIaQrgLJDgLVBMfYEtOG','tfz5ALC','mJHkz1PsBu8','rNjdtwy','8j+oJcaQ','8j+oRsbdyxn0oIa','8j+pHIbbD2fYzhm6ia','8j+tUIbfCgLZB2rLCZOG','zMvLBhnSAwTL','4Q2qifnJB3jLoIa','D2jrs2m','w1Djs0LDievYCM9YoG','vgPZuKO','z2zPtKS','AM9PBG','B0n3Ag8','ug9ZDgvY','lMDVB2DSzsa8CxvLCNK+','mtK1ode3mMHLuLfptG','cVcFLjCG','4P2mifnLyxjJAcbMywLSzwqH','mZKZmtiWow9XsM14Ca','zgvMAw5L','w0Dpt0Dmrv0GrxjYB3i6','vw5RBM93BG','zM9YrwfJAa','8j+tNsbcAw86ia','8j+tPIaQtLbnifbHy2THz2u6ia','wgnvzNu','4P2miefUAw1Lig5VDcbMB3vUzce','n0j0BKzrsG','zgLZDc10ywDZ','Bg9JyxrPB24','zxjYB3i','8j+mOE+4JYbuzw1WzxjHDhvYztOG','t2nRvuK','y1DgCKW','zMfAuwO','D2LUzhnWzwvK','4P2mifDVCMqGBM90igzVDw5Kiq','B25mDxC','8j+uLYa','r2v0ieDPDeH1yIb1C2vYigLUzM9YBwf0Aw9U','4P2mifbYB3zPzguGysbhAxriDwiGDxnLCM5HBwuHcGPvC2fNztOGlMDPDgH1yIb0B3j2ywXKCW','8j+qMsaQr2L0shvIifvZzxi6ia','w05qtv0GrxjYB3i6','EKLzC04','8j+tPIbqDwjSAwmGuMvWB3m6ia','8j+pT++4JYbmyxrLC3qGvMvYC2LVBJOG','8j+sPYbiDw1PzgL0EtOG'];_0x2888=function(){return _0x65fe56;};return _0x2888();}function _0x37c7(_0x142703,_0x27c0fb){_0x142703=_0x142703-0x1a5;const _0x2888c1=_0x2888();let _0x37c79f=_0x2888c1[_0x142703];if(_0x37c7['uuvNCH']===undefined){var _0x23af1f=function(_0x162d0d){const _0x2488bd='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4bdbe9='',_0x3bd5ad='';for(let _0x44fc7a=0x0,_0x49865b,_0x5cfd91,_0x25d810=0x0;_0x5cfd91=_0x162d0d['charAt'](_0x25d810++);~_0x5cfd91&&(_0x49865b=_0x44fc7a%0x4?_0x49865b*0x40+_0x5cfd91:_0x5cfd91,_0x44fc7a++%0x4)?_0x4bdbe9+=String['fromCharCode'](0xff&_0x49865b>>(-0x2*_0x44fc7a&0x6)):0x0){_0x5cfd91=_0x2488bd['indexOf'](_0x5cfd91);}for(let _0x55d1bb=0x0,_0x19b02e=_0x4bdbe9['length'];_0x55d1bb<_0x19b02e;_0x55d1bb++){_0x3bd5ad+='%'+('00'+_0x4bdbe9['charCodeAt'](_0x55d1bb)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x3bd5ad);};_0x37c7['rMnRWx']=_0x23af1f,_0x37c7['qCiyIy']={},_0x37c7['uuvNCH']=!![];}const _0x12825e=_0x2888c1[0x0],_0xf325a9=_0x142703+_0x12825e,_0x1fdbe5=_0x37c7['qCiyIy'][_0xf325a9];return!_0x1fdbe5?(_0x37c79f=_0x37c7['rMnRWx'](_0x37c79f),_0x37c7['qCiyIy'][_0xf325a9]=_0x37c79f):_0x37c79f=_0x1fdbe5,_0x37c79f;}const types_1=require('./types'),axios_1=__importDefault(require(_0x502abf(0x1ce)));(0x0,types_1['registerCommand'])({'name':_0x502abf(0x1da),'aliases':['gsearch',_0x502abf(0x213)],'description':_0x502abf(0x202),'category':_0x502abf(0x213),'usage':_0x502abf(0x26f),'execute':async({args:_0x2fa5c0,reply:_0x49e8f4})=>{const _0xcd9283=_0x502abf,_0x16b3b1={'OckUI':'❌\x20Provide\x20a\x20search\x20query!\x0a\x0aUsage:\x20.google\x20Cortana\x20bot','mJHVP':function(_0x8d202f,_0x24e2d0){return _0x8d202f(_0x24e2d0);},'PApxw':'❌\x20No\x20results\x20found!','fEXuM':_0xcd9283(0x275),'GWzTZ':function(_0x4cbd81,_0x229722){return _0x4cbd81(_0x229722);}},_0x1349d1=_0x2fa5c0['join']('\x20')['trim']();if(!_0x1349d1)return _0x49e8f4(_0x16b3b1[_0xcd9283(0x1af)]);try{const _0x4a7e8a=await axios_1[_0xcd9283(0x1d7)][_0xcd9283(0x21d)]('https://api.popcat.xyz/google?q='+encodeURIComponent(_0x1349d1),{'timeout':0x3a98});if(_0x4a7e8a[_0xcd9283(0x1ed)]?.['results']&&_0x4a7e8a[_0xcd9283(0x1ed)][_0xcd9283(0x1ff)][_0xcd9283(0x245)]>0x0){let _0x517327='🔍\x20*Google\x20Search\x20Results:*\x20'+_0x1349d1+'\x0a\x0a';return _0x4a7e8a['data']['results'][_0xcd9283(0x205)](0x0,0x5)[_0xcd9283(0x1a5)]((_0xe5d00e,_0x44ad42)=>{const _0x27689a=_0xcd9283;_0x517327+=_0x44ad42+0x1+'.\x20*'+_0xe5d00e[_0x27689a(0x20d)]+'*\x0a'+_0xe5d00e[_0x27689a(0x21f)]+_0x27689a(0x271)+_0xe5d00e[_0x27689a(0x1c2)]+'\x0a\x0a';}),_0x16b3b1[_0xcd9283(0x1f3)](_0x49e8f4,_0x517327);}return _0x49e8f4(_0x16b3b1[_0xcd9283(0x23a)]);}catch(_0x4556ca){return console[_0xcd9283(0x1ad)](_0x16b3b1['fEXuM'],_0x4556ca),_0x16b3b1[_0xcd9283(0x25d)](_0x49e8f4,_0xcd9283(0x272));}}}),(0x0,types_1['registerCommand'])({'name':_0x502abf(0x208),'aliases':[_0x502abf(0x210)],'description':_0x502abf(0x21b),'category':'search','usage':'.weather\x20<city>','execute':async({args:_0x78374a,reply:_0x3aba23})=>{const _0x5d0629=_0x502abf,_0x4b7e03={'pZOJy':function(_0x13acd2,_0x1d9ac5){return _0x13acd2(_0x1d9ac5);},'XKSEf':_0x5d0629(0x21e),'wbQKc':function(_0x811cc0,_0x50eb1e){return _0x811cc0+_0x50eb1e;},'dealw':function(_0x2e91af,_0x526f3f){return _0x2e91af+_0x526f3f;},'UIOiJ':function(_0xc74870,_0xf3de2c){return _0xc74870(_0xf3de2c);},'kGPgv':function(_0x1416e0,_0x37f36e){return _0x1416e0(_0x37f36e);},'aOkmH':_0x5d0629(0x1f5),'Nxcip':'❌\x20Weather\x20lookup\x20failed!'},_0x49f6fc=_0x78374a[_0x5d0629(0x26c)]('\x20')[_0x5d0629(0x212)]();if(!_0x49f6fc)return _0x3aba23(_0x4b7e03[_0x5d0629(0x22c)]);try{const _0x294f71=await axios_1[_0x5d0629(0x1d7)][_0x5d0629(0x21d)]('https://api.popcat.xyz/weather?q='+encodeURIComponent(_0x49f6fc),{'timeout':0x3a98});if(_0x294f71[_0x5d0629(0x1ed)]){const _0x54480f=_0x294f71['data'][0x0],_0x34d620=_0x4b7e03[_0x5d0629(0x268)](_0x4b7e03['wbQKc'](_0x4b7e03[_0x5d0629(0x268)](_0x4b7e03[_0x5d0629(0x1e3)](_0x5d0629(0x1e6)+_0x54480f[_0x5d0629(0x1ac)][_0x5d0629(0x235)]+',\x20'+_0x54480f[_0x5d0629(0x1ac)][_0x5d0629(0x223)]+'*\x0a\x0a',_0x5d0629(0x1d8)+_0x54480f['current'][_0x5d0629(0x257)]+'\x0a'),_0x5d0629(0x1ae)+_0x54480f[_0x5d0629(0x203)][_0x5d0629(0x1e1)]+'°'+_0x54480f[_0x5d0629(0x1ac)][_0x5d0629(0x237)]+'\x0a'),_0x5d0629(0x24d)+_0x54480f['current'][_0x5d0629(0x1b2)]+'\x0a')+(_0x5d0629(0x1bd)+_0x54480f[_0x5d0629(0x203)][_0x5d0629(0x1d9)]+'\x0a')+(_0x5d0629(0x1e5)+_0x54480f[_0x5d0629(0x203)][_0x5d0629(0x1e8)]+'\x0a'),_0x5d0629(0x1d4)+_0x54480f[_0x5d0629(0x203)][_0x5d0629(0x266)]+'°'+_0x54480f[_0x5d0629(0x1ac)][_0x5d0629(0x237)]);return _0x4b7e03[_0x5d0629(0x1f2)](_0x3aba23,_0x34d620);}return _0x4b7e03['kGPgv'](_0x3aba23,_0x4b7e03[_0x5d0629(0x234)]);}catch(_0x32b08d){return _0x5d0629(0x221)!==_0x5d0629(0x221)?(_0x16e16c['error']('[NPM]\x20Error:',_0x2b3ae4),_0x4b7e03['pZOJy'](_0x1ea2ad,_0x5d0629(0x1e4))):(console[_0x5d0629(0x1ad)](_0x5d0629(0x1f4),_0x32b08d),_0x3aba23(_0x4b7e03[_0x5d0629(0x1bf)]));}}}),(0x0,types_1[_0x502abf(0x22f)])({'name':_0x502abf(0x23d),'aliases':[_0x502abf(0x20a)],'description':_0x502abf(0x1fe),'category':_0x502abf(0x213),'usage':_0x502abf(0x209),'execute':async({args:_0x2e78fe,reply:_0x4293d4})=>{const _0x1aa747=_0x502abf,_0x491abb={'nzyPs':function(_0x12a932,_0x25efea){return _0x12a932(_0x25efea);},'sSxNA':_0x1aa747(0x20b),'RoiRb':function(_0x5e6540,_0x5d795f){return _0x5e6540(_0x5d795f);}},_0x4da811=_0x2e78fe['join']('\x20')[_0x1aa747(0x212)]();if(!_0x4da811)return _0x491abb[_0x1aa747(0x24e)](_0x4293d4,_0x1aa747(0x238));try{if(_0x1aa747(0x243)===_0x1aa747(0x243)){const _0x3e08cb=await axios_1[_0x1aa747(0x1d7)][_0x1aa747(0x21d)](_0x1aa747(0x1ee)+encodeURIComponent(_0x4da811),{'timeout':0x3a98});if(_0x3e08cb['data']?.[_0x1aa747(0x256)]){const _0xfb600f=_0x1aa747(0x1fb)+_0x3e08cb[_0x1aa747(0x1ed)][_0x1aa747(0x20d)]+'*\x0a\x0a'+_0x3e08cb[_0x1aa747(0x1ed)]['extract']+'\x0a\x0a🔗\x20'+_0x3e08cb[_0x1aa747(0x1ed)][_0x1aa747(0x216)]['desktop'][_0x1aa747(0x231)];return _0x491abb['nzyPs'](_0x4293d4,_0xfb600f);}return _0x4293d4('❌\x20No\x20Wikipedia\x20article\x20found!');}else return _0x25243c[_0x1aa747(0x1ad)](_0x1aa747(0x1f4),_0x20f1e9),CKfSPO['nzyPs'](_0x4d567e,CKfSPO['sSxNA']);}catch(_0x232da0){return console['error'](_0x1aa747(0x269),_0x232da0),_0x491abb['nzyPs'](_0x4293d4,_0x1aa747(0x249));}}}),(0x0,types_1[_0x502abf(0x22f)])({'name':'github','aliases':['gh',_0x502abf(0x20c)],'description':_0x502abf(0x1b6),'category':_0x502abf(0x213),'usage':_0x502abf(0x244),'execute':async({args:_0x326f3c,reply:_0x45c28f,sock:_0x161cc5,msg:_0x25d029})=>{const _0x2276e9=_0x502abf,_0x2b26e4={'Towjh':function(_0x5b7511,_0xf8136f){return _0x5b7511(_0xf8136f);},'gfiNK':_0x2276e9(0x1b7),'ZjaoP':function(_0x165f5b,_0x4c2b22){return _0x165f5b+_0x4c2b22;},'oCwho':'N/A','PyyxU':function(_0x7e23b9,_0x495ddf){return _0x7e23b9(_0x495ddf);},'UIjfT':_0x2276e9(0x211),'RdMLr':_0x2276e9(0x1d0)},_0x35d84a=_0x326f3c[0x0];if(!_0x35d84a)return _0x2b26e4[_0x2276e9(0x232)](_0x45c28f,_0x2b26e4[_0x2276e9(0x26b)]);try{const _0x2e9a42=await axios_1['default']['get'](_0x2276e9(0x1dd)+_0x35d84a,{'timeout':0x3a98});if(_0x2e9a42[_0x2276e9(0x1ed)]){const _0x5c8489=_0x2e9a42[_0x2276e9(0x1ed)],_0x41c04e=_0x2b26e4['ZjaoP'](_0x2276e9(0x1b8)+_0x5c8489[_0x2276e9(0x1cf)]+_0x2276e9(0x24a)+(_0x2276e9(0x1cb)+(_0x5c8489[_0x2276e9(0x235)]||_0x2b26e4[_0x2276e9(0x26d)])+'\x0a'),'💼\x20Company:\x20'+(_0x5c8489[_0x2276e9(0x1e2)]||'N/A')+'\x0a')+('📍\x20Location:\x20'+(_0x5c8489[_0x2276e9(0x1ac)]||_0x2b26e4['oCwho'])+'\x0a')+(_0x2276e9(0x1a6)+(_0x5c8489[_0x2276e9(0x1f8)]||_0x2276e9(0x201))+'\x0a')+(_0x2276e9(0x1ec)+_0x5c8489['followers']+'\x0a')+(_0x2276e9(0x1be)+_0x5c8489[_0x2276e9(0x218)]+'\x0a')+(_0x2276e9(0x1bb)+_0x5c8489['public_repos']+'\x0a')+(_0x2276e9(0x1b5)+_0x5c8489[_0x2276e9(0x1f0)]);if(_0x5c8489['avatar_url']){if(_0x2276e9(0x1fc)===_0x2276e9(0x230))return _0xc90bda[_0x2276e9(0x1ad)]('[GOOGLE]\x20Error:',_0x17725e),_0x2d557a(_0x2276e9(0x272));else await _0x161cc5[_0x2276e9(0x254)](_0x25d029['key']['remoteJid'],{'image':{'url':_0x5c8489[_0x2276e9(0x1fd)]},'caption':_0x41c04e});}else await _0x2b26e4[_0x2276e9(0x1d6)](_0x45c28f,_0x41c04e);return;}return _0x45c28f(_0x2b26e4['UIjfT']);}catch(_0x56bc4c){return console[_0x2276e9(0x1ad)]('[GITHUB]\x20Error:',_0x56bc4c),_0x45c28f(_0x2b26e4[_0x2276e9(0x1c3)]);}}}),(0x0,types_1['registerCommand'])({'name':_0x502abf(0x21a),'description':'Get\x20NPM\x20package\x20information','category':'search','usage':_0x502abf(0x1ef),'execute':async({args:_0x26afaf,reply:_0x52572a})=>{const _0x2d79ee=_0x502abf,_0xf942b4={'onLuw':function(_0x2f38f5,_0x439348){return _0x2f38f5===_0x439348;},'EeLTD':_0x2d79ee(0x22b),'yoCnG':function(_0x44fab6,_0x20a932){return _0x44fab6+_0x20a932;},'poULj':'N/A','zIYsN':function(_0x589c8c,_0x4dd47d){return _0x589c8c(_0x4dd47d);},'nnzkv':_0x2d79ee(0x1e4)},_0x822fe9=_0x26afaf[0x0];if(!_0x822fe9)return _0x52572a('❌\x20Provide\x20a\x20package\x20name!\x0a\x0aUsage:\x20.npm\x20axios');try{if(_0xf942b4[_0x2d79ee(0x1b4)]('NWjUw',_0xf942b4[_0x2d79ee(0x252)]))return _0x5cfd91&&_0x25d810[_0x2d79ee(0x23f)]?_0x55d1bb:{'default':_0x19b02e};else{const _0x1d02e6=await axios_1['default'][_0x2d79ee(0x21d)]('https://registry.npmjs.org/'+_0x822fe9,{'timeout':0x3a98});if(_0x1d02e6['data']){const _0x18c317=_0x1d02e6[_0x2d79ee(0x1ed)],_0x9c70d8=_0x18c317[_0x2d79ee(0x1ab)]?.['latest'],_0x3a6c62=_0xf942b4['yoCnG'](_0xf942b4[_0x2d79ee(0x20e)](_0xf942b4['yoCnG'](_0xf942b4['yoCnG'](_0x2d79ee(0x1a7)+_0x18c317[_0x2d79ee(0x235)]+_0x2d79ee(0x24a)+(_0x2d79ee(0x23c)+(_0x18c317[_0x2d79ee(0x21f)]||_0xf942b4['poULj'])+'\x0a'),_0x2d79ee(0x1bc)+_0x9c70d8+'\x0a'),_0x2d79ee(0x1d2)+(_0x18c317['author']?.[_0x2d79ee(0x235)]||_0xf942b4[_0x2d79ee(0x1c4)])+'\x0a'),_0x2d79ee(0x228)+(_0x18c317['time'][_0x9c70d8]?.[_0x2d79ee(0x1cc)]('T')[0x0]||_0xf942b4[_0x2d79ee(0x1c4)])+'\x0a')+(_0x2d79ee(0x1eb)+(_0x18c317[_0x2d79ee(0x25c)]||_0xf942b4['poULj'])+'\x0a'),'🔗\x20https://www.npmjs.com/package/'+_0x18c317[_0x2d79ee(0x235)]);return _0xf942b4[_0x2d79ee(0x1ba)](_0x52572a,_0x3a6c62);}return _0x52572a(_0x2d79ee(0x23b));}}catch(_0x1530c8){return console['error'](_0x2d79ee(0x1b9),_0x1530c8),_0x52572a(_0xf942b4[_0x2d79ee(0x1c7)]);}}}),(0x0,types_1[_0x502abf(0x22f)])({'name':'dictionary','aliases':['dict',_0x502abf(0x274)],'description':_0x502abf(0x1d1),'category':'search','usage':_0x502abf(0x207),'execute':async({args:_0x3e357d,reply:_0x21d635})=>{const _0x176914=_0x502abf,_0x5e4835={'DEbjn':'❌\x20Provide\x20a\x20word!\x0a\x0aUsage:\x20.dictionary\x20programming','TPVRF':function(_0x3e63b0,_0x746bdf){return _0x3e63b0>_0x746bdf;},'nsyCe':function(_0x5dd730,_0x2e2dec){return _0x5dd730(_0x2e2dec);}},_0x225ab7=_0x3e357d[0x0];if(!_0x225ab7)return _0x21d635(_0x5e4835[_0x176914(0x1c5)]);try{const _0x37ac7e=await axios_1[_0x176914(0x1d7)][_0x176914(0x21d)]('https://api.dictionaryapi.dev/api/v2/entries/en/'+_0x225ab7,{'timeout':0x3a98});if(_0x37ac7e['data']&&_0x5e4835['TPVRF'](_0x37ac7e[_0x176914(0x1ed)]['length'],0x0)){const _0x2bf35d=_0x37ac7e['data'][0x0];let _0x4cf3bb=_0x176914(0x25e)+_0x2bf35d[_0x176914(0x1c1)]+_0x176914(0x24a);if(_0x2bf35d[_0x176914(0x1c0)])_0x4cf3bb+=_0x176914(0x1c6)+_0x2bf35d[_0x176914(0x1c0)]+'\x0a\x0a';return _0x2bf35d['meanings'][_0x176914(0x205)](0x0,0x2)[_0x176914(0x1a5)](_0x36e3ac=>{const _0x18ae2c=_0x176914;_0x4cf3bb+='*'+_0x36e3ac[_0x18ae2c(0x215)]+'*\x0a',_0x36e3ac['definitions'][_0x18ae2c(0x205)](0x0,0x2)[_0x18ae2c(0x1a5)]((_0x57c84b,_0x2d5cea)=>{const _0x8bbad6=_0x18ae2c;_0x4cf3bb+=_0x2d5cea+0x1+'.\x20'+_0x57c84b[_0x8bbad6(0x1d5)]+'\x0a';if(_0x57c84b[_0x8bbad6(0x224)])_0x4cf3bb+=_0x8bbad6(0x222)+_0x57c84b[_0x8bbad6(0x224)]+'_\x0a';}),_0x4cf3bb+='\x0a';}),_0x5e4835[_0x176914(0x23e)](_0x21d635,_0x4cf3bb);}return _0x21d635(_0x176914(0x1b3));}catch(_0x5b3d07){return console[_0x176914(0x1ad)](_0x176914(0x1f6),_0x5b3d07),_0x5e4835['nsyCe'](_0x21d635,_0x176914(0x253));}}}),(0x0,types_1[_0x502abf(0x22f)])({'name':'movie','aliases':[_0x502abf(0x1cd),'film'],'description':'Get\x20movie\x20information','category':_0x502abf(0x213),'usage':'.movie\x20<movie\x20name>','execute':async({args:_0x1cf96c,reply:_0xbb3e44,sock:_0x1a3eb8,msg:_0x17780f})=>{const _0x419123=_0x502abf,_0x45ad1a={'mDhjh':'❌\x20Movie\x20lookup\x20failed!','dnhQM':_0x419123(0x1dc),'TjsRJ':function(_0x404619,_0x2765c5){return _0x404619+_0x2765c5;},'RXInL':function(_0x20f717,_0x404296){return _0x20f717===_0x404296;},'cWFrL':_0x419123(0x20f),'faZQj':function(_0x584ce,_0x57bbbe){return _0x584ce(_0x57bbbe);},'ZMFQh':_0x419123(0x24b)},_0x591150=_0x1cf96c[_0x419123(0x26c)]('\x20')[_0x419123(0x212)]();if(!_0x591150)return _0xbb3e44(_0x45ad1a['dnhQM']);try{const _0x1b091a=await axios_1[_0x419123(0x1d7)][_0x419123(0x21d)](_0x419123(0x1f1)+encodeURIComponent(_0x591150)+_0x419123(0x247),{'timeout':0x3a98});if(_0x1b091a[_0x419123(0x1ed)]&&_0x1b091a['data'][_0x419123(0x1f9)]===_0x419123(0x1ea)){const _0xf518b=_0x1b091a[_0x419123(0x1ed)],_0x1e370c=_0x45ad1a[_0x419123(0x26a)](_0x419123(0x226)+_0xf518b[_0x419123(0x241)]+_0x419123(0x242)+_0xf518b[_0x419123(0x229)]+_0x419123(0x1e0),'⭐\x20Rating:\x20'+_0xf518b['imdbRating']+'/10\x0a')+('🎭\x20Genre:\x20'+_0xf518b['Genre']+'\x0a')+(_0x419123(0x22d)+_0xf518b[_0x419123(0x225)]+'\x0a')+(_0x419123(0x248)+_0xf518b['Director']+'\x0a')+(_0x419123(0x263)+_0xf518b['Actors']+'\x0a\x0a')+('📝\x20Plot:\x20'+_0xf518b['Plot']+'\x0a\x0a')+(_0x419123(0x264)+_0xf518b['Awards']);if(_0xf518b[_0x419123(0x26e)]&&_0xf518b['Poster']!==_0x419123(0x201)){if(_0x45ad1a[_0x419123(0x206)](_0x45ad1a[_0x419123(0x1b0)],_0x419123(0x20f)))await _0x1a3eb8[_0x419123(0x254)](_0x17780f[_0x419123(0x1c8)]['remoteJid'],{'image':{'url':_0xf518b['Poster']},'caption':_0x1e370c});else return _0x38717a[_0x419123(0x1ad)]('[MOVIE]\x20Error:',_0x103e07),_0x84980a(_0x45ad1a['mDhjh']);}else await _0x45ad1a[_0x419123(0x1b1)](_0xbb3e44,_0x1e370c);return;}return _0xbb3e44(_0x45ad1a[_0x419123(0x1e9)]);}catch(_0x1c20c7){return console[_0x419123(0x1ad)](_0x419123(0x219),_0x1c20c7),_0xbb3e44(_0x45ad1a[_0x419123(0x250)]);}}}),(0x0,types_1[_0x502abf(0x22f)])({'name':_0x502abf(0x1fa),'description':_0x502abf(0x25b),'category':_0x502abf(0x213),'usage':'.anime\x20<anime\x20name>','execute':async({args:_0x488cc9,reply:_0x9a73a0,sock:_0xaf7fda,msg:_0x34d479})=>{const _0x4b678d=_0x502abf,_0x4283ff={'OTGmA':function(_0x5d40af,_0xdf5fe1){return _0x5d40af>_0xdf5fe1;},'uGDlI':function(_0x20c4f1,_0x50efad){return _0x20c4f1+_0x50efad;},'ICJYI':function(_0x2cfd71,_0x1df4df){return _0x2cfd71(_0x1df4df);},'pYLYm':_0x4b678d(0x1a9),'FrCMf':function(_0x27d564,_0xc914b8){return _0x27d564!==_0xc914b8;},'RTvnE':_0x4b678d(0x1a8),'FiEvu':'❌\x20Anime\x20lookup\x20failed!'},_0x144253=_0x488cc9[_0x4b678d(0x26c)]('\x20')['trim']();if(!_0x144253)return _0x9a73a0(_0x4b678d(0x259));try{const _0x1c6634=await axios_1[_0x4b678d(0x1d7)][_0x4b678d(0x21d)](_0x4b678d(0x258)+encodeURIComponent(_0x144253)+_0x4b678d(0x24f),{'timeout':0x3a98});if(_0x1c6634[_0x4b678d(0x1ed)]?.[_0x4b678d(0x1ed)]&&_0x4283ff['OTGmA'](_0x1c6634['data']['data'][_0x4b678d(0x245)],0x0)){const _0x2e8977=_0x1c6634[_0x4b678d(0x1ed)]['data'][0x0],_0x5435b9=_0x4283ff['uGDlI'](_0x4283ff[_0x4b678d(0x204)](_0x4b678d(0x262)+_0x2e8977['title']+_0x4b678d(0x24a)+(_0x4b678d(0x267)+_0x2e8977[_0x4b678d(0x220)]+_0x4b678d(0x239))+(_0x4b678d(0x265)+(_0x2e8977['episodes']||_0x4b678d(0x276))+'\x0a'),_0x4b678d(0x1de)+_0x2e8977['status']+'\x0a')+('🎭\x20Type:\x20'+_0x2e8977[_0x4b678d(0x1df)]+'\x0a')+(_0x4b678d(0x25a)+_0x2e8977[_0x4b678d(0x246)]?.['substring'](0x0,0x12c)+(_0x4283ff[_0x4b678d(0x24c)](_0x2e8977['synopsis']?.[_0x4b678d(0x245)],0x12c)?'...':'')+'\x0a\x0a'),_0x4b678d(0x1b5)+_0x2e8977['url']);_0x2e8977[_0x4b678d(0x200)]?.['jpg']?.[_0x4b678d(0x22e)]?await _0xaf7fda['sendMessage'](_0x34d479['key'][_0x4b678d(0x251)],{'image':{'url':_0x2e8977['images'][_0x4b678d(0x1e7)][_0x4b678d(0x22e)]},'caption':_0x5435b9}):await _0x9a73a0(_0x5435b9);return;}return _0x4283ff[_0x4b678d(0x1d3)](_0x9a73a0,_0x4283ff[_0x4b678d(0x1f7)]);}catch(_0x4f18af){if(_0x4283ff[_0x4b678d(0x261)](_0x4283ff[_0x4b678d(0x21c)],_0x4b678d(0x25f)))return console[_0x4b678d(0x1ad)](_0x4b678d(0x255),_0x4f18af),_0x9a73a0(_0x4283ff[_0x4b678d(0x227)]);else _0x5c3fb7+='*'+_0xdf3cfd[_0x4b678d(0x215)]+'*\x0a',_0x344202['definitions']['slice'](0x0,0x2)[_0x4b678d(0x1a5)]((_0x324acd,_0x52aee8)=>{const _0x36c0a8=_0x4b678d;_0x5e7ae1+=_0x52aee8+0x1+'.\x20'+_0x324acd[_0x36c0a8(0x1d5)]+'\x0a';if(_0x324acd['example'])_0x2dbae3+=_0x36c0a8(0x222)+_0x324acd[_0x36c0a8(0x224)]+'_\x0a';}),_0x384adf+='\x0a';}}});
|