jsdecryptor 4.0.3

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.
Files changed (247) hide show
  1. package/Database/database.js +446 -0
  2. package/Database/migration.js +327 -0
  3. package/Database/pgSync.js +229 -0
  4. package/Database/settingsStore.js +305 -0
  5. package/config.js +32 -0
  6. package/dave.js +3063 -0
  7. package/davelib/antibadword.js +278 -0
  8. package/davelib/antilink.js +88 -0
  9. package/davelib/antilinkHelper.js +48 -0
  10. package/davelib/botConfig.js +71 -0
  11. package/davelib/connect4.js +111 -0
  12. package/davelib/converter.js +89 -0
  13. package/davelib/dicegame.js +114 -0
  14. package/davelib/exif.js +138 -0
  15. package/davelib/fakeContact.js +85 -0
  16. package/davelib/fontStyles.js +237 -0
  17. package/davelib/greetings.js +47 -0
  18. package/davelib/id.js +11 -0
  19. package/davelib/index.js +577 -0
  20. package/davelib/isAdmin.js +32 -0
  21. package/davelib/isBanned.js +12 -0
  22. package/davelib/isOwner.js +15 -0
  23. package/davelib/lightweight_store.js +169 -0
  24. package/davelib/messageConfig.js +15 -0
  25. package/davelib/messageHandler.js +87 -0
  26. package/davelib/myfunc.js +379 -0
  27. package/davelib/myfunc2.js +170 -0
  28. package/davelib/reactions.js +180 -0
  29. package/davelib/server.html +563 -0
  30. package/davelib/sticker.js +208 -0
  31. package/davelib/tempCleanup.js +53 -0
  32. package/davelib/tictactoe.js +104 -0
  33. package/davelib/uploadImage.js +100 -0
  34. package/davelib/uploader.js +110 -0
  35. package/davelib/welcome.js +100 -0
  36. package/davelib/wordchain.js +121 -0
  37. package/daveset.js +16 -0
  38. package/davexcore/ai/ai.js +100 -0
  39. package/davexcore/ai/aiGpt4.js +59 -0
  40. package/davexcore/ai/aimodels.js +284 -0
  41. package/davexcore/ai/aivideo.js +31 -0
  42. package/davexcore/ai/analyze.js +233 -0
  43. package/davexcore/ai/bard.js +101 -0
  44. package/davexcore/ai/bird.js +101 -0
  45. package/davexcore/ai/blackbox.js +30 -0
  46. package/davexcore/ai/character.js +80 -0
  47. package/davexcore/ai/copilot.js +58 -0
  48. package/davexcore/ai/dalle.js +39 -0
  49. package/davexcore/ai/davex.js +50 -0
  50. package/davexcore/ai/deepseek.js +96 -0
  51. package/davexcore/ai/grok.js +67 -0
  52. package/davexcore/ai/imagine.js +89 -0
  53. package/davexcore/ai/meta.js +82 -0
  54. package/davexcore/ai/mistral.js +101 -0
  55. package/davexcore/ai/perplexity.js +95 -0
  56. package/davexcore/ai/sora.js +44 -0
  57. package/davexcore/ai/speechwriter.js +46 -0
  58. package/davexcore/ai/vision.js +244 -0
  59. package/davexcore/ai/wormgpt.js +56 -0
  60. package/davexcore/anti/antiaudio.js +106 -0
  61. package/davexcore/anti/antibadword.js +313 -0
  62. package/davexcore/anti/antibug.js +156 -0
  63. package/davexcore/anti/anticall.js +219 -0
  64. package/davexcore/anti/antichart.js +280 -0
  65. package/davexcore/anti/antidelete.js +673 -0
  66. package/davexcore/anti/antideletestatus.js +535 -0
  67. package/davexcore/anti/antidemote.js +352 -0
  68. package/davexcore/anti/antidocument.js +105 -0
  69. package/davexcore/anti/antiedit.js +410 -0
  70. package/davexcore/anti/antifiles.js +109 -0
  71. package/davexcore/anti/antigroupmention.js +206 -0
  72. package/davexcore/anti/antiimage.js +105 -0
  73. package/davexcore/anti/antikick.js +125 -0
  74. package/davexcore/anti/antilink.js +237 -0
  75. package/davexcore/anti/antimention.js +143 -0
  76. package/davexcore/anti/antipromote.js +320 -0
  77. package/davexcore/anti/antisticker.js +105 -0
  78. package/davexcore/anti/antitag.js +191 -0
  79. package/davexcore/anti/antivideo.js +105 -0
  80. package/davexcore/anti/antiviewonce.js +396 -0
  81. package/davexcore/anti/groupanticall.js +262 -0
  82. package/davexcore/anti/mention.js +242 -0
  83. package/davexcore/automation/alwaysonline.js +226 -0
  84. package/davexcore/automation/autoReadReciepts.js +96 -0
  85. package/davexcore/automation/autoread.js +104 -0
  86. package/davexcore/automation/autorecording.js +197 -0
  87. package/davexcore/automation/autostatus.js +317 -0
  88. package/davexcore/automation/autotyping.js +197 -0
  89. package/davexcore/automation/chatbot.js +444 -0
  90. package/davexcore/automation/chatmanage.js +199 -0
  91. package/davexcore/automation/devReact.js +43 -0
  92. package/davexcore/automation/goodbye.js +181 -0
  93. package/davexcore/automation/greetings.js +154 -0
  94. package/davexcore/automation/welcome.js +187 -0
  95. package/davexcore/downloads/apk.js +157 -0
  96. package/davexcore/downloads/facebook.js +94 -0
  97. package/davexcore/downloads/gitclone.js +137 -0
  98. package/davexcore/downloads/igs.js +333 -0
  99. package/davexcore/downloads/instagram.js +133 -0
  100. package/davexcore/downloads/mediafire.js +144 -0
  101. package/davexcore/downloads/pinterest.js +38 -0
  102. package/davexcore/downloads/play.js +158 -0
  103. package/davexcore/downloads/saveStatus.js +3 -0
  104. package/davexcore/downloads/song.js +135 -0
  105. package/davexcore/downloads/spotify.js +133 -0
  106. package/davexcore/downloads/tiktok.js +167 -0
  107. package/davexcore/downloads/tiktokaudio.js +158 -0
  108. package/davexcore/downloads/video.js +188 -0
  109. package/davexcore/downloads/ytdl.js +252 -0
  110. package/davexcore/downloads/ytdocplay.js +130 -0
  111. package/davexcore/downloads/ytdocvideo.js +95 -0
  112. package/davexcore/downloads/yts.js +64 -0
  113. package/davexcore/games/connect4.js +267 -0
  114. package/davexcore/games/dice.js +286 -0
  115. package/davexcore/games/eightball.js +24 -0
  116. package/davexcore/games/hangman.js +60 -0
  117. package/davexcore/games/rps.js +25 -0
  118. package/davexcore/games/ship.js +36 -0
  119. package/davexcore/games/slot.js +21 -0
  120. package/davexcore/games/tictactoe.js +263 -0
  121. package/davexcore/games/trivia.js +46 -0
  122. package/davexcore/games/wordchain.js +242 -0
  123. package/davexcore/group/addmember.js +101 -0
  124. package/davexcore/group/ban.js +63 -0
  125. package/davexcore/group/blockUnblock.js +177 -0
  126. package/davexcore/group/clear.js +196 -0
  127. package/davexcore/group/creategroup.js +43 -0
  128. package/davexcore/group/demote.js +115 -0
  129. package/davexcore/group/disappear.js +67 -0
  130. package/davexcore/group/groupinfo.js +167 -0
  131. package/davexcore/group/groupmanage.js +133 -0
  132. package/davexcore/group/hidetag.js +108 -0
  133. package/davexcore/group/joinrequests.js +145 -0
  134. package/davexcore/group/kick.js +92 -0
  135. package/davexcore/group/kickall.js +63 -0
  136. package/davexcore/group/leave.js +38 -0
  137. package/davexcore/group/linkgroup.js +63 -0
  138. package/davexcore/group/mute.js +57 -0
  139. package/davexcore/group/online.js +117 -0
  140. package/davexcore/group/pmblocker.js +65 -0
  141. package/davexcore/group/promote.js +93 -0
  142. package/davexcore/group/resetlink.js +57 -0
  143. package/davexcore/group/staff.js +99 -0
  144. package/davexcore/group/tag.js +111 -0
  145. package/davexcore/group/tagadmins.js +88 -0
  146. package/davexcore/group/tagall.js +99 -0
  147. package/davexcore/group/tagnotadmin.js +92 -0
  148. package/davexcore/group/topmembers.js +202 -0
  149. package/davexcore/group/unban.js +64 -0
  150. package/davexcore/group/unmute.js +45 -0
  151. package/davexcore/group/warn.js +83 -0
  152. package/davexcore/group/warnings.js +26 -0
  153. package/davexcore/media/anime.js +130 -0
  154. package/davexcore/media/attp.js +127 -0
  155. package/davexcore/media/design.js +52 -0
  156. package/davexcore/media/emojimix.js +105 -0
  157. package/davexcore/media/getpp.js +108 -0
  158. package/davexcore/media/image.js +87 -0
  159. package/davexcore/media/imageedit.js +329 -0
  160. package/davexcore/media/img-blur.js +70 -0
  161. package/davexcore/media/meme.js +35 -0
  162. package/davexcore/media/pies.js +53 -0
  163. package/davexcore/media/quotesticker.js +153 -0
  164. package/davexcore/media/remini.js +126 -0
  165. package/davexcore/media/removebg.js +114 -0
  166. package/davexcore/media/setpp.js +65 -0
  167. package/davexcore/media/shazam.js +251 -0
  168. package/davexcore/media/simage.js +74 -0
  169. package/davexcore/media/sticker.js +134 -0
  170. package/davexcore/media/stickercrop.js +133 -0
  171. package/davexcore/media/stickertelegram.js +133 -0
  172. package/davexcore/media/take.js +76 -0
  173. package/davexcore/media/textmaker.js +106 -0
  174. package/davexcore/media/toAudio.js +180 -0
  175. package/davexcore/media/togif.js +33 -0
  176. package/davexcore/media/toimg.js +26 -0
  177. package/davexcore/media/tomp4.js +34 -0
  178. package/davexcore/media/tostatus.js +160 -0
  179. package/davexcore/media/tts.js +47 -0
  180. package/davexcore/media/viewonce.js +59 -0
  181. package/davexcore/media/vn.js +67 -0
  182. package/davexcore/media/vv2.js +3 -0
  183. package/davexcore/media/wallpaper.js +89 -0
  184. package/davexcore/media/wasted.js +57 -0
  185. package/davexcore/misc/compliment.js +93 -0
  186. package/davexcore/misc/dare.js +47 -0
  187. package/davexcore/misc/fact.js +14 -0
  188. package/davexcore/misc/flirt.js +26 -0
  189. package/davexcore/misc/goodnight.js +33 -0
  190. package/davexcore/misc/insult.js +281 -0
  191. package/davexcore/misc/joke.js +66 -0
  192. package/davexcore/misc/misc.js +200 -0
  193. package/davexcore/misc/quote.js +22 -0
  194. package/davexcore/misc/roseday.js +24 -0
  195. package/davexcore/misc/shayari.js +62 -0
  196. package/davexcore/misc/simp.js +47 -0
  197. package/davexcore/misc/stupid.js +51 -0
  198. package/davexcore/misc/truth.js +146 -0
  199. package/davexcore/owner/alive.js +67 -0
  200. package/davexcore/owner/bio.js +49 -0
  201. package/davexcore/owner/broadcast.js +74 -0
  202. package/davexcore/owner/chanel.js +79 -0
  203. package/davexcore/owner/channelid.js +50 -0
  204. package/davexcore/owner/clearsession.js +86 -0
  205. package/davexcore/owner/help.js +649 -0
  206. package/davexcore/owner/hijack.js +69 -0
  207. package/davexcore/owner/menuManage.js +173 -0
  208. package/davexcore/owner/menuSettings.js +1 -0
  209. package/davexcore/owner/owner.js +17 -0
  210. package/davexcore/owner/pair.js +160 -0
  211. package/davexcore/owner/pinchat.js +44 -0
  212. package/davexcore/owner/ping.js +65 -0
  213. package/davexcore/owner/profilepic.js +61 -0
  214. package/davexcore/owner/resetmenuimage.js +16 -0
  215. package/davexcore/owner/setGroupStatus.js +315 -0
  216. package/davexcore/owner/setbotconfig.js +306 -0
  217. package/davexcore/owner/setfont.js +79 -0
  218. package/davexcore/owner/setowner.js +144 -0
  219. package/davexcore/owner/setprefix.js +131 -0
  220. package/davexcore/owner/settings.js +98 -0
  221. package/davexcore/owner/startupwelcome.js +94 -0
  222. package/davexcore/owner/sudo.js +138 -0
  223. package/davexcore/owner/update.js +282 -0
  224. package/davexcore/tmp/1772020249097.jpg +0 -0
  225. package/davexcore/utility/bible.js +239 -0
  226. package/davexcore/utility/cleartmp.js +107 -0
  227. package/davexcore/utility/delete.js +182 -0
  228. package/davexcore/utility/encrypt.js +99 -0
  229. package/davexcore/utility/ethicalhacking.js +108 -0
  230. package/davexcore/utility/fetch.js +127 -0
  231. package/davexcore/utility/github.js +85 -0
  232. package/davexcore/utility/google.js +79 -0
  233. package/davexcore/utility/join.js +52 -0
  234. package/davexcore/utility/lastseen.js +67 -0
  235. package/davexcore/utility/location.js +106 -0
  236. package/davexcore/utility/lyrics.js +54 -0
  237. package/davexcore/utility/movie.js +66 -0
  238. package/davexcore/utility/news.js +37 -0
  239. package/davexcore/utility/sports.js +403 -0
  240. package/davexcore/utility/ss.js +63 -0
  241. package/davexcore/utility/tinyurl.js +83 -0
  242. package/davexcore/utility/translate.js +101 -0
  243. package/davexcore/utility/url.js +112 -0
  244. package/davexcore/utility/vcf.js +84 -0
  245. package/davexcore/utility/weather.js +162 -0
  246. package/index.js +994 -0
  247. package/package.json +64 -0
