83f7c53
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Інтернет та цифрова комунікація: інструменти пошуку</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.category-card {
transition: all 0.3s ease;
}
.category-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-card {
transition: all 0.2s ease;
}
.service-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.price-tag {
font-size: 0.8rem;
padding: 2px 8px;
border-radius: 12px;
}
.free {
background-color: #d1fae5;
color: #065f46;
}
.paid {
background-color: #fee2e2;
color: #991b1b;
}
.freemium {
background-color: #dbeafe;
color: #1e40af;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<header class="bg-blue-600 text-white py-6 shadow-lg">
<div class="container mx-auto px-4">
<h1 class="text-3xl md:text-4xl font-bold mb-2">Інструменти для ефективного пошуку інформації</h1>
<p class="text-blue-100">Повний перелік сервісів, інструментів і програм для дослідження інтернету</p>
</div>
</header>
<div class="container mx-auto px-4 py-8">
<div class="flex flex-wrap justify-center gap-4 mb-8" id="category-tabs">
</div>
<div id="category-contents">
<div class="tab-content active" id="category-1">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Загальні пошукові системи</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-2">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Метапошукові системи</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-3">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Науковий пошук</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-4">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">OSINT та спеціалізовані бази даних</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-5">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук файлів, зображень, відео</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-6">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук у соцмережах і форумах</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-7">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Агрегатори новин та аналітики</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-8">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Архіви та кеші</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-9">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук по маркетплейсах та комерційних платформах</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-10">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук по PDF, книгах, документах</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-11">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук в даркнеті</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-12">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Інструменти для перевірки фактів та верифікації</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-13">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Інтелектуальні асистенти та пошук за допомогою AI</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-14">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Розширення та плагіни для браузера</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
<div class="tab-content" id="category-15">
<h2 class="text-2xl font-bold mb-6 text-blue-800 border-b pb-2">Пошук за кодом і програмування</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
</div>
</div>
</div>
</div>
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h3 class="text-xl font-bold mb-2">Інтернет та цифрова комунікація</h3>
<p class="text-gray-400">Ефективний пошук інформації в мережі</p>
</div>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github fa-lg"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter fa-lg"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin fa-lg"></i></a>
</div>
</div>
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
<p>© 2023 Всі права захищені. Довідковий ресурс.</p>
</div>
</div>
</footer>
<script>
// Categories data
const categories = [
{ id: 1, name: "Загальні пошукові системи", icon: "search" },
{ id: 2, name: "Метапошукові системи", icon: "layer-group" },
{ id: 3, name: "Науковий пошук", icon: "flask" },
{ id: 4, name: "OSINT та бази даних", icon: "database" },
{ id: 5, name: "Файли, зображення, відео", icon: "file-image" },
{ id: 6, name: "Соцмережі та форуми", icon: "users" },
{ id: 7, name: "Агрегатори новин", icon: "newspaper" },
{ id: 8, name: "Архіви та кеші", icon: "archive" },
{ id: 9, name: "Маркетплейси", icon: "shopping-cart" },
{ id: 10, name: "PDF та книги", icon: "book" },
{ id: 11, name: "Даркнет", icon: "user-secret" },
{ id: 12, name: "Перевірка фактів", icon: "check-circle" },
{ id: 13, name: "AI асистенти", icon: "robot" },
{ id: 14, name: "Розширення браузера", icon: "puzzle-piece" },
{ id: 15, name: "Пошук коду", icon: "code" }
];
// Services data for each category
const services = {
1: [
{ name: "Google", description: "Найпопулярніша пошукова система у світі з розширеними можливостями пошуку.", url: "https://www.google.com", pricing: "free" },
{ name: "Bing", description: "Пошукова система від Microsoft з інтеграцією з продуктами компанії.", url: "https://www.bing.com", pricing: "free" },
{ name: "Yahoo Search", description: "Одна з перших пошукових систем, що використовує технології Bing.", url: "https://search.yahoo.com", pricing: "free" },
{ name: "Yandex", description: "Провідна російська пошукова система з потужними алгоритмами для східноєвропейських мов.", url: "https://yandex.com", pricing: "free" },
{ name: "DuckDuckGo", description: "Пошукова система, яка не збирає дані користувачів.", url: "https://duckduckgo.com", pricing: "free" },
{ name: "Baidu", description: "Провідна китайська пошукова система.", url: "https://www.baidu.com", pricing: "free" },
{ name: "Ecosia", description: "Пошукова система, яка садить дерева за дохід від реклами.", url: "https://www.ecosia.org", pricing: "free" },
{ name: "Qwant", description: "Європейська пошукова система, що поважає конфіденційність.", url: "https://www.qwant.com", pricing: "free" },
{ name: "Startpage", description: "Пошукова система, що надає анонімні результати з Google.", url: "https://www.startpage.com", pricing: "free" },
{ name: "Swisscows", description: "Пошукова система з акцентом на конфіденційність і сімейний контент.", url: "https://swisscows.com", pricing: "free" },
{ name: "Gigablast", description: "Невелика незалежна пошукова система з відкритим кодом.", url: "https://www.gigablast.com", pricing: "free" },
{ name: "Mojeek", description: "Пошукова система, що не використовує трекери або персоналізацію.", url: "https://www.mojeek.com", pricing: "free" },
{ name: "Search Encrypt", description: "Пошукова система з шифруванням запитів для підвищення конфіденційності.", url: "https://www.searchencrypt.com", pricing: "free" },
{ name: "Gibiru", description: "Анонімна пошукова система, що не фільтрує результати.", url: "https://gibiru.com", pricing: "free" },
{ name: "Dogpile", description: "Метапошукова система, що агрегує результати з Google, Yahoo та інших.", url: "https://www.dogpile.com", pricing: "free" },
{ name: "AOL Search", description: "Пошукова система від AOL, що використовує технології Google.", url: "https://search.aol.com", pricing: "free" },
{ name: "Ask.com", description: "Пошукова система, що дозволяє формулювати запитання природною мовою.", url: "https://www.ask.com", pricing: "free" },
{ name: "Excite", description: "Одна з перших пошукових систем в інтернеті.", url: "https://www.excite.com", pricing: "free" },
{ name: "Lycos", description: "Одна з найстаріших пошукових систем, заснована в 1994 році.", url: "https://www.lycos.com", pricing: "free" },
{ name: "Naver", description: "Провідна пошукова система Південної Кореї.", url: "https://www.naver.com", pricing: "free" }
],
2: [
{ name: "Metager", description: "Німецька метапошукова система з акцентом на конфіденційність.", url: "https://metager.org", pricing: "free" },
{ name: "Searx", description: "Відкрита метапошукова система, що агрегує результати з багатьох джерел.", url: "https://searx.space", pricing: "free" },
{ name: "Yippy", description: "Метапошукова система, що групує результати за категоріями.", url: "https://www.yippy.com", pricing: "free" },
{ name: "Zapmeta", description: "Швидка метапошукова система з фільтрами результатів.", url: "https://www.zapmeta.com", pricing: "free" },
{ name: "Info.com", description: "Метапошукова система, що комбінує результати з Google, Bing та Yahoo.", url: "https://www.info.com", pricing: "free" },
{ name: "MyAllSearch", description: "Метапошукова система, що дозволяє вибирати джерела для пошуку.", url: "https://www.myallsearch.com", pricing: "free" },
{ name: "WebCrawler", description: "Одна з перших метапошукових систем в інтернеті.", url: "https://www.webcrawler.com", pricing: "free" },
{ name: "Mamma", description: "Метапошукова система, що називає себе 'мамою всіх пошукових систем'.", url: "https://www.mamma.com", pricing: "free" },
{ name: "Ixquick", description: "Метапошукова система з акцентом на конфіденційність (тепер Startpage).", url: "https://www.startpage.com", pricing: "free" },
{ name: "Boardreader", description: "Спеціалізована метапошукова система для пошуку на форумах.", url: "https://boardreader.com", pricing: "free" },
{ name: "SearchTempest", description: "Метапошукова система для пошуку по Craigslist у всіх регіонах.", url: "https://www.searchtempest.com", pricing: "free" },
{ name: "All-in-One", description: "Метапошукова система, що агрегує результати з багатьох джерел.", url: "https://all-io.net", pricing: "free" },
{ name: "Fagan Finder", description: "Набір метапошукових інструментів для різних типів контенту.", url: "https://www.faganfinder.com", pricing: "free" },
{ name: "PolyMeta", description: "Метапошукова система, що дозволяє створювати власні пошукові комбінації.", url: "https://polymeta.com", pricing: "free" },
{ name: "MetaCrawler", description: "Одна з перших метапошукових систем, заснована в 1995 році.", url: "https://www.metacrawler.com", pricing: "free" },
{ name: "Krozilo", description: "Метапошукова система з можливістю фільтрації результатів.", url: "https://www.krozilo.com", pricing: "free" },
{ name: "Glearch", description: "Метапошукова система, що агрегує результати з Google, Bing та Yahoo.", url: "https://www.glearch.com", pricing: "free" },
{ name: "Zoo", description: "Метапошукова система, що дозволяє вибирати джерела для пошуку.", url: "https://www.zoo.com", pricing: "free" },
{ name: "TurboScout", description: "Метапошукова система з можливістю одночасної перевірки результатів.", url: "https://www.turboscout.com", pricing: "free" }
],
3: [
{ name: "Google Scholar", description: "Спеціалізована пошукова система для наукових статей і публікацій.", url: "https://scholar.google.com", pricing: "free" },
{ name: "PubMed", description: "База даних біомедичних публікацій від Національної бібліотеки медицини США.", url: "https://pubmed.ncbi.nlm.nih.gov", pricing: "free" },
{ name: "IEEE Xplore", description: "Цифрова бібліотека наукових публікацій з технічних дисциплін.", url: "https://ieeexplore.ieee.org", pricing: "paid" },
{ name: "ScienceDirect", description: "Повнотекстова база даних наукових публікацій Elsevier.", url: "https://www.sciencedirect.com", pricing: "paid" },
{ name: "JSTOR", description: "Архів академічних журналів, книг і першоджерел.", url: "https://www.jstor.org", pricing: "freemium" },
{ name: "SpringerLink", description: "Платформа з науковими журналами, книгами і серіями видавництва Springer.", url: "https://link.springer.com", pricing: "paid" },
{ name: "Scopus", description: "Одна з найбільших баз даних рецензованої літератури.", url: "https://www.scopus.com", pricing: "paid" },
{ name: "Web of Science", description: "Платформа для пошуку наукової літератури та аналізу цитувань.", url: "https://www.webofscience.com", pricing: "paid" },
{ name: "ResearchGate", description: "Соціальна мережа для вчених і дослідників.", url: "https://www.researchgate.net", pricing: "free" },
{ name: "Academia.edu", description: "Платформа для обміну науковими роботами.", url: "https://www.academia.edu", pricing: "freemium" },
{ name: "arXiv", description: "Відкритий архів наукових статей з фізики, математики, інформатики та ін.", url: "https://arxiv.org", pricing: "free" },
{ name: "SSRN", description: "Архів попередніх версій наукових робіт з соціальних наук.", url: "https://www.ssrn.com", pricing: "free" },
{ name: "ERIC", description: "Освітня база даних від Міністерства освіти США.", url: "https://eric.ed.gov", pricing: "free" },
{ name: "DOAJ", description: "Каталог відкритих наукових журналів.", url: "https://doaj.org", pricing: "free" },
{ name: "PLOS", description: "Публічна наукова бібліотека з відкритим доступом.", url: "https://www.plos.org", pricing: "free" },
{ name: "BioMed Central", description: "Видавництво відкритих наукових журналів з біомедицини.", url: "https://www.biomedcentral.com", pricing: "free" },
{ name: "Microsoft Academic", description: "Академічна пошукова система від Microsoft (закрита в 2021).", url: "https://academic.microsoft.com", pricing: "free" },
{ name: "CORE", description: "Найбільший агрегатор відкритих наукових публікацій.", url: "https://core.ac.uk", pricing: "free" },
{ name: "Semantic Scholar", description: "Пошукова система з штучним інтелектом для наукових статей.", url: "https://www.semanticscholar.org", pricing: "free" },
{ name: "BASE", description: "Одна з найбільших пошукових систем для відкритих наукових документів.", url: "https://www.base-search.net", pricing: "free" }
],
4: [
{ name: "Maltego", description: "Потужний інструмент для OSINT-розслідувань і візуалізації зв'язків.", url: "https://www.maltego.com", pricing: "freemium" },
{ name: "SpiderFoot", description: "Відкритий інструмент для автоматизації OSINT-досліджень.", url: "https://www.spiderfoot.net", pricing: "free" },
{ name: "OSINT Framework", description: "Комплексний набір інструментів для OSINT-досліджень.", url: "https://osintframework.com", pricing: "free" },
{ name: "theHarvester", description: "Інструмент для збору інформації про домени, адреси email тощо.", url: "https://github.com/laramies/theHarvester", pricing: "free" },
{ name: "Shodan", description: "Пошукова система для інтернет-пристроїв і IoT.", url: "https://www.shodan.io", pricing: "freemium" },
{ name: "Censys", description: "Пошукова система для інтернет-пристроїв і інфраструктури.", url: "https://censys.io", pricing: "freemium" },
{ name: "ZoomEye", description: "Китайський аналог Shodan для пошуку інтернет-пристроїв.", url: "https://www.zoomeye.org", pricing: "freemium" },
{ name: "GreyNoise", description: "Система моніторингу інтернет-шумів і сканувань.", url: "https://www.greynoise.io", pricing: "freemium" },
{ name: "Have I Been Pwned", description: "Сервіс для перевірки витоків даних і зламаних акаунтів.", url: "https://haveibeenpwned.com", pricing: "free" },
{ name: "DeHashed", description: "Пошук по витоках даних і зламаних акаунтах.", url: "https://www.dehashed.com", pricing: "paid" },
{ name: "IntelTechniques", description: "Набір OSINT-інструментів від відомого експерта Майкла Баззела.", url: "https://inteltechniques.com", pricing: "free" },
{ name: "DataSploit", description: "Інструмент для автоматизації OSINT-досліджень.", url: "https://github.com/DataSploit/datasploit", pricing: "free" },
{ name: "Recon-ng", description: "Потужний фреймворк для веб-розвідки.", url: "https://github.com/lanmaster53/recon-ng", pricing: "free" },
{ name: "Sherlock", description: "Інструмент для пошуку імен користувачів у соцмережах.", url: "https://github.com/sherlock-project/sherlock", pricing: "free" },
{ name: "Creepy", description: "Геолокаційний OSINT-інструмент.", url: "https://github.com/ilektrojohn/creepy", pricing: "free" },
{ name: "Bellingcat", description: "Ресурси та інструменти для розслідувальної журналістики.", url: "https://www.bellingcat.com/resources", pricing: "free" },
{ name: "TinEye", description: "Зворотний пошук зображень.", url: "https://www.tineye.com", pricing: "freemium" },
{ name: "Wayback Machine", description: "Архів інтернету з можливістю пошуку старих версій сайтів.", url: "https://archive.org/web", pricing: "free" },
{ name: "DNSDumpster", description: "Інструмент для дослідження DNS-записів домену.", url: "https://dnsdumpster.com", pricing: "free" },
{ name: "URLScan", description: "Сервіс для аналізу веб-сайтів і пошуку загроз.", url: "https://urlscan.io", pricing: "freemium" }
],
5: [
{ name: "Google Images", description: "Пошук зображень від Google з розширеними фільтрами.", url: "https://images.google.com", pricing: "free" },
{ name: "Bing Images", description: "Пошук зображень від Microsoft.", url: "https://www.bing.com/images", pricing: "free" },
{ name: "Yandex Images", description: "Пошук зображень з потужним алгоритмом розпізнавання.", url: "https://yandex.com/images", pricing: "free" },
{ name: "Flickr", description: "Одна з найбільших баз фотографій з можливістю пошуку.", url: "https://www.flickr.com", pricing: "free" },
{ name: "Pixabay", description: "Бібліотека безкоштовних стокових фото, векторів і ілюстрацій.", url: "https://pixabay.com", pricing: "free" },
{ name: "Unsplash", description: "Високоякісні безкоштовні фото для комерційного використання.", url: "https://unsplash.com", pricing: "free" },
{ name: "Shutterstock", description: "Одна з найбільших бібліотек стокових фото, векторів і відео.", url: "https://www.shutterstock.com", pricing: "paid" },
{ name: "Getty Images", description: "Преміум-бібліотека стокових фото і відео.", url: "https://www.gettyimages.com", pricing: "paid" },
{ name: "Depositphotos", description: "Бібліотека стокових фото, векторів і відео.", url: "https://depositphotos.com", pricing: "paid" },
{ name: "Pexels", description: "Безкоштовні стокові фото і відео високої якості.", url: "https://www.pexels.com", pricing: "free" },
{ name: "500px", description: "Платформа для пошуку високоякісних фотографій.", url: "https://500px.com", pricing: "freemium" },
{ name: "Google Videos", description: "Пошук відео від Google.", url: "https://www.google.com/videohp", pricing: "free" },
{ name: "YouTube", description: "Найбільша платформа для пошуку відеоконтенту.", url: "https://www.youtube.com", pricing: "free" },
{ name: "Vimeo", description: "Платформа для пошуку високоякісних відео.", url: "https://vimeo.com", pricing: "free" },
{ name: "Dailymotion", description: "Альтернативна платформа для пошуку відео.", url: "https://www.dailymotion.com", pricing: "free" },
{ name: "Internet Archive Video", description: "Архів відео з можливістю пошуку.", url: "https://archive.org/details/movies", pricing: "free" },
{ name: "FilePursuit", description: "Пошуковий інструмент для знаходження файлів у інтернеті.", url: "https://filepursuit.com", pricing: "free" },
{ name: "Mamont", description: "Пошук відкритих FTP-серверів і файлів.", url: "https://www.mmnt.net", pricing: "free" },
{ name: "FileChef", description: "Пошук відкритих файлів на веб-сайтах.", url: "https://www.filechef.com", pricing: "free" },
{ name: "Global File Search", description: "Пошук файлів на FTP-серверах по всьому світу.", url: "https://www.globalspec.com", pricing: "free" }
],
6: [
{ name: "Facebook Search", description: "Пошук по публічним даним у соцмережі Facebook.", url: "https://www.facebook.com", pricing: "free" },
{ name: "Twitter Search", description: "Розширений пошук по твітам і профілям Twitter.", url: "https://twitter.com/search-home", pricing: "free" },
{ name: "Instagram Search", description: "Пошук по публічним профілям і контенту в Instagram.", url: "https://www.instagram.com", pricing: "free" },
{ name: "LinkedIn Search", description: "Пошук профілів і компаній у професійній соцмережі.", url: "https://www.linkedin.com", pricing: "freemium" },
{ name: "Reddit Search", description: "Пошук по обговореннях і публікаціях Reddit.", url: "https://www.reddit.com/search", pricing: "free" },
{ name: "TikTok Search", description: "Пошук по публічним відео і профілям у TikTok.", url: "https://www.tiktok.com", pricing: "free" },
{ name: "Pinterest Search", description: "Пошук ідей і зображень у Pinterest.", url: "https://www.pinterest.com", pricing: "free" },
{ name: "Telegram Search", description: "Пошук публічних каналів і груп у Telegram.", url: "https://telegram.org", pricing: "free" },
{ name: "Social Searcher", description: "Метапошук по соціальним мережам у реальному часі.", url: "https://www.social-searcher.com", pricing: "freemium" },
{ name: "Boardreader", description: "Спеціалізований пошук по форумах і дискусійних дошках.", url: "https://boardreader.com", pricing: "free" },
{ name: "Omgili", description: "Пошукова система для форумів і обговорень.", url: "https://omgili.com", pricing: "free" },
{ name: "Topsy", description: "Архівований пошук по Twitter (закритий в 2015).", url: "https://topsy.com", pricing: "free" },
{ name: "Snapchat Search", description: "Пошук публічних акаунтів і контенту в Snapchat.", url: "https://www.snapchat.com", pricing: "free" },
{ name: "Mastodon Search", description: "Пошук по децентралізованій соцмережі Mastodon.", url: "https://mastodon.social", pricing: "free" },
{ name: "VK Search", description: "Пошук по російській соцмережі ВКонтакте.", url: "https://vk.com", pricing: "free" },
{ name: "Weibo Search", description: "Пошук по китайській соцмережі Sina Weibo.", url: "https://weibo.com", pricing: "free" },
{ name: "Quora Search", description: "Пошук відповідей на питання у соцмережі Quora.", url: "https://www.quora.com", pricing: "free" },
{ name: "4chan Search", description: "Пошук по анонімній іміджборді 4chan.", url: "https://boards.4chan.org", pricing: "free" },
{ name: "Gab Search", description: "Пошук по альтернативній соцмережі Gab.", url: "https://gab.com", pricing: "free" },
{ name: "Truth Social Search", description: "Пошук по соцмережі Truth Social.", url: "https://truthsocial.com", pricing: "free" }
],
7: [
{ name: "Google News", description: "Агрегатор новин від Google з персоналізованими рекомендаціями.", url: "https://news.google.com", pricing: "free" },
{ name: "Yahoo News", description: "Один з найпопулярніших агрегаторів новин.", url: "https://news.yahoo.com", pricing: "free" },
{ name: "Bing News", description: "Агрегатор новин від Microsoft.", url: "https://www.bing.com/news", pricing: "free" },
{ name: "Feedly", description: "Персоналізований агрегатор новин і RSS-стрічок.", url: "https://feedly.com", pricing: "freemium" },
{ name: "Flipboard", description: "Агрегатор новин у форматі цифрового журналу.", url: "https://flipboard.com", pricing: "free" },
{ name: "Inoreader", description: "Потужний RSS-читач і агрегатор новин.", url: "https://www.inoreader.com", pricing: "freemium" },
{ name: "NewsNow", description: "Агрегатор новин у реальному часі з різних джерел.", url: "https://www.newsnow.co.uk", pricing: "free" },
{ name: "AllTop", description: "Агрегатор найпопулярніших новинних сайтів за темами.", url: "https://alltop.com", pricing: "free" },
{ name: "Ground News", description: "Агрегатор новин з аналізом медіа-ухилів.", url: "https://ground.news", pricing: "freemium" },
{ name: "SmartNews", description: "Агрегатор новин з алгоритмами машинного навчання.", url: "https://www.smartnews.com", pricing: "free" },
{ name: "Panda", description: "Агрегатор дизайн- і технологічних новин.", url: "https://panda.news", pricing: "free" },
{ name: "The Browser", description: "Кураторський вибір найцікавіших статей з інтернету.", url: "https://thebrowser.com", pricing: "freemium" },
{ name: "Techmeme", description: "Агрегатор технологічних новин і обговорень.", url: "https://www.techmeme.com", pricing: "free" },
{ name: "Memeorandum", description: "Агрегатор політичних новин і обговорень.", url: "https://www.memeorandum.com", pricing: "free" },
{ name: "Nuzzel", description: "Агрегатор новин на основі того, що читають ваші друзі.", url: "https://nuzzel.com", pricing: "free" },
{ name: "Politico", description: "Агрегатор політичних новин і аналітики.", url: "https://www.politico.com", pricing: "free" },
{ name: "RealClearPolitics", description: "Агрегатор політичних новин і коментарів.", url: "https://www.realclearpolitics.com", pricing: "free" },
{ name: "Drudge Report", description: "Впливовий агрегатор новин з консервативним ухилом.", url: "https://www.drudgereport.com", pricing: "free" },
{ name: "Google Alerts", description: "Сервіс сповіщень про нові публікації за заданими ключовими словами.", url: "https://www.google.com/alerts", pricing: "free" },
{ name: "Talkwalker Alerts", description: "Альтернатива Google Alerts для моніторингу медіа.", url: "https://www.talkwalker.com/alerts", pricing: "free" }
],
8: [
{ name: "Wayback Machine", description: "Архів інтернету з мільярдами збережених веб-сторінок.", url: "https://archive.org/web", pricing: "free" },
{ name: "Google Cache", description: "Доступ до кешованих версій сторінок у пошуковій видачі Google.", url: "cache:example.com", pricing: "free" },
{ name: "CachedView", description: "Сервіс для перегляду кешованих версій веб-сторінок.", url: "https://cachedview.com", pricing: "free" },
{ name: "Archive.today", description: "Сервіс архівації веб-сторінок з можливістю пошуку.", url: "https://archive.today", pricing: "free" },
{ name: "WebCite", description: "Академічний сервіс архівації веб-сторінок.", url: "https://www.webcitation.org", pricing: "free" },
{ name: "Memento Time Travel", description: "Метапошук по веб-архівам.", url: "https://timetravel.mementoweb.org", pricing: "free" },
{ name: "UK Web Archive", description: "Архів британських веб-сайтів від Британської бібліотеки.", url: "https://www.webarchive.org.uk", pricing: "free" },
{ name: "Library of Congress Web Archives", description: "Архів веб-сайтів від Бібліотеки Конгресу США.", url: "https://www.loc.gov/web-archives", pricing: "free" },
{ name: "Archive.st", description: "Альтернативний сервіс архівації веб-сторінок.", url: "https://archive.st", pricing: "free" },
{ name: "PageFreezer", description: "Комерційний сервіс архівації веб-контенту.", url: "https://www.pagefreezer.com", pricing: "paid" },
{ name: "Stillio", description: "Сервіс автоматичного скріншотування веб-сайтів.", url: "https://www.stillio.com", pricing: "paid" },
{ name: "Perma.cc", description: "Сервіс архівації веб-сторінок для академічних і юридичних цілей.", url: "https://perma.cc", pricing: "freemium" },
{ name: "Oldweb.today", description: "Сервіс для перегляду старих веб-сайтів у оригінальних браузерах.", url: "https://oldweb.today", pricing: "free" },
{ name: "TimeTravel", description: "Візуалізація історії змін веб-сайтів.", url: "https://timetravel.mementoweb.org", pricing: "free" },
{ name: "Archive.fo", description: "Альтернативний сервіс архівації веб-сторінок (раніше Archive.is).", url: "https://archive.fo", pricing: "free" },
{ name: "CachedPages", description: "Пошук кешованих версій веб-сторінок.", url: "https://www.cachedpages.com", pricing: "free" },
{ name: "Screenshots.com", description: "Архів скріншотів веб-сайтів.", url: "https://www.screenshots.com", pricing: "free" },
{ name: "DomainTools", description: "Історія доменів і WHOIS-даних.", url: "https://www.domaintools.com", pricing: "paid" },
{ name: "DNS History", description: "Історія DNS-записів доменів.", url: "https://completedns.com/dns-history", pricing: "free" },
{ name: "WHOIS History", description: "Історія WHOIS-записів доменів.", url: "https://whoisrequest.com/history", pricing: "paid" }
],
9: [
{ name: "Google Shopping", description: "Агрегатор товарів з різних інтернет-магазинів.", url: "https://shopping.google.com", pricing: "free" },
{ name: "Amazon", description: "Найбільший у світі маркетплейс з мільйонами товарів.", url: "https://www.amazon.com", pricing: "free" },
{ name: "eBay", description: "Популярний маркетплейс для аукціонів і фіксованих цін.", url: "https://www.ebay.com", pricing: "free" },
{ name: "AliExpress", description: "Китайський маркетплейс з безліччю товарів.", url: "https://www.aliexpress.com", pricing: "free" },
{ name: "Walmart Marketplace", description: "Маркетплейс від великої роздрібної мережі.", url: "https://www.walmart.com", pricing: "free" },
{ name: "Etsy", description: "Маркетплейс для ручної роботи, вінтажу та унікальних товарів.", url: "https://www.etsy.com", pricing: "free" },
{ name: "Best Buy", description: "Маркетплейс електроніки та побутової техніки.", url: "https://www.bestbuy.com", pricing: "free" },
{ name: "Target", description: "Маркетплейс від великої роздрібної мережі.", url: "https://www.target.com", pricing: "free" },
{ name: "Newegg", description: "Спеціалізований маркетплейс електроніки та комп'ютерних комплектуючих.", url: "https://www.newegg.com", pricing: "free" },
{ name: "Zappos", description: "Спеціалізований маркетплейс взуття та одягу.", url: "https://www.zappos.com", pricing: "free" },
{ name: "Wayfair", description: "Маркетплейс меблів та товарів для дому.", url: "https://www.wayfair.com", pricing: "free" },
{ name: "Overstock", description: "Маркетплейс різноманітних товарів зі знижками.", url: "https://www.overstock.com", pricing: "free" },
{ name: "Rakuten", description: "Японський маркетплейс з широким асортиментом.", url: "https://www.rakuten.com", pricing: "free" },
{ name: "Wish", description: "Маркетплейс дешевих товарів переважно з Китаю.", url: "https://www.wish.com", pricing: "free" },
{ name: "Fiverr", description: "Маркетплейс послуг фрілансерів.", url: "https://www.fiverr.com", pricing: "free" },
{ name: "Upwork", description: "Маркетплейс професійних фріланс-послуг.", url: "https://www.upwork.com", pricing: "free" },
{ name: "Freelancer", description: "Маркетплейс фріланс-послуг і проектів.", url: "https://www.freelancer.com", pricing: "free" },
{ name: "Craigslist", description: "Місцевий маркетплейс для оголошень про продажі, послуги тощо.", url: "https://www.craigslist.org", pricing: "free" },
{ name: "Gumtree", description: "Популярний у Великобританії маркетплейс оголошень.", url: "https://www.gumtree.com", pricing: "free" },
{ name: "Shopify Stores", description: "Пошук по магазинам, створеним на платформі Shopify.", url: "https://www.shopify.com", pricing: "free" }
],
10: [
{ name: "Google Books", description: "Пошук по мільйонах оцифрованих книг.", url: "https://books.google.com", pricing: "free" },
{ name: "Google Scholar", description: "Пошук наукових статей, тез і книг.", url: "https://scholar.google.com", pricing: "free" },
{ name: "Internet Archive Books", description: "Архів мільйонів оцифрованих книг.", url: "https://archive.org/details/texts", pricing: "free" },
{ name: "Project Gutenberg", description: "Бібліотека з понад 60,000 безкоштовних електронних книг.", url: "https://www.gutenberg.org", pricing: "free" },
{ name: "Open Library", description: "Відкрита бібліотека з мільйонами записів книг.", url: "https://openlibrary.org", pricing: "free" },
{ name: "PDF Drive", description: "Пошукова система для PDF-файлів і книг.", url: "https://www.pdfdrive.com", pricing: "free" },
{ name: "Scribd", description: "Бібліотека документів, книг і аудіокниг.", url: "https://www.scribd.com", pricing: "freemium" },
{ name: "Academia.edu", description: "Платформа для обміну науковими роботами та статтями.", url: "https://www.academia.edu", pricing: "freemium" },
{ name: "ResearchGate", description: "Соціальна мережа для науковців з доступом до публікацій.", url: "https://www.researchgate.net", pricing: "free" },
{ name: "Library Genesis", description: "Тенєвий архів наукових статей і книг.", url: "http://gen.lib.rus.ec", pricing: "free" },
{ name: "Sci-Hub", description: "Сервіс для доступу до наукових статей безкоштовно.", url: "https://sci-hub.se", pricing: "free" },
{ name: "Z-Library", description: "Одна з найбільших бібліотек електронних книг.", url: "https://z-lib.io", pricing: "free" },
{ name: "ManyBooks", description: "Бібліотека безкоштовних електронних книг.", url: "https://manybooks.net", pricing: "free" },
{ name: "BookFinder", description: "Метапошукова система для книг у друкованому та електронному вигляді.", url: "https://www.bookfinder.com", pricing: "free" },
{ name: "WorldCat", description: "Каталог бібліотечних фондів по всьому світу.", url: "https://www.worldcat.org", pricing: "free" },
{ name: "Directory of Open Access Books", description: "Каталог відкритих академічних книг.", url: "https://www.doabooks.org", pricing: "free" },
{ name: "HathiTrust", description: "Партнерський проект бібліотек з оцифрованими книгами.", url: "https://www.hathitrust.org", pricing: "free" },
{ name: "Google Patents", description: "Пошук по патентах і технічній документації.", url: "https://patents.google.com", pricing: "free" },
{ name: "USPTO Patent Database", description: "База даних патентів США.", url: "https://www.uspto.gov/patents/search", pricing: "free" },
{ name: "EPO Espacenet", description: "Європейська база даних патентів.", url: "https://worldwide.espacenet.com", pricing: "free" }
],
11: [
{ name: "Tor Browser", description: "Браузер для анонімного доступу до даркнету.", url: "https://www.torproject.org", pricing: "free" },
{ name: "DuckDuckGo Onion", description: "Пошукова система для даркнету, що поважає конфіденційність.", url: "https://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion", pricing: "free" },
{ name: "Ahmia", description: "Пошукова система для даркнету з фільтрацією шкідливого контенту.", url: "https://ahmia.fi", pricing: "free" },
{ name: "Torch", description: "Одна з найстаріших пошукових систем даркнету.", url: "http://xmh57jrzrnw6insl.onion", pricing: "free" },
{ name: "Not Evil", description: "Альтернативна пошукова система для даркнету.", url: "http://hss3uro2hsxfogfq.onion", pricing: "free" },
{ name: "DarkSearch", description: "Пошукова система, що індексує даркнет.", url: "https://darksearch.io", pricing: "free" },
{ name: "OnionLand Search", description: "Архівована пошукова система для даркнету.", url: "https://onionlandsearchengine.com", pricing: "free" },
{ name: "Haystak", description: "Популярна пошукова система для даркнету.", url: "http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion", pricing: "free" },
{ name: "Onion Search Engine", description: "Проста пошукова система для даркнету.", url: "https://onionsearchengine.com", pricing: "free" },
{ name: "Phobos", description: "Пошукова система, що індексує .onion сайти.", url: "http://phobosxilamwcg75xt22id7aywkzol6q6rfl2flipcqoc4e4ahima5id.onion", pricing: "free" },
{ name: "Dark.fail", description: "Моніторинг статусу популярних даркнет-сайтів.", url: "https://dark.fail", pricing: "free" },
{ name: "Daniel's Onion List", description: "Каталог .onion сайтів.", url: "https://www.danielas3rtn54uwmofdo3x2bsdifr47huasnmbgqzfrec5ubupvtpid.onion", pricing: "free" },
{ name: "The Hidden Wiki", description: "Каталог посилань на даркнет-ресурси.", url: "http://zqktlwiuavvvqqt4ybvgvi3tyo4hjl5xgfuvwt6b7xumhy3j0rg70ad.onion", pricing: "free" },
{ name: "Tor Links", description: "Альтернативний каталог даркнет-ресурсів.", url: "http://torlinksd6pdnihy.onion", pricing: "free" },
{ name: "OnionDir", description: "Ще один каталог .onion сайтів.", url: "http://dirnxxdraygb6gcq.onion", pricing: "free" },
{ name: "Dread", description: "Форум у даркнеті, аналог Reddit.", url: "http://dreadytofatroptsdj6io7l3xptbet6onoyno2yv7jicoxknyazubrad.onion", pricing: "free" },
{ name: "Tor Taxi", description: "Сервіс для пошуку .onion сайтів.", url: "http://tortaxi2dev6xjwbaydqzla77rrnth7yn2oqzjfmiuwn5h6vsk2a4syd.onion", pricing: "free" },
{ name: "Recon", description: "Інструмент для OSINT-досліджень у даркнеті.", url: "http://recon222tttn4ob7ujdhbn3s4gjre7netvzybuvbq2bcqwltkiqinhad.onion", pricing: "free" },
{ name: "OnionShare", description: "Інструмент для безпечного обміну файлами через даркнет.", url: "https://onionshare.org", pricing: "free" },
{ name: "SecureDrop", description: "Система для анонімної передачі інформації журналістам.", url: "https://securedrop.org", pricing: "free" }
],
12: [
{ name: "Snopes", description: "Один з найстаріших сайтів для перевірки фактів.", url: "https://www.snopes.com", pricing: "free" },
{ name: "FactCheck.org", description: "Незалежний проект з перевірки фактів у політиці.", url: "https://www.factcheck.org", pricing: "free" },
{ name: "PolitiFact", description: "Відомий ресурс для перевірки політичних заяв.", url: "https://www.politifact.com", pricing: "free" },
{ name: "BBC Reality Check", description: "Проект BBC для перевірки фактів і боротьби з дезінформацією.", url: "https://www.bbc.com/news/reality_check", pricing: "free" },
{ name: "AP Fact Check", description: "Проект Associated Press з перевірки фактів.", url: "https://apnews.com/hub/fact-checking", pricing: "free" },
{ name: "Reuters Fact Check", description: "Перевірка фактів від міжнародного новинного агентства.", url: "https://www.reuters.com/news/fact-check", pricing: "free" },
{ name: "Lead Stories", description: "Сервіс для перевірки фактів з акцентом на соціальні медіа.", url: "https://www.leadstories.com", pricing: "free" },
{ name: "Fact Checker (Washington Post)", description: "Колонка перевірки фактів у Washington Post.", url: "https://www.washingtonpost.com/news/fact-checker", pricing: "free" },
{ name: "Full Fact", description: "Британська незалежна організація з перевірки фактів.", url: "https://fullfact.org", pricing: "free" },
{ name: "AFP Fact Check", description: "Міжнародний проект перевірки фактів Agence France-Presse.", url: "https://factcheck.afp.com", pricing: "free" },
{ name: "MythBusters (DOD)", description: "Сторінка Міністерства оборони США з розвінчання міфів.", url: "https://www.defense.gov/Spotlights/Myth-Busters", pricing: "free" },
{ name: "TruthOrFiction", description: "Сервіс для перевірки фактів, особливо віртуальних ланцюжків.", url: "https://www.truthorfiction.com", pricing: "free" },
{ name: "FactCheckNI", description: "Проект перевірки фактів для Північної Ірландії.", url: "https://factcheckni.org", pricing: "free" },
{ name: "Africa Check", description: "Перший африканський проект перевірки фактів.", url: "https://africacheck.org", pricing: "free" },
{ name: "Boom Fact Check", description: "Індійський проект з перевірки фактів.", url: "https://www.boomlive.in/fact-check", pricing: "free" },
{ name: "Fact Crescendo", description: "Ще один індійський проект з перевірки фактів.", url: "https://factcrescendo.com", pricing: "free" },
{ name: "Factuel", description: "Французький проект перевірки фактів від AFP.", url: "https://factuel.afp.com", pricing: "free" },
{ name: "Kallxo", description: "Косовський проект перевірки фактів.", url: "https://kallxo.com/te-verteta", pricing: "free" },
{ name: "TjekDet", description: "Данський проект перевірки фактів.", url: "https://tjekdet.dk", pricing: "free" },
{ name: "Verificat", description: "Іспанський проект перевірки фактів.", url: "https://www.verificat.cat", pricing: "free" }
],
13: [
{ name: "ChatGPT", description: "Просунутий чат-бот зі штучним інтелектом від OpenAI.", url: "https://chat.openai.com", pricing: "freemium" },
{ name: "Google Bard", description: "Експериментальний чат-бот зі ШІ від Google.", url: "https://bard.google.com", pricing: "free" },
{ name: "Microsoft Bing AI", description: "Інтелектуальний пошук від Microsoft на основі ChatGPT.", url: "https://www.bing.com/new", pricing: "free" },
{ name: "Perplexity AI", description: "Пошукова система зі ШІ, що надає відповіді з посиланнями на джерела.", url: "https://www.perplexity.ai", pricing: "free" },
{ name: "You.com", description: "Пошукова система зі ШІ, що дозволяє спілкування.", url: "https://you.com", pricing: "free" },
{ name: "Elicit", description: "Інструмент на основі ШІ для пошуку наукових статей.", url: "https://elicit.org", pricing: "freemium" },
{ name: "Consensus", description: "Пошукова система на основі ШІ для наукових досліджень.", url: "https://consensus.app", pricing: "freemium" },
{ name: "Scite Assistant", description: "Інструмент на основі ШІ для аналізу наукових цитат.", url: "https://scite.ai/assistant", pricing: "freemium" },
{ name: "Wolfram Alpha", description: "Обчислювальний двигун знань з можливістю запитів природною мовою.", url: "https://www.wolframalpha.com", pricing: "freemium" },
{ name: "DeepL Write", description: "Інструмент на основі ШІ для покращення текстів.", url: "https://www.deepl.com/write", pricing: "freemium" },
{ name: "Jasper", description: "Інструмент на основі ШІ для створення контенту.", url: "https://www.jasper.ai", pricing: "paid" },
{ name: "Copy.ai", description: "Інструмент на основі ШІ для створення маркетингових текстів.", url: "https://www.copy.ai", pricing: "freemium" },
{ name: "Writesonic", description: "Інструмент на основі ШІ для створення контенту.", url: "https://writesonic.com", pricing: "freemium" },
{ name: "Rytr", description: "Інструмент на основі ШІ для створення текстів.", url: "https://rytr.me", pricing: "freemium" },
{ name: "ChatSonic", description: "Альтернатива ChatGPT з підтримкою поточних подій.", url: "https://writesonic.com/chat", pricing: "freemium" },
{ name: "Claude", description: "Чат-бот зі ШІ від Anthropic з акцентом на безпеку.", url: "https://claude.ai", pricing: "freemium" },
{ name: "Poe", description: "Платформа для спілкування з різними ШІ-моделями.", url: "https://poe.com", pricing: "freemium" },
{ name: "Character.AI", description: "Платформа для спілкування з ШІ-персонажами.", url: "https://beta.character.ai", pricing: "free" },
{ name: "Inflection Pi", description: "Персональний ШІ-асистент від Inflection AI.", url: "https://inflection
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Olppara/search-tools" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |