File size: 48,045 Bytes
d901523 |
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 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THE AGENTS - ASCII Matrix Style</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<style>
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #00FF00 }
}
.typing-effect {
overflow: hidden;
white-space: nowrap;
animation:
typing 1.5s steps(30, end);
}
.screen-noise {
position: absolute;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
background-size: 3px 3px;
pointer-events: none;
opacity: 0.1;
}
.ascii-face {
font-family: 'VT323', monospace;
line-height: 1;
letter-spacing: 0;
white-space: pre;
overflow: hidden;
color: #00FF00;
font-size: 6px; /* Уменьшенный размер шрифта */
}
.agent-card:hover .ascii-face {
filter: brightness(1.2);
text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
}
.agent-name:hover {
text-shadow: 0 0 8px #00FF00, 0 0 16px #00FF66;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.8; }
100% { opacity: 1; }
}
.fade-in {
animation: fadeIn 2s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.print-effect {
display: inline-block;
overflow: hidden;
white-space: pre;
animation: typing 1s steps(40, end);
}
.matrix-font {
font-family: 'VT323', monospace;
}
.ascii-container {
background-color: rgba(0, 0, 0, 0.7);
border: 1px solid rgba(0, 80, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body class="bg-black min-h-screen overflow-x-hidden">
<div class="screen-noise"></div>
<section class="container mx-auto px-4 py-16 md:py-24">
<!-- Title -->
<div class="text-center mb-16">
<h1 id="agents-title" class="text-5xl md:text-7xl font-bold text-green-500 matrix-font tracking-wider"></h1>
</div>
<!-- Agents Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 md:gap-12">
<!-- Agent 1 -->
<div class="agent-card fade-in" style="animation-delay: 0.5s">
<div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden">
<div id="agent1" class="ascii-face"></div>
</div>
<div class="text-center">
<h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT ROI</h3>
<p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Traffic Strategist</p>
</div>
</div>
<!-- Agent 2 -->
<div class="agent-card fade-in" style="animation-delay: 1s">
<div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden">
<div id="agent2" class="ascii-face"></div>
</div>
<div class="text-center">
<h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT PUSH</h3>
<p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Push Operations Specialist</p>
</div>
</div>
<!-- Agent 3 -->
<div class="agent-card fade-in" style="animation-delay: 1.5s">
<div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden">
<div id="agent3" class="ascii-face"></div>
</div>
<div class="text-center">
<h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT CREATIVE</h3>
<p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Creative Systems Engineer</p>
</div>
</div>
<!-- Agent 4 -->
<div class="agent-card fade-in lg:col-start-2" style="animation-delay: 2s">
<div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden">
<div id="agent4" class="ascii-face"></div>
</div>
<div class="text-center">
<h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT DATA</h3>
<p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Predictive Data Analyst</p>
</div>
</div>
</div>
</section>
<script>
// Realistic ASCII Art Faces with dense patterns
const asciiFaces = [
// Agent 1
[
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++",
"********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************",
"********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************",
"*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************",
"*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************",
"*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################",
"***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################",
"***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############",
"#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############",
"#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############",
"#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############",
"%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############",
"%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########",
"######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%",
"######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%",
"#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########",
"######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########",
"######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########",
"******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######",
"******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*",
"*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**",
"++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***",
"++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**",
"++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***",
"++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***",
"++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**",
"+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*",
"*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*",
"++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###",
"+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##",
"++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#",
"*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#",
"**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%",
"#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%",
"##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@",
"****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@",
"===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@",
"---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@",
":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@",
"---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@",
"-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@",
"+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@",
"%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@",
"@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@",
"@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@",
"@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@",
"@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@",
"@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@",
"%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@",
"%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@",
"%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@",
"%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@",
"%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%",
"@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%",
"@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::"
],
// Agent 2
[
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++",
"********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************",
"********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************",
"*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************",
"*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************",
"*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################",
"***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################",
"***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############",
"#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############",
"#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############",
"#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############",
"%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############",
"%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########",
"######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%",
"######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%",
"#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########",
"######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########",
"######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########",
"******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######",
"******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*",
"*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**",
"++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***",
"++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**",
"++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***",
"++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***",
"++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**",
"+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*",
"*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*",
"++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###",
"+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##",
"++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#",
"*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#",
"**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%",
"#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%",
"##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@",
"****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@",
"===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@",
"---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@",
":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@",
"---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@",
"-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@",
"+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@",
"%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@",
"@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@",
"@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@",
"@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@",
"@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@",
"@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@",
"%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@",
"%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@",
"%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@",
"%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@",
"%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%",
"@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%",
"@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::"
],
// Agent 3
[
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++",
"********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************",
"********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************",
"*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************",
"*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************",
"*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*�%#################",
"***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################",
"***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############",
"#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############",
"#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############",
"#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############",
"%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############",
"%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########",
"######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%",
"######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%",
"#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########",
"######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########",
"######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########",
"******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######",
"******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*",
"*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**",
"++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***",
"++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**",
"++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***",
"++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***",
"++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**",
"+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*",
"*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*",
"++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###",
"+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##",
"++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#",
"*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#",
"**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%",
"#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%",
"##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@",
"****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@",
"===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@",
"---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@",
":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@",
"---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*�%@@@@@@@@@@@@",
"-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@",
"+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@",
"%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@",
"@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@",
"@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@",
"@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@",
"@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@",
"@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@",
"%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@",
"%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@",
"%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@",
"%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@",
"%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%",
"@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%",
"@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::"
],
// Agent 4
[
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++",
"********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++",
"********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++",
"********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************",
"********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************",
"*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************",
"*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************",
"*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################",
"***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################",
"***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############",
"#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############",
"#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############",
"#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############",
"%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############",
"%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########",
"%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########",
"######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%",
"######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%",
"#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########",
"######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########",
"######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########",
"******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######",
"******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*",
"*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**",
"++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***",
"++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**",
"++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***",
"++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***",
"++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**",
"+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*",
"*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*",
"++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###",
"+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##",
"++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#",
"*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#",
"**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%",
"#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%",
"##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@",
"****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@",
"===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@",
"---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@",
":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@",
"---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@",
"-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@",
"+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@",
"%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@",
"@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@",
"@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@",
"@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@",
"@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@",
"@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@",
"%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@",
"%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@",
"%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@",
"%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@",
"%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%",
"@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%",
"@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%",
"@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%",
"@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:",
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::"
]
];
// Typing effect for title
document.addEventListener('DOMContentLoaded', function() {
const title = document.getElementById('agents-title');
const text = "THE AGENTS";
let i = 0;
function typeWriter() {
if (i < text.length) {
title.innerHTML += text.charAt(i);
i++;
setTimeout(typeWriter, 150);
} else {
title.classList.remove('typing-effect');
}
}
title.classList.add('typing-effect');
setTimeout(typeWriter, 500);
// Initialize all agent ASCII faces
initAgentAscii('agent1', 0);
initAgentAscii('agent2', 1);
initAgentAscii('agent3', 2);
initAgentAscii('agent4', 3);
// Add breathing effect to ASCII faces
setInterval(function() {
const faces = document.querySelectorAll('.ascii-face');
faces.forEach(face => {
face.style.filter = `brightness(${0.9 + Math.random() * 0.2})`;
});
}, 2000);
});
function initAgentAscii(elementId, faceIndex) {
const element = document.getElementById(elementId);
const face = asciiFaces[faceIndex];
// Print ASCII face line by line
let currentLine = 0;
const printInterval = setInterval(function() {
if (currentLine < face.length) {
element.innerHTML += face[currentLine] + '<br>';
currentLine++;
} else {
clearInterval(printInterval);
}
}, 100);
}
</script>
<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=timoon811/agentstmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |