-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgc.html
More file actions
2523 lines (2523 loc) · 126 KB
/
Copy pathgc.html
File metadata and controls
2523 lines (2523 loc) · 126 KB
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<script src="platform.js"></script>
<h3 id="Redump" class="section-header">Redump</h3>
<script>bgImage("gc")
fileNames = [
"007 - Agent Under Fire (Europe).zip",
"007 - Agent Under Fire (USA) (Beta) (2002-01-25).zip",
"007 - Agent Under Fire (USA) (Rev 1).zip",
"007 - Agent Under Fire (USA).zip",
"007 - Agent im Kreuzfeuer (Germany).zip",
"007 - Alles oder Nichts (Germany).zip",
"007 - Bons Baisers de Russie (France).zip",
"007 - Espion pour Cible (France).zip",
"007 - Everything or Nothing (Europe) (En,It,Nl,Sv).zip",
"007 - Everything or Nothing (Japan).zip",
"007 - Everything or Nothing (USA).zip",
"007 - From Russia with Love (Europe).zip",
"007 - From Russia with Love (USA).zip",
"007 - Liebesgruesse aus Moskau (Germany).zip",
"007 - Nightfire (Europe) (En,It,Nl,Sv).zip",
"007 - Nightfire (France).zip",
"007 - Nightfire (Germany).zip",
"007 - Nightfire (Spain).zip",
"007 - Nightfire (USA).zip",
"007 - Quitte ou Double (France).zip",
"007 - Todo o Nada (Spain).zip",
"1080 Avalanche (Europe) (En,Fr,De,Es,It).zip",
"1080 Avalanche (Korea).zip",
"1080 Avalanche (USA).zip",
"1080 Silver Storm (Japan).zip",
"18 Wheeler - American Pro Trucker (Europe) (En,Fr,De,Es).zip",
"18 Wheeler - American Pro Trucker (Japan).zip",
"18 Wheeler - American Pro Trucker (USA) (Beta) (2001-11-12).zip",
"18 Wheeler - American Pro Trucker (USA).zip",
"2 Games in 1 - Bob L'eponge - Le Film + Tak 2 - Le Sceptre des Reves (France) (Disc 2) (Tak 2 - Le Sceptre des Reves).zip",
"2 Games in 1 - Bob L'eponge - Le Film + Tak 2 - Le Sceptre des Reves (France) (Fr,Nl) (Disc 1) (Bob L'eponge - Le Film).zip",
"2 Games in 1 - Disney-Pixar Die Unglaublichen + Disney-Pixar Findet Nemo (Germany) (Disc 1).zip",
"2 Games in 1 - Disney-Pixar Die Unglaublichen + Disney-Pixar Findet Nemo (Germany) (Disc 2).zip",
"2 Games in 1 - Disney-Pixar Les Indestructibles + Disney-Pixar Le Monde de Nemo (France) (Disc 1) (Les Indestructibles).zip",
"2 Games in 1 - Disney-Pixar Les Indestructibles + Disney-Pixar Le Monde de Nemo (France) (Disc 2) (Le Monde de Nemo).zip",
"2 Games in 1 - Nickelodeon SpongeBob Schwammkopf - Der Film + Nickelodeon SpongeBob Schwammkopf - Schlacht um Bikini Bottom (Germany) (Disc 1).zip",
"2 Games in 1 - Nickelodeon SpongeBob Schwammkopf - Der Film + Nickelodeon SpongeBob Schwammkopf - Schlacht um Bikini Bottom (Germany) (Disc 2).zip",
"2 Games in 1 - Nickelodeon SpongeBob Schwammkopf - Der Film + Nickelodeon Tak 2 - Der Stab der Traeume (Germany) (Disc 1).zip",
"2 Games in 1 - Nickelodeon SpongeBob Schwammkopf - Der Film + Nickelodeon Tak 2 - Der Stab der Traeume (Germany) (Disc 2).zip",
"2002 FIFA World Cup (Europe) (Fr,Nl).zip",
"2002 FIFA World Cup (Europe).zip",
"2002 FIFA World Cup (France).zip",
"2002 FIFA World Cup (Germany).zip",
"2002 FIFA World Cup (Japan) (Jitsuen-you Sample).zip",
"2002 FIFA World Cup (Japan).zip",
"2002 FIFA World Cup (USA).zip",
"4 Fantastiques, Les (France).zip",
"4x4 Evo 2 (USA).zip",
"ATV - Quad Power Racing 2 (Europe) (En,Fr,De,Es,It).zip",
"ATV - Quad Power Racing 2 (USA).zip",
"Ace Golf (Europe) (En,Fr).zip",
"Action Replay Max (USA, Europe) (En,Fr,De,Es,It,Pt) (Unl).zip",
"Action Replay Ultimate Cheats for Use with Enter the Matrix (UK) (Unl).zip",
"Action Replay Ultimate Cheats for Use with Mario Kart - Double Dash!! (UK) (Unl).zip",
"Action Replay Ultimate Cheats for Use with Pokemon Colosseum (UK) (Unl).zip",
"Action Replay Ultimate Cheats fuer Enter the Matrix (Germany) (Unl).zip",
"Action Replay Ultimate Cheats fuer Pokemon Colosseum (Germany) (Unl).zip",
"Action Replay Ultimate Codes Greatest Hits - Best Buy Achievers Weekend 2004 (USA) (Unl).zip",
"Action Replay Ultimate Codes Max Pack (USA) (Unl).zip",
"Action Replay Ultimate Codes for Use with Enter the Matrix (USA) (Unl).zip",
"Action Replay Ultimate Codes for Use with Final Fantasy - Crystal Chronicles (USA) (Unl).zip",
"Action Replay Ultimate Codes for Use with Soul Calibur II (USA) (Unl).zip",
"Action Replay Ultimate Codes for Use with The Legend of Zelda - Twilight Princess (USA) (Unl).zip",
"Action Replay Ultimate Codes for Use with Wario World (USA) (Unl).zip",
"Action Replay Ultimative Cheatcodes fuer Final Fantasy - Crystal Chronicles (Germany) (Unl).zip",
"Action Replay Ultimative Cheats Greatest Hits 2003 (Germany) (Unl).zip",
"Action Replay for GameCube & SD Media Launcher for GameCube-Wii (Europe) (Unl).zip",
"Action Replay for GameCube & SD Media Launcher for GameCube-Wii (USA) (Unl).zip",
"Action Replay for GameCube (Europe) (En,Fr,De,Es,It,Pt) (Unl) (v1.09).zip",
"Action Replay for GameCube (Europe) (En,Fr,De,Es,It,Pt) (Unl) (v1.14b).zip",
"Action Replay for GameCube (Europe) (Unl) (GameCube + Wii) (v1.0E).zip",
"Action Replay for GameCube (USA) (En,Fr,De,Es,It,Pt) (Unl) (v1.06).zip",
"Action Replay for GameCube (USA) (En,Fr,De,Es,It,Pt) (Unl) (v1.12).zip",
"Action Replay for GameCube (USA) (En,Fr,De,Es,It,Pt) (Unl) (v1.13).zip",
"Action Replay for GameCube (USA, Europe) (En,Fr,De,Es,It,Pt) (Unl) (v1.08).zip",
"Advance Connector GC-you (Japan) (Unl).zip",
"Advance Game Port & Cheat Construction Kit (USA, Europe) (Unl).zip",
"Advance Game Port (USA) (Unl) (Rev 1).zip",
"Advance Game Port (USA) (Unl) (Rev 2).zip",
"Advance Game Port (USA) (Unl).zip",
"Aggressive Inline (Europe) (En,Fr,De,Es) (Beta) (2002-07-29).zip",
"Aggressive Inline (Europe) (En,Fr,De,Es).zip",
"Aggressive Inline (USA).zip",
"Aging Disc DOL (Japan) (Rev 7).zip",
"Aging Disc DOL-PAL (Japan) (Rev 7).zip",
"Aging Disc DOL-USA (Japan) (Rev 7).zip",
"Alien Hominid (USA).zip",
"All-Star Baseball 2002 (USA).zip",
"All-Star Baseball 2003 featuring Derek Jeter (Japan).zip",
"All-Star Baseball 2003 featuring Derek Jeter (USA) (Beta) (2002-01-16).zip",
"All-Star Baseball 2003 featuring Derek Jeter (USA).zip",
"All-Star Baseball 2004 featuring Derek Jeter (USA).zip",
"Amazing Island (USA).zip",
"American Chopper 2 - Full Throttle (USA).zip",
"Animal Crossing (Australia).zip",
"Animal Crossing (Europe) (En,Fr,De,Es,It).zip",
"Animal Crossing (USA, Canada).zip",
"Animaniacs - The Great Edgar Hunt (Europe) (En,Fr,De,Es,It).zip",
"Animaniacs - The Great Edgar Hunt (USA).zip",
"Ant Bully, The (USA) (En,Fr).zip",
"Aquaman - Battle for Atlantis (USA).zip",
"Army Men - Air Combat - The Elite Missions (USA).zip",
"Army Men - RTS (USA).zip",
"Army Men - Sarge's War (USA).zip",
"Asterix & Obelix XXL (Europe) (En,Fr,De,Es,It).zip",
"Atsumare!! Made in Wario (Japan).zip",
"Auto Modellista (USA).zip",
"Auto Modellista - U.S.-tuned (Japan).zip",
"BMX XXX (Europe) (En,Fr,De,Es).zip",
"BMX XXX (USA).zip",
"Backyard Baseball (USA).zip",
"Backyard Football (USA).zip",
"Backyard Sports - Baseball 2007 (USA).zip",
"Bad Boys - Miami Takedown (USA).zip",
"Bad Boys II (Europe) (En,Fr,De,Es,It).zip",
"Bakuten Shoot Beyblade 2002 - Nettou! Magne Tag Battle! (Japan).zip",
"Baldur's Gate - Dark Alliance (Europe) (Rev 1).zip",
"Baldur's Gate - Dark Alliance (France).zip",
"Baldur's Gate - Dark Alliance (Germany).zip",
"Baldur's Gate - Dark Alliance (USA).zip",
"Baseball 2003, The - Battle Ball Park Sengen Perfect Play Pro Yakyuu (Japan).zip",
"Baten Kaitos - Eternal Wings and the Lost Ocean (Europe) (En,Fr,De,Es,It) (Disc 1).zip",
"Baten Kaitos - Eternal Wings and the Lost Ocean (Europe) (En,Fr,De,Es,It) (Disc 2).zip",
"Baten Kaitos - Eternal Wings and the Lost Ocean (USA) (Disc 1).zip",
"Baten Kaitos - Eternal Wings and the Lost Ocean (USA) (Disc 2).zip",
"Baten Kaitos - Owaranai Tsubasa to Ushinawareta Umi (Japan) (Disc 1).zip",
"Baten Kaitos - Owaranai Tsubasa to Ushinawareta Umi (Japan) (Disc 2).zip",
"Baten Kaitos - Owaranai Tsubasa to Ushinawareta Umi (Japan) (Special Taiken Disc).zip",
"Baten Kaitos II - Hajimari no Tsubasa to Kamigami no Shishi (Japan) (Disc 1) (Rev 1).zip",
"Baten Kaitos II - Hajimari no Tsubasa to Kamigami no Shishi (Japan) (Disc 1) (Rev 2).zip",
"Baten Kaitos II - Hajimari no Tsubasa to Kamigami no Shishi (Japan) (Disc 2) (Rev 1).zip",
"Baten Kaitos II - Hajimari no Tsubasa to Kamigami no Shishi (Japan) (Disc 2) (Rev 2).zip",
"Baten Kaitos Origins (USA, Canada) (Disc 1).zip",
"Baten Kaitos Origins (USA, Canada) (Disc 2).zip",
"Batman - Dark Tomorrow (Europe) (En,Fr,De,Es,It) (Rev 1).zip",
"Batman - Dark Tomorrow (Japan).zip",
"Batman - Dark Tomorrow (USA) (Beta) (2002-08-25).zip",
"Batman - Dark Tomorrow (USA) (Rev 1).zip",
"Batman - Rise of Sin Tzu (Europe) (En,Fr,De,Es,It).zip",
"Batman - Rise of Sin Tzu (USA) (En,Fr,Es).zip",
"Batman - Vengeance (Europe) (En,Fr,De,Es,It).zip",
"Batman - Vengeance (USA) (En,Fr,Es).zip",
"Batman Begins (Europe) (En,Fr,De,Es,Nl).zip",
"Batman Begins (USA).zip",
"Battalion Wars (Europe) (En,Fr,De,Es,It).zip",
"Battalion Wars (USA, Canada).zip",
"Battle Houshin (Japan).zip",
"Battle Stadium D.O.N (Japan).zip",
"Beach Spikers - Virtua Beach Volleyball (Europe) (En,Fr,De,Es,It).zip",
"Beach Spikers - Virtua Beach Volleyball (Japan) (Rev 1).zip",
"Beach Spikers - Virtua Beach Volleyball (Japan) (Taikenban).zip",
"Beach Spikers - Virtua Beach Volleyball (USA).zip",
"Beyblade VForce - Super Tournament Battle (Europe) (En,Fr,De,Es,It).zip",
"Beyblade VForce - Super Tournament Battle (USA).zip",
"Beyond Good & Evil (Europe) (De,It).zip",
"Beyond Good & Evil (Europe) (En,Es).zip",
"Beyond Good & Evil (Europe) (Fr,Nl).zip",
"Beyond Good & Evil (USA) (En,Es).zip",
"Big Air Freestyle (Europe) (En,Fr,De,Es,It).zip",
"Big Air Freestyle (USA).zip",
"Big Mutha Truckers (Europe) (En,Fr,De,Es,It).zip",
"Big Mutha Truckers (USA).zip",
"Billy Hatcher and the Giant Egg (Europe) (Demo).zip",
"Billy Hatcher and the Giant Egg (Europe) (En,Ja,Fr,De,Es,It).zip",
"Billy Hatcher and the Giant Egg (USA).zip",
"Biohazard (Japan) (Disc 1).zip",
"Biohazard (Japan) (Disc 2).zip",
"Biohazard (Japan) (Movie Demo Disc).zip",
"Biohazard (Japan) (Tokubetsuban).zip",
"Biohazard - Code - Veronica - Kanzenban (Japan) (Disc 1).zip",
"Biohazard - Code - Veronica - Kanzenban (Japan) (Disc 2).zip",
"Biohazard 2 (Japan).zip",
"Biohazard 3 - Last Escape (Japan).zip",
"Biohazard 4 (Japan) (Disc 1).zip",
"Biohazard 4 (Japan) (Disc 2).zip",
"Biohazard 4 (Japan) (En,Ja) (Taikenban).zip",
"Biohazard Zero (Japan) (Disc 1).zip",
"Biohazard Zero (Japan) (Disc 2).zip",
"Biohazard Zero - Trial Edition (Japan).zip",
"Bionicle (Europe) (En,Fr,De,Es,It,Da).zip",
"Bionicle (USA).zip",
"Bionicle Heroes (USA) (Rev 1).zip",
"Black & Bruised (Europe) (En,Fr,De).zip",
"Black & Bruised (USA).zip",
"Bleach GC - Tasogare ni Mamieru Shinigami (Japan).zip",
"Blood Omen 2 - The Legacy of Kain Series (Europe).zip",
"Blood Omen 2 - The Legacy of Kain Series (France).zip",
"Blood Omen 2 - The Legacy of Kain Series (Germany).zip",
"Blood Omen 2 - The Legacy of Kain Series (USA).zip",
"BloodRayne (Europe).zip",
"BloodRayne (France).zip",
"BloodRayne (Spain).zip",
"BloodRayne (USA).zip",
"Bloody Roar - Extreme (Japan).zip",
"Bloody Roar - Primal Fury (Europe).zip",
"Bloody Roar - Primal Fury (USA) (Beta) (2002-01-08).zip",
"Bloody Roar - Primal Fury (USA).zip",
"Blowout (USA).zip",
"Bobobo-bo Bo-bobo - Dasshutsu!! Hajike Royale (Japan).zip",
"Bokujou Monogatari - Shiawase no Uta (Japan) (Rev 1).zip",
"Bokujou Monogatari - Shiawase no Uta (Japan).zip",
"Bokujou Monogatari - Shiawase no Uta for World (Japan).zip",
"Bokujou Monogatari - Wonderful Life (Japan) (Rev 1).zip",
"Bokujou Monogatari - Wonderful Life (Japan).zip",
"Bokujou Monogatari - Wonderful Life for Girl (Japan).zip",
"Bomberman Generation (Europe) (En,Fr,De).zip",
"Bomberman Generation (Japan).zip",
"Bomberman Generation (USA) (Rev 1).zip",
"Bomberman Generation (USA).zip",
"Bomberman Jetters (Japan).zip",
"Bomberman Jetters (USA).zip",
"Bomberman Land 2 (Japan).zip",
"Bratz - Forever Diamondz (Europe) (En,Fr).zip",
"Bratz - Forever Diamondz (USA).zip",
"Bratz - Rock Angelz (Europe).zip",
"Bratz - Rock Angelz (France).zip",
"Bratz - Rock Angelz (Germany).zip",
"Bratz - Rock Angelz (USA).zip",
"Buffy contre les Vampires - Chaos Bleeds (France).zip",
"Buffy im Bann der Daemonen - Chaos Bleeds (Germany).zip",
"Buffy the Vampire Slayer - Chaos Bleeds (Europe).zip",
"Buffy the Vampire Slayer - Chaos Bleeds (USA).zip",
"Burnout (Europe) (En,Fr,De,Es,It).zip",
"Burnout (USA) (Beta) (2002-03-06).zip",
"Burnout (USA).zip",
"Burnout 2 - Point of Impact (Europe) (En,Fr,De,Es,It).zip",
"Burnout 2 - Point of Impact (USA).zip",
"Bust-A-Move 3000 (USA).zip",
"Butt-Ugly Martians - Zoom or Doom! (Europe) (En,Fr,De,Es,It).zip",
"CD avec les codes Action Replay exclusivement pour le jeu The Legend of Zelda - The Wind Waker (France) (Unl).zip",
"CD avec les codes exclusifs et inedits pour le jeu Metroid Prime (France) (Unl).zip",
"CD exclusif avec les codes pour les jeux Resident Evil et Resident Evil Zero (France) (Unl).zip",
"Cabela's Big Game Hunter 2005 Adventures (USA).zip",
"Cabela's Dangerous Hunts 2 (USA).zip",
"Cabela's Outdoor Adventures (USA).zip",
"Call of Duty - Finest Hour (Europe).zip",
"Call of Duty - Finest Hour (France).zip",
"Call of Duty - Finest Hour (Germany).zip",
"Call of Duty - Finest Hour (USA).zip",
"Call of Duty 2 - Big Red One (Europe).zip",
"Call of Duty 2 - Big Red One (France).zip",
"Call of Duty 2 - Big Red One (Germany).zip",
"Call of Duty 2 - Big Red One (Italy).zip",
"Call of Duty 2 - Big Red One (Spain).zip",
"Call of Duty 2 - Big Red One (USA).zip",
"Capcom vs. SNK 2 EO (Japan) (Rev 1).zip",
"Capcom vs. SNK 2 EO (Japan) (Tentou Taikenban).zip",
"Capcom vs. SNK 2 EO (USA).zip",
"Capcom vs. SNK 2 EO - Millionaire Fighting 2001 (Europe).zip",
"Captain Tsubasa - Ougon Sedai no Chousen (Japan) (Rev 1).zip",
"Carmen Sandiego - The Secret of the Stolen Drums (Europe) (De,Es).zip",
"Carmen Sandiego - The Secret of the Stolen Drums (Europe) (En,Fr).zip",
"Carmen Sandiego - The Secret of the Stolen Drums (USA) (En,Fr).zip",
"Casper - Spirit Dimensions (Europe) (En,Fr,De,Es,It).zip",
"Casper - Spirit Dimensions (USA).zip",
"Castleween (Europe) (En,Fr,De,Es,It).zip",
"Catwoman (Europe) (En,Fr,De,Es,It,Nl).zip",
"Catwoman (USA).zip",
"Cel Damage (Europe).zip",
"Cel Damage (USA).zip",
"Chaos Field (USA).zip",
"Chaos Field Expanded (Japan) (Rev 2).zip",
"Charinko Hero (Japan) (Rev 1).zip",
"Charlie and the Chocolate Factory (Europe, Australia) (En,Fr,Es,Nl).zip",
"Charlie and the Chocolate Factory (USA).zip",
"Charlie's Angels (Europe) (En,Fr,De).zip",
"Charlie's Angels (USA) (En,Fr).zip",
"Chibi-Robo! (Europe) (En,Fr,De,Es,It).zip",
"Chibi-Robo! (Japan) (Rev 1).zip",
"Chibi-Robo! (USA).zip",
"Choro Q! (Japan).zip",
"Chronicles of Narnia, The - The Lion, the Witch and the Wardrobe (Europe).zip",
"Chronicles of Narnia, The - The Lion, the Witch and the Wardrobe (USA).zip",
"Chroniken von Narnia, Die - Der Koenig von Narnia (Germany).zip",
"City Racer (USA).zip",
"Club Nintendo Original e-Catalog 2004 (Japan).zip",
"Cocoto Funfair (Europe) (En,Fr,De,Es,It).zip",
"Cocoto Kart Racer (Europe) (En,Fr,De,Es,It).zip",
"Cocoto Platform Jumper (Europe) (En,Fr,De,Es,It).zip",
"Codename - Kids Next Door - Operation - V.I.D.E.O.G.A.M.E. (Europe).zip",
"Codename - Kids Next Door - Operation - V.I.D.E.O.G.A.M.E. (USA).zip",
"Codename - Kids Next Door - Operation - V.I.D.E.O.S.P.I.E.L. (Germany).zip",
"Conan (Europe) (En,Fr,De,Es,It) (Disc 1).zip",
"Conan (Europe) (En,Fr,De,Es,It) (Disc 2).zip",
"Conflict - Desert Storm (Europe) (En,Fr,De,Es,It).zip",
"Conflict - Desert Storm (USA) (Rev 1).zip",
"Conflict - Desert Storm (USA).zip",
"Conflict - Desert Storm II (Europe) (En,Fr,De,Es,It).zip",
"Conflict - Desert Storm II - Back to Baghdad (USA).zip",
"Crash Bandicoot - Bakusou! Nitro Kart (Japan).zip",
"Crash Bandicoot - Gatchanko World (Japan).zip",
"Crash Bandicoot - The Wrath of Cortex (Europe) (En,Fr,De,Es,It,Nl) (Rev 1).zip",
"Crash Bandicoot - The Wrath of Cortex (Europe) (En,Fr,De,Es,It,Nl).zip",
"Crash Bandicoot - The Wrath of Cortex (USA).zip",
"Crash Bandicoot 4 - Sakuretsu! Majin Power (Japan).zip",
"Crash Nitro Kart (Europe).zip",
"Crash Nitro Kart (USA).zip",
"Crash Tag Team Racing (Europe, Australia).zip",
"Crash Tag Team Racing (France).zip",
"Crash Tag Team Racing (Germany).zip",
"Crash Tag Team Racing (Netherlands).zip",
"Crash Tag Team Racing (USA).zip",
"Crazy Taxi (Europe) (En,Fr,De,Es).zip",
"Crazy Taxi (Japan).zip",
"Crazy Taxi (USA) (Beta) (2001-09-21).zip",
"Crazy Taxi (USA).zip",
"Croket! Ban-King no Kiki o Sukue (Japan) (Rev 1).zip",
"Cube CD 01 (20) (UK) (Unl).zip",
"Cube CD 02 (21) (UK) (Unl).zip",
"Cube CD 03 (22) (UK) (Unl).zip",
"Cube CD 04 (23) (UK) (Unl).zip",
"Cube CD 05 (24) (UK) (Unl).zip",
"Cube CD 06 (25) (UK) (Unl).zip",
"Cube CD 07 (26) (UK) (Unl).zip",
"Cube CD 08 (27) (UK) (Unl).zip",
"Cube CD 09 (28) (UK) (Unl).zip",
"Cube CD 10 (29) (UK) (Unl).zip",
"Cube CD 11 (30) (UK) (Unl).zip",
"Cube CD 12 (31) (UK) (Unl).zip",
"Cube CD 13 (32) (UK) (Unl).zip",
"Cube CD 14 (33) (UK) (Unl).zip",
"Cube CD 15 (34) (UK) (Unl).zip",
"Cube CD 16 (35) (UK) (Unl).zip",
"Cube CD 17 (36) (UK) (Unl).zip",
"Cube CD 18 (37) (UK) (Unl).zip",
"Cube CD 19 (38) (UK) (Unl).zip",
"Cube CD 20 (39) (UK) (Unl).zip",
"Cube CD 20 (40) (UK) (Unl).zip",
"Cubivore - Survival of the Fittest (USA).zip",
"Cubix Robots for Everyone - Showdown (USA).zip",
"Curious George (USA).zip",
"Custom Robo (USA).zip",
"Custom Robo - Battle Revolution (Japan).zip",
"Dabitsuku 3 - Derby-ba o Tsukurou! (Japan).zip",
"Dairantou Smash Brothers DX (Japan) (En,Ja) (Rev 1).zip",
"Dairantou Smash Brothers DX (Japan) (En,Ja) (Rev 2).zip",
"Dairantou Smash Brothers DX (Japan) (En,Ja).zip",
"Dairantou Smash Brothers DX (Japan) (Taikenban).zip",
"Dakar 2 (Europe) (En,Fr,De,Es,It).zip",
"Dakar 2 - The World's Ultimate Rally (USA) (En,Fr,De,Es,It).zip",
"Dance Dance Revolution - Mario Mix (USA) (Rev 1).zip",
"Dance Dance Revolution with Mario (Japan).zip",
"Dancing Stage Mario Mix (Europe) (En,Fr,De,Es,It).zip",
"Dark Summit (Europe) (En,Fr,De).zip",
"Dark Summit (USA).zip",
"Darkened Skye (Europe) (En,Fr,De).zip",
"Darkened Skye (USA).zip",
"Dave Mirra Freestyle BMX 2 (Europe).zip",
"Dave Mirra Freestyle BMX 2 (USA).zip",
"Dead to Rights (Europe) (En,Fr,Es,It).zip",
"Dead to Rights (USA).zip",
"Def Jam - Fight for NY (Europe) (En,Fr).zip",
"Def Jam - Fight for NY (USA).zip",
"Def Jam - Vendetta (Europe).zip",
"Def Jam - Vendetta (USA).zip",
"Defender (USA).zip",
"Defender - For All Mankind (Europe) (En,Fr,De,Es,It).zip",
"Densetsu no Quiz-ou Kettei-sen (Japan).zip",
"Desastreuses Aventures des Orphelins Baudelaire, Les - D'Apres Lemony Snicket (France).zip",
"Die Hard - Vendetta (Europe) (En,Fr).zip",
"Die Hard - Vendetta (Europe) (Es,It).zip",
"Die Hard - Vendetta (Germany) (En,De).zip",
"Die Hard - Vendetta (USA).zip",
"Digimon Battle Chronicle (Japan).zip",
"Digimon Rumble Arena 2 (Europe) (En,Fr,De,Es).zip",
"Digimon Rumble Arena 2 (USA).zip",
"Digimon World 4 (USA).zip",
"Digimon World X (Japan).zip",
"Dinotopia - The Sunstone Odyssey (USA).zip",
"Disney Chicken Little (France).zip",
"Disney Les Aventures de Porcinet (France).zip",
"Disney Sports - American Football (Japan).zip",
"Disney Sports - Basketball (Europe) (En,Fr,De,Es,It).zip",
"Disney Sports - Basketball (Japan).zip",
"Disney Sports - Basketball (USA).zip",
"Disney Sports - Football (Europe) (En,Fr,De,Es,It).zip",
"Disney Sports - Football (USA).zip",
"Disney Sports - Skateboarding (Europe) (En,Fr,De,Es,It).zip",
"Disney Sports - Skateboarding (Japan).zip",
"Disney Sports - Skateboarding (USA).zip",
"Disney Sports - Soccer (Japan).zip",
"Disney Sports - Soccer (USA).zip",
"Disney's Chicken Little (Europe).zip",
"Disney's Chicken Little (Japan).zip",
"Disney's Chicken Little (USA).zip",
"Disney's Donald Duck - Goin' Quackers (USA) (En,Fr).zip",
"Disney's Donald Duck - Quack Attack (Europe) (En,Fr,De,Es,It).zip",
"Disney's Donald Duck PK (Europe) (En,Fr,De,Es,It).zip",
"Disney's Extreme Skate Adventure (Europe) (Es,It).zip",
"Disney's Extreme Skate Adventure (Europe) (Fr,De).zip",
"Disney's Extreme Skate Adventure (Europe).zip",
"Disney's Extreme Skate Adventure (USA).zip",
"Disney's Hide & Sneak (Europe) (En,Fr,De).zip",
"Disney's Hide & Sneak (USA) (Rev 1).zip",
"Disney's Magical Mirror Starring Mickey Mouse (Europe) (En,Fr,De,Es,It).zip",
"Disney's Magical Mirror Starring Mickey Mouse (USA).zip",
"Disney's Magical Park (Japan) (Jitsuen-you Sample).zip",
"Disney's Magical Park (Japan).zip",
"Disney's Mickey Mouse no Fushigi na Kagami (Japan) (Rev 1).zip",
"Disney's Mickey to Minnie Trick & Chase (Japan).zip",
"Disney's PK - Out of the Shadows (USA) (En,Fr,De,It).zip",
"Disney's Party (Europe) (En,Fr,De,Es,It).zip",
"Disney's Party (USA).zip",
"Disney's Piglet's Big Game (Europe).zip",
"Disney's Piglet's Big Game (USA).zip",
"Disney's Tarzan - Freeride (Europe) (En,Fr,De,Es,It).zip",
"Disney's Tarzan - Untamed (USA) (En,Fr).zip",
"Disney's The Haunted Mansion (USA).zip",
"Disney's Winnie the Pooh's Rumbly Tumbly Adventure (Europe) (En,Fr,De,Es,It,Nl).zip",
"Disney's Winnie the Pooh's Rumbly Tumbly Adventure (USA) (En,Fr,Es).zip",
"Disney-Pixar Buscando a Nemo (Spain).zip",
"Disney-Pixar Cars (Europe).zip",
"Disney-Pixar Cars (France).zip",
"Disney-Pixar Cars (Germany).zip",
"Disney-Pixar Cars (Japan).zip",
"Disney-Pixar Cars (Netherlands).zip",
"Disney-Pixar Cars (Spain).zip",
"Disney-Pixar Cars (USA).zip",
"Disney-Pixar Die Unglaublichen (Germany).zip",
"Disney-Pixar Findet Nemo (Germany).zip",
"Disney-Pixar Finding Nemo (Europe).zip",
"Disney-Pixar Finding Nemo (Japan).zip",
"Disney-Pixar Finding Nemo (USA) (Rev 1).zip",
"Disney-Pixar Finding Nemo (USA).zip",
"Disney-Pixar Le Monde de Nemo (France).zip",
"Disney-Pixar Les Indestructibles (France).zip",
"Disney-Pixar Monsters, Inc. - Scream Arena (Europe) (En,Fr,De,Es,It).zip",
"Disney-Pixar Monsters, Inc. - Scream Arena (USA).zip",
"Disney-Pixar Mr. Incredible (Japan).zip",
"Disney-Pixar Mr. Incredible - Kyouteki Underminer Toujou (Japan).zip",
"Disney-Pixar Nemo-reul Chajaseo (Korea).zip",
"Disney-Pixar Ratatouille (France).zip",
"Disney-Pixar Ratatouille (USA).zip",
"Disney-Pixar The Incredibles (Europe).zip",
"Disney-Pixar The Incredibles (Netherlands).zip",
"Disney-Pixar The Incredibles (USA).zip",
"Disney-Pixar The Incredibles - Rise of the Underminer (Europe) (En,Fr).zip",
"Disney-Pixar The Incredibles - Rise of the Underminer (Europe) (Fr,De).zip",
"Disney-Pixar The Incredibles - Rise of the Underminer (USA).zip",
"Disneys Ferkels grosses Abenteuer-Spiel (Germany).zip",
"Disneys Himmel und Huhn (Germany).zip",
"Dokapon DX - Wataru Sekai wa Oni Darake (Japan).zip",
"Donkey Kong Jungle Beat (Europe) (En,Fr,De,Es,It).zip",
"Donkey Kong Jungle Beat (Japan).zip",
"Donkey Kong Jungle Beat (USA).zip",
"Donkey Konga (Europe) (En,Fr,De,Es,It).zip",
"Donkey Konga (Japan).zip",
"Donkey Konga (USA).zip",
"Donkey Konga 2 (Europe) (En,Fr,De,Es,It).zip",
"Donkey Konga 2 (USA).zip",
"Donkey Konga 2 - Hit Song Parade (Japan).zip",
"Donkey Konga 3 - Tabehoudai! Haru Mogitate 50-kyoku (Japan).zip",
"Doraemon - Minna de Asobou! Miniland (Japan).zip",
"Doshin the Giant (Europe) (En,Fr,De,Es,It).zip",
"Doubutsu Banchou (Japan).zip",
"Doubutsu no Mori + (Japan) (Rev 1).zip",
"Doubutsu no Mori + (Japan).zip",
"Doubutsu no Mori e+ (Japan) (Rev 1).zip",
"Doubutsu no Mori e+ (Japan).zip",
"Dr. Muto (USA).zip",
"Dragon Ball Z (Japan).zip",
"Dragon Ball Z - Budokai (Europe) (En,Fr,De,Es,It).zip",
"Dragon Ball Z - Budokai (USA).zip",
"Dragon Ball Z - Budokai 2 (Europe) (En,Fr,De,Es,It).zip",
"Dragon Ball Z - Budokai 2 (USA).zip",
"Dragon Ball Z - Sagas (USA).zip",
"Dragon Drive - D-Masters Shot (Japan) (Anime Disc).zip",
"Dragon Drive - D-Masters Shot (Japan).zip",
"Dragon's Lair 3D - Return to the Lair (USA).zip",
"Dragon's Lair 3D - Special Edition (Europe) (En,Fr,De,Es,It).zip",
"Dream Mix TV - World Fighters (Japan).zip",
"DreamWorks & Aardman Flushed Away (Europe) (En,Fr,De,Es,It).zip",
"DreamWorks & Aardman Flushed Away (USA).zip",
"DreamWorks Ab durch die Hecke (Germany).zip",
"DreamWorks Gang de Requins (France).zip",
"DreamWorks Grosse Haie - Kleine Fische (Germany).zip",
"DreamWorks Madagascar (Europe) (Fr,De).zip",
"DreamWorks Madagascar (Italy).zip",
"DreamWorks Madagascar (Japan).zip",
"DreamWorks Madagascar (Netherlands).zip",
"DreamWorks Madagascar (Spain).zip",
"DreamWorks Madagascar (UK).zip",
"DreamWorks Madagascar (USA) (Rev 1).zip",
"DreamWorks Nos Voisins, les Hommes (France).zip",
"DreamWorks Over the Hedge (Europe).zip",
"DreamWorks Over the Hedge (USA).zip",
"DreamWorks Shark Tale (Europe).zip",
"DreamWorks Shark Tale (Italy).zip",
"DreamWorks Shark Tale (Japan).zip",
"DreamWorks Shark Tale (USA).zip",
"DreamWorks Shrek - Smash n' Crash Racing (Europe) (En,Fr,De).zip",
"DreamWorks Shrek - Smash n' Crash Racing (USA).zip",
"DreamWorks Shrek - SuperSlam (Europe) (En,Fr,Es,It).zip",
"DreamWorks Shrek - SuperSlam (Europe).zip",
"DreamWorks Shrek - SuperSlam (Germany).zip",
"DreamWorks Shrek - SuperSlam (USA).zip",
"Driven (Europe) (En,Fr,De,Es,It).zip",
"Driven (USA) (En,Fr,De,Es,It) (Beta).zip",
"Driven (USA) (En,Fr,De,Es,It).zip",
"Drome Racers (Europe) (En,Fr,De,Es,It,Nl,Sv,Da).zip",
"Drome Racers (USA).zip",
"Duel Masters - Nettou! Battle Arena (Japan).zip",
"ESPN International Winter Sports (Europe) (En,Fr,De,It).zip",
"ESPN International Winter Sports 2002 (USA).zip",
"ESPN MLS ExtraTime 2002 (USA) (Beta) (2002-01-31).zip",
"ESPN MLS ExtraTime 2002 (USA).zip",
"Ed, Edd n Eddy - The Mis-Edventures (USA) (En,Fr).zip",
"Egg Mania - Eggstreme Madness (USA) (Rev 1).zip",
"Egg Mania - Tsukande! Mawashite! Dossun Puzzle!! (Japan) (Rev 1).zip",
"Eggo Mania (Europe) (En,Fr,De).zip",
"Eisei Meijin VI (Japan).zip",
"Enter the Matrix (Europe) (En,Fr,De,Es,It) (Disc 1).zip",
"Enter the Matrix (Europe) (En,Fr,De,Es,It) (Disc 2).zip",
"Enter the Matrix (Japan) (Disc 1).zip",
"Enter the Matrix (Japan) (Disc 2).zip",
"Enter the Matrix (Korea) (Disc 1).zip",
"Enter the Matrix (Korea) (Disc 2).zip",
"Enter the Matrix (USA) (Disc 1).zip",
"Enter the Matrix (USA) (Disc 2).zip",
"Eternal Arcadia Legends (Japan).zip",
"Eternal Darkness - Manekareta 13-nin (Japan).zip",
"Eternal Darkness - Sanity's Requiem (Europe) (En,Fr,De,Es,It).zip",
"Eternal Darkness - Sanity's Requiem (Korea).zip",
"Eternal Darkness - Sanity's Requiem (USA).zip",
"Evolution Skateboarding (Europe) (En,Fr,De).zip",
"Evolution Skateboarding (Japan).zip",
"Evolution Skateboarding (USA).zip",
"Evolution Snowboarding (Europe) (En,Fr,De).zip",
"Evolution Snowboarding (USA).zip",
"Evolution Worlds (Europe).zip",
"Evolution Worlds (USA) (Beta).zip",
"Evolution Worlds (USA).zip",
"F-Zero GX (Europe) (En,Fr,De,Es,It).zip",
"F-Zero GX (Japan).zip",
"F-Zero GX (Korea).zip",
"F-Zero GX (USA).zip",
"F1 2002 (Europe) (En,Fr,De,It).zip",
"F1 2002 (USA) (En,Fr,De,It).zip",
"F1 Career Challenge (Europe) (En,Fr,De,It).zip",
"FIFA 06 (Europe).zip",
"FIFA 06 (France).zip",
"FIFA 06 (Germany).zip",
"FIFA 06 (Italy).zip",
"FIFA 06 (Netherlands).zip",
"FIFA 06 (Spain).zip",
"FIFA 07 (Europe).zip",
"FIFA 07 (France).zip",
"FIFA 07 (Germany).zip",
"FIFA 2002 - Road to FIFA World Cup (Japan) (En,Ja).zip",
"FIFA 2002 - Road to FIFA World Cup (Japan) (Jitsuen-you Sample).zip",
"FIFA 2003 - European Football (Japan).zip",
"FIFA Football 2003 (Europe).zip",
"FIFA Football 2003 (France).zip",
"FIFA Football 2003 (Germany).zip",
"FIFA Football 2003 (Italy).zip",
"FIFA Football 2003 (Spain).zip",
"FIFA Football 2004 (Europe).zip",
"FIFA Football 2004 (France).zip",
"FIFA Football 2004 (Germany).zip",
"FIFA Football 2004 (Italy).zip",
"FIFA Football 2004 (Spain).zip",
"FIFA Football 2005 (Europe).zip",
"FIFA Football 2005 (France).zip",
"FIFA Football 2005 (Germany).zip",
"FIFA Football 2005 (Italy).zip",
"FIFA Football 2005 (Netherlands).zip",
"FIFA Football 2005 (Spain).zip",
"FIFA Fussball-Weltmeisterschaft Deutschland 2006 (Germany).zip",
"FIFA Soccer 06 (Latin America).zip",
"FIFA Soccer 06 (USA).zip",
"FIFA Soccer 07 (Latin America).zip",
"FIFA Soccer 07 (USA) (En,Es).zip",
"FIFA Soccer 2002 (USA).zip",
"FIFA Soccer 2003 (USA).zip",
"FIFA Soccer 2004 (USA).zip",
"FIFA Soccer 2005 (USA) (En,Es).zip",
"FIFA Street (Europe) (En,Fr,De).zip",
"FIFA Street (USA) (En,Es).zip",
"FIFA Street 2 (Europe) (En,Fr,De).zip",
"FIFA Street 2 (USA) (En,Es).zip",
"FIFA World Cup Germany 2006 (Europe).zip",
"FIFA World Cup Germany 2006 (France).zip",
"FIFA World Cup Germany 2006 (Latin America).zip",
"FIFA World Cup Germany 2006 (USA).zip",
"Fairly OddParents, The - Breakin' da Rules (USA).zip",
"Fairly OddParents, The - Shadow Showdown (USA).zip",
"Family Stadium 2003 (Japan).zip",
"Fantastic 4 (Europe).zip",
"Fantastic 4 (Germany).zip",
"Fantastic 4 (Netherlands).zip",
"Fantastic 4 (Spain).zip",
"Fantastic 4 (USA).zip",
"Fantastici 4, I (Italy).zip",
"Fight Night Round 2 (Europe) (En,Fr,De).zip",
"Fight Night Round 2 (Japan).zip",
"Fight Night Round 2 (USA).zip",
"Final Fantasy Crystal Chronicles (Europe) (En,Fr,De,Es,It).zip",
"Final Fantasy Crystal Chronicles (Japan).zip",
"Final Fantasy Crystal Chronicles (USA).zip",
"Fire Emblem - Path of Radiance (Europe) (En,Fr,De,Es,It).zip",
"Fire Emblem - Path of Radiance (USA).zip",
"Fire Emblem - Souen no Kiseki (Japan).zip",
"FireBlade (Europe) (En,Fr,De,Es,It).zip",
"FireBlade (USA).zip",
"Franklin - Un anniversaire surprise (France).zip",
"Freaky Flyers (USA) (Disc 1).zip",
"Freaky Flyers (USA) (Disc 2).zip",
"FreeLoader for GameCube (Europe) (Unl) (GameCube + Wii).zip",
"FreeLoader for GameCube (Europe) (Unl) (v1.04).zip",
"FreeLoader for GameCube (Europe) (Unl) (v1.06B) (2003).zip",
"FreeLoader for GameCube (Europe) (Unl) (v1.06B) (2004).zip",
"FreeLoader for GameCube (USA, Europe) (Unl) (v1.06b).zip",
"Freedom Fighters (Europe).zip",
"Freedom Fighters (France).zip",
"Freedom Fighters (Germany).zip",
"Freedom Fighters (USA).zip",
"Freekstyle (Europe) (En,Fr,De).zip",
"Freekstyle (USA).zip",
"Freestyle Metal X (USA).zip",
"Freestyle Street Soccer (USA) (En,Es).zip",
"Frogger (Japan).zip",
"Frogger - Ancient Shadow (USA) (En,Es).zip",
"Frogger Beyond (Europe) (En,Fr,De,Es,It).zip",
"Frogger Beyond (USA).zip",
"Frogger's Adventures - The Rescue (USA).zip",
"From TV Animation One Piece - Treasure Battle! (Japan).zip",
"Future GPX Cyber Formula - Road to the Evolution (Japan).zip",
"Future Tactics - The Uprising (Europe) (En,Fr,De,Es,It).zip",
"Future Tactics - The Uprising (USA).zip",
"GT Cube (Japan) (Rev 1).zip",
"GT Cube (Japan).zip",
"Gadget Racers (Europe) (En,Fr,De,Es,It).zip",
"Gakuen Toshi Varanoir - Roses (Japan).zip",
"Galleon (USA) (Proto).zip",
"Game Boy Player (Korea) (Rev 1).zip",
"Game Boy Player Start-Up Disc (Europe) (En,Fr,De,Es,It,Nl) (Rev 1).zip",
"Game Boy Player Start-Up Disc (Europe) (En,Fr,De,Es,It,Nl) (Rev 2).zip",
"Game Boy Player Start-Up Disc (Japan) (Rev 1).zip",
"Game Boy Player Start-Up Disc (Japan) (Rev 2).zip",
"Game Boy Player Start-Up Disc (Japan) (Rev 3).zip",
"Game Boy Player Start-Up Disc (USA) (Rev 2).zip",
"Game Boy Player Start-Up Disc (USA) (Rev 3).zip",
"Game Taikai Yuushou Kinen - Tokusei SmaBro DX Movie Disc (Japan).zip",
"Gauntlet - Dark Legacy (Europe) (En,Fr,De).zip",
"Gauntlet - Dark Legacy (USA) (Rev 1).zip",
"Gauntlet - Dark Legacy (USA).zip",
"Geist (Europe) (En,Fr,De,Es,It).zip",
"Geist (USA).zip",
"Gekitou Pro Yakyuu - Mizushima Shinji All Stars vs. Pro Yakyuu (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.10.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.11.1 (Japan) (Disc A).zip",
"Gekkan Nintendo Tentou Demo 2002.11.1 (Japan) (Disc B).zip",
"Gekkan Nintendo Tentou Demo 2002.12.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.5.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.6.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.7.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.7.10 Zoukan-gou (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.8.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2002.9.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.1.1 (Japan) (Disc A).zip",
"Gekkan Nintendo Tentou Demo 2003.1.1 (Japan) (Disc B).zip",
"Gekkan Nintendo Tentou Demo 2003.10.1 (Japan) (Rev 1).zip",
"Gekkan Nintendo Tentou Demo 2003.11.1 (Japan) (Disc A).zip",
"Gekkan Nintendo Tentou Demo 2003.11.1 (Japan) (Disc B).zip",
"Gekkan Nintendo Tentou Demo 2003.12.1 (Japan) (Disc A).zip",
"Gekkan Nintendo Tentou Demo 2003.12.1 (Japan) (Disc B).zip",
"Gekkan Nintendo Tentou Demo 2003.2.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.3.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.4.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.5.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.6.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.7.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2003.8.1 (Japan) (Disc A).zip",
"Gekkan Nintendo Tentou Demo 2003.8.1 (Japan) (Disc B).zip",
"Gekkan Nintendo Tentou Demo 2003.9.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004-2005 Nenmatsunenshi-gou (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.1.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.10.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.11.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.12.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.2.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.3.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.4.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.5.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.6.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.7.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.8.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2004.9.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.1.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.10.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.11.1 (Japan) (Rev 1).zip",
"Gekkan Nintendo Tentou Demo 2005.11.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.12.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.2.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.3.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.4.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.5.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.6.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.7.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.8.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2005.9.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.1.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.2.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.4.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.6.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.7.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.8.1 (Japan).zip",
"Gekkan Nintendo Tentou Demo 2006.9.1 (Japan).zip",
"Generation of Chaos Exceed - Yami no Koujo Roze (Japan).zip",
"Giant Egg - Billy Hatcher no Daibouken (Japan) (Rev 1).zip",
"Giftpia (Japan).zip",
"Gladius (Europe) (En,Es,It).zip",
"Gladius (France).zip",
"Gladius (Germany).zip",
"Gladius (USA).zip",
"Go! Go! Hypergrind (USA).zip",
"Goblin Commander - Unleash the Horde (Europe) (En,Fr,De).zip",
"Goblin Commander - Unleash the Horde (USA).zip",
"Godzilla - Destroy All Monsters Melee (Europe) (En,Fr,De,Es,It).zip",
"Godzilla - Destroy All Monsters Melee (USA).zip",
"Godzilla - Kaijuu Dairantou (Japan).zip",
"GoldenEye - Agente Corrupto (Spain) (Disc 1).zip",
"GoldenEye - Agente Corrupto (Spain) (Disc 2).zip",
"GoldenEye - Au Service du Mal (France) (Disc 1).zip",
"GoldenEye - Au Service du Mal (France) (Disc 2).zip",
"GoldenEye - Dark Agent (Japan) (Disc 1).zip",
"GoldenEye - Dark Agent (Japan) (Disc 2).zip",
"GoldenEye - Rogue Agent (Europe) (En,It,Nl,Sv) (Disc 1).zip",
"GoldenEye - Rogue Agent (Europe) (En,It,Nl,Sv) (Disc 2).zip",
"GoldenEye - Rogue Agent (Germany) (Disc 1).zip",
"GoldenEye - Rogue Agent (Germany) (Disc 2).zip",
"GoldenEye - Rogue Agent (USA) (Disc 1).zip",
"GoldenEye - Rogue Agent (USA) (Disc 2).zip",
"Gotcha Force (Europe) (En,Fr,De).zip",
"Gotcha Force (Japan).zip",
"Gotcha Force (USA).zip",
"Grim Adventures of Billy & Mandy, The (USA).zip",
"Groove Adventure Rave - Fighting Live (Japan).zip",
"Grooverider - Slot Car Thunder (USA).zip",
"Gun (Europe) (En,Fr,Es,It).zip",
"Gun (Germany) (En,De).zip",
"Gun (USA).zip",
"Happy Feet (USA) (En,Fr).zip",
"Harry Potter - Quidditch World Cup (Europe) (En,Nl,Sv).zip",
"Harry Potter - Quidditch World Cup (Europe) (Fr,De,Es,It).zip",
"Harry Potter - Quidditch World Cup (Japan).zip",
"Harry Potter - Quidditch World Cup (USA) (En,Fr,Es).zip",
"Harry Potter and the Chamber of Secrets (Europe) (En,Fr,De).zip",
"Harry Potter and the Chamber of Secrets (Europe) (Es,It,Pt).zip",
"Harry Potter and the Chamber of Secrets (Europe).zip",
"Harry Potter and the Chamber of Secrets (USA).zip",
"Harry Potter and the Goblet of Fire (Europe).zip",
"Harry Potter and the Goblet of Fire (USA).zip",
"Harry Potter and the Philosopher's Stone (Europe) (En,Nl) (Rev 1).zip",
"Harry Potter and the Philosopher's Stone (Europe) (En,Sv) (Rev 1).zip",
"Harry Potter and the Philosopher's Stone (Europe) (Es,It) (Rev 1).zip",
"Harry Potter and the Philosopher's Stone (Europe) (Fr,De) (Rev 1).zip",
"Harry Potter and the Prisoner of Azkaban (Europe).zip",
"Harry Potter and the Prisoner of Azkaban (USA).zip",
"Harry Potter and the Sorcerer's Stone (USA) (En,Es) (Rev 1).zip",
"Harry Potter e il Calice di Fuoco (Italy).zip",
"Harry Potter e il Prigioniero di Azkaban (Italy).zip",
"Harry Potter en de Vuurbeker (Netherlands).zip",
"Harry Potter en de gevangene van Azkaban (Netherlands).zip",
"Harry Potter et la Coupe de Feu (France).zip",
"Harry Potter et le Prisonnier d'Azkaban (France).zip",
"Harry Potter och den flammande baegaren (Sweden).zip",
"Harry Potter och fangen fran Azkaban (Sweden).zip",
"Harry Potter to Azkaban no Shuujin (Japan).zip",
"Harry Potter to Himitsu no Heya (Japan).zip",
"Harry Potter to Honoo no Goblet (Japan).zip",
"Harry Potter to Kenja no Ishi (Japan) (En,Ja).zip",
"Harry Potter und der Feuerkelch (Germany).zip",
"Harry Potter und der Gefangene von Askaban (Germany).zip",
"Harry Potter y el Caliz de Fuego (Spain).zip",
"Harry Potter y el prisionero de Azkaban (Spain).zip",
"Harvest Moon - A Wonderful Life (Europe).zip",
"Harvest Moon - A Wonderful Life (Germany).zip",
"Harvest Moon - A Wonderful Life (USA).zip",
"Harvest Moon - Another Wonderful Life (USA).zip",
"Harvest Moon - Magical Melody (USA).zip",
"Hello Kitty - Roller Rescue (Europe) (En,Fr,De,Es,It).zip",
"Hello Kitty - Roller Rescue (USA).zip",
"Herr der Ringe, Der - Das dritte Zeitalter (Germany) (Disc 1).zip",
"Herr der Ringe, Der - Das dritte Zeitalter (Germany) (Disc 2).zip",
"Herr der Ringe, Der - Die Rueckkehr des Koenigs (Germany).zip",
"Herr der Ringe, Der - Die zwei Tuerme (Germany).zip",
"Hikaru no Go 3 (Japan).zip",
"Hitman 2 - Silent Assassin (Europe).zip",
"Hitman 2 - Silent Assassin (France).zip",
"Hitman 2 - Silent Assassin (Germany).zip",
"Hitman 2 - Silent Assassin (USA).zip",
"Hobbit, The - The Prelude to the Lord of the Rings (Europe) (En,Fr,De,Es,It).zip",
"Hobbit, The - The Prelude to the Lord of the Rings (USA).zip",
"Home Run King (USA).zip",
"Homeland (Japan) (Rev 1).zip",
"Homeland (Japan) (Test Disc).zip",
"Homeland (Japan).zip",
"Hontai Kensa Disc DOL (Japan) (Rev 3).zip",
"Hontai Kensa Disc DOL (Japan) (Rev 6).zip",
"Hontai Kensa Disc DOL-USA (Japan) (Rev 5).zip",
"Hot Wheels - Velocity X (Europe).zip",
"Hot Wheels - Velocity X (USA).zip",
"Hot Wheels - World Race (Europe).zip",
"Hot Wheels - World Race (USA) (Rev 1).zip",
"Hudson Selection Vol. 1 - Cubic Lode Runner (Japan).zip",
"Hudson Selection Vol. 2 - Star Soldier (Japan).zip",
"Hudson Selection Vol. 3 - PC Genjin - Pithecanthropus Computerurus (Japan).zip",
"Hudson Selection Vol. 4 - Takahashi-Meijin no Boukenjima (Japan).zip",
"Hulk (Europe).zip",
"Hulk (France).zip",
"Hulk (Germany).zip",
"Hulk (Spain).zip",
"Hulk (USA).zip",
"Hunter - The Reckoning (Europe) (En,Fr,De).zip",
"Hunter - The Reckoning (USA).zip",
"Hyper Sports 2002 Winter (Japan).zip",
"I-Ninja (USA).zip",
"Ice Age 2 - The Meltdown (Europe) (En,Fr,De).zip",
"Ice Age 2 - The Meltdown (USA).zip",
"Ikaruga (Europe).zip",
"Ikaruga (Japan).zip",
"Ikaruga (USA).zip",
"Incredible Hulk, The - Ultimate Destruction (Europe) (En,Es,It).zip",
"Incredible Hulk, The - Ultimate Destruction (France).zip",
"Incredible Hulk, The - Ultimate Destruction (USA).zip",
"Intellivision Lives! (USA).zip",
"Interactive Multi-Game Demo Disc - August 2002 (USA).zip",
"Interactive Multi-Game Demo Disc - January 2002 (USA).zip",
"Interactive Multi-Game Demo Disc - July 2002 (USA).zip",
"Interactive Multi-Game Demo Disc - June 2002 (USA).zip",
"Interactive Multi-Game Demo Disc - March 2002 (USA).zip",
"Interactive Multi-Game Demo Disc - October 2001 (USA).zip",
"Interactive Multi-Game Demo Disc Version 10 (USA).zip",
"Interactive Multi-Game Demo Disc Version 11 (USA).zip",
"Interactive Multi-Game Demo Disc Version 12 (USA).zip",
"Interactive Multi-Game Demo Disc Version 13 (USA).zip",
"Interactive Multi-Game Demo Disc Version 14 (USA).zip",
"Interactive Multi-Game Demo Disc Version 15 (USA).zip",
"Interactive Multi-Game Demo Disc Version 16 (USA).zip",
"Interactive Multi-Game Demo Disc Version 17 (USA).zip",
"Interactive Multi-Game Demo Disc Version 18 (USA).zip",
"Interactive Multi-Game Demo Disc Version 19 (USA).zip",
"Interactive Multi-Game Demo Disc Version 20 (USA).zip",
"Interactive Multi-Game Demo Disc Version 21 (USA).zip",
"Interactive Multi-Game Demo Disc Version 22 (USA).zip",
"Interactive Multi-Game Demo Disc Version 23 (USA).zip",
"Interactive Multi-Game Demo Disc Version 24 (USA).zip",
"Interactive Multi-Game Demo Disc Version 25 (USA).zip",
"Interactive Multi-Game Demo Disc Version 26 (USA).zip",
"Interactive Multi-Game Demo Disc Version 27 (USA).zip",
"Interactive Multi-Game Demo Disc Version 28 (USA).zip",
"Interactive Multi-Game Demo Disc Version 29 (USA).zip",
"Interactive Multi-Game Demo Disc Version 30 (USA).zip",
"Interactive Multi-Game Demo Disc Version 31 (USA).zip",
"Interactive Multi-Game Demo Disc Version 32 (USA).zip",
"Interactive Multi-Game Demo Disc Version 33 (USA).zip",
"Interactive Multi-Game Demo Disc Version 34 (USA).zip",
"Interactive Multi-Game Demo Disc Version 35 (USA).zip",
"Interactive Multi-Game Demo Disc Version 7 (USA).zip",
"Interactive Multi-Game Demo Disc Version 8 (USA).zip",
"Interactive Multi-Game Demo Disc Version 9 (USA).zip",
"Interactive Multi-Game Demo Disk - April 2003 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - April 2003 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - April 2005 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - April 2006 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - December 2002 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - February 2003 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - February 2005 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - February 2005 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - July 2004 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - June 2003 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - March 2002 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - March 2004 (Australia).zip",
"Interactive Multi-Game Demo Disk - March 2004 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - May 2002 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - May 2004 (Australia).zip",
"Interactive Multi-Game Demo Disk - May 2004 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - May 2005 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - November 2002 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - November 2003 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - November 2003 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - November 2004 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - November 2004 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - October 2005 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - October 2005 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - September 2002 (Australia) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - September 2002 (Europe) (En,Fr,De,Es,It).zip",
"Interactive Multi-Game Demo Disk - September 2003 (Australia).zip",
"Interactive Multi-Game Demo Disk - September 2003 (Europe) (En,Fr,De,Es,It).zip",
"International Superstar Soccer 2 (Europe) (En,Fr,De,Es,It).zip",
"International Superstar Soccer 3 (Europe) (En,Fr,De,Es,It).zip",
"Italian Job, The (Europe) (En,Fr,De,Es,It).zip",
"Italian Job, The (USA).zip",
"Jeremy McGrath Supercross World (Europe) (En,Fr,De,Es,It).zip",
"Jeremy McGrath Supercross World (USA).zip",
"Jikkyou Powerful Major League (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 10 (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban - 2003 Memorial (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 11 (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 12 (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 12 - Ketteiban (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 9 (Japan).zip",
"Jikkyou Powerful Pro Yakyuu 9 - Ketteiban (Japan).zip",
"Jikkyou World Soccer 2002 (Japan).zip",
"Judge Dredd - Dredd vs. Death (Europe) (En,Fr).zip",
"Judge Dredd - Dredd vs. Death (Germany) (En,De).zip",
"Judge Dredd - Dredd vs. Death (USA).zip",
"Kaijuu no Shima - Amazing Island (Japan).zip",
"Kao the Kangaroo - Round 2 (Europe) (En,Fr,De,Es,It).zip",
"Kao the Kangaroo - Round 2 (USA).zip",
"Karaoke Revolution Party (USA).zip",
"Karat GC-you Pro Action Replay - Best Price! Sokukouryaku GC-you Vol. 1 (Japan) (Unl).zip",
"Karat GC-you Pro Action Replay PAR GC-you (Japan) (Unl) (v1.07).zip",
"Karat GC-you Pro Action Replay PAR GC-you (Japan) (Unl) (v1.1).zip",
"Karat GC-you Pro Action Replay PAR GC-you (Japan) (Unl) (v1.20A).zip",
"Kelly Slater's Pro Surfer (Europe) (En,Fr,De).zip",
"Kelly Slater's Pro Surfer (Europe, Australia).zip",
"Kelly Slater's Pro Surfer (USA).zip",
"Kero Kero King DX (Japan).zip",
"Kidou Senshi Gundam - Gundam vs. Z Gundam (Japan).zip",
"Kidou Senshi Gundam - Senshi-tachi no Kiseki (Japan) (Special Disc).zip",
"Kidou Senshi Gundam - Senshi-tachi no Kiseki (Japan).zip",
"Kidou Senshi Gundam - Senshi-tachi no Kiseki - Kadokawa Shoten Rengou Kikaku Tokubetsu-hen (Japan).zip",
"Killer7 (Europe) (En,Fr,De) (Disc 1).zip",
"Killer7 (Europe) (En,Fr,De) (Disc 2).zip",
"Killer7 (Japan) (Disc 1) (Rev 2).zip",
"Killer7 (Japan) (Disc 2) (Rev 2).zip",
"Killer7 (USA) (Disc 1) (Rev 1).zip",
"Killer7 (USA) (Disc 2) (Rev 1).zip",
"King Arthur (Europe) (En,Fr,De,Es,It).zip",
"King Arthur (USA).zip",
"Kinnikuman Nisei - Shinsedai Choujin vs. Densetsu Choujin (Japan).zip",
"Kinnikuman Nisei - Shinsedai Choujin vs. Densetsu Choujin Event-you Disc (Japan).zip",
"Kirby Air Ride (Europe) (En,Fr,De,Es,It).zip",
"Kirby Air Ride (Korea).zip",
"Kirby Air Ride (USA).zip",
"Kirby's Airride (Japan).zip",
"Kiwame Mahjong DX II - The 4th MONDO21Cup Competition (Japan).zip",
"Knights of the Temple - Infernal Crusade (Europe) (En,Fr,De,Es).zip",
"Knockout Kings 2003 (Europe) (En,Fr,De).zip",
"Knockout Kings 2003 (USA).zip",
"Konjiki no Gashbell!! Go! Go! Mamono Fight!! (Japan).zip",
"Konjiki no Gashbell!! Yuujou Tag Battle - Full Power (Japan).zip",
"Konjiki no Gashbell!! Yuujou Tag Battle 2 (Japan).zip",
"Kururin Squash! (Japan).zip",
"Kyojin no Doshin (Japan).zip",
"LEGO Star Wars - The Video Game (Europe) (Fr,De).zip",
"LEGO Star Wars - The Video Game (Europe).zip",
"LEGO Star Wars - The Video Game (USA).zip",
"LEGO Star Wars II - The Original Trilogy (Europe) (En,Fr,De,Da) (Rev 1).zip",
"LEGO Star Wars II - The Original Trilogy (Europe) (En,Fr,De,Da).zip",
"LEGO Star Wars II - The Original Trilogy (USA).zip",
"LEGO Super Soccer Adventure (Europe) (Proto).zip",
"Lara Croft Tomb Raider - Legend (Europe).zip",
"Lara Croft Tomb Raider - Legend (France).zip",
"Lara Croft Tomb Raider - Legend (Germany).zip",
"Lara Croft Tomb Raider - Legend (USA).zip",
"Largo Winch - Empire Under Threat (Europe) (En,Fr,De,Es,It).zip",
"Legend of Golfer (Japan).zip",
"Legend of Spyro, The - A New Beginning (Europe) (En,Fr,De,Es,It,Nl).zip",
"Legend of Spyro, The - A New Beginning (USA).zip",
"Legend of Zelda, The - Collector's Edition (Europe) (En,Fr,De,Es,It).zip",
"Legend of Zelda, The - Collector's Edition (USA, Canada).zip",
"Legend of Zelda, The - Four Swords Adventures (Europe) (En,Fr,De,Es,It).zip",
"Legend of Zelda, The - Four Swords Adventures (USA).zip",
"Legend of Zelda, The - Ocarina of Time & Master Quest (Australia) (En,Fr,De).zip",
"Legend of Zelda, The - Ocarina of Time & Master Quest (Europe) (En,Fr,De).zip",
"Legend of Zelda, The - Ocarina of Time & Master Quest (Korea).zip",
"Legend of Zelda, The - Ocarina of Time & Master Quest (USA, Canada).zip",
"Legend of Zelda, The - The Wind Waker (Europe) (En,Fr,De,Es,It).zip",
"Legend of Zelda, The - The Wind Waker (Korea).zip",
"Legend of Zelda, The - The Wind Waker (USA, Canada).zip",
"Legend of Zelda, The - Twilight Princess (Europe) (En,Fr,De,Es,It).zip",
"Legend of Zelda, The - Twilight Princess (USA).zip",
"Legends of Wrestling (Europe).zip",
"Legends of Wrestling (USA).zip",
"Legends of Wrestling II (Europe).zip",
"Legends of Wrestling II (USA).zip",
"Lemony Snicket - Raetselhafte Ereignisse (Germany).zip",
"Lemony Snicket's A Series of Unfortunate Events (Europe).zip",
"Lemony Snicket's A Series of Unfortunate Events (USA).zip",
"Looney Tunes - Back in Action (Europe) (En,Fr,De,Es,It).zip",
"Looney Tunes - Back in Action (USA) (Rev 1).zip",
"Looney Tunes - Back in Action (USA).zip",
"Lord of the Rings - Futatsu no Tou (Japan).zip",
"Lord of the Rings - Nakatsu Kuni Daisanki (Japan) (Disc 1).zip",
"Lord of the Rings - Nakatsu Kuni Daisanki (Japan) (Disc 2).zip",
"Lord of the Rings - Ou no Kikan (Japan).zip",
"Lord of the Rings, The - The Return of the King (Europe) (En,Nl,Sv).zip",
"Lord of the Rings, The - The Return of the King (USA).zip",
"Lord of the Rings, The - The Third Age (Europe) (Disc 1).zip",
"Lord of the Rings, The - The Third Age (Europe) (Disc 2).zip",
"Lord of the Rings, The - The Third Age (USA) (Disc 1).zip",
"Lord of the Rings, The - The Third Age (USA) (Disc 2).zip",