-
-
Notifications
You must be signed in to change notification settings - Fork 664
/
play.html
537 lines (499 loc) · 31.7 KB
/
play.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="The best math tutoring!" />
<meta name="keywords" content="Interstellar Official, Unblock Games, Interstellar, Interstellar V3, 1v1.LOL, Run 3, Gameboy Advanced Games, DS Games, proxy, web proxy, service workers, unblock websites, unblock chromebook, free web proxy, proxy list, proxy sites, un block chromebook, online proxy, proxy server, proxysite, proxy youtube, bypass securly, bypass iboss, bypass lightspeed filter, holy unblocker, chromebooks, titanium network, unblock youtube, youtube proxy, unblocked youtube, youtube unblocked, interstellar, chromebook,unblocked,unblocked games,html games,html5 games,flash games,flashplayer games,proxy,io">
<meta name="author" content="Bubbo" />
<title>Games - Interstellar</title>
<link rel="icon" type="image/x-icon" href="/media/favicon/favicon.ico">
<link rel="stylesheet" href="/css/games.css">
<link rel="stylesheet" href="/css/galaxy.css" />
<script src="/js/main.js"></script>
<link rel="stylesheet" href="/css/index.css" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6840529569014734"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WKJQ5QHQTJ');
</script>
</head>
<script src="/js/index.js"></script>
<!--NAVBAR-->
<style>
* {
padding: 0;
margin: 0;
}
body {
font-family: Arial, Tahoma, Serif;
color: #fff;
background-image: url(/media/home/background.png);
}
nav {
display: flex;
justify-content:space-between;
align-items: center;
padding: 1rem 2rem;
background: #000;
}
nav ul {
display: flex;
list-style: none;
}
nav li {
padding-left: 1rem;
}
nav a {
text-decoration: none;
color: #fff
}
/*
Extra small devices (phones, 600px and down)
*/
@media only screen and (max-width: 600px) {
nav {
flex-direction: column;
text-align: center;
}
nav ul {
flex-direction: column;
padding-top: 0.5rem;
}
nav li {
padding: 0.5rem 0;
}
}
/* Track */
::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 0px;
background-color: #000000;
}
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 0px;
background-image: url('rocket-ship.gif');
background-size: 20px;
background-position-y:top;
-webkit-box-shadow: inset 0 0 6px rgba(109, 109, 109, 0);
background-repeat: no-repeat;
}
</style>
<nav>
<h2>Interstellar</h2>
<ul>
<li><a href="/./">Home</a></li>
<li><a href="/play.html">Games</a></li>
<li><a href="/apps.html">Apps</a></li>
<li><a href="/math.html">Exploits</a></li>
<li><a href="/search.html">Proxies</a></li>
<li><a onclick="widgetBot()">Widgetbot</a></li>
</ul>
</nav>
<div>
<div class="center-screen">
<div class="container">
<div class="box">
<input type="text" id="gsearchbar" onkeyup="document.querySelectorAll('#glist>a').forEach(l=>l.style.display=l.textContent.toUpperCase().includes(this.value.toUpperCase().replace(/ /g,''))?'block':'none')" autocomplete="off" spellcheck="false" placeholder="Search...." />
<div id="glist">
<a href="/CHANGELOG.md">Check out the changes in the new update.</a>
<h2>Games</h2>
<a href="/new.html">New Games Page!!</a>
<h2>Emulator Games</h2>
<a href="/play/emulator/gba/launcher.html#alienhominid">Alien Hominid</a>
<a href="/play/emulator/gba/launcher.html#atari">Atari Anniversary Advance</a>
<a href="/play/emulator/gba/launcher.html#bomberman_max2blue">Bomberman Max 2 - Blue Advance</a>
<a href="/play/emulator/gba/launcher.html#bomberman_tournament">Bomberman Tournament</a>
<a href="/play/emulator/gba/launcher.html#bubblebobble">Bubble Bobble: Old and New</a>
<a href="/play/emulator/gba/launcher.html#cfpt">Connect Four (Perfection/Trouble)</a>
<a href="/play/emulator/gba/launcher.html#cbha">Crash Bandicoot - The Huge Adventure</a>
<a href="/play/emulator/gba/launcher.html#cbprr">Crash Bandicoot - Purple Riptos Rampage</a>
<a href="/play/emulator/gba/launcher.html#cb2">Crash Bandicoot 2 - N-Tranced</a>
<a href="/play/emulator/gba/launcher.html#cnk">Crash Nitro Kart</a>
<a href="/play/emulator/gba/launcher.html#croket1">Croket! - Yume no Banker Survival!</a>
<a href="/play/emulator/gba/launcher.html#croket2">Croket! 2 - Yami no Bank to Banqueen</a>
<a href="/play/emulator/gba/launcher.html#croket3">Croket! 3 - Granu Oukoku no Nazo</a>
<a href="/play/emulator/gba/launcher.html#croket4">Croket! 4 - Bank no Mori no Mamorigami</a>
<a href="/play/emulator/gba/launcher.html#digimon_racing">Digimon Racing</a>
<a href="/play/emulator/gba/launcher.html#dkkos">Donkey Kong - King Of Swing</a>
<a href="/play/emulator/gba/launcher.html#dkc">Donkey Kong Country</a>
<a href="/play/emulator/gba/launcher.html#dkc2">Donkey Kong Country 2</a>
<a href="/play/emulator/gba/launcher.html#dkc3">Donkey Kong Country 3</a>
<a href="/play/emulator/gba/launcher.html#dbz_supersonic">Dragon Ball Z - Supersonic Warriors</a>
<a href="/play/emulator/gba/launcher.html#drilldozer">Drill Dozer</a>
<a href="/play/emulator/gba/launcher.html#dmpl">Dr. Mario + Puzzle League</a>
<a href="/play/emulator/gba/launcher.html#dna">Duke Nukem Advance</a>
<a href="/play/emulator/gba/launcher.html#dnd">Dungeons And Dragons - Eye Of The Beholder</a>
<a href="/play/emulator/gba/launcher.html#earthwormjim">Earthworm Jim</a>
<a href="/play/emulator/gba/launcher.html#earthwormjim2">Earthworm Jim 2</a>
<a href="/play/emulator/gba/launcher.html#ffeud">Family Feud</a>
<a href="/play/emulator/gba/launcher.html#fan4">Fantastic 4</a>
<a href="/play/emulator/gba/launcher.html#fan4fo">Fantastic 4 - Flame On</a>
<a href="/play/emulator/gba/launcher.html#fifa4">FIFA Football 2004</a>
<a href="/play/emulator/gba/launcher.html#fifa5">FIFA Football 2005</a>
<a href="/play/emulator/gba/launcher.html#fifa6">FIFA 06</a>
<a href="/play/emulator/gba/launcher.html#fifawc6">FIFA World Cup 2006</a>
<a href="/play/emulator/gba/launcher.html#fifa7">FIFA 2007</a>
<a href="/play/emulator/gba/launcher.html#ff1and2">Final Fantasy 1 & 2 Advance</a>
<a href="/play/emulator/gba/launcher.html#ff4S">Final Fantasy IV Advance (Sound Restoration Mod)</a>
<a href="/play/emulator/gba/launcher.html#ff6">Final Fantasy VI Advance</a>
<a href="/play/emulator/gba/launcher.html#final_fantasy_tactics">Final Fantasy Tactics Advance</a>
<a href="/play/emulator/gba/launcher.html#fire_emblem">Fire Emblem</a>
<a href="/play/emulator/gba/launcher.html#fr3">Ford Racing 3</a>
<a href="/play/emulator/gba/launcher.html#frogger1">Frogger Advance - The Great Quest</a>
<a href="/play/emulator/gba/launcher.html#frogger2">Frogger's Adventures - Temple of the Frog</a>
<a href="/play/emulator/gba/launcher.html#frogger3">Frogger's Adventures 2 - The Lost Wand</a>
<a href="/play/emulator/gba/launcher.html#fzero_gp">F-Zero - GP Legend</a>
<a href="/play/emulator/gba/launcher.html#fzero_max">F-Zero - Maximum Velocity</a>
<a href="/play/emulator/gba/launcher.html#goldensun">Golden Sun</a>
<a href="/play/emulator/gba/launcher.html#gamewatch4">Game & Watch Gallery 4</a>
<a href="/play/emulator/gba/launcher.html#gta">Grand Theft Auto Advance</a>
<a href="/play/emulator/gba/launcher.html#gunstar_super_heroes">Gunstar Super Heroes</a>
<a href="/play/emulator/gba/launcher.html#hamtaro_heartbreak">Hamtaro - Ham-Ham Heartbreak</a>
<a href="/play/emulator/gba/launcher.html#hmfmt">Harvest Moon - Friends Of Mineral Town</a>
<a href="/play/emulator/gba/launcher.html#hmmfmt">Harvest Moon - More Friends Of Mineral Town</a>
<a href="/play/emulator/gba/launcher.html#iridion">Iridion 3D</a>
<a href="/play/emulator/gba/launcher.html#jca">Jackie Chan Adventures - Legend Of The Dark Hand</a>
<a href="/play/emulator/gba/launcher.html#jbn">James Bond 007 - Nightfire</a>
<a href="/play/emulator/gba/launcher.html#jp3dna">Jurassic Park III - DNA Factor</a>
<a href="/play/emulator/gba/launcher.html#jp3ia">Jurassic Park III - Island Attack</a>
<a href="/play/emulator/gba/launcher.html#jp3pb">Jurassic Park III - Park Builder</a>
<a href="/play/emulator/gba/launcher.html#jlifa">Justice League - Injustice For All</a>
<a href="/play/emulator/gba/launcher.html#jlc">Justice League Chronicles</a>
<a href="/play/emulator/gba/launcher.html#jlhth">Justice League Heros - The Flash</a>
<a href="/play/emulator/gba/launcher.html#khcom">Kingdom Hearts - Chain Of Memories</a>
<a href="/play/emulator/gba/launcher.html#kirbymirror">Kirby & The Amazing Mirror</a>
<a href="/play/emulator/gba/launcher.html#kirbynightmare">Kirby: Nightmare in Dreamland</a>
<a href="/play/emulator/gba/launcher.html#lb">Lego Bionicle</a>
<a href="/play/emulator/gba/launcher.html#li2">Lego Island 2</a>
<a href="/play/emulator/gba/launcher.html#lr2">Lego Racers 2</a>
<a href="/play/emulator/gba/launcher.html#lsw">Lego Star Wars</a>
<a href="/play/emulator/gba/launcher.html#lotrtta">Lord Of The Rings: The Third Age</a>
<a href="/play/emulator/gba/launcher.html#lotr2">Lord Of The Rings: The Two Towers</a>
<a href="/play/emulator/gba/launcher.html#lotr3">Lord Of The Rings: The Return Of The King</a>
<a href="/play/emulator/gba/launcher.html#superstar">Mario & Luigi: Superstar Saga</a>
<a href="/play/emulator/gba/launcher.html#mariokart">Mario Kart: Super Circuit</a>
<a href="/play/emulator/gba/launcher.html#marioparty">Mario Party Advance</a>
<a href="/play/emulator/gba/launcher.html#mariopinball">Mario Pinball Land</a>
<a href="/play/emulator/gba/launcher.html#mvsdk">Mario V.S. Donkey Kong</a>
<a href="/play/emulator/gba/launcher.html#megamanbass">Megaman & Bass</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle1">Megaman Battle Network 1</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle2">Megaman Battle Network 2</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle3_blue">Megaman Battle Network 3 Blue</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle4_blue">Megaman Battle Network 4 Blue Moon</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle4_red">Megaman Battle Network 4 Red Sun</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle5">Megaman Battle Network 5 Team Protoman</a>
<a href="/play/emulator/gba/launcher.html#megaman_battle6">Megaman Battle Network 6 Cybeast Falzar</a>
<a href="/play/emulator/gba/launcher.html#megaman_zero1">Megaman Zero</a>
<a href="/play/emulator/gba/launcher.html#megaman_zero2">Megaman Zero 2</a>
<a href="/play/emulator/gba/launcher.html#megaman_zero3">Megaman Zero 3</a>
<a href="/play/emulator/gba/launcher.html#megaman_zero4">Megaman Zero 4</a>
<a href="/play/emulator/gba/launcher.html#metalslug">Metal Slug Advance</a>
<a href="/play/emulator/gba/launcher.html#metroid_fusion">Metroid Fusion</a>
<a href="/play/emulator/gba/launcher.html#mzm">Metroid Zero Mission</a>
<a href="/play/emulator/gba/launcher.html#momotarou_dentetsu">Momotarou Dentetsu G Gold Deck wo Tsukure!</a>
<a href="/play/emulator/gba/launcher.html#monopoly">Monopoly</a>
<a href="/play/emulator/gba/launcher.html#monster_force">Monster Force</a>
<a href="/play/emulator/gba/launcher.html#mortal_kombat">Mortal Kombat Advance</a>
<a href="/play/emulator/gba/launcher.html#m3">Mother 3</a>
<a href="/play/emulator/gba/launcher.html#nbaj">NBA Jam 2002</a>
<a href="/play/emulator/gba/launcher.html#nfsu">Need For Speed - Underground</a>
<a href="/play/emulator/gba/launcher.html#nfsu2">Need For Speed - Underground 2</a>
<a href="/play/emulator/gba/launcher.html#nesgh1">NES Greatest Hits 1</a>
<a href="/play/emulator/gba/launcher.html#onepiece">One Piece</a>
<a href="/play/emulator/gba/launcher.html#pmc">Pacman Collection</a>
<a href="/play/emulator/gba/launcher.html#pmpa">Pacman Pinball Advance</a>
<a href="/play/emulator/gba/launcher.html#pacman_world">Pacman World</a>
<a href="/play/emulator/gba/launcher.html#pacman_world2">Pacman World 2</a>
<a href="/play/emulator/gba/launcher.html#pokemonemerald">Pokemon Emerald</a>
<a href="/play/emulator/gba/launcher.html#pokemonek">Pokemon Emerald (Kaizo Mod)</a>
<a href="/play/emulator/gba/launcher.html#eprp">Pokemon Emerald (Party Randomizer Plus Mod)</a>
<a href="/play/emulator/gba/launcher.html#pokemonflorasky">Pokemon Flora Sky (Emerald Mod)</a>
<a href="/play/emulator/gba/launcher.html#pokemongreen">Pokemon Leaf Green</a>
<a href="/play/emulator/gba/launcher.html#pokemonred">Pokemon Fire Red</a>
<a href="/play/emulator/gba/launcher.html#gaia">Pokemon Gaia (Fire Red Mod)</a>
<a href="/play/emulator/gba/launcher.html#prs">Pokemon Rocket Strike (Fire Red Mod)</a>
<a href="/play/emulator/gba/launcher.html#pokewb">Pokemon Water Blue (Fire Red Mod)</a>
<a href="/play/emulator/gba/launcher.html#mysteryred">Pokemon Mystery Dungeon Red</a>
<a href="/play/emulator/gba/launcher.html#pokemonruby">Pokemon Ruby</a>
<a href="/play/emulator/gba/launcher.html#pokemonlp">Pokemon Light Platinum (Ruby Mod)</a>
<a href="/play/emulator/gba/launcher.html#pokemonsapphire">Pokemon Sapphire</a>
<a href="/play/emulator/gba/launcher.html#pprs">Pokemon Pinball - Ruby & Sapphire</a>
<a href="/play/emulator/gba/launcher.html#gba_video_pokemon_1">Pokemon Video Show Pak 1</a>
<a href="/play/emulator/gba/launcher.html#gba_video_pokemon_2">Pokemon Video Show Pak 2</a>
<a href="/play/emulator/gba/launcher.html#gba_video_pokemon_3">Pokemon Video Show Pak 3</a>
<a href="/play/emulator/gba/launcher.html#gba_video_pokemon_4">Pokemon Video Show Pak 4</a>
<a href="/play/emulator/gba/launcher.html#puyopop">Puyo Pop</a>
<a href="/play/emulator/gba/launcher.html#ppf">Puyo Pop Fever</a>
<a href="/play/emulator/gba/launcher.html#sag">Sega Arcade Gallery</a>
<a href="/play/emulator/gba/launcher.html#rsrs">Rainbow Six - Rogue Spear</a>
<a href="/play/emulator/gba/launcher.html#r3hh">Rayman 3 - Hoodlum Havoc</a>
<a href="/play/emulator/gba/launcher.html#ra">Rayman Advance</a>
<a href="/play/emulator/gba/launcher.html#rtpl">Rivera - The Promised Land</a>
<a href="/play/emulator/gba/launcher.html#sc">Sim City 2000</a>
<a href="/play/emulator/gba/launcher.html#sonic_advance">Sonic Advance</a>
<a href="/play/emulator/gba/launcher.html#sonic_advance2">Sonic Advance 2</a>
<a href="/play/emulator/gba/launcher.html#sonic_advance3">Sonic Advance 3</a>
<a href="/play/emulator/gba/launcher.html#sonicbattle">Sonic Battle</a>
<a href="/play/emulator/gba/launcher.html#sonicpinball">Sonic Pinball</a>
<a href="/play/emulator/gba/launcher.html#sthg">Sonic The Hedgehog - Genesis</a>
<a href="/play/emulator/gba/launcher.html#spyro_adventure">Spyro Adventure</a>
<a href="/play/emulator/gba/launcher.html#spyro_ice">Spyro: Season of Ice</a>
<a href="/play/emulator/gba/launcher.html#spyro_flame">Spyro 2: Season of Flame</a>
<a href='/play/sm64/index.html'>Super Mario 64</a>
<a href='/play/emulator/n64/sm64'>Super Mario 64 JS</a>
<a href="/play/emulator/gba/launcher.html#supermarioadvance">Super Mario Advance</a>
<a href="/play/emulator/gba/launcher.html#supermarioadvance2">Super Mario Advance 2</a>
<a href="/play/emulator/gba/launcher.html#supermarioadvance3">Super Mario Advance 3</a>
<a href="/play/emulator/gba/launcher.html#supermarioadvance4">Super Mario Advance 4</a>
<a href="/play/emulator/gba/launcher.html#sma4+">Super Mario Advance 4 - Wii U Version</a>
<a href="/play/emulator/gba/launcher.html#supermonkeyballjr">Super Monkey Ball Jr</a>
<a href="/play/emulator/gba/launcher.html#super_street_fighter_2_turbo_revival">Super Street Fighter II: Turbo Revival</a>
<a href="/play/emulator/gba/launcher.html#super_street_fighter_3_alpha">Super Street Fighter III: Alpha</a>
<a href="/play/emulator/gba/launcher.html#tales_of_phantasia">Tales of Phantasia</a>
<a href="/play/emulator/gba/launcher.html#tak2_staff_of_dreams">Tak 2: The Staff of Dreams</a>
<a href="/play/emulator/gba/launcher.html#tmnt">Teenage Mutant Ninja Turtles</a>
<a href="/play/emulator/gba/launcher.html#tetris_worlds">Tetris Worlds</a>
<a href="/play/emulator/gba/launcher.html#lyp">The Game Of Life (Yahtzee/Payday)</a>
<a href="/play/emulator/gba/launcher.html#zelda_past">The Legend of Zelda: A Link to the Past</a>
<a href="/play/emulator/gba/launcher.html#zelda_minish">The Legend of Zelda: The Minish Cap</a>
<a href="/play/emulator/gba/launcher.html#marioland">The Mario Land Collection</a>
<a href="/play/emulator/gba/launcher.html#pokemongb">The Pokemon Collection</a>
<a href="/play/emulator/gba/launcher.html#sims_bustin_out">The Sims: Bustin Out</a>
<a href="/play/emulator/gba/launcher.html#simpsons">The Simpsons: Road Rage</a>
<a href="/play/emulator/gba/launcher.html#thas">Tony Hawk's American Sk8land</a>
<a href="/play/emulator/gba/launcher.html#thps2">Tony Hawk's Pro Skater 2</a>
<a href="/play/emulator/gba/launcher.html#thps3">Tony Hawk's Pro Skater 3</a>
<a href="/play/emulator/gba/launcher.html#thps4">Tony Hawk's Pro Skater 4</a>
<a href="/play/emulator/gba/launcher.html#tggtc">Top Gear GT Championship</a>
<a href="/play/emulator/gba/launcher.html#tgr">Top Gear Rally</a>
<a href="/play/emulator/gba/launcher.html#turok_evolution">Turok Evolution</a>
<a href="/play/emulator/gba/launcher.html#ty2">Ty the Tasmanian Tiger 2 - Bush Rescue</a>
<a href="/play/emulator/gba/launcher.html#ty3">Ty the Tasmanian Tiger 3 - Night of the Quinkan</a>
<a href="/play/emulator/gba/launcher.html#unsb">Uno + Skip-Bo</a>
<a href="/play/emulator/gba/launcher.html#warioland4">Wario Land 4</a>
<a href="/play/emulator/gba/launcher.html#wario_ware">Wario Ware Inc</a>
<a href="/play/emulator/gba/launcher.html#ynfa">Yggdra Union - We'll Never Fight Alone</a>
<h2>Flash Games</h2>
<a href="/play/flash/?swf=abobosbigadventure.swf">Abobos Big Adventure</a>
<a href="/play/flash/?swf=achievementunlocked.swf">Achievement Unlocked</a>
<a href="/play/flash/?swf=achievementunlocked2.swf">Achievement Unlocked 2</a>
<a href="/play/flash/?swf=achievementunlocked3.swf">Achievement Unlocked 3</a>
<a href="/play/flash/?swf=actionturnip.swf">Action Turnip</a>
<a href="/play/flash/?swf=adaran.swf">Adaran</a>
<a href="/play/flash/?swf=adrenaline.swf">Adrenaline</a>
<a href="/play/flash/?swf=americanracing1.swf">American Racing 1</a>
<a href="/play/flash/?swf=americanracing2.swf">American Racing 2</a>
<a href="/play/flash/?swf=arkandianrevenant.swf">Arkandian Revenant</a>
<a href="/play/flash/?swf=armyofages.swf">Army Of Ages</a>
<a href="/play/flash/?swf=awesomecars.swf">Awesome Cars</a>
<a href="/play/flash/?swf=awesomeplanes.swf">Awesome Planes</a>
<a href="/play/flash/?swf=battlepanic.swf">Battle Panic</a>
<a href="/play/flash/?swf=bloonsplayerpack2.swf">Bloons Player Pack 2</a>
<a href="/play/flash/?swf=bloonsplayerpack3.swf">Bloons Player Pack 3</a>
<a href="/play/flash/?swf=bloonsplayerpack4.swf">Bloons Player Pack 4</a>
<a href="/play/flash/?swf=bloonsplayerpack5.swf">Bloons Player Pack 5</a>
<a href="/play/flash/?swf=bobtherobber.swf">Bob The Robber</a>
<a href="/play/flash/?swf=boombot2.swf">Boombot 2</a>
<a href="/play/flash/?swf=boxhead2play.swf">Boxhead 2Play</a>
<a href="/play/flash/?swf=bubbletanks2.swf">Bubble Tanks 2</a>
<a href="/play/flash/?swf=bulletbill.swf">Bullet Bill</a>
<a href="/play/flash/?swf=bullettimefighting.swf">Bullet Time Fighting</a>
<a href="/play/flash/?swf=burritobison.swf">Burrito Bison</a>
<a href="/play/flash/?swf=burritobisonrevenge.swf">Burrito Bison Revenge</a>
<a href="/play/flash/?swf=cactusmccoy.swf">Cactus McCoy</a>
<a href="/play/flash/?swf=cactusmccoy2.swf">Cactus McCcoy 2</a>
<a href="/play/flash/?swf=cargobridge.swf">Cargo Bridge</a>
<a href="/play/flash/?swf=causality.swf">Causality</a>
<a href="/play/flash/?swf=cannonbasketball2.swf">Cannon Basketball 2</a>
<a href="/play/flash/?swf=chibiknight.swf">Chibiknight</a>
<a href="/play/flash/?swf=clickerheroes.swf">Clicker Heroes</a>
<a href="/play/flash/?swf=computerbashing.swf">Computer Bashing</a>
<a href="/play/flash/?swf=crushthecastle.swf">Crush The Castle</a>
<a href="/play/flash/?swf=crushthecastle2.swf">Crush The Castle 2</a>
<a href="/play/flash/?swf=cubefield.swf">Cubefield - Flash</a>
<a href="/play/flash/?swf=cyclomaniacs2.swf">Cyclomaniacs 2</a>
<a href="/play/flash/?swf=diggy.swf">Diggy</a>
<a href="/play/flash/?swf=doodledefender.swf">Doodle Defender</a>
<a href="/play/flash/?swf=doom.swf">Doom</a>
<a href="/play/flash/?swf=donkeykong.swf">Donkey Kong</a>
<a href="/play/flash/?swf=dontshootthepuppy.swf">Dont Shoot The Puppy</a>
<a href="/play/flash/?swf=dragracing.swf">Drag Racing</a>
<a href="/play/flash/?swf=ducklife.swf">Duck Life 1 - Flash</a>
<a href="/play/flash/?swf=ducklife2.swf">Duck Life 2 - Flash</a>
<a href="/play/flash/?swf=ducklife3.swf">Duck Life 3 - Flash</a>
<a href="/play/flash/?swf=ducklife4.swf">Duck Life 4 - Flash</a>
<a href="/play/flash/?swf=earntodie.swf">Earn To Die</a>
<a href="/play/flash/?swf=earntodie2.swf">Earn To Die 2</a>
<a href="/play/flash/?swf=earntodiesuperwheel.swf">Earn To Die Superwheel</a>
<a href="/play/flash/?swf=electricman2.swf">Electricman 2</a>
<a href="/play/flash/?swf=elephantquest.swf">Elephant Quest</a>
<a href="/play/flash/?swf=epicbattlefantasy3.swf">Epic Battle Fantasy 3</a>
<a href="/play/flash/?swf=epiccomboredux.swf">Epic Combo Redux</a>
<a href="/play/flash/?swf=exitpath.swf">Exitpath</a>
<a href="/play/flash/?swf=flight.swf">Flight</a>
<a href="/play/flash/?swf=factoryballs.swf">Factory Balls</a>
<a href="/play/flash/?swf=factoryballs2.swf">Factory Balls 2</a>
<a href="/play/flash/?swf=factoryballs3.swf">Factory Balls 3</a>
<a href="/play/flash/?swf=factoryballs4.swf">Factory Balls 4</a>
<a href="/play/flash/?swf=fancypantsadventure.swf">Fancy Pants Adventure</a>
<a href="/play/flash/?swf=fancypantsadventure2.swf">Fancy Pants Adventure 2</a>
<a href="/play/flash/?swf=fancypantsadventure3.swf">Fancy Pants Adventure 3</a>
<a href="/play/flash/?swf=flashflightsimulator.swf">Flash Flight Simulator</a>
<a href="/play/flash/?swf=fracuum.swf">Fracuum</a>
<a href="/play/flash/?swf=freerider2.swf">Free Rider 2</a>
<a href="/play/flash/?swf=getontop.swf">Get On Top</a>
<a href="/play/flash/?swf=giveuprobot.swf">Give Up Robot</a>
<a href="/play/flash/?swf=giveuprobot2.swf">Give Up Robot 2</a>
<a href="/play/flash?swf=gmayhem2.swf">Gun Mayhem 2</a>
<a href="/play/flash/?swf=hanger.swf">Hanger</a>
<a href="/play/flash/?swf=hanger2.swf">Hanger 2</a>
<a href="/play/flash/?swf=happywheels.swf">Happy Wheels</a>
<a href="/play/flash/?swf=hobo.swf">Hobo</a>
<a href="/play/flash/?swf=hobo2.swf">Hobo 2</a>
<a href="/play/flash/?swf=hobo3.swf">Hobo 3</a>
<a href="/play/flash/?swf=hobo4.swf">Hobo 4</a>
<a href="/play/flash/?swf=hobo5.swf">Hobo 5</a>
<a href="/play/flash/?swf=hobo6.swf">Hobo 6</a>
<a href="/play/flash/?swf=hobo7.swf">Hobo 7</a>
<a href="/play/flash/?swf=houseofwolves.swf">House Of Wolves</a>
<a href="/play/flash/?swf=interactivebuddy.swf">Interactive Buddy</a>
<a href="/play/flash/?swf=jacksmith.swf">Jacksmith</a>
<a href="/play/flash/?swf=jellytruck.swf">Jelly Truck</a>
<a href="/play/flash/?swf=johnnyupgrade.swf">Johnny Upgrade</a>
<a href="/play/flash/?swf=jumpix2.swf">Jumpix 2</a>
<a href="/play/flash/?swf=knightmaretower.swf">Knightmare Tower</a>
<a href="/play/flash/?swf=learn2fly.swf">Learn 2 Fly</a>
<a href="/play/flash/?swf=learn2fly2.swf">Learn 2 Fly 2</a>
<a href="/play/flash/?swf=learn2fly3.swf">Learn 2 Fly3 </a>
<a href="/play/flash/?swf=magnetface.swf">Magnet Face</a>
<a href="/play/flash/?swf=mariocombat.swf">Mario Combat</a>
<a href="/play/flash/?swf=marioracingtournament.swf">Mario Racing Tournament</a>
<a href="/play/flash/?swf=meatboy.swf">Meatboy</a>
<a href="/play/flash/?swf=megamanprojectx.swf">Megaman Project X</a>
<a href="/play/flash/?swf=metroidelements.swf">Metroid Elements</a>
<a href="/play/flash/?swf=mineblocks.swf">MineBlocks</a>
<a href="/play/flash/?swf=minesweeper.swf">Minesweeper</a>
<a href="/play/flash/?swf=mirrorsedge.swf">Mirrors Edge</a>
<a href="/play/flash/?swf=moneymovers.swf">Money Movers</a>
<a href="/play/flash/?swf=moneymovers3.swf">Money Movers 3</a>
<a href="/play/flash/?swf=motherload.swf">Motherload</a>
<a href="/play/flash/?swf=motox3m.swf">Moto X3M</a>
<a href="/play/flash/?swf=multitask.swf">Multitask</a>
<a href="/play/flash/?swf=mutilateadoll2.swf">Mutilate A Doll 2</a>
<a href="/play/flash/?swf=myangel.swf">Myangel</a>
<a href="/play/flash/?swf=nanotube.swf">Nanotube</a>
<a href="/play/flash/?swf=newgroundsrumble.swf">Newgrounds Rumble</a>
<a href="/play/flash/?swf=ngame.swf">Ngame</a>
<a href="/play/flash/?swf=nitromemustdie.swf">Nitrome Must Die</a>
<a href="/play/flash/?swf=nucleus.swf">Nucleus</a>
<a href="/play/flash/?swf=nv2.swf">Nv2</a>
<a href="/play/flash/?swf=nyancatlostinspace.swf">Nyan Cat Lost In Space</a>
<a href="/play/flash/?swf=offroaders.swf">Offroaders</a>
<a href="/play/flash/?swf=onemanarmy2.swf">One Man Army 2</a>
<a href="/play/flash/?swf=outofthisworld.swf">Out Of This World</a>
<a href="/play/flash/?swf=pacman.swf">Pacman</a>
<a href="/play/flash/?swf=pandemic.swf">Pandemic</a>
<a href="/play/flash/?swf=pandemic2.swf">Pandemic 2</a>
<a href="/play/flash/?swf=papalouie.swf">Papa Louie</a>
<a href="/play/flash/?swf=papalouie2.swf">Papa Louie 2</a>
<a href="/play/flash/?swf=papalouie3.swf">Papa Louie 3</a>
<a href="/play/flash/?swf=picosschool.swf">Picos School</a>
<a href="/play/flash/?swf=picosschool2.swf">Picos School 2</a>
<a href="/play/flash/?swf=pirates.swf">Pirates</a>
<a href="/play/flash/?swf=polarjump.swf">Polar Jump</a>
<a href="/play/flash/?swf=portal.swf">Portal</a>
<a href="/play/flash/?swf=portal2d.swf">Portal 2D</a>
<a href="/play/flash/?swf=quadrobarreldefence.swf">Quadro Barrel Defence</a>
<a href="/play/flash/?swf=qubeythecube.swf">Qubey The Cube</a>
<a href="/play/flash/?swf=qwop.swf">Qwop</a>
<a href="/play/flash/?swf=raftwars.swf">Raft Wars</a>
<a href="/play/flash/?swf=raftwars2.swf">Raft Wars 2</a>
<a href="/play/flash/?swf=raze.swf">Raze</a>
<a href="/play/flash/?swf=redball.swf">Red Ball</a>
<a href="/play/flash/?swf=redball2.swf">Red Ball 2</a>
<a href="/play/flash/?swf=redball4.swf">Red Ball 4</a>
<a href="/play/flash/?swf=redball4v2.swf">Red Ball 4v2</a>
<a href="/play/flash/?swf=redball4v3.swf">Red Ball 4v3</a>
<a href="/play/flash/?swf=redshift.swf">Red Shift</a>
<a href="/play/flash/?swf=revenant2.swf">Revenant 2</a>
<a href="/play/flash/?swf=riddleschool1.swf">Riddle School 1</a>
<a href="/play/flash/?swf=riddleschool2.swf">Riddle School 2</a>
<a href="/play/flash/?swf=riddleschool3.swf">Riddle School 3</a>
<a href="/play/flash/?swf=riddleschool4.swf">Riddle School 4</a>
<a href="/play/flash/?swf=riddleschool5.swf">Riddle School 5</a>
<a href="/play/flash/?swf=riddletransfer.swf">Riddle Transfer</a>
<a href="/play/flash/?swf=riddletransfer2.swf">Riddle Transfer 2</a>
<a href="/play/flash/?swf=run2.swf">Run 2</a>
<a href="/play/flash/?swf=run3.swf">Run 3</a>
<a href="/play/flash/?swf=saszombieassault3.swf">SAS: Zombie Assault 3</a>
<a href="/play/flash/?swf=sentryknight.swf">Sentry Knight</a>
<a href="/play/flash/?swf=shoppingcarthero3.swf">Shopping Cart Hero 3</a>
<a href="/play/flash/?swf=siftheads.swf">Sift Heads</a>
<a href="/play/flash/?swf=siftheads2.swf">Sift Heads 2</a>
<a href="/play/flash/?swf=siftheads3.swf">Sift Heads 3</a>
<a href="/play/flash/?swf=siftheads4.swf">Sift Heads 4</a>
<a href="/play/flash/?swf=siftheads5.swf">Sift Heads 5</a>
<a href="/play/flash/?swf=sniperassassin4.swf">Sniper Assassin 4</a>
<a href="/play/flash/?swf=sportsheadsfootball.swf">Sports Heads Football</a>
<a href="/play/flash/?swf=sportsheadsracing.swf">Sports Heads Racing</a>
<a href="/play/flash/?swf=sportsheadstennis.swf">Sports Heads Tennis</a>
<a href="/play/flash/?swf=stickrpg.swf">Stick RPG</a>
<a href="/play/flash/?swf=stickrun2.swf">Stick Run 2</a>
<a href="/play/flash/?swf=stickwar.swf">Stick War</a>
<a href="/play/flash/?swf=strikeforceheroes2.swf">Strike Force Heroes 2</a>
<a href="/play/flash/?swf=strikeforcekittylaststand.swf">Strike Force Kitty Last Stand</a>
<a href="/play/flash/?swf=sugarsugar.swf">Sugar Sugar</a>
<a href="/play/flash/?swf=sugarsugar2.swf">Sugar Sugar 2</a>
<a href="/play/flash/?swf=sugarsugar3.swf">Sugar Sugar 3</a>
<a href="/play/flash/?swf=superd.swf">Superd</a>
<a href="/play/flash/?swf=superfighters.swf">Super Fighters</a>
<a href="/play/flash/?swf=supermario63.swf">Super Mario 63</a>
<a href="/play/flash/?swf=supermarioflash.swf">Super Mario Flash</a>
<a href="/play/flash/?swf=supermarioflash2.swf">Super Mario Flash 2</a>
<a href="/play/flash/?swf=supersmashflash.swf">Super Smash Flash</a>
<a href="/play/flash/?swf=swordsandsandals2.swf">Swords And Sandals 2</a>
<a href="/play/flash/?swf=tacticalassassin.swf">Tactical Assassin</a>
<a href="/play/flash/?swf=tanks.swf">Tanks</a>
<a href="/play/flash/?swf=tanktrouble.swf">Tank Trouble</a>
<a href="/play/flash/?swf=tetris.swf">Tetris</a>
<a href="/play/flash/?swf=thebindingofisaac.swf">The Binding Of Isaac</a>
<a href="/play/flash/?swf=thegame.swf">The Game</a>
<a href="/play/flash/?swf=theimpossiblequiz.swf">The Impossible Quiz</a>
<a href="/play/flash/?swf=theimpossiblequiz2.swf">The Impossible Quiz 2</a>
<a href="/play/flash/?swf=theworldshardestgame2.swf">The Worlds Hardest Game 2</a>
<a href="/play/flash/?swf=thingthingarena.swf">Thing Thing Arena</a>
<a href="/play/flash/?swf=thisistheonlylevel.swf">This Is The Only Level</a>
<a href="/play/flash/?swf=tosstheturtle.swf">Toss The Turtle</a>
<a href="/play/flash/?swf=truckloader4.swf">Truck Loader 4</a>
<a href="/play/flash/?swf=ultimateflashsonic.swf">Ultimate Flash Sonic</a>
<a href="/play/flash/?swf=ultimatetactics.swf">Ultimatet Tactics</a>
<a href="/play/flash/?swf=unrealflash.swf">Unreal Flash</a>
<a href="/play/flash/?swf=vex.swf">Vex - Flash</a>
<a href="/play/flash/?swf=vex2.swf">Vex 2 - Flash</a>
<a href="/play/flash/?swf=vex3.swf">Vex 3 - Flash</a>
<a href="/play/flash/?swf=warfare1917.swf">Warfare 1917</a>
<a href="/play/flash/?swf=warfare1944.swf">Warfare 1944</a>
<a href="/play/flash/?swf=warp.swf">Warp</a>
<a href="/play/flash/?swf=xenos.swf">Xenos</a>
<a href="/play/flash/?swf=xtremecliffdiving.swf">Xtreme Cliff Diving</a>
<a href="/play/flash/?swf=yearofthesnake.swf">Year Of The Snake</a>
<a href="/play/flash/?swf=yuriusshouseofspooks.swf">Yuriuss House Of Spooks</a>
<a href="/play/flash/?swf=zombiealienparasites.swf">Zombie Alien Parasites</a>
</div>
</div>
</div>
</div>
<script src="/js/index.js"></script>
<script src='https://cdn.jsdelivr.net/npm/@widgetbot/crate@3' async defer>
new Crate({
server: '938658733788131399', // Interstellar・Network
channel: '1001129016457166878' // #school-chat
})
</script>
</html>