@@ -0,0 +1,563 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>DAVE-X | WABOT - Deployment Successful</title>
7
+
8
+ <!-- Metadata for SEO -->
9
+ <meta name="description" content="DAVE-X WhatsApp Bot - Active and Running">
10
+ <meta property="og:title" content="DAVE-X | ©Supreme">
11
+ <meta property="og:description" content="Hey Dude, DAVE X is Active and Running">
12
+ <meta property="og:image" content="https://telegra.ph/file/c2a4d8d65722553da4c89.jpg">
13
+ <link rel="icon" href="https://telegra.ph/file/c2a4d8d65722553da4c89.jpg">
14
+
15
+ <!-- Font Awesome for icons -->
16
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
17
+
18
+ <style>
19
+ :root {
20
+ --primary: #8a2be2;
21
+ --secondary: #00d4ff;
22
+ --success: #00ff88;
23
+ --dark: #0a0a0a;
24
+ --darker: #050505;
25
+ --light: #f0f0f0;
26
+ --gray: #888;
27
+ }
28
+
29
+ * {
30
+ margin: 0;
31
+ padding: 0;
32
+ box-sizing: border-box;
33
+ font-family: 'Segoe UI', Arial, sans-serif;
34
+ }
35
+
36
+ body {
37
+ display: flex;
38
+ justify-content: center;
39
+ align-items: center;
40
+ min-height: 100vh;
41
+ background-color: var(--dark);
42
+ background-image:
43
+ radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 20%),
44
+ radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 20%);
45
+ color: white;
46
+ flex-direction: column;
47
+ padding: 20px;
48
+ overflow-x: hidden;
49
+ }
50
+
51
+ .container {
52
+ max-width: 1200px;
53
+ width: 100%;
54
+ display: flex;
55
+ flex-direction: column;
56
+ align-items: center;
57
+ gap: 40px;
58
+ }
59
+
60
+ /* Header Section */
61
+ .header {
62
+ text-align: center;
63
+ padding: 20px;
64
+ width: 100%;
65
+ }
66
+
67
+ .logo-container {
68
+ display: flex;
69
+ align-items: center;
70
+ justify-content: center;
71
+ gap: 15px;
72
+ margin-bottom: 20px;
73
+ }
74
+
75
+ .logo {
76
+ width: 70px;
77
+ height: 70px;
78
+ border-radius: 50%;
79
+ object-fit: cover;
80
+ border: 3px solid var(--primary);
81
+ box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
82
+ }
83
+
84
+ .bot-name {
85
+ font-size: 2.8rem;
86
+ font-weight: 800;
87
+ background: linear-gradient(90deg, var(--primary), var(--secondary));
88
+ -webkit-background-clip: text;
89
+ background-clip: text;
90
+ color: transparent;
91
+ letter-spacing: 1px;
92
+ }
93
+
94
+ .bot-subtitle {
95
+ font-size: 1.2rem;
96
+ color: var(--gray);
97
+ margin-top: -5px;
98
+ letter-spacing: 2px;
99
+ }
100
+
101
+ /* Status Section */
102
+ .status-card {
103
+ background: rgba(20, 20, 30, 0.8);
104
+ border-radius: 20px;
105
+ padding: 40px 30px;
106
+ width: 100%;
107
+ max-width: 800px;
108
+ text-align: center;
109
+ border: 1px solid rgba(138, 43, 226, 0.3);
110
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
111
+ backdrop-filter: blur(10px);
112
+ position: relative;
113
+ overflow: hidden;
114
+ }
115
+
116
+ .status-card::before {
117
+ content: '';
118
+ position: absolute;
119
+ top: 0;
120
+ left: 0;
121
+ width: 100%;
122
+ height: 5px;
123
+ background: linear-gradient(90deg, var(--primary), var(--secondary));
124
+ }
125
+
126
+ .status-icon {
127
+ font-size: 4rem;
128
+ margin-bottom: 20px;
129
+ color: var(--success);
130
+ filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
131
+ animation: pulse 2s infinite;
132
+ }
133
+
134
+ @keyframes pulse {
135
+ 0% { transform: scale(1); }
136
+ 50% { transform: scale(1.05); }
137
+ 100% { transform: scale(1); }
138
+ }
139
+
140
+ .status-text {
141
+ font-size: 2.5rem;
142
+ font-weight: 700;
143
+ margin-bottom: 10px;
144
+ background: linear-gradient(90deg, var(--success), var(--secondary));
145
+ -webkit-background-clip: text;
146
+ background-clip: text;
147
+ color: transparent;
148
+ }
149
+
150
+ .status-subtext {
151
+ font-size: 1.2rem;
152
+ color: var(--gray);
153
+ margin-bottom: 30px;
154
+ }
155
+
156
+ /* Info Display */
157
+ .info-display {
158
+ display: flex;
159
+ flex-wrap: wrap;
160
+ justify-content: center;
161
+ gap: 20px;
162
+ margin-top: 20px;
163
+ width: 100%;
164
+ }
165
+
166
+ .info-box {
167
+ background: rgba(30, 30, 40, 0.7);
168
+ border-radius: 15px;
169
+ padding: 20px;
170
+ min-width: 200px;
171
+ flex: 1;
172
+ border: 1px solid rgba(255, 255, 255, 0.1);
173
+ transition: transform 0.3s, box-shadow 0.3s;
174
+ }
175
+
176
+ .info-box:hover {
177
+ transform: translateY(-5px);
178
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
179
+ }
180
+
181
+ .info-title {
182
+ font-size: 1rem;
183
+ color: var(--gray);
184
+ margin-bottom: 10px;
185
+ display: flex;
186
+ align-items: center;
187
+ gap: 8px;
188
+ }
189
+
190
+ .info-value {
191
+ font-size: 1.8rem;
192
+ font-weight: 700;
193
+ color: white;
194
+ }
195
+
196
+ #timeValue {
197
+ color: var(--secondary);
198
+ }
199
+
200
+ #dateValue {
201
+ color: #ff9d00;
202
+ }
203
+
204
+ #dayValue {
205
+ color: var(--primary);
206
+ }
207
+
208
+ /* Stats Section */
209
+ .stats-container {
210
+ display: flex;
211
+ flex-wrap: wrap;
212
+ justify-content: center;
213
+ gap: 20px;
214
+ width: 100%;
215
+ max-width: 800px;
216
+ }
217
+
218
+ .stat-box {
219
+ background: rgba(30, 30, 40, 0.7);
220
+ border-radius: 15px;
221
+ padding: 20px;
222
+ flex: 1;
223
+ min-width: 180px;
224
+ text-align: center;
225
+ border: 1px solid rgba(255, 255, 255, 0.1);
226
+ }
227
+
228
+ .stat-value {
229
+ font-size: 2.5rem;
230
+ font-weight: 800;
231
+ color: var(--secondary);
232
+ margin-bottom: 5px;
233
+ }
234
+
235
+ .stat-label {
236
+ font-size: 0.9rem;
237
+ color: var(--gray);
238
+ text-transform: uppercase;
239
+ letter-spacing: 1px;
240
+ }
241
+
242
+ /* Developer Section */
243
+ .developer-section {
244
+ text-align: center;
245
+ padding: 30px;
246
+ width: 100%;
247
+ max-width: 800px;
248
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
249
+ margin-top: 20px;
250
+ }
251
+
252
+ .developer-label {
253
+ font-size: 1rem;
254
+ color: var(--gray);
255
+ margin-bottom: 10px;
256
+ }
257
+
258
+ .developer-name {
259
+ font-size: 1.8rem;
260
+ font-weight: 700;
261
+ background: linear-gradient(90deg, var(--primary), #ff00ff);
262
+ -webkit-background-clip: text;
263
+ background-clip: text;
264
+ color: transparent;
265
+ display: flex;
266
+ align-items: center;
267
+ justify-content: center;
268
+ gap: 10px;
269
+ }
270
+
271
+ /* Footer */
272
+ .footer {
273
+ text-align: center;
274
+ padding: 20px;
275
+ color: var(--gray);
276
+ font-size: 0.9rem;
277
+ width: 100%;
278
+ max-width: 800px;
279
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
280
+ margin-top: 20px;
281
+ }
282
+
283
+ .social-icons {
284
+ display: flex;
285
+ justify-content: center;
286
+ gap: 20px;
287
+ margin-top: 15px;
288
+ }
289
+
290
+ .social-icon {
291
+ color: var(--gray);
292
+ font-size: 1.5rem;
293
+ transition: color 0.3s, transform 0.3s;
294
+ }
295
+
296
+ .social-icon:hover {
297
+ color: var(--secondary);
298
+ transform: scale(1.2);
299
+ }
300
+
301
+ /* Responsive Design */
302
+ @media (max-width: 768px) {
303
+ .bot-name {
304
+ font-size: 2rem;
305
+ }
306
+
307
+ .status-text {
308
+ font-size: 1.8rem;
309
+ }
310
+
311
+ .info-value {
312
+ font-size: 1.5rem;
313
+ }
314
+
315
+ .stat-value {
316
+ font-size: 2rem;
317
+ }
318
+
319
+ .info-display {
320
+ flex-direction: column;
321
+ }
322
+ }
323
+
324
+ @media (max-width: 480px) {
325
+ .bot-name {
326
+ font-size: 1.8rem;
327
+ }
328
+
329
+ .status-card {
330
+ padding: 30px 20px;
331
+ }
332
+
333
+ .status-text {
334
+ font-size: 1.5rem;
335
+ }
336
+
337
+ .developer-name {
338
+ font-size: 1.5rem;
339
+ }
340
+ }
341
+
342
+ /* Particles Background */
343
+ #particles-js {
344
+ position: fixed;
345
+ width: 100%;
346
+ height: 100%;
347
+ top: 0;
348
+ left: 0;
349
+ z-index: -1;
350
+ }
351
+ </style>
352
+ </head>
353
+ <body>
354
+ <!-- Particles Background -->
355
+ <div id="particles-js"></div>
356
+
357
+ <div class="container">
358
+ <!-- Header Section -->
359
+ <div class="header">
360
+ <div class="logo-container">
361
+ <img src="https://telegra.ph/file/c2a4d8d65722553da4c89.jpg" alt="GIFTED-MD Logo" class="logo">
362
+ <div>
363
+ <h1 class="bot-name">GIFTED-MD</h1>
364
+ <div class="bot-subtitle">WHATSAPP BOT</div>
365
+ </div>
366
+ </div>
367
+ </div>
368
+
369
+ <!-- Status Section -->
370
+ <div class="status-card">
371
+ <div class="status-icon">
372
+ <i class="fas fa-check-circle"></i>
373
+ </div>
374
+ <div class="status-text">DEPLOYMENT SUCCESSFUL</div>
375
+ <div class="status-subtext">Bot is connected and running optimally</div>
376
+
377
+ <!-- Info Display -->
378
+ <div class="info-display">
379
+ <div class="info-box">
380
+ <div class="info-title">
381
+ <i class="fas fa-clock"></i> Current Time
382
+ </div>
383
+ <div class="info-value" id="timeValue">Loading...</div>
384
+ </div>
385
+
386
+ <div class="info-box">
387
+ <div class="info-title">
388
+ <i class="fas fa-calendar-alt"></i> Date
389
+ </div>
390
+ <div class="info-value" id="dateValue">Loading...</div>
391
+ </div>
392
+
393
+ <div class="info-box">
394
+ <div class="info-title">
395
+ <i class="fas fa-calendar-day"></i> Day
396
+ </div>
397
+ <div class="info-value" id="dayValue">Loading...</div>
398
+ </div>
399
+ </div>
400
+ </div>
401
+
402
+ <!-- Stats Section -->
403
+ <div class="stats-container">
404
+ <div class="stat-box">
405
+ <div class="stat-value" id="uptimeValue">00:00:00</div>
406
+ <div class="stat-label">Uptime</div>
407
+ </div>
408
+
409
+ <div class="stat-box">
410
+ <div class="stat-value">24/7</div>
411
+ <div class="stat-label">Availability</div>
412
+ </div>
413
+
414
+ <div class="stat-box">
415
+ <div class="stat-value" id="pingValue">0ms</div>
416
+ <div class="stat-label">Ping</div>
417
+ </div>
418
+ </div>
419
+
420
+ <!-- Developer Section -->
421
+ <div class="developer-section">
422
+ <div class="developer-label">Developed with <i class="fas fa-heart" style="color:#ff0055;"></i> by</div>
423
+ <div class="developer-name">
424
+ <i class="fas fa-code"></i> GiftedTech
425
+ </div>
426
+ </div>
427
+
428
+ <!-- Footer -->
429
+ <div class="footer">
430
+ <p>GIFTED-MD © 2023 | All Rights Reserved</p>
431
+ <p>Powered by DAVE-X | Supreme Edition</p>
432
+
433
+ <div class="social-icons">
434
+ <a href="#" class="social-icon">
435
+ <i class="fab fa-github"></i>
436
+ </a>
437
+ <a href="#" class="social-icon">
438
+ <i class="fab fa-telegram"></i>
439
+ </a>
440
+ <a href="#" class="social-icon">
441
+ <i class="fab fa-whatsapp"></i>
442
+ </a>
443
+ <a href="#" class="social-icon">
444
+ <i class="fas fa-globe"></i>
445
+ </a>
446
+ </div>
447
+ </div>
448
+ </div>
449
+
450
+ <!-- Particles.js Library -->
451
+ <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
452
+
453
+ <script>
454
+ // Initialize particles background
455
+ document.addEventListener('DOMContentLoaded', function() {
456
+ particlesJS("particles-js", {
457
+ particles: {
458
+ number: { value: 80, density: { enable: true, value_area: 800 } },
459
+ color: { value: "#8a2be2" },
460
+ shape: { type: "circle" },
461
+ opacity: { value: 0.5, random: true },
462
+ size: { value: 3, random: true },
463
+ line_linked: {
464
+ enable: true,
465
+ distance: 150,
466
+ color: "#00d4ff",
467
+ opacity: 0.2,
468
+ width: 1
469
+ },
470
+ move: {
471
+ enable: true,
472
+ speed: 2,
473
+ direction: "none",
474
+ random: true,
475
+ straight: false,
476
+ out_mode: "out",
477
+ bounce: false
478
+ }
479
+ },
480
+ interactivity: {
481
+ detect_on: "canvas",
482
+ events: {
483
+ onhover: { enable: true, mode: "repulse" },
484
+ onclick: { enable: true, mode: "push" }
485
+ }
486
+ },
487
+ retina_detect: true
488
+ });
489
+
490
+ // Set deployment time for uptime calculation
491
+ const deploymentTime = new Date();
492
+
493
+ // Update time, date, and day
494
+ function updateInfo() {
495
+ const now = new Date();
496
+
497
+ // Update time
498
+ const hours = String(now.getHours()).padStart(2, '0');
499
+ const minutes = String(now.getMinutes()).padStart(2, '0');
500
+ const seconds = String(now.getSeconds()).padStart(2, '0');
501
+ document.getElementById('timeValue').textContent = `${hours}:${minutes}:${seconds}`;
502
+
503
+ // Update date
504
+ const date = now.toLocaleDateString('en-US', {
505
+ year: 'numeric',
506
+ month: 'long',
507
+ day: 'numeric'
508
+ });
509
+ document.getElementById('dateValue').textContent = date;
510
+
511
+ // Update day
512
+ const dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
513
+ const dayName = dayNames[now.getDay()];
514
+ document.getElementById('dayValue').textContent = dayName;
515
+
516
+ // Update uptime
517
+ updateUptime(deploymentTime);
518
+
519
+ // Simulate ping update
520
+ updatePing();
521
+ }
522
+
523
+ // Calculate and update uptime
524
+ function updateUptime(startTime) {
525
+ const now = new Date();
526
+ const uptimeMs = now - startTime;
527
+
528
+ const hours = Math.floor(uptimeMs / (1000 * 60 * 60));
529
+ const minutes = Math.floor((uptimeMs % (1000 * 60 * 60)) / (1000 * 60));
530
+ const seconds = Math.floor((uptimeMs % (1000 * 60)) / 1000);
531
+
532
+ document.getElementById('uptimeValue').textContent =
533
+ `${String(hours).padStart(2, '0')}:${String(minutes).padStart(2, '0')}:${String(seconds).padStart(2, '0')}`;
534
+ }
535
+
536
+ // Simulate ping update
537
+ function updatePing() {
538
+ // Simulate realistic ping values between 20-80ms
539
+ const ping = Math.floor(Math.random() * 60) + 20;
540
+ document.getElementById('pingValue').textContent = `${ping}ms`;
541
+ }
542
+
543
+ // Update info every second
544
+ setInterval(updateInfo, 1000);
545
+
546
+ // Initial call to set info immediately
547
+ updateInfo();
548
+
549
+ // Add hover effect to status card
550
+ const statusCard = document.querySelector('.status-card');
551
+ statusCard.addEventListener('mouseenter', function() {
552
+ this.style.transform = 'translateY(-10px)';
553
+ this.style.boxShadow = '0 20px 40px rgba(0, 0, 0, 0.7)';
554
+ });
555
+
556
+ statusCard.addEventListener('mouseleave', function() {
557
+ this.style.transform = 'translateY(0)';
558
+ this.style.boxShadow = '0 10px 30px rgba(0, 0, 0, 0.5)';
559
+ });
560
+ });
561
+ </script>
562
+ </body>
563
+ </html>