From a48670693a4935b12befd9ff08c98ba4f88b9f46 Mon Sep 17 00:00:00 2001 From: stephena Date: Sun, 5 Mar 2006 01:18:42 +0000 Subject: [PATCH] Reworked properties handling, resulting in less memory usage and greatly improved speed. The main stella.pro properties have been integrated directly into Stella, so a properties file needn't be distributed with the application any more. Support still exists for a system-wide stella.pro and a per-user user.pro; however, Stella will work fine without them. Greatly reduced memory usage in properties storage by moving to an enum-based key system (so string descriptors for keys are no longer being stored). Eliminated parsing and construction of the internal properties set by pre-parsing the data with a perl script (included in the new 'src/tools' directory). This pre-parser constructs a balanced binary search AVL tree in array format, so in the worst case, the BST only has to look through 12 entries. Fixed some string constructor issues, hopefully fixing compile problems with the WinCE port. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1016 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/debugger/gui/TiaOutputWidget.cxx | 4 +- stella/src/emucore/Cart.cxx | 182 +- stella/src/emucore/Console.cxx | 90 +- stella/src/emucore/DefProps.hxx | 4126 +++++++++++++++++++ stella/src/emucore/EventHandler.cxx | 191 +- stella/src/emucore/EventHandler.hxx | 8 +- stella/src/emucore/EventStreamer.cxx | 6 +- stella/src/emucore/FrameBuffer.cxx | 4 +- stella/src/emucore/OSystem.cxx | 8 +- stella/src/emucore/Props.cxx | 204 +- stella/src/emucore/Props.hxx | 116 +- stella/src/emucore/PropsSet.cxx | 130 +- stella/src/emucore/PropsSet.hxx | 42 +- stella/src/emucore/Settings.cxx | 4 +- stella/src/emucore/Switches.cxx | 8 +- stella/src/emucore/TIA.cxx | 22 +- stella/src/emucore/stella.pro | 9 +- stella/src/gui/EventMappingWidget.cxx | 18 +- stella/src/gui/GameInfoDialog.cxx | 111 +- stella/src/gui/GameInfoDialog.hxx | 18 +- stella/src/gui/LauncherDialog.cxx | 6 +- stella/src/tools/Btrees.pm | 328 ++ stella/src/tools/create_props.pl | 213 + stella/src/unix/OSystemUNIX.cxx | 6 +- 24 files changed, 5230 insertions(+), 624 deletions(-) create mode 100644 stella/src/emucore/DefProps.hxx create mode 100644 stella/src/tools/Btrees.pm create mode 100755 stella/src/tools/create_props.pl diff --git a/stella/src/debugger/gui/TiaOutputWidget.cxx b/stella/src/debugger/gui/TiaOutputWidget.cxx index 682aa17ce..02d5041d3 100644 --- a/stella/src/debugger/gui/TiaOutputWidget.cxx +++ b/stella/src/debugger/gui/TiaOutputWidget.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TiaOutputWidget.cxx,v 1.9 2006-02-22 17:38:04 stephena Exp $ +// $Id: TiaOutputWidget.cxx,v 1.10 2006-03-05 01:18:41 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -101,7 +101,7 @@ void TiaOutputWidget::handleMouseDown(int x, int y, int button, int clickCount) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void TiaOutputWidget::handleCommand(CommandSender* sender, int cmd, int data, int id) { - int ystart = atoi(instance()->console().properties().get("Display.YStart").c_str()); + int ystart = atoi(instance()->console().properties().get(Display_YStart).c_str()); switch(cmd) { diff --git a/stella/src/emucore/Cart.cxx b/stella/src/emucore/Cart.cxx index b74092bf0..7ec5b2f3b 100644 --- a/stella/src/emucore/Cart.cxx +++ b/stella/src/emucore/Cart.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart.cxx,v 1.18 2005-12-23 20:48:50 stephena Exp $ +// $Id: Cart.cxx,v 1.19 2006-03-05 01:18:41 stephena Exp $ //============================================================================ #include @@ -50,7 +50,7 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size, Cartridge* cartridge = 0; // Get the type of the cartridge we're creating - string type = properties.get("Cartridge.Type", true); + string type = properties.get(Cartridge_Type); // See if we should try to auto-detect the cartridge type if(type == "AUTO-DETECT") @@ -117,120 +117,70 @@ Cartridge::~Cartridge() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - string Cartridge::autodetectType(const uInt8* image, uInt32 size) { - // The following is a simple table mapping games to type's using MD5 values - struct MD5ToType - { - const char* md5; - const char* type; - }; - - static MD5ToType table[] = { - {"5336f86f6b982cc925532f2e80aa1e17", "E0"}, // Death Star - {"b311ab95e85bc0162308390728a7361d", "E0"}, // Gyruss - {"c29f8db680990cb45ef7fef6ab57a2c2", "E0"}, // Super Cobra - {"085322bae40d904f53bdcc56df0593fc", "E0"}, // Tutankamn - {"c7f13ef38f61ee2367ada94fdcc6d206", "E0"}, // Popeye - {"6339d28c9a7f92054e70029eb0375837", "E0"}, // Star Wars, Arcade - {"27c6a2ca16ad7d814626ceea62fa8fb4", "E0"}, // Frogger II - {"3347a6dd59049b15a38394aa2dafa585", "E0"}, // Montezuma's Revenge - {"6dda84fb8e442ecf34241ac0d1d91d69", "F6SC"}, // Dig Dug - {"57fa2d09c9e361de7bd2aa3a9575a760", "F8SC"}, // Stargate - {"3a771876e4b61d42e3a3892ad885d889", "F8SC"}, // Defender ][ - {"efefc02bbc5258815457f7a5b8d8750a", "FASC"}, // Tunnel runner - {"7e51a58de2c0db7d33715f518893b0db", "FASC"}, // Mountain King - {"9947f1ebabb56fd075a96c6d37351efa", "FASC"}, // Omega Race - {"0443cfa9872cdb49069186413275fa21", "E7"}, // Burger Timer - {"76f53abbbf39a0063f24036d6ee0968a", "E7"}, // Bump-N-Jump - {"3b76242691730b2dd22ec0ceab351bc6", "E7"}, // He-Man - {"ac7c2260378975614192ca2bc3d20e0b", "FE"}, // Decathlon - {"4f618c2429138e0280969193ed6c107e", "FE"}, // Robot Tank - {"6d842c96d5a01967be9680080dd5be54", "DPC"}, // Pitfall II - {"d3bb42228a6cd452c111c1932503cc03", "UA"}, // Funky Fish - {"8bbfd951c89cc09c148bfabdefa08bec", "UA"}, // Pleiades - {(char*)0, (char*)0} - }; - - // Get the MD5 message-digest for the ROM image - string md5 = MD5(image, size); - - // Take a closer look at the ROM image and try to figure out its type + // Guess type based on size const char* type = 0; - // First we'll see if it's type is listed in the table above - for(MD5ToType* entry = table; (entry->md5 != 0); ++entry) + if((size % 8448) == 0) { - if(entry->md5 == md5) - { - type = entry->type; - break; - } + type = "AR"; } - - // If we didn't find the type in the table then guess it based on size - if(type == 0) + else if((size == 2048) || (memcmp(image, image + 2048, 2048) == 0)) { - if((size % 8448) == 0) - { - type = "AR"; - } - else if((size == 2048) || (memcmp(image, image + 2048, 2048) == 0)) - { - type = "2K"; - } - else if((size == 4096) || (memcmp(image, image + 4096, 4096) == 0)) - { - type = "4K"; - } - else if((size == 8192) || (memcmp(image, image + 8192, 8192) == 0)) - { - type = isProbably3F(image, size) ? "3F" : "F8"; - } - else if((size == 10495) || (size == 10240)) - { - type = "DPC"; - } - else if(size == 12288) - { - type = "FASC"; - } - else if(size == 32768) - { - // Assume this is a 32K super-cart then check to see if it is - type = "F4SC"; + type = "2K"; + } + else if((size == 4096) || (memcmp(image, image + 4096, 4096) == 0)) + { + type = "4K"; + } + else if((size == 8192) || (memcmp(image, image + 8192, 8192) == 0)) + { + type = isProbably3F(image, size) ? "3F" : "F8"; + } + else if((size == 10495) || (size == 10240)) + { + type = "DPC"; + } + else if(size == 12288) + { + type = "FASC"; + } + else if(size == 32768) + { + // Assume this is a 32K super-cart then check to see if it is + type = "F4SC"; - uInt8 first = image[0]; - for(uInt32 i = 0; i < 256; ++i) + uInt8 first = image[0]; + for(uInt32 i = 0; i < 256; ++i) + { + if(image[i] != first) { - if(image[i] != first) - { - // It's not a super cart (probably) - type = isProbably3F(image, size) ? "3F" : "F4"; - break; - } + // It's not a super cart (probably) + type = isProbably3F(image, size) ? "3F" : "F4"; + break; } } - else if(size == 65536) - { - type = isProbably3F(image, size) ? "3F" : "MB"; - } - else if(size == 131072) - { - type = isProbably3F(image, size) ? "3F" : "MC"; - } - else - { - // Assume this is a 16K super-cart then check to see if it is - type = "F6SC"; + } + else if(size == 65536) + { + type = isProbably3F(image, size) ? "3F" : "MB"; + } + else if(size == 131072) + { + type = isProbably3F(image, size) ? "3F" : "MC"; + } + else + { + // Assume this is a 16K super-cart then check to see if it is + type = "F6SC"; - uInt8 first = image[0]; - for(uInt32 i = 0; i < 256; ++i) + uInt8 first = image[0]; + for(uInt32 i = 0; i < 256; ++i) + { + if(image[i] != first) { - if(image[i] != first) - { - // It's not a super cart (probably) - type = isProbably3F(image, size) ? "3F" : "F6"; - break; - } + // It's not a super cart (probably) + type = isProbably3F(image, size) ? "3F" : "F6"; + break; } } } @@ -289,31 +239,37 @@ Cartridge& Cartridge::operator = (const Cartridge&) // doesn't support bankswitching at all. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Cartridge::bank(uInt16 b) { +void Cartridge::bank(uInt16 b) +{ // do nothing. } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -int Cartridge::bank() { +int Cartridge::bank() +{ return 0; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -int Cartridge::bankCount() { +int Cartridge::bankCount() +{ return 1; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool Cartridge::patch(uInt16 address, uInt8 value) { +bool Cartridge::patch(uInt16 address, uInt8 value) +{ return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool Cartridge::save(ofstream& out) { +bool Cartridge::save(ofstream& out) +{ int size = -1; uInt8* image = getImage(size); - if(image == 0 || size <= 0) { + if(image == 0 || size <= 0) + { cerr << "save not supported" << endl; return false; } @@ -325,8 +281,8 @@ bool Cartridge::save(ofstream& out) { } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -uInt8* Cartridge::getImage(int& size) { +uInt8* Cartridge::getImage(int& size) +{ size = 0; return 0; } - diff --git a/stella/src/emucore/Console.cxx b/stella/src/emucore/Console.cxx index f752c7f29..ba5d78569 100644 --- a/stella/src/emucore/Console.cxx +++ b/stella/src/emucore/Console.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Console.cxx,v 1.83 2006-02-05 02:49:47 stephena Exp $ +// $Id: Console.cxx,v 1.84 2006-03-05 01:18:41 stephena Exp $ //============================================================================ #include @@ -83,19 +83,19 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, setDeveloperProperties(); // Make sure height is set properly for PAL ROM - if(myProperties.get("Display.Format", true) == "PAL") - if(myProperties.get("Display.Height") == "210") - myProperties.set("Display.Height", "250"); + if(myProperties.get(Display_Format) == "PAL") + if(myProperties.get(Display_Height) == "210") + myProperties.set(Display_Height, "250"); // Setup the controllers based on properties - string left = myProperties.get("Controller.Left", true); - string right = myProperties.get("Controller.Right", true); + string left = myProperties.get(Controller_Left); + string right = myProperties.get(Controller_Right); // Swap the ports if necessary // Note that this doesn't swap the actual controllers, // just the ports that they're attached to Controller::Jack leftjack, rightjack; - if(myProperties.get("Console.SwapPorts", true) == "NO") + if(myProperties.get(Console_SwapPorts) == "NO") { leftjack = Controller::Left; rightjack = Controller::Right; @@ -192,7 +192,7 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, uInt32 framerate = myOSystem->settings().getInt("framerate"); if(framerate == 0) { - string s = myProperties.get("Display.Format", true); + const string& s = myProperties.get(Display_Format); if(s == "NTSC") framerate = 60; else if(s == "PAL") @@ -210,7 +210,7 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, // The # of channels can be overridden in the AudioDialog box or on // the commandline, but it can't be saved. uInt32 channels; - string s = myProperties.get("Cartridge.Sound", true); + const string& s = myProperties.get(Cartridge_Sound); if(s == "STEREO") channels = 2; else if(s == "MONO") @@ -252,7 +252,7 @@ Console::Console(const Console& console) Console::~Console() { #ifdef CHEATCODE_SUPPORT - myOSystem->cheat().saveCheats(myProperties.get("Cartridge.MD5")); + myOSystem->cheat().saveCheats(myProperties.get(Cartridge_MD5)); #endif delete mySystem; @@ -279,19 +279,19 @@ Console& Console::operator = (const Console&) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::toggleFormat() { - string format = myProperties.get("Display.Format", true); + const string& format = myProperties.get(Display_Format); uInt32 framerate = 60; if(format == "NTSC") { - myProperties.set("Display.Format", "PAL"); + myProperties.set(Display_Format, "PAL"); mySystem->reset(); myOSystem->frameBuffer().showMessage("PAL Mode"); framerate = 50; } else if(format == "PAL") { - myProperties.set("Display.Format", "NTSC"); + myProperties.set(Display_Format, "NTSC"); mySystem->reset(); myOSystem->frameBuffer().showMessage("NTSC Mode"); framerate = 60; @@ -354,17 +354,17 @@ void Console::togglePalette(const string& palette) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::togglePhosphor() { - string phosphor = myProperties.get("Display.Phosphor", true); + const string& phosphor = myProperties.get(Display_Phosphor); bool enable; if(phosphor == "YES") { - myProperties.set("Display.Phosphor", "No"); + myProperties.set(Display_Phosphor, "No"); enable = false; myOSystem->frameBuffer().showMessage("Phosphor effect disabled"); } else { - myProperties.set("Display.Phosphor", "Yes"); + myProperties.set(Display_Phosphor, "Yes"); enable = true; myOSystem->frameBuffer().showMessage("Phosphor effect enabled"); } @@ -405,11 +405,11 @@ void Console::saveProperties(string filename, bool merge) void Console::initializeVideo() { string title = string("Stella ") + STELLA_VERSION + - ": \"" + myProperties.get("Cartridge.Name") + "\""; + ": \"" + myProperties.get(Cartridge_Name) + "\""; myOSystem->frameBuffer().initialize(title, myMediaSource->width() << 1, myMediaSource->height()); - bool enable = myProperties.get("Display.Phosphor", true) == "YES"; + bool enable = myProperties.get(Display_Phosphor) == "YES"; myOSystem->frameBuffer().enablePhosphor(enable); setPalette(); } @@ -433,7 +433,7 @@ void Console::setChannels(int channels) // Save to properties string sound = channels == 2 ? "Stereo" : "Mono"; - myProperties.set("Cartridge.Sound", sound); + myProperties.set(Cartridge_Sound, sound); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -465,8 +465,8 @@ void Console::fry() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::changeXStart(const uInt32 direction) { - Int32 xstart = atoi(myProperties.get("Display.XStart").c_str()); - uInt32 width = atoi(myProperties.get("Display.Width").c_str()); + Int32 xstart = atoi(myProperties.get(Display_XStart).c_str()); + uInt32 width = atoi(myProperties.get(Display_Width).c_str()); ostringstream strval; string message; @@ -495,7 +495,7 @@ void Console::changeXStart(const uInt32 direction) } strval << xstart; - myProperties.set("Display.XStart", strval.str()); + myProperties.set(Display_XStart, strval.str()); mySystem->reset(); initializeVideo(); @@ -507,7 +507,7 @@ void Console::changeXStart(const uInt32 direction) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::changeYStart(const uInt32 direction) { - Int32 ystart = atoi(myProperties.get("Display.YStart").c_str()); + Int32 ystart = atoi(myProperties.get(Display_YStart).c_str()); ostringstream strval; string message; @@ -531,7 +531,7 @@ void Console::changeYStart(const uInt32 direction) } strval << ystart; - myProperties.set("Display.YStart", strval.str()); + myProperties.set(Display_YStart, strval.str()); mySystem->reset(); initializeVideo(); @@ -543,8 +543,8 @@ void Console::changeYStart(const uInt32 direction) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::changeWidth(const uInt32 direction) { - uInt32 xstart = atoi(myProperties.get("Display.XStart").c_str()); - Int32 width = atoi(myProperties.get("Display.Width").c_str()); + uInt32 xstart = atoi(myProperties.get(Display_XStart).c_str()); + Int32 width = atoi(myProperties.get(Display_Width).c_str()); ostringstream strval; string message; @@ -573,7 +573,7 @@ void Console::changeWidth(const uInt32 direction) } strval << width; - myProperties.set("Display.Width", strval.str()); + myProperties.set(Display_Width, strval.str()); mySystem->reset(); initializeVideo(); @@ -585,7 +585,7 @@ void Console::changeWidth(const uInt32 direction) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::changeHeight(const uInt32 direction) { - Int32 height = atoi(myProperties.get("Display.Height").c_str()); + Int32 height = atoi(myProperties.get(Display_Height).c_str()); ostringstream strval; string message; @@ -609,7 +609,7 @@ void Console::changeHeight(const uInt32 direction) } strval << height; - myProperties.set("Display.Height", strval.str()); + myProperties.set(Display_Height, strval.str()); mySystem->reset(); initializeVideo(); @@ -642,64 +642,64 @@ void Console::setDeveloperProperties() s = settings.getString("type"); if(s != "") - myProperties.set("Cartridge.Type", s); + myProperties.set(Cartridge_Type, s); s = settings.getString("ld"); if(s != "") - myProperties.set("Console.LeftDifficulty", s); + myProperties.set(Console_LeftDifficulty, s); s = settings.getString("rd"); if(s != "") - myProperties.set("Console.RightDifficulty", s); + myProperties.set(Console_RightDifficulty, s); s = settings.getString("tv"); if(s != "") - myProperties.set("Console.TelevisionType", s); + myProperties.set(Console_TelevisionType, s); s = settings.getString("sp"); if(s != "") - myProperties.set("Console.SwapPorts", s); + myProperties.set(Console_SwapPorts, s); s = settings.getString("lc"); if(s != "") - myProperties.set("Controller.Left", s); + myProperties.set(Controller_Left, s); s = settings.getString("rc"); if(s != "") - myProperties.set("Controller.Right", s); + myProperties.set(Controller_Right, s); s = settings.getString("bc"); if(s != "") { - myProperties.set("Controller.Left", s); - myProperties.set("Controller.Right", s); + myProperties.set(Controller_Left, s); + myProperties.set(Controller_Right, s); } s = settings.getString("format"); if(s != "") - myProperties.set("Display.Format", s); + myProperties.set(Display_Format, s); s = settings.getString("xstart"); if(s != "") - myProperties.set("Display.XStart", s); + myProperties.set(Display_XStart, s); s = settings.getString("ystart"); if(s != "") - myProperties.set("Display.YStart", s); + myProperties.set(Display_YStart, s); s = settings.getString("width"); if(s != "") - myProperties.set("Display.Width", s); + myProperties.set(Display_Width, s); s = settings.getString("height"); if(s != "") - myProperties.set("Display.Height", s); + myProperties.set(Display_Height, s); s = settings.getString("pp"); if(s != "") - myProperties.set("Display.Phosphor", s); + myProperties.set(Display_Phosphor, s); s = settings.getString("hmove"); if(s != "") - myProperties.set("Emulation.HmoveBlanks", s); + myProperties.set(Emulation_HmoveBlanks, s); } diff --git a/stella/src/emucore/DefProps.hxx b/stella/src/emucore/DefProps.hxx new file mode 100644 index 000000000..fbda55f16 --- /dev/null +++ b/stella/src/emucore/DefProps.hxx @@ -0,0 +1,4126 @@ +//============================================================================ +// +// SSSS tt lll lll +// SS SS tt ll ll +// SS tttttt eeee ll ll aaaa +// SSSS tt ee ee ll ll aa +// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" +// SS SS tt ee ll ll aa aa +// SSSS ttt eeeee llll llll aaaaa +// +// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team +// +// See the file "license" for information on usage and redistribution of +// this file, and for a DISCLAIMER OF ALL WARRANTIES. +// +// $Id: DefProps.hxx,v 1.3 2006-03-05 01:18:41 stephena Exp $ +//============================================================================ + +#ifndef DEF_PROPS_HXX +#define DEF_PROPS_HXX + +/** + This code is generated using the 'create_props.pl' script, + located in the src/tools directory. All properties changes + should be made in stella.pro, and then this file should be + regenerated and the application recompiled. +*/ +static const char* DefProps[][21] = { + { "7f6533386644c7d6358f871666c86e79", "CommaVid", "CM-008", "Cakewalk (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "3e49da621193d2611a4ea152d5d5ca3a", "", "", "Atari Logo Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c569e57dca93d3bee115a49923057fd7", "", "", "Pac-Space (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2008c76deba5953201ef75a09b2ff7dc", "", "", "Fortress (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "604e09724555807c28108049efe34a13", "", "", "Sokoban (01-01-2003) (Adam Wozniak)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a3d7c299fbcd7b637898ee0fdcfc47fc", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "PAL", "8", "136", "52", "", "", "" }, + { "e39a13b13dc82c5fdbfbbfd55ba1230e", "", "", "Analog Clock (Additional Frame Info) (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0fcff6fe3b0769ad5d0cf82814d2a6d9", "Starsoft", "", "Aufruhr im Zoo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "51", "220", "", "" }, + { "2ef36341d1bf42e02c7ea2f71e024982", "", "", "Space Invaders (Explosion Hack)", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "4dd6f53684ccbb569fe9f41498d80018", "", "", "Image - Nude1 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6f74ed915ffe73b524ef0f63819e2a1d", "", "", "An Exercise In Minimalism (V2) (1999) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "931b91a8ea2d39fe4dca1a23832b591a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "" }, + { "b451307b8b5e29f1c5f2cf064f6c7227", "", "", "Demo Image Series #6 - Mario (Fixed) (26-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d605ed12f4eaaaec3dcd5aa909a4bad7", "", "", "Chronocolor Frame Demo (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f3213a8a702b0646d2eaf9ee0722b51c", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "" }, + { "083b17a1a6b3efc464ba7e789f1e194d", "", "", "Greeting Cart (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "176d3fba7d687f2b23158098e103c34a", "", "", "Combat AI (16-02-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "278155fc9956e9b6ef2359eb238f7c7f", "", "", "Donkey Kong Junior (Coleco) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "368d88a6c071caba60b4f778615aae94", "Atari", "CX26159", "Double Dunk (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "" }, + { "467340a18158649aa5e02a4372dcfccd", "", "", "H.E.R.O. (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "589c73bbcd77db798cb92a992b4c06c3", "Xonox", "", "Artillery Duel (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "186", "", "" }, + { "678c1d71a1616d9d022f03d8545b64bb", "", "", "Demo Image Series #11 - Donald And Mario (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "77cd9a9dd810ce8042bdb9d40e256dfe", "", "", "Evil Dead (2003) (Kyle Pittman) (Haunted House Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "888debb162d7d1ae71025b4ab794257f", "", "", "Interleaved ChronoColour - Nude Art (17-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c729017dd2f9ccbadcb511187f80e6b", "", "", "J-Pac (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "36", "202", "", "" }, + { "ac5f78bae0638cf3f2a0c8d07eb4df69", "", "", "Minesweeper (V.99) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "bdbaeff1f7132358ea64c7be9e46c1ac", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [a1]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "64", "193", "", "" }, + { "cddabfd68363a76cd30bee4e8094c646", "CommaVid", "", "Magicard (CommaVid)", "", "", "", "CV", "", "", "", "", "Keyboard", "", "", "", "", "25", "", "", "" }, + { "dd7884b4f93cab423ac471aa1935e3df", "", "", "Asteroids (1979) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "eb6d6e22a16f30687ade526d7a6f05c5", "Atari", "CX26150", "Q-bert (1988) (Atari) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "" }, + { "fa4404fabc094e3a31fcd7b559cdd029", "Atari", "", "Bugs Bunny (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "205", "", "" }, + { "04dfb4acac1d0909e4c360fd2ac04480", "", "", "Jammed (2001) (XYPE) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "", "" }, + { "0c7926d660f903a2d6910c254660c32c", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "" }, + { "13a991bc9c2ff03753aeb322d3e3e2e5", "Funvision", "", "Galactic (G) (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "220", "", "" }, + { "1bb91bae919ddbd655fa25c54ea6f532", "Starsoft", "", "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "67", "187", "", "" }, + { "2432f33fd278dea5fe6ae94073627fcc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "250", "Yes", "" }, + { "2bc26619e31710a9884c110d8430c1da", "Atari", "CX2652", "Casino (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "62", "247", "", "" }, + { "324cb4a749bcac4f3db9da842b85d2f7", "", "", "Climber 5 (01-05-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "201", "", "" }, + { "3a771876e4b61d42e3a3892ad885d889", "Atari", "CX26120", "Defender II (1984) (Atari)", "", "Rare", "", "F8SC", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "41810dd94bd0de1110bedc5092bef5b0", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "54", "176", "", "" }, + { "4a6be79310f86f0bebc7dfcba4d74161", "Telesys", "1006", "Demolition Herby (1982) (Telesys) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "187", "Yes", "" }, + { "5355f80cacf0e63a49cbf4ade4e27034", "Christian Samuel", "", "Cute Dead Things House by Christian Samuel (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "" }, + { "5c618a50dfa23daac97ba459b9ff5206", "", "", "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "" }, + { "6468d744be9984f2a39ca9285443a2b2", "Atari", "", "Othello (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "" }, + { "6a9e0c72fab92df70084eccd9061fdbd", "CCE", "", "Beany Bopper (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73158ea51d77bf521e1369311d26c27b", "Zellers", "", "Challenge (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "24", "220", "", "" }, + { "7b6f3348dbf71ada88db0fdaf7feefe0", "", "", "3-D Corridor (Pink Spiral) (31-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "83f05ececae8be59ba1e51135f4bdcbf", "", "", "Demo Image Series #13 - Mario (4K Interleaved Chronocolour) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8da51e0c4b6b46f7619425119c7d018e", "Atari", "CX26183", "Sentinel (1990) (Atari)", "Uses Light Gun Controller (left only)", "Rare", "", "F6", "", "", "", "", "Lightgun", "None", "", "8", "144", "46", "192", "", "" }, + { "97327d6962f8c64e6f926f79cd01c6b9", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "", "", "" }, + { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead by Barry Laws Jr. (Pac-Man Hack)", "", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "33", "208", "", "" }, + { "a81697b0c8bbc338ae4d0046ede0646b", "CCE", "", "Gravitar (1988) (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "", "" }, + { "aff8cba0f2d2eb239953dd7116894a08", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "" }, + { "b95a6274ca0e0c773bfdc06b4c3daa42", "", "", "3-D Corridor (29-03-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "ca4f8c5b4d6fb9d608bb96bc7ebd26c7", "Mattel", "MT4317", "Adventures of Tron (1983) (Mattel)", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "46", "180", "", "" }, + { "d1b4075925e8d3031a7616d2f02fdd1f", "", "", "Demo Image Series #7 - Two Marios (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "da732c57697ad7d7af414998fa527e75", "Atari", "CX26129", "Midnight Magic (1984) (Atari) (PAL) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "PAL", "8", "144", "61", "200", "Yes", "" }, + { "dff33523ccd2fdc8912e84cab8e0d982", "", "", "Fu Kung! (V0.03) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e6f49a1053c79211f82be4d90dc9fe3d", "", "", "Gunfight 2600 - Little progress... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "ef263d40a23483ab339cac44d9515a56", "", "", "Fatal Run (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f74ad642552385c3daa203a2a6fc2291", "Eckhard Stolberg", "", "Cubis (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "fbe554aa8f759226d251ba6b64a9cce4", "Atari", "CX2681", "Battlezone (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "PAL", "4", "152", "62", "199", "", "No" }, + { "028024fb8e5e5f18ea586652f9799c96", "Coleco", "2468", "Carnival (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "212", "", "" }, + { "06cfd57f0559f38b9293adae9128ff88", "Telegames", "", "Adventures on GX-12 (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "193", "", "" }, + { "0a981c03204ac2b278ba392674682560", "Atari", "CX2651 / 6699805 / 4975602", "Blackjack (1977) (Atari) [a1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "0e08cd2c5bcf11c6a7e5a009a7715b6a", "", "", "Boing! (PD) [a1]", "", "New Release", "", "4K", "", "", "", "", "", "", "", "", "", "35", "175", "", "" }, + { "1201c18cf00d2c236f42e4d7d8c86aa1", "", "", "Nick Bensema Demo (Nick Bensema)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "157bddb7192754a45372be196797f284", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari)", "", "Common", "", "4K", "", "", "", "", "", "None", "", "", "", "35", "194", "", "" }, + { "19829cfe884e30219c868b2d9a5b3540", "", "", "Death Derby (v0003) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e4990f2bfc79b47b9b091f0a1538eeb", "", "", "Greeting Cart Sue (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "218c0fe53dfaaa37f3c823f66eafd3fc", "Atari", "CX2624", "Basketball (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "206", "", "" }, + { "25bcf07491f65012a70a528959c4881c", "", "", "Greeting Cart Brook Burke Blue Bikini(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "292f2446a0325b7b423e88a2ebfeb5a0", "", "", "Cube Conquest (Non Interlaced) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d1cf85fbc732856bf76470cd4060f4a", "", "", "Daredevil (V1) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3105967f7222cc36a5ac6e5f6e89a0b4", "Sega", "011-02", "Spy Hunter (1983) (Sega) [!]", "", "Extremely Rare", "", "F8", "", "", "", "", "", "", "", "", "", "32", "207", "", "" }, + { "345769d085113d57937198262af52298", "", "", "Space Raid (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "200", "", "" }, + { "386ff28ac5e254ba1b1bac6916bcc93a", "Starpath", "AR-4300", "Fireball (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "8", "136", "32", "200", "", "" }, + { "3c82e808fe0e6a006dc0c4e714d36209", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "" }, + { "402b1ca3c230a60fb279d4a2a10fa677", "Atari", "", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "", "", "" }, + { "442602713cb45b9321ee93c6ea28a5d0", "Imagic", "", "Demon Attack (1982) (Imagic) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "" }, + { "481d20ec22e7a63e818d5ef9679d548b", "", "", "Freeway (AKA Rabbits) (PAL) [p1][!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "63", "193", "", "" }, + { "4c4ce802cbfd160f7b3ec0f13f2a29df", "", "", "Beta Demo (V1.1) (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "50568c80ac61cab789d9923c9b05b68e", "ebivision", "", "Merlin's Walls - Standard Edition (1999) (Ebivision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "55949cb7884f9db0f8dfcf8707c7e5cb", "", "CX2639 / 4975162", "Othello (1978) [p1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5ae73916fa1da8d38ceff674fa25a78a", "CCE", "", "Barnstorming (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "" }, + { "5f17fef8a64d64d119f8e76c50238762", "", "", "Acid Drop (1992) (Salu) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "", "" }, + { "62ffd175cac3f781ef6e4870136a2520", "", "", "2600 Digital Clock (V x.xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66362890eb78d6ea65301592cce65f5b", "", "", "Euchre (13-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "68cd2adc6b1fc9a1f263ab4561112f30", "", "", "Boulderdash Demo (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6d218dafbf5a691045cdc1f67ceb6a8f", "", "", "6 Digit Score Display (1998) (Robin Harbron) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "715dd9e0240638d441a3add49316c018", "", "", "128-in-1 Junior Console (Chip 2) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "757f529026696e13838364dea382a4ed", "Activision", "AX-014", "Grand Prix (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "" }, + { "79d4af56036ec28f298cad964a2e2494", "", "", "Hangman Pac-Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7dc03a1f56d0e6a8aae3e3e50d654a08", "", "", "Hozer Video Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "37", "197", "", "" }, + { "814210c0e121f7dbc25661b93c06311c", "", "", "Joustpong (16-09-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "862cf669cbced78f9ed31a5d375b2ebe", "", "", "Gunfight 2600 - Flicker acceptance (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "8b5b1e3a434ebbdc2c2a49dc68f46360", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli / 20th Century Fox", "", "Crash Dive (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "" }, + { "9526e3db3bdfbc27989a9cbfd0ee34bf", "", "", "Atari Logo Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9905f9f4706223dadee84f6867ede8e3", "Funvision", "", "Challenge (Funvision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "240", "", "" }, + { "9eca521db1959156a115dee85a405194", "", "", "Fu Kung! (V0.08) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a20b7abbcdf90fbc29ac0fafa195bd12", "Starsoft", "", "Motocross (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "" }, + { "a591b5e8587aae0d984a0f6fe2cc7d1c", "", "", "Globe Trotter Demo (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aab840db22075aa0f6a6b83a597f8890", "ITT Family Games", "", "Hell Driver (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "209", "", "" }, + { "ae18c11e4d7ed2437f0bf5d167c0e96c", "", "", "Multi-Color Demo 3 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b227175699e372b8fe10ce243ad6dda5", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) [a1][!]", "", "Common", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "No" }, + { "b6d52a0cf53ad4216feb04147301f87d", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "44", "190", "", "" }, + { "bc24440b59092559a1ec26055fd1270e", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "bff8f8f53a8aeb1ee804004ccbb08313", "", "", "Droid Demo 22 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "196", "", "" }, + { "c450a285daa7a3b65188c2c3cf04fb3e", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "c74bfd02c7f1877bbe712c1da5c4c194", "Activision / Thomas Jentzsch", "", "River Raid (Tanks Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "cbeafd37f15e0dddb0540dbe15c545a4", "", "", "Black and White Fast Scolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "193", "", "" }, + { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto by Paul Slocum (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "F8", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "230", "Yes", "" }, + { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "64", "209", "", "" }, + { "dba270850ae997969a18ee0001675821", "Greg Troutman", "", "Dark Mage (4K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "" }, + { "dea0ade296f7093e71185e802b500db8", "CCE", "", "Fishing Derby (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "" }, + { "e1a51690792838c5c687da80cd764d78", "", "", "Alligator People (20th Century Fox) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e549f1178e038fa88dc6d657dc441146", "Atari", "CX2625 / 6699827 / 4975114", "Football (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "" }, + { "e923001015bedd7901569f035d9c592c", "", "", "Adventure II (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "ed014beeeb77dbb2bbcf9b5f6850b2f4", "", "", "Green Bar Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "f0ee2b055fed6c1df4f3cbb2e12b2c15", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "f53f81fae276d72dbdba7064786a8266", "", "", "Death Derby (v0011) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f91fb8da3223b79f1c9a07b77ebfa0b2", "", "CX2615 / 4975140", "Demons to Diamonds (1982)", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "None", "", "", "", "35", "195", "", "" }, + { "fb0c32ef7af5b45486db663510094be8", "", "", "Demo Image Series #15 - Three Marios (NTSC) (Non-Interleave) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fe9ae625d924b54c9f8a14ac9a0f6c6d", "", "", "High Bid! (BG Dodson) (Pepsi Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "012020625a3227815e47b37fd025e480", "Atari", "CX2632", "Better Space Invaders (1999) (Rob Kudla) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "038e1e79c3d4410defde4bfe0b99cc32", "Atari", "", "Aquaventure (1983) (Atari) (Prototype)", "", "Unbelievably Rare", "", "F8", "", "", "", "", "", "", "", "", "", "35", "200", "", "No" }, + { "05d61b925d3d2474bab83f0a79bb5df1", "", "", "Cosmic Ark Stars (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "075ec8eb0aa39f0539bbaf5980203edb", "", "", "Image - Megaman (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "09274c3fc1c43bf1e362fda436651fd8", "", "", "Acid Drop (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b1056f1091cfdc5eb0e2301f47ac6c3", "Tigervision", "7-001", "King Kong (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "0d5af65ad3f19558e6f8e29bf2a9d0f8", "Atari", "CX26151", "Dark Chambers (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "", "", "64", "185", "Yes", "No" }, + { "0ef64cdbecccb7049752a3de0b7ade14", "Atari", "", "Combat (32-in-1) (Atari) (PAL) [!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "" }, + { "10958cd0a1a81d599005f1797ab0e51d", "Eduardo", "", "Centipede 2k (2000) (PD)", "Hack of Centipede (Atari)", "New Release (Hack)", "", "F8", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "" }, + { "133b56de011d562cbab665968bde352b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "1442d1b35a6478fba22ae7dd1fcb5634", "", "", "Thrust (V0.2) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "197", "", "" }, + { "16cb43492987d2f32b423817cdaaf7c4", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "", "", "39", "200", "", "" }, + { "1862fca4f98e66f363308b859b5863af", "", "", "128-in-1 Junior Console (Chip 1) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "184", "", "" }, + { "19d6956ff17a959c48fcd8f4706a848d", "Mystique", "", "Burning Desire (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "1d1d2603ec139867c1d1f5ddf83093f1", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [o1]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "", "", "39", "200", "", "" }, + { "1f21666b8f78b65051b7a609f1d48608", "CCE / Ultravision / K-Tel Vision", "C-851", "Condor Attack (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "20dca534b997bf607d658e77fbb3c0ee", "Mythicon", "MA-1002", "Fire Fly (1983) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "227532d82505c3c185a878273c285d5f", "", "", "Hangman Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24d9a55d8f0633e886a1b33ee1e0e797", "", "", "Dragon Defender (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "16", "249", "Yes", "" }, + { "26bc2bdf447a17376aea7ef187ff6e44", "", "", "Amanda Invaders (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "282a77841cb3d33af5b56151acba770e", "Starsoft", "", "Black Hole (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "2a10053fd08664c7cfbbb104386ed77f", "", "", "Alpha Demo - The Beta Demo (2000) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c3d5df0a55500cd59916dbb4fee3fa4", "", "", "Death Derby (Experiment 02) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2e1401b931c9eb064af5e0a7184e598d", "", "", "Death Derby (v0008) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "303242c239474f2d7763b843de58c1c3", "CCE", "", "Laser Blast (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "" }, + { "31bb9b8ceed46cb3e506777a9e65f3ce", "", "", "4 Pak (Light Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3347a6dd59049b15a38394aa2dafa585", "Parker Bros", "PB5760", "Montezuma's Revenge - Starring Panama Joe (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "35be55426c1fec32dfb503b4f0651572", "", "C-817", "Air Raid (Men-A-Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "239", "", "" }, + { "376944889dcfa96c73d3079f308e3d32", "Retroactive", "", "Qb (0.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "39bf392448c8bd39d48acc95ed3b423f", "", "", "Greeting Cart Barb (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b69f8929373598e1752f43f8da61aa4", "Starsoft", "", "Die Springteufel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "" }, + { "3d6fc7a19be76d808aa233415cb583fc", "CCE", "", "Carnival (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "212", "", "" }, + { "3f039981255691d3859d04ef813a1264", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "186", "", "" }, + { "4093382187f8387e6d011883e8ea519b", "HomeVision", "554-33391", "Col 'N (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "39", "214", "", "" }, + { "4279485e922b34f127a88904b31ce9fa", "Activision", "AX-026", "Enduro (1983) (Activision) [p1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "456453a54ca65191781aef316343ae00", "", "", "Full Screen Bitmap (3-D Green) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47711c44723da5d67047990157dcb5dd", "CCE", "", "Ice Hockey (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "490e3cc59d82f85fae817cdf767ea7a0", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p2][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "64", "188", "", "" }, + { "4b205ef73a5779acc5759bde3f6d33ed", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "64", "195", "", "" }, + { "4d2cef8f19cafeec72d142e34a1bbc03", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "246", "", "" }, + { "4f618c2429138e0280969193ed6c107e", "Activision", "AZ-028", "Robot Tank (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "" }, + { "523f5cbb992f121e2d100f0f9965e33f", "Joe Grand", "", "SCSIcide (1.30) (CGE 2001 Release) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "5409d20c1aea0b89c56993aec5dc5740", "", "", "Carnival Shooter (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "575c0fb61e66a31d982c95c9dea6865c", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "59", "220", "", "" }, + { "5a2f2dcd775207536d9299e768bcd2df", "Starsoft", "", "Flippern (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "194", "", "" }, + { "5b98e0536c3f60547dd708ae22adb04b", "", "", "Donkey Kong Gingerbread Man (Prototype) (Ben Hudman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5df32450b9fbcaf43f9d83bd66bd5a81", "", "", "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f73e7175474c1c22fb8030c3158e9b3", "Atari", "CX2665", "Frog Pond (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "6141c095d0aee4e734bebfaac939030a", "Starsoft", "", "Die Unterwasser-Bestien (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "" }, + { "63a6eda1da30446569ac76211d0f861c", "Activision", "AG-001", "Dragster (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "655c84e5b951258c9d20f0bf2b9d496d", "", "", "2600_2003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66bc1bef269ea59033928bac2d1d81e6", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "8", "136", "32", "200", "", "" }, + { "67cf913d1df0bf2d7ae668060d0b6694", "", "", "Hangman Monkey 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "69ebf910ab9b63e5b8345f016095003b", "", "", "Maze Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b8fb021bb2e1f1e9bd7ee57f2a8e709", "", "", "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e372f076fb9586aff416144f5cfe1cb", "Atari", "CX2646 / 4975185", "Pac-Man (1981) (Atari)", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "", "206", "", "" }, + { "703d32062436e4c20c48313dff30e257", "", "", "Moving Maze Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "72876fd7c7435f41d571f1101fc456ea", "Starsoft", "", "Die Ente und der Wolf (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "7450ae4e10ba8380c55b259d7c2b13e8", "", "", "Register Twiddler Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "184", "", "" }, + { "76a9bf05a6de8418a3ebc7fc254b71b4", "Videosoft", "VS1008", "Color Bar Generator (Videosoft)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "791bc8aceb6b0f4d9990d6062b30adfa", "Activision", "AB-035-04", "Pitfall! (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "201", "", "" }, + { "7a93d0c029eaa72236523eedc3f19645", "", "", "20 Sprites at Once Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ccf350354ee15cd9b85564a2014b08c", "", "", "Big Dig (13-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7eaf009a892f03d90682dc1e67e85f07", "", "", "Bounce! (18-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "808c3b1e60ee0e7c65205fa4bd772221", "CCE", "", "Defender (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "826481f6fc53ea47c9f272f7050eedf7", "Imagic", "", "Atlantis II (1982) (Imagic) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "85478bb289dfa5c63726b9153992a920", "", "", "Candi (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "876a953daae0e946620cf05ed41989f4", "Retroactive", "", "Qb (V2.08) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "89a68746eff7f266bbf08de2483abe55", "Atari", "CX2696", "Asterix (1988) (Atari) (Prototype) (NTSC)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "40", "191", "", "" }, + { "8c8a26ed57870daba8e13162d497bad1", "HES", "", "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "" }, + { "8f53a3b925f0fd961d9b8c4d46ee6755", "Starsoft", "SM8002", "Astrowar (Starsoft)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "202", "", "" }, + { "91c2098e88a6b13f977af8c003e0bca5", "Atari", "CX2676", "Centipede (1982) (Atari) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "" }, + { "93c9f9239a4e5c956663dd7affa70da2", "Starsoft", "", "Billard (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "186", "Yes", "" }, + { "962ffd3eaf865230a7a312b80e6c5cfd", "", "", "Fathom (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "98555b95cb38e0e0b22b482b2b60a5b6", "", "", "Fire Spinner (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "213", "Yes", "" }, + { "9ad362179c2eea4ea115c7640b4b003e", "Activision", "AX-013", "Barnstorming (1982) (Activision) [p1][!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "" }, + { "9e01f7f95cb8596765e03b9a36e8e33c", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari)", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "195", "", "" }, + { "9f48eeb47836cf145a15771775f0767a", "Atari", "CX262", "Basic Programming (1978) (Atari)", "Uses Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "8", "152", "37", "221", "Yes", "" }, + { "a100eff2d7ae61ca2b8e65baf7e2aae8", "David Marli", "", "Muncher by David Marli (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "33", "", "", "" }, + { "a29fc854838e08c247553a7d883dd65b", "Activision", "AX-013", "Barnstorming (1982) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "" }, + { "a4aa7630e4c0ad7ebb9837d2d81de801", "", "", "Atari 2600 Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "" }, + { "a6637741b3e1111ebb0d4c9712a871b6", "", "", "Greeting Cart Cindy Margolis (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a94b8ca630f467b574b614808d813919", "", "", "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "230", "", "" }, + { "ab5bf1ef5e463ad1cbb11b6a33797228", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "42", "192", "", "" }, + { "ad2e6bfb3b9b9b36ba8bf493ce764c49", "", "", "2600 Collison Demo 1 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aea308e30cd92cc73dc0c7f53f69ec56", "", "", "Death Derby (2LK_12) (24-02-2003) (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b12a7f63787a6bb08e683837a8ed3f18", "", "", "Demon Attack (1982) (Imagic) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b2f0d7217147160b2f481954cedf814b", "", "", "Marquee Drawer (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b59417d083b0be2d49a7d93769880a4b", "", "", "Donkey Kong (1983) (Pet Boat) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "" }, + { "b7f184013991823fc02a6557341d2a7a", "", "", "Blue Rod Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "224", "", "" }, + { "ba657d940a11e807ff314bba2c8b389b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [o1]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "bcb2967b6a9254bcccaf906468a22241", "Activision", "", "Demon Attack (1983) (Activision) [!]", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "39", "194", "", "" }, + { "be929419902e21bd7830a7a7d746195d", "Activision", "AX-025", "Keystone Kapers (1983) (Activision)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "39", "195", "", "" }, + { "c17bdc7d14a36e10837d039f43ee5fa3", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "c3472fa98c3b452fa2fd37d1c219fb6f", "Atari", "CX2637 / 4975158", "Dodge 'em (1980) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "57", "180", "", "" }, + { "c4be1f4024fa8840fcfcbbbc9befff11", "", "", "Greeting Cart 2600 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c67ff409f28f44883bd5251cea79727d", "", "", "Gunfight 2600 - Music & Bugfixes 1 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "c8c7da12f087e8d16d3e6a21b371a5d3", "", "", "Demo Image Series #9 - Genius (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb8afcbc4a779b588b0428ea7af211d5", "Activision", "", "Atlantis (1982) (Activision) [!]", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "cd38ad19f51b1048d8e5e99c86a2a655", "", "", "Demo Image Series #5 - Flag (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cf3a9ada2692bb42f81192897752b912", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "226", "", "" }, + { "d0a379946ed77b1b126230ca68461333", "", "", "Atari Invaders by Ataripoll (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "d2c957dd7746521b51bb09fde25c5774", "Eckhard Stolberg", "", "Cubis (6K) (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d4aa89e96d2902692f5c45f36903d336", "", "", "Euchre (NTSC) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d6dc9b4508da407e2437bfa4de53d1b2", "HomeVision", "", "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "205", "", "" }, + { "d90205e29bb73a4cdf28ea7662ba0c3c", "", "", "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dafc3945677ccc322ce323d1e9930beb", "", "", "A-Team, The (Atari) (Prototype) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "" }, + { "dcec46a98f45b193f07239611eb878c2", "", "", "Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de1e9fb700baf8d2e5ae242bffe2dbda", "Activision", "", "Commando (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "" }, + { "df62a658496ac98a3aa4a6ee5719c251", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "40", "219", "", "" }, + { "e0de3773f5b867795db557be7b8a703e", "", "", "Boulderdash (13 Blocks Wide) (02-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e2ca84a2bb63d1a210ebb659929747a9", "", "", "Cosmic Creeps (1982) (Telesys) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "212", "Yes", "" }, + { "e4bff1d5df70163c0428a1ead309c22d", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "e61210293b14c9c4ecc91705072c6a7e", "", "", "Bugs (1983) (Gameworld) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "", "", "" }, + { "e80a4026d29777c3c7993fbfaee8920f", "R.J.P.G.", "", "Brick Kick (RJPG)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eada0dd61ce13f8317de774dc1e68604", "", "", "2600 Digital Clock (Demo 1) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ebf9038e927e6a0db3e0d170c59911e6", "", "", "Pac-2600 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "202", "", "" }, + { "ee6665683ebdb539e89ba620981cb0f6", "Coleco", "2658", "Berenstain Bears (1982) (Coleco)", "", "Unbelievably Rare", "", "F8", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f0541d2f7cda5ec7bab6d62b6128b823", "Atari", "", "Bionic Breakthrough (1984) (Atari) (Prototype)", "Uses Mindlink Controller (left only)", "Prototype", "", "", "", "", "", "", "Mindlink", "None", "", "", "", "36", "196", "", "" }, + { "f1b7edff81ceef5af7ae1fa76c8590fc", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [p1][!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "47", "230", "", "" }, + { "f457674cef449cfd85f21db2b4f631a7", "US Games", "VC 1004", "Commando Raid (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "f69d4fcf76942fcd9bdf3fd8fde790fb", "CCE", "", "Aquaventure (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "35", "200", "", "No" }, + { "f8240e62d8c0a64a61e19388414e3104", "Activision", "AX-013", "Barnstorming (1982) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "" }, + { "f97dee1aa2629911f30f225ca31789d4", "Avalon Hill", "", "Out of Control (1983) (Avalon Hill)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fac28963307b6e85082ccd77c88325e7", "CCE", "", "Berzerk (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "fb88c400d602fe759ae74ef1716ee84e", "20th Century Fox", "11031", "Crash Dive (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "", "201", "", "" }, + { "fd4f5536fd80f35c64d365df85873418", "Atari", "CX26140", "Desert Falcon (1987) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "17", "", "", "" }, + { "ff4ed162386c795b4fb434903295b571", "", "", "Death Derby (v0002) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "", "", "" }, + { "00b7b4cbec81570642283e7fc1ef17af", "Sega", "006-01", "Congo Bongo (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "01b09872dcd9556427761f0ed64aa42a", "", "", "Galaga (River Raid clone) [p1]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "30", "202", "", "" }, + { "02e3f4ba156fb578bef7d7a0bf3400c1", "", "", "Booster (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0443cfa9872cdb49069186413275fa21", "Mattel", "MT4518", "Burgertime (1982) (Mattel)", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "", "31", "180", "", "" }, + { "056ff67dd9715fafa91fb8b0ddcc4a46", "", "", "Brick Kick (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "230", "", "" }, + { "0685bd0bcb975ceef7041749a5454a48", "Piero Cavina", "", "11 Sprite Demo (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "36", "196", "", "" }, + { "073d7aff37b7601431e4f742c36c0dc1", "", "SS-009", "Bermuda (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "30", "199", "", "" }, + { "0805366f1b165a64b6d4df20d2c39d25", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "64", "191", "", "" }, + { "08bd4c1dcc843f6a0b563d9fd80b3b11", "Starsoft", "", "Phantom Panzer II (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "212", "", "" }, + { "097074f24cde141fe6a0f26a10333265", "", "", "Marble Craze (V0.90) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0ae3497e731ca0bf6a77b23441d9d9f9", "", "", "Analog Clock (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0bf1e354304f46c0caf8fc0f6f5e9525", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "" }, + { "0cebb0bb45a856b23f56d21ce7d1bc34", "", "", "Crash Dive (1983) (20th Century Fox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "240", "", "" }, + { "0de53160a8b54c3aa5aed8d68c970b62", "Starsoft", "", "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "182", "", "" }, + { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli / CommaVid", "", "Cakewalk (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "" }, + { "0f341d1f4e144e3163d9a5fc5a662b79", "", "", "RUN Platform Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "103f1756d9dc0dd2b16b53ad0f0f1859", "ITT Family Games", "554-33391", "Alien's Return (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "214", "", "" }, + { "114c599454d32f74c728a6e1f71012ba", "Activision", "AX-015", "Chopper Command (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "" }, + { "1287535256bf5dff404839ac9e25c3e7", "", "", "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "12", "136", "39", "188", "Yes", "" }, + { "13782adc70e285d51e2f4dd9c3094166", "", "", "Death Derby (21-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1423f560062c4f3c669d55891a2bcbe7", "CCE", "", "M.A.S.H. (CCE) (no logo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "" }, + { "152c253478b009c275e18cd731b48561", "", "", "Quest (11-10-2002) (Chris Larkin)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "161ded4a85d3c78e44fffd40426f537f", "", "", "JtzBall (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "171cd6b55267573e6a9c2921fb720794", "Atari / Kurt Howe", "", "Adventure 34 by Kurt Howe (Adventure Hack)", "", "New Release (Hack)", "", "4K", "", "", "", "", "", "None", "", "", "", "35", "195", "", "" }, + { "17c0a63f9a680e7a61beba81692d9297", "US Games", "VC 2004", "Picnic (1982) (US Games) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "196", "", "" }, + { "18dc28bc22402f21e1c9b81344b3b8c5", "", "", "Galaxian (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "", "", "", "" }, + { "19a9d3f9fa1b1358fb53009444247aaf", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "59", "220", "", "" }, + { "1a23540d91f87584a04f184304a00648", "", "", "Race Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1c8c42d1aee5010b30e7f1992d69216e", "Mystique", "1009", "Gigolo (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "" }, + { "1db3bc4601f22cf43be7ce015d74f59a", "", "", "Ship Demo (V 10) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1edfbde1dba5498c14dcb80277cd9b99", "", "", "Death Derby (v0006) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f773a94d919b2a3c647172bbb97f6b4", "Atari", "CX2678", "Dumbo's Flying Circus (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "230", "", "" }, + { "205070b6a0d454961dd9196a8e81d877", "", "", "Hangman Monkey Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "212d0b200ed8b45d8795ad899734d7d7", "Coca Cola", "", "Pepsi Invaders (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "224", "", "" }, + { "2240655247d6de1c585564004a853ab7", "", "", "Fu Kung! (V0.17) (07-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2365e1534d67f94d8670394ab99150ce", "", "", "Missile Command (CX-80 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "24759be31e8fe55d2829fd86bdf3181f", "Hozer Video Games", "", "Gunfight 2600 - Worst Nightmare... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "" }, + { "25710bde8fa181b0c5cf0846b983bec1", "", "", "Demo Image Series #15 - Three Marios (NTSC) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25f9cf703575c5d63048c222f5463758", "", "", "Multi-Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "274d17ccd825ef9c728d68394b4569d2", "Mystique-Playaround", "1004", "Bachelorette Party (1982) (Mystique-Playaround)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "27", "219", "Yes", "" }, + { "27f9e2e1b92af9dc17c6155605c38e49", "CCE", "", "Nightmare (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "" }, + { "2903896d88a341511586d69fcfc20f7d", "Activision", "AX-014", "Grand Prix (1982) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "" }, + { "29949f893ef6cb9e8ecb368b9e99eee4", "Erik Eid", "", "Euchre (Alpha) (NTSC) (31-08-2002) (Erik Eid)", "", "New Release", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2abc3d46b3f2140160759e2e10bc86d9", "", "", "Gunfight 2600 - Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "2c29182edf0965a7f56fe0897d2f84ba", "Atari", "CX26192", "Klax (1990) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2cefa695df2ed020899a7df7bb1e3a95", "", "", "A-Team (2002) (Manuel Polik And Fabrizio Zavagli) (A-Team Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2dbdca3058035d2b40c734dcf06a86d9", "Thomas Jentzsch", "", "Asteroids DC+ by Thomas Jentzsch (Asteroids Hack)", "Uses the Joystick (left) or Steering (right) Controller", "New Release (Hack)", "", "F8", "", "", "", "", "", "Driving", "", "", "", "37", "192", "Yes", "No" }, + { "2e842c2ee22e9dad9df16eed091315c4", "", "", "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "250", "", "" }, + { "2fa5f90deb8b84ecaf64f5fb11c0fd93", "", "", "Death Derby (19-01-2003) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30c92c685224dc7a72b9bbe5eb62d004", "", "", "Hangman Monkey Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "317a4cdbab090dcc996833d07cb40165", "Goliath", "", "Missile War (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "205", "", "" }, + { "321c3451129357af42a375d12afd4450", "", "", "Ikari Warriors (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "32f4e47a71601ab06cfb59e1c6a0b846", "Ed Federmeyer", "", "Sound X (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "" }, + { "34303a7d4c9ad4500ca7f2ede9709595", "", "", "Excalibur 39 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3556e125681aea864e17b09f3f3b2a75", "", "", "Incoming (2 Player Demo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36547bc6faa5132b87504e18d088e1d7", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "" }, + { "36f9a953ebdd9a8be97ccf27a2041903", "", "", "Chinese Character Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "384db97670817103dd8c0bbdef132445", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "40", "219", "", "" }, + { "391764720140c432aec454a468f77a40", "Video Game Program", "", "Miss Pack Man (Video Game Program) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "" }, + { "3a2e2d0c6892aa14544083dfb7762782", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3b10106836565e5db28c7823c0898fbb", "", "", "Ghost Manor (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "230", "", "" }, + { "3b966bf3c2ca34ac6ca1de4cf6383582", "", "", "Double-Height 6-Digit Score Display (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d2367b2b09c28f1659c082bb46a7334", "Imagic", "IA3203", "Atlantis (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "3d934bb980e2e63e1ead3e7756928ccd", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "57", "205", "", "" }, + { "3edd0525a19e4fc612d99c74dffd8716", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f75a5da3e40d486b21dfc1c8517adc0", "Atari", "", "Sky Diver (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "" }, + { "4066309eb3fa3e7a725585b9814bc375", "", "", "Multi Ball Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40d8ed6a5106245aa79f05642a961485", "Xonox", "99002", "Ghost Manor (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "230", "", "" }, + { "4233eb824c2b4811abef9b6d00355ae9", "Retroactive", "", "Qb (V0.10) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "" }, + { "4311a4115fb7bc68477c96cf44cebacf", "Funvision", "", "Challenge (Funvision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "17", "240", "", "" }, + { "448c2a175afc8df174d6ff4cce12c794", "", "", "Pitfall II - Lost Caverns (1984) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "461029ab23800833e9645be3e472d470", "", "", "Combat TC (v0.1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "46e9428848c9ea71a4d8f91ff81ac9cc", "", "", "Astroblast (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "47b82d47e491ac7fdb5053a88fccc832", "", "", "Asteroid 2 (Atari Freak 1 and Franklin Cruz)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "" }, + { "4868a81e1b6031ed66ecd60547e6ec85", "Eric Mooney", "", "Invaders by Erik Mooney (V2.1) (1-3-98) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4999b45be0ab5a85bac1b7c0e551542b", "CCE", "", "Double Dragon (CCE)", "", "", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "" }, + { "4ae8c76cd6f24a2e181ae874d4d2aa3d", "20th Century Fox", "11015", "Flash Gordon (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "198", "", "" }, + { "4c0fb2544ae0f8b5f7ae8bce7bd7f134", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "", "", "25", "", "", "" }, + { "4ca0959f846d2beada18ecf29efe137e", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "215", "", "" }, + { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)", "Bump 'n' Jump Hack", "", "", "E7", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "" }, + { "4e4895c3381aa4220f8c2795d6338237", "", "", "Backwards Cannonball v1 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "4faeb04b1b7fb0fa25db05753182a898", "", "", "2600 Digital Clock (V x.xx) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "51de328e79d919d7234cf19c1cd77fbc", "Atari", "CX2678", "Dukes of Hazzard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "52bae1726d2d7a531c9ca81e25377fc3", "", "", "Space Instigators (V1.8 Fixed) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5385cf2a04de1d36ab55c73174b84db0", "", "", "Combat Rock (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "551a64a945d7d6ece81e9c1047acedbc", "Matthias Jaap", "", "Coffee Cup Soccer by matthias Jaap (Pele's Soccer Hack)", "Hack of Pele's Soccer (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "56300ed31fef018bd96768ccc982f7b4", "HES", "", "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "238", "", "" }, + { "57c5b351d4de021785cf8ed8191a195c", "", "CX26102", "Cookie Monster Munch (1983) (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "35", "192", "", "" }, + { "599cbf919d47a05af975ad447df29497", "", "", "Baubles (V0.002) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5a734779d797ccef25dc8acfa47244c7", "", "", "Oh No! (Version 2) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b124850de9eea66781a50b2e9837000", "Mystique", "1002", "Bachelor Party (1982) (Mystique)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "27", "219", "Yes", "" }, + { "5c0227ad63300670a647fcebf595ea37", "Imagic / Josh", "", "Battle for Naboo by Josh (Atlantis Hack)", "Hack of Atlantis (Imagic)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "5d8fb14860c2f198472b233874f6b0c9", "", "", "Boing! (PD) [a2]", "", "New Release", "", "4K", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "5e99aa93d0acc741dcda8752c4e813ce", "", "", "2600 Digital Clock (V b2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f46d1ff6d7cdeb4b09c39d04dfd50a1", "Atari", "CX2661", "Fun with Numbers (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "22", "", "", "" }, + { "60358edf0c2cc76b1e549e031e50e130", "Manuel Polik", "", "Cyber Goth Galaxian by Manuel Polik (Galaxian Hack)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "F8", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "" }, + { "60d304582d33e2957b73eb300a7495bb", "", "", "Jam Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "61ef8c2fc43be9a04fe13fdb79ff2bd9", "", "", "Gas Gauge Demo - Revisited (2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6342afe9c9ad1b6120b8f6fb040d0926", "", "", "Move a Blue Blob Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "64198bb6470c78ac24fcf13fe76ab28c", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "64d43859258dc8ca54949e9ff4174202", "Starsoft / Thomas Jentzsch", "", "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "152", "", "227", "", "" }, + { "65b106eba3e45f3dab72ea907f39f8b4", "Sparrow", "GCG 1001T", "Music Machine (1983) (Sparrow)", "Uses the Paddle Controllers", "Unbelievably Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "8", "144", "41", "205", "", "" }, + { "6672de8f82c4f7b8f7f1ef8b6b4f614d", "Ariola", "", "Angling (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "183", "", "" }, + { "675ae9c23fa1aae376cea86cad96f9a5", "", "", "Poker Squares (V0.25) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "679d30c7886b283cbe1db4e7dbe5f2a6", "Colin Hughes", "", "Puzzle (Colin Hughes) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "68597264c8e57ada93be3a5be4565096", "Data Age", "DA 1005", "Bugs (1982) (Data Age) [!]", "Uses paddle controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "698f569eab5a9906eec3bc7c6b3e0980", "", "", "Demons! (2003) (SpkLeader) (Phoenix Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a82b8ecc663f371b19076d99f46c598", "Activision", "AX-026", "Enduro (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "12", "140", "64", "214", "", "" }, + { "6b71f20c857574b732e7a8e840bd3cb2", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "222", "", "" }, + { "6c91ac51421cb9fc72c9833c4f440d65", "ITT Family Games", "", "Cosmic Town (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "6de924c2297c8733524952448d54a33c", "CCE", "", "Moon Patrol (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "" }, + { "6e7ed74082f39ad4166c823765a59909", "", "", "Poker Squares (V0.14) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fc394dbf21cf541a60e3b3631b817f1", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "62", "201", "", "" }, + { "70a8480cfaf08776e5420365732159d2", "Rob Kudla", "", "Horizontally Scrolling Playfield Thing (Rob Kudla) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "71f09f128e76eb14e244be8f44848759", "", "", "Astro Attack (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "230", "", "" }, + { "72db1194b1cc7d45b242f25eb1c148d3", "", "", "Pac-Man (1981) (Atari) [h1]", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "", "206", "", "" }, + { "73cb1f1666f3fd30b52b4f3d760c928f", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "228", "Yes", "" }, + { "75169c08b56e4e6c36681e599c4d8cc5", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "" }, + { "75e276ba12dc4504659481c31345703a", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "152", "52", "", "", "" }, + { "7732e4e4cc2644f163d6650ddcc9d9df", "HES", "", "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "" }, + { "7860716fa5dbc0fffab93fb9a4cb4132", "", "", "Hangman Monkey Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "79ab4123a83dc11d468fb2108ea09e2e", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "38", "190", "", "" }, + { "79fcdee6d71f23f6cf3d01258236c3b9", "Atari", "CX2673", "Phoenix (1982) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "7af40c1485ce9f29b1a7b069a2eb04a7", "Amiga", "3120", "Mogul Maniac (1983) (Amiga) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "33", "197", "", "" }, + { "7c757bb151269b2a626c907a22f5dae7", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "201", "", "" }, + { "7d93071b3e3616093a6b5a98b0315751", "", "", "Gunfight 2600 - Music & Bugfixes 2 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "" }, + { "7e4783a59972ae2cd8384f231757ea0b", "Atari", "CX26139", "Crossbow (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "188", "", "" }, + { "7f07cd2e89dda5a3a90d3ab064bfd1f6", "Ariola", "", "Boxen (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "60", "216", "", "" }, + { "7ffc2d80fd49a124808315306d19868e", "Ishido", "", "Domino (Ishido) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "81341f00b61ab37d19d1529f483d496d", "", "", "Fu Kung! (V0.04) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "819aeeb9a2e11deb54e6de334f843894", "Atari", "CX2661", "Fun with Numbers (1977) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "8372eec01a08c60dbed063c5524cdfb1", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "", "", "" }, + { "84d1cf884f029e458db196548db9c2ad", "Ishido", "", "Domino (Ishido) (PD) [b1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85dcc70a0adeb2e001e5df387612de24", "", "", "Greeting Cart Gene (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8726c17ee7b559cb7bf2330d20972ad0", "", "", "Cave Demo (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "883258dcd68cefc6cd4d40b1185116dc", "Activision", "AZ-030", "Decathlon (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "" }, + { "8917f7c1ac5eb05b82331cf01c495af2", "Bitcorp", "PG202", "Space Tunnel (Bitcorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "259", "", "" }, + { "8a9d953ac3db52a313a90d6a9b139c76", "", "", "Hangman Invader Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "" }, + { "8d00a38f4c8f8800f1c237215ac243fc", "", "", "3-D Corridor (Green) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e879aa58db41edb67cbf318b77766c4", "CCE / Thomas Jentzsch", "", "Cosmic Commuter (PAL by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "PAL", "8", "152", "37", "192", "", "" }, + { "8fe00172e7fff4c1878dabcf11bb8dce", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "187", "Yes", "" }, + { "910dd9bf98cc5bc080943e5128b15bf5", "", "", "Gunfight 2600 - Improved AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "9295570a141cdec18074c55dc7229d08", "Telegames", "", "Bump 'N' Jump (Telegames) (PAL) [!]", "", "", "", "E7", "", "", "", "", "", "", "PAL", "", "", "41", "188", "", "" }, + { "937736d899337036de818391a87271e0", "Atari", "CX26108", "Donald Duck's Speedboat (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "" }, + { "9469d18238345d87768e8965f9f4a6b2", "CCE", "", "Ms. Pac-Man (1982) (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "35", "195", "", "No" }, + { "95a89d1bf767d7cc9d0d5093d579ba61", "Playaround", "", "Lady in Wading (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "968efc79d500dce52a906870a97358ab", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "40", "192", "", "" }, + { "97d0151beb84acbe82aa6db18cd91b98", "", "", "Lunar Attack (2002) (Steve Engelhardt) (Z-Tack Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98e5e4d5c4dd9a986d30fd62bd2f75ae", "", "", "Air-Sea Battle (1977) (Atari) [o1][h1]", "", "", "", "2K", "", "", "", "", "", "", "", "", "", "39", "200", "", "" }, + { "9989f974c3cf9c641db6c8a70a2a2267", "", "", "Colours Selector (Eckhard Stolberg) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "9be58a14e055b0e7581fc4d6c2f6b31d", "", "", "Adventure (Color Scrolling) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d2f05d0fe8b2dfcf770b02eda066fc1", "", "", "Push (V0.06) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9e792a59f8795664cbaaff1ba152d731", "", "", "Bullet Demo (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9efb4e1a15a6cdd286e4bcd7cd94b7b8", "20th Century Fox", "", "Planet of the Apes (20th Century Fox) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "45", "173", "", "" }, + { "9f93734c68f6479eb022cab40814142e", "", "", "Push (V0.07) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "No" }, + { "a19215975aeca1d98328173a124c47f7", "", "", "Death Derby (12-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a23ffc86804240ce77134a1c91926685", "", "", "Star Fire - Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a310494ad5ba2b5b221a30d7180a0336", "", "", "Demo Image Series #6 - Mario (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a422194290c64ef9d444da9d6a207807", "Mattel", "MT5667", "Dark Cavern (1982) (Mattel) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "41", "189", "", "" }, + { "a511f7ee13e4b35512f9217a677b4028", "", "", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "189", "", "" }, + { "a6127f470306eed359d85eb4a9cf3c96", "Atari", "CX26110", "Crystal Castles (1984) (Atari) [p1]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "" }, + { "a7b584937911d60c120677fe0d47f36f", "Mattel", "MT5661", "Armor Ambush (1982) (Mattel) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "36", "195", "", "" }, + { "a899a3e3fec8d466f45c2c3beb2961fd", "", "", "Greeting Cart Cathy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a995b6cbdb1f0433abc74050808590e6", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "" }, + { "ab434f4c942d6472e75d5490cc4dd128", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "" }, + { "ac0ddbcff34d064009591607746e33b8", "", "", "Atlantis FH (2003) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "acb6787b938079f4e74313a905ec3ceb", "", "", "Chronocolor Donkey Kong (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "adb79f9ac1a633cdd44954e2eac14774", "Digivision", "", "Frostbite (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "197", "", "" }, + { "ae6cb335470788b94beb5787976e8818", "", "", "Mortal Kurling (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "af6ab88d3d7c7417db2b3b3c70b0da0a", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o1]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "2K", "", "", "", "", "Paddles", "None", "", "8", "144", "41", "192", "", "" }, + { "b0ba51723b9330797985808db598fc31", "", "", "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "246", "", "" }, + { "b1a6c96e9093352106bc335e96caa154", "Joe Grand", "", "SCSIcide Pre-release 1 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "37", "212", "", "" }, + { "b2b78febdbc0ac184084092c1375162a", "", "", "Decathlon (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b4030c38a720dd84b84178b6ce1fc749", "Mattel", "MT5687", "International Soccer (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "" }, + { "b4f87ce75f7329c18301a2505fe59cd3", "Ariola", "", "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "" }, + { "b6812eaf87127f043e78f91f2028f9f4", "Simage", "", "Eli's Ladder (Simage)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "" }, + { "b7903268e235310dc346a164af4c7022", "UA / Thomas Jentzsch", "", "Cat Trax (PAL by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "4K", "", "", "", "", "", "", "PAL", "", "", "33", "200", "Yes", "" }, + { "b8865f05676e64f3bec72b9defdacfa7", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "" }, + { "b9f6fa399b8cd386c235983ec45e4355", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "PAL", "8", "152", "57", "", "", "" }, + { "bb6a5a2f7b67bee5d1f237f62f1e643f", "", "", "Demo Image Series #5 - Animegirl (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bc526185ad324241782dc68ba5d0540b", "", "", "Dodge Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bd39598f067a1193ae81bd6182e756d1", "Telegames", "", "Night Stalker (Telegames) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "61", "206", "", "" }, + { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "bf84f528de44225dd733c0e6a8e400a0", "CCE", "", "Demons to Diamonds (1982) (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "None", "", "", "", "35", "195", "", "" }, + { "c033dc1d7b6fde41b9cadce9638909bb", "", "", "Skeleton (V1.1) (06-09-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1fdd44efda916414be3527a47752c75", "Parker Bros", "PB5920", "G.I. Joe - Cobra Strike (1983) (Parker Bros) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "8", "152", "27", "", "", "" }, + { "c2a37f1c7603c5fd97df47d6c562abfa", "", "", "Bar-Score Demo (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c3e4aa718f46291311f1cce53e6ccd79", "", "", "Hangman Ghost 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4b73c35bc2f54b66cd786f55b668a82", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) [a1]", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "" }, + { "c5301f549d0722049bb0add6b10d1e09", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "30", "205", "", "" }, + { "c5c7cc66febf2d4e743b4459de7ed868", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "66", "191", "", "" }, + { "c6d48c6ae6461e0e82753540a985ac9e", "Ed Federmeyer", "", "Edtris (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "48", "188", "", "" }, + { "c7f13ef38f61ee2367ada94fdcc6d206", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) [!]", "", "Common", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "c9d02d3cfeef8b48fb71cb4520a4aa84", "", "", "Euchre (More for less) (PAL) (22-08-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "ca7aaebd861a9ef47967d31c5a6c4555", "Atari", "", "Home Run (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "220", "", "" }, + { "cbad928e10aeee848786cc55394fb692", "", "", "Fu Kung! (V0.06a Cuttle Cart Compatible) (15-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ccb5fa954fb76f09caae9a8c66462190", "", "ASC1001", "Malagai (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "Yes", "" }, + { "cd88ef1736497288c4533bcca339f881", "", "", "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "ce89529d6e98a13ddf3d84827bbdfe68", "", "", "Kung Fu Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "208", "", "" }, + { "cfd6a8b23d12b0462baf6a05ef347cd8", "Activision", "AX-006", "Bridge (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "36", "200", "", "" }, + { "d05e371765929bf5d39c91c6ea189bec", "", "", "Death Derby (v0005 New Build) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d0cdafcb000b9ae04ac465f17788ad11", "Starsoft", "", "Alice's Abenteuer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "240", "", "" }, + { "d2901c34bb6496bb96c7bc78a9e6142a", "", "", "Fish Revenge (2003) (Greg Zumwalt) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d341d39774277cee6a1d378a013f92ac", "", "", "Artillery Duel (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "26", "190", "", "" }, + { "d4942f4b55313ff269488527d84ce35c", "", "", "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "d573089534ca596e64efef474be7b6bc", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [h1]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "PAL", "8", "152", "57", "", "", "" }, + { "d632b74fea533d593af82cf16e7c5e4a", "", "", "Fu Kung! (V0.13) (01-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d7f5bf138cfc7feab7b8ef1534c8b477", "", "", "Eric Bergstrom's KC-135 (Radar Map) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d8acaa980cda94b65066568dd04d9eb0", "CCE", "", "Sea Hunt (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "197", "", "" }, + { "da0fb2a484d0d2d8f79d6e063c94063d", "", "", "Air Raiders (1982) (Mattel) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "202", "", "" }, + { "dad2ab5f66f98674f12c92abcfbf3a20", "", "", "Blue and White Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "25", "225", "", "" }, + { "dc13df8420ec69841a7c51e41b9fbba5", "", "CX26132", "Garfield (Prototype)", "", "Prototype", "", "F6", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd1ecb349691aa4805eb9835dc87c094", "", "", "Greeting Cart Original(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de0173ed6be9de6fd049803811e5f1a8", "Xonox", "", "Motocross Racer (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de61a0b171e909a5a4cfcf81d146dbcb", "Starsoft", "", "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "194", "", "" }, + { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "No" }, + { "df94affaece8b9a02da82e971ea9c0ca", "", "", "Image - Nude2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e040df95a055b18ebdb094e904cb71b2", "", "", "Score Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e14dc36b24fe22c04fa076e298f2e15f", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o2]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "2K", "", "", "", "", "Paddles", "None", "", "8", "144", "41", "192", "", "" }, + { "e25e173740f7ecc0e23025445c4591f3", "", "", "Comitoid (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e3600be9eb98146adafdc12d91323d0f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "230", "", "" }, + { "e45449bde2f467a52da36ddd5b427d76", "", "", "Image - Qb Cover Art (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4e9125a8741977583776729359614e1", "", "", "Comitoid beta 4 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e5ecd78edd24326a968809decbc7b916", "", "", "Cheese 98 (Dragonfire Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e643aaec9a9e1c8ab7fe1eae90bc77d7", "", "", "Asymmetric Playfield (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e7864caaf9ec49ed67b1904ce8602690", "", "", "Donkey Kong 2K3 Pic (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e8aa36e3d49e9bfa654c25dcc19c74e6", "Atari", "CX2601", "Combat (Atari) (PAL) [!]", "", "Common", "", "2K", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "" }, + { "e9c71f8cdba6037521c9a3c70819d171", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox) (w-Skull Island Label) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "12", "136", "64", "187", "", "" }, + { "eb46e99ec15858f8cd8c91cef384ce09", "Rainbow Vision", "", "Ground Zero (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "" }, + { "eb9712e423b57f0b07ccd315bb9abf61", "Retroactive", "", "Qb (V2.04) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "ec407a206b718a0a9f69b03e920a0185", "Starsoft", "", "Landung in der Normandie (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "ede7e8bf865b0afb4744f86d13624f9a", "", "", "Demo Image Series #2 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eeb92f3f46df841487d1504f2896d61a", "", "", "Corys Adventure (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efa1098c7d091b940c2543abe372f036", "Scott Stilphen", "", "E.T. The Extra-Terrestrial by Scott Stilphen (Pits Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "" }, + { "f0cacae1d1b79ee92f0dc035f42e0560", "", "", "Boring Donkey Kong (Donkey Kong Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1929bb9b5db22d98dd992aa3fe72920", "", "", "Cube Conquest (Improved Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f280976d69d6e27a48506bd6bad11dcd", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "PAL", "", "", "38", "", "", "" }, + { "f3c431930e035a457fe370ed4d230659", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "f48735115ec302ba8bb2d2f3a442e814", "", "", "Dancing Plates (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "250", "Yes", "" }, + { "f5d103a9ae36d1d4ee7eef657b75d2b3", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "" }, + { "f6daebc0424fa0f8d9aaf26c86df50f4", "", "", "Color Tweaker (V1.0) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7a138eed69665b5cd1bfa796a550b01", "Tigervision", "7-012", "Espial (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "PAL", "", "", "76", "196", "", "" }, + { "f8ad87b3ecfc04c9e76d2cebef76a6cb", "", "", "Greeting Cart Carmon (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f965cc981cbb0822f955641f8d84e774", "Answer", "", "Confrontation (1983) (Answer Software)", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "220", "Yes", "" }, + { "f9de91d868d6ebfb0076af9063d7195e", "", "", "Maze Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa529ec88eca679f6d5fd0ccb2120e46", "", "", "20 Sprites at Once Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "faffd84f3a8eceee2fa5ea5b0a3e6678", "Emag", "", "Immies & Aggies (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "", "", "" }, + { "fb4ca865abc02d66e39651bd9ade140a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "", "198", "", "" }, + { "fbac6476e7b2b20d246202af81662c88", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "59", "189", "", "" }, + { "fc92d74f073a44bc6e46a3b3fa8256a2", "", "", "Megademo (19xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fdd4995a50395db14f518f63c2d63438", "", "", "Oh No! (Version 3) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "feeae23f2eeac44b81a43e8292d0c574", "", "", "Greeting Cart Halle Berry (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ff87d58125ae517eb7b09a0475a1ccdc", "", "", "SCSIcide (Score Hack 1) (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "005ea4b9f089336ab7ae46440513a9d3", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision) [b2]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "" }, + { "00df776eb994d729db9eb13b17887aa6", "", "", "Greeting Cart Atari Coin (V2) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0164f26f6b38a34208cd4a2d0212afc3", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "02066b17f29082412c6754c1a2d6302e", "", "", "Demo Image Series #3 - Baboon (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "02a5fc90a0d183f870e8eebac1f16591", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "246", "", "" }, + { "033e21521e0bf4e54e8816873943406d", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "29", "229", "", "" }, + { "04014d563b094e79ac8974366f616308", "", "CX2690", "Pengo - 1 Player Only (1984) (Atari)", "", "Extremely Rare", "", "F8", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "049626cbfb1a5f7a5dc885a0c4bb758e", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "58", "190", "", "" }, + { "0546f4e6b946f38956799dd00caab3b1", "HES / Thomas Jentzsch", "", "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "144", "41", "196", "", "" }, + { "05b45ba09c05befa75ac70476829eda0", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle Controllers (swapped)", "Rare", "", "4K", "", "", "", "", "Paddles", "Paddles", "PAL", "8", "144", "58", "199", "", "" }, + { "05ebd183ea854c0a1b56c218246fbbae", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "06b6c5031b8353f3a424a5b86b8fe409", "Activision", "AX-023", "Oink! (1983) (Activision) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "071f84d10b343c7c05ce3e32af631687", "Atlantis-Ariola", "", "Krieg Der Sterne (Atlantis-Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "074ec425ec20579e64a7ded592155d48", "Atari", "CX26162", "Fatal Run (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "F4SC", "", "", "", "", "", "", "PAL", "", "152", "70", "178", "", "" }, + { "07c76f2d88552d20ad2c0ed7aef406c6", "", "", "Blob, The (Cody Pittman) (Halloween Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "081e2c114c9c20b61acf25fc95c71bf4", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros)", "", "Common", "", "4K", "", "", "", "", "", "", "", "4", "152", "", "191", "", "" }, + { "0856f202b18cd46e44fd1dc3b42e9bfb", "", "", "Frame Counter 1 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "08f4dc6f118f7c98e2406c180c08e78e", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "55", "205", "", "" }, + { "0963aa9f7f6cf5a36ff700001583624e", "Franklin Cruz", "", "Space Invaders 2 (Space Invaders Hack) [o1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "09d19274c20768f842e8fae84b766abe", "", "", "Star Fire - Animated Patricles (06-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0acaf71e60b89f6b6eab63db6ab84510", "", "", "This Planet Sucks (Greg Troutman) [a2]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "" }, + { "0afe6ae18966795b89314c3797dd2b1e", "", "", "Moon Patrol (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "189", "", "" }, + { "0b55399cf640a2a00ba72dd155a0c140", "Imagic", "O3205", "Fathom (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "Yes", "" }, + { "0c0392db94a20e4d006d885abbe60d8e", "", "", "Dodge Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0cb7af80fd0ddef84844481d85e5d29b", "", "", "Mr. Pac-Man (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d1b3abf681a2fc9a6aa31a9b0e8b445", "Atari", "", "Laser Blast (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "", "", "" }, + { "0d90a0ee73d55539b7def24c88caa651", "Activision", "AG-005", "Skiing (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "" }, + { "0e0808227ef41f6825c06f25082c2e56", "", "", "Candi (Space Invaders Hack)[o1]", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "0e224ea74310da4e7e2103400eb1b4bf", "", "", "Mind Maze (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0eecb5f58f55de9db4eedb3a0f6b74a8", "Xonox", "99002", "Ghost Manor (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "0f14c03050b35d6b1d8850b07578722d", "Jeffry Johnston", "", "Radial Pong - Version 10 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0f6676b05621f80c670966e2995b227a", "", "", "Globe Trotter Demo 1 (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "102672bbd7e25cd79f4384dd7214c32b", "", "CX2642 / 6699814", "Concentration (1978) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "" }, + { "106855474c69d08c8ffa308d47337269", "Atari", "CX26151", "Dark Chambers (1988) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "", "", "48", "170", "Yes", "No" }, + { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) [t1]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "39", "194", "", "" }, + { "11cf751bc8173db105eabd119c5844ba", "", "", "Star Fire - Crosshair (12-02-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1267e3c6ca951ff1df6f222c8f813d97", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [p1][!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "58", "211", "", "" }, + { "130c5742cd6cbe4877704d733d5b08ca", "ITT Family Games", "", "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "239", "", "" }, + { "135708b9a7dd20576c1b66ab2a41860d", "", "", "Hangman Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13a37cf8170a3a34ce311b89bde82032", "Atari", "CX2684", "Galaxian (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "PAL", "8", "144", "45", "198", "", "" }, + { "13d8326bf5648db4dafce45d25e62ddd", "", "", "Atari Logo Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1428029e762797069ad795ce7c6a1a93", "Sega", "", "Thunderground (1983) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "250", "Yes", "" }, + { "14c2548712099c220964d7f044c59fd9", "", "", "Boing! (PD)", "", "Extremely Rare", "", "4K", "", "", "", "", "", "", "", "8", "152", "40", "184", "Yes", "" }, + { "153f40e335e5cb90f5ce02e54934ab62", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "184", "", "" }, + { "15bf2ef7583bfcbbba630847a1dc5539", "Erik Eid", "", "Euchre (Jul 15) (2002) (Eric Eid) (PD)", "", "New Release", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "163e7e757e2dc44469123ff0e5daec5e", "", "", "Many Blue Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "16fbb36a6124567405a235821e8f69ee", "", "", "Star Fire (28-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1738b2e3f25ab3eef3cecb95e1d0d957", "", "", "Hangman Monkey Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17754da584db6f22838eea255e68b31e", "", "", "Death Derby (v0010) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1802cc46b879b229272501998c5de04f", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari)", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "27", "", "", "" }, + { "18b28b386abdadb3a700ac8fb68e639a", "Manuel Polik", "", "Gunfight 2600 (MP) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "195", "", "" }, + { "18f299edb5ba709a64c80c8c9cec24f2", "Bomb", "CA282", "Great Escape (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "220", "", "" }, + { "199985cae1c0123ab1aef921daace8be", "", "", "Euchre (Release Candidate 2) (PAL) (01-10-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "19abaf2144b6a7b281c4112cff154904", "", "", "Asteroids (1979) (Atari) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "" }, + { "19e739c2764a5ab9ed08f9095aa2af0b", "Atari", "CX26117", "Obelix (1983) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "194", "", "" }, + { "1b1daaa9aa5cded3d633bfcbeb06479c", "", "", "Ship Demo (V 1502) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1c3f3133a3e5b023c77ecba94fd65995", "", "", "Planet Patrol (CCE) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "" }, + { "1cca2197d95c5a41f2add49a13738055", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "38", "", "", "" }, + { "1d5eac85e67b8cff1377c8dba1136929", "", "", "Chronocolor Donkey Kong Sideways (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e0ef01e330e5b91387f75f700ccaf8f", "Starsoft", "", "Mein Weg (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "" }, + { "1e89f722494608d6ea15a00d99f81337", "Activision", "", "River Raid (1982) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "201", "", "" }, + { "1ee9c1ba95cef2cf987d63f176c54ac3", "Atari", "CX2675", "Ms. Pac-Man (1982) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "No" }, + { "1f349dd41c3f93c4214e5e308dccb056", "", "", "Virtual Pet Demo 2 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "" }, + { "1fa58679d4a39052bd9db059e8cda4ad", "CCE", "", "Laser Gates (1983) (CCE) [a1][!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "", "188", "", "" }, + { "2016726db38ad6a68b4c48ba6fe51557", "Eric Mooney", "", "Invaders 2 by Eric Mooney (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "", "Donkey Kong Junior (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "211f76dff0b7dad3f6fcac9d938ee61a", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "2179dfd7edee76efafe698c1bc763735", "", "", "Yellow Submarine (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "21d2c435bcccde7792d82844b3cf60f4", "Atari", "CX2677", "Dig Dug (V2) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "144", "45", "216", "", "" }, + { "22675cacd9b71dea21800cbf8597f000", "Atari", "CX2605", "Outlaw - GunSlinger (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "230", "", "" }, + { "22f6b40fc82110d68e50a1208ae0bb97", "", "", "Purple Bar Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "23e4ca038aba11982e1694559f3be10f", "", "", "Big Dig (V3) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "244c6de27faff527886fc7699a41c3be", "", "", "Matt Demo (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "193", "", "" }, + { "24b5f4bbdb853eca38ea0cae2dfe73a1", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][a1][!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "" }, + { "2517827950fee41a3b9de60275c8aa6a", "Activision", "", "Fishing Derby (1980) (Activision) [p1]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "188", "", "" }, + { "25a943e9d5e312b516660b0627352448", "", "", "Image - Baboon (Interlaced Demo 1) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25e73efb9a6edf119114718bd2f646ba", "", "", "Miss Piggy's Wedding (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "28", "195", "", "" }, + { "2683d29a282dd059535ac3bb250f540d", "", "", "Space Treat (12-01-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "270229c6d5578446e6a588492e4e5910", "", "", "Space Invaders 2 (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "277cca62014fceebb46c549bac25a2e3", "Activision", "AG-002", "Boxing (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "" }, + { "27a3c5216b6c6e96e321634973b73784", "", "", "Greeting Cart Atari Coin (V1) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "281ff9bd0470643853de5cbd6d9e17f5", "Eckhard Stolberg", "", "Cubis (EM) (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "28a2bea8f84936cb2e063f857414cda0", "", "", "Mega Mania Raid (1999) (Thiago Paiva)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "291cc37604bc899e8e065c30153fc4b9", "Activision", "AX-020", "River Raid (1982) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "295f3679bdf91ca5e37da3f787b29997", "", "", "Exorcise (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "29dfa26b7988af9984d617708e4fc6e2", "", "", "Boulderdash Demo (05-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "2b42da79a682ed6e2d735facbf70107e", "", "", "DKjr Improved (Donkey Kong Junior Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2bf34b6ad7d2317a2d0808b3fb93571b", "", "", "Easy Playfield Graphics (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c3b2843295c9d6b16996971180a3fe9", "", "", "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "240", "", "" }, + { "2c9fadd510509cc7f28f1ccba931855f", "", "", "Hangman Invader Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d16a8b59a225ea551667be45f554652", "Starsoft", "", "Der Geheimkurier (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "", "", "" }, + { "2d76c5d1aad506442b9e9fb67765e051", "Apollo", "", "Lost Luggage (1981) (Apollo) (NTSC) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "" }, + { "2e0aed5bb619edcefa3fafb4fbe7c551", "", "", "Qb (2.06) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "2e663eaa0d6b723b645e643750b942fd", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "36", "191", "", "" }, + { "2eda6a49a49fcb2b674ea9e160b6a617", "Kyle Pittman", "", "Rambo in Afghanistan by Kyle Pittman (Riddle of the Sphinx Hack)", "Hack of Riddle of the Sphinx (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "" }, + { "2f273c423471d125d32d1d54d58f063a", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "" }, + { "3025bdc30b5aec9fb40668787f67d24c", "", "", "Demo Image Series #14 - Two Marios (4K Interleaved Chronocolour Vertical Movement) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3051b6071cb26377cd428af155e1bfc4", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "47", "195", "", "" }, + { "30e0ab8be713208ae9a978b34e9e8e8c", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "45", "229", "", "" }, + { "313243fc41e49ef6bd3aa9ebc0d372dd", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "318a9d6dda791268df92d72679914ac3", "Activision", "AX-017", "Megamania (1982) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "31f4692ee2ca07a7ce1f7a6a1dab4ac9", "", "CX2642 / 6699814", "Concentration (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "" }, + { "32244e55ce6ec6bfbd763f33384bdc2e", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "328949872e454181223a80389d03c122", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "" }, + { "331938989f0f33ca39c10af4c09ff640", "", "", "Combat - Tank AI (19-04-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "33d68c3cd74e5bc4cf0df3716c5848bc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "32", "", "Yes", "" }, + { "34340c8eecd1e557314789cc6477e650", "Joe Grand", "", "SCSIcide Pre-release 4 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "34ca2fcbc8ba4a0b544acd94991cfb50", "Atari", "", "Dukes of Hazzard V2 (Atari) (Prototype) [!]", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "3577e19714921912685bb0e32ddf943c", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "4K", "", "", "", "", "", "", "PAL", "", "", "47", "237", "Yes", "" }, + { "3604e725e81dd0abede07fd1c82eb058", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "" }, + { "3685060707df27d4091ba0ea2dc4b059", "", "", "PezZerk - PezMan in Ghost Manor (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36c29ceee2c151b23a1ad7aa04bd529d", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "", "", "48", "171", "", "No" }, + { "373b8a081acd98a895db0cb02df35673", "", "", "Demo Image Series #5 - Boofly (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "37ab3affc7987995784b59fcd3fcbd31", "", "", "Sprite Test (29-11-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "384f5fbf57b5e92ed708935ebf8a8610", "20th Century Fox", "11009", "Crypts of Chaos (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "52", "185", "", "" }, + { "38c362dcd5cad5a62e73ae52631bd9d8", "", "", "Baubles (14-11-2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "393e41ca8bdd35b52bf6256a968a9b89", "US Games", "VC 1012", "M.A.D. (1982) (US Games)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "44", "192", "", "" }, + { "39c78d682516d79130b379fa9deb8d1c", "Apollo", "AP 1001", "Skeet Shoot (1981) (Apollo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3a51a6860848e36e6d06ffe01b71fb13", "Retroactive", "", "Qb (2.07) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3ac6c50a8e62d4ce71595134cbd8035e", "", "", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [a1]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "31", "195", "", "" }, + { "3b37ebc0674e3d5e49ffbdc4b65607a6", "", "", "Greeting Cart Decepticon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b86a27132fb74d9b35d4783605a1bcb", "", "", "Wizard (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "" }, + { "3c4a6f613ca8ba27ce9e43c6c92a3128", "", "", "Qb (V0.04) (Non-Lax Version) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3cbdf71bb9fd261fbc433717f547d738", "CCE", "PG206", "Bobby is Going Home (CCE) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "245", "", "" }, + { "3d48b8b586a09bdbf49f1a016bf4d29a", "", "TP-606", "Hole Hunter (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "31", "238", "", "" }, + { "3d8a2d6493123a53ade45e3e2c5cafa0", "Sears", "99843 / 75118", "Sky Diver (1978) (Atari) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "38", "", "", "" }, + { "3e03086da53ecc29d855d8edf10962cb", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "216", "Yes", "" }, + { "3e90cf23106f2e08b2781e41299de556", "Activision", "AX-018", "Pitfall! (1982) (Activision) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "3f01bd6d059396f495a4cde7de0ab180", "", "", "Qb (Special Edition) (NTSC) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3f540a30fdee0b20aed7288e4a5ea528", "Atari", "CX2670", "Atari Video Cube (1982) (Atari) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "38", "200", "", "" }, + { "3f9cb1aba8ec20e2c243ae642f9942bf", "", "", "New Questions (1998) (John K. Harvey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "405f8591b6941cff56c9b392c2d5e4e5", "Telegames", "", "Star Strike (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "192", "", "" }, + { "407a0c6cc0ff777f67b669440d68a242", "Erik Eid", "", "Euchre (Alpha) (PAL) (31-08-2002) (Erik Eid)", "", "New Release", "", "4K", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "40b58f2f93e503b14a5d1d0ae2ca5aa0", "", "", "Greeting Cart Tanya (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40e12c008037a323a1290c8fa4d2fe7f", "", "", "Skeleton (NTSC) (06-09-2002) (Eric Ball)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "41c4e3d45a06df9d21b7aae6ae7e9912", "CCE", "", "Grand Prix (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "" }, + { "425ee444a41d218598893d6b6e03431a", "", "", "Invaders Demo (2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "42b2c3b4545f1499a083cfbc4a3b7640", "US Games", "VC 2003", "Eggomania (1982) (US Games)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "43c7eb836378b1b3df6788d908940b59", "", "", "Death Derby (2LK_16) (24-03-2003) (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4474b3ad3bf6aabe719a2d7f1d1fb4cc", "Activision", "AX-039", "Kung Fu Master (1984) (Activision) (PAL) [!]", "", "Rare", "", "F8", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "" }, + { "45040679d72b101189c298a864a5b5ba", "20th Century Fox", "11022", "SpaceMaster X-7 (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "12", "136", "32", "205", "", "" }, + { "458883f1d952cd772cf0057abca57497", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "183", "", "" }, + { "463e66ad98806a49106cffa49c08e2ed", "", "", "Interlace Game Demo (01-09-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4690fdb70c86604bb35da26696818667", "", "", "Euchre (Release Candidate) (NTSC) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "470878b9917ea0348d64b5750af149aa", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "4799a40b6e889370b7ee55c17ba65141", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "26", "228", "", "" }, + { "47cd61f83457a0890de381e478f5cf5f", "Imagic", "O3205", "Fathom (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "192", "Yes", "" }, + { "48287a9323a0ae6ab15e671ac2a87598", "Zellers", "", "Laser Volley (1983) (Zellers) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "", "188", "", "" }, + { "48f18d69799a5f5451a5f0d17876acef", "", "", "Criminal Pursuit (Emag)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "Yes", "" }, + { "493e90602a4434b117c91c95e73828d1", "Telegames", "", "Lock 'N' Chase (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "4a2fe6f0f6317f006fd6d4b34515448b", "", "", "Warring Worms (Midwest Classic Edition) (08-06-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135", "RealSports Boxing (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "64", "185", "", "" }, + { "4afe528a082f0d008e7319ebd481248d", "", "", "Multi-Color Demo 1 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4b9581c3100a1ef05eac1535d25385aa", "", "", "I.Q. 180 (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "235", "", "" }, + { "4c39a2c97917d3d71739b3e21f60bba5", "", "", "Whale (Sub Scan Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4c8970f6c294a0a54c9c45e5e8445f93", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4ca90ba45eced6f5ad560ea8938641b2", "", "", "Hangman Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d5f6db55f7f44fd0253258e810bde21", "Mattel / Fabrizio Zavagli", "", "Betterblast by Fabrizio Zavagli (Astroblast Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "" }, + { "4dd6c7ab9ef77f2b4950d8fc7cd42ee1", "Retroactive", "", "Qb (V2.04) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "4e15ddfd48bca4f0bf999240c47b49f5", "", "50010", "Death Trap (1983) (Avalon Hill)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "4e99ebd65a967cabf350db54405d577c", "Coleco", "2663", "Time Pilot (1983) (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "193", "", "" }, + { "4f781f0476493c50dc578336f1132a67", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [p1][o1][!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "PAL", "", "", "54", "205", "", "" }, + { "4fc1b85b8074b4b9436d097900e34f29", "", "", "John K Harvey's Equalizer (NTSC) (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "514f911ecff2be5eeff2f39c49a9725c", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "220", "", "" }, + { "51f15b39d9f502c2361b6ba6a73464d4", "", "", "Amanda Invaders (PD) [o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "" }, + { "52615ae358a68de6e76467e95eb404c7", "", "", "DJdsl-wopd (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "52e9db3fe8b5d336843acac234aaea79", "", "", "Fu Kung! (V0.11) (28-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "537ed1e0d80e6c9f752b33ea7acbe079", "", "", "A-VCS-tec Challenge (beta 5) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "53d181cde2e0219b5754caad246fcb66", "", "", "Missile Demo (1998) (Ruffin Bailey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "54785fa29e28aae6038929ba29d33d38", "", "", "Poker Squares (V0.19) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5524718a19107a04ec3265c93136a7b5", "Atari / Thomas Jentzsch", "", "RealSports Basketball (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "152", "41", "199", "", "" }, + { "55ef7b65066428367844342ed59f956c", "", "CX2683", "Crazy Climber (1983) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "46", "195", "", "" }, + { "5678ebaa09ca3b699516dba4671643ed", "Coleco", "2459", "Mouse Trap (1982) (Coleco) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "Yes", "" }, + { "579baa6a4aa44f035d245908ea7a044d", "Jess Ragan", "", "Galaxian by Jess Ragan (Enhanced Graphics)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "F8", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "" }, + { "58513bae774360b96866a07ca0e8fd8e", "Mystique", "1001", "Custer's Revenge (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "198", "", "" }, + { "58e313e2b5613b2439b5f12bb41e3eef", "", "", "Cube Conquest (Demo Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "59e96de9628e8373d1c685f5e57dcf10", "Mystique", "1003", "Beat 'Em and Eat 'Em (1982) (Mystique) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "5a6febb9554483d8c71c86a84a0aa74e", "CCE", "2653", "Donkey Kong Junior (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "5a93265095146458df2baf2162014889", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "219", "", "" }, + { "5af02776ebcdd8b5e39c4dfae61019e1", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 122283)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b6f5bcbbde42fc77d0bdb3146693565", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "5bc9998b7e9a970e31d2cb60e8696cc4", "", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "5c1b1aa78b7609d43c5144c3b3b60adf", "", "", "Demo Image Series #8 - Two Marios (Different Interlacing) (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5d2cc33ca798783dee435eb29debf6d6", "Atari", "", "Commando (1988) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "183", "", "" }, + { "5dccf215fdb9bbf5d4a6d0139e5e8bcb", "Froggo", "FG 1009", "Sea Hunt (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "44", "197", "", "" }, + { "5e0c37f534ab5ccc4661768e2ddf0162", "", "5667 A106", "Glacier Patrol (1983) (Telegames)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5eeb81292992e057b290a5cd196f155d", "Wizard Video Games", "008", "Texas Chainsaw Massacre, The (1983) (Wizard Video)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f316973ffd107f7ab9117e93f50e4bd", "US Games", "VC 1004", "Commando Raid (1982) (US Games) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "5f69453a69f21dc49697a80d2e933491", "", "", "Star Fire - Reduced Flickering (06-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5fb71cc60e293fe10a5023f11c734e55", "", "", "This Planet Sucks (Fix) (27-12-2002) (Greg Troutman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "" }, + { "603c7a0d12c935df5810f400f3971b67", "Bitcorp", "", "Mr. Postman (1983) (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "239", "", "" }, + { "6076b187a5d8ea7a2a05111c19b5d5cd", "", "", "Fu Kung! (V0.14) (01-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "613abf596c304ef6dbd8f3351920c37a", "", "", "Boring Pac-man (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "61631c2f96221527e7da9802b4704f93", "", "", "Commando (1988) (Activision) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "183", "", "" }, + { "6272f348a9a7f2d500a4006aa93e0d08", "", "", "RealSports Soccer (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (8K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "" }, + { "637efac676ff063f2fbb0abff77c4fa5", "", "", "Noize Maker Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63c7395d412a3cd095ccdd9b5711f387", "Eric Ball", "ELB005", "Skeleton+ (PAL)", "Stereo sound", "Homebrew", "Stereo", "4K", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "643e6451eb6b8ab793eb60ba9c02e000", "", "", "Ghostbusters II (V2)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "242", "Yes", "" }, + { "64b8e19c767191ccdc97acc6904c397b", "Jeffry Johnston", "", "Radial Pong - Version 6 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6522717cfd75d1dba252cbde76992090", "ITT Family Games", "554-33391", "Meteor Defense (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "65917ae29a8c9785bb1f2acb0d6aafd0", "", "", "Junkosoft One Year Demo (1999) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "65bd29e8ab1b847309775b0de6b2e4fe", "Coleco", "2667", "Roc n' Rope (1984) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "665b8f8ead0eef220ed53886fbd61ec9", "Telesys", "1003", "Fast Food (1982) (Telesys) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "66b54641b5786ea3ff0215aa39d61e01", "", "", "KC Pacman (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66c4e0298d4120df333bc2f3e163657e", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "" }, + { "67631ea5cfe44066a1e76ddcb6bcb512", "", "", "Termool (AKA Fast Eddie) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "67931b0d37dc99af250dd06f1c095e8d", "CommaVid", "CM-004", "Room of Doom (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "67bd3d4dc5ac6a42a99950b4245bdc81", "Retroactive", "", "Qb (2.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "683dc64ef7316c13ba04ee4398e2b93a", "Ed Federmeyer", "", "Edtris (1995) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "68760b82fc5dcf3fedf84376a4944bf9", "", "", "Laser Gates (1983) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "691d67910b08b63de8631901d1887c1f", "Starpath", "", "Survival Island (1982) (Starpath) [a1]", "", "Rare", "", "AR", "", "", "", "", "", "", "", "", "", "30", "", "", "No" }, + { "69974dd5d6420b90898cde50aec5ef39", "Activision", "AG-009", "Freeway (1981) (Activision) [o2]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "" }, + { "6a2c68f7a77736ba02c0f21a6ba0985b", "Atari", "", "Computer Chess (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "42", "199", "", "" }, + { "6a882fb1413912d2ce5cf5fa62cf3875", "", "TP-605", "Dragon Defender (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "32", "249", "Yes", "" }, + { "6b01a519b413f8cfa2f399f4d2841b42", "", "", "Aphex Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b7a56b6ac2ca4bf9254474bf6ed7d80", "", "", "Horizonal Color Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "" }, + { "6c1f3f2e359dbf55df462ccbcdd2f6bf", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "" }, + { "6cd1dc960e3e8d5c5e0fbe67ab49087a", "", "", "Vertical Playfield Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6d8a04ee15951480cb7c466e5951eee0", "Zirok", "", "Canguru (Zirok) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e19428387686a77d8c8d2f731cb09e0", "", "", "Purple Cross Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e59dd52f88c00d5060eac56c1a0b0d3", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "217", "", "" }, + { "6f2aaffaaf53d23a28bf6677b86ac0e3", "US Games", "VC 1001", "Space Jockey (1982) (US Games) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fbd05b0ad65b2a261fa154b34328a7f", "", "", "Boardgame Demo (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ff4156d10b357f61f09820d03c0f852", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) [o1]", "Uses the Paddle Controllers (swapped)", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "33", "", "", "" }, + { "706e3cc4931f984447213b92d1417aff", "", "", "Joustpong (06-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "713095cd968b1aff45a2562ea4bbcbfe", "", "", "Image - Qb (16-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "718ee85ea7ec27d5bea60d11f6d40030", "Salu / Thomas Jentzsch", "", "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "20", "242", "Yes", "" }, + { "72305c997f2cec414fe6f8c946172f83", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "56", "195", "Yes", "" }, + { "72bda70c75dfa2365b3f8894bace9e6a", "", "", "Atlantis (Hack 01) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72fd08deed1d6195942e0c6f392e9848", "HES", "", "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "" }, + { "73aa02458b413091ac940c0489301710", "Starsoft", "", "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "217", "", "" }, + { "740b47df422372fbef700b42cea4e0bf", "", "", "Dizzy Wiz (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "749fec9918160921576f850b2375b516", "Spectravideo", "SA-205", "China Syndrome (1982) (Spectravideo)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "28", "212", "Yes", "" }, + { "755fed16b48e81de05130708a905d00d", "", "", "Comitoid beta 3 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75b22fdf632d76e246433db1ebccd3c4", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "7608abdfd9b26f4a0ecec18b232bea54", "Atari", "", "Football (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "219", "", "" }, + { "76ee917d817ef9a654bc4783e0273ac4", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "" }, + { "777aece98d7373998ffb8bc0b5eff1a2", "", "", "2600 Collison Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "78297db7f416af3052dd793b53ff014e", "", "", "Poker Squares (V0.17) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "78b84cfb1c57b0488d674d2374e656e6", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "798b8921276eec9e332dfcb47a2dbb17", "", "", "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "228", "", "" }, + { "79b649fb812c50b4347d12e7ddbb8400", "", "", "Red Pong Number 2 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "" }, + { "79e5338dbfa6b64008bb0d72a3179d3c", "Mattel", "MT4313", "Star Strike (1982) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "" }, + { "7a63d7ea3f2851bcf04f0bb4ba1a3929", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "7ac4f4fb425db38288fa07fb8ff4b21d", "Sancho-Goliath", "", "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "35", "240", "", "" }, + { "7b33407b2b198af74906b936ce1eecbb", "", "", "Ghostbuster 2 (NTSC) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "7ba07d4ea18bf3b3245c374d8720ad30", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "64", "202", "", "" }, + { "7c9b3b8b25acf2fe3b8da834f69629c6", "", "", "I Robot (1984) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "7d5c3b7b908752b98e30690e2a3322c2", "Dactar", "", "Freeway (Dactar) (PAL) [p1][!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "38", "200", "", "" }, + { "7d9c96b215d1941e87b6fb412eb9204f", "Atari", "", "Othello (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "215", "", "" }, + { "7e0dc330a32398f980637f9ded8f3ac4", "Tigervision", "7-012", "Espial (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "", "", "76", "196", "", "" }, + { "7e7c4c59d55494e66eef5e04ec1c6157", "Baroque Gaming (Brian Eno)", "", "Warring Worms (2002) (Baroque Gaming)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "" }, + { "7ed7130a6e4020161836414332b11983", "", "", "Fu Kung! (V0.05 Cuttle Card Compatible) (13-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f525b07bc98080cc8950f7284e52ede", "", "", "128-in-1 Junior Console (Chip 4) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "" }, + { "7fcd1766de75c614a3ccc31b25dd5b7a", "Playaround", "", "Knight on the Town (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "805f9a32ef97ac25f999a25014dc5c23", "", "", "Balthazar (aka Babylon 5) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "80e52315919bd8a8b82a407ccd9bb13f", "", "", "Euchre (Jul 28) (2002) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "813985a940aa739cc28df19e0edd4722", "Imagic", "IA3201", "Star Voyager (1982) (Imagic)", "", "Common", "", "4K", "", "", "", "", "", "", "", "8", "144", "38", "193", "", "" }, + { "81591a221419024060b890665beb0fb8", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "PAL", "", "", "54", "205", "", "" }, + { "81b3bf17cf01039d311b4cd738ae608e", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "Yes", "" }, + { "831a0c908b1797093290b688baf5ba76", "", "", "Death Derby (2LK Demo) (26-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "83bdc819980db99bf89a7f2ed6a2de59", "Atari", "CX2637", "Dodge 'em (1980) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "57", "180", "", "" }, + { "840a5a2eaea24d95d289f514fd12f9bb", "", "", "GBImprov (Ghostbusters Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "201", "", "" }, + { "85227160f37aaa29f5e3a6c7a3219f54", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "" }, + { "85a4133f6dcf4180e36e70ad0fca0921", "CCE", "", "Chopper Command (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "" }, + { "85e564dae5687e431955056fbda10978", "Milton Bradley", "4362", "Survival Run (1983) (Milton Bradley)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "219", "Yes", "" }, + { "86b4aa76bbeb70e1a4f9211a9880ba8e", "", "", "Incoming (1 Player Version) (05-11-2002) (Ben Larson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8747ba79cd39fa83a529bb26010db21b", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "47", "229", "", "" }, + { "87b460df21b7bbcfc57b1c082c6794b0", "", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "202", "", "" }, + { "8874b68751fd2ba6d3306a263ae57a7d", "Eric Mooney", "", "Invaders by Erik Mooney (Alpha 1) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "88dce4037471424bb38ab6841aaa8cab", "", "", "Double-Height 6-Digit Score Display (Two Background Color Change) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "896ec58f26e930e02f5e4f046602c3a1", "", "", "Synthcart (Beta) (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8a49cf1785e3dea2012d331a3ad476e1", "", "", "Boulderdash (10 Blocks Wide) (02-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8ae7809702b7d618e45daa2ddb0ece26", "", "", "Greeting Cart Blue-Ribbon Award(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8bbfd951c89cc09c148bfabdefa08bec", "UA Limited", "", "Pleiades (UA Limited)", "", "Prototype", "", "UA", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8c136e97c0a4af66da4a249561ed17db", "", "", "Poker Squares (V0.27) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8cd26dcf249456fe4aeb8db42d49df74", "Atari", "CX26139", "Crossbow (1987) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "38", "195", "", "" }, + { "8d8b7d7b983f75debbdaac651e814768", "", "", "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic", "", "Laser Gates (1983) (Imagic) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "", "", "", "233", "", "" }, + { "8ee3f64dc0f349adc893fe93df5245d8", "", "", "Euchre (20-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8f88309afad108936ca70f8b2b084718", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "", "", "" }, + { "8fffc8f15bb2e6d24e211884a5479aa5", "Retroactive", "", "Qb (V1.00) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "" }, + { "90ccf4f30a5ad8c801090b388ddd5613", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "913d5d959b5021f879033c89797bab5e", "", "", "Robot Player Graphic (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "91fdb6541f70c40b16aabf8308123be8", "", "", "Interlacing Game (19-08-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "92d1f6ac179ebe5963868d6bc1bdda8d", "HES", "", "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "230", "", "" }, + { "93511052bbc9423337905d4d17ecef96", "", "", "Incoming (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93b9229fc0ea4fb959d604f83f8f603c", "", "", "Amidar DS (Fast Enemies) (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "94102febc53b4a78342d11b645342ed4", "", "", "Joustpong (14-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "94e3fbc19107a169909e274187247a9d", "", "", "2-in-1 - Freeway and Tennis [p1]", "", "", "", "2K", "", "", "", "", "", "", "", "8", "144", "37", "193", "", "" }, + { "956496f81775de0b69a116a0d1ad41cc", "CCE", "", "Alien (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "12", "136", "39", "188", "Yes", "" }, + { "95e1d834c57cdd525dd0bd6048a57f7b", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "" }, + { "966b11d3c147d894dd9e4ebb971ea309", "", "", "Marble Craze Song (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "191", "", "" }, + { "96bcb3d97ce4ff7586326d183ac338a2", "", "", "Revenge of the Apes (Planet of the Apes Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "97933c9f20873446e4c1f8a4da21575f", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "60", "187", "Yes", "" }, + { "9848b5ef7a0c02fe808b920a2ac566d2", "", "", "Baseball (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "98ba601a60172cb46c5bf9a962fd5b1f", "", "", "Gorilla Kong (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98ef1593624b409b9fb83a1c272a0aa7", "CCE", "", "Cosmic Ark (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "192", "", "" }, + { "991d57bbcd529ad62925098e0aec1241", "", "", "Gunfight 2600 - The Final Kernel (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "9a25b3cfe2bbb847b66a97282200cca2", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "9b246683f44c963a50e41d6b485bee77", "", "", "Boring (PAL) (AD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "", "", "" }, + { "9c40bf810f761ffc9c1b69c4647a8b84", "", "", "2-in-1 - Frostbite and River Raid [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9cbb07f1993a027bc2f87d5205457ec9", "", "", "Eckhard Stolberg's Scrolling Text Demo 1 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "" }, + { "9d4bc7c6fe9a7c8c4aa24a237c340adb", "", "", "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "201", "", "" }, + { "9e5007131695621d06902ab3c960622a", "", "", "Tac Scan (1983) (Sega) [h1]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "Yes", "" }, + { "9ea8ed9dec03082973244a080941e58a", "Eric Mooney, Piero Cavina", "", "INV+", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9eeb40f04a27efb1c68ba1d25e606607", "", "", "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "", "", "" }, + { "9f2d58dce1b81c6ba201ed103507c025", "", "", "Fu Kung! (V0.02) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9f8fad4badcd7be61bbd2bcaeef3c58f", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari", "CX2688", "Jungle Hunt (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "" }, + { "a0297c4788f9e91d43e522f4c561b4ad", "Atari", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "PAL", "", "", "45", "228", "", "" }, + { "a0d502dc8b90b1d7daa5f6effb10d349", "", "", "Demo Image Series #5 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a15b5831a1fab52e4c416068c85ec011", "Hozer Video Games", "", "Gunfight 2600 - The Good, The Bad, The Ugly (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "230", "", "" }, + { "a1ccf58ca588bd3e0fb35a1e2a41b423", "", "", "Greeting Cart Green Dress (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2170318a8ef4b50a1b1d38567c220d6", "", "", "Surf's Up (1983) (Amiga) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a25bb76e9e773117e567fd4300b1bb23", "", "", "Interleaved ChronoColour Demo (NTSC) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2de0fc85548871279ed2a3c1325c13e", "George Veeder", "", "Cat and Mouse by George Veeder (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "33", "", "", "" }, + { "a3b9d2be822eab07e7f4b10593fb5eaa", "", "", "GREGXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "193", "", "" }, + { "a406d2f6d84e61d842f4cb13b2b1cfa7", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "a47878a760f5fa3aa99f95c3fdc70a0b", "", "", "Demo Image Series #5 - Baboon (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4c08c4994eb9d24fb78be1793e82e26", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "", "", "" }, + { "a5e9ed3033fb2836e80aa7a420376788", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "208", "", "" }, + { "a62e3e19280ff958407e05ca0a2d5ec7", "", "", "Hangman Ghost Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a74689a08746a667a299b0507e1e6dd9", "Starpath", "AR-4105", "Frogger (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "152", "53", "", "", "" }, + { "a7cf2b9afdbb3a161bf418dbcf0321dc", "", "", "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "12", "136", "38", "190", "Yes", "" }, + { "a867b76098786c4091dba2fcee5084c3", "", "", "Dragrace (Dragster Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a93e8ea1f565c3c1e86b708cf0dc2fa9", "Jess Ragan", "", "Kabul! by Jess Ragan (Kaboom! Hack)", "Hack of Kaboom! (Activision); Uses the Paddle Controllers (left only)", "New Release (Hack)", "", "2K", "", "", "", "", "Paddles", "None", "", "8", "144", "41", "192", "", "" }, + { "a9784c24cddb33bd0d14442b97784f3d", "", "", "Omega Race DC (2003) (TJ) (Omega Race Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aa7bb54d2c189a31bb1fa20099e42859", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "236", "Yes", "" }, + { "aaea37b65db9e492798f0105a6915e96", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "192", "", "" }, + { "ab56f1b2542a05bebc4fbccfc4803a38", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "44", "192", "", "" }, + { "abc64037ca5d5b04ae8a7eedbca3ed74", "", "", "Green and Yellow Number 1 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "ac53b83e1b57a601eeae9d3ce1b4a458", "Retroactive", "", "Qb (2.15) (Retroactive) (NTSC)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "ac9adbd6de786a242e19d4bec527982b", "Activision", "AX-012", "Ice Hockey (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "" }, + { "acb962473185d7a652f90ed6591ae13b", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "ad7e97c19bd25d5aa3999430845c755b", "", "", "Sprite Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ae0d4f3396cb49de0fabdff03cb2756f", "Retroactive", "", "Qb (V2.02) (PAL) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "ae4be3a36b285c1a1dff202157e2155d", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "36", "208", "", "" }, + { "ae83541cf4a4c0bce0adccd2c1bf6288", "", "", "Maze 003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aed0b7bd64cc384f85fdea33e28daf3b", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari)", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "afe776db50e3378cd6f29c7cdd79104a", "CCE / Thomas Jentzsch", "", "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "16", "254", "", "" }, + { "b06050f686c6b857d0df1b79fea47bb4", "", "", "Moonsweeper (1983) (Activision-PS2) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "b0c9cf89a6d4e612524f4fd48b5bb562", "Atari", "", "Combat II (1982) (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b15026b43c6758609667468434766dd8", "Retroactive", "", "Qb (0.06) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "b1e2d5dc1353af6d56cd2fe7cfe75254", "Atari", "CX26171", "Motorodeo (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "" }, + { "b2761efb8a11fc59b00a3b9d78022ad6", "Atari", "CX2651 / 6699805 / 4975602", "Blackjack (1977) (Atari) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "b2d1e63f7f22864096b7b6c154151d55", "", "", "Bounce! (17-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b311ab95e85bc0162308390728a7361d", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "" }, + { "b438a6aa9d4b9b8f0b2ddb51323b21e4", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "226", "", "" }, + { "b4a4c87840613f102acb5b3a647d0a67", "", "", "Mobile 48 Sprite Kernel (04-01-2003) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b5110f55ed99d5279f18266d001a8cd5", "", "", "Auto-mobile Demo (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b5cb9cf6e668ea3f4cc2be00ea70ec3c", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "227", "Yes", "" }, + { "b6960be26bee87d53ba4e2e71cfe772f", "", "", "3-D Corridor (Spiral Words) (31-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b731d35e4ac6b3b47eba5dd0991f452f", "", "", "Rubik's Cube 3D Demo (Final) (08-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b7a7e34e304e4b7bc565ec01ba33ea27", "Parker Bros", "2695 / PB5820", "Mr. Do!'s Castle (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "b83df1f32b4539c324bdf94851b4db55", "Angelino", "", "One On One by Angelino (Basketball Hack)", "Hack of Basketball (1978) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "" }, + { "b9040a7af6d0d13e7d8fea72b2fb7432", "", "", "Image - Samantha Fox (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9c3bc1d77f8e9d814735188bf324e40", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros) [b1]", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "ba317f83cdfcd58cbc65aac1ccb87bc5", "", "", "Jammed (2001) (XYPE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "bb34d1b831aa1f6b3c3452d80d01a759", "", "", "Miss Piggy's Wedding (Prototype) [b2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bb745c893999b0efc96ea9029e3c62ca", "Play Video", "", "Planet Patrol (1982) (Play Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "" }, + { "bc4cf38a4bee45752dc466c98ed7ad09", "Atari", "CX26136", "Solaris (1986) (Atari) (PAL) [!]", "", "Uncommon", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "" }, + { "bc6432cbed32c695658514c4eb41d905", "Manuel Polik", "", "Star Fire (MP) (2002) (PD)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bcef7880828a391cf6b50d5a6dcef719", "Starsoft", "SS-009", "Bermuda (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "" }, + { "bdb4b584ddc90c9d2ec7e21632a236b6", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 1) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be060a704803446c02e6f039ab12eb91", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "41", "220", "", "" }, + { "be41463cd918daef107d249f8cde3409", "Dan Hitchens and Mike Mika", "", "Berzerk (Voice Enhanced) (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "bedfbde71fb606601f936b5b057f26f7", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "194", "", "" }, + { "bfa58198c6b9cd8062ee76a2b38e9b33", "", "", "20 Sprites at Once Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c02e1afa0671e438fd526055c556d231", "", "", "A-Team, The (Atari) (Prototype) (PAL-60) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "c126656df6badfa519cc63e681fb3596", "", "", "Space Invaders (2002) (Ron Corcoran) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1b1049b88bcd98437d8872d1d62ba31", "", "", "Demo Image Series #4 - Donald (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c21450c21efb7715746e9fa87ad6f145", "Hozer Video Games", "", "Gunfight 2600 - It could've been soooo cool, but... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "" }, + { "c2778507b83d9540e9be5713758ff945", "", "", "Island Flyer Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c31a17942d162b80962cb1f7571cd1d5", "Rainbow Vision", "", "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "c3a9550f6345f4c25b372c42dc865703", "Atari", "CX2663", "Road Runner (1989) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "44", "225", "", "" }, + { "c3f53993ade534b0982ca3a286c85bb5", "", "", "Full Screen Bitmap Drawing System (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c47244f5557ae12c61e8e01c140e2173", "", "", "Jungle Hunt (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "" }, + { "c4bc8c2e130d76346ebf8eb544991b46", "", "", "Imagic Selector (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c5124e7d7a8c768e5a18bde8b54aeb1d", "", "", "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "c54b4207ce1d4bf72fadbb1a805d4a39", "Billy Eno", "", "Sniper (Feb 30) (2001) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "27", "229", "", "" }, + { "c5930d0e8cdae3e037349bfa08e871be", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "" }, + { "c63a98ca404aa5ee9fcff1de488c3f43", "Atari", "CX26145", "Venture (1988) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "c6ae21caceaad734987cb24243793bd5", "CCE", "", "Frostbite (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "" }, + { "c73ae5ba5a0a3f3ac77f0a9e14770e73", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "" }, + { "c7d5819b26b480a49eb26aeb63cc831e", "", "AX-012", "Ice Hockey (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "" }, + { "c830f6ae7ee58bcc2a6712fb33e92d55", "Atari", "", "Tempest (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c92cfa54b5d022637fdcbdc1ef640d82", "Retroactive", "", "Qb (V2.05) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "ca09fa7406b7d2aea10d969b6fc90195", "Activision", "AX-024", "Dolphin (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "" }, + { "ca53fc8fd8b3c4a7df89ac86b222eba0", "CCE", "", "Pac-Man (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "", "206", "", "" }, + { "cb0b5b8458a13a074e1fe82d3c4e8f3c", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [b1]", "", "Rare", "", "FE", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "cb9626517b440f099c0b6b27ca65142c", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "38", "", "", "" }, + { "cbced209dd0575a27212d3eee6aee3bc", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "40", "187", "Yes", "" }, + { "cc74ddb45d7bc4d04c2e6f1907416699", "", "", "Colour Display Programme (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ccd6ce508eee4b3fca67212833edcd85", "", "", "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "" }, + { "cd4ded1ede63c4dd09f3dd01bda7458c", "", "", "Laser Gate (Future Video Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "cdb81bf33d830ee4ee0606ee99e84dba", "Starpath", "AR-4300", "Fireball (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "PAL", "8", "136", "52", "", "", "" }, + { "ce4bbe11d682c15a490ae15a4a8716cf", "", "", "Okie Dokie (Older) (PD)", "", "New Release", "", "2K", "", "", "", "", "", "", "", "16", "128", "30", "178", "", "" }, + { "cef01595000627ee50863d4290372c27", "", "", "Many Blue Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "cf63ffac9da89ef09c6c973083061a47", "CCE", "", "M.A.S.H. (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "" }, + { "cfef1a2d1f6a5ee7a5e1f43f3056f112", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d026716b3c5be2c951cc4c064317c524", "", "", "Fu Kung! (V0.06) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d09935802d6760ae58253685ff649268", "Telesys", "1006", "Demolition Herby (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "187", "Yes", "" }, + { "d0b9df57bfea66378c0418ec68cfe37f", "20th Century Fox", "11002", "Beany Bopper (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "d17a671029b1532b197defca5f3649a7", "Hozer Video Games", "", "Gunfight 2600 - Limit broken again! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "" }, + { "d245e2f27c84016041e9496b66b722fe", "", "", "Gunfight 2600 - The Final Kernel (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "d2c4f8a4a98a905a9deef3ba7380ed64", "Mythicon", "MA-1001", "Sorcerer (1983) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "54", "190", "", "" }, + { "d3171407c3a8bb401a3a62eb578f48fb", "", "", "Fire Spinner (Emag) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "207", "Yes", "" }, + { "d3456b4cf1bd1a7b8fb907af1a80ee15", "Avalon Hill", "50030", "Wall Ball (1983) (Avalon Hill)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "d45ebf130ed9070ea8ebd56176e48a38", "Sega", "001-01", "Tac Scan (1983) (Sega) [!]", "Uses the Paddle Controllers (right only)", "Uncommon", "", "4K", "", "", "", "", "None", "Paddles", "", "8", "152", "44", "202", "Yes", "" }, + { "d4aa6d6095258ce46aaf6f144b09eea7", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [b2]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d536a84d4e1f170305e17f7078296a50", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a2]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "d5aa7472e7f2cc17e893a1a36f8dadf0", "", "", "Overhead Adventure Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "" }, + { "d62283aed0f4199adb2333de4c263e9c", "Atari", "CX2615", "Demons to Diamonds (1982) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "None", "PAL", "", "", "44", "229", "", "" }, + { "d69559f9c9dc6ef528d841bf9d91b275", "Activision", "AX-016", "Starmaster (1982) (Activision) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d7891b0faa4c7f764482762d0ed427a5", "", "", "Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d81bb6965e6c99b3be99ffd8978740e4", "", "", "Gunfight 2600 - The Final Kernel Part 3 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "198", "", "" }, + { "d86deb100c6abed1588aa84b2f7b3a98", "Atari", "CX2625 / 6699827 / 4975114", "Football (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d8df256c0d89e494a9fb3e9abb8e44ac", "Imagic", "IA3312", "No Escape! (1983) (Imagic) (PAL) [b1]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "", "", "50", "230", "", "" }, + { "d9548ad44e67edec202d1b8b325e5adf", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "da6465a34d2e44d26aa9a2a0cd1bce4d", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "" }, + { "dac38b4dd3da73bb7b2e9d70c61d2b7c", "", "", "Hangman Monkey Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "daef7d8e5a09981c4aa81573d4dbb380", "Adam Thornton", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD)", "Hack of Dark Mage by SuperCharger", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "" }, + { "db339aea2b65b84c7cfe0eeab11e110a", "", "", "Chronocolor Frame Demo 2 (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dba2692a216cb6c262c78f8b111a813e", "", "", "Star Fire (08-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dbc7485ad5814d466de780a3e7ed3b46", "Kyle Pittman", "", "Pink Floyd (Kyle Pittman) (PD)", "Hack of Adventures of Tron (Mattel)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "46", "180", "", "" }, + { "dca941dab5c6f859b71883b13ade9744", "", "", "Hangman Pac-Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd0cbe5351551a538414fb9e37fc56e8", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "250", "", "" }, + { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "25", "225", "", "" }, + { "dda23757407c4e217f64962c87ad0c82", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 2) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de07e9cb43ad8d06a35f6506e22c62e9", "", "", "Oh No! (Version 4) (22-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de29e46dbea003c3c09c892d668b9413", "CBS Electronics", "", "Carnival (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "212", "", "" }, + { "de78b3a064d374390ac0710f95edde92", "Bomb", "CA281", "Assault (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "203", "", "" }, + { "ded26e1cb17f875a9c17515c900f9933", "", "", "Space Treat (29-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df5cc5cccdc140eb7107f5b8adfacda1", "Cracker Jack Productions", "", "Lumberman by Cracker Jack Productions (Pac-Man Hack)", "Hack of Pac-Man (1981) (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df753cb87d3af4d03f694ab848638108", "", "", "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "dfafa3fa58f5cc3f0342cca475df6095", "", "", "Space Treat (V1.1 Beta) (24-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e02156294393818ff872d4314fc2f38e", "Panda", "", "Dice Puzzle (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "244", "Yes", "" }, + { "e0cf2dcc4c1348c468f5bb1e421c9164", "", "", "Invader Sprites in a Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e10d2c785aadb42c06390fae0d92f282", "Parker Bros", "PB5910", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "8", "249", "", "" }, + { "e15b5525cf8f77297b322838df8d999c", "", "", "Sprite Demo 0 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e20eff36464df39b192a6c220a3da95e", "", "", "Indiana Pitfall (Pitfall Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e2b682f6e6d76b35c180c7d847e93b4f", "", "", "Dodge Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e314b42761cd13c03def744b4afc7b1b", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "48", "187", "", "" }, + { "e37c8055d70979af354251ebe9f1b7dd", "HES", "", "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "240", "", "" }, + { "e40a818dac4dd851f3b4aafbe2f1e0c1", "", "CX26137", "Peek-A-Boo (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "" }, + { "e4a0b28befaaa2915df1fa01238b1e29", "", "", "Gunfight 2600 - Red River (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "e4c2077a18e3c27f4819aa7757903aa0", "", "", "Many Blue Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "e51030251e440cffaab1ac63438b44ae", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "e5a6e0bb7d56e2f08b237e15076e5699", "", "", "Color Table Display Helper (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e5fcc62e1d73706be7b895e887e90f84", "Atari", "", "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "" }, + { "e63efdfda9a4003dcd77a854a781a06a", "Paul Slocum", "", "Combat Rock (PD) [a1]", "Hack of Combat (1977) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "e6508b878145187b87b9cded097293e7", "", "", "Oystron (V2.8) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "197", "", "" }, + { "e73838c43040bcbc83e4204a3e72eef4", "CCE", "", "Apples and Dolls (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "e7dd8c2e6c100044002c1086d02b366e", "", "", "Barnstorming (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "" }, + { "e88340f5bd2f03e2e9ce5ecfa9c644f5", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "196", "", "" }, + { "e8f7679359c4f532f5d5e93af7d8a985", "", "", "Hangman Invader Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "218", "", "" }, + { "ea832e2cb6aae6f525f07452c381fa48", "", "", "Polar to Cartesian and VV (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eafe8b40313a65792e88ff9f2fe2655c", "Eric Ball", "ELB004", "Skeleton+ (NTSC)", "Stereo sound", "Homebrew", "Stereo", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb503cc64c3560cd78b7051188b7ba56", "CCE", "", "Moto Laser (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "193", "", "" }, + { "eb92193f06b645df0b2a15d077ce435f", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "64", "192", "Yes", "" }, + { "eb9f8b84c193d9d93a58fca112aa39ed", "", "", "Register Twiddler Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "" }, + { "ec3beb6d8b5689e867bafb5d5f507491", "US Games", "VC 1003", "Word Zapper (1982) (US Games) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ec5d04b7e6cc6641d74d3ba7bb41ebc9", "Absolute-Activision", "", "Pro Wrestling (Absolute-Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "184", "", "" }, + { "ed2218b3075d15eaa34e3356025ccca3", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "188", "", "" }, + { "ee28424af389a7f3672182009472500c", "Atari", "", "Polo (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "" }, + { "ee84bdc5dae268e227e407c7b5e6b6b7", "", "", "Marilyn Monroe Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eed9eaf1a0b6a2b9bc4c8032cb43e3fb", "Atari", "CX26192", "Klax (1990) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "ef66af190840871409fe1702d2483554", "", "", "DiscoTech (12-02-2003) (Andrew Davie, Paul Slocum And Christopher Tumber)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efffafc17b7cb01b9ca35324aa767364", "Cooper Black", "", "See Saw (Cooper Black) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "", "", "42", "190", "", "" }, + { "f066bea7ab0a37b83c83c924a87c5b67", "", "", "Air Raiders (1982) (Mattel) [h1]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "202", "", "" }, + { "f0e0addc07971561ab80d9abe1b8d333", "Imagic", "IA3200", "Demon Attack (1982) (Imagic w-Picture Label) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "39", "194", "", "" }, + { "f137211537438b1fce3d811baef25457", "", "", "Incoming (02-10-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1a0a23e6464d954e3a9579c4ccd01c8", "20th Century Fox", "11006", "Alien (1982) (20th Century Fox)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "12", "136", "39", "189", "Yes", "" }, + { "f20bd756f3990e06c492f53cd0168e68", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f2d40c70cf3e1d03bc112796315888d9", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "PAL", "", "", "", "246", "", "" }, + { "f34f08e5eb96e500e851a80be3277a56", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "f3f92aad3a335f0a1ead24a0214ff446", "", "", "Spectrum Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f473f99e47d4026a7a571184922ebf04", "Philp R. Frey", "", "Donkey Claus by Philip R. Frey (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f4b8a47a95b61895e671c3ec86ffd461", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 010384)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "f5a2f6efa33a3e5541bc680e9dc31d5b", "Starsoft", "", "Motocross (Starsoft) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "" }, + { "f69a39b215852a0c2764d2a923c1e463", "", "", "Move a Blue Blob Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6a9ea814d15b85bffe980c927df606b", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "220", "Yes", "" }, + { "f714a223954c28eccf459295517dcae6", "", "", "Big - Move This Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "f777444fc21a5925e066b68b1d350575", "", "", "Marble Craze (Kernel Works) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7e07080ed8396b68f2e5788a5c245e2", "", "TP-617", "Farmyard Fun (Telegames) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "212", "", "" }, + { "f8582bc6ca7046adb8e18164e8cecdbc", "HomeVision", "", "Panda Chase (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "256", "", "" }, + { "f8ff34b53d86f55bd52d7a520af6d1dc", "", "", "Big Dig (04-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f93d7fee92717e161e6763a88a293ffa", "20th Century Fox", "11013", "Porky's (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "42", "229", "", "" }, + { "f96a763ced577e383d1102c4d0949525", "", "", "Death Derby (v0005) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9cef637ea8e905a10e324e582dd39c2", "CCE", "", "Private Eye (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "193", "", "" }, + { "fa2be8125c3c60ab83e1c0fe56922fcb", "DSD-Camelot", "", "Tooth Protectors (DSD-Camelot)", "", "Unbelievably Rare", "", "E0", "", "", "", "", "", "", "", "", "", "26", "220", "Yes", "" }, + { "fa447e4e2f0d5e67cbf0b060fac5944c", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "fa7e11a3dbea4365975cd2f094e61d25", "Tim Snider", "", "Mystery Science Theater 2600 by Tim Snider (Megamania Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "faebcb2ef1f3831b2fc1dbd39d36517c", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "66", "191", "", "" }, + { "fb09ee4ccd47ae74a3c314f0d8a40344", "", "", "Titans (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb0e84cee4c108d24253bcb7e382cffd", "", "", "Interleaved ChronoColour Demo (SECAM) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb5c8af97bd8ffe88323656f462645a7", "", "", "Interlace Demo (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb91dfc36cddaa54b09924ae8fd96199", "", "", "Frogger II - Threedeep! (1984) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "fbb4f3debf48dc961b559384467f2057", "", "", "River Raid III (1985) (Digitel-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "fc2233fc116faef0d3c31541717ca2db", "Atari", "CX2646", "Pac-Man (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "51", "223", "", "" }, + { "fcea12625c071ddc49f4e409f4038c60", "", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd7464edaa8cc264b97ba0d13e7f0678", "HES", "", "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "" }, + { "fe0b7f27e3ad50bbf9ff468ee56d553d", "", "", "Lines Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "192", "", "" }, + { "fec0c2e2ab0588ed20c750b58cf3baa3", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "202", "", "" }, + { "feedcc20bc3ca34851cd5d9e38aa2ca6", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "47", "195", "", "" }, + { "ff7627207e8aa03730c35c735a82c26c", "Atari", "", "Blackjack (32-in-1) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "64", "", "", "" }, + { "ffc0ff4305dd46b4b459885bd1818e2e", "Barry Laws Jr.", "", "Star Wars - The Battle of Alderaan (Star Strike Hack)", "Hack of Star Strike (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "" }, + { "000509d1ed2b8d30a9d94be1b3b5febb", "", "", "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "" }, + { "008543ae43497af015e9428a5e3e874e", "Retroactive", "", "Qb (V2.09) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "00ce76ad69cdc2fa36ada01ae092d5a6", "", "", "Cosmic Avenger (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "00e19ebf9d0817ccfb057e262be1e5af", "Atari", "CX2639", "Othello (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "230", "", "" }, + { "01297d9b450455dd716db9658efb2fae", "TechnoVision", "", "Save Our Ship (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "", "", "" }, + { "01acf9881a2f8bfa2d49982b1b10fb64", "", "", "Image - Woody (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "01e5c81258860dd82f77339d58bc5f5c", "CCE", "", "Corrida da Matematica (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "0277c449fae63f6f1c8f94dedfcf0058", "", "", "Laser Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "02811151906e477d47c135db5b1699c6", "", "", "FlickerSort Demo (Updated) (20-04-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "02ced7ea2b7cb509748db6bfa227ebec", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "43", "229", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0375f589f7da06d2d2be532e0d4d4b94", "", "", "Push (V0.04) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "03b1051c9374678363c899914412cfc5", "", "", "Incoming (30-10-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "043f165f384fbea3ea89393597951512", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "" }, + { "047ac3b9faea64522b7a23c4465a7aa8", "Atari", "", "Defender (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "04b488d4eef622d022a0021375e7e339", "Starsoft", "", "Tennis (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "32", "230", "", "" }, + { "04fccc7735155a6c1373d453b110c640", "HES", "", "My Golf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "" }, + { "056f5d886a4e7e6fdd83650554997d0d", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "4K", "A", "A", "", "", "", "None", "PAL", "4", "152", "64", "182", "", "" }, + { "05aedf04803c43eb5e09dfd098d3fd01", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "" }, + { "05ccf96247af12eef59698f1a060a54f", "Starsoft", "", "King Arthur (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "", "", "" }, + { "05eb4347f0ec8f4783983ca35ffd8d1b", "", "", "Qb (2.06) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "" }, + { "0614ed51acd027d531e7c85c4f435292", "", "", "Narnia (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "06953ed762220dba63d63930d4ad0cc3", "", "", "Star Fire - Eckhard WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "06db908011065e5ebb37f4e253c2a0b0", "US Games", "", "Gopher (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "" }, + { "073cb76b006af034fd150be3f5e0e7e6", "", "", "Mobile 48 Sprite Kernel (Bug Fixed) (10-01-2003) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0751f342ee4cf28f2c9a6e8467c901be", "", "", "Super Baseball (1988) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "220", "", "" }, + { "079fe9103515d15bc108577e234a484d", "", "", "Multi-Color Demo 0 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "07f91e33e76f53bb9d2731fd5d8a35a5", "Atari", "CX2632", "Space Invaders (1978) (Atari) [t1]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "08188785e2b8300983529946dbeff4d2", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [o1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "30", "205", "", "" }, + { "082fdc8bd47fef01482ce5883c4ffdb8", "Charles Morgan", "", "Tanks DX by Charles Morgan (Tanks but no Tanks Hack)", "Hack of Tanks But No Tanks (Zimag)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "083e7cae41a874b2f9b61736c37d2ffe", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "218", "", "" }, + { "0894aa7be77521f9df562be8d9555fe6", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "08d60a58a691c7f690162850302dc0e1", "", "", "Poker Squares (V0.27) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "" }, + { "0906c6e0e4bda9c10cfa4c5fc64d2f4b", "Retroactive", "", "Qb (V0.12) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "09388bf390cd9a86dc0849697b96c7dc", "", "AK-045", "Pete Rose Baseball (1988) (Absolute)", "", "Rare", "", "F6", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "096649575e451508006b17e0353259a5", "", "", "Yar Vs. Yar (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "" }, + { "09abfe9a312ce7c9f661582fdf12eab6", "Atari", "CX26154", "Super Football (1988) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "4", "152", "42", "182", "", "" }, + { "09e1ecf9bd2a3030d5670dba7a65e78d", "Atari", "CX2654", "Haunted House (1981) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "45", "196", "", "" }, + { "0abf64ca504a116adca80f77f85e00fb", "", "", "Cube Conquest (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0aceb7c3bd13fe048b77a1928ed4267d", "Imagic", "IA3201", "Star Voyager (1982) (Imagic) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "0af51ceb4aecc7a8fc89781ac44a1973", "Barry Laws Jr.", "", "Face Invaders Deluxe by Barry Laws Jr. (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "0b01909ba84512fdaf224d3c3fd0cf8d", "", "", "Revenge of the Apes (Planet of the Apes Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b33252b680b65001e91a411e56e72e9", "CCE", "", "Atlantis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "0b577e63b0c64f9779f315dca8967587", "Ariola", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "0bfabf1e98bdb180643f35f2165995d0", "", "CX2623 / 99819 / 75125", "Home Run (1978) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "41", "218", "", "" }, + { "0c48e820301251fbb6bcdc89bd3555d9", "Atari", "CX26120", "Stargate (1984) (Atari)", "", "Rare", "", "F8SC", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "0cb3211ec39a66e225e8faa9fbdb0757", "Activision", "AK-049", "Rampage! (1989) (Activision) [b1]", "", "Rare", "", "F6", "", "", "", "", "", "", "", "12", "136", "38", "200", "", "" }, + { "0cc8224ff1edfe458e8629e9e5fe3f5b", "", "", "Trick 12 (2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d07d2c1be1a5eaaea235a533bcda781", "", "", "Scrolling Playfield 1 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d27c7f5db349b592f70f68daf5e8f3b", "", "", "Space Instigators (21-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d786a41695e5fc8cffd05a6dbb3f659", "", "", "Scrolling Playfield With Score (10-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0db4f4150fecf77e4ce72ca4d04c052f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "" }, + { "0dfbdadf8f1bc718e7e1bb3ccd5fef3d", "", "", "Mr. Pac-Man (New start tune) (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0e86470791b26292abe1c64545c47985", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "50", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0f2e09c71cc216f79d22a804152ba24b", "Bob Colbert", "", "Scroller Demo (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "0f643c34e40e3f1daafd9c524d3ffe64", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0fba7d8c3520bdb681f75494e498ec36", "", "", "Gunfight 2600 - Final Run (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "0fd72a13b3b6103fc825a692c71963b4", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "" }, + { "103e9d616328969f5d7b4e0a381b25d5", "", "", "Playfield Illustration and Logo Demo (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "106326c262dfd3e8eaeabd961d2a0519", "", "", "PAL-NTSC Detector (15-11-2002) (CT)[a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "107cc025334211e6d29da0b6be46aec7", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "33", "194", "", "" }, + { "10f62443f1ae087dc588a77f9e8f43e9", "", "", "Dodge 'em (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "" }, + { "119305fe8e3c6cb878e8b610af8f0663", "", "", "Greeting Cart Ali Landry Closeup (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1228c01cd3c4b9c477540c5adb306d2a", "Atari", "", "Basketball (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "192", "", "" }, + { "1278f74ca1dfaa9122df3eca3c5bcaad", "Starsoft", "SS-013", "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "" }, + { "12cd04d3298633413a756795c49dc0c6", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "133a4234512e8c4e9e8c5651469d4a09", "", "", "Obelix (1983) (Atari) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "1351c67b42770c1bd758c3e42f553fea", "Digivision", "", "Keystone Kapers (Digivision) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "196", "", "" }, + { "136f75c4dd02c29283752b7e5799f978", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari)", "", "Common", "", "4K", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "13895ef15610af0d0f89d588f376b3fe", "Tigervision", "7-005", "Marauder (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13abc32f803165c458bb086fa57195fb", "Christian Samuel", "", "E.T. The Extra-Testical by Christian Samuel (E.T. Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "" }, + { "140909d204abd6841c64cdad4d7765b4", "", "", "Moving Blue Ladder Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "143918368f4f4dfff90999188c0197c9", "", "", "Unknown Title (bin00016 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "14a56b493a8d9d10e94a3e100362e3a2", "Hozer Video Games", "", "Gunfight 2600 - Early Play-kernel (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "213", "", "" }, + { "14dbb3686dd31964332dc2ef0c55cad0", "", "", "Demo Image Series #15 - Three Marios (PAL) (Non-Interleave) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "152e55f88af3ff647e75a3070b7b6842", "Activision", "", "Turmoil (198x) (Activision)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "52", "186", "", "" }, + { "155fa7f479dcba3b10b1494e236d6010", "", "", "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "57", "195", "", "" }, + { "15b498199ed0ed28057bf0dbdce9b8d8", "Hozer Video Games", "", "Jammed (V0.2) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "15dd21c2608e0d7d9f54c0d3f08cca1f", "Data Age", "112-008", "Frankenstein's Monster (1983) (Data Age) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "38", "206", "", "" }, + { "1623da579aa30b957bb8fa6ccd89b30a", "", "", "Image - USA Flag (15-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "169d4c7bd3a4d09e184a3b993823d048", "Atari", "", "Superman (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "16e04823887c547dc24bc70dff693df4", "Atari", "", "Tennis (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "170e7589a48739cfb9cc782cbb0fe25a", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "" }, + { "1733772165d7b886a94e2b4ed0f74ccd", "", "", "Boring Journey Escape (Journey - Escape Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17515a4d0b7ea5029ffff7dfa8456671", "Piero Cavina", "", "Multi-Sprite Demo V1.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "177504abd4260c4265e1338955e9fa47", "HCC Software", "", "Pitfall! (Steroids Hack)", "Hack of Pitfall! (Activision)", "", "", "4K", "", "", "", "", "", "", "", "8", "148", "40", "195", "", "" }, + { "17ba72433dd41383065d4aa6dedb3d91", "", "", "SCSIcide (09-06-2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17ee158d15e4a34f57a837bc1ce2b0ce", "", "", "Joust (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "180c234496f31a8671226277e0afbf2f", "", "", "Greeting Cart Mario And Luigi(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "18760f1f9ca5e18610115cf7b815b824", "", "", "Star Fire (23-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "18bebbbd41c234f82b1717b1905e6027", "", "", "Space Instigators (Public Release) (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "18ed63e3ce5bc3dd2d8bd188b807f1a2", "", "", "Stell-A-Sketch (Bob Colbert) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "191449e40b0c56411c70772706f79224", "", "", "Multi-Color Demo 2 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "199eb0b8dce1408f3f7d46411b715ca9", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "144", "24", "215", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19d9b5f8428947eae6f8e97c7f33bf44", "", "", "Fortress (Dual Version) (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19e761e53e5ec8e9f2fceea62715ca06", "Panda", "104", "Scuba Diver (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "42", "199", "", "" }, + { "1aa7344b563c597eecfbfcf8e7093c27", "David Marli", "", "Slot Invaders by David Marli (Slot Machine Hack)", "Hack of Slot Machine (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "" }, + { "1b8c3c0bfb815b2a1010bba95998b66e", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "" }, + { "1bf503c724001b09be79c515ecfcbd03", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "226", "", "" }, + { "1c6eb740d3c485766cade566abab8208", "Atari", "CX26110", "Crystal Castles (1984) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "" }, + { "1cafa9f3f9a2fce4af6e4b85a2bbd254", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari) (PAL) [!]", "Console ports are swapped", "Common", "", "F8", "", "", "", "Yes", "", "", "PAL", "", "", "64", "193", "", "" }, + { "1cf59fc7b11cdbcefe931e41641772f6", "Sega", "005-01", "Buck Rogers - Planet of Zoom (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "1d2a28eb8c95da0d6d6b18294211839f", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "184", "", "" }, + { "1da2da7974d2ca73a823523f82f517b3", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "63", "193", "", "" }, + { "1e060a8025512ad2127e3da11e212ccc", "Starpath", "", "Sweat! - The Decathalon Game (2 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "AR", "", "", "", "", "Paddles", "", "", "8", "144", "35", "200", "", "" }, + { "1e1817d9cbcc3ba75043b7db4e6c228f", "", "", "Star Fire (07-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e587ca91518a47753a28217cd4fd586", "Telesys", "1001", "Coconuts (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "", "", "" }, + { "1ec5bef77b91e59313cba205f15b06d7", "", "", "Overhead Adventure Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "" }, + { "1ee2cfc7d0333b96bd11f7f3ec8ce8bc", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f2ae0c70a04c980c838c2cdc412cf45", "", "", "Rubik's Cube (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "200309c8fba0f248c13751ed4fc69bab", "Jeffry Johnston", "", "Radial Pong - Version 1 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "200a9d2a7cb4441ce4f002df6aa47e38", "Eduardo", "", "Doomzerk (PD)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "203abb713c00b0884206dcc656caa48f", "Imagic", "O3207", "Moonsweeper (1983) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "", "41", "188", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "211774f4c5739042618be8ff67351177", "Atari", "CX2684", "Galaxian (1983) (Atari) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "" }, + { "2124cf92978c46684b6c39ccc2e33713", "Bitcorp", "", "Sea Monster (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "213e5e82ecb42af237cfed8612c128ac", "Sancho", "", "Forest (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "36", "251", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "21b09c40295c2d7074a83ae040f22edf", "", "", "Marble Craze (V0.90) (Easy Version) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2228c67d25e507603d4873d3934f0757", "", "", "Fu Kung! (V0.10) (28-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "225522777dc7155627808bde0c1d0ef0", "", "", "This Planet Sucks Demo 1 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "2351d26d0bfdee3095bec9c05cbcf7b0", "", "", "Warring Worms (19-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics", "2459", "Mouse Trap (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "Yes", "" }, + { "240bfbac5163af4df5ae713985386f92", "Activision", "AX-022", "Seaquest (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "2447e17a4e18e6b609de498fe4ab52ba", "", "", "Super Futebol (Pussy Style) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "245f07c8603077a0caf5f83ee6cf8b43", "HomeVision / Thomas Jentzsch", "", "Parachute (HomeVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "47", "220", "", "" }, + { "24ad538291eb5f5cac4b9998f3b851c3", "", "", "Gunfight 2600 - This time it's your decission! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "24b9adac1b4f85b0bac9bf9b9e180906", "Angelino", "", "Space 2002 by Angelino (Space Jockey Hack)", "Hack of Space Jockey (1982) (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24fbf8250a71611e40ef18552e61b009", "", "", "Movable Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "" }, + { "25472dfdeef6a42581a231d631d6b04d", "", "", "Gunfight 2600 - Design thoughts (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "25a21c47afe925a3ca0806876a2b4f3f", "Starsoft", "", "Der kleine Baer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "195", "", "" }, + { "25b6dc012cdba63704ea9535c6987beb", "Avalon Hill", "50040", "Shuttle Orbiter (1983) (Avalon Hill)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25d4be3309b89583c6b39d9f93bf654f", "Activision", "AX-015", "Chopper Command (1982) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "" }, + { "25f2e760cd7f56b88aac88d63757d41b", "Activision", "AG-002", "Boxing (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "140", "64", "201", "", "" }, + { "262ccb882ff617d9b4b51f24aee02cbe", "Atari", "CX26154", "Super Football (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "4", "152", "64", "189", "", "" }, + { "268f46038e29301568fa9e443e16e960", "", "", "Pitfall Unlimited (Atarius Maximus)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "26f4f8b098609164effef7809e0121e1", "", "", "Oystron (V2.7) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "2723e442d55d741a8e2d9293108cd5ed", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "" }, + { "277c7281ac945b8331e2e6fcad560c11", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "", "", "38", "200", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (Telegames) (PAL) [a1]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "61", "206", "", "" }, + { "27c8a76cf59a9fc6b667468ef1e3f9e9", "", "", "Greeting Cart Atari-Troll(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2808dc745ff4321dc5c8122abef6711f", "Retroactive", "", "Qb (2.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "2823364702595feea24a3fbee138a243", "Bitcorp", "PG206", "Bobby is Going Home (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "245", "", "" }, + { "283dee88f295834c4c077d788f151125", "Retroactive", "", "Qb (2.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "28d5df3ed036ed63d33a31d0d8b85c47", "Bitcorp", "PG204", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "Yes", "" }, + { "291bcdb05f2b37cdf9452d2bf08e0321", "Atari", "", "32-in-1 (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "292a0bb975b2587f9ac784c960e1b453", "", "", "Qb (05-02-2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "2942680c47beb9bf713a910706ffabfe", "", "", "Blue Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "297c405afd01f3ac48cdb67b00d273fe", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "", "", "64", "180", "", "No" }, + { "299eb1ad959176b2c89f36082ee5e861", "", "", "Death Derby (14-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a0ba55e56e7a596146fa729acf0e109", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "" }, + { "2a2f46b3f4000495239cbdad70f17c59", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "" }, + { "2a9f9001540c55a302befd8e9d54b47b", "", "", "Mario Bros (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "2ae700c9dba843a68dfdca40d7d86bd6", "TechnoVision / Thomas Jentzsch", "", "Pharaoh's Curse (TechnoVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "43", "236", "Yes", "" }, + { "2b71a59a53be5883399917bf582b7772", "Greg Troutman", "", "Dark Mage (final beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "8", "144", "36", "201", "Yes", "" }, + { "2bd00beefdb424fa39931a75e890695d", "Atari", "CX2663", "Road Runner (1989) (Atari) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "28", "194", "", "" }, + { "2c0dc885d5ede94aa664bf3081add34e", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "220", "", "" }, + { "2c2aea31b01c6126c1a43e10cacbfd58", "Paul Slocum", "", "Synthcart (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "2c3b9c171e214e9e46bbaa12bdf8977e", "", "CX2639 / 4975162", "Othello (1978) [p1][o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c8835aed7f52a0da9ade5226ee5aa75", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "" }, + { "2cccc079c15e9af94246f867ffc7e9bf", "Mystique", "1011", "Jungle Fever (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "", "" }, + { "2cfb188c1091cc7ec2a7e60064d2a758", "", "", "Space Invaders Hack Demo (2003) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d69a5f23784f1c2230143292a073b53", "", "", "Qb (Fixed background animation) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "2d9e65959808a6098c16c82a59c9d9dc", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "" }, + { "2dfec1615c49501fefc02165c81955e6", "", "", "Song (05-11-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2e3728f3086dc3e71047ffd6b2d9f015", "Atari", "", "Outlaw (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "230", "", "" }, + { "2e82a1628ef6c735c0ab8fa92927e9b0", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "227", "", "" }, + { "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "61", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2f11ba54609777e2c6a5da9b302c98e8", "Atari", "", "Centipede (1982) (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "197", "", "" }, + { "2f66ebf037321ed0442ac4b89ce22633", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 2) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "" }, + { "2facd460a6828e0e476d3ac4b8c5f4f7", "", "", "Sancho - Words (198x) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30512e0e83903fc05541d2f6a6a62654", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "" }, + { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "" }, + { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (1978) (Atari) [h3]", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "" }, + { "30f0b49661cfcfd4ec63395fab837dc3", "", "", "Star Trek - Strategic Operations Simulator (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "310ba30e25ea8957e58180b663503c0c", "Ed Federmeyer", "", "Sound X6 (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "36", "185", "", "" }, + { "3177cc5c04c1a4080a927dfa4099482b", "Atari", "CX26135", "RealSports Boxing (1987) (Atari)", "", "Uncommon", "", "F6", "", "", "", "", "", "", "", "8", "152", "38", "185", "", "" }, + { "318046ae3711c05fd16e479b298e5fcc", "Retroactive", "", "Qb (V2.08) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "319a142aab6260842ab616382848c204", "", "", "Marble Craze (05-02-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "31df1c50c4351e144c9a378adb8c10ba", "Starsoft", "", "Die Ratte und die Karotten (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "" }, + { "32199271dc980eb31a2cc96e10a9e244", "", "", "Radial Pong - Version 12 (Jeffry Johnston) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3225676f5c0c577aeccfaa7e6bedd765", "CCE", "", "Pole Position (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "" }, + { "3276c777cbe97cdd2b4a63ffc16b7151", "", "CX2691", "Joust (1982) (Atari)", "", "Common", "", "F8", "", "", "", "", "", "", "", "8", "144", "39", "200", "Yes", "" }, + { "32ecb5a652eb73d287e883eea751d99c", "Dactar", "", "Bowling (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "215", "", "" }, + { "3316ee2f887e9cb9b54dd23c5b98c3e2", "", "", "Texas Golf (miniature Gold Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "332f01fd18e99c6584f61aa45ee7791e", "Zellers / CCE", "C-845", "Raumpatrouille (CCE) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "28", "229", "Yes", "" }, + { "335793736cbf6fc99c9359ed2a32a49d", "", "", "Analog Clock (V0.0) (20-01-2003) (AD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "340f546d59e72fb358c49ac2ca8482bb", "Sancho", "", "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "244", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "345758747b893e4c9bdde8877de47788", "CBS Electronics", "", "Venture (1982) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "250", "Yes", "" }, + { "348615ffa30fab3cec1441b5a76e9460", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "34f4b1d809aa705ace6e46b13253fd3b", "", "", "Nothern Alliance (Aaron Bergstrom) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3576037c9281656655fa114a835be553", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "No" }, + { "35b10a248a7e67493ec43aeb9743538c", "", "", "Defender (Dor-x) (Defender Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "35fa32256982774a4f134c3347882dff", "Retroactive", "", "Qb (V0.05) (Macintosh) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3624e5568368929fabb55d7f9df1022e", "Activision", "", "Double Dragon (1989) (Activision) (PAL) [!]", "", "", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "" }, + { "367411b78119299234772c08df10e134", "Atari", "", "Skiing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36b20c427975760cb9cf4a47e41369e4", "Coleco", "2451", "Donkey Kong (198x)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36e47ed74968c365121eab60f48c6517", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "216", "", "" }, + { "372bddf113d088bc572f94e98d8249f5", "Dynamics-Goliath", "", "Breakdown (AKA Capture) (Dynamics-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "37527966823ee9243d34c7da8302774f", "US Games", "", "Word Zapper (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "378a62af6e9c12a760795ff4fc939656", "", "", "Motorodeo (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "37f42ab50018497114f6b0f4f01aa9a1", "", "", "Droid Demo 2-M (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3856b9425cc0185ed770376a62af0282", "Kyle Pittman", "", "Yellow Submarine (Bermuda Triangle Hack)", "Hack of Bermuda Triangle (Data Age)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3889351c6c2100b9f3aef817a7e17a7a", "CCE", "", "Dolphin (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "" }, + { "38de7b68379770b9bd3f7bf000136eb0", "Imagic", "O3213", "Subterrenea (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "392f00fd1a074a3c15bc96b0a57d52a1", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari)", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "None", "", "", "", "", "200", "Yes", "" }, + { "39790a2e9030751d7db414e13f1b6960", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "39da69ff9833f8c143f03b6e0e7a996b", "Activision / Charles Morgan", "", "Ventrra Invaders 2002 by Charles Morgan (Space Invaders Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "3a35d7f1dc2a33565c8dca52baa86bc4", "", "", "Rubik's Cube Demo 2 (23-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3a526e6a1f9fe918af0f2ce997dfea73", "CBS Electronics", "", "Donkey Kong (1983) (CBS Electronics) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "212", "", "" }, + { "3ab5d138e26d88c8190e7cc629a89493", "", "", "Phased Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3b097a7ed5bd2a84dc3d3ed361e9c31c", "", "", "Interleaved ChronoColour Demo (PAL) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "3b2c32fcd331664d037952bcaa62df94", "", "", "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "" }, + { "3b5751a8d20f7de41eb069f76fecd5d7", "", "", "Eckhard Stolberg's Scrolling Text Demo 4 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "" }, + { "3b76242691730b2dd22ec0ceab351bc6", "Mattel", "MT4318", "Masters of the Universe - The Power of He-Man (1983) (Mattel)", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "", "38", "185", "", "" }, + { "3b91c347d8e6427edbe942a7a405290d", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "40", "200", "", "" }, + { "3c3a2bb776dec245c7d6678b5a56ac10", "", "", "Unknown Title (bin00003) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3c57748c8286cf9e821ecd064f21aaa9", "Atari", "CX26118", "Millipede (1984) (Atari)", "", "Rare", "", "F6SC", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "" }, + { "3c8e57a246742fa5d59e517134c0b4e6", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros)", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "41", "188", "", "" }, + { "3d1e83afdb4265fa2fb84819c9cfd39c", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "47", "200", "", "" }, + { "3d2652cbea462a886a41791dd7c8d073", "", "", "Ritorno dei frattelli di Mario (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d7aad37c55692814211c8b590a0334c", "Atari", "", "Telepathy (Prototype) (Atari) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3da7cc7049d73d34920bb73817bd05a9", "Activision", "AX-023", "Oink! (1983) (Activision) [o1]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "" }, + { "3e33ac10dcf2dff014bc1decf8a9aea4", "Spectravideo", "", "Chase the Chuckwagon (1983) (Spectravideo)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "3e6dab92009d6034618cb6b7844c5216", "", "", "Ed Invaders (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "3eccf9f363f5c5de0c8b174a535dc83b", "Activision", "AX-027", "Plaque Attack (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "" }, + { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "16", "128", "63", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f3ad2765c874ca13c015ca6a44a40a1", "CCE", "", "Crackpots (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "191", "", "" }, + { "3f5a43602f960ede330cd2f43a25139e", "Activision", "AG-003", "Checkers (1980) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "20", "140", "27", "", "", "" }, + { "3f9431cc8c5e2f220b2ac14bbc8231f4", "", "", "Colors Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3fe43915e5655cf69485364e9f464097", "CCE", "", "Fisher Price (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4066d7d88ec4a2c656127a67fa52dcf1", "", "", "Overhead Adventure Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "213", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40aa851e8d0f1c555176a5e209a5fabb", "", "", "Euchre (More for less) (NTSC) (22-08-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40d7ccd460c9b1198238af6ceea1737d", "", "", "Star Fire - Enemy Mine (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40d9f5709877ecf3dd1184f9791dd35e", "Dactar", "", "Skiing (1980) (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "37", "194", "", "" }, + { "415c11fcac66bbd2ace2096687774b5a", "", "", "Fu Kung! (V0.00) (07-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4189adfc1b30c121248876e3a1a3ac7e", "Eric Ball", "", "Skeleton (Complete) (06-09-2002) (Eric Ball)", "", "New Release", "Stereo", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "41f252a66c6301f1e8ab3612c19bc5d4", "Atari", "CX2681", "Battlezone (1983) (Atari) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "4", "152", "32", "200", "", "No" }, + { "4251b4557ea6953e88afb22a3a868724", "", "", "Robot City (V1.1) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "42ae81ae8ac51e5c238639f9f77d91ae", "", "", "Multi-Sprite Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "42e0ec5ab8f5deba53e4169ff2a5efbe", "", "", "Atari Logo Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4326edb70ff20d0ee5ba58fa5cb09d60", "Atari", "CX2689", "Kangaroo (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "36", "200", "", "" }, + { "43f33c6dfdeaf5138ce6e6968ad7c5ce", "Jeffry Johnston", "", "Radial Pong - Version 11 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "44560e324ffb30741a483218ba5b4342", "", "", "Star Fire - Faster Skipping 2 (24-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4476c39736090dabac09f6caf835fc49", "", "", "Text Screen (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "44f71e70b89dcc7cf39dfd622cfb9a27", "Tigervision", "", "Polaris (1983) (Tigervision) (maybe beta)", "", "", "", "3F", "", "", "", "", "", "", "", "8", "144", "35", "", "", "" }, + { "4543b7691914dfd69c3755a5287a95e1", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "Yes", "" }, + { "457e7d4fcd56ebc47f5925dbea3ee427", "Carrere Video", "", "Space Jockey (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "245", "", "" }, + { "45beef9da1a7e45f37f3f445f769a0b3", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "230", "", "" }, + { "463dd4770506e6c0ef993a40c52c47be", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "468f2dec984f3d4114ea84f05edf82b6", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "PAL", "8", "144", "60", "212", "Yes", "" }, + { "46c43fdcbce8fde3a91ebeafc05b7cbd", "", "", "Invaders Demo (PAL) (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4702d8d9b48a332724af198aeac9e469", "Atari", "CX2699", "Taz (1983) (Atari) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "39", "191", "", "" }, + { "47464694e9cce07fdbfd096605bf39d4", "Activision", "AK-050-04", "Double Dragon (1989) (Activision) (PAL)", "", "Rare", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "" }, + { "47911752bf113a2496dbb66c70c9e70c", "Atari", "CX26101", "Oscar's Trash Race (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "PAL", "", "", "46", "227", "", "" }, + { "47aad247cce2534fd70c412cb483c7e0", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "205", "", "" }, + { "47bb1c677fe7ba5f376372ae7358e790", "", "", "Star Fire (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "481f9a742052801cc5f3defb41cb638e", "Jeffry Johnston", "", "Radial Pong - Version 4 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "484b0076816a104875e00467d431c2d2", "Atari", "CX26150", "Q-bert (1988) (Atari) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "4", "152", "45", "202", "", "" }, + { "48e5c4ae4f2d3b62b35a87bca18dc9f5", "Starsoft", "", "Bobby geht nach Hause (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "219", "", "" }, + { "4901c05068512828367fde3fb22199fe", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "46", "235", "", "" }, + { "493daaf9fb1ba450eba6b8ed53ffb37d", "", "", "3-D Corridor Demo (27-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "49571b26f46620a85f93448359324c28", "", "", "Save Our Ship (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "4a1a0509bfc1015273a542dfe2040958", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4a45c6d75b1ba131f94a9c13194d8e46", "", "", "How to Draw a Playfield II (Joystick Hack) (1997) (Eric Bacher) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4a9009620038f7f30aaeb2a00ae58fde", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "", "", "38", "200", "", "No" }, + { "4ac9f40ddfcf194bd8732a75b3f2f214", "Atari", "CX26106", "Grover's Music Maker (Atari) (Prototype) (PAL)", "Uses Kids/Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "Keyboard", "None", "PAL", "", "", "27", "", "", "" }, + { "4af4103759d603c82b1c9c5acd2d8faf", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "Yes", "" }, + { "4b143d7dcf6c96796c37090cba045f4f", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "" }, + { "4b753a97aee91e4b3e4e02f5e9758c72", "", "", "Asymmetric Reflected Playfield (Glenn Saunders And Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4bcc7f6ba501a26ee785b7efbfb0fdc8", "", "CX2690", "Pengo (1984) (Atari)", "", "Extremely Rare", "", "F8", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "4c205f166157154df2f1ef60d87e552f", "", "", "Single-Scanline Positioning Demo 2 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4c462b2b6fb0a19a1437eb2c3dc20783", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "", "", "30", "", "", "No" }, + { "4c8832ed387bbafc055320c05205bc08", "Atari", "CX2601 / 6699801 / 4975124", "Combat (1977) (Atari) [!]", "", "Common", "", "2K", "", "", "", "", "", "", "", "", "", "39", "206", "", "" }, + { "4c9307de724c36fd487af6c99ca078f2", "Imagic", "IA3409", "Sky Patrol (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "" }, + { "4ca73eb959299471788f0b685c3ba0b5", "Activision", "AX-031", "Frostbite (1983) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "" }, + { "4cd796b5911ed3f1062e805a3df33d98", "Tigervision", "7-006", "Springer (1982) (Tigervision)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "", "", "36", "202", "", "" }, + { "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "" }, + { "4d77f291dca1518d7d8e47838695f54b", "Data Age", "DA 1004", "Airlock (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4dcc7e7c2ec0738e26c817b9383091af", "", "", "Unknown Title (bin00026 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4df9d7352a56a458abb7961bf10aba4e", "", "", "Traffic (RJPG) (PAL)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "35", "208", "", "" }, + { "4e2c884d04b57b43f23a5a2f4e9d9750", "", "", "Baby Center Animation (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4e66c8e7c670532569c70d205f615dad", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "4f2d47792a06da224ba996c489a87939", "", "", "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "4f64d6d0694d9b7a1ed7b0cb0b83e759", "20th Century Fox", "11016", "Revenge of the Beefsteak Tomatoes (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f89b897444e7c3b36aed469b8836839", "", "", "BMX Air Master (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "202", "", "" }, + { "4fbe0f10a6327a76f83f83958c3cbeff", "", "", "Keystone Kapers (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "200", "", "" }, + { "502044b1ac111b394e6fbb0d821fca41", "", "", "Hangman Invader 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "50ef88f9a5e0e1e6b86e175362a27fdb", "", "", "Multi-Sprite Game V2.4 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "516ffd008057a1d78d007c851e6eff37", "ParkerB", "", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "256", "", "" }, + { "51e390424f20e468d2b480030ce95d7b", "Video Game Program", "", "Fire Bird (Video Game Program) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "", "", "" }, + { "522c9cf684ecd72db2f85053e6f6f720", "Rainbow Vision", "", "Year 1999, The (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "219", "", "" }, + { "525ea747d746f3e80e3027720e1fa7ac", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "52a0003efb3b1c49fcde4dbc2c685d8f", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "52e1954dc01454c03a336b30c390fb8d", "Retroactive", "", "Qb (2.14) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "534e23210dd1993c828d944c6ac4d9fb", "Mattel", "MT4648", "Kool Aid Man (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "199", "", "" }, + { "5360693f1eb90856176bd1c0a7b17432", "", "", "Oystron (V2.85) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "539d26b6e9df0da8e7465f0f5ad863b7", "Atari", "CX2636 / 4975156", "Video Checkers (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "" }, + { "540075f657d4b244a1f74da1b9e4bf92", "", "", "Festival (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "201", "", "" }, + { "543b4b8ff1d616fa250c648be428a75c", "", "", "Adventure (1978) (Atari) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "54a1c1255ed45eb8f71414dadb1cf669", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "30", "207", "", "" }, + { "551ef75593ec18d078e8f5cc0229e1c4", "", "", "Star Fire - New Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "559317712f989f097ea464517f1a8318", "Panda", "100", "Space Canyon (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "184", "", "" }, + { "55ace3c775f42eb46f08bb1dca9114e7", "", "", "Shadow Keep (04-03-2003) (Andrew Towers)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "562acb1b7ff182aba133bda8e21ad7c1", "", "", "Space Treat Deluxe (08-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5641c0ff707630d2dd829b26a9f2e98f", "Xonox", "", "Motocross Racer - Joystick (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "571c6d9bc71cb97617422851f787f8fe", "Activision", "AG-004", "Fishing Derby (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "57939b326df86b74ca6404f64f89fce9", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "57a66b6db7efc5df17b0b0f2f2c2f078", "Retroactive", "", "Qb (V2.08) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "5835a78a88f97acea38c964980b7dbc6", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "206", "Yes", "" }, + { "585f73010e205ae5b04ee5c1a67e632d", "", "", "Daredevil (V3) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "58c396323ea3e85671e34c98eb54e2a4", "", "", "Color Tweaker (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "59135f13985b84c4f13cc9e55eec869a", "", "", "Multi-Sprite Game V2.0 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "59b70658f9dd0e2075770b07be1a35cf", "Video Gems / Thomas Jentzsch", "", "Surfer's Paradise - But Danger Below! (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "59f596285d174233c84597dee6f34f1f", "CCE", "", "River Raid (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "5a5390f91437af9951a5f8455b61cd43", "Retroactive", "", "Qb (0.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5a8afe5422abbfb0a342fb15afd7415f", "Atari", "CX26155", "Sprint Master (1988) (Atari)", "", "Rare", "", "F6SC", "", "", "", "", "", "", "", "8", "144", "27", "192", "", "" }, + { "5acf9865a72c0ce944979f76ff9610f0", "", "", "Dodge Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5aea9974b975a6a844e6df10d2b861c4", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "5af9cd346266a1f2515e1fbc86f5186a", "Sega", "002-01", "Sub Scan (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "45", "194", "", "" }, + { "5b574faa56836da0866ba32ae32547f2", "", "", "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "5b7ea6aa6b35dc947c65ce665fde624b", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "5bba254e18257e578c245ed96f6b003b", "", "", "Music Effects Demo (21-01-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5bd79139a0c03b63f6f2cf00a7d385d2", "", "", "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "" }, + { "5c0520c00163915a4336e481ca4e7ef4", "Rainbow Vision", "", "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "67", "183", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5ce98f22ade915108860424d8dde0d35", "", "", "Hangman Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5d799bfa9e1e7b6224877162accada0d", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "4", "152", "36", "195", "", "" }, + { "5db9e5bf663cad6bf159bc395f6ead53", "Goliath", "", "Time Race (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "256", "", "" }, + { "5de8803a59c36725888346fdc6e7429d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari) [a1]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "5df559a36347d8572f9a6e8075a31322", "Digivision", "", "Enduro (Digivision) (Brazil) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "5e1cd11a6d41fc15cf4792257400a31e", "Philip R. Frey", "", "Return of Mario Bros by Philip R. Frey (Mario Bros Hack)", "Hack of Mario Bros. (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "5ec73ac7d2ac95ac9530c6d33e713d14", "Starpath", "", "Sweat! - The Decathalon Game (1 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "AR", "", "", "", "", "Paddles", "", "", "8", "144", "39", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f2b4c155949f01c06507fb32369d42a", "Apollo", "AP 1001", "Skeet Shoot (1981) (Apollo) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f39353f7c6925779b0169a87ff86f1e", "Atari", "CX2694", "Pole Position (1983) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "" }, + { "5f681403b1051a0822344f467b05a94d", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "" }, + { "5f708ca39627697e859d1c53f8d8d7d2", "Atari", "CX2606 / 99825 /75112", "Maze (AKA Slot Racers) (1978) (Sears) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f7ae9a7f8d79a3b37e8fc841f65643a", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "" }, + { "6015a9cef783e97e98a2aa2cf070ae06", "Thomas Jentzsch", "", "Battlezone TC by Thomas Jentzsch (2 joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)", "New Release (Hack)", "", "F6", "", "", "", "", "", "", "", "4", "152", "32", "200", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6041f400b45511aa3a69fab4b8fc8f41", "Apollo", "AP 2010", "Wabbit (1982) (Apollo) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "" }, + { "6058e40ce79d7434c7f7477b29abd4a5", "", "", "Rubik's Cube Demo (23-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60a61da9b2f43dd7e13a5093ec41a53d", "Venture Vision", "VV2001", "Rescue Terra I (1982) (Venture Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60e0ea3cbe0913d39803477945e9e5ec", "Atari", "CX2621", "Video Olympics (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "2K", "", "", "", "", "Paddles", "Paddles", "", "", "", "30", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "615a3bf251a38eb6638cdc7ffbde5480", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "" }, + { "61728c6cfb052e62a9ed088c5bf407ba", "", "", "Sprite Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6205855cc848d1f6c4551391b9bfa279", "", "", "Euchre (Release Candidate 2) (NTSC) (01-10-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "62992392ea651a16aa724a92e4596ed6", "Eric Mooney", "", "Invaders by Erik Mooney (Beta) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (1978) (Atari) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "" }, + { "6337927ad909aa739d6d0044699a916d", "Jeffry Johnston", "", "Radial Pong - Version 2 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "635cc7a0db33773959d739d04eff96c2", "", "", "Minesweeper (V.90) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "638cc82ea96f67674595ba9ae05da6c6", "Rainbow Vision", "SS-011", "Super Ferrari (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "58", "", "", "" }, + { "63c5fef3208bb1424d26cf1ab984b40c", "", "", "Analog Clock (V0.1) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63e9e612bbee31045f8d184a4e53f8ec", "", "", "Moby Blues (2002) (ATARITALIA) (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "645bf7f9146f0e4811ff9c7898f5cd93", "Xonox", "", "Super Kung-Fu (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "" }, + { "647162cceb550fd49820e2206d9ee7e8", "", "", "Skeleton (NTSC) (2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "64ca518905311d2d9aeb56273f6caa04", "CCE", "", "Cubo Magico (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "651d2b6743a3a18b426bce2c881af212", "CCE", "", "Pac-Man (CCE) (PAL) [!]", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "", "206", "", "" }, + { "65490d61922f3e3883ee1d583ce10855", "Atari", "CX2692", "Moon Patrol (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "189", "", "" }, + { "656dc247db2871766dffd978c71da80c", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "36", "198", "", "" }, + { "659a20019de4a23c748ec2292ea5f221", "Retroactive", "", "Qb (V2.05) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "65ba1a4c643d1ab44481bdddeb403827", "Starsoft", "", "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "198", "", "" }, + { "662eca7e3d89175ba0802e8e3425dedb", "", "", "Hangman Pac-Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6651e2791d38edc02c5a5fd7b47a1627", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 040584)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "66706459e62514d0c39c3797cbf73ff1", "Video Gems", "", "Treasure Below (Video Gems) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "230", "", "" }, + { "669840b0411bfbab5c05b786947d55d4", "Atari", "CX26117", "Obelix (1983) (Atari) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "194", "", "" }, + { "66b92ede655b73b402ecd1f4d8cd9c50", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [a2][!]", "", "Rare", "", "F8", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "No" }, + { "66c2380c71709efa7b166621e5bb4558", "Parker Bros", "", "Tutankham (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "67684a1d18c85ffa5d82dab48fd1cb51", "Tigervision", "7-003", "Threshold (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "215", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "679e910b27406c6a2072f9569ae35fc8", "Data Age", "DA 1002", "Warplock (1982) (Data Age)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "195", "Yes", "" }, + { "67ce6cdf788d324935fd317d064ed842", "Retroactive", "", "Qb (V2.09) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "6805734a0b7bcc8925d9305b071bf147", "", "99003", "Kung Fu (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "218", "", "" }, + { "68489e60268a5e6e052bad9c62681635", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "259", "", "" }, + { "685e9668dc270b6deeb9cfbfd4d633c3", "CommaVid", "CM-004", "Room of Doom (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "225", "Yes", "" }, + { "68878250e106eb6c7754bc2519d780a0", "CCE", "", "Snail Against Squirrel (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "14", "245", "", "" }, + { "6913c90002636c1487538d4004f7cac2", "", "CX26131", "Monstercise (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "" }, + { "693137592a7f5ccc9baae2d1041b7a85", "", "", "Qb (V2.02) (Stella) (2001) (Retroactive) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "69e79b1352b9ee1754bbe63b4a7062c3", "", "", "Pink Floyd - The Wall (2003) (Barry Laws Jr.) (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "37", "193", "", "" }, + { "6a03c28d505bab710bf20b954e14d521", "", "", "Pressure Gauge 2 Beta (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a3b0c33cf74b1e213a629e3c142b73c", "", "", "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a9b30ca46b0dba9e719f4cbd340e01c", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "202", "", "" }, + { "6ac3fd31a51730358708c7fdc62487f8", "Matthias Jaap", "", "PC Invaders by Matthias Jaap (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "6b683be69f92958abe0e2a9945157ad5", "US Games", "VC 2007 / VC 1007", "Entombed (1982) (US Games) [!]", "Released as Name That Game for a contest (winning name was Entombed)", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "6b75f8fa4fd011a6698c58315f83d2ac", "Thomas Jentzsch", "", "Sprintmaster DC (TJ)", "Uses the Driving Controllers, Hack of Sprintmaster (Atari)", "New Release (Hack)", "", "F6SC", "", "", "", "", "Driving", "Driving", "", "8", "144", "27", "192", "", "" }, + { "6b7e1c11448c4d3f28160d2de884ebc8", "Zirok", "", "Fast Food (Zirok) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6bde3f6ac31aceef447ce57d4d2c2ec0", "Piero Cavina", "", "Mondo Pong V1 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "44", "174", "", "" }, + { "6c658b52d03e01828b9d2d4718a998ac", "", "", "Hangman Invader Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6cbe945e16d9f827d0d295546ac11b22", "", "", "Gunfight 2600 - AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "6ce2110ac5dd89ab398d9452891752ab", "Polyvox", "", "River Raid (Polyvox)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "6d74ebaba914a5cfc868de9dd1a5c434", "", "", "Fortress (Smooth Version) (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6dda84fb8e442ecf34241ac0d1d91d69", "Atari", "CX2677", "Dig Dug (1983) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "12", "136", "37", "188", "", "" }, + { "6dfad2dd2c7c16ac0fa257b6ce0be2f0", "Parker Bros", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)", "", "Prototype", "", "E0", "", "", "", "", "", "", "PAL", "", "", "25", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e4521989a60a0ddf4ff1fc6e6e5fc3d", "", "", "Star Fire (01-05-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e5d5ba193d2540aec2e847aafb2a5fb", "Retroactive", "", "Qb (2.14) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "6efe876168e2d45d4719b6a61355e5fe", "Bitcorp", "PG207", "Mission 3000 A.D. (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "194", "Yes", "" }, + { "6f5b3021a88930a9bba3770094c95f3d", "", "", "Image - Clown (09-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fa0ac6943e33637d8e77df14962fbfc", "Rob Fulop", "", "Cubicolor (Rob Fulop)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "6fc27a9233fc69d28d3f190b4ff80f03", "", "", "UFO #6 by Charles Morgan (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fe67f525c39200a798985e419431805", "Atari", "CX2689", "Kangaroo (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "6ffc95108e5add6f9b8abcaf330be835", "Charles Morgan", "", "TP Bug by Charles Morgan (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "703f0f7af350b0fa29dfe5fbf45d0d75", "", "", "4 Pak (Dark Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "190", "", "" }, + { "7096a198531d3f16a99d518ac0d7519a", "Telegames", "1004", "Ram It (1982) (Telegames) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "70d14c66c319683b4c19abbe0e3db57c", "", "", "Oystron (V2.82) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "197", "", "" }, + { "7146dd477e019f81eac654a79be96cb5", "Atari", "CX2685", "Gravitar (1988) (Atari) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "", "" }, + { "718ae62c70af4e5fd8e932fee216948a", "", "112-006", "Journey - Escape (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "7197b6cbde6ecd10376155e6b848e80d", "Piero Cavina", "", "Multi-Sprite Game V2.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "" }, + { "72097e9dc366900ba2da73a47e3e80f5", "", "", "Euchre (15-06-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "728152f5ae6fdd0d3a9b88709bee6c7a", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "72a5b5052272ac785fa076709d16cef4", "", "", "KC Munckin (29-01-2003) (J. Parlee)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72d0acb5de0db662de0360a6fc59334d", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [p1][!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72ffbef6504b75e69ee1045af9075f66", "Atari", "CX2632 / 4975153", "Space Invaders (1978) (Atari) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "73a710e621d44e97039d640071908aef", "", "", "Barber Pole Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "" }, + { "73c545db2afd5783d37c46004e4024c2", "CBS Electronics", "", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "742de93b8d849220f266b627fbabba82", "", "", "SCSIcide (25-02-2001) (Chris Wilkson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "747d3031eb37e32abc7f6e5ee928cd8f", "", "", "Greeting Cart Goth (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "74d072e8a34560c36cacbc57b2462360", "Sancho", "", "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "39", "243", "", "" }, + { "7550b821ee56fb5833dca2be88622d5a", "", "", "Multiple Moving Objects Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7574480ae2ab0d282c887e9015fdb54c", "Atari", "CX2699", "Taz (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "39", "191", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75b557be7f08db84ec5b242207b9f241", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75ea128ba96ac6db8edf54b071027c4e", "Atari", "", "Slot Machine (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "" }, + { "7628d3cadeee0fd2e41e68b3b8fbe229", "Atari", "", "Fishing Derby (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "188", "", "" }, + { "76c88341017eae660efc6e49c4b6ab40", "", "", "Indiana Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "" }, + { "76f66ce3b83d7a104a899b4b3354a2f2", "UA", "", "Cat Trax (1983) (UA)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "33", "200", "Yes", "" }, + { "7778ac65d775a079f537e97cbdad541c", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [p1][!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "" }, + { "77887e4192a6b0a781530e6cf9be7199", "Atari", "CX2604", "Space War (1978) (Atari) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "" }, + { "77d0a577636e1c9212aeccde9d0baa4b", "Atari", "CX2621", "Video Olympics (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "2K", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "56", "205", "", "" }, + { "7836794b79e8060c2b8326a2db74eef0", "", "", "RIOT RAM Test (26-11-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "78821ef76ebc3934850d1bc1b9e4f4b0", "", "", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "214", "", "" }, + { "78c2de58e42cd1faac2ea7df783eaeb3", "", "", "Fu Kung! (V0.07) (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "792b1d93eb1d8045260c840b0688ec8f", "Kroko", "", "3E Bankswitch Test (TIA @ $00)", "", "", "", "3E", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "798cc114f1623c14085868cd3494fe8e", "", "", "Pins Revenge (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "79c27f90591e3fdc7d2ed020ecbedeb3", "CCE", "AX-022", "Seaquest (CCE) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "79d6f61da3c64688ac8e075667f8a39f", "", "", "Tie-Fighters (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a2af383014f5d810ad26d322823549d", "", "", "FlickerSort Demo (20-04-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a7f6ab9215a3a6b5940b8737f116359", "Starpath", "AR-4103", "Killer Satellites Preview (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "" }, + { "7ab210f448de518fa61a5924120ba872", "", "", "Fortress (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ad782952e5147b88b65a25cadcdf9e0", "", "", "Kwibble (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b24bfe1b61864e758ada1fe9adaa098", "", "", "Wizard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "" }, + { "7b43c32e3d4ff5932f39afcb4c551627", "", "", "Kamikaze Saucers (198x) (Syncro)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "38", "220", "", "" }, + { "7b938c7ddf18e8362949b62c7eaa660a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "219", "", "" }, + { "7c00e7a205d3fda98eb20da7c9c50a55", "", "AP 2004", "Lost Luggage (1981) (Apollo) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "38", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ca7a471d70305c673fedd08174a81e8", "Tim Snider", "", "Venture II (2001) (Tim Snider)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "7ced6709f091e79a2ab9575d3516a4ac", "Activision", "AX-027", "Plaque Attack (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "" }, + { "7d903411807704e725cf3fafbeb97255", "", "", "Cosmic Ark (no stars) [h1]", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "192", "", "" }, + { "7d940d749e55b96b7b746519fa06f2de", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "7db7c5fd8d3f53127a4bb0092c91d983", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "7dcbfd2acc013e817f011309c7504daa", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "", "", "Yes", "" }, + { "7e464186ba384069582d9f0c141f7491", "Playaround", "", "General Retreat (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "7e52a95074a66640fcfde124fffd491a", "Atari", "CX2673", "Phoenix (1982) (Atari)", "", "Common", "", "F8", "", "", "", "", "", "", "", "", "", "", "200", "", "" }, + { "7e9da5cb84d5bc869854938fe3e85ffa", "Atari", "CX2604", "Space War (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "" }, + { "7eafc9827e8d5b1336905939e097aae7", "", "", "Elk Attack (1987) (Atari)", "", "New Release", "", "F8", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "" }, + { "7edc8fcb319b3fb61cac87614afd4ffa", "Activision", "AG-003", "Checkers (1980) (Activision) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "16", "144", "27", "", "", "" }, + { "7f430c33044e0354815392b53a9a772d", "HES", "", "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f790939f7eaa8c47a246c4283981f84", "", "", "This Planet Sucks Demo 3 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "" }, + { "7fd52208fb6391bae0cd7e68c27bde6f", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "801ba40f3290fc413e8c816c467c765c", "Hozer Video Games", "", "Gunfight 2600 - Westward Ho! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "" }, + { "8068e07b484dfd661158b3771d6621ca", "Epyx", "8056100286", "California Games (1988) (Epyx) (PAL) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "PAL", "8", "144", "43", "230", "", "" }, + { "80cec82239913cb8c4016eb13749de44", "David Marli", "", "Invaders from Space by David Marli (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "8108162bc88b5a14adc3e031cf4175ad", "Rainbow Vision", "", "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "251", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "81414174f1816d5c1e583af427ac89fc", "Video Gems / Thomas Jentzsch", "", "Treasure Below (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "152", "26", "225", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8190b403d67bf9792fe22fa5d22f3556", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "81a010abdba1a640f7adf7f84e13d307", "Telegames", "7062 A305", "Universal Chaos (Telegames)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "", "" }, + { "822a950f27ff0122870558a89a49cad3", "", "", "Space Jockey (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "82bf0dff20cee6a1ed4bb834b00074e6", "Starsoft", "", "Der hungrige Panda (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "212", "", "" }, + { "835759ff95c2cdc2324d7c1e7c5fa237", "20th Century Fox", "11011", "M.A.S.H. (1982) (20th Century Fox)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "35", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "83d15fb9843d9f84aa3710538403f434", "", "", "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "195", "", "" }, + { "83fafd7bd12e3335166c6314b3bde528", "Epyx", "8056100251", "Winter Games (1987) (Epyx) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "843435eb360ed72085f7ab9374f9749a", "Joe Grand", "", "SCSIcide (1.31) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "850ffd5849c911946b24544ea1e60496", "", "", "Invasion (07-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8538c5e3ee83267774480649f83fa8d6", "", "", "Escape Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "855a42078b14714bcfd490d2cf57e68d", "", "", "Miss Piggy's Wedding (Prototype) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85b1bca93e69f13905107cc802a02470", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "46", "230", "", "" }, + { "85e48d68c8d802e3ba9d494a47d6e016", "", "", "Ship Demo (V 15) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "86128001e69ab049937f265911ce7e8a", "Apollo", "", "Lochjaw (1982) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8654d7f0fb351960016e06646f639b02", "", "", "Ski Hunt (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "235", "", "" }, + { "8712cceec5644aacc2c21203d9ebe2ec", "Retroactive", "", "Qb (V0.10) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "873fb75a7788ba0f4ae715229a05545e", "", "", "Euchre (Improved Colors) (PAL) (26-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "874c76726f68c166fcfac48ce78eef95", "", "", "Red Pong Number 2 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8786c1e56ef221d946c64f6b65b697e9", "20th Century Fox / Zellers", "11015", "Flash Gordon (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "198", "", "" }, + { "87e79cd41ce136fd4f72cc6e2c161bee", "", "CX2675", "Ms. Pac-Man (1982) (Atari)", "", "Common", "", "F8", "", "", "", "", "", "", "", "", "", "35", "195", "", "No" }, + { "885b2002fa9d27502d84968d4656c4ca", "CBS Electronics", "4L-2737", "Omega Race (1983) (CBS Electronics) [o1]", "Uses Booster Grip Controller; set right difficulty to 'A' to use Booster-Grip in both ports", "Uncommon", "", "", "", "A", "", "", "Booster-Grip", "Booster-Grip", "", "", "", "", "", "", "" }, + { "8885d0ce11c5b40c3a8a8d9ed28cefef", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [a1]", "Uses the Paddle Controllers (left only)", "Common", "", "4K", "", "", "", "", "Paddles", "None", "", "8", "136", "35", "180", "", "" }, + { "88d300a38bdd7cab9edad271c18cd02b", "Funvision", "", "Pac Kong (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "52", "215", "", "" }, + { "88f74ec75ef696e7294b7b6ac5ca465f", "Activision", "AG-002", "Boxing (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "" }, + { "8933976f2029c0d8492ebd8f4eb21492", "", "", "Synthcart Plus (09-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "898b5467551d32af48a604802407b6e8", "Bitcorp", "PG208", "Schnecke und Eichhoernchen (1983) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "" }, + { "8a183b6357987db5170c5cf9f4a113e5", "Atari", "", "RealSports Basketball (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "PAL", "8", "152", "48", "199", "", "" }, + { "8a8e401369e2b63a13e18a4d685387c6", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "8ac18076d01a6b63acf6e2cab4968940", "", "CX2685", "Gravitar (1988) (Atari) [a1][!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "", "" }, + { "8b504b417c8626167a7e02f44229f0e7", "Retroactive", "", "Qb (V1.00) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8b81af55cd2ef3c7444d6aec4e3a1c09", "", "", "Dark Mage [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8bd8f65377023bdb7c5fcf46ddda5d31", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "" }, + { "8c103a79b007a2fd5af602334937b4e1", "ITT Family Games / Thomas Jentzsch", "", "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "238", "", "" }, + { "8c2fa33048f055f38358d51eefe417db", "HomeVision", "", "Teddy Apple (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "239", "Yes", "" }, + { "8ccaa442d26b09139685f5b22bf189c4", "Retroactive", "", "Qb (V1.01) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "No" }, + { "8d1e2a6d2885966e6d86717180938f87", "", "", "Missile Command (Amiga Mouse) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "8d9a06101ebb0f147936356e645309b8", "", "", "Grid Pattern Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e0ab801b1705a740b476b7f588c6d16", "Activision", "AG-009", "Freeway (1981) (Activision) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "" }, + { "8e737a88a566cc94bd50174c2d019593", "Starsoft", "", "Feuerwehr im Einsatz (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "", "", "" }, + { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "8f33bce5ba1053dcf4cea9c1c69981e4", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "8f613ea7c32a587d6741790e32872ddd", "", "", "Troll Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8fbabaa87941cdf3a377c15e95bdb0f3", "", "", "Meteor Smasher (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8febdd9142960d084ab6eeb1d3e88969", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "190", "", "" }, + { "9057694dce8449521e6164d263702185", "Activision", "AG-011", "Stampede (1981) (Activision) [o2]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "" }, + { "90b1799dddb8bf748ee286d22e609480", "", "", "Ship Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "90d77e966793754ab4312c47b42900b1", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "213", "", "" }, + { "911d385ee0805ff5b8f96c5a63da7de5", "Hozer Video Games", "", "Jammed (V0.1) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "9193b6fff6897d43274741d4f9855b6d", "", "", "Sub Rescue (Real Title Unknown)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "198", "", "" }, + { "91f0a708eeb93c133e9672ad2c8e0429", "", "", "Oystron (V2.9) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "927d422d6335018da469a9a07cd80390", "Activision", "AX-020", "River Raid (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "60", "201", "", "" }, + { "92a1a605b7ad56d863a56373a866761b", "US Games", "VC 2006", "Raft Rider (1982) (US Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "92ede72ed8f61d255bc58d2f166dc6b6", "", "", "Star Fire - Shootable (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93420cc4cb1af1f2175c63e52ec18332", "Tim Snider", "", "Blair Witch Project by Tim Snider (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "" }, + { "936ef1d6f8a57b9ff575dc195ee36b80", "", "", "Pac Kong (Starsoft) (NTSC Conversion)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "26", "214", "", "" }, + { "939ce554f5c0e74cc6e4e62810ec2111", "Zimag", "", "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "" }, + { "93c52141d3c4e1b5574d072f1afde6cd", "Imagic", "O3213", "Subterrenea (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "29", "205", "", "" }, + { "93eb1795c8b1065b1b3d62bb9ec0ccdc", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "9436b7ad131b5a1f7753ce4309ba3dee", "Kyle Pittman", "", "War of The Worlds by Kyle Pittman (Defender Hack)", "Hack of Defender (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "94b92a882f6dbaa6993a46e2dcc58402", "Activision", "AX-026", "Enduro (1983) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "94e4c9b924286038527f49cdc20fda69", "Retroactive", "", "Qb (V2.12) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "95351b46fa9c45471d852d28b9b4e00b", "Atari", "", "Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "" }, + { "95a69cf8c08ef1522b050529464f0bca", "", "", "Grid Pattern Demo 1 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "95c4576d6a14e2debfa0fd6f6ec254ab", "Activision", "AX-020", "River Raid (1982) (Activision) [a2]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "30", "199", "", "" }, + { "95fd6097dc27c20666f039cfe34f7c69", "", "", "Oh No! (Version 1) (17-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "" }, + { "9671b658286e276cc4a3d02aa25931d2", "", "", "Hangman Ghost Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "969b968383d9f0e9d8ffd1056bcaef49", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "230", "", "" }, + { "96f806fc62005205d851e758d050dfca", "", "", "Push (V0.05) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "97842fe847e8eb71263d6f92f7e122bd", "Imagic", "O3206", "Solar Storm (1983) (Imagic)", "Uses the Paddle Controllers", "Rare", "", "4K", "", "", "", "", "Paddles", "Paddles", "", "8", "144", "42", "190", "", "" }, + { "97cd63c483fe3c68b7ce939ab8f7a318", "Thomas Jentzsch", "", "Robot City (V0.21) (15-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "9813b9e4b8a6fd919c86a40c6bda8c93", "Atari", "CX26177", "Ikari Warriors (1990) (Atari) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "" }, + { "9853089672116117258097dbbdb939b7", "Hozer Video Games", "", "Gunfight 2600 - Cowboy Hair (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98ccd15345b1aee6caf51e05955f0261", "Retroactive", "", "Qb (V2.03) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "98e7caaab8ec237558378d2776c66616", "", "", "HMOVE Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98f63949e656ff309cefa672146dc1b8", "Atari", "CX26168", "Off the Wall (1989) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "99112a46486b52b1110bae607bfa8cd6", "", "", "Greeting Cart Ali Landry Bikini (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9947f1ebabb56fd075a96c6d37351efa", "CBS Electronics", "4L-2737", "Omega Race (1983) (CBS Electronics)", "Set right difficulty to 'A' for Booster-Grip in both ports", "Uncommon", "", "FASC", "", "A", "", "", "Booster-Grip", "Booster-Grip", "", "", "", "", "", "", "" }, + { "99f7c6c26046bbe95f1c604b25da8360", "", "", "Comitoid beta 2 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ab72d3fd2cc1a0c9adb504502579037", "Epyx", "8056100286", "California Games (1988) (Epyx) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "9b150a42fc788960fbb4cbe250259ee2", "Kroko", "", "3E Bankswitch Test (TIA @ $40)", "", "", "", "3E", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "9bd4e0d5f28ba6da417c26649171f8e4", "", "", "Hangman Pac-Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c27ef3bd01c611cdb80182a59463a82", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "" }, + { "9c6faa4ff7f2ae549bbcb14f582b70e4", "CCE", "VC 1002", "Sneek 'n Peek (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "229", "", "" }, + { "9c7fa3cfcaaafb4e6daf1e2517d43d88", "", "", "PIEROXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "9d0befa555f003069a21d2f6847ad962", "", "", "Vanguard (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "9d37a1be4a6e898026414b8fee2fc826", "Mattel", "MT5658", "Super Challenge Baseball (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "" }, + { "9de0d45731f90a0a922ab09228510393", "20th Century Fox", "11003", "Fast Eddie (1982) (20th Century Fox) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "38", "198", "", "" }, + { "9e192601829f5f5c2d3b51f8ae25dbe5", "Mystique", "", "Cathouse Blues (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "" }, + { "9e6fa031ece07919c816fba5dc8de43e", "", "", "Star Fire - Meteor Dance (13-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9e904e2eaa471c050c491289b8b80f60", "", "", "How to Draw a Playfield II (1997) (Erik Mooney) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ec1b259a1bcffa63042a3c2b3b90f0a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "" }, + { "9ed0f2aa226c34d4f55f661442e8f22a", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "9efa877a98dd5a075e058214da428abb", "Hozer Video Games", "", "SCSIcide (1.32) (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9f59eddf9ba91a7d93bce7ee4b7693bc", "Parker Bros / Thomas Jentzsch", "", "Montezuma's Revenge - Starring Panama Joe (PAL by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "E0", "", "", "", "", "", "", "PAL", "", "", "38", "192", "", "" }, + { "9f901509f0474bf9760e6ebd80e629cd", "", "CX2623 / 99819 / 75125", "Home Run (1978) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "42", "", "", "" }, + { "9f9ee0f60c119c831e80694b6678ca1a", "Jeffry Johnston", "", "Radial Pong - Version 8 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a00ec89d22fcc0c1a85bb542ddcb1178", "CCE", "", "Phoenix (1982) (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "38", "188", "", "" }, + { "a025a8f83a42a4d6d46c4887e799bfac", "Hozer Video Games", "", "Gunfight 2600 - Descissions had to be made (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "a0675883f9b09a3595ddd66a6f5d3498", "Sunrise", "6057 A227", "Quest for Quintana Roo (Telegames) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0e2d310e3e98646268200c8f0f08f46", "", "", "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "230", "", "" }, + { "a14d8a388083c60283e00592b18d4c6c", "", "", "Tunnel Demo (28-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a184846d8904396830951217b47d13d9", "Activision", "AX-029", "Crackpots (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "" }, + { "a1ca372388b6465a693e4626cc98b865", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "a1f9159121142d42e63e6fb807d337aa", "Starsoft", "11003", "Mr. T (AKA Fast Eddie) (Starsoft) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "", "", "58", "198", "", "" }, + { "a20d931a8fddcd6f6116ed21ff5c4832", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) (PAL)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "40", "187", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2424c1a0c783d7585d701b1c71b5fdc", "Atari", "", "Video Pinball (1980) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "a28d872fc50fa6b64eb35981d0f4bb8d", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "220", "", "" }, + { "a2aae759e4e76f85c8afec3b86529317", "Cooper Black", "", "Boom Bang (AKA Crackpots) (Cooper Black) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "43", "198", "", "" }, + { "a2f296ea2d6d4b59979bac5dfbf4edf0", "", "", "Warring Worms (28-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a35d47898b2b16ec641d1dfa8a45c2b7", "Activision", "AX-017", "Megamania (1982) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "a3c1c70024d7aabb41381adbfb6d3b25", "Telesys", "1005", "Star Gunner (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "44", "", "", "" }, + { "a3f2a0fcf74bbc5fa763b0ee979b05b1", "Starsoft", "", "Eishockey-Fieber (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "250", "", "" }, + { "a412c8577b2d57b09185ae51739ac54f", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) [a1]", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "", "", "Yes", "" }, + { "a443d8557d712845c8cd3699363a42e6", "", "", "Star Fire (07-01-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "a47e26096de6f6487bf5dd2d1cced294", "Atari", "CX2643 / 99815", "Code Breaker (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "PAL", "", "", "57", "", "", "" }, + { "a4ab331e8768eafdc20ce8b0411ff77a", "", "", "Demo Image Series #1 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4e885726af9d97b12bb5a36792eab63", "Xonox", "99001", "Spike's Peak (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "40", "", "", "" }, + { "a5262fe6d01d6a1253692682a47f79dd", "", "", "JKH Text Scrolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "" }, + { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video", "", "Gopher (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari", "", "Surround (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "237", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a641d14c516d00da81cd12c2dbaa06db", "", "", "Image - Baboon2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a68a396ff1f3b311712f6bdf05dcefab", "", "", "Greeting Cart Amy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a7673809068062106db8e9d10b56a5b3", "Atari", "CX26118", "Millipede (1984) (Atari) (PAL) [!]", "", "Rare", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "144", "64", "198", "", "" }, + { "a7b96a8150600b3e800a4689c3ec60a2", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Paddles)", "Uses the Paddle Controllers", "Common", "", "4K", "", "", "", "", "Paddles", "None", "", "", "", "42", "190", "", "" }, + { "a7ef44ccb5b9000caf02df3e6da71a92", "Atari", "CX2604", "Space War (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "" }, + { "a83b070b485cf1fb4d5a48da153fdf1a", "Apollo", "", "Pompeii (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "" }, + { "a8916734ff8c64ec3342f4c73fd5b57d", "", "", "Stand Alone Test Cart (SALT) Diagnostics (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a8d0a4a77cd71ac601bd71df5a060e4c", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t2] (Fuel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a94528ae05dd051894e945d4d2349b3b", "", "", "River Raid (Brazil)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "a957dbe7d85ea89133346ad56fbda03f", "", "", "Asteroids (1979) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "" }, + { "a98b649912b6ca19eaf5c2d2faf38562", "", "", "This Planet Sucks (Greg Troutman) (PAL) [!]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "" }, + { "aa1c41f86ec44c0a44eb64c332ce08af", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "21", "", "", "" }, + { "aa8e4b2cb8a78ffe6b20580033f4dec9", "", "", "Bitmap Demo (13-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aad91be0bf78d33d29758876d999848a", "Activision", "AX-018", "Pitfall! (1982) (Activision) (Beta)", "", "Prototype", "", "4K", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "ab10f2974dee73dab4579f0cab35fca6", "Starsoft", "", "Lilly Adventure (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "232", "", "" }, + { "ab4ac994865fb16ebb85738316309457", "Atari", "CX2624", "Basketball (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "abb740bea0a6842831b4f53112fb8145", "", "", "Qb (V1.01) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "250", "Yes", "" }, + { "abe40542e4ff2d1c51aa2bb033f09984", "Activision", "AZ-042", "Skate Boardin' (1987) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "209", "", "" }, + { "ac26d7d37248d1d8eac5eccacdbef8db", "", "", "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ac7c2260378975614192ca2bc3d20e0b", "Activision", "AZ-030", "Decathlon (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "8", "152", "38", "193", "", "" }, + { "acaa27d214039d89d7031609aafa55c3", "", "", "Sprite Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "acb7750b4d0c4bd34969802a7deb2990", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros)", "", "Uncommon", "", "4K", "A", "A", "", "", "", "None", "", "4", "152", "40", "182", "", "" }, + { "ace319dc4f76548659876741a6690d57", "", "CX2616", "Championship Soccer (AKA Pele's Soccer)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "192", "", "" }, + { "ad42e3ca3144e2159e26be123471bffc", "Atari", "", "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "" }, + { "adb770ff70e9adf08bbb907a7eccd240", "", "", "Inv Demo 3 (2001) (Erik Mooney) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "adf1afac3bdd7b36d2eda5949f1a0fa3", "Starsoft", "", "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "ae10527840a1ac24de43730645ed508d", "Atari / Charles Morgan", "", "Planet Invaders by Charles Morgan (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "ae465044dfba287d344ba468820995d7", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "ae682886058cd6981c4b8e93e7b019cf", "Retroactive", "", "Qb (V0.12) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ae97cf8ed21f4154b4360a3cf6c95c5e", "", "", "Teleterm 2600 (John K. Harvey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aeb104f1e7b166bc0cbaca0a968fde51", "Rob Kudla", "", "Ms. Pac-Man (1982) (Atari) [h1]", "Hack of Ms. Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "198", "", "" }, + { "aed82052f7589df05a3f417bb4e45f0c", "Atari", "CX2606 / 99825 /75112", "Maze (AKA Slot Racers) (1978) (Sears) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "afe4eefc7d885c277fc0649507fbcd84", "Atari", "", "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "" }, + { "afe88aae81d99e0947c0cfb687b16251", "Apollo", "AP 2006", "Infiltrate (1982) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "b00e8217633e870bf39d948662a52aac", "Konami", "011", "Marine Wars (1983) (Konami) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "48", "172", "", "" }, + { "b061e98a4c854a672aadefa233236e51", "Atari", "CX2624", "Basic Programming (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Common", "", "", "", "", "", "", "Keyboard", "Keyboard", "PAL", "8", "152", "44", "230", "Yes", "" }, + { "b0c47e426c7f799aee2c40422df8f56a", "", "", "Space Treat (PAL) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "b0e1ee07fbc73493eac5651a52f90f00", "Colin Hughes", "", "Tetris 2600 (Colin Hughes)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "b1486e12de717013376447ac6f7f3a80", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "b17b9cc4103844dcda54f77f44acc93a", "Starsoft", "", "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "", "", "" }, + { "b1c4f026a854385259020744e589faa6", "", "", "Greeting Cart Blond on Brunette (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b21ee4639476eaec8204f00c712b7497", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "" }, + { "b2737034f974535f5c0c6431ab8caf73", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [!]", "", "Rare", "", "FASC", "", "", "", "", "", "", "", "", "", "67", "153", "", "" }, + { "b29359f7de62fed6e6ad4c948f699df8", "", "", "Labyrinth (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "225", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b2d5d200f0af8485413fad957828582a", "Atari", "CX26155", "Sprint Master (1988) (Atari) (PAL) [!]", "", "Rare", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "144", "54", "200", "", "" }, + { "b3017e397f74efd53caf8fae0a38e3fe", "Retroactive", "", "Qb (2.12) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "b37f0fe822b92ca8f5e330bf62d56ea9", "Xonox", "99001", "Spike's Peak (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "235", "", "" }, + { "b41fdd4a522e1d5a2721840028684ac2", "", "", "Green and Yellow Number 1 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "b442887aec0b4a725996d53f34787b14", "Imagic", "O3205", "Fathom (1983) (Imagic) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "190", "Yes", "" }, + { "b49331b237c8f11d5f36fe2054a7b92b", "Funvision", "", "Galactic (G) (Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "208", "", "" }, + { "b4e2fd27d3180f0f4eb1065afc0d7fc9", "", "50010", "London Blitz (1983) (Avalon Hill)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b56264f738b2eb2c8f7cf5a2a75e5fdc", "Atari", "CX2694", "Pole Position (1983) (Atari) (PAL) [!]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "190", "", "" }, + { "b5a1a189601a785bdb2f02a424080412", "Imagic", "IA3410", "Shootin' Gallery (1982) (Imagic)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b65d4a38d6047735824ee99684f3515e", "", "", "Megaboy (Brazil) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b6821ac51c4c1dcb283f01be2f047dc1", "", "", "Rubik's Cube 3D Demo (25-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b702641d698c60bcdc922dbd8c9dd49c", "Atari", "", "Space War (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "202", "", "" }, + { "b7345220a0c587f3b0c47af33ebe533c", "Starsoft", "", "Landungskommando (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "" }, + { "b79fe32320388a197ac3a0b932cc2189", "", "", "Moonsweeper (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "Yes", "" }, + { "b7e459d5416eeb196aaa8e092db14463", "", "", "Push (V0.02) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b816296311019ab69a21cb9e9e235d12", "Sears", "CX2652", "Poker Plus (AKA Casino) (1978) (Sears) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "36", "220", "", "" }, + { "b879e13fd99382e09bcaf1d87ad84add", "", "", "Time Warp (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b8ed78afdb1e6cfe44ef6e3428789d5f", "Data Age", "112-007", "Bermuda Triangle (1982) (Data Age) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9336ed6d94a5cc81a16483b0a946a73", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9d1e3be30b131324482345959aed5e5", "Activision", "", "Kabobber (Activision) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "b9f9c0fed0db08c34346317f3957a945", "Supervision", "", "Chopper Command (1982) (Supervision) (PAL) [p1] [!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "" }, + { "ba3b0eebccc7b791107de5b4abb671b4", "", "", "Thrust (V0.9) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "baf4ce885aa281fd31711da9b9795485", "Atari", "CX26176", "Radar Lock (1989) (Atari)", "", "Rare", "", "F6SC", "", "", "", "", "", "", "", "", "", "42", "185", "", "" }, + { "bb579404924c40ca378b4aff6ccf302d", "", "", "Lightbulb Lightens, The (PD) (Non Functional)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bb9f06b288b5275bc0d38b6731b2526a", "", "", "Star Fire - Meteor Dance 2 (18-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bc3057a35319aae3a5cd87a203736abe", "CCE", "", "Time Warp (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bc5389839857612cfabeb810ba7effdc", "Atari", "CX2671", "SwordQuest - Waterworld (1983) (Atari)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "" }, + { "bc703ea6afb20bc089f04d8c9d79a2bd", "", "", "Gunfight 2600 - Not mergeable with Colbert wizardry... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "bce93984b920e9b56cf24064f740fe78", "Atari", "", "Checkers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "20", "140", "50", "", "", "" }, + { "bd1bd6f6b928df17a702def0302f46f4", "", "", "Binary To Decimal Routine (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bd430c2193045c68d1a20a018a976248", "", "", "Pac Ghost Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bdbac0c6cd0fab9c81c3be0bedb0ddd4", "", "", "Greeting Cart The Snail(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bdecc81f740200780db04a107c3a1eba", "Starsoft", "", "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "be1922bd8e09d74da471287e1e968653", "", "", "Hangman Pacman Demo (Cropsy) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be3343494301a3a8b1b2a2f8d7473c45", "", "", "Image - Clown (Full Screen) (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be561b286b6432cac71bccbae68002f7", "", "", "Counter Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "becd908f9d7bb361982c3dc02d6475c6", "Kyle Pittman", "", "THX-1138 by Kyle Pittman (Berzerk Hack)", "Hack of Berserk (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "" }, + { "bf5e2079586cb307bf5eb2413e2e61af", "", "", "Star Fire - 1LK Intro (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bf9ddc5dd9056633d4ac0dac8b871dfe", "", "", "Star Fire - Cockpit View (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bfb7850e3ca39f417f8e4bd5ae39f24b", "", "", "Excalibur Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c00734a2233ef683d9b6e622ac97a5c8", "Atari", "CX26133", "A-Team, The (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "" }, + { "c032c2bd7017fdfbba9a105ec50f800e", "Activision", "", "Thwocker (Activision) (Prototype) [!]", "", "Prototype", "", "FE", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "" }, + { "c08d0cee43077d3055febb00e5745c1d", "", "", "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "c16c79aad6272baffb8aae9a7fff0864", "US Games", "VC 2001", "Gopher (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "197", "", "" }, + { "c1b038ce5cb6d85e956c5509b0e0d0d8", "", "", "Rotating Colors Demo 2 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1cb228470a87beb5f36e90ac745da26", "Activision", "AX-015", "Chopper Command (1982) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "" }, + { "c20f15282a1aa8724d70c117e5c9709e", "Video Gems", "", "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c2410d03820e0ff0a449fa6170f51211", "Atari", "CX2646 / 4975185", "Pac-Man (Atari) (PAL) [p1][!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "54", "206", "", "" }, + { "c28b29764c2338b0cf95537cc9aad8c9", "", "", "Multi-Color Demo 4 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c2b5c50ccb59816867036d7cf730bf75", "Salu", "", "Ghostbusters II (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "242", "Yes", "" }, + { "c3205e3707f646e1a106e09c5c49c1bf", "", "", "Unknown Title (bin00003 (200206)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c370c3268ad95b3266d6e36ff23d1f0c", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "226", "", "" }, + { "c3aeb796fdaf9429e8cd6af6346f337e", "", "", "If It's Not One Thing It's Another (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c3ef5c4653212088eda54dc91d787870", "Activision", "AG-002", "Boxing (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "" }, + { "c446288fe62c0c2737639fd788ae4a21", "", "", "Mark's Sound Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "c471b97446a85304bbac021c57c2cb49", "First Star Software", "", "Boing! (1983) (First Star Software) (PAL) [!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "48", "183", "Yes", "" }, + { "c482f8eebd45e0b8d479d9b71dd72bb8", "Retroactive", "", "Push (V0.03) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4bbbb0c8fe203cbd3be2e318e55bcc0", "Imagic", "", "Atlantis (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c504a71c411a601d1fc3173369cfdca4", "Retroactive", "", "Qb (V2.02) (Stella) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "c52d9bbdc5530e1ef8e8ba7be692b01e", "Atari", "", "Holey Moley (Atari) (Prototype)", "Uses Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "" }, + { "c5387fc1aa71f11d2fa82459e189a5f0", "Bitcorp", "", "Weltraum Tunnel (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c58708c09ccb61625cda9d15ddcd8be6", "", "", "NOIZ Invaders by SPIKE the Percussionist (2002) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c59633dbebd926c150fb6d30b0576405", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "", "" }, + { "c5d2834bf98e90245e545573eb7e6bbc", "CCE", "CX26111", "Snoopy and the Red Baron (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "c6556e082aac04260596b4045bc122de", "Atari", "CX2669", "Vanguard (1982) (Atari)", "", "Common", "", "F8", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c68a6bafb667bad2f6d020f879be1d11", "Atari", "", "Crystal Castles (1984) (Atari) (NTSC) (Prototype) [!]", "", "", "", "F6SC", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "" }, + { "c6c63da3bc2e47291f63280e057061d0", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "" }, + { "c738fc3f5aae1e8f86f7249f6c82ac81", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [o2]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "c745487828a1a6a743488ecebc55ad44", "", "", "Galactic (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "c77d3b47f2293e69419b92522c6f6647", "Panda", "101", "Tank Brigade (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "c7e43ad79c5e5c029d9f5ffde23e32cf", "", "", "PAL-NTSC Detector (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c82ec00335cbb4b74494aecf31608fa1", "CCE", "", "E.T. The Extra-Terrestrial (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "" }, + { "c866c995c0d2ca7d017fef0fc0c2e268", "Retroactive", "", "Qb (2.00) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "6", "", "Yes", "" }, + { "c8fa5d69d9e555eb16068ef87b1c9c45", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "c9b7afad3bfd922e006a6bfc1d4f3fe7", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "220", "", "" }, + { "c9f6e521a49a2d15dac56b6ddb3fb4c7", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros)", "Uses the Paddle Controllers (swapped)", "Rare", "", "4K", "", "", "", "", "Paddles", "Paddles", "", "8", "144", "31", "199", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ca50cc4b21b0155255e066fcd6396331", "Starsoft", "", "Raumpatrouille (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "220", "Yes", "" }, + { "ca54de69f7cdf4d7996e86f347129892", "Playaround", "", "Philly Flasher (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "213", "", "" }, + { "cad982c9b45bc5eff34e4ea982d5f1ca", "", "", "Song (17-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb4a7b507372c24f8b9390d22d54a918", "ITT", "", "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "cb8bf5a0df683cbf6ce50d614b12dd20", "Activision", "", "Fast Eddie (1983) (Activision)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "38", "198", "", "" }, + { "cba56e939252b05df7b7de87307d12ca", "", "", "Playfield Text Demo (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cbc373fbcb1653b4c56bfabba33ea50d", "CCE", "", "Super VoleyBall (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "cbd981a23c592fb9ab979223bb368cd5", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari)", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "" }, + { "cc1939e4769d0c157ace326efcfdcf80", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "No" }, + { "cca33ae30a58f39e3fc5d80f94dc0362", "", "", "Okie Dokie (PD)", "", "New Release", "", "2K", "", "", "", "", "", "", "", "16", "128", "47", "178", "", "" }, + { "ccbd36746ed4525821a8083b0d6d2c2c", "", "CX2649", "Asteroids [p1]", "", "Common", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "No" }, + { "cd139ae6d09f3665ad09eb79da3f9e49", "Eric Mooney", "", "Invaders by Erik Mooney (4-24-97) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd3e26786136a4692fd2cb2dfbc1927e", "", "", "Multiple Moving Objects Demo 2 (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd568d6acb2f14477ebf7e59fb382292", "Ariola", "MT5687", "Football (AKA Fussball) (Ariola) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "" }, + { "cd9fea12051e414a6dfe17052067da8e", "Paul Slocum", "", "Marble Craze Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cdc1a5c61d7488eadc9aba36166b253d", "Retroactive", "", "Qb (V0.12) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "ce243747bf34a2de366f846b3f4ca772", "Goliath", "", "Felix Return (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "247", "", "" }, + { "ce64812eb83c95723b04fb56d816910b", "Retroactive", "", "Qb (V2.04) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "cea9f72036dc6f7af5eff52459066290", "Retroactive", "", "Qb (2.07) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "cf0c593c563c84fdaf0f741adb367445", "Retroactive", "", "Qb (V0.05) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "cf3c2725f736d4bcb84ad6f42de62a41", "Rainbow Vision", "SS-009", "Bermuda (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "" }, + { "cfb3260c603b0341d49ddfc94051ec10", "Dactar", "", "Boxing (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "" }, + { "cfe62ed7125ff9fae99b4c8a367c0399", "Activision", "AX-026", "Enduro (1983) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "cff1e9170bdbc29859b815203edf18fa", "Retroactive", "", "Push (V0.01) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d010e3dfe7366e47561c088079a59439", "Retroactive", "", "Qb (V0.10) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "d0498baca989e792db4b8270a02b9624", "", "", "Pac Ghost Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d090836f0a4ea8db9ac7abb7d6adf61e", "Hozer Video Games", "", "Yahtzee (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "d09a7504ee8c8717ac3e24d263e7814d", "Activision", "AX-024", "Dolphin (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "" }, + { "d0af33865512e9b6900714c26db5fa23", "Telegames", "", "Armor Ambush (1982) (Telegames) (PAL) [!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "", "", "60", "195", "", "" }, + { "d0b9f705aa5f61f47a748a66009ae2d2", "", "", "Synthcart (14-01-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "d100b11be34a1e5b7832b1b53f711497", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d1a1841b7f2007a24439ac248374630a", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "d1fc4cf675c9b49fb7deb792f2f3a7a5", "Atari", "CX26120", "Defender II (1984) (Atari) [b1]", "", "Rare", "", "F8SC", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "d28afe0517a046265c418181fa9dd9a1", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "" }, + { "d2c305a443dfc49e8430964d7c1bd1b7", "", "", "Star Fire - Advice on radar needed (16-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d2f713c78a9ebba9da6d10aeefc6f20f", "Digivision", "", "Enduro (Digivision) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "d339b95f273f8c3550dc4daa67a4aa94", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "", "", "" }, + { "d3423d7600879174c038f53e5ebbf9d3", "US Games", "VC 2005", "Piece o' Cake (1982) (US Games) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "d34b933660e29c0a0a04004f15d7e160", "", "", "Multi-Color Demo 5 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d3bb42228a6cd452c111c1932503cc03", "UA Limited", "", "Funky Fish (UA Limited)", "", "Prototype", "", "UA", "", "", "", "", "", "", "", "", "", "36", "213", "Yes", "" }, + { "d4806775693fcaaa24cf00fc00edcdf3", "Atari", "CX26140", "Desert Falcon (1987) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "17", "", "", "" }, + { "d49aff83f77a1b9041ad7185df3c2277", "", "", "Space Treat (60% complete) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d4c590ccfb611a73b3331359700c01a3", "", "", "Sprite Movement Demo 2 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d541b20eae221a8ee321375e5971e766", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "" }, + { "d57eb282d7540051bc9b5427cf966f03", "", "", "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "200", "", "" }, + { "d5e27051512c1e7445a9bf91501bda09", "Activision", "AG-008", "Laser Blast (1981) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "" }, + { "d61629bbbe035f45552e31cef7d591b2", "", "", "Atari Logo Demo (PD) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "" }, + { "d62d7d1a974c31c5803f96a8c1552510", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [p1][!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "d65900fefa7dc18ac3ad99c213e2fa4e", "", "", "Grid and Purple Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "" }, + { "d6acff6aed0f04690fe4024d58ff4ce3", "Spectravideo", "SA-202", "Planet Patrol (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "" }, + { "d763e3a9cdcdd56c715ec826106fab6a", "Activision", "AG-001", "Dragster (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "d7b58303ec8d8c4dbcbf54d3b9734c7e", "", "", "Paddle Demo (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d816fea559b47f9a672604df06f9d2e3", "Atari", "", "Fun with Numbers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "22", "", "", "" }, + { "d82675ce67caf16afe5ed6b6fac8aa37", "", "", "Robot City (V0.23) (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d84cda16d9303a7e2a658b168966c973", "", "", "Image - Clown (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d89fedded0436fdeda7c3c37e2fb7cf1", "Atari", "", "Surround (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "226", "", "" }, + { "d8b2c81cea5af04f795eb3dc6573d72b", "", "", "Tunnel Demo 2 (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d8e4c8e2d210270cd1e0f6d1b4582b91", "", "", "Subterrenea (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "d912312349d90e9d41a9db0d5cd3db70", "CCE", "", "Star Voyager (CCE) [p1]", "", "", "", "4K", "", "", "", "", "", "", "", "8", "144", "38", "193", "", "" }, + { "d9ab6b67a17da51e5ad13717e93fa2e2", "", "", "Turbo (Coleco) Prototype Fake v0.1 (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "da4e3396aa2db3bd667f83a1cb9e4a36", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "da64f33d0521d5c9958e5d2d4434ff95", "", "", "Star Fire - Return of the Starfield (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "da79aad11572c80a96e261e4ac6392d0", "Salu", "", "Pick 'n Pile (1990) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "58", "219", "Yes", "" }, + { "dac762e4d01d445bdef20b7771f6570e", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [h1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "30", "205", "", "" }, + { "daeb54957875c50198a7e616f9cc8144", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox)", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "db1753cc702c18d3917ec7f3b0e8659f", "", "", "Frame Counter 2 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "db4eb44bc5d652d9192451383d3249fc", "", "", "Mountain King (1983) (CBS Electronics) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "47", "186", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dbabb80e92ff18d8eecf615c0539151e", "", "", "Sprite Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dbdaf82f4f0c415a94d1030271a9ef44", "CCE", "", "Kaboom! (CCE)", "Uses the Paddle Controllers (left only)", "", "", "2K", "", "", "", "", "Paddles", "None", "", "8", "144", "41", "192", "", "" }, + { "dc81c4805bf23959fcf2c649700b82bf", "", "", "No Escape! (1983) (Imagic) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "230", "", "" }, + { "dcc2956c7a39fdbf1e861fc5c595da0d", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "41", "194", "", "" }, + { "dd08e18cfee87a0e7fc19a684b36e124", "", "", "Kangaroo (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "dd17711a30ad60109c8beace0d4a76e8", "", "", "Karate (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "217", "", "" }, + { "dd4f4e0fbd81762533e39e6f5b55bb3a", "", "", "Turbo WIP (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd8a2124d4eda200df715c698a6ea887", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "ddd1efc1862cd3eb3baf4cba81ff5050", "", "", "Max3 (2001) (Maxime Beauvais) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "191", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de1a636d098349be11bbc2d090f4e9cf", "", "", "Pressure Gauge (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de24f700fd28d5b8381de13abd091db9", "CCE", "", "Plaque Attack (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "de4436eaa41e5d7b7609512632b90078", "Activision", "AX-014", "Grand Prix (1982) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "" }, + { "de62f8a30298e2325249fe112ecb5c10", "CCE", "", "Enduro (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "" }, + { "de7a64108074098ba333cc0c70eef18a", "Technovision", "", "Nuts (Technovision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "38", "194", "", "" }, + { "deb39482e77f984d4ce73be9fd8adabd", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "44", "192", "", "" }, + { "df2745d585238780101df812d00b49f4", "Cooper Black", "", "Space Tunnel (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "233", "", "" }, + { "df4aea767cdf6a3f138255092e84d713", "", "", "Image - Samantha Fox (Colour) (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df6a28a89600affe36d94394ef597214", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "183", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dfad86dd85a11c80259f3ddb6151f48f", "", "", "My Golf (1990)", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "" }, + { "dfe034297200dff672df9533ed1449a9", "", "", "Sprite Movement Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e020f612255e266a8a6a9795a4df0c0f", "", "", "Universal Chaos (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "", "", "" }, + { "e03b0b091bea5bc9d3f14ee0221e714d", "CBS Electronics", "4L-2487", "Solar Fox (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "e0b24c3f40a46cda52e29835ab7ad660", "Starsoft", "", "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "35", "227", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e10bf1af6bf3b4a253c5bef6577fe923", "Rob Kudla", "", "Space Invaders (1978) (Atari) [h1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "e13818a5c0cb2f84dd84368070e9f099", "CCE", "C-839", "Misterious Thief, A (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "214", "Yes", "" }, + { "e150f0d14f013a104b032305c0ce23ef", "", "", "China Syndrome (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "217", "Yes", "" }, + { "e17699a54c90f3a56ae4820f779f72c4", "Starsoft", "SS-020", "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "41", "195", "", "" }, + { "e1d5c8213e82820128fa9c4775f1e166", "", "", "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "" }, + { "e24d7d879281ffec0641e9c3f52e505a", "Parker Bros", "PB5590", "Lord of The Rings (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "E0", "", "", "", "", "", "", "", "8", "144", "30", "", "", "" }, + { "e28113d10c0c14cc3b5f430b0d142fcb", "CCE", "", "Keystone Kapers (CCE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "190", "", "" }, + { "e2c89f270f72cd256ed667507fa038a2", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "64", "204", "", "" }, + { "e2cff4a96b91fcf5de694b7480a612ae", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b2]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "" }, + { "e34c236630c945089fcdef088c4b6e06", "Activision", "AB-035-04", "Pitfall 2 (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "" }, + { "e377c3af4f54a51b85efe37d4b7029e6", "", "", "Save the Whales (2002) (20th Century Fox) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e39843c56b7a4a08b18fa7949ec3ee6b", "", "", "Joshua Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e3c35eac234537396a865d23bafb1c84", "", "", "Nuts (Technovision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "", "", "" }, + { "e42b937c30c617241ca9e01e4510c3f6", "", "", "Pitfall! (No Walls Hack)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4b12deaafd1dbf5ac31afe4b8e9c233", "", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "194", "Yes", "" }, + { "e4c00beb17fdc5881757855f2838c816", "20th Century Fox", "11004", "Deadly Duck (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "e4d41f2d59a56a9d917038682b8e0b8c", "", "", "Kiss Meets Pacman (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e505bd8e59e31aaed20718d47b15c61b", "High-Score Games", "", "Condor Attack (High-Score Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "" }, + { "e51c23389e43ab328ccfb05be7d451da", "Starpath", "", "Sweat! - The Decathalon Game (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "AR", "", "", "", "", "Paddles", "", "", "8", "144", "39", "198", "", "" }, + { "e558be88eef569f33716e8e330d2f5bc", "", "", "Keystone Kapers (Shock Vision) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "200", "", "" }, + { "e5d5085123a98c1e61818caa2971e999", "", "", "Euchre (PAL) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "e5f17b3e62a21d0df1ca9aee1aa8c7c5", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "e600f5e98a20fafa47676198efe6834d", "", "", "Gyruss (1984) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "e63a87c231ee9a506f9599aa4ef7dfb9", "Tigervision", "7-003", "Threshold (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e64a8008812327853877a37befeb6465", "", "ASC1002", "Gauntlet (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "8", "152", "35", "201", "", "" }, + { "e6de4ef9ab62e2196962aa6b0dedac59", "Imagic", "O3206", "Solar Storm (1983) (Imagic) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "4K", "", "", "", "", "Paddles", "Paddles", "PAL", "8", "144", "64", "194", "", "" }, + { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "e77ec259e1387bc308b0534647a89198", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "", "240", "", "" }, + { "e7a758bb0b43d0f7004e92b9abf4bc83", "", "", "Troll's Adventure (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "e7f005ddb6902c648de098511f6ae2e5", "Spectravideo & Universum", "", "CompuMate (Spectravideo & Universum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "" }, + { "e847e1b57a704ad9f029cc2d564bde11", "", "", "Death Derby (v0007) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e8a3473bf786cf796d1336d2d03a0008", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 120583)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "e8e7b9bdf4bf04930c2bcaa0278ee637", "", "", "Boring Taz (Taz Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e908611d99890733be31733a979c62d8", "", "CX2697", "Mario Bros (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "e932f44fad2a66b6d5faec9addec208e", "", "", "Atari Logo Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e9c5d04643855949a23ff29349af74ea", "", "", "SCSIcide (Score Hack 2) (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ea38fcfc06ad87a0aed1a3d1588744e4", "Atari", "CX26122", "Sinistar (Atari)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "" }, + { "ea86176b27ab0da8cce8f0179884bfaa", "", "", "Demo Image Series #10 - It's Art (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eae0c06ee61c63b81cd016096fc901b0", "Joe Grand", "", "SCSIcide (v1.0) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "eb3d680699f8762f71f38e28e321234d", "", "", "Fu Kung! (V0.01) (08-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb634650c3912132092b7aee540bbce3", "Atari", "CX2640", "RealSports Baseball (1982) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "33", "197", "Yes", "" }, + { "eb71743c6c7ccce5b108fad70a326ad9", "", "", "Euchre (25-11-2001) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ebcbc8a181a738e13df6216e5c329230", "Activision", "AX-022", "Seaquest (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "ec26fdc87b1d35f1d60ea89cda4f4dd4", "", "", "Star Fire - Crash Scene (04-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ec5c861b487a5075876ab01155e74c6c", "Apollo", "AP 2001", "Spacechase (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "225", "", "" }, + { "ecf51385384b468834611d44a8429c03", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "64", "193", "", "" }, + { "ed1492d4cafd7ebf064f0c933249f5b0", "CCE", "", "Video Cube (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "38", "200", "", "" }, + { "ed9999911b406dc5f75c850dcc17bdf4", "", "", "Star Fire - Shootable (Friendlier Collision Detection) (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "edf69b123e06eaf8663cc78d8aeba06e", "SpkSoft 98", "", "River Raid (SpkSoft 98) [h1]", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "" }, + { "ee4c186123d31a279ed7a84d3578df23", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "4K", "", "", "", "", "Paddles", "None", "PAL", "8", "136", "35", "234", "", "" }, + { "ee6cbedf6c0aac90faa0a8dbc093ffbe", "CCE", "", "My Golf (CCE)", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "" }, + { "eea0da9b987d661264cce69a7c13c3bd", "CBS Electronics", "4L-2277", "Zaxxon (1983) (CBS Electronics)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eec61cc4250df70939d48fe02d7122ac", "Activision", "AG-005", "Skiing (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "206", "", "" }, + { "eee7695ae3eea7818321df0b790b31f3", "", "", "Sound Paddle V2 (Dennis Caswell & Jim Nitchals) (PD)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "ef5c02c95a1e7ed24f24193935755cd3", "Thomas Jentzsch", "", "Jammed Demo (1999) (Hozer Video Games)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "29", "203", "", "" }, + { "ef76ea05655a0b62cb1018c92b9b4b7d", "Gakken", "", "Strategy X (1982) (Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "efd387430a35a659ff569a9a0ec22209", "Atari", "", "Milpede (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "f032b2f2d8323404a6b4541f92dd1825", "", "", "Many Blue Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "f0631c6675033428238408885d7e4fde", "Paul Slocum", "", "Test Cart (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "f0a6e99f5875891246c3dbecbf2d2cea", "Atari", "CX2654 / 4975141", "Haunted House (1981) (Atari)", "", "Common", "", "4K", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "" }, + { "f0daaa966199ef2b49403e9a29d12c50", "", "PG209", "Mr. Postman (1983) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1127ade54037236e75a133b1dfc389d", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "" }, + { "f1554569321dc933c87981cf5c239c43", "Atari", "CX26129", "Midnight Magic (1984) (Atari)", "", "Rare", "", "F6", "", "", "", "", "", "", "", "8", "144", "37", "200", "Yes", "" }, + { "f19aba18f86e415812480ad2be221425", "", "", "Solaris Trainer (2002) (Chris Larkin) (Solaris Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "196", "", "" }, + { "f1b2ea568b3e156e3f2849dac83591f6", "", "", "Sprite Demo (1997) (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1e375d921858467166e53bcec05803f", "Jeffry Johnston", "", "Radial Pong - Version 3 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f21813aa050437f0dbc8479864acec6d", "", "", "Sneek 'n Peek (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "229", "", "" }, + { "f283cc294ece520c2badf9da20cfc025", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "PAL", "", "", "47", "225", "", "" }, + { "f2e4fb2d3600c0f76d05864e658cc57b", "", "", "Marble Craze (Kernel) (17-02-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f344ac1279152157d63e64aa39479599", "", "", "Espial (1983) (Tigervision) [b2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f367e58667a30e7482175809e3cec4d4", "Zimag", "GN-040 / 708-111", "Cosmic Corridor (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "212", "", "" }, + { "f3dfae774f3bd005a026e29894db40d3", "Starsoft", "", "See Saw (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "196", "", "" }, + { "f4469178cd8998cb437fa110a228eaca", "Digitel", "", "Frostbite (Digitel) (Brazil) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f48022230bb774a7f22184b48a3385af", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari) [o1]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "None", "", "", "", "", "200", "Yes", "" }, + { "f49a34f1fdd7dc147cbf96ce2ce71b76", "", "", "Qb (Special Edition) (PAL) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "f4c2e50b01dff99bddbe037b3489511c", "", "", "Hypnotic (V0.04) (2001) (Inkling) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f5445b52999e229e3789c39e7ee99947", "Atari", "", "Flag Capture (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "f5aa6bd10f662199c42e43863a30106c", "", "", "Music Kit (V1.0) - Song Player (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f687ec4b69611a7f78bd69b8a567937a", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "f69bb58b815a6bdca548fa4d5e0d5a75", "Atari", "", "Bowling (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "218", "", "" }, + { "f6a282374441012b01714e19699fc62a", "Zimag", "GN-010 / 710-111", "I Want My Mommy (AKA Ursinho Esperto) (Zimag) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "f6c13e816e58c8c62f82b2c8b91a2d67", "", "", "Scrolling Playfield 2 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6efa00ae99aaf33e427b674bcfd834d", "", "", "2600 Digital Clock (Demo 3) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f736864442164b29235e8872013180cd", "Telegames", "", "Quest for Quintana Roo (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "195", "", "" }, + { "f750b5d613796963acecab1690f554ae", "Manuel Polik", "", "Gunfight 2600 (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "f7856e324bc56f45b9c8e6ff062ec033", "", "", "RealSports Soccer (1983) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7d6592dcb773c81c278140ed4d01669", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "197", "", "" }, + { "f80cf77164079d774b9b0fae33dffca9", "", "", "Fu Kung! (V0.15) (Negative Version) (05-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f844f4c6f3baaaf5322657442d6f29eb", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "" }, + { "f8648d0c6ad1266434f6c485ff69ec40", "CCE", "", "Oink! (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "" }, + { "f8c1c4a41303bd40b0d6c81bfaf8573b", "", "", "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "240", "", "" }, + { "f90b5da189f24d7e1a2117d8c8abc952", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "" }, + { "f939780714db69dc69a80fbefe350e0d", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b2]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9655ed51462ecfc690c7b97cec649f9", "Andrew Wallace", "", "Laseresal 2002 (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "218", "", "" }, + { "f9677b2ec8728a703eb710274474613d", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "202", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f98d869f287d2ce4f8fb36e0686929d9", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9da42f91a1c5cfa344d2ff440c6f8d4", "ZUT", "", "Pac Invaders (ZUT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa0570561aa80896f0ead05c46351389", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "" }, + { "fa2f5f409cff75c9b9b9a5af84bd9909", "", "", "Greeting Cart Brook Burke Closeup(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa6fe97a10efb9e74c0b5a816e6e1958", "Zimag", "707-111", "Tanks But No Tanks (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "fabca526d57de46768b392f758f1a008", "", "", "Laseresal 2600 (16-12-2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "faed2ef6b44894f8c83f2b50891c35c6", "CCE", "", "Super Baseball (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "199", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb27afe896e7c928089307b32e5642ee", "Mattel", "MT5662", "TRON - Deadly Discs (1983) (Mattel) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "144", "41", "181", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb833ed50c865a9a505a125fc9d79a7e", "HomeVision", "", "Zoo Fun (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "249", "", "" }, + { "fb91da78455d9b1606913fbf8c859772", "", "", "Split Screen (Ballblazer) Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fbb0151ea2108e33b2dbaae14a1831dd", "Activision / Thomas Jentzsch", "", "Robot Tank TV by Thomas Jentzsch (2 Joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Robot Tank (Activision)", "New Release (Hack)", "", "FE", "", "", "", "", "", "", "", "8", "152", "41", "200", "", "" }, + { "fbd6102e17a5c02c6e1911381b7203f9", "", "", "Star Fire - Warping!! (10-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fc2104dd2dadf9a6176c1c1c8f87ced9", "Coleco", "2663", "Time Pilot (1983) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "193", "", "" }, + { "fc6052438f339aea373bbc999433388a", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "" }, + { "fc9c1652fe3a2cade6188f4d3692481f", "", "", "Andrew Davies early notBoulderDash demo (NTSC)", "", "", "", "3E", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd0e5148162e8ec6719445d559f018a9", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "fd6e507b5df68beeeddeaf696b6828fa", "Activision", "", "Boxing (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "61", "", "", "" }, + { "fd8b4ee0d57605b35e236e814f706ff1", "", "", "Phoenix (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "fdf6680b2b1e8054293a39700a765692", "", "", "Alpha Demo - The Beta Demo 2 (2000) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fe67087f9c22655ce519616fc6c6ef4d", "", "", "Cracked (1988) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "192", "", "" }, + { "fece458a8023a809a5006867feca40e8", "", "", "SCSIcide (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "feec54aac911887940b47fe8c9f80b11", "Atari", "CX2633", "Night Driver (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "None", "PAL", "", "", "", "240", "Yes", "" }, + { "ff3bd0c684f7144aeaa18758d8281a78", "Atari", "", "Blackjack (1977) (Atari) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "49", "240", "", "" }, + { "ff5a9e340d96df6f5a5b6eb038e923bd", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ff86fc8ffa717bb095e8471638c1c31c", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "50", "", "", "" }, + { "ffb1cd548563158ce33f9d10268187e7", "Erik Eid", "", "Euchre (Beta) (NTSC) (12-09-2002) (Erik Eid)", "", "New Release", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ffe51989ba6da2c6ae5a12d277862e16", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "007d18dedc1f0565f09c42aa61a6f585", "CCE", "", "Worm War I (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "00ce0bdd43aed84a983bef38fe7f5ee3", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "12", "136", "44", "178", "", "" }, + { "00dc28b881989c39a6cf87a892bd3c6b", "CCE", "", "Krull (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "00eaee22034aff602f899b684c107d77", "", "", "Time Race (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "222", "", "" }, + { "01293bd90a4579abb7aed2f7d440681f", "", "", "Snoopy (1983) (Century) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "" }, + { "012b8e6ef3b5fd5aabc94075c527709d", "Starpath", "AR-4302", "Party Mix (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "192", "", "" }, + { "0173675d40a8d975763ee493377ca87d", "CBS Electronics", "2667", "Roc n' Rope (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "250", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "01cb3e8dfab7203a9c62ba3b94b4e59f", "Atari", "CX26127", "Gremlins (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "" }, + { "01e60a109a6a67c70d3c0528381d0187", "ITT Family Games", "554-33383", "Fire Birds (AKA Scorpion) (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "027a59a575b78860aed780b2ae7d001d", "CCE", "", "Pressure Cooker (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "02ab2c47bc21e7feafa015f90d7df776", "", "", "Diagnostic Cartridge (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "02dcba28c614fec7ca25955327128abb", "Andrew Wallace", "", "Laseresal 2002 (PAL-49) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "241", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "039cf18b459d33b8a8fca31d06c4c244", "", "", "Demo Image Series #0 (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "03c3f7ba4585e349dd12bfa7b34b7729", "Sega", "004-01", "Star Trek - Strategic Operations Simulator (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "219", "Yes", "" }, + { "041b5e56bbc650db574bd8db3fae2696", "", "", "Thrust (V1.0) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "045035f995272eb2deb8820111745a07", "Starpath", "AR-4401", "Survival Island (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "", "", "30", "", "", "No" }, + { "04856e3006a4f5f7b4638da71dad3d88", "Atari", "CX26176", "Radar Lock (1989) (Atari) (PAL) [!]", "", "Rare", "", "F6SC", "", "", "", "", "", "", "PAL", "", "", "64", "211", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05824fcbe615dbca836d061a140a50e0", "Jeffry Johnston", "", "Radial Pong - Version 9 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05aff8f626ef870432ae3b3d9d5aa301", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o2]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "" }, + { "05c60458ec69e7fe8b1be973852d84f1", "", "", "Test (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05f11fb2e45c4e47424d3cb25414d278", "", "", "Boring (NTSC) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "06742cf522f23797157f215a1dc8a1a9", "", "", "Healthbars (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "06e5dc181a8eda1c31cc7c581c68b6ef", "Sega", "", "Tac Scan (1982) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "072a6ea2181ca0df88ac0dedc67b239d", "", "", "Multiple Missiles Demo (19-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "07973be3ecfd55235bf59aa56bdef28c", "Starsoft", "", "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "57", "", "", "" }, + { "07a3af1e18b63765b6807876366f5e8a", "Joe Grand", "", "SCSIcide Pre-release 2 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "07f42847a79e4f5ae55cc03304b18c25", "Froggo", "FG 1008", "Sea Hawk (1987) (Froggo-Zellers)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "085322bae40d904f53bdcc56df0593fc", "Parker Bros", "PB5340", "Tutankham (1983) (Parker Bros)", "", "Uncommon", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0890a5b089191f45d0f08dd1e3235687", "", "", "Star Fire - 4K Version (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "08d1b6d75206edb999252caf542a2c7f", "", "", "Super Home Run (2003) (Larry Petit) (Home Run Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "218", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "08f853e8e01e711919e734d85349220d", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video", "VC 1012", "M.A.D. (1982) (Carrere Video) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "", "", "57", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0945081a6bd00345ff3d58eb7a07330a", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][o1][!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "097936b07e0e0117b9026ae6835eb168", "", "", "Trick Shot (1982) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0a1b98937911d621b004b1617446d124", "", "", "Hangman Pac-Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0aa208060d7c140f20571e3341f5a3f8", "US Games", "VC 1009", "Towering Inferno (1982) (US Games) [!]", "Uses the Joystick Controllers (swapped)", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "32", "219", "", "" }, + { "0ac0d491763153fac75f5337ce32a9d6", "", "", "SPAM Image Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0ad9a358e361256b94f3fb4f2fa5a3b1", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "4K", "", "", "", "", "Paddles", "None", "", "8", "136", "35", "180", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b24658714f8dff110a693a2052cc207", "", "", "Seaquest (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "0b4e793c9425175498f5a65a3e960086", "CCE", "AX-039", "Kung Fu Master (CCE)", "", "Rare", "", "F8", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b8d3002d8f744a753ba434a4d39249a", "Sears", "CX2619 / 4975159", "Stellar Track (1980) (Sears)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "136", "37", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0c35806ff0019a270a7acae68de89d28", "Froggo", "FG 1003", "Task Force (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "38", "", "", "" }, + { "0c54811cf3b1f1573c9164d5f19eca65", "Activision", "AG-001", "Dragster (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "0c80751f6f7a3b370cc9e9f39ad533a7", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "4K", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "37", "243", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0cdd9cc692e8b04ba8eb31fc31d72e5e", "Imagic / Thomas Jentzsch", "", "Wing War (Imagic) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "31", "200", "", "" }, + { "0cfdd2f3b243cac21f38a0f09f54bead", "", "", "Overhead Adventure Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d35618b6d76ddd46d2626e9e3e40db5", "", "", "X-Doom V.26 (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "0d6b974fe58a1bdd453600401c407856", "", "", "128-in-1 Junior Console (Chip 3) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "50", "", "", "" }, + { "0d7e630a14856f4d52c9666040961d4d", "", "", "Wavy Line Test (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision", "7-001", "King Kong (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "211", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0f8043715d66a4bbed394ef801d99862", "Starsoft", "", "Robin Hood (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "206", "", "" }, + { "0fbf618be43d4396856d4244126fe7dc", "Starsoft", "", "Labyrinth (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "180", "", "" }, + { "0fd518e9435f5ab0893d79ee0d63fc92", "", "", "Greeting Cart Jeri Ryan (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "103d4c890c2108cb536372c98d093e5f", "", "", "Star Fire - Star Background (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "42", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "111029770226b319524134193886a10e", "Hozer Video Games", "", "Gunfight 2600 - One Limit Reached! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "" }, + { "113cd09c9771ac278544b7e90efe7df2", "", "CX2639 / 4975162", "Othello (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "12123b534bdee79ed7563b9ad74f1cbd", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "" }, + { "1266b3fd632c981f3ef9bdbf9f86ce9a", "Activision", "AG-034-04", "Private Eye (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "44", "233", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx", "8056100250", "Summer Games (1987) (Epyx) (PAL) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "12d7e0d6b187889f8d150bf7034d1db2", "", "", "Poker Squares (V0.0e) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "32", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "8", "144", "36", "193", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1367e41858be525710eb04d0dab53505", "", "", "Zelda (2003) (Kyle Pittman) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13aa1f9ac4249947e4af61319d9a08f2", "", "", "RealSports Tennis (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13dfb095e519a555a5b60b7d9d7169f9", "", "", "Red Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "14163eb2a3ddd35576bd8527eae3b45e", "", "", "Multi-Color Demo 6 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "149b543c917c180a1b02d33c12415206", "CCE", "CX2631", "Superman (CCE)", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "14b1e30982962c72f426e2e763eb4274", "Atari", "", "Polo (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "" }, + { "14d365bbfaac3d20c6119591f57acca4", "", "", "Video Life (CommaVid) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1542662f665d2ffaa77b4b897dd2e2af", "", "", "Starfield (V1.0) (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "157356f80c709ab675961d8b8b207e20", "", "", "Multi-Sprite Game V2.5 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "159e5cd6ccb968015f49aed5adbc91eb", "", "", "Yar's Defeat (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "" }, + { "15bcd74f2f1f2a63e1aa93e90d2c0555", "", "", "Incoming (22-08-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "15c11ab6e4502b2010b18366133fc322", "Atari", "CX26169", "Shooting Arcade (1989) (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1619bc27632f9148d8480cd813aa74c3", "Video Gems / Thomas Jentzsch", "", "Steeple Chase (Video Gems) (NTSC by Thomas Jentzsch)", "Uses the Paddle Controllers", "New Release (Video Format Conversion)", "", "", "", "", "", "", "Paddles", "Paddles", "", "8", "152", "0", "243", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "16cc6d1b4ddce51c767a1ba8e5ff196c", "", "", "Big - Move This Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "Yes", "" }, + { "16f494f20af5dc803bc35939ef924020", "Mark De Smet", "", "Video Simon (Mark De Smet)", "", "New Release", "", "", "", "", "", "", "", "", "", "8", "152", "36", "190", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17512d0c38f448712f49f36f9d185c4e", "Retroactive", "", "Qb (Release Candidate #1) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17badbb3f54d1fc01ee68726882f26a6", "Mattel", "MT5659", "Space Attack (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "33", "201", "", "" }, + { "17d000a2882f9fdaa8b4a391ad367f00", "Atari", "CX2676", "Centipede (1982) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "8", "144", "64", "196", "", "" }, + { "17ee23e5da931be82f733917adcb6386", "Salu", "", "Acid Drop (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "F6", "", "", "", "", "", "", "PAL", "", "", "52", "255", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "18d26111cef66dff0c8af8cf0e117843", "", "", "Tunnel Demo (Cycling Colours 2) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19098c46da0640f2b5763167dea6c716", "Andrew Wallace", "", "Laseresal 2002 (NTSC) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "193f060553ba0a2a2676f91d9ec0c555", "Atari", "CX2636", "Video Checkers (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "243", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1a624e236526c4c8f31175e9c89b2a22", "", "", "Space Raid (Rainbow Vision) (PAL) [a1]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1b8d35d93697450ea26ebf7ff17bd4d1", "Starsoft", "", "Marineflieger (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "235", "", "" }, + { "1bef389e3dd2d4ca4f2f60d42c932509", "HomeVision", "1", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1c5796d277d9e4df3f6648f7012884c4", "Starsoft", "", "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "200", "", "" }, + { "1c85c0fc480bbd69dc301591b6ecb422", "CCE", "", "Super Box (CCE)", "", "", "", "F6", "", "", "", "", "", "", "", "8", "152", "38", "185", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1cd90a0841ab9d62583e93f78fee8036", "", "", "Dark Mage Mod (AKA DM-FOOT) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1d284d6a3f850bafb25635a12b316f3d", "CCE", "", "H.E.R.O. (1984) (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "49", "190", "", "No" }, + { "1d4e0a034ad1275bc4d75165ae236105", "", "", "Pickup (2002) (20th Century Fox) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e1290ea102e12d7ac52820961457e2b", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 121583)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e85f8bccb4b866d4daa9fcf89306474", "Atari", "", "Sinistar (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1ec57bbd27bdbd08b60c391c4895c1cf", "", "CX26119", "Saboteur (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "" }, + { "1ede4f365ce1386d58f121b15a775e24", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [b1]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f562b89d081e36d58e6fc943512ec05", "", "", "Hangman Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f60e48ad98b659a05ce0c1a8e999ad9", "", "", "Mondo Pong V2 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "44", "178", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "203049f4d8290bb4521cc4402415e737", "Tigervision", "7-007", "Polaris (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "PAL", "8", "144", "61", "250", "", "" }, + { "203b1efc6101d4b9d83bb6cc1c71f67f", "Starsoft", "", "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "224", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "20edcc3aa6c189259fa7e2f044a99c49", "Spectravision", "SA-201", "Gangster Alley (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "36", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "211fbbdbbca1102dc5b43dc8157c09b3", "Apollo", "AP 2009", "Final Approach (1982) (Apollo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "21299c8c3ac1d54f8289d88702a738fd", "K-Tel Vision", "", "Spider Maze (K-Tel Vision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "28", "215", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "21a96301bb0df27fde2e7eefa49e0397", "Data Age", "DA 1003", "Sssnake (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "21d7334e406c2407e69dbddd7cec3583", "Activision", "AG-011", "Stampede (1981) (Activision) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "" }, + { "22319be7a640af5314ec3c482cceb676", "", "", "Joustpong (05-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "22abbdcb094d014388d529352abe9b4b", "Apollo", "", "Squoosh (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2319922df4d0c820b3e5f15faa870cc3", "", "", "Battlezone (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "235436ab0832370e73677c9c6f0c8b06", "Jeff 'Yak' Minter", "", "Beast Invaders (double shot Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24385ba7f5109fbe76aadc0a375de573", "CCE", "", "Xevious (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "26", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2450dfa1df70d12b60683185775efed8", "Jeffry Johnston", "", "Radial Pong - Version 7 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "247fa1a29ad90e64069ee13d96fea6d6", "CCE", "", "Radar (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "" }, + { "24aff972d58990f9b88a6d787c796f1e", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24d018c4a6de7e5bd19a36f2b879b335", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24df052902aa9de21c2b2525eb84a255", "Imagic", "IA3000", "Trick Shot (1982) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "44", "179", "Yes", "" }, + { "2516f4f4b811ede4ecf6fbeb5d54a299", "Starsoft", "", "Schiessbude (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "215", "", "" }, + { "25265d0e7f88b3026003809f25ee025e", "", "", "Jr. Pac-Man (1986) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25b52bf8dd215bcbd59c9abdb55c44f8", "", "", "Pole Position (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "190", "", "" }, + { "25bb080457351be724aac8a02021aa92", "CBS Electronics", "", "Zaxxon (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "260c787e8925bf3649c8aeae5b97dcc0", "ITT Family Games / Thomas Jentzsch", "", "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "37", "209", "", "" }, + { "265a85f66544eaf95fda06c3d9e48abf", "", "", "Tunnel Demo (Cycling Colours) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "56", "192", "", "" }, + { "273ce50db5a0d6da7ea827a54f44dee9", "", "", "Island Flyer Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "278f14887d601b5e5b620f1870bc09f6", "", "", "Swoops! (v0.96) (Thomas Jentzsch)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "28", "", "", "" }, + { "27c6a2ca16ad7d814626ceea62fa8fb4", "Parker Bros", "PB5590", "Frogger II - Threedeep! (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "8", "144", "40", "194", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2825f4d068feba6973e61c84649489fe", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "28a4cd87fb9de4ee91693a38611cb53c", "", "", "Skeleton (V1.1) (NTSC) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "29396db58406084e416032c372734a3e", "", "", "Gunfight 2600 - Fixed Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "294762000e853b4319f9991c1ced5dfc", "", "", "T.F. Space Invaders (Space Invaders Hack)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "29630a20d356fb58685b150bfa8f00c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "" }, + { "2982e655dffc89d218a0a3072cfc6811", "", "", "Mini Golf 812631 (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a156728c0123034bd73e25bf8c70a88", "Tigervision", "7-005", "Marauder (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a360bc85bf22de438651cf92ffda1de", "", "", "Spy vs. Spy (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2ac3a08cfbf1942ba169c3e9e6c47e09", "Absolute", "AK-046", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [!]", "", "Extremely Rare", "", "F6", "", "", "", "", "", "", "PAL", "8", "152", "57", "195", "", "" }, + { "2b27eb194e13f3b38d23c879cc1e3abf", "Starsoft", "SS-011", "Super Ferrari (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2bb9f4686f7e08c5fcc69ec1a1c66fe7", "", "CX2688", "Jungle Hunt (1982) (Atari) [!]", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "" }, + { "2bc6c53b19e0097a242f22375a6a60ff", "", "", "Droid Demo 2 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "" }, + { "2bee7f226d506c217163bad4ab1768c0", "Xonox", "99002", "Ghost Manor (1983) (Xonox) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c45c3eb819a797237820a1816c532eb", "Atari", "", "Boxing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "60", "208", "", "" }, + { "2c8c11295d8613f875b7bcf5253ab9bb", "", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "199", "", "" }, + { "2cb42cf62b2f25f59f909b5447821b14", "", "", "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "227", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d2c5f0761e609e3c5228766f446f7f8", "Atari", "CX26170", "Secret Quest (1989) (Atari) (PAL) [!]", "", "Rare", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "136", "42", "194", "", "" }, + { "2d6da0eb85eabc93270e5bb8a466ca51", "", "", "Sprite Demo 7 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d9e5d8d083b6367eda880e80dfdfaeb", "Selchow", "87", "Glib (1983) (Selchow & Righter)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "2dbc92688f9ba92a7e086d62be9df79d", "", "", "How to Draw a Playfield (1997) (Jim Crawford) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2e2885e68fa1045871ce1382b68f6efc", "", "", "Star Fire - Return of the Crosshair (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2e5b184da8a27c4d362b5a81f0b4a68f", "Atari", "", "Rabbit Transit (Atari) (Prototype)", "", "Prototype", "", "AR", "", "", "", "", "", "", "", "8", "152", "", "198", "", "" }, + { "2e7e9c6dcfcceaffc6fa73f0d08a402a", "", "", "Star Voyager (1982) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2f0a8bb4e18839f9b1dcaa2f5d02fd1d", "CCE", "CX2668", "Super Futebol (American Style) (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "" }, + { "2f16663b01591539624d0ef52934a17d", "M Network", "", "Rocky and Bullwinkle", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2f2f9061398a74c80420b99ddecf6448", "Rentacom", "", "Bobby is Going Home (Rentacom) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "228", "", "" }, + { "2f77f015fc880b05f28e84156f989a0c", "", "", "Plane Demo (Gonzalo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "304512528a5530a9361e8a231ed9a6de", "Activision / Thomas Jentzsch", "", "River Raid Plus by Thomas Jentzsch (River Raid Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "30516cfbaa1bc3b5335ee53ad811f17a", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "30685b9b6ebd9ba71536dd7632a1e3b6", "Dactar", "", "Tennis (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "31512cdfadfd82bfb6f196e3b0fd83cd", "Tigervision", "7-004", "River Patrol (1984) (Tigervision)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "", "", "40", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "31d08cb465965f80d3541a57ec82c625", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "327468d6c19697e65ab702f06502c7ed", "", "", "Aster-Hawk (2002) (Charles Morgan) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "327fe8cf94f3a45c35a840a453df1235", "", "", "Spice Girls Rule Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "32e65d1e4dfcbcd9b57fee72cafe074c", "", "", "Eckhard Stolberg's Scrolling Text Demo 3 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3349fbd01dde378b31f72bd8dc793dc5", "", "", "Greeting Cart (RSIDDALL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3367eeba3269aa04720abe6169767502", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "33ed6dfac4b9ea2f81f778ceddbb4a75", "Activision", "", "River Raid (1982) (SpkSoft) [t1]", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "346555779a2d51b48833463b5433472f", "", "", "Thrust (V0.1) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "34b269387fa1aa5a396636f5ecdd63dd", "", "", "Marble Craze (mc7_23) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "34e37eaffc0d34e05e40ed883f848b40", "Retroactive", "", "Qb (2.15) (Retroactive) (Stella)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "35163b56f4a692a232ae96ad3e23310f", "Retroactive", "", "Qb (2.12) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "35ae903dff7389755ad4a07f2fb7400c", "", "", "Colored Wall Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "35b43b54e83403bb3d71f519739a9549", "", "", "McDonald's (1983) (Parker Bros) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36306070f0c90a72461551a7a4f3a209", "Carrere Video", "VC 1007", "Octopus (AKA Name That Game) (Carrere Video) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36a701c60a9f9768d057bc2a83526a80", "", "", "Cube Conquest (Interlaced) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "36c31bb5daeb103f488c66de67ac5075", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "192", "", "" }, + { "36edef446ab4c2395666efc672b92ed0", "Atari", "", "Off the Wall (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "207", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "37fd7fa52d358f66984948999f1213c5", "Suntek", "4", "Pyramid War (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "67", "183", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3882224adbd0ca7c748b2a1c9b87263e", "", "", "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "" }, + { "38bd172da8b2a3a176e517c213fcd5a6", "Atari", "MAO17600", "Test Tape - Standalone (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "38cf93eacfb2fa9a2c5e39059ff35a74", "", "", "WacMan (2003) (Greg Zumwalt) (Ms. Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "392d34c0498075dd58df0ce7cd491ea2", "Atari", "CX2686", "Quadrun (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "393948436d1f4cc3192410bb918f9724", "Activision", "AX-020", "River Raid (1982) (Activision) [a1][!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "8", "152", "", "203", "", "" }, + { "396f7bc90ab4fa4975f8c74abe4e81f0", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari)", "Uses the Paddle Controllers (swapped)", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "33", "211", "", "" }, + { "39a6a5a2e1f6297cceaa48bb03af02e9", "", "", "Pitfall 2 Plus (Pitfall 2 Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b64a00ce147c3c29f7f8f8e531d08d8", "", "", "This Planet Sucks (16K) (Greg Troutman)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "" }, + { "3b6dba1a24bb2893bd3bd0593f92016b", "CBS Electronics / Thomas Jentzsch", "", "Omega Race JS (TJ)", "Hack of Omega Race (CBS Electronics)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b80b8f52a0939e16b5059f93a3fc19a", "V007", "", "Virtual Pet (V007) (after Demo 2) (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b9480bb6fb1e358c9c0a64e86945aee", "", "", "Title Match Pro Wrestling (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3c7a96978f52b2b15426cdd50f2c4048", "", "", "Overhead Adventure Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3c853d864a1d5534ed0d4b325347f131", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3caa902ac0ce4509308990645876426a", "Atari", "CX2669", "Vanguard (1982) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "3cdd91e1c28d28e856c0063d602da166", "", "", "Stell-A-Sketch (03-11-1997) (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d9c2fccf8b11630762ff00811c19277", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "63", "195", "", "" }, + { "3dfb7c1803f937fadc652a3e95ff7dc6", "Dimax", "SM8001", "Space Robot (AKA Robot Fight) (Dimax)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3e1682ddaec486d8b6b90b527aaa0fc4", "Thomas Jentzsch", "", "Robot City (V0.12) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3e5ca1afaa27c5da3c54c9942fec528b", "", "", "2600 Digital Clock (Demo 2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3e899eba0ca8cd2972da1ae5479b4f0d", "Coleco", "2457", "Venture (1982) (Coleco) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "3eb1e34a4f0eec36f12e7336badcecf2", "", "", "Baubles (V0.001) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f251c50aa7237e61a38ab42315ebed4", "Atari / Thomas Jentzsch", "", "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "152", "42", "197", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f58f972276d1e4e0e09582521ed7a5b", "Xonox", "99003", "Chuck Norris Superkicks (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "40", "195", "", "" }, + { "3f6dbf448f25e2bd06dea44248eb122d", "", "MT5687", "Championship Soccer (AKA Pele's Soccer) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f96eb711928a6fac667c04ecd41f59f", "", "", "Rodeo Champ (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "190", "", "" }, + { "3fd53bfeee39064c945a769f17815a7f", "CCE", "", "Sea Hawk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "" }, + { "3ff5165378213dab531ffa4f1a41ae45", "Starsoft", "", "Pygmy (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4181087389a79c7f59611fb51c263137", "", "", "Miss Piggy's Wedding (Prototype 2) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "25", "208", "", "" }, + { "41818738ab1745e879024a17784d71f5", "", "", "Atlantis (1982) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4191b671bcd8237fc8e297b4947f2990", "Exus", "", "Video Jogger (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "42249ec8043a9a0203dde0b5bb46d8c4", "CCE", "", "Resgate Espacial (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "428b2d36f5d716765460701f7016ac91", "", "", "Brooni (NTSC) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "42cdd6a9e42a3639e190722b8ea3fc51", "Activision", "AG-007", "Tennis (1981) (Activision) [!]", "", "Common", "", "2K", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "" }, + { "42e8d67213227dee01e72c788712c002", "", "", "Greeting Cart Amy in thong (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "43e6c5159c3a093fca88656628c6ef34", "", "", "Star Fire (17-02-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "43f8459d39fb4eddf9186d62722ff795", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "", "" }, + { "442b7863683e5f084716fda050474feb", "Eckhard Stolberg", "", "Frame Timed Sound Effects-EM (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "45027dde2be5bdd0cab522b80632717d", "Epyx", "8056100250", "Summer Games (1987) (Epyx)", "", "Rare", "", "F6", "", "", "", "", "", "", "", "4", "152", "42", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4565c1a7abce773e53c75b35414adefd", "Starpath", "", "SuperCharger Loader (1982) (Starpath) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "45cb0f41774b78def53331e4c3bf3362", "US Games", "VC 1007", "Name This Game (AKA Octopus) (1982) (US Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "250", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4689081b7363721858756fe781cc7713", "", "", "Oystron (V2.6) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "46c021a3e9e2fd00919ca3dd1a6b76d8", "Atari", "CX2629", "Sky Diver (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "38", "222", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47aef18509051bab493589cb2619170b", "", "", "Stell-A-Sketch (Bob Colbert) (PD)", "Uses Driving, Joystick, or Amiga/Atari ST mouse Controllers", "New Release", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "48bcf2c5a8c80f18b24c55db96845472", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [o1]", "", "Rare", "", "F8", "", "", "", "", "", "", "", "", "", "49", "190", "", "No" }, + { "48eb1fcde4caf6a2dce059c98bd2e375", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4904a2550759b9b4570e886374f9d092", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "493de059b32f84ab29cde6213964aeee", "Atari", "CX26120", "Stargate (1984) (Atari) (PAL) [!]", "", "Rare", "", "F8SC", "", "", "", "", "", "", "PAL", "8", "152", "64", "195", "", "" }, + { "4947c9de2e28b2f5f3b0c40ce7e56d93", "", "", "3-D Corridor Demo 2 (29-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "497f3d2970c43e5224be99f75e97cbbb", "CommaVid", "", "Video Life (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4a7eee19c2dfb6aeb4d9d0a01d37e127", "Hozer Video Games", "", "Crazy Valet (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4ab4af3adcdae8cdacc3d06084fc8d6a", "Nick Bensema", "", "Sucky Zepplin (Nick Bensema) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4b27f5397c442d25f0c418ccdacf1926", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "None", "PAL", "", "", "60", "194", "", "" }, + { "4b8e76a294a04036168f5b13c64911d2", "", "", "Moon Patrol (1982) (Shock Vision-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4baada22435320d185c95b7dd2bcdb24", "Atari", "CX2682", "Krull (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "" }, + { "4c030667d07d1438f0e5c458a90978d8", "Retroactive", "", "Qb (V2.03) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4cabc895ea546022c2ecaa5129036634", "Zellers", "", "Ocean City Defender (Zellers)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d0a28443f7df5f883cf669894164cfa", "", "", "Beast Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d502d6fb5b992ee0591569144128f99", "", "", "Save Mary (1990) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "4d7517ae69f95cfbc053be01312b7dba", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d8396deeabb40b5e8578276eb5a8b6d", "Starsoft", "", "Volleyball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4df6124093ccb4f0b6c26a719f4b7706", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [t1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "4e02880beeb8dbd4da724a3f33f0971f", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4e37992a37ea36489283f7eb90913bbc", "", "", "Hangman Ghost Halloween (Kris) (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f0071946e80ca68edfdccbac86dcce0", "", "", "Virtual Pet Demo 1 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f634893d54e9cabe106e0ec0b7bdcdf", "Retroactive", "", "Qb (2.14) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "4f6702c3ba6e0ee2e2868d054b00c064", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "4f82d8d78099dd71e8e169646e799d05", "Atari", "", "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "" }, + { "4fae08027365d31c558e400b687adf21", "", "", "Qb (V2.17) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "50a410a5ded0fc9aa6576be45a04f215", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "191", "", "" }, + { "512e874a240731d7378586a05f28aec6", "Tigervision", "7-005", "Marauder (1982) (Tigervision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "200", "", "" }, + { "515046e3061b7b18aa3a551c3ae12673", "Atari", "CX2692", "Moon Patrol (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "" }, + { "517592e6e0c71731019c0cebc2ce044f", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros) [a1]", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "8", "144", "32", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "524693b337f7ecc9e8b9126e04a232af", "", "", "Euchre (19-08-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "528400fad9a77fd5ad7fc5fdc2b7d69d", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "35", "200", "", "" }, + { "52b448757081fd9fabf859f4e2f91f6b", "20th Century Fox", "", "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5336f86f6b982cc925532f2e80aa1e17", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "8", "144", "35", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "539b7038acec0ccedeae40f238998579", "", "", "Star Fire (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "53b66f11f67c3b53b2995e0e02017bd7", "CCE", "", "RealSports Tennis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5428cdfada281c569c74c7308c7f2c26", "Activision", "AG-010", "Kaboom! (1981) (Activision) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "2K", "", "", "", "", "Paddles", "None", "", "8", "144", "41", "192", "", "" }, + { "545048ccb045f9efc6cf2b125cd0dfa8", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "35", "200", "", "" }, + { "5494b9ee403d9757f0fd1f749e80214a", "", "", "Xenophobe Arcade (2003) (Larry Petit) (Xenophobe Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "54f7efa6428f14b9f610ad0ca757e26c", "Apollo", "AP 2005", "Shark Attack (1982) (Apollo)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "22", "219", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "562bf02f5031d51c6b53b03972a56b22", "", "", "Star Fire - Framework Done (30-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5635cd67fb680424254ec156c42deee0", "Starsoft", "", "Motocross (Starsoft) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "" }, + { "56606b4d9109e2db36dea47cf7c8cca6", "Atari", "CX2694", "Pole Position (1983) (Atari) [b1]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "" }, + { "568371fbae6f5e5b936af80031cd8888", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "57fa2d09c9e361de7bd2aa3a9575a760", "Atari", "CX26120", "Stargate (1984) (Atari) [o1]", "", "Rare", "", "F8SC", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "5846b1d34c296bf7afc2fa05bbc16e98", "", "CX2643 / 99815", "Code Breaker (1978) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "33", "", "", "" }, + { "585600522b1f22f617652c962e358a5d", "", "", "Multi-Sprite Game V2.2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5894c9c0c1e7e29f3ab86c6d3f673361", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "58a82e1da64a692fd727c25faef2ecc9", "CCE", "7-002", "Jawbreaker (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "58d331c23297ed98663d11b869636f16", "", "", "Fu Kung! (V0.09) (26-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5961d259115e99c30b64fe7058256bcf", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5a9d188245aff829efde816fcade0b16", "CCE", "", "Phantom Tank (CCE)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b92a93b23523ff16e2789b820e2a4c5", "Activision", "AX-039", "Kung Fu Master (1984) (Activision)", "", "Rare", "", "F8", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "" }, + { "5b9c2e0012fbfd29efd3306359bbfc4a", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "" }, + { "5bbab3f3e4b47e3e23f9820765dbb45c", "", "", "Pitfall! (says 1985) [h1]", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "5bcc83677d68f7ef74c1b4a0697ba2a8", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5be03a1fe7b2c114725150be04b38704", "Atari", "", "Hunt & Score (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5c73693a89b06e5a09f1721a13176f95", "", "", "Wavy Line Test 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "21", "211", "", "" }, + { "5d1260152596d91adc8cf5741adb719a", "", "", "Death Derby (200204) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5d8f1ab95362acdf3426d572a6301bf2", "", "", "Swoops! (v0.96) (Thomas Jentzsch) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "PAL", "", "", "40", "240", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5e1b4629426f4992cf3b2905a696e1a7", "Activision", "AK-049", "Rampage! (1989) (Activision) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "", "12", "136", "37", "200", "", "" }, + { "5e2928f089490017e88e9f9e5a881a25", "", "", "Star Fire - Faster Skipping 1 (24-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f1b7d5fa73aa071ba0a3c2819511505", "CCE", "", "Cosmic Commuter (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f786b67e05fb9985b77d4beb35e06ee", "Atari", "", "Defender II (1984) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "5faffe1c4c57430978dec5ced32b9f4a", "Dactar", "", "Volleyball (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "" }, + { "600d48eef5c0ec27db554b7328b3251c", "", "", "Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60345ae60f7c7010346de7aff9bfe6ea", "Activision", "", "Atlantis (1982) (Activision) [a1]", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "605fd59bfef88901c8c4794193a4cbad", "Data Age", "", "Secret Agent (Data Age) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60bbd425cb7214ddb9f9a31948e91ecb", "Activision", "AG-005", "Skiing (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "61426cee013306e7f7367534ab124747", "", "", "One Blue Bar Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "61621a556ad3228f0234f5feb3ab135c", "", "", "Fu Kung! (V0.05 Cuttle Card Compattle Revision) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "61719a8bdafbd8dab3ca9ce7b171b9e2", "Activision", "AX-026", "Enduro (1983) (Activision-Dactar) (PAL-M) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "12", "140", "64", "205", "", "" }, + { "619de46281eb2e0adbb98255732483b4", "", "", "UFO Patrol (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "624e0a77f9ec67d628211aaf24d8aea6", "Panda", "108", "Sea Hawk (1987) (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "" }, + { "62921652f6634eb1a0940ed5489c7e18", "", "", "SCSIcide (V1.09) (2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "62f74a2736841191135514422b20382d", "TechnoVision", "", "Pharoah's Curse (TechnoVision) (PAL) [p2]", "", "Extremely Rare", "", "4K", "", "", "", "", "", "", "PAL", "", "", "22", "225", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6339d28c9a7f92054e70029eb0375837", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "8", "144", "39", "187", "Yes", "" }, + { "6354f9c7588a27109c66905b0405825b", "", "", "Amidar DS (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6362396c8344eec3e86731a700b13abf", "Panda", "109", "Exocet (AKA Space Eagle) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "639ded0c9e53bc3f91defb5dde930286", "Starpath", "", "SuperCharger - Escape from the Mindmaster (4 of 4) (1982) (Starpath) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) [!]", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63e783994df824caf289b69a084cbf3e", "David Marli", "", "Fat Albert by David Marli (Fast Food Hack)", "Hack of Fast Food (Telesys)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "640a08e9ca019172d612df22a9190afb", "Atari", "CX2691", "Joust (1982) (Atari) (PAL) [!]", "", "Common", "", "F8", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6538e454b0498ad2befe1ef0f87815c0", "Joe Grand", "", "SCSIcide (v1.2) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "65562f686b267b21b81c4dddc129d724", "", "", "Euchre (28-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "65c6406f5af934590097c8c032ebb482", "", "", "Three Hugger (Pave Demo) (20-12-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "663ef22eb399504d5204c543b8a86bcd", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics) (PAL) [!]", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "668dc528b7ea9345140f4fcfbecf7066", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "33", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6803fa7c2c094b428b859a58dc1dd06a", "Retroactive", "", "Qb (0.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "683bb0d0f0c5df58557fba9dffc32c40", "Starpath", "AR-4300", "Fireball (1982) (Starpath) [a1]", "Uses the Paddle Controllers", "Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "8", "136", "32", "200", "", "" }, + { "68449e4aaba677abcd7cde4264e02168", "", "", "Horizonal Color Bars Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "687c23224e26f81c56e431c24faea36d", "", "", "Qb (Simple Background Animation) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "68c80e7e1d30df98a0cf67ecbf39cc67", "Hozer Video Games", "", "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "" }, + { "68feb6d6ff63e80df1302d8547979aec", "", "", "Starfield Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "692202772d8b38ccf85a90c8003a1324", "", "", "Zi - The Flie Buster (2002) (Fernando Mora) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6982854657a2cc87d712f718e402bf85", "Zellers", "", "Earth Attack (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "69fac82cd2312dd9ce5d90e22e2f070a", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "" }, + { "6a091b8ffeacd0939850da2094b51564", "", "", "Vertically Scrolling Playfield (02-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a76d5f0ed721639474aa9bbde69ebf0", "", "", "Play Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6aa66e9c3eea76a0c40ef05513497c40", "", "", "Hangman Ghost Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ae4dc6d7351dacd1012749ca82f9a56", "Atari", "CX26125 (label says CX26127 on some)", "Track and Field (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "6b1fc959e28bd71aed7b89014574bdc2", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "" }, + { "6b6ca32228ae352b4267e4bd2cddf10c", "", "", "Pac-Man 4 (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b853585764b8cfdc73310e372c828d9", "", "", "Image - Baboon (Interlaced Demo 2) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6bb09bc915a7411fe160d0b2e4d66047", "Atari", "", "Space Jockey (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "227", "", "" }, + { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "", "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "240", "", "" }, + { "6c449db9bbbd90972ad1932d6af87330", "", "", "20 Sprites at Once Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "50", "235", "", "" }, + { "6c9a32ad83bcfde3774536e52be1cce7", "", "", "Space Treat (NTSC) (13-08-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ccd8ca17a0e4429b446cdcb66327bf1", "", "", "RPG Engine (12-05-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6cd506509e8fd5627f55603780e862a8", "Greg Troutman", "", "Dark Mage (SuperCharger) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "38", "", "Yes", "" }, + { "6cf054cd23a02e09298d2c6f787eb21d", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros) (PAL) [!]", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "PAL", "8", "144", "59", "202", "Yes", "" }, + { "6d475019ea30d0b29f695e9dcfd8f730", "Eric Mooney", "", "Invaders by Erik Mooney (Alpha 2) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6d842c96d5a01967be9680080dd5be54", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b3]", "", "Rare", "", "DPC", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "6d9afd70e9369c2a6bff96c4964413b7", "Funvision", "", "Time Race 2 (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ed5012793f5ddf4353a48c11ea9b8d3", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "AR", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "6f084daf265599f65422ef4173b69bc7", "", "", "Music Kit (V2.0) - Song Player (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6f6c7f37926c574c6b76e5a665fd26e7", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6f75d72e4cf996100ccdd163d57bdac2", "", "", "Star Fire (200203) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fac680fc9a72e0e54255567c72afe34", "Atari", "", "Superman (1978) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6fd7c7057eeab273b29c7aafc7429a96", "Activision", "AX-018", "Pitfall! (1982) (Activision) [o1]", "", "Common", "", "4K", "", "", "", "", "", "", "", "8", "148", "40", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "705fe719179e65b0af328644f3a04900", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari) [h1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "" }, + { "707ecd80030e85751ef311ced66220bc", "", "", "Double-Height 6-Digit Score Display (Background Color Change) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "709910c2e83361bc4bf8cd0c20c34fbf", "Starsoft", "", "Im Reich der Spinne (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "70ce036e59be92821c4c7fd735ec6f68", "", "AX-031", "Frostbite (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "232", "", "" }, + { "712924a2c7b692f6e7b009285c2169a7", "Starpath", "AR-4102", "Suicide Mission (no title screen) (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "" }, + { "71464c54da46adae9447926fdbfc1abe", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "144", "39", "194", "", "" }, + { "714e13c08508ee9a7785ceac908ae831", "HomeVision", "", "Parachute (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "220", "", "" }, + { "7187118674ff3c0bb932e049d9dbb379", "Zirok", "", "Keystone Keypers (Zirok) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "71f8bacfbdca019113f3f0801849057e", "Atari", "", "Elevator Action (Atari) (Prototype)", "", "Prototype", "", "F8SC", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "721a5567f76856f6b50a6707aa8f8316", "", "", "Ghostbusters (1985) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "197", "", "" }, + { "724613effaf7743cbcd695fab469c2a8", "Quelle", "", "Super Ferrari (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "204", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72a46e0c21f825518b7261c267ab886e", "Xonox", "99005", "Robin Hood (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "" }, + { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "8", "144", "32", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73521c6b9fed6a243d9b7b161a0fb793", "Atari", "", "Miniature Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73b4e8f8b04515d91937510e680214bc", "", "", "Rubik's Cube Demo 3 (24-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73c839aff6a055643044d2ce16b3aaf7", "", "", "Starmaster (1982) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7454786af7126ccc7a0c31fcf5af40f1", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "245", "", "" }, + { "7481f0771bff13885b2ff2570cf90d7b", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "152", "56", "206", "", "" }, + { "74ca9bdc91ee387a5bd929b73aec5c2c", "", "", "Star Fire - New Shields (03-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "74f623833429d35341b7a84bc09793c0", "Froggo / Zellers", "FG 1007", "Cruise Missile (AKA Radar) (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "753375d183c713cfa0aa7298d1f3067b", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) [a1]", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "" }, + { "75511bb694662301c9e71df645f4b5a7", "Activision", "", "Stampede (1981) (Activision) (PAL) [!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "64", "198", "", "" }, + { "756ca07a65a4fbbedeb5f0ddfc04d0be", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "" }, + { "7576dd46c2f8d8ab159d97e3a3f2052f", "", "", "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "221", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75e8d8b9e9c5c67c2226dbfd77dcfa7d", "", "", "2600 Digital Clock (V b1) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75ee371ccfc4f43e7d9b8f24e1266b55", "Atari", "CX26107", "Snow White (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76c685d1a60c0107aa54a772113a2972", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "", "", "38", "200", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76f53abbbf39a0063f24036d6ee0968a", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel)", "", "Rare", "", "E7", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "" }, + { "77057d9d14b99e465ea9e29783af0ae3", "Activision", "AG-001", "Dragster (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "784176346e9422733d55c427230e5bad", "Activision", "AG-041", "Title Match Pro Wrestling (1989) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "" }, + { "787ebc2609a31eb5c57c4a18837d1aee", "Prescott", "", "Vault Assault (19xx) (Prescott)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "78963290052fd17c6c7998305ab3a6a0", "", "", "Push (V0.08) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "79004f84bdeee78d142e445057883169", "CCE", "", "Planet Patrol (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "" }, + { "7926083ad423ed685de3b3a04a914315", "Barry Laws Jr.", "", "Face Invaders 2 by Barry Laws Jr. (Space Invaders Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "" }, + { "7972e5101fa548b952d852db24ad6060", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7991e1797e5e9f311fd957e62d889dff", "Joe Grand", "", "SCSIcide (v1.1) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a09299f473105ae1ef3ad6f9f2cd807", "Atari", "CX2616", "Championship Soccer (AKA Pele's Soccer) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "200", "", "" }, + { "7a5463545dfb2dcfdafa6074b2f2c15e", "20th Century Fox", "11007", "Turmoil (1982) (20th Century Fox) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "52", "186", "", "" }, + { "7a64b5a6e90619c6aacf244cdd7502f8", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 1) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ab2f190d4e59e8742e76a6e870b567e", "Apollo", "AP 2008", "Guardian (1982) (Apollo)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "7ad257833190bc60277c1ca475057051", "Atari", "CX2668", "RealSports Football (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "" }, + { "7adbcf78399b19596671edbffc3d34aa", "Atari", "CX26152", "Super Baseball (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b3cf0256e1fa0fdc538caf3d5d86337", "CommaVid", "CM-009", "Stronghold (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "7b5207e68ee85b16998bea861987c690", "Atari", "", "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "", "", "" }, + { "7b79beb378d1b4471def90ceccf413de", "", "", "Pitfall Cupcake (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7bc4fd254ec8c0a25a13f02fd3f762ff", "Retroactive", "", "Qb (V1.00) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "7c4a499d343fca0cef2d59dd16af621a", "", "", "Poker Card Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7cd379da92c93679f3b6d2548617746a", "", "", "Demo Image Series #5 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d3cdde63b16fa637c4484e716839c94", "CCE", "", "Road Runner (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "28", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7dbc8fa2e488e3f6b87fbe0f76c5b89f", "Ed Federmeyer", "", "Sound X (1996) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "36", "185", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e51a58de2c0db7d33715f518893b0db", "CBS Electronics", "4L-2738", "Mountain King (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "FASC", "", "", "", "", "", "", "", "8", "144", "47", "186", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e8aa18bc9502eb57daaf5e7c1e94da7", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics)", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "7ead257e8b5a44cac538f5f54c7a0023", "Xonox", "99006", "Sir Lancelot (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7eba20c2291a982214cc7cbe8d0b47cd", "Imagic", "O3211", "Quick Step! (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "42", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ef74879d7cb9fa0ef161b91ad55b3bb", "CCE", "", "Vanguard (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f73ac39e5e3e13e40fd8ad885561a0f", "", "", "Star Fire - Warping Star (13-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f9fbe3e00a21ea06e6ae5e0e5db2143", "", "", "Skate Boardin' (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7ff53f6922708119e7bf478d7d618c86", "Starsoft", "", "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "", "219", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "80e1410ec98089e0733cc09e584dba4b", "Dynamics", "", "Jumping Jack (Dynamics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "256", "", "" }, + { "8101efafcf0af32fedda4579c941e6f4", "", "", "Okie Dokie (4K) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "16", "128", "64", "220", "", "" }, + { "8108ad2679bd055afec0a35a1dca46a4", "Cooper Black", "", "Puzzled World (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "175", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "81f4f0285f651399a12ff2e2f35bab77", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "82337e5fe0f418ca9484ca851dfc226a", "", "", "Robot City (V1.0) (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "8290daea8391f96d7c8e1482e184d19c", "Eckhard Stolberg", "", "Frame Timed Sound Effects (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "" }, + { "82efe7984783e23a7c55266a5125c68e", "CCE", "", "Pizza Chef (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "834a2273e97aec3181ee127917b4b269", "Starsoft", "", "Die Hungrigen Froesche (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "202", "", "" }, + { "836b955663d013300eaaa39f2403068f", "", "", "Greeting Cart Moon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "83f50fa0fbae545e4b88bb53b788c341", "", "CX2643 / 99815", "Code Breaker (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "33", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "84290e333ff7567c2380f179430083b8", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "8454ed9787c9d8211748ccddb673e920", "Froggo", "", "Spiderdroid (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "4", "152", "40", "182", "", "" }, + { "84ea80e31b306059f56fdce2f07b758f", "", "", "Death Derby (19-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "851cc1f3c64eaedd10361ea26345acea", "Activision", "AG-009", "Freeway (1981) (Activision) [o1]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "" }, + { "8530caaaf40acbdcd118c282b5f8a37a", "", "", "This Planet Sucks Demo 2 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "853c11c4d07050c22ef3e0721533e0c5", "Activision", "", "Oink! (1983) (Activision) (PAL) [p1][!]", "", "", "", "4K", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "8556b42aa05f94bc29ff39c39b11bff4", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "858abdc9deba2f248e073d01c356e1ab", "Playaround", "", "Lady in Wading (1982) (Playaround) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8644352b806985efde499ae6fc7b0fec", "", "", "Mr. Postman (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "869abe0426e6e9fcb6d75a3c2d6e05d1", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "" }, + { "86f5e55ca9a9bde7338a157570828e79", "", "", "Star Fire - Creating a Universe (09-09-2002) (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "87662815bc4f3c3c86071dc994e3f30e", "Intellivision Productions", "", "Sword Fight (2000) (Intellevision Productions)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "877a5397f3f205bf6750398c98f33de1", "Erik Eid", "", "Euchre (Beta) (PAL) (12-09-2002) (Erik Eid)", "", "New Release", "", "4K", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "8786f229b974c393222874f73a9f3206", "", "", "Spider Fighter (1983) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "" }, + { "87bea777a34278d29b3b6029833c5422", "Tigervision / Thomas Jentzsch", "", "Polaris (1983) (Tigervision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "3F", "", "", "", "", "", "", "", "8", "144", "40", "", "", "" }, + { "87f020daa98d0132e98e43db7d8fea7e", "20th Century Fox", "11001", "Worm War I (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "88a6c9c88cb329ee5fa7d168bd6c7c63", "CCE", "CX2688", "Jungle Hunt (1982) (CCE)", "", "Uncommon", "", "F8", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "" }, + { "88d8a1accab58cf1abb043613cf185e9", "Ultravison", "", "Sabotage (Ultravison)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "88ed87c011f699dd27321dbe404db6c8", "Activision", "AX-029", "Crackpots (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "" }, + { "890c13590e0d8d5d6149737d930e4d95", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "224", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "898748d5eaac3164b0391a64ae1e0e32", "", "", "Hangman Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "" }, + { "89afff4a10807093c105740c73e9b544", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "230", "", "" }, + { "8a42e2c7266439d8997a55d0124c912c", "", "", "Hangman Invader Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8a6c84f481acf42abcb78ba5064ad755", "128-in-1 Junior Console", "", "Street Racer - Speedway II (1978) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "35", "256", "", "" }, + { "8a9d874a38608964f33ec0c35cab618d", "Chris Cracknell", "", "Rescue Bira Bira (Chris Cracknell) [!]", "Hack of Jungle Fever (Mystique)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "26", "", "", "" }, + { "8aad33da907bed78b76b87fceaa838c1", "Atari", "", "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8b40a9ca1cfcd14822e2547eaa9df5c1", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "" }, + { "8b556c3d9ca8e5e6e665bd759b93ffae", "", "", "Synthcart (2002) (Paul Slocum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "250", "Yes", "" }, + { "8b7ca29a55432f886cee3d452fb00481", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "60", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8bc0d2052b4f259e7a50a7c771b45241", "Xonox", "", "Tomarc the Barbarian (1983) (Xonox)", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8c36ed2352801031516695d1eeefe617", "Epyx", "", "Winter Games (1987) (Epyx) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8ce9126066f2ddd5173e9f1f9ce1494e", "", "", "Missile Command (CX-22 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8df4be9ddc54ac363b13dc57ceaf161a", "Atari / Scott Stilphen", "", "Asteroids SS (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "F8", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "No" }, + { "8e42674972d6805068fc653e014370fd", "", "", "Skeleton (PAL) (15-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "" }, + { "8e4fa8c6ad8d8dce0db8c991c166cdaa", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "8e822b39a71c84ac875f0107fb61d6f0", "", "", "Hangman Ghost Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravideo", "", "Tape Worm (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "215", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8f60551db6d1535ef0030f155018c738", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [p1][o1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "202", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8f98519a91dbbf4864f135a10050d9ed", "Silvio Mogno", "", "Rainbow Invaders (non-playable demo) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9041cfd144df075552efebbb81df625d", "", "", "Greeting Cart Ann R (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "90578a63441de4520be5324e8f015352", "Bitcorp", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "914a8feaf6d0a1bbed9eb61d33817679", "Atari", "", "Freeway (32-in-1) (Atari) (PAL) [!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "63", "193", "", "" }, + { "91a3749ff7b7e72b7fa09e05396a0e7b", "", "", "Gunfight 2600 - Final Run Part 2 (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "91d1c82ceaf8af2add3973a3c34bc0cb", "", "", "Starfield Demo 1 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9222b25a0875022b412e8da37e7f6887", "Panda", "106", "Dice Puzzle (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "Yes", "" }, + { "9281eccd7f6ef4b3ebdcfd2204c9763a", "Retroactive", "", "Qb (2.15) (Retroactive) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "" }, + { "929e8a84ed50601d9af8c49b0425c7ea", "", "PG205", "Dancing Plates (1983) (BitCorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "230", "Yes", "" }, + { "92c5abb7a8bb1c3fc66c92ba353a3d21", "", "", "Star Fire - Sorting Fixed (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9333172e3c4992ecf548d3ac1f2553eb", "Gakken", "010", "Strategy X (1982) (Gakken) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "256", "Yes", "" }, + { "936f555b4b1a2cd061b659ff63f4f5f2", "", "", "My Golf (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93acd5020ae8eb5673601e2edecbc158", "Chris Cracknell", "", "Video Time Machine (Chris Cracknell)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93dc15d15e77a7b23162467f95a5f22d", "CCE", "", "Sky Jinks (CCE)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "947317a89af38a49c4864d6bdd6a91fb", "CBS Electronics", "4L-2487", "Solar Fox (1983) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "955c408265ad6994f61f9b66657bbae9", "", "", "Quadrun (Video Conversion) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "956b99511c0f47b3a11d18e8b7ac8d47", "", "", "Bones (Arcade Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "218", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "95e542a7467c94b1e4ab24a3ebe907f1", "Starsoft", "", "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "242", "", "" }, + { "961112b74a920a5242e233480326c356", "Activision", "AG-007", "Tennis (1981) (Activision) [o2]", "", "Common", "", "2K", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "" }, + { "972486110933623039a3581db308fda6", "", "", "Xeno Plus (Xenophone Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "977294ae6526c31c7f9a166ee00964ad", "Atari", "CX2677", "Dig Dug (V1) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "144", "46", "215", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "97d079315c09796ff6d95a06e4b70171", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98e6e34af45a0664597972c3bb31180f", "", "", "Space Instigators (V1.7) (17-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98ea10c47c13f1b3306c7b13db304865", "", "", "Jam Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98fa3ad778a668a79449350de4b3b95b", "", "", "Thrust (V1.1) (2000) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9912d06eea42200a198dd3e2be18c601", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [a1]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "", "", "44", "190", "", "" }, + { "9945a22f60bbaf6d04a8d73b3cf3db75", "", "", "Kung Fu Master (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "" }, + { "9962034ea7b3d4a905d0991804670087", "", "", "Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "99a24d7bb31d49b720b422550b32c35f", "", "", "Hangman Ghost Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9a21fba9ee9794e0fadd7c7eb6be4e12", "", "", "Ikari Warriors (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "197", "", "" }, + { "9a4274409216ff09ecde799f2a56ac73", "CCE", "C-801", "Mr. Postman (CCE) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ad36e699ef6f45d9eb6c4cf90475c9f", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "49", "185", "", "" }, + { "9b21d8fc78cc4308990d99a4d906ec52", "", "C-838", "Immies & Aggies (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "15", "", "", "" }, + { "9bb136b62521c67ac893213e01dd338f", "", "", "Spike's Peak (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "235", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c6d65bd3b477aace0376f705b354d68", "", "", "RPG Kernal (18-04-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c6fd6ed3599978ab7b6f900484b9be6", "Andrew Wallace", "", "Laseresal 2002 (PAL-60) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ca2deb61318eba4fb784d4bf7441d8b", "", "", "Purple Bar Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d2938eb2b17bb73e9a79bbc06053506", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d522a3759aa855668e75962c84546f7", "Atari", "CX2634", "Golf (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "8", "152", "44", "227", "", "" }, + { "9dec0be14d899e1aac4337acef5ab94a", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9e2c7299c69b602443d327c7dad51cbf", "Activision / Charles Morgan", "", "Xaxyrax Road by Charles Morgan (Freeway Hack)", "Hack of Freeway (Activision)", "New Release (Hack)", "", "2K", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0028f057d496f22b549fd8deecc6f78", "Joe Grand", "", "SCSIcide Pre-release 6 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0185c06297b2818f786d11a3f9e42c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0563dd6d8215c38c488fbbd61435626", "", "", "Ship Demo (V 1501) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a11099b6ec24e4b00b8795744fb12005", "Activision", "AK-049", "Rampage! (1989) (Activision) (PAL) [!]", "", "Rare", "", "F6", "", "", "", "", "", "", "PAL", "12", "136", "53", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a174cece06b3abc0aec3516913cdf9cc", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "36", "198", "", "" }, + { "a189f280521f4e5224d345efb4e75506", "Atari / Thomas Jentzsch", "", "Obelix (1983) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "44", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a1ead9c181d67859aa93c44e40f1709c", "American Videogame", "", "Tax Avoiders (1982) (American Videogame)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a204cd4fb1944c86e800120706512a64", "Coleco", "2511", "Smurfs Save the Day (1983) (Coleco)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "35", "199", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a29df35557f31dfea2e2ae4609c6ebb7", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Joystick)", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "40", "190", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2eb84cfeed55acd7fece7fefdc83fbb", "", "", "Kool Aid Man (Fixed) (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "199", "", "" }, + { "a302b922a8dbec47743f28b7f91d4cd8", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a499d720e7ee35c62424de882a3351b6", "Sega", "009-01", "Up 'n Down (1983) (Sega)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "35", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4b99aa5ed85cfdb7d101923147de035", "Jim Goebel", "", "Pac-Law by Jim Goebel (Pac-Man Hack)", "Hack of Outlaw (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "33", "225", "", "" }, + { "a4d026a5c200ef98518ebb77719fe8dc", "", "", "SpongeBob SquarePants (2003) (Kyle Pittman) (Revenge of the Beefsteak Tomatoes Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4f1cea2c8479284e2a2292f8d51b5fa", "", "", "Gunfight 2600 - The Final Kernel Part 2 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision", "AG-007", "Tennis (1981) (Activision) (PAL) [!]", "", "Common", "", "2K", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a6737c81542a99ee71cb5f5ff14703d9", "", "", "Scrolling Playfield 3 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a69f5b1761a8a11c98e706ec7204937f", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "230", "Yes", "" }, + { "a7523db9a33e9417637be0e71fa4377c", "Ariola", "", "Gangster (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "a779b9fa02c62d00d7c31ed51268f18a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a7ed7dc5cbc901388afa59030fb11d26", "Atari", "CX2606", "Slot Racers (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "", "", "" }, + { "a8101cb667e50a46165c6fb48c608b6b", "", "", "Kung Fu Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a81b29177f258494b499fbac69789cef", "Greg Thompson", "", "Console Wars (PD)", "Hack of Space Jockey (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a8435ec570141de5d833c4abec499e55", "", "", "Happy Birthday Demo (2001) (Dennis Debro) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a875f0a919129b4f1b5103ddd200d2fe", "Atari", "", "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "250", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a8a703e073183a89c94d4d99b9661b7f", "Philip R. Frey", "", "Spice Invaders by Franklin Cruz (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "a8d4a9500b18b0a067a1f272f869e094", "", "", "Red And White Checkerboard Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a9531c763077464307086ec9a1fd057d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari)", "", "Common", "", "4K", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "a97733b0852ee3096300102cb0689175", "CCE", "", "Fast Eddie (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "38", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a9cb638cd2cb2e8e0643d7a67db4281c", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "203", "", "" }, + { "aa2c4b32656bde9a75042a4d158583e1", "", "", "Oystron X (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aacbf0dd6021bc5f4cee6c96ff37e84f", "", "", "Death Derby (v0001) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aafc79ffc32c4c9b2d73c8ada7602cfe", "", "", "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "" }, + { "ab2ea35dcc1098c87455bb8210b018cf", "", "", "Fu Kung! (V0.04 Single Line Resolution) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ab60ea7b707c58d356cad858eb18db43", "", "", "Tazer (John K. Harvey)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "abb741c83f665d73c86d90a7d9292a9b", "Telegames", "", "Space Attack (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ac05c0e53a5e7009ddd75ed4b99949fc", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears)", "", "Common", "", "2K", "", "", "", "", "", "", "", "", "", "35", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aca09ffea77174b148b96b205109db4d", "Activision", "AG-007", "Tennis (1981) (Activision) [o1]", "", "Common", "", "2K", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ae047e9468bda961d8e9e9d8ff52980f", "", "", "Tunnel Demo (Red Spiral) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ae2f1f69bb38355395c1c75c81acc644", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 122383)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aec9b885d0e8b24e871925630884095c", "Amiga", "3125", "Surf's Up (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "17", "242", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b00088418fc891f3faa3d4ddde6ace94", "", "", "Unknown Title (bin00007 (200102)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b049fc8ac50be7c2f28418817979c637", "Activision", "AK-048-04", "River Raid II (1988) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b095009004df341386d22b2a3fae3c81", "Sega", "002-01", "Sub Scan (1982) (Sega) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b1b20536aef4eed9c79dc5804f077862", "", "", "Euchre (NTSC) (09-11-2001) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b1d1e083dc9e7d9a5dc1627869d2ade7", "CCE", "", "Mario Bros (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "b1fd0b71de9f6eeb5143a97963674cb6", "", "", "Multi-Color Demo 7 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b28b3d07ffd5f56938a922b7448730b9", "", "", "Greeting Cart Autobots(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b2a6f31636b699aeda900f07152bab6e", "", "", "Space Instigators (Public Release 2) (06-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b31dc989f594764eacfa7931cead0050", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "", "", "38", "200", "", "No" }, + { "b392964e8b1c9c2bed12246f228011b2", "US Games", "", "Name This Game (AKA Octopus) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b4daedb43511521db9036d503b3c1b69", "", "", "Sokoban (01-01-2003) (Adam Wozniak) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b4f05e544834d0238a0c263491775edf", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "8", "144", "64", "192", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b6166f15720fdf192932f1f76df5b65d", "Amiga", "3130", "Off Your Rocker (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "144", "31", "203", "", "" }, + { "b676a9b7094e0345a76ef027091d916b", "Video Gems / Thomas Jentzsch", "", "Mission Survive (1983) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "8", "148", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b6e40bce550672e5495a8cdde7075b8b", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "PAL", "", "", "40", "", "", "No" }, + { "b719ada17771a8d206c7976553825139", "Ron Corcoran", "", "DUP Space Invaders (Ron Corcoran)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "", "", "", "", "42", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b76fbadc8ffb1f83e2ca08b6fb4d6c9f", "Activision", "AG-005", "Skiing (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "" }, + { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "259", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b80d50ecee73919a507498d0a4d922ae", "20th Century Fox", "11008", "Fantastic Voyage (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "144", "30", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9232c1de494875efe1858fc8390616d", "Panda", "110", "Harbor Escape (1983) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "35", "201", "", "" }, + { "b958d5fd9574c5cf9ece4b9421c28ecd", "Piero Cavina", "", "Multi-Sprite Game V1.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ba257438f8a78862a9e014d831143690", "US Games", "VC 2002", "Squeeze Box (1982) (US Games) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ba3a17efd26db8b4f09c0cf7afdf84d1", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ba638f02faac0878c3b0f9669923485f", "", "", "Image - Baboon (10-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bae66907c3200bc63592efe5a9a69dbb", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "205", "", "" }, + { "bb07f917611cde42b7d83746ee27147d", "", "", "Star Fire - Warping!! (13-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bc97d544f1d4834cc72bcc92a37b8c1b", "", "", "Sky Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bce4c291d0007f16997faa5c4db0a6b8", "Starsoft", "", "Weltraum Tunnel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bda1463e02ae3a6e1107ffe1b572efd2", "", "", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bdc381baf7c252c63739c5e9ed087a5c", "", "", "Vertical Ship Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be35d8b37bbc03848a5f020662a99909", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears) [a1]", "", "Common", "", "2K", "", "", "", "", "", "", "", "", "", "39", "206", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "befce0de2012b24fd6cb8b53c17c8271", "", "", "Push (V0.03) (No Illegal Opcodes) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bf6b753ec11acfec3b40f8a4c476e77d", "", "", "Image - Girl (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bf976cf80bcf52c5f164c1d45f2b316b", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bfcabc6995ef42d0b6c06786993dc4d6", "", "", "Star Fire - Creating a Universe (09-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bffe34516aaa3cbf5d307eab382a7e95", "", "", "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "c00b65d1bae0aef6a1b5652c9c2156a1", "Atari", "CX2621", "Video Olympics (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "2K", "", "", "", "", "Paddles", "Paddles", "", "", "", "30", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c05f367fa4767ceb27abadf0066df7f4", "", "", "TomInv (31-07-2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c0d2434348de72fa6edcc6d8e40f28d7", "Sega", "010-01", "Tapper (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "" }, + { "c150c76cbde2c9b5a97eb5399d46c64f", "", "", "Unknown Title (xxx00000 (200203)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c16fbfdbfdf5590cc8179e4b0f5f5aeb", "Bomb", "CA285", "Wall Defender (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "219", "", "" }, + { "c1a83f44137ea914b495fc6ac036c493", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari) (PAL) [!]", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "PAL", "", "", "64", "220", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1f209d80f0624dada5866ce05dd3399", "Telegames", "MT5662", "TRON - Deadly Discs (1983) (Telegames) (PAL) [!]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "55", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c225abfb584960efe1f359fc94b73379", "", "", "Joustpong (21-09-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c246e05b52f68ab2e9aee40f278cd158", "Parker Bros / Thomas Jentzsch", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (NTSC by Thomas Jentzsch)", "", "Prototype (Video Format Conversion)", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "Uncommon", "", "E0", "", "", "", "", "", "", "", "", "", "37", "206", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c3bbc673acf2701b5275e85d9372facf", "Atari", "", "Stunt Cycle (Atari) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4060a31d61ba857e756430a0a15ed2e", "", "", "Pick 'n Pile (PAL Conversion) (2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c469151655e333793472777052013f4f", "Bomb", "13", "Z-Tack (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c473b222b7c5308d0773326416094272", "", "", "Star Fire (28-11-2002) (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c49fe437800ad7fd9302f3a90a38fb7d", "Atari", "CX2697", "Mario Bros (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "206", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4d888bcf532e7c9c5fdeafbb145266a", "", "", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c5a76bafc4676edb76e0126fb9f0fb2d", "Charles Morgan", "", "Zero Patrol by Charles Morgan (Moon Patrol Hack)", "Hack of Moon Patrol (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c6688781f4ab844852f4e3352772289b", "Atari", "CX2695", "Xevious (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "8", "152", "26", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c6cedb25b7d390b580ea8edb614b168b", "", "", "Star Fire - Radar Completed (22-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c77c35a6fc3c0f12bf9e8bae48cba54b", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "186", "", "" }, + { "c7900a7fe95a47eef3b325072ad2c232", "", "", "Super Congo Bongo (2003) (Larry Petit) (Congo Bongo Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c7eab66576696e11e3c11ffff92e13cc", "Atari", "CX2680", "RealSports Tennis (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c880c659cdc0f84c4a66bc818f89618e", "Bitcorp / Thomas Jentzsch", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "27", "245", "Yes", "" }, + { "c8df076c7e4349ca8dcbdb773bf3c985", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [a1]", "", "Rare", "", "F8", "", "", "", "", "", "", "", "", "", "49", "190", "", "No" }, + { "c9196e28367e46f8a55e04c27743148f", "Atari", "", "Stampede (32-in-1) (Atari) (PAL) [!]", "", "", "", "2K", "", "", "", "", "", "", "PAL", "8", "144", "63", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c9c25fc536de9a7cdc5b9a916c459110", "Activision", "AX-023", "Oink! (1983) (Activision) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ca7abc774a2fa95014688bc0849eee47", "Atari", "CX26110", "Crystal Castles (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "PAL", "8", "144", "50", "174", "", "" }, + { "cae8f83c06831ec7bb6a3c07e98e9342", "Colin Hughes", "", "Tetris 2600 (Colin Hughes) [o1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "cb24210dc86d92df97b38cf2a51782da", "Ariola", "VG-01", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "" }, + { "cb8399dc0d409ff1f531ef86b3b34953", "", "", "Demo Image Series #12 - Luigi And Mario (01-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb9b2e9806a7fbab3d819cfe15f0f05a", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "E0", "", "", "", "", "", "", "PAL", "8", "144", "55", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cbb0ee17c1308148823cc6da85bff25c", "", "", "Rotating Colors Demo 1 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cbe5a166550a8129a5e6d374901dffad", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari)", "Uses the Paddle Controllers", "Uncommon", "", "4K", "", "", "", "", "Paddles", "Paddles", "", "", "", "37", "194", "", "" }, + { "cc1727dadf82e8fbf152e47d7e88d6c9", "", "", "Death Derby (v0004) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cc3d942c6958bd16b1c602623f59e6e1", "", "", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ccb807eb79b0ed0f5fdc460445ef703a", "", "", "Superman (Stunt_Cycle_Rules!) (Superman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "" }, + { "cd032ab6764b55438a7b0bfb5e78595a", "", "", "Hangman Pac-Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd34b3b3ef9e485201e841ba71beb253", "", "", "Hit HMOVE At Various Cycles After WSYNC Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd399bc422992a361ba932cc50f48b65", "Starpath", "AR-4104", "Rabbit Transit Preview (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "", "198", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd6b3dff86a55a4a6d23007ee360ea0e", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "" }, + { "cd8fa2e9f6255ef3d3b9b5a4f24a54f7", "", "", "Daredevil (V2) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cda38714267978b9a8b0b24bee3529ae", "", "", "Space Instigators (V1.6) (17-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Freeway Hack)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "205", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ce6c4270f605ad3ce5e82678b0fc71f8", "", "", "Vertical Rainbow Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ce904c0ae58d36d085cd506989116b0b", "Telegames", "", "International Soccer (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "" }, + { "cedbd67d1ff321c996051eec843f8716", "Froggo", "", "Karate (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "217", "", "" }, + { "cef2287d5fd80216b2200fb2ef1adfa8", "Milton Bradley", "4363", "Spitfire Attack (1983) (Milton Bradley) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cf507910d6e74568a68ac949537bccf9", "Sega", "003-01", "Thunderground (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "" }, + { "cf9069f92a43f719974ee712c50cd932", "Video Gems", "", "Mission Survive (1983) (Video Gems) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "148", "60", "", "", "" }, + { "cfc226d04d7490b69e155abd7741e98c", "Atari", "CX26159", "Double Dunk (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "190", "", "" }, + { "cfdb4d0427a1ea8085c6bc6eb90259d8", "", "", "Gunfight 2600 - Release Candidate (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "cfee10bd7119f10b136921ced2ee8972", "", "", "Space Instigators (V1.8) (19-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cff578e5c60de8caecbee7f2c9bbb57b", "George Veeder", "", "Suicide Adventure by George Veeder (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "4K", "", "", "", "", "", "None", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d09f1830fb316515b90694c45728d702", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d0e9beb2347595c6c7d158e9d83d2da8", "Retroactive", "", "Qb (2.00) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "d175258b2973b917a05b46df4e1cf15d", "", "", "Walker (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "225", "", "" }, + { "d17a8c440d6be79fae393a4b46661164", "", "", "Warring Worms (Beta 3) (2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d1a9478b99d6a55e13a9fd4262da7cd4", "US Games", "VC 1001", "Space Jockey (1982) (US Games) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d1d704a7146e95709b57b6d4cac3f788", "Atari", "", "Slot Racers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "" }, + { "d223bc6f13358642f02ddacfaf4a90c9", "Starsoft", "", "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "51", "215", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d2d8c4f1ea7f347c8bcc7d24f45aa338", "", "", "20 Sprites at Once Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d326db524d93fa2897ab69c42d6fb698", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "", "206", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d39e29b03af3c28641084dd1528aae05", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d47387658ed450db77c3f189b969cc00", "Playaround", "", "Westward Ho (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "d483f65468d9a265661917bae1a54f3e", "Joe Grand", "", "SCSIcide Pre-release 3 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d5618464dbdc2981f6aa8b955828eeb4", "CCE", "", "Megamania (CCE)", "", "", "", "4K", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "" }, + { "d57913088e0c49ac3a716bf9837b284f", "", "", "Pressure Cooker (1983) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "" }, + { "d597d35c6022c590d6e75e865738558a", "", "", "Sprite Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d5c6b81212ad86fd9542a1fedaf57cae", "", "", "Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d65028524761ef52fbbdebab46f79d0f", "CCE", "", "Galaxian (1983) (CCE)", "", "", "", "F8", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d6a44277c3eb4f9d039185e0ecf7bfa6", "", "", "Trick (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d6d5dd8fd322d3cf874e651e7b6c1657", "", "", "How to Draw a Playfield (1997) (Nick Bensema) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d74a81fcd89c5cf0bd4c88eb207ebd62", "", "", "Poker Squares (V0.00a) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d787ec6785b0ccfbd844c7866db9667d", "Retroactive", "", "Qb (V0.04) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "d79df06894e3c1585a47c2807332b319", "", "", "Star Fire - Explosions! (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d7dd56677e4ec1e6627419478a4a9668", "", "", "Shadow Keep (Fixed) (04-03-2003) (Andrew Towers)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d82c8a58098a6b46c5b81c16180354d1", "", "", "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "198", "", "" }, + { "d85f1e35c5445ac898746719a3d93f09", "Starsoft", "", "Tom's Eierjagd (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "217", "", "" }, + { "d88691c995008b9ab61a44bb686b32e4", "", "", "Warring Worms (07-02-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d97e3d0b4575ce0b9a6132e19cfeac6e", "Fabrizio Zavagli", "", "Space Treat (061002) (PD)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d9b49f0678776e04916fa5478685a819", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [!]", "", "Rare", "", "F8", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dac5c0fe74531f077c105b396874a9f1", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dbb10b904242fcfb8428f372e00c01af", "Atari", "CX2631", "Superman (1978) (Atari) (PAL) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "PAL", "", "", "38", "", "", "" }, + { "dbc8829ef6f12db8f463e30f60af209f", "Data Age", "DA 1001", "Encounter at L5 (1982) (Data Age)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "dbdd21e1ee3d72119e8cd14d943c585b", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "" }, + { "dc6aa0bb21a6e66e80e75ba5edc5c0dd", "", "", "Star Fire - Kernel Done (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic", "IA3000", "Trick Shot (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "250", "Yes", "" }, + { "dcba0e33aa4aed67630a4b292386f405", "Retroactive", "", "Qb (V2.08) (Half Speed Version) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd10b5ee37fdbf909423f2998a1f3179", "", "", "Space Instigators (V1.9) (21-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd92d6ad50976f881d86b52d38616118", "SpkSoft", "", "River Raid (SpkSoft) [h1]", "", "", "", "4K", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de3d0e37729d85afcb25a8d052a6e236", "Spectravideo", "SA-204", "Tape Worm (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de7bca4e569ad9d3fd08ff1395e53d2d", "Thomas Jentzsch", "", "Thrust (V1.22) (2000) (TJ)", "Won't work with Stella < V1.2, supports Booster Grip", "New Release", "", "", "", "", "", "", "Booster-Grip", "", "", "", "", "", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dfcdd6f593bb7b05dbc2e8e1fc6ee0de", "", "", "Gunfight 2600 - Scenarios complete (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "dfe6aa7443bb813cefa35a4cf4887422", "", "", "This Planet Sucks (Greg Troutman) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "40", "205", "", "" }, + { "e01e00504e6d4b88fa743c0bbe8a96e5", "", "", "Qb (Special Edition, some bugfixes) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e0221c95aa657f5764eeeb64c8429258", "", "", "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "38", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e0eff071f578ecf19edc2ab276644e46", "", "", "Gas Gauge Demo (2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e12e32dee68201b6765fcd0ed54d6646", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "", "", "36", "256", "", "" }, + { "e13c7627b2e136b9c449d9e8925b4547", "Atari", "CX2624", "Basketball (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "42", "193", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e171558c51bb3bac97bfa79fa2c1a19c", "", "", "Warring Worms (Tim Strauss Edition) (20-12-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e18abe87035379c56b435bfe8175077b", "", "", "Rumble 2600 by Grimlock (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e1c8d02ca138083db868501360cf12a8", "", "", "Image - Baboon (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e1e09e2f280e8e142121a377d0dc1b46", "Thomas Jentzsch", "", "Thrust (V1.21) (2000) (TJ)", "Won't work with Stella < V1.2, bugfixed", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "e2389c0be5b5b84e0d3ca36ec7e67514", "Retroactive", "", "Qb (V2.09) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e275cbe7d4e11e62c3bfcfb38fca3d49", "Mattel", "MT5658", "Super Challenge Football (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "37", "198", "", "" }, + { "e2846af3e4d172b251ab77cbdd01761e", "", "", "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e363e467f605537f3777ad33e74e113a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "32", "219", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e3c0451d29dad724231bc5818ec4bae0", "", "", "Single-Scanline Positioning Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e3ed4ba3361756970f076e46e9cad1d2", "Activision", "", "Tennis (1981) (Activision) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4519d584bb1663ff2734f16c983fa2b", "", "", "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "229", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4c666ca0c36928b95b13d33474dbb44", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e556e07cc06c803f2955986f53ef63ed", "Coleco", "2665", "Front Line (1982) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "" }, + { "e56da674188ba2f02c7a0a343a01236f", "", "", "This Planet Sucks Demo 4 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e5d72ff8bab4450be57785cc9e83f3c0", "", "", "Kung Fu Superkicks (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e609e8a007127b8fcff79ffc380da6b1", "", "", "Multi-Sprite Game V2.3 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e66e5af5dea661d58420088368e4ef0d", "Activision", "AG-011", "Stampede (1981) (Activision) [o1]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "" }, + { "e6e5bb0e4f4350da573023256268313d", "Ariola / Thomas Jentzsch", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e72eb8d4410152bdcb69e7fba327b420", "Atari", "CX26136", "Solaris (1986) (Atari)", "", "Uncommon", "", "F6", "", "", "", "", "", "", "", "8", "152", "37", "196", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e74022cfe31ec8908844718dfbdedf7a", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e784a9d26707cfcd170a4c1c60422a72", "Starsoft", "", "Gefecht im All (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "e79c4432c518ca3e497f673a167ee526", "", "", "Ocean City (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e800e4aec7c6c54c9cf3db0d1d030058", "", "", "Qb (2.06) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "e823b13751e4388f1f2a375d3560a8d7", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "" }, + { "e879b7093ac4cfad74c88d636ca97d00", "", "", "Poker Squares (V0.0f) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e91d2ecf8803ae52b55bbf105af04d4b", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "230", "Yes", "" }, + { "e927ecf80f3784d745abd8368d78f2f3", "", "", "Space Instigators (V1.8) (19-10-2002) (CT) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e957eb4612d6bd5940d3492dfa749668", "", "", "Tunnel Demo (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e9cb18770a41a16de63b124c1e8bd493", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "ea6d40db5498d6386571a76df448aa4c", "", "", "Vertical Playfield Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ead60451c28635b55ca8fea198444e16", "Sancho", "TEC004", "Nightmare (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "256", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eaf744185d5e8def899950ba7c6e7bb5", "Atari", "CX26172", "Xenophobe (1990) (Atari) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb4252faff7a4f2ba5284a98b8f78d1a", "", "", "John K Harvey's Equalizer (NTSC) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ece908d77ab944f7bac84322b9973549", "Suntek", "", "Tom Boy (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "8", "152", "28", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ed0ab909cf7b30aff6fc28c3a4660b8e", "", "TEC004 / 105", "Nightmare (Sancho)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "" }, + { "ed1a784875538c7871d035b7a98c2433", "", "", "Save Our Ship (Technovision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "214", "", "" }, + { "ed5ccfc93ad4561075436ee42a15438a", "Atari", "CX2626", "Miniature Golf (1979) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "" }, + { "eddef10fdc0029301064115ae0cd41d4", "CCE", "AG-009", "Freeway (CCE)", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ee456542b93fa8d7e6a8c689b5a0413c", "", "", "Chronocolor Donkey Kong Clean (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ee659ae50e9df886ac4f8d7ad10d046a", "Exus", "", "Video Reflex (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ee67dc0b01746372d2b983d88f48e24f", "", "", "Scroller Demo (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ee8e2aa00e3a9cf1238157cbcff7de74", "Tigervision", "7-007", "Polaris (1983) (Tigervision) [a1]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "8", "144", "62", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ef3a4f64b6494ba770862768caf04b86", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "39", "194", "", "" }, + { "ef60b06fddb675b0d783afbfa5fc5232", "", "", "Many Blue Bars and Text Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "" }, + { "ef71e9fb0d8d477226d8d42261fbf0a7", "Piero Cavina", "", "Multi-Sprite Demo V2.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efb47d70b2965ce689e2c5757616b286", "", "", "Time Test Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "192", "", "" }, + { "efefc02bbc5258815457f7a5b8d8750a", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "FASC", "", "", "", "", "", "", "", "", "", "67", "153", "", "" }, + { "f02ba8b5292bf3017d10553c9b7b2861", "Atari", "", "Xenophobe (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "" }, + { "f0536303f49006806bac3aec15738336", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "f060826626aac9e0d8cda0282f4b7fc3", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f0b7db930ca0e548c41a97160b9f6275", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari)", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "16", "128", "37", "194", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f10e3f45fb01416c87e5835ab270b53a", "", "TP-607", "Ski Run (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "53", "190", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f14d5e96ec3380aef57a4b70132c6677", "Goliath", "", "Pac Kong (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "52", "215", "", "" }, + { "f16c709df0a6c52f47ff52b9d95b7d8d", "", "CX2662", "Hangman (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1beca5a198cf08190487e5c27b8e540", "", "", "Fu Kung! (V0.16) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1eeeccc4bba6999345a2575ae96508e", "Video Gems", "", "Steeple Chase (Video Gems) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "PAL", "8", "152", "", "250", "Yes", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f240ba9f8092d2e8a4c7d82c554bf509", "", "", "Strahlen der Teufelsvoegel (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f2f2cb35fdef063c966c1f5481050ea2", "Telegames", "", "Ram It (1982) (Telegames) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "f33f1d0f7819c74148dacb48cbf1c597", "Retroactive", "", "Qb (2.00) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "" }, + { "f34dd3b8156aaf113cb621b2e51d90b8", "Joe Grand", "", "SCSIcide Pre-release 5 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f38358cd8f5ecfedffd5aca1aa939f18", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex) [a1]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f3f5f72bfdd67f3d0e45d097e11b8091", "Sears", "CX2647 / 4975412", "Submarine Commander (1982) (Sears)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "" }, + { "f4204fc92d17ed4cb567c40361ad58f1", "Inky", "", "Beanie Baby Bash by Inky (Beany Bopper Hack)", "Hack of Beany Bopper (1982) (20th Century Fox)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "" }, + { "f45644ff82b533a781a1ee50f2e95f3c", "", "", "Overhead Adventure Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f526d0c519f5001adb1fc7948bfbb3ce", "Mythicon", "MA-1003", "Star Fox (1982) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "8", "152", "54", "191", "", "" }, + { "f542b5d0193a3959b54f3c4c803ba242", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f613aad84d2163d6b197b220bfec1b7e", "", "", "X-Doom V.27 (PD)", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6d512bef1bf253dc935d0e13c3d1462", "Atari", "", "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6f1b27efc247a0e8d473ddb4269ff9e", "Starsoft", "", "Schnapp die Apfeldiebe (AKA Catch Time) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" }, + { "f724d3dd2471ed4cf5f191dbb724b69f", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari)", "Console ports are swapped", "Common", "", "F8", "", "", "", "Yes", "", "", "", "", "", "37", "192", "", "" }, + { "f73d2d0eff548e8fc66996f27acf2b4b", "CCE", "AX-018", "Pitfall! (CCE) (PAL-M) [!]", "", "Common", "", "4K", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f78c125b5da483c41e51522947d6c4ce", "", "", "Sound Paddle V1 (Dennis Caswell & Jim Nitchals) (PD)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "" }, + { "f7af41a87533524d9a478575b0d873d0", "Parker Bros", "PB5900", "Spider-Man (1982) (Starsoft) (PAL) [!]", "", "Rare", "", "4K", "", "", "", "", "", "", "PAL", "8", "144", "51", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f802fa61011dd9eb6f80b271bac479d0", "Starsoft", "", "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f825c538481f9a7a46d1e9bc06200aaf", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "52", "175", "", "" }, + { "f847fb8dba6c6d66d13724dbe5d95c4d", "Absolute", "AZ-042 / AG-042", "Skate Boardin' (1987) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8bfd99163d2c4ec688357786e6fba28", "", "", "Eckhard Stolberg's Scrolling Text Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f954381f9e0f2009d1ac40dedd777b1a", "Thomas Jentzsch", "", "Robot City (V0.18) (01-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f992a39b46aa48188fab12ad3809ae4a", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "191", "", "" }, + { "f9d51a4e5f8b48f68770c89ffd495ed1", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "41", "191", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9e99596345a84358bc5d1fbe877134b", "Activision", "AG-010", "Kaboom! (1981) (Activision) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "2K", "", "", "", "", "Paddles", "None", "PAL", "8", "144", "64", "200", "", "" }, + { "fa1b060fd8e0bca0c2a097dcffce93d3", "", "CX26101", "Oscar's Trash Race (1983) (Atari) (Prototype) (PAL)", "Uses Kids/Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "38", "190", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa3de71841c0841db6a741884a6b6b2f", "", "", "Warring Worms (17-02-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fbfebee9c14694719e3eda4854dc42ee", "", "", "Baubles 3 (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fc24a94d4371c69bc58f5245ada43c44", "Atari", "CX26170", "Secret Quest (1989) (Atari)", "", "Rare", "", "F6SC", "", "", "", "", "", "", "", "8", "136", "42", "194", "", "" }, + { "fc668a2251dd79cbd903d4fa0e558f96", "", "", "Thrust (V1.1) (2000) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fca4a5be1251927027f2c24774a02160", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [!]", "", "Rare", "", "F8", "", "", "", "", "", "", "", "", "", "49", "190", "", "No" }, + { "fcf8e306f6615f74feba5cb25550038c", "", "", "Blue Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd10915633aea4f9cd8b518a25d62b55", "Atari", "", "Superman (1978) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd9b321cee5fbb32c39ba3ca5d9ec7cf", "Jeffry Johnston", "", "Radial Pong - Version 5 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fdf0de38517e0cf7f0885f98ccc95836", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "No" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fe0bc4bb92c1c4de7d5706aaa8d8c10d", "", "", "Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fe870018332a0221eb59fb18b0c6bccc", "", "", "Incoming (08-11-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ffebb0070689b9d322687edd9c0a2bae", "", "", "Spitfire Attack (1983) (Milton Bradley) [h1]", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "" } +}; + +#endif diff --git a/stella/src/emucore/EventHandler.cxx b/stella/src/emucore/EventHandler.cxx index ff06500cc..2beac244a 100644 --- a/stella/src/emucore/EventHandler.cxx +++ b/stella/src/emucore/EventHandler.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: EventHandler.cxx,v 1.151 2006-03-02 13:10:53 stephena Exp $ +// $Id: EventHandler.cxx,v 1.152 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -403,7 +403,7 @@ void EventHandler::poll(uInt32 time) break; case SDLK_RIGHTBRACKET: - myOSystem->sound().adjustVolume(1); + myOSystem->sound().adjustVolume(+1); break; case SDLK_END: // Alt-End increases XStart @@ -584,7 +584,7 @@ void EventHandler::poll(uInt32 time) case SDLK_s: // Ctrl-s saves properties to a file string newPropertiesFile = myOSystem->baseDir() + BSPF_PATH_SEPARATOR + - myOSystem->console().properties().get("Cartridge.Name") + ".pro"; + myOSystem->console().properties().get(Cartridge_Name) + ".pro"; myOSystem->console().saveProperties(newPropertiesFile); break; } @@ -1272,7 +1272,9 @@ void EventHandler::setActionMappings() for(i = 0; i < kActionListSize; ++i) { Event::Type event = ourActionList[i].event; - ourActionList[i].key = "None"; + if(ourActionList[i].key) + free(ourActionList[i].key); + ourActionList[i].key = strdup("None"); string key = ""; for(j = 0; j < SDLK_LAST; ++j) // key mapping { @@ -1374,7 +1376,11 @@ void EventHandler::setActionMappings() key = prepend + ", " + key; if(key != "") - ourActionList[i].key = key; + { + if(ourActionList[i].key) + free(ourActionList[i].key); + ourActionList[i].key = strdup(key.c_str()); + } } } @@ -1833,7 +1839,7 @@ inline bool EventHandler::eventIsAnalog(Event::Type event) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void EventHandler::saveState() { - string md5 = myOSystem->console().properties().get("Cartridge.MD5"); + string md5 = myOSystem->console().properties().get(Cartridge_MD5); ostringstream buf; buf << myOSystem->stateDir() << BSPF_PATH_SEPARATOR << md5 << ".st" << myLSState; @@ -1878,7 +1884,7 @@ void EventHandler::changeState() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void EventHandler::loadState() { - string md5 = myOSystem->console().properties().get("Cartridge.MD5"); + string md5 = myOSystem->console().properties().get(Cartridge_MD5); ostringstream buf; buf << myOSystem->stateDir() << BSPF_PATH_SEPARATOR << md5 << ".st" << myLSState; @@ -1928,9 +1934,9 @@ void EventHandler::takeSnapshot() sspath += BSPF_PATH_SEPARATOR; if(ssname == "romname") - sspath += myOSystem->console().properties().get("Cartridge.Name"); + sspath += myOSystem->console().properties().get(Cartridge_Name); else if(ssname == "md5sum") - sspath += myOSystem->console().properties().get("Cartridge.MD5"); + sspath += myOSystem->console().properties().get(Cartridge_MD5); // Check whether we want multiple snapshots created if(!myOSystem->settings().getBool("sssingle")) @@ -2354,106 +2360,101 @@ void EventHandler::setSDLMappings() } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -// FIXME - this must be handled better in the future /// -#ifndef _WIN32_WCE ActionList EventHandler::ourActionList[kActionListSize] = { - { Event::ConsoleSelect, "Select", "" }, - { Event::ConsoleReset, "Reset", "" }, - { Event::ConsoleColor, "Color TV", "" }, - { Event::ConsoleBlackWhite, "Black & White TV", "" }, - { Event::ConsoleLeftDifficultyA, "P1 Difficulty A", "" }, - { Event::ConsoleLeftDifficultyB, "P1 Difficulty B", "" }, - { Event::ConsoleRightDifficultyA, "P2 Difficulty A", "" }, - { Event::ConsoleRightDifficultyB, "P2 Difficulty B", "" }, - { Event::SaveState, "Save State", "" }, - { Event::ChangeState, "Change State", "" }, - { Event::LoadState, "Load State", "" }, - { Event::TakeSnapshot, "Snapshot", "" }, - { Event::Pause, "Pause", "" }, - { Event::Fry, "Fry cartridge", "" }, - { Event::VolumeDecrease, "Decrease volume", "" }, - { Event::VolumeIncrease, "Increase volume", "" }, - { Event::MenuMode, "Toggle options menu mode", "" }, - { Event::CmdMenuMode, "Toggle command menu mode", "" }, - { Event::DebuggerMode, "Toggle debugger mode", "" }, - { Event::LauncherMode, "Enter ROM launcher", "" }, - { Event::Quit, "Quit", "" }, + { Event::ConsoleSelect, "Select", 0 }, + { Event::ConsoleReset, "Reset", 0 }, + { Event::ConsoleColor, "Color TV", 0 }, + { Event::ConsoleBlackWhite, "Black & White TV", 0 }, + { Event::ConsoleLeftDifficultyA, "P1 Difficulty A", 0 }, + { Event::ConsoleLeftDifficultyB, "P1 Difficulty B", 0 }, + { Event::ConsoleRightDifficultyA, "P2 Difficulty A", 0 }, + { Event::ConsoleRightDifficultyB, "P2 Difficulty B", 0 }, + { Event::SaveState, "Save State", 0 }, + { Event::ChangeState, "Change State", 0 }, + { Event::LoadState, "Load State", 0 }, + { Event::TakeSnapshot, "Snapshot", 0 }, + { Event::Pause, "Pause", 0 }, + { Event::Fry, "Fry cartridge", 0 }, + { Event::VolumeDecrease, "Decrease volume", 0 }, + { Event::VolumeIncrease, "Increase volume", 0 }, + { Event::MenuMode, "Toggle options menu mode", 0 }, + { Event::CmdMenuMode, "Toggle command menu mode", 0 }, + { Event::DebuggerMode, "Toggle debugger mode", 0 }, + { Event::LauncherMode, "Enter ROM launcher", 0 }, + { Event::Quit, "Quit", 0 }, - { Event::JoystickZeroUp, "P1 Joystick Up", "" }, - { Event::JoystickZeroDown, "P1 Joystick Down", "" }, - { Event::JoystickZeroLeft, "P1 Joystick Left", "" }, - { Event::JoystickZeroRight, "P1 Joystick Right", "" }, - { Event::JoystickZeroFire, "P1 Joystick Fire", "" }, + { Event::JoystickZeroUp, "P1 Joystick Up", 0 }, + { Event::JoystickZeroDown, "P1 Joystick Down", 0 }, + { Event::JoystickZeroLeft, "P1 Joystick Left", 0 }, + { Event::JoystickZeroRight, "P1 Joystick Right", 0 }, + { Event::JoystickZeroFire, "P1 Joystick Fire", 0 }, - { Event::JoystickOneUp, "P2 Joystick Up", "" }, - { Event::JoystickOneDown, "P2 Joystick Down", "" }, - { Event::JoystickOneLeft, "P2 Joystick Left", "" }, - { Event::JoystickOneRight, "P2 Joystick Right", "" }, - { Event::JoystickOneFire, "P2 Joystick Fire", "" }, + { Event::JoystickOneUp, "P2 Joystick Up", 0 }, + { Event::JoystickOneDown, "P2 Joystick Down", 0 }, + { Event::JoystickOneLeft, "P2 Joystick Left", 0 }, + { Event::JoystickOneRight, "P2 Joystick Right", 0 }, + { Event::JoystickOneFire, "P2 Joystick Fire", 0 }, - { Event::PaddleZeroAnalog, "Paddle 1 Analog", "" }, - { Event::PaddleZeroDecrease, "Paddle 1 Decrease", "" }, - { Event::PaddleZeroIncrease, "Paddle 1 Increase", "" }, - { Event::PaddleZeroFire, "Paddle 1 Fire", "" }, + { Event::PaddleZeroAnalog, "Paddle 1 Analog", 0 }, + { Event::PaddleZeroDecrease, "Paddle 1 Decrease", 0 }, + { Event::PaddleZeroIncrease, "Paddle 1 Increase", 0 }, + { Event::PaddleZeroFire, "Paddle 1 Fire", 0 }, - { Event::PaddleOneAnalog, "Paddle 2 Analog", "" }, - { Event::PaddleOneDecrease, "Paddle 2 Decrease", "" }, - { Event::PaddleOneIncrease, "Paddle 2 Increase", "" }, - { Event::PaddleOneFire, "Paddle 2 Fire", "" }, + { Event::PaddleOneAnalog, "Paddle 2 Analog", 0 }, + { Event::PaddleOneDecrease, "Paddle 2 Decrease", 0 }, + { Event::PaddleOneIncrease, "Paddle 2 Increase", 0 }, + { Event::PaddleOneFire, "Paddle 2 Fire", 0 }, - { Event::PaddleTwoAnalog, "Paddle 3 Analog", "" }, - { Event::PaddleTwoDecrease, "Paddle 3 Decrease", "" }, - { Event::PaddleTwoIncrease, "Paddle 3 Increase", "" }, - { Event::PaddleTwoFire, "Paddle 3 Fire", "" }, + { Event::PaddleTwoAnalog, "Paddle 3 Analog", 0 }, + { Event::PaddleTwoDecrease, "Paddle 3 Decrease", 0 }, + { Event::PaddleTwoIncrease, "Paddle 3 Increase", 0 }, + { Event::PaddleTwoFire, "Paddle 3 Fire", 0 }, - { Event::PaddleThreeAnalog, "Paddle 4 Analog", "" }, - { Event::PaddleThreeDecrease, "Paddle 4 Decrease", "" }, - { Event::PaddleThreeIncrease, "Paddle 4 Increase", "" }, - { Event::PaddleThreeFire, "Paddle 4 Fire", "" }, + { Event::PaddleThreeAnalog, "Paddle 4 Analog", 0 }, + { Event::PaddleThreeDecrease, "Paddle 4 Decrease", 0 }, + { Event::PaddleThreeIncrease, "Paddle 4 Increase", 0 }, + { Event::PaddleThreeFire, "Paddle 4 Fire", 0 }, - { Event::BoosterGripZeroTrigger, "P1 Booster-Grip Trigger", "" }, - { Event::BoosterGripZeroBooster, "P1 Booster-Grip Booster", "" }, + { Event::BoosterGripZeroTrigger, "P1 Booster-Grip Trigger", 0 }, + { Event::BoosterGripZeroBooster, "P1 Booster-Grip Booster", 0 }, - { Event::BoosterGripOneTrigger, "P2 Booster-Grip Trigger", "" }, - { Event::BoosterGripOneBooster, "P2 Booster-Grip Booster", "" }, + { Event::BoosterGripOneTrigger, "P2 Booster-Grip Trigger", 0 }, + { Event::BoosterGripOneBooster, "P2 Booster-Grip Booster", 0 }, - { Event::DrivingZeroCounterClockwise, "P1 Driving Controller Left", "" }, - { Event::DrivingZeroClockwise, "P1 Driving Controller Right", "" }, - { Event::DrivingZeroFire, "P1 Driving Controller Fire", "" }, + { Event::DrivingZeroCounterClockwise, "P1 Driving Controller Left", 0 }, + { Event::DrivingZeroClockwise, "P1 Driving Controller Right", 0 }, + { Event::DrivingZeroFire, "P1 Driving Controller Fire", 0 }, - { Event::DrivingOneCounterClockwise, "P2 Driving Controller Left", "" }, - { Event::DrivingOneClockwise, "P2 Driving Controller Right", "" }, - { Event::DrivingOneFire, "P2 Driving Controller Fire", "" }, + { Event::DrivingOneCounterClockwise, "P2 Driving Controller Left", 0 }, + { Event::DrivingOneClockwise, "P2 Driving Controller Right", 0 }, + { Event::DrivingOneFire, "P2 Driving Controller Fire", 0 }, - { Event::KeyboardZero1, "P1 Keyboard 1", "" }, - { Event::KeyboardZero2, "P1 Keyboard 2", "" }, - { Event::KeyboardZero3, "P1 Keyboard 3", "" }, - { Event::KeyboardZero4, "P1 Keyboard 4", "" }, - { Event::KeyboardZero5, "P1 Keyboard 5", "" }, - { Event::KeyboardZero6, "P1 Keyboard 6", "" }, - { Event::KeyboardZero7, "P1 Keyboard 7", "" }, - { Event::KeyboardZero8, "P1 Keyboard 8", "" }, - { Event::KeyboardZero9, "P1 Keyboard 9", "" }, - { Event::KeyboardZeroStar, "P1 Keyboard *", "" }, - { Event::KeyboardZero0, "P1 Keyboard 0", "" }, - { Event::KeyboardZeroPound, "P1 Keyboard #", "" }, + { Event::KeyboardZero1, "P1 Keyboard 1", 0 }, + { Event::KeyboardZero2, "P1 Keyboard 2", 0 }, + { Event::KeyboardZero3, "P1 Keyboard 3", 0 }, + { Event::KeyboardZero4, "P1 Keyboard 4", 0 }, + { Event::KeyboardZero5, "P1 Keyboard 5", 0 }, + { Event::KeyboardZero6, "P1 Keyboard 6", 0 }, + { Event::KeyboardZero7, "P1 Keyboard 7", 0 }, + { Event::KeyboardZero8, "P1 Keyboard 8", 0 }, + { Event::KeyboardZero9, "P1 Keyboard 9", 0 }, + { Event::KeyboardZeroStar, "P1 Keyboard *", 0 }, + { Event::KeyboardZero0, "P1 Keyboard 0", 0 }, + { Event::KeyboardZeroPound, "P1 Keyboard #", 0 }, - { Event::KeyboardOne1, "P2 Keyboard 1", "" }, - { Event::KeyboardOne2, "P2 Keyboard 2", "" }, - { Event::KeyboardOne3, "P2 Keyboard 3", "" }, - { Event::KeyboardOne4, "P2 Keyboard 4", "" }, - { Event::KeyboardOne5, "P2 Keyboard 5", "" }, - { Event::KeyboardOne6, "P2 Keyboard 6", "" }, - { Event::KeyboardOne7, "P2 Keyboard 7", "" }, - { Event::KeyboardOne8, "P2 Keyboard 8", "" }, - { Event::KeyboardOne9, "P2 Keyboard 9", "" }, - { Event::KeyboardOneStar, "P2 Keyboard *", "" }, - { Event::KeyboardOne0, "P2 Keyboard 0", "" }, - { Event::KeyboardOnePound, "P2 Keyboard #", "" } + { Event::KeyboardOne1, "P2 Keyboard 1", 0 }, + { Event::KeyboardOne2, "P2 Keyboard 2", 0 }, + { Event::KeyboardOne3, "P2 Keyboard 3", 0 }, + { Event::KeyboardOne4, "P2 Keyboard 4", 0 }, + { Event::KeyboardOne5, "P2 Keyboard 5", 0 }, + { Event::KeyboardOne6, "P2 Keyboard 6", 0 }, + { Event::KeyboardOne7, "P2 Keyboard 7", 0 }, + { Event::KeyboardOne8, "P2 Keyboard 8", 0 }, + { Event::KeyboardOne9, "P2 Keyboard 9", 0 }, + { Event::KeyboardOneStar, "P2 Keyboard *", 0 }, + { Event::KeyboardOne0, "P2 Keyboard 0", 0 }, + { Event::KeyboardOnePound, "P2 Keyboard #", 0 } }; -#else -ActionList EventHandler::ourActionList[kActionListSize]; -#endif // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - const Event::Type EventHandler::Paddle_Resistance[4] = { diff --git a/stella/src/emucore/EventHandler.hxx b/stella/src/emucore/EventHandler.hxx index 6a48dd65f..8e3bcea1c 100644 --- a/stella/src/emucore/EventHandler.hxx +++ b/stella/src/emucore/EventHandler.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: EventHandler.hxx,v 1.79 2006-03-02 13:10:53 stephena Exp $ +// $Id: EventHandler.hxx,v 1.80 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #ifndef EVENTHANDLER_HXX @@ -56,8 +56,8 @@ enum MouseButton { // Structure used for action menu items struct ActionList { Event::Type event; - string action; - string key; + const char* action; + char* key; }; enum { @@ -107,7 +107,7 @@ struct JoyMouse { mapping can take place. @author Stephen Anthony - @version $Id: EventHandler.hxx,v 1.79 2006-03-02 13:10:53 stephena Exp $ + @version $Id: EventHandler.hxx,v 1.80 2006-03-05 01:18:42 stephena Exp $ */ class EventHandler { diff --git a/stella/src/emucore/EventStreamer.cxx b/stella/src/emucore/EventStreamer.cxx index b7df8e2eb..90bf253c2 100644 --- a/stella/src/emucore/EventStreamer.cxx +++ b/stella/src/emucore/EventStreamer.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: EventStreamer.cxx,v 1.5 2006-01-08 02:28:03 stephena Exp $ +// $Id: EventStreamer.cxx,v 1.6 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include "bspf.hxx" @@ -62,7 +62,7 @@ bool EventStreamer::startRecording() return false; // And save the current state to it - string md5 = myOSystem->console().properties().get("Cartridge.MD5"); + string md5 = myOSystem->console().properties().get(Cartridge_MD5); if(!myOSystem->console().system().saveState(md5, myStreamWriter)) return false; myEventHistory.clear(); @@ -111,7 +111,7 @@ cerr << "EventStreamer::loadRecording()\n"; return false; // Load ROM state - string md5 = myOSystem->console().properties().get("Cartridge.MD5"); + string md5 = myOSystem->console().properties().get(Cartridge_MD5); if(!myOSystem->console().system().loadState(md5, myStreamReader)) return false; diff --git a/stella/src/emucore/FrameBuffer.cxx b/stella/src/emucore/FrameBuffer.cxx index 1576dd347..32035bc6b 100644 --- a/stella/src/emucore/FrameBuffer.cxx +++ b/stella/src/emucore/FrameBuffer.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: FrameBuffer.cxx,v 1.77 2006-01-20 13:45:45 stephena Exp $ +// $Id: FrameBuffer.cxx,v 1.78 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -132,7 +132,7 @@ void FrameBuffer::initialize(const string& title, uInt32 width, uInt32 height, #ifdef DEVELOPER_SUPPORT if(&myOSystem->console()) { - enablePhosphor(myOSystem->console().properties().get("Display.Phosphor", true) == "YES"); + enablePhosphor(myOSystem->console().properties().get(Display_Phosphor) == "YES"); setPalette(myOSystem->console().mediaSource().palette()); } #endif diff --git a/stella/src/emucore/OSystem.cxx b/stella/src/emucore/OSystem.cxx index 6c6dce530..a9ba3ae53 100644 --- a/stella/src/emucore/OSystem.cxx +++ b/stella/src/emucore/OSystem.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystem.cxx,v 1.62 2006-03-02 13:10:53 stephena Exp $ +// $Id: OSystem.cxx,v 1.63 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -442,7 +442,7 @@ bool OSystem::openROM(const string& rom, string& md5, uInt8** image, int* size) Properties props; myPropSet->getMD5(md5, props); - string name = props.get("Cartridge.Name"); + string name = props.get(Cartridge_Name); if(name == "Untitled") { // Get the filename from the rom pathname @@ -450,8 +450,8 @@ bool OSystem::openROM(const string& rom, string& md5, uInt8** image, int* size) if(pos+1 != string::npos) { name = rom.substr(pos+1); - props.set("Cartridge.MD5", md5); - props.set("Cartridge.Name", name); + props.set(Cartridge_MD5, md5); + props.set(Cartridge_Name, name); myPropSet->insert(props); } } diff --git a/stella/src/emucore/Props.cxx b/stella/src/emucore/Props.cxx index 0c801bd69..17c8179a5 100644 --- a/stella/src/emucore/Props.cxx +++ b/stella/src/emucore/Props.cxx @@ -13,21 +13,19 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Props.cxx,v 1.11 2005-09-22 22:10:57 stephena Exp $ +// $Id: Props.cxx,v 1.12 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include #include +#include "GuiUtils.hxx" #include "Props.hxx" // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Properties::Properties(const Properties* defaults) +Properties::Properties() { - myDefaults = defaults; - myCapacity = 16; - myProperties = new Property[myCapacity]; - mySize = 0; + setDefaults(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -39,85 +37,53 @@ Properties::Properties(const Properties& properties) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Properties::~Properties() { - // Free the properties array - delete[] myProperties; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -string Properties::get(const string& key, bool useUppercase) const +const string& Properties::get(PropertyType key) const { - string s; - - // Try to find the named property and answer its value - for(uInt32 i = 0; i < mySize; ++i) - { - if(key == myProperties[i].key) - { - s = myProperties[i].value; - if(useUppercase) - transform(s.begin(), s.end(), s.begin(), (int(*)(int)) toupper); - return s; - } - } - - // Oops, property wasn't found so ask defaults if we have one - if(myDefaults != 0) - { - // Ask the default properties object to find the key - s = myDefaults->get(key); - if(useUppercase) - transform(s.begin(), s.end(), s.begin(), (int(*)(int)) toupper); - return s; - } + if(key >= 0 && key < LastPropType) + return myProperties[key]; else - { - // No default properties object so just return the empty string - return ""; - } + return EmptyString; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Properties::set(const string& key, const string& value) +void Properties::set(PropertyType key, const string& value) { - // See if the property already exists - for(uInt32 i = 0; i < mySize; ++i) + if(key >= 0 && key < LastPropType) { - if(key == myProperties[i].key) + myProperties[key] = value; + + switch(key) { - myProperties[i].value = value; - return; + case Cartridge_Sound: + case Cartridge_Type: + case Console_LeftDifficulty: + case Console_RightDifficulty: + case Console_TelevisionType: + case Console_SwapPorts: + case Controller_Left: + case Controller_Right: + case Display_Format: + case Display_Phosphor: + case Emulation_HmoveBlanks: + { + transform(myProperties[key].begin(), myProperties[key].end(), + myProperties[key].begin(), (int(*)(int)) toupper); + break; + } + + default: + break; } } - - // See if the array needs to be resized - if(mySize == myCapacity) - { - // Yes, so we'll make the array twice as large - Property* newProperties = new Property[myCapacity * 2]; - - for(uInt32 i = 0; i < mySize; ++i) - { - newProperties[i] = myProperties[i]; - } - - delete[] myProperties; - - myProperties = newProperties; - myCapacity *= 2; - } - - // Add new property to the array - myProperties[mySize].key = key; - myProperties[mySize].value = value; - - ++mySize; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Properties::load(istream& in) { - // Empty my property array - mySize = 0; + setDefaults(); string line, key, value; string::size_type one, two, three, four, garbage; @@ -152,7 +118,8 @@ void Properties::load(istream& in) value = line.substr(three + 1, four - three - 1); // Set the property - set(key, value); + PropertyType type = getPropertyType(key); + set(type, value); } } @@ -160,14 +127,14 @@ void Properties::load(istream& in) void Properties::save(ostream& out) { // Write out each of the key and value pairs - for(uInt32 i = 0; i < mySize; ++i) + for(int i = 0; i < LastPropType; ++i) { // Try to save some space by only saving the items that differ from default - if(myProperties[i].value != myDefaults->get(myProperties[i].key)) + if(myProperties[i] != ourDefaultProperties[i]) { - writeQuotedString(out, myProperties[i].key); + writeQuotedString(out, ourPropertyNames[i]); out.put(' '); - writeQuotedString(out, myProperties[i].value); + writeQuotedString(out, myProperties[i]); out.put('\n'); } } @@ -249,9 +216,6 @@ Properties& Properties::operator = (const Properties& properties) // Do the assignment only if this isn't a self assignment if(this != &properties) { - // Free the properties array - delete[] myProperties; - // Now, make myself a copy of the given object copy(properties); } @@ -262,28 +226,86 @@ Properties& Properties::operator = (const Properties& properties) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Properties::copy(const Properties& properties) { - // Remember the defaults to use - myDefaults = properties.myDefaults; - - // Create an array of the same size as properties - myCapacity = properties.myCapacity; - myProperties = new Property[myCapacity]; - // Now, copy each property from properties - mySize = properties.mySize; - for(uInt32 i = 0; i < mySize; ++i) - { + for(int i = 0; i < LastPropType; ++i) myProperties[i] = properties.myProperties[i]; - } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Properties::print() { - cout << get("Cartridge.MD5") << "|" - << get("Cartridge.Name") << "|" - << get("Cartridge.Rarity") << "|" - << get("Cartridge.Manufacturer") << "|" - << get("Cartridge.Note") + cout << get(Cartridge_MD5) << "|" + << get(Cartridge_Name) << "|" + << get(Cartridge_Rarity) << "|" + << get(Cartridge_Manufacturer) << "|" + << get(Cartridge_Note) << endl; } + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void Properties::setDefaults() +{ + for(int i = 0; i < LastPropType; ++i) + myProperties[i] = ourDefaultProperties[i]; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +PropertyType Properties::getPropertyType(const string& name) +{ + for(int i = 0; i < LastPropType; ++i) + if(ourPropertyNames[i] == name) + return (PropertyType)i; + + // Otherwise, indicate that the item wasn't found + return LastPropType; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +const char* Properties::ourDefaultProperties[LastPropType] = { + "", // Cartridge.MD5 + "", // Cartridge.Manufacturer + "", // Cartridge.ModelNo + "Untitled", // Cartridge.Name + "", // Cartridge.Note + "", // Cartridge.Rarity + "MONO", // Cartridge.Sound + "AUTO-DETECT", // Cartridge.Type + "B", // Console.LeftDifficulty + "B", // Console.RightDifficulty + "COLOR", // Console.TelevisionType + "NO", // Console.SwapPorts + "JOYSTICK", // Controller.Left + "JOYSTICK", // Controller.Right + "NTSC", // Display.Format + "0", // Display.XStart + "160", // Display.Width + "34", // Display.YStart + "210", // Display.Height + "NO", // Display.Phosphor + "YES" // Emulation.HmoveBlanks +}; + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +const char* Properties::ourPropertyNames[LastPropType] = { + "Cartridge.MD5", + "Cartridge.Manufacturer", + "Cartridge.ModelNo", + "Cartridge.Name", + "Cartridge.Note", + "Cartridge.Rarity", + "Cartridge.Sound", + "Cartridge.Type", + "Console.LeftDifficulty", + "Console.RightDifficulty", + "Console.TelevisionType", + "Console.SwapPorts", + "Controller.Left", + "Controller.Right", + "Display.Format", + "Display.XStart", + "Display.Width", + "Display.YStart", + "Display.Height", + "Display.Phosphor", + "Emulation.HmoveBlanks" +}; diff --git a/stella/src/emucore/Props.hxx b/stella/src/emucore/Props.hxx index 6a7c9b7a3..0ffc5d98c 100644 --- a/stella/src/emucore/Props.hxx +++ b/stella/src/emucore/Props.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Props.hxx,v 1.6 2005-09-22 22:10:57 stephena Exp $ +// $Id: Props.hxx,v 1.7 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #ifndef PROPERTIES_HXX @@ -21,6 +21,31 @@ #include "bspf.hxx" +enum PropertyType { + Cartridge_MD5, + Cartridge_Manufacturer, + Cartridge_ModelNo, + Cartridge_Name, + Cartridge_Note, + Cartridge_Rarity, + Cartridge_Sound, + Cartridge_Type, + Console_LeftDifficulty, + Console_RightDifficulty, + Console_TelevisionType, + Console_SwapPorts, + Controller_Left, + Controller_Right, + Display_Format, + Display_XStart, + Display_Width, + Display_YStart, + Display_Height, + Display_Phosphor, + Emulation_HmoveBlanks, + LastPropType +}; + /** This class represents objects which maintain a collection of properties. A property is a key and its corresponding value. @@ -30,7 +55,7 @@ if the property key is not found in the original property list. @author Bradford W. Mott - @version $Id: Props.hxx,v 1.6 2005-09-22 22:10:57 stephena Exp $ + @version $Id: Props.hxx,v 1.7 2006-03-05 01:18:42 stephena Exp $ */ class Properties { @@ -38,10 +63,8 @@ class Properties /** Creates an empty properties object with the specified defaults. The new properties object does not claim ownership of the defaults. - - @param defaults The defaults */ - Properties(const Properties* defaults = 0); + Properties(); /** Creates a properties list by copying another one @@ -60,22 +83,19 @@ class Properties Get the value assigned to the specified key. If the key does not exist then the empty string is returned. - @param key The key of the property to lookup - @param useUppercase Convert the property to uppercase - - @return The value of the property + @param key The key of the property to lookup + @return The value of the property */ - string get(const string& key, bool useUppercase = false) const; + const string& get(PropertyType key) const; /** Set the value associated with key to the given value. - @param key The key of the property to set - @param value The value to assign to the property + @param key The key of the property to set + @param value The value to assign to the property */ - void set(const string& key, const string& value); + void set(PropertyType key, const string& value); - public: /** Load properties from the specified input stream @@ -95,24 +115,10 @@ class Properties */ void print(); - public: /** - Read the next quoted string from the specified input stream - and returns it. - - @param in The input stream to use - @return The string inside the quotes - */ - static string readQuotedString(istream& in); - - /** - Write the specified string to the given output stream as a - quoted string. - - @param out The output stream to use - @param s The string to output - */ - static void writeQuotedString(ostream& out, const string& s); + Resets all properties to their defaults + */ + void setDefaults(); public: /** @@ -133,24 +139,40 @@ class Properties */ void copy(const Properties& properties); + /** + Read the next quoted string from the specified input stream + and returns it. + + @param in The input stream to use + @return The string inside the quotes + */ + static string readQuotedString(istream& in); + + /** + Write the specified string to the given output stream as a + quoted string. + + @param out The output stream to use + @param s The string to output + */ + static void writeQuotedString(ostream& out, const string& s); + + /** + Get the property type associated with the named property + + @param name The PropertyType key associated with the given string + */ + static PropertyType getPropertyType(const string& name); + private: - // Structure used for storing properties - struct Property - { - string key; - string value; - }; + // The array of properties + string myProperties[LastPropType]; - // Pointer to properties object to use for defaults or the null pointer - const Properties* myDefaults; + // List of default properties to use when none have been provided + static const char* ourDefaultProperties[LastPropType]; - // Pointer to a dynamically allocated array of properties - Property* myProperties; - - // Current capacity of the properties array - unsigned int myCapacity; - - // Size of the properties array (i.e. the number of pairs) - unsigned int mySize; + // The text strings associated with each property type + static const char* ourPropertyNames[LastPropType]; }; + #endif diff --git a/stella/src/emucore/PropsSet.cxx b/stella/src/emucore/PropsSet.cxx index 021a65951..cf4295a4f 100644 --- a/stella/src/emucore/PropsSet.cxx +++ b/stella/src/emucore/PropsSet.cxx @@ -13,11 +13,13 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: PropsSet.cxx,v 1.19 2006-03-03 19:58:35 stephena Exp $ +// $Id: PropsSet.cxx,v 1.20 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include +#include "GuiUtils.hxx" +#include "DefProps.hxx" #include "Props.hxx" #include "PropsSet.hxx" @@ -26,8 +28,6 @@ PropertiesSet::PropertiesSet() : myRoot(NULL), mySize(0) { - myDefaultProperties = &defaultProperties(); - loadInternalDefaults(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -39,40 +39,59 @@ PropertiesSet::~PropertiesSet() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void PropertiesSet::getMD5(const string& md5, Properties &properties) { + properties.setDefaults(); bool found = false; - // Make sure tree isn't empty - if(myRoot == 0) + // First check our dynamic BST for the object + if(myRoot != 0) { - properties = myDefaultProperties; - return; + bool found = false; + TreeNode* current = myRoot; + + while(current) + { + string currentMd5 = current->props->get(Cartridge_MD5); + + if(currentMd5 == md5) + { + found = true; + break; + } + else + { + if(md5 < currentMd5) + current = current->left; + else + current = current->right; + } + } + + if(found) + properties = *(current->props); } - // Else, do a BST search for the node with the given md5 - TreeNode* current = myRoot; - - while(current) + // Otherwise, search the internal BST array + if(!found) { - string currentMd5 = current->props->get("Cartridge.MD5"); + int i = 0; + while(i < ARRAYSIZE(DefProps)) + { + int cmp = strncmp(md5.c_str(), DefProps[i][Cartridge_MD5], 32); + if(cmp == 0) + { + for(int p = 0; p < LastPropType; ++p) + if(DefProps[i][p] != "") + properties.set((PropertyType)p, DefProps[i][p]); - if(currentMd5 == md5) - { - found = true; - break; - } - else - { - if(md5 < currentMd5) - current = current->left; - else - current = current->right; - } + found = true; + break; + } + else if(cmp < 0) + i = 2*i + 1; // left child + else + i = 2*i + 2; // right child + } } - - if(found) - properties = *(current->props); - else - properties = myDefaultProperties; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -87,8 +106,8 @@ void PropertiesSet::insertNode(TreeNode* &t, const Properties& properties, { if(t) { - string md5 = properties.get("Cartridge.MD5"); - string currentMd5 = t->props->get("Cartridge.MD5"); + string md5 = properties.get(Cartridge_MD5); + string currentMd5 = t->props->get(Cartridge_MD5); if(md5 < currentMd5) insertNode(t->left, properties, save); @@ -138,12 +157,12 @@ void PropertiesSet::load(const string& filename, bool save) break; // Get the property list associated with this profile - Properties properties(myDefaultProperties); - properties.load(in); + Properties prop; + prop.load(in); // If the stream is still good then insert the properties if(in) - insert(properties, save); + insert(prop, save); } if(in) in.close(); @@ -205,46 +224,3 @@ bool PropertiesSet::merge(const Properties& properties, const string& filename) else return false; } - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void PropertiesSet::loadInternalDefaults() -{ -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -const Properties& PropertiesSet::defaultProperties() -{ - // Make sure the pairs are in the default properties object - ourDefaultProperties.set("Cartridge.Cheats", ""); - ourDefaultProperties.set("Cartridge.Filename", ""); - ourDefaultProperties.set("Cartridge.MD5", ""); - ourDefaultProperties.set("Cartridge.Manufacturer", ""); - ourDefaultProperties.set("Cartridge.ModelNo", ""); - ourDefaultProperties.set("Cartridge.Name", "Untitled"); - ourDefaultProperties.set("Cartridge.Note", ""); - ourDefaultProperties.set("Cartridge.Rarity", ""); - ourDefaultProperties.set("Cartridge.Sound", "Mono"); - ourDefaultProperties.set("Cartridge.Type", "AUTO-DETECT"); - - ourDefaultProperties.set("Console.LeftDifficulty", "B"); - ourDefaultProperties.set("Console.RightDifficulty", "B"); - ourDefaultProperties.set("Console.TelevisionType", "Color"); - ourDefaultProperties.set("Console.SwapPorts", "No"); - - ourDefaultProperties.set("Controller.Left", "Joystick"); - ourDefaultProperties.set("Controller.Right", "Joystick"); - - ourDefaultProperties.set("Display.Format", "NTSC"); - ourDefaultProperties.set("Display.XStart", "0"); - ourDefaultProperties.set("Display.Width", "160"); - ourDefaultProperties.set("Display.YStart", "34"); - ourDefaultProperties.set("Display.Height", "210"); - ourDefaultProperties.set("Display.Phosphor", "No"); - - ourDefaultProperties.set("Emulation.HmoveBlanks", "Yes"); - - return ourDefaultProperties; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Properties PropertiesSet::ourDefaultProperties; diff --git a/stella/src/emucore/PropsSet.hxx b/stella/src/emucore/PropsSet.hxx index ea212c278..ec1ff6672 100644 --- a/stella/src/emucore/PropsSet.hxx +++ b/stella/src/emucore/PropsSet.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: PropsSet.hxx,v 1.11 2006-03-03 19:58:35 stephena Exp $ +// $Id: PropsSet.hxx,v 1.12 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #ifndef PROPERTIES_SET_HXX @@ -25,32 +25,6 @@ class Properties; -enum PropertyType { - Cartridge_Cheats, - Cartridge_Filename, - Cartridge_MD5, - Cartridge_Manufacturer, - Cartridge_ModelNo, - Cartridge_Name, - Cartridge_Note, - Cartridge_Rarity, - Cartridge_Sound, - Cartridge_Type, - Console_LeftDifficulty, - Console_RightDifficulty, - Console_TelevisionType, - Console_SwapPorts, - Controller_Left, - Controller_Right, - Display_Format, - Display_XStart, - Display_Width, - Display_YStart, - Display_Height, - Display_Phosphor, - Emulation_HmoveBlanks -}; - /** This class maintains a sorted collection of properties. The objects are maintained in a binary search tree sorted by md5, since this is @@ -143,8 +117,6 @@ class PropertiesSet bool save; }; - void loadInternalDefaults(); - /** Insert a node in the bst, keeping the tree sorted. @@ -177,13 +149,6 @@ class PropertiesSet */ void printNode(TreeNode *node); - /** - Get the default properties object to use for other properties objects - - @return The default properties object - */ - static const Properties& defaultProperties(); - private: // The root of the BST TreeNode* myRoot; @@ -192,10 +157,7 @@ class PropertiesSet uInt32 mySize; // The default properties set - const Properties* myDefaultProperties; - - // Default properties to use for properties objects - static Properties ourDefaultProperties; + Properties myCurrentProperties; }; #endif diff --git a/stella/src/emucore/Settings.cxx b/stella/src/emucore/Settings.cxx index a36e63f2a..c9fed30ba 100644 --- a/stella/src/emucore/Settings.cxx +++ b/stella/src/emucore/Settings.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Settings.cxx,v 1.77 2006-03-01 14:26:40 stephena Exp $ +// $Id: Settings.cxx,v 1.78 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -27,7 +27,7 @@ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Settings::Settings(OSystem* osystem) - : myOSystem(osystem) + : myOSystem(osystem) { // Add this settings object to the OSystem myOSystem->attach(this); diff --git a/stella/src/emucore/Switches.cxx b/stella/src/emucore/Switches.cxx index d75f214df..9afd740d2 100644 --- a/stella/src/emucore/Switches.cxx +++ b/stella/src/emucore/Switches.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Switches.cxx,v 1.4 2005-09-22 22:10:57 stephena Exp $ +// $Id: Switches.cxx,v 1.5 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include "Event.hxx" @@ -25,7 +25,7 @@ Switches::Switches(const Event& event, const Properties& properties) : myEvent(event), mySwitches(0xFF) { - if(properties.get("Console.RightDifficulty", true) == "B") + if(properties.get(Console_RightDifficulty) == "B") { mySwitches &= ~0x80; } @@ -34,7 +34,7 @@ Switches::Switches(const Event& event, const Properties& properties) mySwitches |= 0x80; } - if(properties.get("Console.LeftDifficulty", true) == "B") + if(properties.get(Console_LeftDifficulty) == "B") { mySwitches &= ~0x40; } @@ -43,7 +43,7 @@ Switches::Switches(const Event& event, const Properties& properties) mySwitches |= 0x40; } - if(properties.get("Console.TelevisionType", true) == "COLOR") + if(properties.get(Console_TelevisionType) == "COLOR") { mySwitches |= 0x08; } diff --git a/stella/src/emucore/TIA.cxx b/stella/src/emucore/TIA.cxx index 91ea0d283..d9598d39e 100644 --- a/stella/src/emucore/TIA.cxx +++ b/stella/src/emucore/TIA.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TIA.cxx,v 1.65 2005-12-17 01:23:07 stephena Exp $ +// $Id: TIA.cxx,v 1.66 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -137,8 +137,8 @@ void TIA::reset() // Reset pixel pointer and drawing flag myFramePointer = myCurrentFrameBuffer; - myYStart = atoi(myConsole.properties().get("Display.YStart").c_str()); - myHeight = atoi(myConsole.properties().get("Display.Height").c_str()); + myYStart = atoi(myConsole.properties().get(Display_YStart).c_str()); + myHeight = atoi(myConsole.properties().get(Display_Height).c_str()); // Calculate color clock offsets for starting and stoping frame drawing myStartDisplayOffset = 228 * myYStart; @@ -218,12 +218,12 @@ void TIA::reset() myDumpDisabledCycle = 0; myAllowHMOVEBlanks = - (myConsole.properties().get("Emulation.HmoveBlanks", true) == "YES"); + (myConsole.properties().get(Emulation_HmoveBlanks) == "YES"); - myFrameXStart = atoi(myConsole.properties().get("Display.XStart").c_str()); - myFrameWidth = atoi(myConsole.properties().get("Display.Width").c_str()); - myFrameYStart = atoi(myConsole.properties().get("Display.YStart").c_str()); - myFrameHeight = atoi(myConsole.properties().get("Display.Height").c_str()); + myFrameXStart = atoi(myConsole.properties().get(Display_XStart).c_str()); + myFrameWidth = atoi(myConsole.properties().get(Display_Width).c_str()); + myFrameYStart = atoi(myConsole.properties().get(Display_YStart).c_str()); + myFrameHeight = atoi(myConsole.properties().get(Display_Height).c_str()); // Make sure frameHeight is no less than 190 pixels // This is a hack for the onscreen menus @@ -237,7 +237,7 @@ void TIA::reset() myFrameWidth = 160; } - if(myConsole.properties().get("Display.Format", true) == "PAL") + if(myConsole.properties().get(Display_Format) == "PAL") { myColorLossEnabled = true; myMaximumNumberOfScanlines = 342; @@ -688,8 +688,8 @@ void TIA::updateScanlineByTrace(int target) const uInt32* TIA::palette() const { // See which palette we should be using - string type = mySettings.getString("palette"); - string format = myConsole.properties().get("Display.Format", true); + const string& type = mySettings.getString("palette"); + const string& format = myConsole.properties().get(Display_Format); if(type == "standard") return (format == "PAL") ? ourPALPalette : ourNTSCPalette; diff --git a/stella/src/emucore/stella.pro b/stella/src/emucore/stella.pro index 6caa2d8cf..046db996d 100644 --- a/stella/src/emucore/stella.pro +++ b/stella/src/emucore/stella.pro @@ -786,6 +786,7 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5340" "Cartridge.Rarity" "Uncommon" +"Cartridge.Type" "E0" "" "Cartridge.MD5" "0890a5b089191f45d0f08dd1e3235687" @@ -9080,6 +9081,7 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" +"Cartridge.Type" "DPC" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -12650,6 +12652,7 @@ "Cartridge.ModelNo" "4L-2737" "Cartridge.Note" "Set right difficulty to 'A' for Booster-Grip in both ports" "Cartridge.Rarity" "Uncommon" +"Cartridge.Type" "FASC" "Console.RightDifficulty" "A" "Controller.Left" "Booster-Grip" "Controller.Right" "Booster-Grip" @@ -14612,6 +14615,7 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5080" "Cartridge.Rarity" "Rare" +"Cartridge.Type" "E0" "Display.Height" "180" "Display.YStart" "47" "Display.Phosphor" "Yes" @@ -15688,6 +15692,7 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" +"Cartridge.Type" "E0" "Display.Height" "206" "Display.YStart" "37" "" @@ -16132,6 +16137,7 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5370" "Cartridge.Rarity" "Common" +"Cartridge.Type" "E0" "Display.Phosphor" "Yes" "" @@ -18115,7 +18121,7 @@ "Cartridge.MD5" "df5cc5cccdc140eb7107f5b8adfacda1" "Cartridge.Name" "Lumberman by Cracker Jack Productions (Pac-Man Hack)" -"Cartidge.Note" "Hack of Pac-Man (1981) (Atari)" +"Cartridge.Note" "Hack of Pac-Man (1981) (Atari)" "Cartridge.Manufacturer" "Cracker Jack Productions" "Cartridge.Rarity" "New Release (Hack)" "Cartridge.Type" "4K" @@ -20998,4 +21004,3 @@ "Display.Width" "144" "Display.XStart" "8" "" - diff --git a/stella/src/gui/EventMappingWidget.cxx b/stella/src/gui/EventMappingWidget.cxx index be0e83120..f1495cc8e 100644 --- a/stella/src/gui/EventMappingWidget.cxx +++ b/stella/src/gui/EventMappingWidget.cxx @@ -13,12 +13,14 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: EventMappingWidget.cxx,v 1.13 2006-03-02 13:10:53 stephena Exp $ +// $Id: EventMappingWidget.cxx,v 1.14 2006-03-05 01:18:42 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project //============================================================================ +#include + #include "OSystem.hxx" #include "Widget.hxx" #include "StringListWidget.hxx" @@ -127,11 +129,12 @@ void EventMappingWidget::startRemapping() myCancelMapButton->setEnabled(true); // And show a message indicating which key is being remapped - string buf = "Select action for '" + - EventHandler::ourActionList[ myActionSelected ].action + - "' event"; + ostringstream buf; + buf << "Select action for '" + << EventHandler::ourActionList[ myActionSelected ].action + << "' event"; myKeyMapping->setColor(kTextColorEm); - myKeyMapping->setLabel(buf); + myKeyMapping->setLabel(buf.str()); // Make sure that this widget receives all events, // and they aren't handled anywhere else @@ -180,9 +183,10 @@ void EventMappingWidget::drawKeyMapping() { if(myActionSelected >= 0) { - string buf = "Action: " + EventHandler::ourActionList[ myActionSelected ].key; + ostringstream buf; + buf << "Action: " << EventHandler::ourActionList[ myActionSelected ].key; myKeyMapping->setColor(kTextColor); - myKeyMapping->setLabel(buf); + myKeyMapping->setLabel(buf.str()); } } diff --git a/stella/src/gui/GameInfoDialog.cxx b/stella/src/gui/GameInfoDialog.cxx index 474156b9d..ad151b67b 100644 --- a/stella/src/gui/GameInfoDialog.cxx +++ b/stella/src/gui/GameInfoDialog.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: GameInfoDialog.cxx,v 1.23 2006-02-22 17:38:04 stephena Exp $ +// $Id: GameInfoDialog.cxx,v 1.24 2006-03-05 01:18:42 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -113,7 +113,7 @@ GameInfoDialog::GameInfoDialog( myType = new PopUpWidget(myTab, font, xpos+lwidth, ypos, pwidth, lineHeight, "", 0, 0); for(i = 0; i < 21; ++i) - myType->appendEntry(ourCartridgeList[i].name, i+1); + myType->appendEntry(ourCartridgeList[i][0], i+1); wid.push_back(myType); // Add items for tab 0 @@ -178,7 +178,7 @@ GameInfoDialog::GameInfoDialog( myLeftController = new PopUpWidget(myTab, font, xpos+lwidth, ypos, pwidth, lineHeight, "", 0, 0); for(i = 0; i < 5; ++i) - myLeftController->appendEntry(ourControllerList[i].name, i+1); + myLeftController->appendEntry(ourControllerList[i][0], i+1); wid.push_back(myLeftController); ypos += lineHeight + 3; @@ -187,7 +187,7 @@ GameInfoDialog::GameInfoDialog( myRightController = new PopUpWidget(myTab, font, xpos+lwidth, ypos, pwidth, lineHeight, "", 0, 0); for(i = 0; i < 5; ++i) - myRightController->appendEntry(ourControllerList[i].name, i+1); + myRightController->appendEntry(ourControllerList[i][0], i+1); wid.push_back(myRightController); // Add items for tab 2 @@ -289,25 +289,25 @@ void GameInfoDialog::loadConfig() int i; // Cartridge properties - s = myGameProperties->get("Cartridge.Name"); + s = myGameProperties->get(Cartridge_Name); myName->setEditString(s); - s = myGameProperties->get("Cartridge.MD5"); + s = myGameProperties->get(Cartridge_MD5); myMD5->setLabel(s); - s = myGameProperties->get("Cartridge.Manufacturer"); + s = myGameProperties->get(Cartridge_Manufacturer); myManufacturer->setEditString(s); - s = myGameProperties->get("Cartridge.ModelNo"); + s = myGameProperties->get(Cartridge_ModelNo); myModelNo->setEditString(s); - s = myGameProperties->get("Cartridge.Rarity"); + s = myGameProperties->get(Cartridge_Rarity); myRarity->setEditString(s); - s = myGameProperties->get("Cartridge.Note"); + s = myGameProperties->get(Cartridge_Note); myNote->setEditString(s); - s = myGameProperties->get("Cartridge.Sound", true); + s = myGameProperties->get(Cartridge_Sound); if(s == "MONO") mySound->setSelectedTag(1); else if(s == "STEREO") @@ -315,17 +315,17 @@ void GameInfoDialog::loadConfig() else mySound->setSelectedTag(0); - s = myGameProperties->get("Cartridge.Type", true); + s = myGameProperties->get(Cartridge_Type); for(i = 0; i < 21; ++i) { - if(s == ourCartridgeList[i].comparitor) + if(s == ourCartridgeList[i][1]) break; } i = (i == 21) ? 0: i + 1; myType->setSelectedTag(i); // Console properties - s = myGameProperties->get("Console.LeftDifficulty", true); + s = myGameProperties->get(Console_LeftDifficulty); if(s == "B") myLeftDiff->setSelectedTag(1); else if(s == "A") @@ -333,7 +333,7 @@ void GameInfoDialog::loadConfig() else myLeftDiff->setSelectedTag(0); - s = myGameProperties->get("Console.RightDifficulty", true); + s = myGameProperties->get(Console_RightDifficulty); if(s == "B") myRightDiff->setSelectedTag(1); else if(s == "A") @@ -341,7 +341,7 @@ void GameInfoDialog::loadConfig() else myRightDiff->setSelectedTag(0); - s = myGameProperties->get("Console.TelevisionType", true); + s = myGameProperties->get(Console_TelevisionType); if(s == "COLOR") myTVType->setSelectedTag(1); else if(s == "BLACKANDWHITE") @@ -349,7 +349,7 @@ void GameInfoDialog::loadConfig() else myTVType->setSelectedTag(0); - s = myGameProperties->get("Console.SwapPorts", true); + s = myGameProperties->get(Console_SwapPorts); if(s == "YES") mySwapPorts->setSelectedTag(1); else if(s == "NO") @@ -358,26 +358,26 @@ void GameInfoDialog::loadConfig() mySwapPorts->setSelectedTag(0); // Controller properties - s = myGameProperties->get("Controller.Left", true); + s = myGameProperties->get(Controller_Left); for(i = 0; i < 5; ++i) { - if(s == ourControllerList[i].comparitor) + if(s == ourControllerList[i][1]) break; } i = (i == 5) ? 0: i + 1; myLeftController->setSelectedTag(i); - s = myGameProperties->get("Controller.Right", true); + s = myGameProperties->get(Controller_Right); for(i = 0; i < 5; ++i) { - if(s == ourControllerList[i].comparitor) + if(s == ourControllerList[i][1]) break; } i = (i == 5) ? 0: i + 1; myRightController->setSelectedTag(i); // Display properties - s = myGameProperties->get("Display.Format", true); + s = myGameProperties->get(Display_Format); if(s == "NTSC") myFormat->setSelectedTag(1); else if(s == "PAL") @@ -385,19 +385,19 @@ void GameInfoDialog::loadConfig() else myFormat->setSelectedTag(0); - s = myGameProperties->get("Display.XStart"); + s = myGameProperties->get(Display_XStart); myXStart->setEditString(s); - s = myGameProperties->get("Display.Width"); + s = myGameProperties->get(Display_Width); myWidth->setEditString(s); - s = myGameProperties->get("Display.YStart"); + s = myGameProperties->get(Display_YStart); myYStart->setEditString(s); - s = myGameProperties->get("Display.Height"); + s = myGameProperties->get(Display_Height); myHeight->setEditString(s); - s = myGameProperties->get("Display.Phosphor", true); + s = myGameProperties->get(Display_Phosphor); if(s == "YES") myPhosphor->setSelectedTag(1); else if(s == "NO") @@ -405,7 +405,7 @@ void GameInfoDialog::loadConfig() else myPhosphor->setSelectedTag(0); - s = myGameProperties->get("Emulation.HmoveBlanks", true); + s = myGameProperties->get(Emulation_HmoveBlanks); if(s == "YES") myHmoveBlanks->setSelectedTag(1); else if(s == "NO") @@ -424,30 +424,30 @@ void GameInfoDialog::saveConfig() // Cartridge properties s = myName->getEditString(); - myGameProperties->set("Cartridge.Name", s); + myGameProperties->set(Cartridge_Name, s); s = myManufacturer->getEditString(); - myGameProperties->set("Cartridge.Manufacturer", s); + myGameProperties->set(Cartridge_Manufacturer, s); s = myModelNo->getEditString(); - myGameProperties->set("Cartridge.ModelNo", s); + myGameProperties->set(Cartridge_ModelNo, s); s = myRarity->getEditString(); - myGameProperties->set("Cartridge.Rarity", s); + myGameProperties->set(Cartridge_Rarity, s); s = myNote->getEditString(); - myGameProperties->set("Cartridge.Note", s); + myGameProperties->set(Cartridge_Note, s); tag = mySound->getSelectedTag(); s = (tag == 1) ? "Mono" : "Stereo"; - myGameProperties->set("Cartridge.Sound", s); + myGameProperties->set(Cartridge_Sound, s); tag = myType->getSelectedTag(); for(i = 0; i < 21; ++i) { if(i == tag-1) { - myGameProperties->set("Cartridge.Type", ourCartridgeList[i].comparitor); + myGameProperties->set(Cartridge_Type, ourCartridgeList[i][1]); break; } } @@ -455,19 +455,19 @@ void GameInfoDialog::saveConfig() // Console properties tag = myLeftDiff->getSelectedTag(); s = (tag == 1) ? "B" : "A"; - myGameProperties->set("Console.LeftDifficulty", s); + myGameProperties->set(Console_LeftDifficulty, s); tag = myRightDiff->getSelectedTag(); s = (tag == 1) ? "B" : "A"; - myGameProperties->set("Console.RightDifficulty", s); + myGameProperties->set(Console_RightDifficulty, s); tag = myTVType->getSelectedTag(); s = (tag == 1) ? "Color" : "BlackAndWhite"; - myGameProperties->set("Console.TelevisionType", s); + myGameProperties->set(Console_TelevisionType, s); tag = mySwapPorts->getSelectedTag(); s = (tag == 1) ? "Yes" : "No"; - myGameProperties->set("Console.SwapPorts", s); + myGameProperties->set(Console_SwapPorts, s); // Controller properties tag = myLeftController->getSelectedTag(); @@ -475,7 +475,7 @@ void GameInfoDialog::saveConfig() { if(i == tag-1) { - myGameProperties->set("Controller.Left", ourControllerList[i].name); + myGameProperties->set(Controller_Left, ourControllerList[i][0]); break; } } @@ -485,7 +485,7 @@ void GameInfoDialog::saveConfig() { if(i == tag-1) { - myGameProperties->set("Controller.Right", ourControllerList[i].name); + myGameProperties->set(Controller_Right, ourControllerList[i][0]); break; } } @@ -493,27 +493,27 @@ void GameInfoDialog::saveConfig() // Display properties tag = myFormat->getSelectedTag(); s = (tag == 1) ? "NTSC" : "PAL"; - myGameProperties->set("Display.Format", s); + myGameProperties->set(Display_Format, s); s = myXStart->getEditString(); - myGameProperties->set("Display.XStart", s); + myGameProperties->set(Display_XStart, s); s = myWidth->getEditString(); - myGameProperties->set("Display.Width", s); + myGameProperties->set(Display_Width, s); s = myYStart->getEditString(); - myGameProperties->set("Display.YStart", s); + myGameProperties->set(Display_YStart, s); s = myHeight->getEditString(); - myGameProperties->set("Display.Height", s); + myGameProperties->set(Display_Height, s); tag = myPhosphor->getSelectedTag(); s = (tag == 1) ? "Yes" : "No"; - myGameProperties->set("Display.Phosphor", s); + myGameProperties->set(Display_Phosphor, s); tag = myHmoveBlanks->getSelectedTag(); s = (tag == 1) ? "Yes" : "No"; - myGameProperties->set("Emulation.HmoveBlanks", s); + myGameProperties->set(Emulation_HmoveBlanks, s); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -534,24 +534,18 @@ void GameInfoDialog::handleCommand(CommandSender* sender, int cmd, } } -// FIXME - the following should be handled in a better way // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#ifndef _WIN32_WCE -const PropType GameInfoDialog::ourControllerList[5] = { +const char* GameInfoDialog::ourControllerList[5][2] = { { "Booster-Grip", "BOOSTER-GRIP" }, { "Driving", "DRIVING" }, { "Keyboard", "KEYBOARD" }, { "Paddles", "PADDLES" }, { "Joystick", "JOYSTICK" } }; -#else -const PropType GameInfoDialog::ourControllerList[5]; -#endif // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#ifndef _WIN32_WCE -const PropType GameInfoDialog::ourCartridgeList[21] = { - { "Auto-detect", "AUTO-DETECT" }, +const char* GameInfoDialog::ourCartridgeList[21][2] = { + { "Auto-detect", "AUTO-DETECT" }, { "2K (2K Atari)", "2K" }, { "3E (32K Tigervision)", "3E" }, { "3F (512K Tigervision)", "3F" }, @@ -573,6 +567,3 @@ const PropType GameInfoDialog::ourCartridgeList[21] = { { "MC (C. Wilkson Megacart)", "MC" }, { "UA (8K UA Ltd.)", "UA" } }; -#else -const PropType GameInfoDialog::ourCartridgeList[21]; -#endif diff --git a/stella/src/gui/GameInfoDialog.hxx b/stella/src/gui/GameInfoDialog.hxx index e992bba66..8f484dfe1 100644 --- a/stella/src/gui/GameInfoDialog.hxx +++ b/stella/src/gui/GameInfoDialog.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: GameInfoDialog.hxx,v 1.15 2006-02-22 17:38:04 stephena Exp $ +// $Id: GameInfoDialog.hxx,v 1.16 2006-03-05 01:18:42 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -34,12 +34,6 @@ class Properties; #include "Dialog.hxx" #include "Command.hxx" -// Structure used for cartridge and controller types -struct PropType { - string name; - string comparitor; -}; - class GameInfoDialog : public Dialog, public CommandSender { public: @@ -86,14 +80,20 @@ class GameInfoDialog : public Dialog, public CommandSender PopUpWidget* myPhosphor; PopUpWidget* myHmoveBlanks; + // Structure used for cartridge and controller types + struct PropType { + const char* name; + const char* comparitor; + }; + /** Game properties for currently loaded ROM */ Properties* myGameProperties; /** Holds static strings for Cartridge type */ - static const PropType ourCartridgeList[21]; + static const char* ourCartridgeList[21][2]; /** Holds static strings for Controller type */ - static const PropType ourControllerList[5]; + static const char* ourControllerList[5][2]; }; #endif diff --git a/stella/src/gui/LauncherDialog.cxx b/stella/src/gui/LauncherDialog.cxx index 700702270..67c2df8df 100644 --- a/stella/src/gui/LauncherDialog.cxx +++ b/stella/src/gui/LauncherDialog.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: LauncherDialog.cxx,v 1.39 2006-02-22 17:38:04 stephena Exp $ +// $Id: LauncherDialog.cxx,v 1.40 2006-03-05 01:18:42 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -283,8 +283,8 @@ void LauncherDialog::loadListFromDisk() // from the PropertiesSet (stella.pro) md5 = MD5FromFile(rom); instance()->propSet().getMD5(md5, props); - name = props.get("Cartridge.Name"); - note = props.get("Cartridge.Note"); + name = props.get(Cartridge_Name); + note = props.get(Cartridge_Note); // Indicate that this ROM doesn't have a properties entry myGameList->appendGame(rom, name, note); diff --git a/stella/src/tools/Btrees.pm b/stella/src/tools/Btrees.pm new file mode 100644 index 000000000..b69f63275 --- /dev/null +++ b/stella/src/tools/Btrees.pm @@ -0,0 +1,328 @@ + +package Btrees; +$VERSION=1.00; + +require 5.000; +require Exporter; + +=head1 NAME + + Btrees - Binary trees using the AVL balancing method. + +=head1 SYNOPSIS + + # yes, do USE the package ... + use Btrees; + + # no constructors + + # traverse a tree and invoke a function + traverse( $tree, $func ); + + # add a node in a balanced tree, rebalancing if required + ($tree, $node) = bal_tree_add( $tree, $val, $cmp ) + +=head1 DESCRIPTION + + Btrees uses the AVL balancing method, by G. M. Adelson-Velskii + and E.M. Landis. Bit scavenging, as done in low level languages like + C, is not used for height balancing since this is too expensive for + an interpreter. Instead the actual height of each subtree is stored + at each node. A null pointer has a height of zero. A leaf a height of + 1. A nonleaf a height of 1 greater than the height of its two children. + +=head1 AUTHOR + + Ron Squiers (ron@broadcom.com). Adapted from "Mastering Algorithms with + Perl" by Jon Orwant, Jarkko Hietaniemi & John Macdonald. Copyright + 1999 O'Reilly and Associates, Inc. All right reserved. ISBN: 1-56592-398-7 + +=cut + +@ISA = qw(Exporter); +@EXPORT = qw( bal_tree_add label_tree ); + +######################################### +# +# Method: label_tree +# +# label_tree( $tree, $func ); +# +sub label_tree { + my $tree = shift or return undef; + my $func = shift or return undef; + + $tree->{index} = 0; + + # Label all nodes with their respective indices + sub label_node { + my $tree = shift; + + &$func( $tree ); + + if (defined $tree->{left}) { + $tree->{left}->{index} = 2 * $tree->{index} + 1; + } + if (defined $tree->{right}) { + $tree->{right}->{index} = 2 * $tree->{index} + 2; + } + } + preorder_traverse( $tree, \&label_node ); +} + +######################################### +# +# Method: inorder_traverse +# +# Traverse $tree in order, calling $func() for each element. +# in turn +# inorder_traverse( $tree, $func ); +# +sub inorder_traverse { + my $tree = shift or return; # skip undef pointers + my $func = shift; + + inorder_traverse( $tree->{left}, $func ); + &$func( $tree ); + inorder_traverse( $tree->{right}, $func ); +} + +######################################### +# +# Method: preorder_traverse +# +# Traverse $tree in preorder form, calling $func() for each element. +# in turn +# preorder_traverse( $tree, $func ); +# +sub preorder_traverse { + my $tree = shift or return; # skip undef pointers + my $func = shift; + + &$func( $tree ); + preorder_traverse( $tree->{left}, $func ); + preorder_traverse( $tree->{right}, $func ); +} + +######################################### +# +# Method: bal_tree_add +# +# Search $tree looking for a node that has the value $val, +# add it if it does not already exist. +# If provided, $cmp compares values instead of <=>. +# +# ($tree, $node) = bal_tree_add( $tree, $val, $cmp ) +# the return values: +# $tree points to the (possible new or changed) subtree that +# has resulted from the add operation. +# $node points to the (possibly new) node that contains $val +# +sub bal_tree_add { + my( $tree, $val, $cmp) = @_; + my $result; + + unless ( $tree ) { + $result = { + left => undef, + right => undef, + val => $val, + index => -1, + height => 1 + }; + return( $result, $result ); + } + + my $relation = defined $cmp + ? $cmp->( $val, $tree->{val} ) + : $val <=> $tree->{val}; + + ### Stop when the desired node if found. + return ( $tree, $tree ) if $relation == 0; + + ### Add to the correct subtree. + if( $relation < 0 ) { + ($tree->{left}, $result) = + bal_tree_add ( $tree->{left}, $val, $cmp ); + } else { + ($tree->{right}, $result) = + bal_tree_add ( $tree->{right}, $val, $cmp ); + } + + ### Make sure that this level is balanced, return the + ### (possibly changed) top and the (possibly new) selected node. + return ( balance_tree( $tree ), $result ); +} + +######################################### +# +# Method: balance_tree +# +# Balance a potentially out of balance tree +# +# the return values: +# $tree points to the balanced tree root +# +sub balance_tree { + ### An empty tree is balanced already. + my $tree = shift or return undef; + + ### An empty link is height 0. + my $lh = defined $tree->{left} && $tree->{left}{height}; + my $rh = defined $tree->{right} && $tree->{right}{height}; + + ### Rebalance if needed, return the (possibly changed) root. + if ( $lh > 1+$rh ) { + return swing_right( $tree ); + } elsif ( $lh+1 < $rh ) { + return swing_left( $tree ); + } else { + ### Tree is either perfectly balanced or off by one. + ### Just fix its height. + set_height( $tree ); + return $tree; + } +} + +######################################### +# +# Method: set_height +# +# Set height of a node +# +sub set_height { + my $tree = shift; + + my $p; + ### get heights, an undef node is height 0. + my $lh = defined ( $p = $tree->{left} ) && $p->{height}; + my $rh = defined ( $p = $tree->{right} ) && $p->{height}; + $tree->{height} = $lh < $rh ? $rh+1 : $lh+1; +} + +######################################### +# +# Method: $tree = swing_left( $tree ) +# +# Change t to r or rl +# / \ / \ / \ +# l r t rr t r +# / \ / \ / \ / \ +# rl rr l rl l rll rlr rr +# / \ / \ +# rll rlr rll rlr +# +# t and r must both exist. +# The second form is used if height of rl is greater than height of rr +# (since the form would then lead to the height of t at least 2 more +# than the height of rr). +# +# changing to the second form is done in two steps, with first a move_right(r) +# and then a move_left(t), so it goes: +# +# Change t to t and then to rl +# / \ / \ / \ +# l r l rl t r +# / \ / \ / \ / \ +# rl rr rll r l rll rlr rr +# / \ / \ +# rll rlr rlr rr +# +sub swing_left { + my $tree = shift; + + my $r = $tree->{right}; # must exist + my $rl = $r->{left}; # might exist + my $rr = $r->{right}; # might exist + my $l = $tree->{left}; # might exist + + ### get heights, an undef node has height 0 + my $lh = $l && $l->{height} || 0; + my $rlh = $rl && $rl->{height} || 0; + my $rrh = $rr && $rr->{height} || 0; + + if ( $rlh > $rrh ) { + $tree->{right} = move_right( $r ); + } + + return move_left( $tree ); +} + +# and the opposite swing + +sub swing_right { + my $tree = shift; + + my $l = $tree->{left}; # must exist + my $lr = $l->{right}; # might exist + my $ll = $l->{left}; # might exist + my $r = $tree->{right}; # might exist + + ### get heights, an undef node has height 0 + my $rh = $r && $r->{height} || 0; + my $lrh = $lr && $lr->{height} || 0; + my $llh = $ll && $ll->{height} || 0; + + if ( $lrh > $llh ) { + $tree->{left} = move_left( $l ); + } + + return move_right( $tree ); +} + +######################################### +# +# Method: $tree = move_left( $tree ) +# +# Change t to r +# / \ / \ +# l r t rr +# / \ / \ +# rl rr l rl +# +# caller has determined that t and r both exist +# (l can be undef, so can one of rl and rr) +# +sub move_left { + my $tree = shift; + my $r = $tree->{right}; + my $rl = $r->{left}; + + $tree->{right} = $rl; + $r->{left} = $tree; + set_height( $tree ); + set_height( $r ); + return $r; +} + +######################################### +# +# Method: $tree = move_right( $tree ) +# +# Change t to l +# / \ / \ +# l r ll t +# / \ / \ +# ll lr lr r +# +# caller has determined that t and l both exist +# (r can be undef, so can one of ll and lr) +# +sub move_right { + my $tree = shift; + my $l = $tree->{left}; + my $lr = $l->{right}; + + $tree->{left} = $lr; + $l->{right} = $tree; + set_height( $tree ); + set_height( $l ); + return $l; +} + +######################################### +# That's all folks ... +######################################### +# +1; # so that use() returns true + diff --git a/stella/src/tools/create_props.pl b/stella/src/tools/create_props.pl new file mode 100755 index 000000000..6f2b345d4 --- /dev/null +++ b/stella/src/tools/create_props.pl @@ -0,0 +1,213 @@ +#!/usr/bin/perl + +use Btrees; + +my @props = (); +my @propset = (); +my @propset_ordered = (); + +my %proptype = ( +"Cartridge.MD5" => 0, +"Cartridge.Manufacturer" => 1, +"Cartridge.ModelNo" => 2, +"Cartridge.Name" => 3, +"Cartridge.Note" => 4, +"Cartridge.Rarity" => 5, +"Cartridge.Sound" => 6, +"Cartridge.Type" => 7, +"Console.LeftDifficulty" => 8, +"Console.RightDifficulty" => 9, +"Console.TelevisionType" => 10, +"Console.SwapPorts" => 11, +"Controller.Left" => 12, +"Controller.Right" => 13, +"Display.Format" => 14, +"Display.XStart" => 15, +"Display.Width" => 16, +"Display.YStart" => 17, +"Display.Height" => 18, +"Display.Phosphor" => 19, +"Emulation.HmoveBlanks" => 20 +); + +my @prop_defaults = ( + "", + "", + "", + "Untitled", + "", + "", + "MONO", + "AUTO-DETECT", + "B", + "B", + "COLOR", + "NO", + "JOYSTICK", + "JOYSTICK", + "NTSC", + "0", + "160", + "34", + "210", + "NO", + "YES" +); + + +@props = (); +while(($key, $value) = each(%proptype)) { + $props[$value] = ""; +} + +print "@ARGV\n"; +usage() if @ARGV != 2; + +# Must provide input and output files +open(INFILE, "$ARGV[0]"); +open(OUTFILE, ">$ARGV[1]"); + +# Parse the properties file into an array of property objects +foreach $line () { + chomp $line; + + # Start a new item + if ($line =~ /^""/) { + push @propset, [ @props ]; + + undef @props; + while(($key, $value) = each(%proptype)) { + $props[$value] = ""; + } + } elsif ($line !~ /^$/) { + ($key, $value) = ($line =~ m/"(.*)" "(.*)"/); + if (defined $proptype{$key}) { + $index = $proptype{$key}; + $props[$index] = $value; + } else { + print "Invalid key = \'$key\' for md5 = \'$props[0]\', ignoring ...\n"; + } + } +} + +# Fill the AVL tree with property indices +my $tree; +for($i = 0; $i < @propset; $i++) { + my $value = $propset[$i][$proptype{'Cartridge.MD5'}]; +# printf "Adding $value to tree\n"; + ($tree, $node) = bal_tree_add($tree, $i, \&compare); +} +printf "\n"; + +# Fill the results tree with the appropriate number of items +my $height = $tree->{height}; +my $size = 2 ** $height - 1; +printf "Tree has height = $height, output BST array will have size = $size\n"; +for($i = 0; $i < $size; $i++) { + $propset_ordered[$i] = -1; +} + +# Label the tree nodes by index into a BST array +label_tree($tree, \&store); +printf "\n"; + + +# Construct the output file in C++ format +# Walk the results array and print each item +# This array will now contain the original tree converted to a BST in array format +print OUTFILE "#ifndef DEF_PROPS_HXX\n"; +print OUTFILE "#define DEF_PROPS_HXX\n"; +print OUTFILE "\n"; +print OUTFILE "/**\n"; +print OUTFILE " This code is generated using the 'create_props.pl' script,\n"; +print OUTFILE " located in the src/tools directory. All properties changes\n"; +print OUTFILE " should be made in stella.pro, and then this file should be\n"; +print OUTFILE " regenerated and the application recompiled.\n"; +print OUTFILE "*/\n"; +print OUTFILE "static const char* DefProps[][" . keys( %proptype ) . "] = {\n"; +for ($i = 0; $i < @propset_ordered; $i++) { + my $idx = $propset_ordered[$i]; + if ($idx != -1) { + print OUTFILE get_prop($idx); + } else { + print OUTFILE blank_prop(); + } + + if ($i+1 < @propset_ordered) { + print OUTFILE ", "; + } + print OUTFILE "\n"; +} +print OUTFILE "};\n"; +print OUTFILE "\n"; +print OUTFILE "#endif\n"; + +close(INFILE); +close(OUTFILE); + + +sub usage { + print "create_props.pl \n"; + exit(0); +} + +sub compare { + my ($first, $second) = @_; + + my $first_md5 = $propset[$first][$proptype{'Cartridge.MD5'}]; + my $second_md5 = $propset[$second][$proptype{'Cartridge.MD5'}]; + + if ($first_md5 lt $second_md5) { + return -1; + } elsif ($first_md5 gt $second_md5) { + return 1; + } else { + return 0; + } +} + +sub store { + my $tree = shift; + + $propset_ordered[$tree->{index}] = $tree->{val}; +} + +sub get_prop { + my $idx = shift; + + my $arr = $propset[$idx]; + my @array = @$arr; + + my $result = " { "; + + my @items = (); + for (my $i = 0; $i < @array; $i++) { + if($prop_defaults[$i] ne $array[$i]) { + push(@items, "\"$array[$i]\""); + } else { + push(@items, "\"\""); + } + } + + $result .= join(", ", @items); + $result .= " }"; + + return $result; +} + +sub blank_prop { + my $arr = $propset[$idx]; + my @array = @$arr; + + my $result = " { "; + + my @items = (); + for my $key ( keys %proptype) { + push(@items, "\"\""); + } + + $result .= join(", ", @items); + $result .= " }"; + + return $result; +} diff --git a/stella/src/unix/OSystemUNIX.cxx b/stella/src/unix/OSystemUNIX.cxx index a28ac099a..7dfb59eef 100644 --- a/stella/src/unix/OSystemUNIX.cxx +++ b/stella/src/unix/OSystemUNIX.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystemUNIX.cxx,v 1.15 2006-01-15 20:46:20 stephena Exp $ +// $Id: OSystemUNIX.cxx,v 1.16 2006-03-05 01:18:42 stephena Exp $ //============================================================================ #include @@ -157,9 +157,9 @@ void OSystemUNIX::mainLoop() cout << numberOfFrames << " total frames drawn\n"; cout << framesPerSecond << " frames/second\n"; cout << endl; - cout << "Cartridge Name: " << myConsole->properties().get("Cartridge.Name"); + cout << "Cartridge Name: " << myConsole->properties().get(Cartridge_Name); cout << endl; - cout << "Cartridge MD5: " << myConsole->properties().get("Cartridge.MD5"); + cout << "Cartridge MD5: " << myConsole->properties().get(Cartridge_MD5); cout << endl << endl; } }