diff --git a/Makefile b/Makefile
index c1ec337..6068b55 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ MAKEFLAGS += --no-print-directory
#---------------------------------------------------------------------------------
# any extra libraries we wish to link with the project
#---------------------------------------------------------------------------------
-LIBS := -lgcc -lfat -liosuhax -lxml2
+LIBS := -lgcc -lfat -liosuhax -lxml2 -lm
#---------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level containing
diff --git a/README.md b/README.md
index 49d4410..cb808fe 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,84 @@
-Wii U Menu Sort
-ver 0.2.0
+# Wii U Menu Sort
-WARNING: TRY ON REDNAND FIRST.
-I am not responsible for bricked consoles.
+:warning: **WARNING**: If you're not sure try on rednand first. I am not responsible for bricked consoles.
-That said, I tried 10 sorts on 2 accounts on USA sysNAND without issue.
+> That said, I tried 10 sorts on 2 accounts on USA sysNAND without issue.
+> @Yardape8000
+
+### Description
This will allow you to alphabetically sort your icons on the Wii U Menu.
Icons in folders are also sorted.
Sorts are done per user account.
-Not much is shown for a UI. It will just start sorting and tell you when it is done in 5-10s.
+Not much is shown for a UI. It will just start sorting and tell you when it is done in 5-10s.
The following items will not move:
Folders and system icons (Disc, Settings, etc)
Homebrew Launcher
CHBC (untested)
-Any IDs specified in dontmove.hex
+Any IDs specified in [dontmove.txt](dontmove.txt).
+
+### Sorting modes
+
+1. _Standard sorting_: sorts titles alphabetically.
+2. _Standard sorting(ignoring leading 'The')_: sorts titles alphabetically, ignoring a leading 'The' in the titles name.
+3. _Bad naming mode sorting_: sorts titles alphabetically by group names(see _Titles map list_).
+4. _Bad naming mode sorting(ignoring leading 'The')_: sorts titles alphabetically by group names(see _Titles map list_), ignoring a leading 'The' in the titles name.
+
+You can try different sorting modes to see what works for you. Every time the app is executed it'll sort all titles based on the selected sorting mode.
-dontmove.hex must be edited with a hex editor. Do Not use notepad, etc.
+### Don't move list
+
+You can override the default [dontmove.txt](dontmove.txt) with your custom list.
Only use the last 4 bytes of the title ID.
The included sample file has:
-10 17 9B 00 Brain Age: Train Your Brain In Minutes A Day
-10 10 5A 00 Netflix
-10 10 57 00 YouTube
-4bytes * 3 titles = 12byte file.
+
+```
+10179B00 # Brain Age: Train Your Brain In Minutes A Day
+10105A00 # Netflix
+10105700 # YouTube
+```
+
The file can be as large or small as you want, depending on the IDs you don't want to move.
-It must be a multiple of 4 bytes.
-You can also use dontmoveX.hex where X is 0-9, or A or B.
+You can also use
dontmoveX.txt
where **`X`** is `0-9`, or `A` or `B`.
This allows each user to have separate selection of non-movable icons.
-This is the last digit of the 8000000X save folder used by the current user.
-Shown by the program as User ID: X
+This is the last digit of the `8000000X` save folder used by the current user.
+Shown by the program as User ID: `X`
+
+`dontmoveX.txt` takes priority over `dontmove.txt`.
+Only 1 file is used. The IDs are not merged.
+You can delete the files if not needed.
+
+**NOTE**: Don't forget to insert newline at the end of the `dontmove.txt` file.
+
+### Titles map
+
+You can override the default [titlesmap.psv](titlesmap.psv) with your custom map.
+The file format is the following:
+```
+titleId#1|groupName
+titleId#2|groupName
+titleId#3|groupName
+...
+titleId#N|groupName
+```
+
+The included map has `6951` titles matched in groups. When _Bad naming mode sorting_ is chosen the title will be sorted based on the group and title name. If title is missing from the map it will sort it by name only.
+
+The file can be as large or small as you want.
+
+You can also use titlesmapX.psv
where **`X`** is `0-9`, or `A` or `B`.
+This allows each user to have separate selection of title maps.
+This is the last digit of the `8000000X` save folder used by the current user.
+Shown by the program as User ID: `X`
-dontmoveX.hex takes priority over dontmove.hex.
-Only 1 file is used. The IDs are not merged.
+`titlesmapX.psv` takes priority over `titlesmap.psv`.
+Only 1 file is used. The IDs are not merged.
You can delete the files if not needed.
-It just does a basic string compare. Not sure how well it will work in foreign languages.
-Will have to find a small UTF-8 normalize library.
+### Build
-You will need to compile the Wii U version of libfat.
-https://github.com/dimok789/libfat
-make from the wiiu\ directory.
-Copy the headers and complied library to portlibs\ppc\...
+You will need to compile the Wii U version of [libfat](https://github.com/dimok789/libfat).
+make from the `wiiu\` directory.
+Copy the headers and complied library to `portlibs\ppc\`.
diff --git a/dontmove.hex b/dontmove.hex
deleted file mode 100644
index cb26a74..0000000
Binary files a/dontmove.hex and /dev/null differ
diff --git a/dontmove.txt b/dontmove.txt
new file mode 100644
index 0000000..f5a3b55
--- /dev/null
+++ b/dontmove.txt
@@ -0,0 +1,3 @@
+10179B00 # Brain Age: Train Your Brain In Minutes A Day
+10105A00 # Netflix
+10105700 # YouTube
diff --git a/meta/meta.xml b/meta/meta.xml
index 429c008..cf80048 100644
--- a/meta/meta.xml
+++ b/meta/meta.xml
@@ -1,9 +1,9 @@
Menu Sort
- Yardape8000 & doino-gretchenliev
- 0.2.0
- 20200430000000
+ doino-gretchenliev
+ 1.0.0
+ 20200504000000
WiiU Menu Sort
Sorts items on Wii U Menu.
diff --git a/src/main.c b/src/main.c
index 074dcf3..84be487 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3,6 +3,7 @@
#include
#include
#include
+#include
#include
#include
#include
@@ -23,22 +24,29 @@
#include "system/memory.h"
#include "utils/logger.h"
#include "utils/utils.h"
+#include "utils/file.h"
+#include "utils/screen.h"
+#include "utils/dict.h"
#include "common/common.h"
#include
#include
#include
#include
-#define TITLE_TEXT "Sort Wii U Menu v0.2.0 - Yardape8000 & doino-gretchenliev"
+#define TITLE_TEXT "Sort Wii U Menu v1.0.0 - Yardape8000 & doino-gretchenliev"
#define HBL_TITLE_ID 0x13374842
static const char *systemXmlPath = "storage_slc:/config/system.xml";
static const char *syshaxXmlPath = "storage_slc:/config/syshax.xml";
static const char *cafeXmlPath = "storage_slc:/proc/prefs/cafe.xml";
static const char *dontmovePath = "sd:/wiiu/apps/menu_sort/dontmove";
+static const char *gamemapPath = "sd:/wiiu/apps/menu_sort/titlesmap";
static const char *languages[] = {"JA", "EN", "FR", "DE", "IT", "ES", "ZHS", "KO", "NL", "PT", "RU", "ZHT"};
static char languageText[14] = "longname_en";
+int badNamingMode = 0;
+int ignoreThe = 0;
+
struct MenuItemStruct
{
u32 ID;
@@ -109,12 +117,7 @@ int fsa_read(int fsa_fd, int fd, void *buf, int len)
return done;
}
-int startsWith(const char *a, const char *b)
-{
- return strncasecmp(b, a, strlen(b)) == 0;
-}
-
-int smartStrcmp(const char *a, const char *b)
+int smartStrcmp(const char *a, const char *b, const u32 a_id, const u32 b_id)
{
char *ac = malloc(strlen(a) + 1);
char *bc = malloc(strlen(b) + 1);
@@ -122,26 +125,49 @@ int smartStrcmp(const char *a, const char *b)
strcpy(ac, a);
strcpy(bc, b);
- if (startsWith(ac, "the "))
+ if (ignoreThe)
{
- memmove(ac, ac + 4, strlen(ac));
+ removeThe(ac);
+ removeThe(bc);
}
- if (startsWith(bc, "the "))
+ if (badNamingMode)
{
- memmove(bc, bc + 4, strlen(bc));
+ int a_id_size = (int)((ceil(log10(a_id)) + 1) * sizeof(char));
+ char a_id_string[a_id_size];
+
+ int b_id_size = (int)((ceil(log10(b_id)) + 1) * sizeof(char));
+ char b_id_string[b_id_size];
+
+ itoa(a_id, a_id_string, 16);
+ itoa(b_id, b_id_string, 16);
+
+ struct nlist *np;
+ np = lookup(a_id_string);
+ if (np != NULL)
+ {
+ ac = prepend(ac, np->defn);
+ }
+
+ np = lookup(b_id_string);
+ if (np != NULL)
+ {
+ bc = prepend(bc, np->defn);
+ }
}
int result = strcasecmp(ac, bc);
free(ac);
free(bc);
-
return result;
}
int fSortCond(const void *c1, const void *c2)
{
- return smartStrcmp(((struct MenuItemStruct *)c1)->name, ((struct MenuItemStruct *)c2)->name);
+ return smartStrcmp(((struct MenuItemStruct *)c1)->name,
+ ((struct MenuItemStruct *)c2)->name,
+ ((struct MenuItemStruct *)c1)->ID,
+ ((struct MenuItemStruct *)c2)->ID);
}
void getXMLelement(const char *buff, size_t buffSize, const char *url, const char *elementName, char *text, size_t textSize)
@@ -238,7 +264,7 @@ int Menu_Main(void)
// InitCCRFunctionPointers();
InitSocketFunctionPointers();
- log_init("192.168.40.2");
+ log_init("192.168.1.16");
log_print("\n\nStarting Main\n");
InitFSFunctionPointers();
@@ -265,31 +291,74 @@ int Menu_Main(void)
VPADInit();
- // Prepare screen
- int screen_buf0_size = 0;
-
- // Init screen and screen buffers
- OSScreenInit();
- screen_buf0_size = OSScreenGetBufferSizeEx(0);
- OSScreenSetBufferEx(0, (void *)0xF4000000);
- OSScreenSetBufferEx(1, (void *)(0xF4000000 + screen_buf0_size));
+ screenInit();
+ screenClear();
+ screenPrint(TITLE_TEXT);
+ screenPrint("Choose sorting method:");
+ screenPrint("Press 'B' for standard sorting.");
+ screenPrint("Press 'A' for standard sorting(ignoring leading 'The').");
+ screenPrint("Press 'X' for bad naming mode sorting.");
+ screenPrint("Press 'Y' for bad naming mode sorting(ignoring leading 'The').");
- OSScreenEnableEx(0, 1);
- OSScreenEnableEx(1, 1);
+ int vpadError;
+ VPADData vpad;
- // Clear screens
- OSScreenClearBufferEx(0, 0);
- OSScreenClearBufferEx(1, 0);
+ char modeText[25] = "";
+ char ignoreTheText[25] = "";
- for (int i = 0; i < 2; i++)
+ while (1)
{
- OSScreenPutFontEx(i, 0, 0, TITLE_TEXT);
- //OSScreenPutFontEx(i, 0, 1, TITLE_TEXT2);
+
+ VPADRead(0, &vpad, 1, &vpadError);
+ u32 pressedBtns = 0;
+
+ if (!vpadError)
+ pressedBtns = vpad.btns_d | vpad.btns_h;
+
+ if (pressedBtns & VPAD_BUTTON_B)
+ {
+ badNamingMode = 0;
+ ignoreThe = 0;
+ strcpy(modeText, "standard sorting");
+ break;
+ }
+
+ if (pressedBtns & VPAD_BUTTON_A)
+ {
+ badNamingMode = 0;
+ ignoreThe = 1;
+ strcpy(modeText, "standard sorting");
+ strcpy(ignoreTheText, "(ignoring leading 'The')");
+ break;
+ }
+
+ if (pressedBtns & VPAD_BUTTON_X)
+ {
+ badNamingMode = 1;
+ ignoreThe = 0;
+ strcpy(modeText, "bad naming mode sorting");
+ break;
+ }
+
+ if (pressedBtns & VPAD_BUTTON_Y)
+ {
+ badNamingMode = 1;
+ ignoreThe = 1;
+ strcpy(modeText, "bad naming mode sorting");
+ strcpy(ignoreTheText, "(ignoring leading 'The')");
+ break;
+ }
+
+ usleep(1000);
}
- // Flip buffers
- OSScreenFlipBuffersEx(0);
- OSScreenFlipBuffersEx(1);
+ screenClear();
+ screenSetPrintLine(0);
+ screenPrint(TITLE_TEXT);
+ char modeSelectedText[50] = "";
+ sprintf(modeSelectedText, "Starting %s%s...", modeText, ignoreTheText);
+ screenPrint(modeSelectedText);
+ log_printf(modeSelectedText);
// Get Wii U Menu Title
// Do this before mounting the file system.
@@ -408,40 +477,44 @@ int Menu_Main(void)
// Read Don't Move titles.
// first try dontmoveX.hex where X is the user ID
- // if that fails try dontmove.hex
+ // if that fails try dontmove.txt
char dmPath[65] = "";
u32 *dmItem = NULL;
- size_t dmTotal = 0;
- sprintf(dmPath, "%s%1x.hex", dontmovePath, userPersistentId & 0x0000000f);
+ int dmTotal = 0;
+ size_t titleIDSize = 8;
+ sprintf(dmPath, "%s%1x.txt", dontmovePath, userPersistentId & 0x0000000f);
fp = fopen(dmPath, "rb");
if (!fp)
{
- sprintf(dmPath, "%s.hex", dontmovePath);
+ sprintf(dmPath, "%s.txt", dontmovePath);
fp = fopen(dmPath, "rb");
}
if (fp)
{
log_printf("Loading %s\n", dmPath);
- fseek(fp, 0L, SEEK_END); // fstat.st_size returns 0, so we use this instead
- int dmSize = ftell(fp);
+ int ch, lines = 0;
+ do
+ {
+ ch = fgetc(fp);
+ if (ch == '\n')
+ lines++;
+ } while (ch != EOF);
rewind(fp);
- if (dmSize % 4 != 0)
- log_printf("%s size not multiple of 4\n", dmPath);
- else
+
+ dmTotal = lines;
+ dmItem = (u32 *)malloc(sizeof(u32) * lines);
+
+ log_printf("Number of games to load(dontmove): %d\n", lines);
+
+ for (int i = 0; i < lines; i++)
{
- dmItem = malloc(dmSize);
- if (dmItem == NULL)
- log_printf("Memory not allocated for %s\n", dmPath);
- else
- {
- memset(dmItem, 0, dmSize);
- fread(dmItem, 1, dmSize, fp);
- dmTotal = dmSize / 4;
- log_printf("%d items found and will not be moved.\n", dmTotal);
- for (u32 i = 0; i < dmTotal; i++)
- log_printf("%08x\n", dmItem[i]);
- }
+ size_t len = titleIDSize;
+ char *currTitleID = (char *)malloc(len + 1);
+ getline(&currTitleID, &len, fp);
+ dmItem[i] = (u32)strtol(currTitleID, NULL, 16);
+ free(currTitleID);
}
+
fclose(fp);
}
else
@@ -449,6 +522,56 @@ int Menu_Main(void)
log_printf("Could not open %s\n", dmPath);
}
+ if (badNamingMode)
+ {
+ char gmPath[65] = "";
+ sprintf(gmPath, "%s%1x.psv", gamemapPath, userPersistentId & 0x0000000f);
+ fp = fopen(gmPath, "rb");
+ if (!fp)
+ {
+ sprintf(gmPath, "%s.psv", gamemapPath);
+ fp = fopen(gmPath, "rb");
+ }
+ if (fp)
+ {
+ log_printf("Loading %s\n", gmPath);
+ int ch, max_ch_count, ch_count, lines = 0;
+ do
+ {
+ ch = fgetc(fp);
+ ch_count++;
+ if (ch == '\n')
+ {
+ lines++;
+ if (ch_count > max_ch_count)
+ max_ch_count = ch_count;
+ }
+ } while (ch != EOF);
+ rewind(fp);
+
+ log_printf("Number of games in the map to load(dontmove): %d\n", lines);
+
+ for (int i = 0; i < lines; i++)
+ {
+ size_t len = max_ch_count;
+ char *currTitleID = (char *)malloc(len + 1);
+ getline(&currTitleID, &len, fp);
+
+ char *id = strtok(currTitleID, "|");
+ char *group = strtok(NULL, "|");
+ group = strtok(group, "\n");
+ install(id, group);
+ free(currTitleID);
+ }
+
+ fclose(fp);
+ }
+ else
+ {
+ log_printf("Could not open %s\n", gmPath);
+ }
+ }
+
// Read Menu Data
struct MenuItemStruct menuItem[300];
bool folderExists[61] = {false};
@@ -536,7 +659,7 @@ int Menu_Main(void)
continue;
}
// Is ID on Don't Move list?
- for (u32 j = 0; j < dmTotal; j++)
+ for (int j = 0; j < dmTotal; j++)
{
if (id == dmItem[j])
{
@@ -544,6 +667,7 @@ int Menu_Main(void)
break;
}
}
+
if (!moveableItem[i])
continue;
@@ -585,7 +709,7 @@ int Menu_Main(void)
idUSB = menuItem[itemNum].ID;
idUSBh = menuItem[itemNum].titleIDPrefix;
}
- log_printf("%d %s\n", i, menuItem[itemNum].name);
+ log_printf("[%d][%08x] %s\n", i, menuItem[itemNum].ID, menuItem[itemNum].name);
itemNum++;
}
@@ -618,44 +742,23 @@ int Menu_Main(void)
free(fBuffer);
free(dmItem);
- int vpadError = -1;
- VPADData vpad;
- int vpadReadCounter = 0;
- int update_screen = 1;
+ screenPrintAt(strlen(modeSelectedText), screenGetPrintLine(), "done.");
+
+ char text[20] = "";
+ sprintf(text, "User ID: %1x", userPersistentId & 0x0000000f);
+ screenPrint(text);
+ screenPrint("Press Home to exit");
while (1)
{
- if (update_screen)
- {
- OSScreenClearBufferEx(0, 0);
- OSScreenClearBufferEx(1, 0);
- for (int i = 0; i < 2; i++)
- {
- OSScreenPutFontEx(i, 0, 0, TITLE_TEXT);
- char text[20] = "";
- sprintf(text, "User ID: %1x", userPersistentId & 0x0000000f);
- OSScreenPutFontEx(i, 0, 2, text);
- OSScreenPutFontEx(i, 0, 4, "DONE - Press Home to exit");
- }
- // Flip buffers
- OSScreenFlipBuffersEx(0);
- OSScreenFlipBuffersEx(1);
- update_screen = 0;
- }
- //! update only at 50 Hz, thats more than enough
- if (++vpadReadCounter >= 20)
- {
- vpadReadCounter = 0;
+ VPADRead(0, &vpad, 1, &vpadError);
+ u32 pressedBtns = 0;
- VPADRead(0, &vpad, 1, &vpadError);
- u32 pressedBtns = 0;
+ if (!vpadError)
+ pressedBtns = vpad.btns_d | vpad.btns_h;
- if (!vpadError)
- pressedBtns = vpad.btns_d | vpad.btns_h;
-
- if (pressedBtns & VPAD_BUTTON_HOME)
- break;
- }
+ if (pressedBtns & VPAD_BUTTON_HOME)
+ break;
usleep(1000);
}
@@ -664,16 +767,7 @@ int Menu_Main(void)
prgEnd:
if (failed)
{
- OSScreenClearBufferEx(0, 0);
- OSScreenClearBufferEx(1, 0);
- for (int i = 0; i < 2; i++)
- {
- OSScreenPutFontEx(i, 0, 0, TITLE_TEXT);
- OSScreenPutFontEx(i, 0, 2, failError);
- }
- // Flip buffers
- OSScreenFlipBuffersEx(0);
- OSScreenFlipBuffersEx(1);
+ screenPrint(failError);
sleep(5);
}
log_printf("Unmount\n");
diff --git a/src/main.h b/src/main.h
index 0147292..1e6379b 100644
--- a/src/main.h
+++ b/src/main.h
@@ -6,11 +6,12 @@
/* Main */
#ifdef __cplusplus
-extern "C" {
+extern "C"
+{
#endif
-//! C wrapper for our C++ functions
-int Menu_Main(void);
+ //! C wrapper for our C++ functions
+ int Menu_Main(void);
#ifdef __cplusplus
}
diff --git a/src/utils/dict.c b/src/utils/dict.c
new file mode 100644
index 0000000..d118ff8
--- /dev/null
+++ b/src/utils/dict.c
@@ -0,0 +1,107 @@
+#include
+#include
+
+#define HASHSIZE 101
+
+static struct nlist *hashtab[HASHSIZE];
+
+unsigned hash(char *s)
+{
+ ///
+ unsigned hashval;
+
+ for (hashval = 0; *s != '\0'; s++)
+ hashval = *s + 31 * hashval;
+ return hashval % HASHSIZE;
+}
+
+struct nlist *lookup(char *s)
+{
+ struct nlist *np;
+ for (np = hashtab[hash(s)]; np != NULL; np = np->next)
+ if (strcmp(np->name, s) == 0)
+ return np;
+ return NULL;
+}
+
+struct nlist *lookup(char *s);
+
+char *mystrdup(char *s)
+{
+ char *p;
+ p = (char *)malloc(strlen(s) + 1);
+ if (p != NULL)
+ strcpy(p, s);
+ return p;
+}
+
+struct nlist *install(char *name, char *defn)
+{
+ struct nlist *np;
+ unsigned hashval;
+
+ if ((np = lookup(name)) == NULL)
+ {
+ np = (struct nlist *)malloc(sizeof(struct nlist));
+ if (np == NULL || (np->name = mystrdup(name)) == NULL)
+ return NULL;
+ hashval = hash(name);
+ np->next = hashtab[hashval]; ///
+ hashtab[hashval] = np;
+ }
+ else
+ {
+ free((void *)np->defn);
+ }
+
+ ///
+ if ((np->defn = mystrdup(defn)) == NULL)
+ return NULL;
+ return np;
+}
+
+void undef(char *name)
+{
+ struct nlist *np;
+ unsigned hashval;
+ hashval = hash(name);
+
+ np = lookup(name);
+
+ if (np == NULL)
+ return;
+
+ if (np == hashtab[hashval])
+ {
+ hashtab[hashval] = np->next;
+ free(np);
+ }
+
+ else
+ {
+ struct nlist *p;
+ for (p = hashtab[hashval]; p->next != np; p++)
+ ;
+ p->next = p->next->next;
+ free(p->next);
+ }
+}
+
+void replace(char *name)
+{
+ struct nlist *np;
+ unsigned hashval;
+ hashval = hash(name);
+
+ np = lookup(name);
+
+ if (np == NULL)
+ {
+ printf("%s", name);
+ return;
+ }
+ else
+ {
+ printf("%s", np->defn);
+ }
+}
diff --git a/src/utils/dict.h b/src/utils/dict.h
new file mode 100644
index 0000000..d2fe0ef
--- /dev/null
+++ b/src/utils/dict.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#ifndef DICT
+#define DICT
+#endif
+
+ typedef struct nlist
+ {
+ char *name;
+ char *defn;
+ struct nlist *next;
+ } nlist;
+
+ struct nlist *lookup(char *s);
+ struct nlist *install(char *name, char *defn);
+ void undef(char *name);
+ void replace(char *name);
+
+#ifdef __cplusplus
+}
+#endif
diff --git a/src/utils/file.c b/src/utils/file.c
new file mode 100644
index 0000000..57e7129
--- /dev/null
+++ b/src/utils/file.c
@@ -0,0 +1,66 @@
+/* This code is public domain -- Will Hartung 4/9/09 */
+#include
+#include
+
+size_t getline(char **lineptr, size_t *n, FILE *stream)
+{
+ char *bufptr = NULL;
+ char *p = bufptr;
+ size_t size;
+ int c;
+
+ if (lineptr == NULL)
+ {
+ return -1;
+ }
+ if (stream == NULL)
+ {
+ return -1;
+ }
+ if (n == NULL)
+ {
+ return -1;
+ }
+ bufptr = *lineptr;
+ size = *n;
+
+ c = fgetc(stream);
+ if (c == EOF)
+ {
+ return -1;
+ }
+ if (bufptr == NULL)
+ {
+ bufptr = malloc(128);
+ if (bufptr == NULL)
+ {
+ return -1;
+ }
+ size = 128;
+ }
+ p = bufptr;
+ while (c != EOF)
+ {
+ if ((p - bufptr) > (size - 1))
+ {
+ size = size + 128;
+ bufptr = realloc(bufptr, size);
+ if (bufptr == NULL)
+ {
+ return -1;
+ }
+ }
+ *p++ = c;
+ if (c == '\n')
+ {
+ break;
+ }
+ c = fgetc(stream);
+ }
+
+ *p++ = '\0';
+ *lineptr = bufptr;
+ *n = size;
+
+ return p - bufptr - 1;
+}
\ No newline at end of file
diff --git a/src/utils/file.h b/src/utils/file.h
new file mode 100644
index 0000000..77664bd
--- /dev/null
+++ b/src/utils/file.h
@@ -0,0 +1,10 @@
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+ size_t getline(char **lineptr, size_t *n, FILE *stream);
+
+#ifdef __cplusplus
+}
+#endif
diff --git a/src/utils/screen.c b/src/utils/screen.c
new file mode 100644
index 0000000..9553e3f
--- /dev/null
+++ b/src/utils/screen.c
@@ -0,0 +1,97 @@
+#include "dynamic_libs/os_functions.h"
+#include
+#include
+#include
+#include "screen.h"
+
+static int current_line = 0;
+int buf0_size, buf1_size;
+
+void screenFlip()
+{
+ //Flush the cache
+ DCFlushRange((void *)0xF4000000 + buf0_size, buf1_size);
+ DCFlushRange((void *)0xF4000000, buf0_size);
+ //Flip the buffer
+ OSScreenFlipBuffersEx(0);
+ OSScreenFlipBuffersEx(1);
+}
+
+void screenFill(u8 r, u8 g, u8 b, u8 a)
+{
+ u32 color = (r << 24) | (g << 16) | (b << 8) | a;
+ OSScreenClearBufferEx(0, color);
+ OSScreenClearBufferEx(1, color);
+}
+
+void screenClear()
+{
+ screenFill(0, 0, 0, 0);
+ screenFlip();
+ screenFill(0, 0, 0, 0);
+ screenFlip();
+}
+
+void screenInit()
+{
+ OSScreenInit();
+ //Grab the buffer size for each screen (TV and gamepad)
+ buf0_size = OSScreenGetBufferSizeEx(SCREEN_TV);
+ buf1_size = OSScreenGetBufferSizeEx(SCREEN_DRC);
+ //Set buffer to some free location in MEM1
+ OSScreenSetBufferEx(SCREEN_TV, (void *)0xF4000000);
+ OSScreenSetBufferEx(SCREEN_DRC, ((void *)0xF4000000 + buf0_size));
+ //Enable the screen
+ OSScreenEnableEx(SCREEN_TV, 1);
+ OSScreenEnableEx(SCREEN_DRC, 1);
+}
+
+void screenPrint(char *fmt, ...)
+{
+ if (current_line == 16)
+ {
+ screenClear();
+ current_line = 0;
+ }
+ char *tmp = NULL;
+ va_list va;
+ va_start(va, fmt);
+ if ((vasprintf(&tmp, fmt, va) >= 0) && tmp)
+ {
+ OSScreenPutFontEx(1, 0, current_line, tmp);
+ screenFlip();
+ OSScreenPutFontEx(1, 0, current_line, tmp);
+ screenFlip();
+ }
+ va_end(va);
+ if (tmp)
+ free(tmp);
+ current_line++;
+}
+
+int screenGetPrintLine()
+{
+ return (current_line - 1);
+}
+
+void screenSetPrintLine(int line)
+{
+ current_line = line;
+}
+
+int screenPrintAt(int x, int y, char *fmt, ...)
+{
+ char *tmp = NULL;
+ va_list va;
+ va_start(va, fmt);
+ if ((vasprintf(&tmp, fmt, va) >= 0) && tmp)
+ {
+ OSScreenPutFontEx(1, x, y, tmp);
+ screenFlip();
+ OSScreenPutFontEx(1, x, y, tmp);
+ screenFlip();
+ }
+ va_end(va);
+ if (tmp)
+ free(tmp);
+}
diff --git a/src/utils/screen.h b/src/utils/screen.h
new file mode 100644
index 0000000..7beae2c
--- /dev/null
+++ b/src/utils/screen.h
@@ -0,0 +1,25 @@
+#pragma once
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+ void screenFlip();
+ void screenFill(u8 r, u8 g, u8 b, u8 a);
+ void screenClear();
+ void screenInit();
+ void screenPrint(char *fmt, ...);
+ int screenGetPrintLine();
+ void screenSetPrintLine(int line);
+ int screenPrintAt(int x, int y, char *fmt, ...);
+
+ typedef enum OSScreenID
+ {
+ SCREEN_TV = 0,
+ SCREEN_DRC = 1,
+ } OSScreenID;
+
+#ifdef __cplusplus
+}
+#endif
\ No newline at end of file
diff --git a/src/utils/string.c b/src/utils/string.c
new file mode 100644
index 0000000..0e23147
--- /dev/null
+++ b/src/utils/string.c
@@ -0,0 +1,27 @@
+#include
+
+int startsWith(const char *a, const char *b)
+{
+ return strncasecmp(b, a, strlen(b)) == 0;
+}
+
+char *prepend(char *s, const char *t)
+{
+ size_t s_len = strlen(s);
+ size_t t_len = strlen(t);
+ size_t st_len = s_len + t_len;
+
+ s = realloc(s, st_len * +1);
+ memmove(s + t_len, s, s_len + 1);
+ memcpy(s, t, t_len);
+
+ return s;
+}
+
+void removeThe(char *src)
+{
+ if (startsWith(src, "the "))
+ {
+ memmove(src, src + 4, strlen(src) - 4);
+ }
+}
\ No newline at end of file
diff --git a/src/utils/string.h b/src/utils/string.h
new file mode 100644
index 0000000..da4239a
--- /dev/null
+++ b/src/utils/string.h
@@ -0,0 +1,12 @@
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+ int startsWith(const char *a, const char *b);
+ char *prepend(char *s, const char *t);
+ void removeThe(char *src);
+
+#ifdef __cplusplus
+}
+#endif
diff --git a/titlesmap.psv b/titlesmap.psv
new file mode 100644
index 0000000..4c68f99
--- /dev/null
+++ b/titlesmap.psv
@@ -0,0 +1,6951 @@
+34313045|Wii
+4432414a|Minna de Bouken! Family Trainer
+44325345|Deca Sporta
+44334445|Deca Sporta
+44415345|Disney
+44415545|Country Dance
+44415645|Mystery Case Files: The Malgrave Incident
+44415845|Zelda
+44415850|Zelda
+44424245|Beyblade: Metal Fusion - Battle Fortress
+44424b45|Boom Blox
+44424b50|Boom Blox
+44434145|Calling
+44434845|We Cheer
+44443250|Just Dance
+44484b45|Help Wanted: 50 Wacky Jobs
+444b3645|Marble Saga: Kororinpa
+444b364a|Kororinpa
+444d4845|Monster Hunter G
+444d484a|Monster Hunter G
+44504945|Oops! Prank Party
+4451414a|Baseball
+44514750|The Sims
+44524d45|Rooms: The Main Building
+44534645|Muramasa: The Demon Blade
+4453524a|Sonic
+44544f4a|428: Fuusa Sareta Shibuya de
+44545a4a|Takarajima Z Barbaros' Treasure
+4457454a|Winning Eleven PLAY MAKER 2009
+44574550|Pro Evolution Soccer 2009
+44585345|Deca Sporta
+445a4445|Zelda
+445a4450|Zelda
+52323245|FlingSmash
+5232324a|Super Mario
+52323250|FlingSmash
+52323345|Barbie and the Three Musketeers
+52323350|Barbie and the Three Musketeers
+5232344a|Chibi-Robo!
+52323545|LEGO
+52323550|LEGO
+52323745|Dora Saves the Crystal Kingdom
+52323758|Dora Saves the Crystal Kingdom
+52323845|Top Spin 4
+52323850|Top Spin 4
+52324145|Ice Age
+52324150|Ice Age
+52324158|Ice Age
+52324445|Dokapon Kingdom
+5232444a|Dokapon Kingdom
+52324450|Dokapon Kingdom
+5232454a|Wii
+52324645|Freddi Fish: Kelp Seed Mystery
+52324650|Freddi Fish: Kelp Seed Mystery
+52324745|Fragile Dreams: Farewell Ruins of the Moon
+52324750|Fragile Dreams: Farewell Ruins of the Moon
+52324845|Petz
+52324945|Madden NFL
+52324950|Madden NFL
+52324a4a|Wii
+52324b45|Don King Boxing
+52324b50|Don King Boxing
+52324c4a|Wii
+52324d45|M&M's Adventure
+52324e45|NASCAR
+52324f45|Medieval Games
+52324f50|Medieval Games
+52325045|Super Swing Golf Season 2
+5232504a|Super Swing Golf Season 2
+5232504b|Super Swing Golf Season 2
+52325050|Super Swing Golf
+52325245|Pony Friends 2
+52325250|Pony Friends 2
+52325345|Deca Sporta
+5232534a|Deca Sporta
+52325350|Sports Island
+52325445|Teenage Mutant Ninja Turtles 2: Battle Nexus
+52325450|Teenage Mutant Ninja Turtles 2: Battle Nexus
+52325545|Let's Tap
+5232554a|Let's Tap
+52325550|Let's Tap
+52325645|Sin & Punishment
+5232564a|Sin & Punishment
+52325650|Sin & Punishment
+52325745|Pro Evolution Soccer 2009
+5232574a|Winning Eleven PLAY MAKER 2009
+52325750|Pro Evolution Soccer 2009
+52325758|Pro Evolution Soccer 2009
+5233324a|Metroid Prime
+52333345|Rock Band
+52333350|Rock Band
+52333445|Rock Band
+5233354a|Sangokushi 11 with Power-Up Kit
+52333645|Rock Band
+52333650|Rock Band
+52333745|Rock Band
+52333845|Marvel Super Hero Squad
+52333850|Marvel Super Hero Squad
+52333859|Marvel Super Hero Squad
+52333945|Shimano Xtreme Fishing
+52333950|Shimano Xtreme Fishing
+52334145|Star Fox
+52334150|Star Fox
+52334245|Samba de Amigo
+5233424a|Samba de Amigo
+52334250|Samba de Amigo
+52334345|Chrysler Classic Racing
+52334350|Chrysler Classic Racing
+52334445|NBA
+52334450|NBA
+52334545|Game Party
+52334550|Game Party
+5233464a|Jikkyou Powerful Major League
+52334758|Kidz
+52334850|Agent Hugo: Hula Holiday
+52334858|Agent Hugo: Hula Holiday
+5233494a|Metroid Prime
+52334c45|Green Lantern: Rise of the Manhunters
+52334c50|Green Lantern: Rise of the Manhunters
+52334d45|Metroid Prime
+52334d50|Metroid Prime
+52334e45|Guilty Gear XX Accent Core
+52334e50|Guilty Gear XX Accent Core
+52334f45|Metroid: Other M
+52334f4a|Metroid: Other M
+52334f50|Metroid: Other M
+52335045|Speed Racer: The Videogame
+52335050|Speed Racer: The Videogame
+52335245|Sonic
+52335250|Sonic
+52335345|Spider-Man
+52335350|Spider-Man
+52335445|Top Spin 4
+5233544a|Top Spin 4
+52335450|Top Spin 4
+52335645|Deer Drive
+52335650|Deer Drive
+52335845|Sam & Max: Season One
+52335850|Sam & Max: Season One
+52335945|Sam & Max: Season Two: Beyond Time and Space
+52335950|Sam & Max: Season Two: Beyond Time and Space
+52335a45|Rock Band
+52343245|The Sims
+52343250|The Sims
+52343345|EA
+5234334a|Wii
+52343350|EA
+5234344a|Suzumiya Haruhi no Gekidou
+5234364a|Wii
+52343745|ATV Quad Kings
+52343750|ATV Quad Kings
+52343845|The Spiderwick Chronicles
+52343850|The Spiderwick Chronicles
+52343945|Donkey Kong
+5234394a|Donkey Kong
+52343950|Donkey Kong
+52344145|SimAnimals
+5234414a|SimAnimals
+52344150|SimAnimals
+52344345|SimCity Creator
+5234434a|SimCity Creator
+5234434b|SimCity Creator
+52344350|SimCity Creator
+52344545|Endless Ocean
+52344550|Endless Ocean
+52344645|Story Hour: Fairy Tales
+52344650|Story Hour: Fairy Tales
+52344c50|Athletic Piggy Party
+52344c58|Athletic Piggy Party
+52344d4a|Wii
+52344e45|Major Minor's Majestic March
+52344e50|Major Minor's Majestic March
+52344e58|Major Minor's Majestic March
+52345045|The Sims
+52345050|The Sims
+52345145|Super Mario
+5234514a|Super Mario
+5234514b|Super Mario
+52345150|Super Mario
+52345245|FIFA
+5234524a|FIFA
+5234524b|FIFA
+52345250|FIFA
+52345252|FIFA
+52345258|FIFA
+52345259|FIFA
+5234525a|FIFA
+5234564a|Wii
+5234574a|Jikkyou Powerful Major League
+5234594a|Wii
+52345a4a|Fatal Frame 4: Mask of the Lunar Eclipse
+52353245|Neopets Puzzle Adventure
+52353250|Neopets Puzzle Adventure
+52353446|Countdown: The Game
+52353550|Who Wants To Be A Millionaire
+52353645|Astro Boy: The Video Game
+52353650|Astro Boy: The Video Game
+52353844|U-Sing
+52353846|U-Sing
+52353849|U-Sing
+52353850|U-Sing
+52353853|U-Sing
+52353944|Club Penguin: Game Day!
+52353945|Club Penguin: Game Day!
+52353950|Club Penguin: Game Day!
+52354145|The Golden Compass
+52354150|The Golden Compass
+52354158|The Golden Compass
+52354550|Countdown: The Game
+52354645|Academy of Champions: Soccer
+52354650|Academy of Champions: Soccer
+52354745|Are You Smarter Than A 5th Grader? Game Time
+52354945|Toy Story
+52354950|Toy Story
+52354952|Toy Story
+52354958|Toy Story
+52354a45|Pirates vs Ninjas Dodgeball
+52354a50|Pirates vs Ninjas Dodgeball
+52354d4a|Wii
+52354e4a|Wii
+52355045|Harry Potter
+5235504a|Harry Potter
+52355050|Harry Potter
+52355058|Harry Potter
+52355445|Grand Slam Tennis
+5235544a|Grand Slam Tennis
+52355450|Grand Slam Tennis
+52355545|CSI
+52355550|CSI
+52355645|James Cameron's Avatar: The Game
+52355650|James Cameron's Avatar: The Game
+52355658|James Cameron's Avatar: The Game
+52355745|Silent Hill: Shattered Memories
+5235574a|Silent Hill: Shattered Memories
+5235584a|The Sims
+52355850|The Sims
+52355944|All Star Cheer Squad
+52355945|All Star Cheer Squad
+52355950|All Star Cheer Squad
+52363245|Sing It
+52363250|Sing It
+52363345|Family Party: 30 Great Games Outdoor Fun
+52363350|Family Party: 30 Great Games Outdoor Fun
+52363445|Wii
+5236344a|Wii
+5236344b|Wii
+52363450|Wii
+52364245|de Blob
+5236424b|de Blob
+52364250|de Blob
+52364258|de Blob
+52364345|We Cheer
+52364545|Family Feud 2010 Edition
+52364650|Fun Park Party
+52364845|Ni Hao, Kai-lan: Super Game Day
+52364850|Ni Hao, Kai-lan: Super Game Day
+52364945|Baseball
+52364a4a|Fullmetal Alchemist: Prince of the Dawn
+52364b50|Ashes Cricket 2009
+52364b55|Ashes Cricket 2009
+52364c45|Rock Band
+52364c50|Rock Band
+52364d45|America's Next Top Model
+52364d50|America's Next Top Model
+52364e45|Shaun White Snowboarding: Road Trip
+52364e50|Shaun White Snowboarding: Road Trip
+52364e59|Shaun White Snowboarding: Road Trip
+52364f45|Cars Race-O-Rama
+52364f50|Cars Race-O-Rama
+52364f58|Cars Race-O-Rama
+52365145|The Sims
+52365445|Tornado Outbreak
+52365450|Tornado Outbreak
+52365645|King of Clubs
+52365650|King of Clubs
+52365745|AMF Bowling World Lanes
+52365750|AMF Bowling World Lanes
+52365845|Hasbro
+52365850|Hasbro
+52365945|Squeeballs Party
+52365950|Squeeballs Party
+52373245|Cake Mania: In The Mix!
+52373250|Cake Mania: In The Mix!
+52373545|Dreamals
+52373645|NBA
+52373650|NBA
+5237374a|SD Gundam
+5237394a|007
+52374145|SimAnimals Africa
+5237414a|SimAnimals Africa
+52374150|SimAnimals Africa
+52374245|Jelly Belly Ballistic Beans
+52374250|Jelly Belly Ballistic Beans
+52374545|NiGHTS: Journey of Dreams
+5237454a|NiGHTS: Journey of Dreams
+52374550|NiGHTS: Journey of Dreams
+52374645|Final Fantasy
+5237464a|Final Fantasy
+52374650|Final Fantasy
+52374745|Dragon Ball Z
+5237474a|Dragon Ball Z
+52374750|Dragon Ball Z
+52374945|Charm Girls Club: Pajama Party
+52374950|Charm Girls Club: Pajama Party
+52374b45|Rock Blast
+52374d50|Musiic Party: Rock the House
+52374d58|Musiic Party: Rock the House
+52374f45|NHL
+52374f50|NHL
+52375045|Punch-Out!!
+5237504a|Punch-Out!!
+52375050|Punch-Out!!
+52375245|Baseball
+52375345|Escape the Museum
+52375350|Escape the Museum
+52375645|Vacation Isle: Beach Party
+52375650|Vacation Isle: Beach Party
+52375745|Mountain Sports
+52375750|Mountain Sports
+52375845|Need for Speed: Nitro
+5237584a|Need for Speed: Nitro
+52375850|Need for Speed: Nitro
+52383245|Animal Planet: Vet Life
+5238324a|Wii
+52383250|Animal Planet: Vet Life
+52383345|Pop'n Music
+5238334a|Pop'n Music
+52383445|Harvest Moon
+5238344a|Wii
+52383450|Harvest Moon
+52383545|The Secret Saturdays: Beasts of the 5th Sun
+52383550|The Secret Saturdays: Beasts of the 5th Sun
+5238394a|Wii
+52384145|Wii
+5238414a|Wii
+52384150|Wii
+52384250|Babysitter Mama
+52384445|Yu-Gi-Oh
+5238444a|Yu-Gi-Oh
+52384450|Yu-Gi-Oh
+5238454a|Heatseeker
+52384645|Fast Food Panic
+52384650|Fast Food Panic
+5238474a|Wii
+52384750|Wii
+52384845|Hannah Montana: The Movie
+52384850|Hannah Montana: The Movie
+52384858|Hannah Montana: The Movie
+52384859|Hannah Montana: The Movie
+5238485a|Hannah Montana: The Movie
+52384945|SpongeBob SquarePants
+52384950|SpongeBob SquarePants
+52384953|SpongeBob SquarePants
+52384a45|The Lord of the Rings: Aragorn's Quest
+52384a50|The Lord of the Rings: Aragorn's Quest
+52384c45|Chicken Blaster
+52384c50|Chicken Blaster
+52384e4a|Batting Revolution
+52385045|Super Mario
+5238504a|Super Mario
+5238504b|Super Mario
+52385050|Super Mario
+52385350|World Sports Party
+52385358|World Sports Party
+52385645|Petz
+52385650|Petz
+52385945|Cabela's Big Game Hunter
+52385a45|Daisy Fuentes Pilates
+52385a50|Daisy Fuentes Pilates
+52393245|Pikmin
+5239324a|Pikmin
+52393250|Pikmin
+52393450|The Ultimate Red Ball Challenge
+52393458|The Ultimate Red Ball Challenge
+52393645|Klonoa
+5239364a|Klonoa - Door to Phantomile
+5239364b|Klonoa - Door to Phantomile
+52393650|Klonoa
+52394445|Drawn to Life: The Next Chapter
+52394450|Drawn to Life: The Next Chapter
+52394645|F1 2009
+5239464a|F1 2009
+52394650|F1 2009
+52394745|Legend of the Guardians: The Owls of Ga'Hoole
+52394750|Legend of the Guardians: The Owls of Ga'Hoole
+52394845|Are You Smarter Than A 5th Grader? Game Time
+52394945|Pikmin
+5239494a|Pikmin
+5239494b|Pikmin
+52394950|Pikmin
+52394a45|Rock Band
+52394a50|Rock Band
+52394d45|World Championship Sports
+52394d50|Summer Athletics
+52394f45|Tiger Woods PGA Tour 10
+52394f4b|Tiger Woods PGA Tour 10
+52394f50|Tiger Woods PGA Tour 10
+52395150|Dance Party Pop Hits
+52395250|Dance Party Pop Hits
+52395445|Tiger Woods PGA Tour 09 All-Play
+5239544a|Tiger Woods PGA Tour 09 All-Play
+5239544b|Tiger Woods PGA Tour 09 All-Play
+52395450|Tiger Woods PGA Tour 09 All-Play
+52395545|Build-A-Bear Workshop: Friendship Valley
+52395550|Build-A-Bear Workshop: Friendship Valley
+52395645|Cabela's African Adventures
+52395750|WSC Real 09: World Snooker Championship
+52395845|Arcade Zone
+52395850|Arcade Zone
+52395a45|Baseball
+52423445|Wii
+5242344a|Wii
+52423450|Wii
+52423458|Wii
+52423545|Brothers In Arms: Earned In Blood
+52423550|Brothers In Arms: Earned In Blood
+5242364a|Bomberman
+52423745|Bully: Scholarship Edition
+52423750|Bully: Scholarship Edition
+52423845|Baseball
+52423944|Bratz: The Movie
+52423945|Bratz: The Movie
+52423950|Bratz: The Movie
+52423958|Bratz: The Movie
+52423959|Bratz: The Movie
+52424145|Wii
+52424150|Wii
+52424245|Bomberman
+5242424a|Wii
+52424250|Wii
+52424545|Bee Movie Game
+52424550|Bee Movie Game
+52424558|Bee Movie Game
+52424645|Balls of Fury
+52424650|Balls of Fury
+52424745|The Sims
+52424750|The Sims
+52424845|Resident Evil
+5242484a|Resident Evil
+52424850|Resident Evil
+52424945|Harvest Moon
+52424950|Harvest Moon
+52424b45|Boom Blox
+52424b4a|Boom Blox
+52424b4b|Boom Blox
+52424b50|Boom Blox
+52424c45|Bleach: Shattered Blade
+52424c4a|Bleach: Shattered Blade
+52424c50|Bleach: Shattered Blade
+52424e45|Ben 10
+52424e50|Ben 10
+52424e58|Ben 10
+52424f45|Boogie
+52424f50|Boogie
+52425045|Brunswick Pro Bowling
+52425050|Brunswick Pro Bowling
+52425145|Classic British Motor Racing
+52425150|Classic British Motor Racing
+52425245|Blast Works: Build, Trade, Destroy
+52425250|Blast Works: Build, Trade, Destroy
+52425258|Blast Works: Build, Trade, Destroy
+5242534a|Sengoku
+52425445|Sega Bass Fishing
+5242544a|Sega Bass Fishing
+52425450|Sega Bass Fishing
+52425545|Resident Evil
+5242554a|Resident Evil
+5242554b|Resident Evil
+52425550|Resident Evil
+52425645|Barbie as The Island Princess
+52425650|Barbie as The Island Princess
+52425745|Battalion Wars
+5242574a|Super Famicom Wars
+52425750|Battalion Wars
+52425945|Barnyard
+5242594a|Barnyard
+52425950|Barnyard
+52425a45|Billy the Wizard: Rocket Broomstick Racing
+52425a50|Billy the Wizard: Rocket Broomstick Racing
+52425a58|Billy the Wizard: Rocket Broomstick Racing
+52433245|Cars: Mater-National Championship
+52433250|Cars: Mater-National Championship
+52433258|Cars: Mater-National
+52433259|Cars: Mater-National
+52433345|Petz
+5243334a|Dog to Mahou no Boushi
+5243344a|Wii
+52433453|Wii
+52433745|EA
+52433750|EA
+52433845|Crash: Mind Over Mutant
+52433850|Crash: Mind Over Mutant
+52433858|Crash: Mind Over Mutant
+52434245|Cabela's Big Game Hunter
+52434250|Cabela's Big Game Hunter
+5243434a|Cooking Mama
+52434350|Cooking Mama
+52434444|Call of Duty 3
+52434445|Call of Duty 3
+52434450|Call of Duty 3
+52434458|Call of Duty 3
+52434545|Mini Desktop Racing
+52434550|Mini Desktop Racing
+52434558|Mini Desktop Racing
+52434645|Cosmic Family
+52434650|Cosmic Family
+52434745|Carnival Games
+52434750|Carnival Games
+52434845|We Cheer
+5243484a|We Cheer
+52434850|We Cheer
+52434945|CSI
+52434950|CSI
+52434a45|The Conduit
+52434a50|The Conduit
+52434c45|Disney
+52434c50|Disney
+52434f4a|Meitantei Conan: Tsuioku no Mirage
+52434f4b|Case Closed: The Mirapolis Investigation
+52434f50|Case Closed: The Mirapolis Investigation
+5243504a|Kororinpa
+52435050|Kororinpa
+5243514a|Choro Q
+52435245|Cruis'n
+52435250|Cruis'n
+52435345|Chicken Riot
+52435350|Chicken Riot
+52435545|Cabela's Legendary Adventures
+52435550|Cabela's Legendary Adventures
+52435645|Far Cry: Vengeance
+52435650|Far Cry: Vengeance
+52435845|All Star Cheer Squad
+52435850|All Star Cheer Squad
+52435858|All Star Cheer Squad
+52443245|Red Steel
+5244324a|Red Steel
+5244324b|Red Steel
+52443250|Red Steel
+52443258|Red Steel
+52443445|Dance Dance Revolution Hottest Party
+5244344a|Dance Dance Revolution Hottest Party
+52443450|Dance Dance Revolution Hottest Party
+52443650|Wii
+52443845|Dancing with the Stars
+52444145|Dancing with the Stars
+52444245|Dragon Ball Z
+5244424a|Dragon Ball Z
+52444250|Dragon Ball Z
+52444345|Dragon Ball Z
+52444445|Dance Dance Revolution Hottest Party
+5244444a|Dance Dance Revolution Hottest Party
+52444450|Dance Dance Revolution Hottest Party
+52444645|Shaun White Snowboarding: Road Trip
+52444650|Shaun White Snowboarding: Road Trip
+52444745|Castlevania
+52444750|Castlevania
+52444845|Destroy All Humans! Big Willy Unleashed
+52444850|Destroy All Humans! Big Willy Unleashed
+52444945|The Dog Island
+5244494a|The Dog Island
+52444950|The Dog Island
+52444a45|Death Jr.: Root of Evil
+52444a50|Death Jr.: Root of Evil
+52444b45|Donkey Kong
+52444b4a|Donkey Kong
+52444b50|Donkey Kong
+52444c45|Spy Fox in Dry Cereal
+52444c50|Spy Fox in Dry Cereal
+52444e45|Disney
+52444f45|Petz
+52444f4a|Dog to Mahou no Boushi
+52445045|Dragon Ball Z
+52445050|Dora Saves the Snow Princess
+52445058|Dora Saves the Snow Princess
+52445145|Dragon Quest Swords: The Masked Queen and The Tower of Mirrors
+52445150|Dragon Quest Swords: The Masked Queen and The Tower of Mirrors
+52445245|Kirby's Adventure
+5244524a|Kirby's Adventure
+52445250|Kirby's Adventure
+52445345|Dragon Ball Z
+5244534a|Dragon Ball Z
+52445350|Dragon Ball Z
+52445445|Tamagotchi: Party On!
+52445450|Tamagotchi: Party On!
+52445645|Driver: Parallel Lines
+52445650|Driver: Parallel Lines
+52445745|Dragon Ball Z
+5244574a|Dragon Blade: Wrath of Fire
+52445750|Dragon Blade: Wrath of Fire
+52445845|Dragon Ball Z
+5244584a|Deca Sporta
+5244584b|Deca Sporta
+52445850|Sports Island
+52445945|Dragon Ball Z
+52445a4a|Disaster: Day of Crisis
+52445a50|Disaster: Day of Crisis
+52453345|Wii
+52453445|Resident Evil
+5245344a|Resident Evil
+52453450|Resident Evil
+52453550|The Munchables
+5245384a|Hitman
+52454145|Celebrity Sports Showdown
+52454146|Celebrity Sports Showdown
+52454150|Celebrity Sports Showdown
+52454245|Dragon Ball Z
+52454250|Wii
+52454345|Spy Games: Elevator Mission
+52454350|Spy Games: Elevator Mission
+52454445|Red Steel
+5245444a|Red Steel
+52454450|Red Steel
+52454745|Emergency Mayhem
+52454750|Emergency Mayhem
+52454845|Emergency Heroes
+52454850|Emergency Heroes
+52454a45|Active Life: Extreme Challenge
+52454a4a|Family Trainer
+52454b45|Gold's Gym: Dance Workout
+52454b4a|Wii
+52454b50|My Fitness Coach
+52454b55|Gold's Gym: Dance Workout
+52454c45|Elebits
+52454c4a|Elebits
+52454c4b|Elebits
+52454d4a|Wii
+52454e45|Sonic
+52454e4a|Sonic
+52454e50|Sonic
+52455145|Go, Diego, Go! Safari Rescue
+52455150|Go, Diego, Go! Safari Rescue
+52455158|Go, Diego, Go! Safari Rescue
+52455159|Go, Diego, Go! Safari Rescue
+52455550|My Body Coach
+52455746|My Horse Club: On the Trail of the Mysterious Appaloosa
+52455758|My Horse Club: On the Trail of the Mysterious Appaloosa
+52455759|My Horse Club: On the Trail of the Mysterious Appaloosa
+52455845|Excite Truck
+5245584a|Excite Truck
+52455850|Excite Truck
+52455945|Dragon Ball Z
+52455950|Sing It
+52455958|Sing It
+52455a45|Fritz Chess
+52455a50|Fritz Chess
+52463245|Fantastic Four: Rise of the Silver Surfer
+52463250|Fantastic Four: Rise of the Silver Surfer
+52463445|Super Fruit Fall
+52463450|Super Fruit Fall
+52463845|FIFA
+5246384a|FIFA
+5246384b|FIFA
+52463850|FIFA
+52463858|FIFA
+52463859|FIFA
+52463945|FIFA
+5246394a|FIFA
+5246394b|FIFA
+52463950|FIFA
+52463952|FIFA
+52463958|FIFA
+52463959|FIFA
+52464145|Active Life: Extreme Challenge
+52464150|Family Trainer
+52464245|Endless Ocean
+52464250|Endless Ocean
+52464345|Final Fantasy
+5246434a|Final Fantasy
+52464350|Final Fantasy
+52464545|Fire Emblem: Radiant Dawn
+52464550|Fire Emblem: Radiant Dawn
+52464645|Final Fantasy
+5246464a|Final Fantasy
+52464650|Final Fantasy
+52464b45|My Fitness Coach
+52464b50|My Fitness Coach
+52464b58|My Fitness Coach
+52464c45|Madden NFL
+52464c50|Wii
+52464e45|Wii
+52464e4a|Wii
+52464e4b|Wii
+52464e50|Wii
+52464e57|Wii
+52464f45|Spider-Man
+52464f50|Spider-Man
+52464f58|Spider-Man
+52465045|Wii
+5246504a|Wii
+5246504b|Wii
+52465050|Wii
+52465057|Wii
+52465145|FaceBreaker K.O. Party
+5246514a|FaceBreaker K.O. Party
+5246514b|FaceBreaker K.O. Party
+52465150|FaceBreaker K.O. Party
+52465245|Furu Furu Park
+5246524a|Furu Furu Park
+52465445|Baseball
+5246554a|Wii
+52465745|Safari Adventures Africa
+52465750|Safari Adventures Africa
+52465a45|Imagine Fashion Idol
+52465a50|Imagine Fashion Idol
+52473245|Guitar Hero
+5247324a|Guilty Gear XX Accent Core
+52473250|Guilty Gear XX Accent Core
+52473545|Guinness World Records: The Videogame
+52473550|Guinness World Records: The Videogame
+52473645|Boogie SuperStar
+52473650|Boogie SuperStar
+52473845|Petz
+52473850|Petz
+52473945|Guitar Hero
+52474145|Planet 51: The Game
+52474150|Planet 51: The Game
+52474245|Harvey Birdman: Attorney at Law
+52474250|Harvey Birdman: Attorney at Law
+52474345|Wii
+5247434a|Wii
+52474445|Target: Terror
+52474450|Target: Terror
+52474645|The Godfather: Blackhand Edition
+52474646|The Godfather: Blackhand Edition
+52474649|The Godfather: Blackhand Edition
+52474650|The Godfather: Blackhand Edition
+52474653|The Godfather: Blackhand Edition
+52474845|Guitar Hero
+5247484a|Guitar Hero
+5247484b|Guitar Hero
+52474850|Guitar Hero
+5247494a|Wii
+52474950|Wii
+52474a45|George of the Jungle: Search for the Secret
+52474a50|George of the Jungle: Search for the Secret
+52474b45|Guitar Hero
+52474b50|Crazy Mini Golf
+52474c45|Geometry Wars: Galaxies
+52474c50|Geometry Wars: Galaxies
+52474d45|The Grim Adventures of Billy & Mandy
+52474d50|The Grim Adventures of Billy & Mandy
+52475145|Ghostbusters: The Video Game
+52475150|Ghostbusters: The Video Game
+52475345|Ghost Squad
+5247534a|Ghost Squad
+52475350|Ghost Squad
+52475445|GT Pro Series
+5247544a|GT Pro Series
+52475450|GT Pro Series
+52475645|Guitar Hero
+5247564a|Guitar Hero
+52475650|Guitar Hero
+52475745|Rabbids Go Home
+5247574a|Rabbids Go Home
+52475750|Rabbids Go Home
+52475758|Rabbids Go Home
+52475845|Guitar Hero
+52475850|Game Party
+52475945|Action Girlz Racing
+52475950|Action Girlz Racing
+52475a45|Guitar Hero
+52483345|Disney
+5248334a|Disney
+52483350|Disney
+52483645|Harry Potter
+5248364b|Harry Potter
+52483650|Harry Potter
+5248374a|Wii
+52483845|Tomb Raider: Underworld
+5248384a|Tomb Raider: Underworld
+52483850|Tomb Raider: Underworld
+52483858|Tomb Raider: Underworld
+52484145|Wii
+5248414a|Wii
+5248414b|Wii
+52484150|Wii
+52484157|Wii
+52484345|The History Channel: Battle for the Pacific
+52484350|The History Channel: Battle for the Pacific
+52484445|The House of the Dead: Overkill
+5248444a|The House of the Dead: Overkill
+52484450|The House of the Dead: Overkill
+52484545|Professor Heinz Wolff's Gravity
+52484550|Professor Heinz Wolff's Gravity
+52484645|Happy Feet
+52484650|Happy Feet
+52484750|Agent Hugo: Lemoon Twist
+52484758|Agent Hugo: Lemoon Twist
+5248484a|Suzumiya Haruhi no Gekidou
+52484a4a|Wii
+52484b45|Help Wanted: 50 Wacky Jobs
+52484c45|World Championship Poker Featuring Howard Lederer: All-In
+52484c50|World Championship Poker Featuring Howard Lederer: All-In
+52484d45|Harvest Moon
+52484d50|Harvest Moon
+52484e45|My Horse & Me
+52484e50|My Horse & Me
+52484f45|The House of the Dead: Overkill
+52484f4a|The House of the Dead: Overkill
+52484f50|The House of the Dead: Overkill
+52485145|Hannah Montana: Spotlight World Tour
+52485150|Hannah Montana: Spotlight World Tour
+52485158|Hannah Montana: Spotlight World Tour
+52485159|Hannah Montana: Spotlight World Tour
+5248524a|Wii
+52485345|Heatseeker
+52485350|Heatseeker
+52485358|Heatseeker
+52485359|Heatseeker
+52485445|Manhunt 2
+52485450|Manhunt 2
+52485545|Skate City Heroes
+52485550|Skate City Heroes
+52485645|Crazy Chicken Tales
+52485650|Crazy Chicken Tales
+52485745|Hot Wheels: Beat That!
+52485750|Hot Wheels: Beat That!
+52485845|Battle of the Bands
+52485850|Battle of the Bands
+5248594a|Wii
+52485a45|Petz
+52493245|Sing It
+52493250|Sing It
+52493345|The Ant Bully
+52493350|Sing It
+52493650|Summer Sports Party
+52493845|Brothers In Arms: Road to Hill 30
+52493850|Brothers In Arms: Road to Hill 30
+52493945|Diva Girls: Divas on Ice
+52493950|Diva Girls: Divas on Ice
+52494145|Ice Age
+52494149|Ice Age
+52494150|Ice Age
+52494245|Igor the Game
+52494250|Igor the Game
+52494445|Smiley World: Island Challenge
+52494450|Smiley World: Island Challenge
+52494545|Karaoke Revolution Presents: American Idol Encore
+52494645|Karaoke Revolution Presents: American Idol Encore
+52494745|Go, Diego, Go! Great Dinosaur Rescue
+52494750|Go, Diego, Go! Great Dinosaur Rescue
+52494845|The Incredibles
+52494850|The Incredibles
+52494945|Kart Racer
+52494950|Kart Racer
+52494a45|G.I. JOE: The Rise of Cobra
+52494a50|G.I. JOE: The Rise of Cobra
+52494b45|BRICK RACE
+52494b50|BRICK RACE
+52494d45|Impossible Mission
+52494d50|Impossible Mission
+52494e45|Dead Rising: Chop Till You Drop
+52494e50|Dead Rising: Chop Till You Drop
+52495045|One Piece: Unlimited Adventure
+5249504a|One Piece: Unlimited Adventure
+52495050|One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
+52495245|Iron Man
+52495250|Iron Man
+5249554a|One Piece Unlimited Cruise 2: Awakening of a Hero
+52495550|One Piece Unlimited Cruise 2: Awakening of a Hero
+52495645|Ivy The Kiwi?
+5249564a|Ivy The Kiwi?
+52495650|Ivy The Kiwi?
+52495845|Dodge Racing: Charger vs Challenger
+52495850|Dodge Racing: Charger vs Challenger
+52495945|Space Camp
+52495950|Space Camp
+524a3245|007
+524a324a|007
+524a3250|007
+524a3345|Jeep Thrills
+524a3350|Jeep Thrills
+524a3445|Jewel Master: Cradle of Rome
+524a3450|Jewel Master: Cradle of Rome
+524a3645|The Sims
+524a3650|The Sims
+524a3746|Télé 7 Jeux: Mots Fléchés
+524a3845|Indiana Jones and the Staff of Kings
+524a3850|Indiana Jones and the Staff of Kings
+524a3946|Think Logic Trainer
+524a3948|Think Logic Trainer
+524a3950|Think Logic Trainer
+524a3958|Think Logic Trainer
+524a4144|Call of Duty: Modern Warfare - Reflex Edition
+524a4145|Call of Duty: Modern Warfare - Reflex Edition
+524a4150|Call of Duty: Modern Warfare - Reflex Edition
+524a4158|Call of Duty: Modern Warfare - Reflex Edition
+524a4345|Score International Baja 1000: World Championship Offroad Racing
+524a4350|Score International Baja 1000: World Championship Offroad Racing
+524a4545|Jenga World Tour
+524a4550|Jenga World Tour
+524a4645|Jillian Michaels Fitness Ultimatum 2011
+524a4650|Jillian Michaels Fitness Ultimatum 2011
+524a474a|Wii
+524a4845|Madagascar Kartz
+524a4850|Madagascar Kartz
+524a4d45|Jumper: Griffin's Story
+524a4d50|Jumper: Griffin's Story
+524a4f45|Ju-On The Grudge
+524a4f50|Ju-On The Grudge
+524a504a|Jikkyou Powerful Pro Yakyuu 9
+524a5245|Dance Dance Revolution Hottest Party
+524a524a|Super Mario
+524a5250|Dance Dance Revolution Hottest Party
+524a5345|Kawasaki Jet Ski
+524a5350|Kawasaki Jet Ski
+524a5358|Kawasaki Jet Ski
+524a5645|Hysteria Hospital: Emergency Ward
+524a5650|Hysteria Hospital: Emergency Ward
+524a5845|Go Play Lumberjacks
+524a5858|Go Play Lumberjacks
+524a5a50|SNK Arcade Classics Volume 1
+524b3245|Trauma Center: New Blood
+524b324a|Trauma Center: New Blood
+524b3250|Trauma Center: New Blood
+524b3545|Kirby's Epic Yarn
+524b354b|Kirby's Epic Yarn
+524b3550|Kirby's Epic Yarn
+524b3645|Marble Saga: Kororinpa
+524b364a|Kororinpa
+524b3845|Baseball
+524b3945|Karaoke Revolution Glee
+524b3950|Karaoke Revolution Glee
+524b4145|Ultimate Shooting Collection
+524b414a|Ultimate Shooting Collection
+524b414b|Wii
+524b4150|Ultimate Shooting Collection
+524b4245|Cranium Kabookii
+524b4250|Cranium Kabookii
+524b4445|Trauma Center: Second Opinion
+524b444a|Trauma Center: Second Opinion
+524b4450|Trauma Center: Second Opinion
+524b4545|Cate West: The Vanishing Files
+524b4550|Cate West: The Vanishing Files
+524b4645|King of Fighters Collection: The Orochi Saga
+524b464b|King of Fighters Collection: The Orochi Saga
+524b4650|King of Fighters Collection: The Orochi Saga
+524b4745|Kidz
+524b4750|Kidz
+524b4845|Kung Fu Panda: Legendary Warriors
+524b4850|Kung Fu Panda: Legendary Warriors
+524b4945|Kidz
+524b4950|Kidz
+524b4958|Kidz
+524b4a4a|Wii
+524b4c45|Coraline
+524b4c50|Coraline
+524b4d45|Mortal Kombat: Armageddon
+524b4d50|Mortal Kombat: Armageddon
+524b4e4a|Wii
+524b5045|Kung Fu Panda
+524b504a|Kung Fu Panda
+524b504b|Kung Fu Panda
+524b5050|Kung Fu Panda
+524b5056|Kung Fu Panda
+524b5058|Kung Fu Panda
+524b5059|Kung Fu Panda
+524b5345|Kidz
+524b5350|Kidz
+524b5358|Kidz
+524b5445|Kidz
+524b5458|Kidz
+524b5645|The Sims
+524b5650|Baseball
+524b5845|Rock Band
+524b5850|Rock Band
+524b5945|Army Men: Soldiers of Misfortune
+524b5950|Army Men: Soldiers of Misfortune
+524b5a45|Lost in Blue: Shipwrecked
+524b5a4a|Wii
+524b5a50|Lost in Blue: Shipwrecked
+524c3248|Horse & Pony: My Riding Stables
+524c3250|Horse & Pony: My Riding Stables
+524c3445|LEGO
+524c3450|LEGO
+524c3545|iCarly
+524c3550|iCarly
+524c3745|Littlest Pet Shop: Friends
+524c3750|Littlest Pet Shop: Friends
+524c3845|MLB Power Pros
+524c4144|Deal or No Deal: The Banker Is Back
+524c4150|Deal or No Deal: The Banker Is Back
+524c4245|LEGO
+524c4250|LEGO
+524c4445|Legend of the Dragon
+524c4450|Legend of the Dragon
+524c4545|Ten Pin Alley 2
+524c4550|Ten Pin Alley 2
+524c4645|Star Wars
+524c4650|Star Wars
+524c4745|Star Wars
+524c474a|Star Wars
+524c4750|Star Wars
+524c4845|Baseball
+524c4850|Baseball
+524c4945|LEGO
+524c4950|LEGO
+524c4b45|Code Lyoko: Quest for Infinity
+524c4b50|Code Lyoko: Quest for Infinity
+524c4e45|Survivor
+524c4e46|Survivor
+524c4e48|Survivor
+524c4e49|Survivor
+524c4e50|Survivor
+524c5045|Littlest Pet Shop
+524c5050|Littlest Pet Shop
+524c5145|Junior League Sports
+524c5150|World Championship Sports
+524c5245|Tomb Raider: Anniversary
+524c524a|Tomb Raider: Anniversary
+524c5250|Tomb Raider: Anniversary
+524c5345|Alien Syndrome
+524c5350|Alien Syndrome
+524c5445|London Taxi: Rush Hour
+524c5450|London Taxi: Rush Hour
+524c5458|London Taxi: Rush Hour
+524c5545|Disney
+524c5645|The Last Airbender
+524c5650|Avatar: The Legend of Aang
+524c5745|Ratatouille
+524c574a|Ratatouille
+524c5750|Ratatouille
+524c5757|Ratatouille
+524c5758|Ratatouille
+524c5759|Ratatouille
+524c575a|Ratatouille
+524c5845|Luxor: Pharaoh's Challenge
+524c5850|Luxor: Pharaoh's Challenge
+524c5945|Looney Tunes: Acme Arsenal
+524c5950|Looney Tunes: Acme Arsenal
+524c5a45|Defendin' De Penguin
+524c5a50|Defendin' De Penguin
+524d3245|Medal of Honor: Heroes 2
+524d324a|Medal of Honor: Heroes 2
+524d3250|Medal of Honor: Heroes 2
+524d3255|Medal of Honor: Heroes 2
+524d3258|Medal of Honor: Heroes 2
+524d3345|Metroid Prime
+524d334a|Metroid Prime
+524d3350|Metroid Prime
+524d3445|Monster 4x4: World Circuit
+524d344a|Monster 4x4: World Circuit
+524d3450|Monster 4x4: World Circuit
+524d3545|The Mummy: Tomb of the Dragon Emperor
+524d3550|The Mummy: Tomb of the Dragon Emperor
+524d3645|Baroque
+524d3650|Baroque
+524d3745|Monster Lab
+524d3750|Monster Lab
+524d3845|Super Mario
+524d384a|Super Mario
+524d384b|Super Mario
+524d3850|Super Mario
+524d3945|Mushroom Men: The Spore Wars
+524d3950|Mushroom Men: The Spore Wars
+524d4145|Super Mario
+524d414a|Super Mario
+524d4150|Super Mario
+524d4245|Super Mario
+524d424a|Baseball
+524d434a|Luma's CT Pack
+524d434b|Wii
+524d4350|Luma's CT Pack
+524d4445|Madden NFL
+524d4450|Madden NFL
+524d4645|AMF Bowling Pinbusters!
+524d4650|AMF Bowling Pinbusters!
+524d4745|Guitar Hero
+524d474a|Super Mario
+524d474b|Super Mario
+524d4750|Super Mario
+524d4845|Monster Hunter G
+524d484a|Monster Hunter G
+524d4850|Monster Hunter G
+524d4945|Margot's Word Brain
+524d4950|Margot's Word Brain
+524d4a4a|Wii
+524d4b4a|Super Mario
+524d4b50|Super Mario
+524d4c45|Metal Slug Anthology
+524d4c4a|Metal Slug Complete
+524d4c4b|Metal Slug Complete
+524d4c50|Metal Slug Anthology
+524d4d50|Guitar Hero
+524d4e44|My Pet Hotel
+524d4e48|My Pet Hotel
+524d4e50|My Pet Hotel
+524d4f45|Monster Lab
+524d4f50|Monster Lab
+524d5045|MLB Power Pros
+524d5050|MLB Power Pros
+524d5145|Myth Makers: Orbs of Doom
+524d5150|Myth Makers: Orbs of Doom
+524d5158|Myth Makers: Orbs of Doom
+524d5245|Cocoto Magic Circus
+524d5250|Cocoto Magic Circus
+524d5258|Cocoto Magic Circus
+524d5345|Marvel: Ultimate Alliance
+524d5350|Marvel: Ultimate Alliance
+524d544a|Momotarô Dentetsu 16
+524d5545|Marvel: Ultimate Alliance
+524d554a|Marvel: Ultimate Alliance
+524d5550|Marvel: Ultimate Alliance
+524d5645|Medal of Honor: Vanguard
+524d5650|Medal of Honor: Vanguard
+524d5658|Medal of Honor: Vanguard
+524d5745|M&M's Kart Racing
+524d5750|M&M's Kart Racing
+524d5845|MX vs. ATV: Untamed
+524d5846|MX vs. ATV: Untamed
+524d5850|MX vs. ATV: Untamed
+524d5945|Myth Makers: Super Kart GP
+524d5950|Myth Makers: Super Kart GP
+524d5958|Myth Makers: Super Kart GP
+524d5a45|Myth Makers: Trixie in Toyland
+524d5a50|Myth Makers: Trixie in Toyland
+524d5a58|Myth Makers: Trixie in Toyland
+524e3245|Namco
+524e324b|Namco
+524e3250|Namco
+524e3345|Nicktoons: Attack of the Toybots
+524e334a|Nicktoons: Attack of the Toybots
+524e3350|Nicktoons: Attack of the Toybots
+524e3358|Nicktoons: Attack of the Toybots
+524e3545|The Naked Brothers Band: The Video Game
+524e3550|The Naked Brothers Band: The Video Game
+524e3645|North American Hunting Extravaganza
+524e3650|North American Hunting Extravaganza
+524e3945|Escape from Bug Island
+524e3950|Escape from Bug Island
+524e4145|NCAA
+524e4245|NBA
+524e4250|NBA
+524e4258|NBA
+524e4345|SNK Arcade Classics Volume 1
+524e4350|SNK Arcade Classics Volume 1
+524e4545|Naruto
+524e454a|Naruto
+524e4550|Naruto
+524e4645|Madden NFL
+524e4650|Madden NFL
+524e4845|No More Heroes
+524e484a|No More Heroes
+524e484b|No More Heroes
+524e4850|No More Heroes
+524e4a45|Mini Ninjas
+524e4a50|Mini Ninjas
+524e4b45|NERF N-Strike
+524e4b50|NERF N-Strike
+524e4c45|NHL
+524e4c50|NHL
+524e4d45|Ninjabread Man
+524e4d50|Ninjabread Man
+524e4d58|Ninjabread Man
+524e4e45|The Chronicles of Narnia: Prince Caspian
+524e4e4a|The Chronicles of Narnia: Prince Caspian
+524e4e50|The Chronicles of Narnia: Prince Caspian
+524e4e58|The Chronicles of Narnia: Prince Caspian
+524e4e59|The Chronicles of Narnia: Prince Caspian
+524e4e5a|The Chronicles of Narnia: Prince Caspian
+524e5045|Need for Speed: ProStreet
+524e504a|Need for Speed: ProStreet
+524e504b|Need for Speed: ProStreet
+524e5050|Need for Speed: ProStreet
+524e5058|Need for Speed: ProStreet
+524e5059|Need for Speed: ProStreet
+524e5245|Nitro Bike
+524e524a|Nitro Bike
+524e5250|Nitro Bike
+524e5344|Need for Speed: Nitro
+524e5345|Need for Speed: Nitro
+524e5346|Need for Speed: Nitro
+524e534a|Need for Speed: Nitro
+524e5350|Need for Speed: Nitro
+524e5358|Need for Speed: Nitro
+524e5645|Anubis II
+524e5650|Anubis II
+524e5658|Anubis II
+524e574a|Namco
+524e574b|Namco
+524e5845|Naruto
+524e584a|Naruto
+524e5850|Naruto
+524e5945|Naruto
+524e594a|Naruto
+524e5950|Naruto
+524e5a45|Ninja Reflex
+524e5a4a|Ninja Reflex
+524e5a4b|Ninja Reflex
+524e5a50|Ninja Reflex
+524f3245|Ford Racing Off Road
+524f3345|Little King's Story
+524f334a|Little King's Story
+524f3350|Little King's Story
+524f3545|Hot Wheels: Battle Force 5
+524f3550|Hot Wheels: Battle Force 5
+524f3745|Spyro
+524f3750|Spyro
+524f3845|Spyro
+524f3850|Spyro
+524f3858|Spyro
+524f3945|Aqua Panic!
+524f3950|Aqua Panic!
+524f4145|Overlord: Dark Legend
+524f4150|Overlord: Dark Legend
+524f4345|Cocoto Kart Racer
+524f4350|Cocoto Kart Racer
+524f4445|WarioWare: Smooth Moves
+524f444a|WarioWare: Smooth Moves
+524f444b|WarioWare: Smooth Moves
+524f4450|WarioWare: Smooth Moves
+524f4545|Hotel for Dogs
+524f4550|Hotel for Dogs
+524f4650|Offroad Extreme!
+524f4658|Offroad Extreme!
+524f4745|Tak and the Guardians of Gross
+524f4750|Tak and the Guardians of Gross
+524f4a45|Rapala: We Fish
+524f4a50|Rapala: We Fish
+524f4b4a|Wii
+524f4c45|Sonic
+524f4c4a|Sonic
+524f4c4b|Sonic
+524f4c50|Sonic
+524f4d4a|Monster Hunter G
+524f4e45|NBA
+524f4e4a|NBA
+524f4e50|NBA
+524f5045|Open Season
+524f5050|Open Season
+524f514a|Wii
+524f5445|Twin Strike: Operation Thunder
+524f5450|Twin Strike: Operation Thunder
+524f554a|One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
+524f5550|One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
+524f5645|Playmobil: Circus
+524f5650|Playmobil: Circus
+524f5745|Ōkami
+524f574a|Ōkami
+524f5750|Ōkami
+524f5845|Order Up!
+524f5850|Order Up!
+524f5858|Order Up!
+524f5945|Cloudy with a Chance of Meatballs
+524f5950|Cloudy with a Chance of Meatballs
+524f5958|Cloudy with a Chance of Meatballs
+52503245|Smarty Pants
+52503250|Smarty Pants
+52503445|The Sims
+5250344a|Boku to Sim no Machi
+52503450|The Sims
+5250354a|Baseball
+52503645|Petz
+52503650|Petz
+52503745|Pirates: Hunt for Blackbeard's Booty
+52503750|Pirates: Hunt for Blackbeard's Booty
+52503945|Space Camp
+52503950|Space Camp
+52503958|Space Camp
+52504245|Pokemon
+5250424a|Pokemon
+52504250|Pokemon
+52504345|Puzzler Collection
+52504350|Puzzler Collection
+52504358|Puzzler Collection
+52504445|PDC World Championship Darts 2008
+52504450|PDC World Championship Darts 2008
+52504645|Pitfall
+52504650|Pitfall
+52504655|Pitfall
+52504745|Rampage Total Destruction
+52504750|Rampage Total Destruction
+52504850|Peppa Pig: The Game
+52504945|Wii
+52504950|Wii
+52504a45|Arc Rise Fantasia
+52504a4a|Arc Rise Fantasia
+52504b45|World Series of Poker: Tournament of Champions 2007 Edition
+52504b50|World Series of Poker: Tournament of Champions 2007 Edition
+52504c45|Rapala Tournament Fishing
+52504c50|Rapala Tournament Fishing
+52504d4a|Jikkyou Powerful Major League
+52504e45|Paws & Claws: Pet Vet
+52504f45|Opoona
+52504f4a|Opoona
+52504f50|Opoona
+52505045|Prince of Persia
+52505050|Prince of Persia
+52505145|Pool Party
+52505150|Pool Party
+52505345|Disney
+5250534a|Wii
+52505350|Disney
+52505445|Puppy Luv: Your New Best Friend
+52505450|Puppy Luv: Your New Best Friend
+5250554a|Puyo Puyo! 15th Anniversary
+52505645|Purr Pals
+52505650|Purr Pals
+52505758|Prince of Persia
+5250575a|Prince of Persia
+52505845|EA
+5250584a|EA
+52505850|EA
+52505945|Super Swing Golf
+5250594a|Super Swing Golf
+52505a4a|Jikkyou Powerful Pro Yakyuu 9
+5251324a|Wii
+52513350|PDC World Championship Darts 2008
+52513445|SpongeBob SquarePants
+5251344a|SpongeBob SquarePants
+52513450|SpongeBob SquarePants
+52513545|Mad Dog McCree Gunslinger Pack
+52513550|Mad Dog McCree Gunslinger Pack
+52513558|Mad Dog McCree Gunslinger Pack
+52513645|Cursed Mountain
+52513650|Cursed Mountain
+52513658|Cursed Mountain
+52513745|Martian Panic
+52513750|Martian Panic
+52513845|MotoGP
+52513850|MotoGP
+52513945|NBA
+52513946|NBA
+52513950|NBA
+52513953|NBA
+52514245|Kawasaki Quad Bikes
+52514250|Kawasaki Quad Bikes
+52514258|Kawasaki Quad Bikes
+52514345|The Munchables
+52514545|Agatha Christie: Evil Under the Sun
+52514550|Agatha Christie: Evil Under the Sun
+52514745|The Sims
+5251474a|The Sims
+52514750|The Sims
+52514a45|Crash of the Titans
+52514a50|Crash of the Titans
+52514a58|Crash of the Titans
+52514b50|Fun Park Party
+52514c45|Star Wars
+52514c50|Star Wars
+52514d45|Ocean Commander
+52514d50|Ocean Commander
+52514e45|Scooby-Doo
+52514e50|Scooby-Doo
+52514f45|Spore Hero
+52514f4a|Spore Hero
+52514f50|Spore Hero
+52515045|Cabela's Trophy Bucks
+52515050|Cabela's Trophy Bucks
+52515145|Guitar Hero
+52515245|The Sky Crawlers: Innocent Aces
+5251524a|The Sky Crawlers: Innocent Aces
+52515250|The Sky Crawlers: Innocent Aces
+52515345|NBA
+52515350|NBA
+52515445|Agatha Christie: And Then There Were None
+52515450|Agatha Christie: And Then There Were None
+52515645|Pacific Liberator
+52515650|Pacific Liberator
+52515745|Puzzle Quest: Challenge of the Warlords
+52515750|Puzzle Quest: Challenge of the Warlords
+52515850|Sonic
+52515a45|Monster 4x4: Stunt Racer
+52515a50|Monster 4x4: Stunt Racer
+52523245|Rig Racer 2
+52523250|Rig Racer 2
+5252334a|Wii
+52523350|Vegas Party
+52523445|Build-A-Bear Workshop: A Friend Fur All Seasons
+52523450|Build-A-Bear Workshop: A Friend Fur All Seasons
+52523545|Ready 2 Rumble Revolution
+52523550|Ready 2 Rumble Revolution
+52523945|WWE
+52524145|Rock 'N' Roll Adventures
+52524150|Rock 'N' Roll Adventures
+52524158|Rock 'N' Roll Adventures
+52524245|Rayman
+5252424a|Rayman
+52524250|Rayman
+52524345|Barbie Horse Adventures: Riding Camp
+52524350|Barbie Horse Adventures: Riding Camp
+52524445|Rock Band
+52524450|Rock Band
+52524545|Rock Band
+52524550|Rock Band
+52524645|Reel Fishing: Angler's Dream
+52524650|Reel Fishing: Angler's Dream
+52524745|Madagascar: Escape 2 Africa
+52524750|Madagascar: Escape 2 Africa
+52524758|Madagascar
+52524850|Mary King's Riding School 2
+52524858|Mary King's Riding School 2
+52524a46|Ready Steady Cook: The Game
+52524a49|Ready Steady Cook: The Game
+52524a50|Ready Steady Cook: The Game
+52524b45|Alone in the Dark
+52524b50|Alone in the Dark
+52524c45|Bratz: Girlz Really Rock
+52524c50|Bratz: Girlz Really Rock
+52524c58|Bratz: Girlz Really Rock
+52524c59|Bratz: Girlz Really Rock
+52524c5a|Bratz: Girlz Really Rock
+52524d45|Hasbro
+52524d49|Hasbro
+52524d50|Hasbro
+52524d58|Hasbro
+52525145|Shrek
+52525150|Shrek
+52525158|Shrek
+52525245|Real Heroes: Firefighter
+52525250|Real Heroes: Firefighter
+52525345|Meet the Robinsons
+5252534a|Meet the Robinsons
+52525350|Meet the Robinsons
+52525358|Meet the Robinsons
+52525445|Block Party 20 Games
+52525450|Block Party 20 Games
+52525546|Winter Sports
+5252554a|Winter Sports
+52525550|Winter Sports
+5252574a|Super Robot Taisen GC
+52525850|Monster Trux Arenas
+52525858|Monster Trux Arenas
+52525945|Rogue Trooper: Quartz Zone Massacre
+52525950|Rogue Trooper: Quartz Zone Massacre
+52533245|Ultimate Duck Hunting
+52533250|Ultimate Duck Hunting
+52533345|Spider-Man
+5253334a|Spider-Man
+52533350|Spider-Man
+52533358|Spider-Man
+52533445|Castle of Shikigami III
+5253344a|Shikigami no Shiro II
+52533450|Castle of Shikigami III
+52533545|Samurai Warriors 3
+5253354a|Sengoku
+52533550|Samurai Warriors 3
+52533945|Sonic
+5253394a|Sonic
+52533950|Sonic
+52534145|SpongeBob SquarePants
+52534150|SpongeBob SquarePants
+52534245|Super Mario
+5253424a|Dairantou Smash Brothers X
+5253424b|Dairantou Smash Brothers X
+52534250|Super Mario
+52534344|Scarface: The World Is Yours
+52534345|Scarface: The World Is Yours
+52534350|Scarface: The World Is Yours
+52534355|Scarface: The World Is Yours
+5253444a|SD Gundam
+52534645|Muramasa: The Demon Blade
+5253464a|Oboro Muramasa
+52534650|Muramasa: The Demon Blade
+52534845|The Sims
+5253484b|The Sims
+52534850|The Sims
+52534945|The Sims
+5253494a|Boku to Sim no Machi
+52534950|The Sims
+52534a45|Guitar Hero
+52534b45|Shrek
+52534b50|Shrek
+52534b58|Shrek
+52534c45|Soulcalibur: Legends
+52534c4a|Soulcalibur: Legends
+52534c4b|Soulcalibur: Legends
+52534c50|Soulcalibur: Legends
+52534d45|Super Monkey Ball
+52534d4a|Super Monkey Ball
+52534d50|Super Monkey Ball
+52534e44|The Simpsons Game
+52534e45|The Simpsons Game
+52534e46|The Simpsons Game
+52534e50|The Simpsons Game
+52534e58|The Simpsons Game
+52534f45|Solitaire & Mahjong
+52534f50|Solitaire & Mahjong
+52535045|Wii
+5253504a|Wii
+5253504b|Wii
+52535050|Wii
+52535057|Wii
+5253514a|Family Ski
+52535150|Family Ski
+52535245|Sonic
+5253524a|Sonic
+52535250|Sonic
+52535345|Samurai Shodown
+5253534a|Samurai Spirits: Rokuban Shoubu
+5253534b|Samurai Spirits: Rokuban Shoubu
+52535350|Samurai Shodown
+52535445|Star Wars
+5253544a|Star Wars
+52535450|Star Wars
+52535645|Sonic
+5253564a|Sonic
+52535650|Sonic
+52535745|Spyborgs
+52535750|Spyborgs
+52535845|SSX
+5253584a|SSX
+5253584b|SSX
+52535850|SSX
+52535950|Super Mario
+52543245|Arctic Tale
+52543250|Arctic Tale
+52543345|Rockstar Games Presents: Table Tennis
+5254334a|Rockstar Games Presents: Table Tennis
+52543350|Rockstar Games Presents: Table Tennis
+52543445|Tales of Symphonia: Dawn of the New World
+52543450|Tales of Symphonia: Dawn of the New World
+52543545|SEGA Superstars Tennis
+52543550|SEGA Superstars Tennis
+52543646|Magic Roundabout
+52543650|Magic Roundabout
+52543745|Tiger Woods PGA Tour 10
+52543746|Tiger Woods PGA Tour 10
+52543750|Tiger Woods PGA Tour 10
+52543845|Tiger Woods PGA Tour 10
+5254384a|Tiger Woods PGA Tour 10
+5254384b|Tiger Woods PGA Tour 10
+52543850|Tiger Woods PGA Tour 10
+52543945|Tony Hawk
+52543950|Tony Hawk
+52544145|Tom Clancy
+52544150|Tom Clancy
+52544245|Rapala Fishing Frenzy
+52544250|Rapala Fishing Frenzy
+52544345|Tom Clancy
+52544350|Tom Clancy
+5254444a|Shin Chuuka Taisen
+5254444b|Shin Chuuka Taisen
+52544545|Paws & Claws: Pet Vet
+52544548|Real Stories: Veterinaire
+52544645|Transformers
+5254464a|Transformers
+5254464b|Transformers
+52544650|Transformers
+52544658|Transformers
+52544659|Transformers
+5254474a|Wii
+52544845|Tony Hawk
+52544850|Tony Hawk
+52544945|Wacky World of Sports
+5254494a|Wacky World of Sports
+52544950|Wacky World of Sports
+52544a45|Star Trek: Conquest
+52544a50|Star Trek: Conquest
+52544b4a|Sharuui Takoron
+52544b4b|Sharuui Takoron
+52544c45|Fishing Master: World Tour
+52544c50|Fishing Master: World Tour
+52544d50|Teenage Mutant Ninja Turtles
+52544e45|Tenchu: Shadow Assassins
+52544e50|Tenchu: Shadow Assassins
+52544f4a|428: Fuusa Sareta Shibuya de
+52545145|Monster Trux Offroad
+52545150|Monster Trux Offroad
+52545158|Monster Trux Offroad
+52545245|Fishing Master
+52545250|Fishing Master
+52545345|Totally Spies! Totally Party
+52545350|Totally Spies! Totally Party
+52545545|Secret Files Tunguska
+52545546|Secret Files Tunguska
+52545550|Secret Files Tunguska
+52545645|Thrillville: Off the Rails
+52545650|Thrillville: Off the Rails
+52545745|TNA iMPACT!
+52545750|TNA iMPACT!
+52545950|Wii
+52545a45|Zack & Wiki: Quest for Barbaros' Treasure
+52545a4a|Takarajima Z Barbaros' Treasure
+52545a4b|Zack & Wiki: Quest for Barbaros' Treasure
+52545a50|Zack & Wiki: Quest for Barbaros' Treasure
+52553245|Winter Sports
+52553250|Sing It
+52553445|My Fitness Coach
+52553450|NewU Fitness First Personal Trainer
+52553458|NewU Fitness First Personal Trainer
+52553545|The Princess and the Frog
+52553550|The Princess and the Frog
+52553556|The Princess and the Frog
+52553558|The Princess and the Frog
+52553559|The Princess and the Frog
+52553645|Free Running
+52553650|Free Running
+52553745|Night at the Museum: Battle of the Smithsonian - The Video Game
+52553758|Night at the Museum: Battle of the Smithsonian - The Video Game
+52553845|Bass Pro Shops: The Hunt
+52554145|Monster Jam: Urban Assault
+52554150|Monster Jam: Urban Assault
+52554245|Ultimate Board Game Collection
+52554250|Ultimate Board Game Collection
+52554345|Winter Sports
+52554350|Winter Sports
+52554358|Winter Sports
+52554545|G-Force
+52554550|G-Force
+52554552|G-Force
+52554558|G-Force
+52554559|G-Force
+52554645|Rune Factory: Frontier
+5255464a|Rune Factory: Frontier
+52554650|Rune Factory: Frontier
+52554745|Goosebumps: HorrorLand
+52554750|Goosebumps: HorrorLand
+52554845|Bakugan Battle Brawlers
+52554850|Bakugan Battle Brawlers
+52554858|Bakugan Battle Brawlers
+5255485a|Bakugan Battle Brawlers
+52554945|Sing It
+52554950|Sing It
+52554958|Sing It
+52554c45|Ultimate Band
+52554c50|Ultimate Band
+52554c52|Ultimate Band
+52554d50|Summer Athletics
+52554e4a|Wii
+52554f45|Aliens in the Attic
+52554f50|Aliens in the Attic
+52555245|Pool Hall Pro
+52555250|Pool Hall Pro
+52555345|SpongeBob SquarePants
+5255534b|SpongeBob SquarePants
+52555350|SpongeBob SquarePants
+52555358|SpongeBob SquarePants
+52555359|SpongeBob SquarePants
+52555545|Animal Crossing: City Folk
+5255554b|Animal Crossing: City Folk
+5255574a|Winning Post World
+52555850|Urban Extreme: Street Rage
+52555858|Urban Extreme: Street Rage
+52555945|No More Heroes 2: Desperate Struggle
+5255594a|No More Heroes 2: Desperate Struggle
+52555950|No More Heroes 2: Desperate Struggle
+52555a45|Ultimate I SPY
+52555a50|Ultimate I SPY
+52563245|Game Party
+52563753|Survivor
+52563845|Beach Fun: Summer Challenge
+52563850|Beach Fun: Summer Challenge
+52563945|Avatar: The Last Airbender - Into the Inferno
+52564145|Avatar: The Last Airbender - Into the Inferno
+52564245|Alvin and the Chipmunks
+52564250|Alvin and the Chipmunks
+52564645|Bigfoot: Collision Course
+52564650|Bigfoot: Collision Course
+52564750|Margot's Word Brain
+52564945|Bionicle Heroes
+52564950|Bionicle Heroes
+52564b45|Valhalla Knights: Eldar Saga
+52564b4a|Valhalla Knights: Eldar Saga
+52564b4b|Valhalla Knights: Eldar Saga
+52564c50|Rock Revolution
+52564e45|Calvin Tucker's Redneck Jamboree
+52564e50|Calvin Tucker's Redneck Jamboree
+52564f45|Vertigo
+52564f50|Vertigo
+52565045|PopStar Guitar
+52565050|PopStar Guitar
+52565245|Rebel Raiders: Operation Nighthawk
+52565250|Rebel Raiders: Operation Nighthawk
+52565345|Skate It
+5256534a|Skate It
+52565350|Skate It
+52565446|Real Stories: Veterinaire
+52565458|Real Stories: Veterinaire
+52565545|Virtua Tennis 4
+52565550|Virtua Tennis 4
+52565645|Big Beach Sports
+52565650|Big Beach Sports
+52565846|RTL Biathlon 2009
+52565850|RTL Biathlon 2009
+52565944|Call of Duty: World at War
+52565945|Call of Duty: World at War
+5256594b|Call of Duty: World at War
+52565950|Call of Duty: World at War
+52565958|Call of Duty: World at War
+52565959|Call of Duty: World at War
+52565a45|Monsters vs. Aliens
+52565a50|Monsters vs. Aliens
+52573345|Pirates of the Caribbean: At World's End
+5257334a|Pirates of the Caribbean: At World's End
+52573350|Pirates of the Caribbean: At World's End
+52573444|My Word Coach: Develop your vocabulary
+52573546|Who Wants To Be A Millionaire
+52573550|Who Wants To Be A Millionaire
+52573650|Super Mario
+52573950|WWE
+52573958|WWE
+52574144|WALL•E
+52574145|WALL•E
+5257414a|WALL•E
+5257414b|WALL•E
+52574150|WALL•E
+52574152|WALL•E
+52574155|WALL•E
+52574158|WALL•E
+52574159|WALL•E
+5257415a|WALL•E
+52574245|Kawasaki Snowmobiles
+52574258|Kawasaki Snowmobiles
+52574345|NBA
+52574350|NBA
+52574445|Wild Earth: African Safari
+52574450|Wild Earth: African Safari
+52574545|Pro Evolution Soccer 2009
+5257454a|Winning Eleven PLAY MAKER 2009
+52574550|Pro Evolution Soccer 2009
+52574648|My Word Coach: Develop your vocabulary
+52574745|We Love Golf!
+5257474a|We Love Golf!
+52574750|We Love Golf!
+52574945|Wing Island
+5257494a|Wing Island
+52574950|Wing Island
+52574b45|Cooking Mama: World Kitchen
+52574b50|Cooking Mama: World Kitchen
+52574c45|Wario Land Shake
+52574c4a|Wario Land Shake
+52574c4b|Wario Land Shake
+52574c50|Wario Land: The Shake Dimension
+52574d45|Worms
+52574d50|Worms
+52574f45|Monopoly
+52574f4a|Monopoly
+52574f50|Monopoly
+52575150|WSC Real 09: World Snooker Championship
+52575245|Wacky Races: Crash & Dash
+52575250|Wacky Races: Crash & Dash
+52575345|Sonic
+5257534a|Sonic
+5257534b|Sonic
+52575350|Sonic
+52575445|Ben 10
+52575450|Ben 10
+52575545|X-Men
+52575550|X-Men
+52575558|X-Men
+52575745|WWE
+5257574a|WWE
+52575750|WWE
+52575758|WWE
+52575845|Brave: A Warrior's Tale
+52575850|Brave: A Warrior's Tale
+52575a45|Wonder World Amusement Park
+52575a50|Wonder World Amusement Park
+52575a58|Wonder World Amusement Park
+52583250|My Horse & Me
+52583345|ExciteBots: Trick Racing
+5258334a|ExciteBots: Trick Racing
+52583445|Casper's Scare School: Spooky Sports Day
+52583450|Casper's Scare School: Spooky Sports Day
+52583545|Tony Hawk
+52583550|Tony Hawk
+52583645|The Biggest Loser
+52583650|The Biggest Loser
+5258384a|Jikkyou Powerful Pro Yakyuu 9
+52583945|Need for Speed: Undercover
+5258394a|Need for Speed: Undercover
+5258394b|Need for Speed: Undercover
+52583950|Need for Speed: Undercover
+52583958|Need for Speed: Undercover
+52583959|Need for Speed: Undercover
+52584145|WWE
+52584150|WWE
+52584245|Baseball
+52584345|Dave Mirra BMX Challenge
+52584350|Dave Mirra BMX Challenge
+52584444|Disney
+52584445|Disney
+5258444a|Disney
+52584450|Disney
+52584452|Disney
+52584458|Disney
+52584459|Disney
+5258454a|Wii
+52584745|Geon Cube
+52584750|Geon Cube
+52584945|Transformers
+52584950|Transformers
+52584a4a|Wii
+52584b45|TV Show King Party
+52584b46|TV Show King Party
+52584b50|TV Show King Party
+52584c45|Grey's Anatomy: The Video Game
+52584c50|Grey's Anatomy: The Video Game
+52584e45|Hooked!: Real Motion Fishing
+52584e4a|Wii
+52584e50|Big Catch Bass Fishing
+52585045|Hooked!: Real Motion Fishing
+5258504a|Wii
+52585050|Big Catch Bass Fishing
+52585145|Where the Wild Things Are
+52585150|Where the Wild Things Are
+52585245|The Tale of Despereaux
+52585250|The Tale of Despereaux
+52585258|The Tale of Despereaux
+52585545|Surf's Up
+52585550|Surf's Up
+52585558|Surf's Up
+52585658|Télé 7 Jeux: Mots Fléchés
+52585845|Spectrobes: Origins
+5258584a|Spectrobes: Origins
+52585850|Spectrobes: Origins
+52585945|Puzzle Challenge Crosswords
+52585950|Puzzle Challenge Crosswords
+52585a45|Cabela's Dangerous Hunts 2
+52593245|Rayman
+5259324a|Rayman
+5259324b|Rayman
+52593250|Rayman
+52593252|Rayman
+52593345|Rayman
+5259334a|Rayman
+5259334b|Rayman
+52593350|Rayman
+52593545|Junior League Sports
+52593550|World Championship Sports
+52593845|Bass Pro Shops: The Hunt
+5259414a|Wii
+52594245|Boom Blox: Bash Party
+52594250|Boom Blox: Bash Party
+52594445|Pet Pals: Animal Doctor
+52594450|Pet Pals: Animal Doctor
+52594545|101-in-1 Party Megamix
+52594550|101-in-1 Party Megamix
+52594745|Rygar: The Battle of Argus
+52594750|Rygar: The Battle of Argus
+52594845|Roogoo: Twisted Towers
+52594850|Roogoo: Twisted Towers
+52594945|SPRay
+52594950|SPRay
+52594b45|We Ski & Snowboard
+52594b4b|We Ski & Snowboard
+52594c44|Germany's Next Top Model 2010
+52594e45|The Hardy Boys: The Hidden Theft
+52594e50|The Hardy Boys: The Hidden Theft
+52594f45|Yu-Gi-Oh
+52594f4a|Yu-Gi-Oh
+52594f50|Yu-Gi-Oh
+52595145|Trivial Pursuit
+52595150|Trivial Pursuit
+52595158|Trivial Pursuit
+52595245|Your Shape
+52595250|Your Shape
+5259564a|Wii
+52595745|Wii
+5259574a|Wii
+5259574b|Wii
+52595750|Big Brain Academy
+52595845|Yamaha Supercross
+52595850|Yamaha Supercross
+525a324a|Wii
+525a334a|Wii
+525a344a|Wii
+525a354a|Wii
+525a364a|Wii
+525a374a|Wii
+525a384a|Wii
+525a3945|Family Party: 30 Great Games
+525a394a|Wii
+525a3950|Family Party: 30 Great Games
+525a4150|Lernerfolg Grundschule Deutsch
+525a4445|Zelda
+525a444a|Zelda
+525a444b|Zelda
+525a4450|Zelda
+525a4545|Science Papa
+525a4550|Science Papa
+525a4845|Zoo Hospital
+525a4850|Zoo Hospital
+525a4858|Zoo Hospital
+525a4945|Winter Sports
+525a4950|Winter Sports
+525a4a44|Dead Space: Extraction
+525a4a45|Dead Space: Extraction
+525a4a4a|Dead Space: Extraction
+525a4a50|Dead Space: Extraction
+525a4b45|Puzzle Kingdoms
+525a4b50|Puzzle Kingdoms
+525a4e4a|Zangeki no Reginleiv
+525a4f45|World of Zoo
+525a4f50|World of Zoo
+525a5045|Link's Crossbow Training
+525a504a|Link's Crossbow Training
+525a504b|Link's Crossbow Training
+525a5050|Link's Crossbow Training
+525a5245|The Destiny of Zorro
+525a5250|The Destiny of Zorro
+525a5445|Wii
+525a544a|Wii
+525a544b|Wii
+525a5450|Wii
+525a5457|Wii
+525a5945|My Body Coach
+525a5946|My Word Coach: Develop your vocabulary
+525a5950|My Word Coach: Develop your vocabulary
+525a5953|My Word Coach: Develop your vocabulary
+525a5a45|MadWorld
+525a5a4a|MadWorld
+525a5a50|MadWorld
+5332324a|Family Fishing
+5332324b|Family Fishing
+5332414a|Minna de Bouken! Family Trainer
+53324245|Country Dance
+53324250|Country Dance
+53324345|Carnival Games
+53324545|Just Dance
+53324550|Just Dance
+53324845|Haunted House
+53324850|Haunted House
+53324945|Iron Man
+53324950|Iron Man
+53324c45|Pokemon
+53324c4a|Pokemon
+53324c50|Pokemon
+53324d45|Madden NFL
+53325045|Just Dance
+5332504a|Winning Eleven PLAY MAKER 2009
+53325050|Pro Evolution Soccer 2009
+53325058|Pro Evolution Soccer 2009
+53325059|Pro Evolution Soccer 2009
+53325145|NBA
+53325150|NBA
+53325250|Reload
+5332544a|Wii
+53325545|Just Dance
+53325550|Just Dance
+53325645|Victorious: Taking the Lead
+53325650|Victorious: Taking the Lead
+53325745|WWE
+53325750|WWE
+53325845|The Smurfs 2
+53325850|The Smurfs 2
+53325a45|Zhu Zhu Pets: Featuring The Wild Bunch
+53325a50|Zhu Zhu Pets: Featuring The Wild Bunch
+53333250|The Voice
+53333344|Let's Sing
+53333346|Let's Sing
+53333350|Let's Sing
+53333353|Let's Sing
+53333444|Let's Sing
+53333446|Let's Sing
+53333450|Let's Sing
+53333453|Let's Sing
+53334145|Attack of the Movies 3D
+53334150|Attack of the Movies 3D
+53334245|Batman: The Brave and the Bold
+53334250|Batman: The Brave and the Bold
+53334445|Deca Sporta
+5333444a|Deca Sporta
+53334450|Sports Island
+53334545|Barbie Jet, Set & Style!
+53334550|Barbie Jet, Set & Style!
+53334645|FIFA
+53334650|FIFA
+53334658|FIFA
+53334750|Glacier 3
+5333484a|Sengoku
+53334945|Pro Evolution Soccer 2009
+53334950|Pro Evolution Soccer 2009
+53334958|Pro Evolution Soccer 2009
+53334959|Pro Evolution Soccer 2009
+53334d45|The Sims
+53334d50|The Sims
+53335045|Disney
+53335050|Disney
+53335058|Disney
+5333534a|Wii
+5333544a|Wii
+53335745|Family Party: 30 Great Games Outdoor Fun
+53335750|Family Party: 30 Great Games Outdoor Fun
+53335845|WWE
+53335850|WWE
+53335a45|Men In Black
+53335a50|Men In Black
+53344d4a|Dragon Quest X: Mezameshi Itsutsu no Shuzoku
+5334534a|Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online
+53353945|Samurai Warriors 3
+5335394a|Sengoku
+53353950|Samurai Warriors 3
+53354245|Back to the Future: The Game
+53354250|Back to the Future: The Game
+53354445|Disney
+53354450|Disney
+53354545|Just Dance
+53354550|Just Dance
+53354b4a|Wii
+53354d45|Monster High: New Ghoul in School
+53354d50|Monster High: New Ghoul in School
+5335514a|Sengoku
+53355245|R: Racing
+53355250|R: Racing
+5335534a|Inazuma Eleven Strikers
+53355445|Ben 10
+53355450|Ben 10
+53364245|Brave: The Video Game
+53364250|Brave: The Video Game
+53364258|Brave: The Video Game
+53364259|Brave: The Video Game
+53364945|Disney
+53364950|Disney
+53365245|Wreck-It Ralph
+53365250|Wreck-It Ralph
+5337324a|Outer World 20th Anniversary Edition
+53373545|Monopoly Streets
+53373550|Monopoly Streets
+53374145|LEGO
+5337414b|LEGO
+53374150|LEGO
+53374250|Trivial Pursuit
+5337434a|Kamen Rider Climax Heroes W
+53374445|Star Wars
+53374450|Star Wars
+53374545|Transformers
+53374550|Transformers
+53374a50|Let's Sing
+53374b50|Let's Sing
+53374c50|Let's Sing
+53413345|Alvin and the Chipmunks: Chipwrecked
+53413350|Alvin and the Chipmunks: Chipwrecked
+53413358|Alvin and the Chipmunks: Chipwrecked
+53413545|Are You Smarter Than A 5th Grader? Game Time
+53413645|Ben 10
+53413650|Ben 10
+53413850|Spider-Man
+5341414a|Winning Eleven PLAY MAKER 2009
+53414245|Alien Monster Bowling League
+53414250|Alien Monster Bowling League
+53414845|Hasbro
+53414a45|Cabela's Survival: Shadows of Katmai
+53414a50|Cabela's Survival: Shadows of Katmai
+53414b45|Sakura Wars: So Long, My Love
+53414b50|Sakura Wars: So Long, My Love
+53414c45|Alice in Wonderland
+53414c50|Alice in Wonderland
+53414e45|Wii
+53414f45|Monster High: Ghoul Spirit
+53414f50|Monster High: Ghoul Spirit
+53414f58|Monster High: Ghoul Spirit
+53415250|Wii
+5341554a|Puyo Puyo! 15th Anniversary
+53415645|Alvin and the Chipmunks: Chipwrecked
+53415658|Alvin and the Chipmunks: Chipwrecked
+53415745|Angry Birds Trilogy
+53415750|Angry Birds Trilogy
+53415945|Boot Camp Academy
+53415950|Boot Camp Academy
+53415a45|Spider-Man
+53415a50|Spider-Man
+53423345|Sengoku
+5342334a|Sengoku
+53423350|Sengoku
+53423445|Super Mario
+5342344a|Season Cycle Galaxy
+5342344b|Super Mario
+53423450|Season Cycle Galaxy
+53423457|Super Mario
+53423545|NBA
+53423550|NBA
+53423645|Bakugan: Defenders of the Core
+53423650|Bakugan: Defenders of the Core
+53423945|Barbie: Groom and Glam Pups
+53423950|Barbie: Groom and Glam Pups
+53423958|Barbie: Groom and Glam Pups
+53424245|Beyblade: Metal Fusion - Battle Fortress
+5342434a|Wii
+53424445|Resident Evil
+5342444a|Resident Evil
+5342444b|Resident Evil
+53424450|Resident Evil
+53424645|Baseball
+53424845|Remington Great American Bird Hunt
+53424850|Remington Great American Bird Hunt
+53424945|Busy Scissors
+53424950|Busy Scissors
+53424a45|Ben 10
+53424a50|Ben 10
+53424c45|A Boy and His Blob
+53424c50|A Boy and His Blob
+53424e45|Ben 10
+53424e50|Ben 10
+53425345|Wii
+53425355|Remington Super Slam Hunting: Alaska
+53425645|SpongeBob SquarePants
+53425650|SpongeBob SquarePants
+53425653|SpongeBob SquarePants
+53425745|Babysitter Mama
+5342574a|Babysitter Mama
+53425945|Dance on Broadway
+53425950|Dance on Broadway
+53433245|Conduit 2
+53433250|Conduit 2
+53433445|Star Wars
+53433450|Star Wars
+53433550|Challenge Me: Word Puzzles
+53433650|Challenge Me: Word Puzzles
+53433744|Call of Duty: Black Ops
+53433745|Call of Duty: Black Ops
+53433746|Call of Duty: Black Ops
+53433749|Call of Duty: Black Ops
+53433750|Call of Duty: Black Ops
+53433753|Call of Duty: Black Ops
+5343375a|Call of Duty: Black Ops
+53433845|Wii
+5343384a|Wii
+5343384b|Wii
+53433850|Wii
+53433950|Cabela's Big Game Hunter
+53434145|Calling
+53434150|Calling
+53434245|Cyberbike Cycling Sports
+53434250|Cyberbike Cycling Sports
+53434445|Cabela's Dangerous Hunts 2
+53434450|Cabela's Dangerous Hunts 2
+53434545|Chuck E. Cheese's Party Games
+53434745|Calvin Tucker's: Farm Animals Racing Tournament
+53434750|Calvin Tucker's: Farm Animals Racing Tournament
+53434945|CSI
+53434950|CSI
+53434a45|LEGO
+53434a50|LEGO
+53434b45|Chuck E. Cheese's Party Games
+53434d4a|Kamen Rider Climax Heroes W
+53434e45|Scene It? Twilight
+53434e50|Scene It? Twilight
+53435144|Schlag den Star - Das Spiel
+53435245|Chicken Riot
+53435250|Chicken Riot
+53435745|Gold's Gym: Dance Workout
+53435750|My Fitness Coach
+53435845|Chevrolet Camaro: Wild Ride
+53435850|Chevrolet Camaro: Wild Ride
+53435945|Cars 2
+53435950|Cars 2
+53435952|Cars 2
+53435958|Cars 2
+53435959|Cars 2
+5343595a|Cars 2
+53435a45|Crazy Machines
+53435a50|Crazy Machines
+53443245|Just Dance
+5344324a|Wii
+5344324b|Just Dance
+53443250|Just Dance
+53443259|Just Dance
+53443550|Lernerfolg Grundschule Deutsch
+53443650|Lernerfolg Grundschule Deutsch
+53443750|Lernerfolg Grundschule Deutsch
+5344394a|SD Gundam
+53444145|Scooby-Doo
+53444245|de Blob
+53444250|de Blob
+53444450|The Ultimate Battle of the Sexes
+53444545|Dance Sensation!
+53444550|Dance Sensation!
+53444645|Sing It
+53444650|Sing It
+53444745|Disney
+53444750|Disney
+53444945|Sing It
+53444950|Sing It
+53444a4a|SD Gundam
+53444c45|Dood's Big Adventure
+53444c50|Dood's Big Adventure
+53444d45|Despicable Me: The Game
+53444d50|Despicable Me: The Game
+53444e45|Just Dance
+53444e50|Super Mario
+53445045|Dora's Big Birthday Adventure
+53445050|Dora's Big Birthday Adventure
+5344514a|Dragon Quest X Inishie no Ryu no Denshou Online
+53445245|Maximum Racing: Rally Racer
+53445250|Sing It
+53445350|We Dare
+53445450|PDC World Championship Darts 2008
+53445545|Super Mario
+53445550|Super Mario
+53445645|Driver: San Francisco
+53445650|Driver: San Francisco
+53445745|Lost in Shadow
+5344574a|Lost in Shadow
+53445750|A Shadow's Tale
+53445845|Disney
+53445850|Disney
+53445945|Super Mario
+53445950|Dance Dance Revolution Hottest Party
+53445a45|Just Dance
+53453245|EA
+53453250|EA
+53453345|Just Dance
+53453350|Just Dance
+53453845|Just Dance
+53453850|Just Dance
+53454145|EA
+5345414a|EA
+53454150|EA
+53454345|Create
+53454350|Create
+53454c45|FIFA
+53454c50|FIFA
+53454c58|FIFA
+53454d45|Disney
+53454d4a|Disney
+53454d50|Disney
+53454d58|Disney
+53454d59|Disney
+53454d5a|Disney
+53455045|The Black Eyed Peas Experience
+53455050|The Black Eyed Peas Experience
+53455058|The Black Eyed Peas Experience
+5345505a|The Black Eyed Peas Experience
+53455245|Disney
+53455246|Disney
+5345524a|Disney
+5345524b|Disney
+53455250|Disney
+53455256|Disney
+53455345|Sesame Street: Ready, Set, Grover!
+53455350|Sesame Street: Ready, Set, Grover!
+53455355|Sesame Street: Ready, Set, Grover!
+53455a4a|Inazuma Eleven Strikers
+53463250|Star Wars
+53463445|Flatout
+53463450|Flatout
+53463545|Fit in Six
+5346354a|Fit in Six
+53463550|My Fitness Coach
+53463745|Family Feud 2010 Edition
+53463845|Donkey Kong
+5346384a|Donkey Kong
+53463850|Donkey Kong
+5346414a|Fullmetal Alchemist: Prince of the Dawn
+53464445|Wii
+53464550|Wii
+53464745|Hasbro
+53464750|Hasbro
+53464945|Mystery Case Files: The Malgrave Incident
+53464950|Mystery Case Files: The Malgrave Incident
+53464b45|Family Party: Fitness Fun
+53464b50|Family Party: Fitness Fun
+53465145|Captain America: Super Soldier
+53465150|Captain America: Super Soldier
+53465250|Super Mario
+53465445|Wheel of Fortune
+53465450|Wheel of Fortune
+53465545|Star Wars
+53465745|FIFA
+5346574a|FIFA
+5346574b|FIFA
+53465750|FIFA
+53465758|FIFA
+53465759|FIFA
+5346575a|FIFA
+53465850|X Factor
+53465858|X Factor
+53465945|Family Party: 90 Great Games Party Pack
+53465950|Family Party: 90 Great Games Party Pack
+53473245|Crazy Mini Golf
+53473250|Crazy Mini Golf
+53473258|Crazy Mini Golf
+53473259|Crazy Mini Golf
+53473344|Germany's Next Top Model 2010
+53473550|Family Ski
+53473745|The Garfield Show: Threat of the Space Lasagna
+53473750|The Garfield Show: Threat of the Space Lasagna
+53474145|Tournament of Legends
+53474150|Tournament of Legends
+53474245|Greg Hastings Paintball 2
+53474250|Greg Hastings Paintball 2
+53474345|Glacier 3
+53474845|Tom Clancy
+53474850|Tom Clancy
+53474945|GTI Club Supermini Festa!
+53474950|GTI Club Supermini Festa!
+53474b45|Champion Jockey: G1 Jockey & Gallop Racer
+53474b50|Champion Jockey: G1 Jockey & Gallop Racer
+53474c45|Gormiti: The Lords of Nature!
+53474c50|Gormiti: The Lords of Nature!
+53474e45|Hasbro
+53474f44|Mini Golf Resort
+53474f45|Mini Golf Resort
+53474f50|Mini Golf Resort
+53475144|Germany's Next Top Model 2010
+53475245|Grease
+53475250|Grease
+53475345|Family Gameshow
+53475350|Family Gameshow
+53475445|My Personal Golf Trainer with IMG Academies and David Leadbetter
+53475450|My Personal Golf Trainer with IMG Academies and David Leadbetter
+53475545|Disney
+53475645|Go Vacation
+5347564a|Go Vacation
+53475650|Go Vacation
+53475744|Bibi Blocksberg
+53475845|Battle of Giants: Dinosaurs Strike
+53475850|Battle of Giants: Dinosaurs Strike
+53475945|Gummy Bears Mini Golf
+53475950|Gummy Bears Mini Golf
+5348324a|Wii
+53483345|NHL
+53483350|NHL
+53483445|Heavy Fire: Afghanistan
+53483450|Heavy Fire: Afghanistan
+53483545|Harry Potter
+53483550|Harry Potter
+53483645|Cabela's Big Game Hunter
+53483650|Cabela's Big Game Hunter
+53483845|Cabela's Adventure Camp
+53483850|Cabela's Adventure Camp
+53483945|Heathcliff: The Fast and the Furriest
+53483950|Heathcliff: The Fast and the Furriest
+53484245|Hasbro
+53484250|Hasbro
+53484445|How to Train Your Dragon
+53484450|How to Train Your Dragon
+53484845|Harry Potter
+53484850|Harry Potter
+53484945|Just Dance
+5348494a|Wii
+53484b45|Hello Kitty Seasons
+53484b50|Hello Kitty Seasons
+53484c50|Silent Hill: Shattered Memories
+53484e45|Shaun White Skateboarding
+53484e50|Shaun White Skateboarding
+53484f58|Hugo: Magic in the Troll Woods
+53484f59|Hugo: Magic in the Troll Woods
+53485345|Hyper Fighters
+53485350|Hyper Fighters
+53485645|Hot Wheels: Track Attack
+53485650|Hot Wheels: Track Attack
+53485658|Hot Wheels: Track Attack
+53485845|Happy Feet
+53485850|Happy Feet
+53485945|NHL
+53485950|NHL
+53493345|FIFA
+53493350|FIFA
+53493358|FIFA
+53494145|Ice Age
+53494149|Ice Age
+53494150|Ice Age
+53494445|Sid Meier's Pirates!
+53494450|Sid Meier's Pirates!
+53494650|Sing It
+53494845|Sing 4: The Hits Edition
+53494945|Sonic
+5349494a|Sonic
+5349494b|Sonic
+53494950|Sonic
+53494a45|iCarly 2: iJoin the Click!
+53494a50|iCarly 2: iJoin the Click!
+53494c45|Worms
+53494c50|Sing It
+53494d45|The Sims
+5349534a|Wii
+53495350|StarSing
+53495450|We Sing: Deutsche Hits
+53495845|Wii
+534a3245|Scooby-Doo
+534a3250|Scooby-Doo
+534a3645|Disney
+534a3650|Disney
+534a3745|Just Dance
+534a3750|Just Dance
+534a3945|Just Dance
+534a3950|Just Dance
+534a4245|007
+534a424a|007
+534a4250|007
+534a4445|Just Dance
+534a444a|Wii
+534a444b|Just Dance
+534a4450|Just Dance
+534a4458|Just Dance
+534a4459|Just Dance
+534a445a|Just Dance
+534a4650|Junior Fitness Trainer
+534a4658|Junior Fitness Trainer
+534a4845|Just Dance
+534a4945|Jillian Michaels Fitness Ultimatum 2011
+534a4c45|Junior League Sports
+534a4c50|Junior League Sports
+534a4d45|Just Dance
+534a4d50|Jillian Michaels Fitness Ultimatum 2011
+534a4e45|Just Dance
+534a4e50|Just Dance
+534a4f45|Just Dance
+534a4f50|Just Dance
+534a5045|Jeopardy!
+534a5145|Jewel Quest Trilogy
+534a5150|Jewel Quest Trilogy
+534a5245|Def Jam Rapstar
+534a5250|Def Jam Rapstar
+534a5258|Def Jam Rapstar
+534a5259|Def Jam Rapstar
+534a525a|Def Jam Rapstar
+534a5450|Just Dance
+534a5545|Dino Strike
+534a5550|Dino Strike
+534a5844|Just Dance
+534a5845|Just Dance
+534a5850|Just Dance
+534a5a45|Just Dance
+534a5a50|Just Dance
+534b3445|Shrek
+534b3449|Shrek
+534b3450|Shrek
+534b3750|Disney
+534b3758|Disney
+534b3844|Skylanders: Trap Team
+534b3845|Skylanders: Trap Team
+534b3849|Skylanders: Trap Team
+534b3850|Skylanders: Trap Team
+534b3856|Skylanders: Trap Team
+534b3858|Skylanders: Trap Team
+534b4145|Karaoke Revolution Glee
+534b4150|Karaoke Revolution Glee
+534b4245|Kidz
+534b444a|Wii
+534b454a|Wii
+534b4745|Karaoke Revolution Glee
+534b4750|Karaoke Revolution Glee
+534b484a|Kamen Rider Climax Heroes W
+534b4b50|Captain Morgane and the Golden Turtle
+534b4b58|Captain Morgane and the Golden Turtle
+534b4d4a|Kamen Rider Climax Heroes W
+534b4e45|Skylanders: SuperChargers
+534b4e50|Skylanders: SuperChargers
+534b4f45|Karaoke Revolution Glee
+534b4f50|Karaoke Revolution Glee
+534b5345|NBA
+534b5350|NBA
+534b5445|All Star Karate
+534b5450|All Star Karate
+534b5545|Kung Fu Panda
+534b5550|Kung Fu Panda
+534b5750|Cocoto Kart Racer
+534b5845|Pirate Blast
+534b5850|Pirate Blast
+534b5945|Skylanders: Giants
+534b5950|Skylanders: Giants
+534b5958|Skylanders: Giants
+534b5959|Skylanders: Giants
+534b595a|Skylanders: Giants
+534b5a45|DreamWorks Super Star Kartz
+534b5a50|DreamWorks Super Star Kartz
+534c324a|Zero: Shinku no Chou
+534c3250|Wii
+534c3450|Los 40 Principales Karaoke Party
+534c3544|Let's Sing
+534c3546|Let's Sing
+534c4145|The Last Airbender
+534c4150|The Last Airbender
+534c4158|The Last Airbender: Special Edition
+534c415a|The Last Airbender: Special Edition
+534c4345|Get Up and Dance
+534c4350|Get Up and Dance
+534c4545|Deepak Chopra's Leela
+534c4550|Deepak Chopra's Leela
+534c4650|Super Mario
+534c4658|Let's Sing
+534c4745|Let's Sing
+534c4750|Let's Sing
+534c4845|LEGO
+534c4850|LEGO
+534c4945|Baseball
+534c4a50|Let's Sing
+534c4d50|Los 40 Principales Karaoke Party
+534c4e50|The Voice Vol. 3
+534c5245|LEGO
+534c5250|LEGO
+534c5345|The Last Story
+534c534a|The Last Story
+534c5350|The Last Story
+534c5445|NewU Fitness First Mind Body: Yoga & Pilates Workout
+534c5450|NewU Fitness First Mind Body: Yoga & Pilates Workout
+534c5650|We Dare
+534c5945|Beastly
+534c5950|Beastly
+534d3245|10 Minute Solution
+534d3250|10 Minute Solution
+534d3545|Power Rangers Samurai
+534d3550|Power Rangers Samurai
+534d3745|Madden NFL
+534d3844|Call of Duty: Modern Warfare 3
+534d3845|Call of Duty: Modern Warfare 3
+534d3846|Call of Duty: Modern Warfare 3
+534d3849|Call of Duty: Modern Warfare 3
+534d3850|Call of Duty: Modern Warfare 3
+534d3853|Call of Duty: Modern Warfare 3
+534d3858|Call of Duty: Modern Warfare 3
+534d3945|Baseball
+534d4145|Marines: Modern Urban Combat
+534d4150|Marines: Modern Urban Combat
+534d4245|Super Monkey Ball
+534d424a|Super Monkey Ball
+534d4250|Super Monkey Ball
+534d4345|We Wish You a Merry Christmas
+534d4350|We Wish You a Merry Christmas
+534d4545|Madden NFL
+534d4645|Phineas and Ferb
+534d4650|Phineas and Ferb
+534d4745|Megamind: Mega Team Unite
+534d4750|Megamind: Mega Team Unite
+534d4945|Who Wants To Be A Millionaire
+534d4a45|Monster Jam: Path of Destruction
+534d4a50|Monster Jam: Path of Destruction
+534d4c45|Baseball
+534d4d4a|Wii
+534d4e45|Super Mario
+534d4e4a|Super Mario
+534d4e4b|Wii
+534d4e50|Super Mario
+534d4e57|Wii
+534d4f45|Michael Jackson: The Experience
+534d4f4a|Michael Jackson: The Experience
+534d4f50|Michael Jackson: The Experience
+534d4f58|Michael Jackson: The Experience - Walmart Edition
+534d4f59|Michael Jackson: The Experience - Walmart Edition
+534d5050|Wii
+534d5245|Wii
+534d5250|WWE
+534d5345|Wii
+534d544a|Momotarô Dentetsu 16
+534d5645|Super Mario
+534d5745|Super Mario
+534d5a45|Marvel Super Hero Squad: Comic Combat
+534d5a50|Marvel Super Hero Squad: Comic Combat
+534e3345|Maximum Racing: Rally Racer
+534e3445|Naruto
+534e344a|Naruto
+534e3458|Naruto
+534e3545|Maximum Racing: Rally Racer
+534e3645|Maximum Racing: Super Karts
+534e3745|Maximum Racing: Super Karts
+534e3945|Nickelodeon Fit
+534e4245|NCIS: The Game
+534e4250|NCIS: The Game
+534e4345|Sonic
+534e434a|Sonic
+534e4350|Sonic
+534e4545|North American Hunting Extravaganza
+534e4550|North American Hunting Extravaganza
+534e4645|EA
+534e4745|Get Fit with Mel B
+534e4750|Get Fit with Mel B
+534e4845|Need for Speed: Hot Pursuit
+534e484a|Need for Speed: Hot Pursuit
+534e4850|Need for Speed: Hot Pursuit
+534e4a45|NBA
+534e4a50|NBA
+534e4b50|Nickelodeon Fit
+534e4b58|Nickelodeon Fit
+534e4c45|Wii
+534e4c50|Nickelodeon Dance
+534e4c58|Nickelodeon Dance
+534e4d45|Namco
+534e5045|NASCAR
+534e5145|National Geographic Challenge!
+534e5150|National Geographic Challenge!
+534e5245|NASCAR
+534e5345|NASCAR
+534e5645|Need for Speed: Nitro
+534e564a|Need for Speed: Nitro
+534e5650|Need for Speed: Nitro
+534e584a|Naruto
+534e5945|Monster High: 13 Wishes
+534e5950|Monster High: 13 Wishes
+534e5a45|Barbie: Dreamhouse Party
+534e5a50|Barbie: Dreamhouse Party
+534f4244|Bibi Blocksberg
+534f4945|101-in-1 Party Megamix
+534f4950|101-in-1 Party Megamix
+534f4a45|Rayman
+534f4a50|Rayman
+534f4b45|Wii
+534f4b4a|Wii
+534f4d4a|Minna no Rhythm Tengoku
+534f4d4b|Wii
+534f4e44|My First Songs
+534f4e46|My First Songs
+534f4e50|My First Songs
+534f5345|Turbo: Super Stunt Squad
+534f5350|Turbo: Super Stunt Squad
+534f5545|Zelda
+534f554a|Zelda
+534f554b|Zelda
+534f5550|Zelda
+53503245|Wii
+53503250|Wii
+53503545|The Kore Gang: Outvasion From Inner Earth
+53503550|The Kore Gang: Outvasion From Inner Earth
+53503745|Pac-Man
+5350374a|Pac-Man
+53503750|Pac-Man
+53503845|The Penguins of Madagascar: Dr. Blowhole Returns Again!
+53503850|The Penguins of Madagascar: Dr. Blowhole Returns Again!
+53503950|Sing It
+53504445|Spider-Man
+53504450|Spider-Man
+53504545|Speed
+53504550|Speed
+53504750|Peppa Pig: The Game
+53504945|Oops! Prank Party
+53504f50|Winter Sports
+53505245|Wii
+53505645|Pro Evolution Soccer 2009
+53505650|Pro Evolution Soccer 2009
+53505658|Pro Evolution Soccer 2009
+53505659|Pro Evolution Soccer 2009
+53505850|Prince of Persia
+53513245|Country Dance
+53513250|Country Dance
+53513345|Country Dance
+53514145|Cabela's African Adventures
+53514250|The Cube
+53514445|Gunblade NY & LA Machineguns: Arcade Hits Pack
+53514450|Gunblade NY & LA Machineguns: Arcade Hits Pack
+53514545|We Sing Pop!
+53514550|We Sing Pop!
+53514645|Phineas and Ferb
+53514650|Phineas and Ferb
+53514945|Disney
+53514950|Disney
+53514959|Disney
+53514b45|Mama's 2-Pack
+53514b4b|Mama's 2-Pack
+53514c45|Cartoon Network: Punch Time Explosion XL
+53514c50|Cartoon Network: Punch Time Explosion XL
+53514d45|Spider-Man
+53514d50|Spider-Man
+53515050|Speed
+53515145|Disney
+53515150|Disney
+53515250|We Sing Pop!
+53515450|The Ultimate Battle of the Sexes
+53515544|Quiz Party
+53515546|Quiz Party
+53515550|Quiz Party
+53515645|FIFA
+53515650|FIFA
+53515658|FIFA
+53523445|Raving Rabbids: Travel in Time
+5352344a|Raving Rabbids: Travel in Time
+53523450|Raving Rabbids: Travel in Time
+53523545|Raving Rabbids Party Collection
+53523550|Raving Rabbids Party Collection
+53523645|Reader Rabbit 1st Grade
+53523745|Reader Rabbit 1st Grade
+53523845|Reader Rabbit 1st Grade
+53523945|Reader Rabbit Preschool
+5352414a|Wii
+53524250|Sing It
+53524345|Rock Band
+53524558|Reader Rabbit 1st Grade
+53524645|Rapala Pro Bass Fishing
+53524650|Rapala Pro Bass Fishing
+53524750|Wii
+53524b45|Remington Super Slam Hunting: Alaska
+53524c58|Reader Rabbit Preschool
+53524d45|Rooms: The Main Building
+53524e50|Wii
+53524f45|EA
+53524f4b|EA
+53524f50|EA
+53525045|Disney
+53525050|Disney
+53525150|Summer Sports Party
+53525345|Sonic
+53525350|Sonic
+53525458|Reader Rabbit 1st Grade
+53525758|Reader Rabbit 1st Grade
+53525845|Generator Rex: Agent of Providence
+53525850|Generator Rex: Agent of Providence
+53525945|ExerBeat: Gym Class Workout
+5352594a|Disney
+53525950|ExerBeat: Gym Class Workout
+53533250|Winter Sports
+53533345|Sesame Street: Elmo's A-to-Zoo Adventure
+53533350|Sesame Street: Elmo's A-to-Zoo Adventure
+53533355|Sesame Street: Elmo's A-to-Zoo Adventure
+53533445|Sesame Street: Cookie's Counting Carnival
+53533455|Sesame Street: Cookie's Counting Carnival
+53533655|AFL Live: Game of the Year Edition
+53533745|Remington Super Slam Hunting: Alaska
+53533755|Remington Super Slam Hunting: Alaska
+53533845|SpongeBob SquarePants
+53533850|SpongeBob SquarePants
+5353394a|Ultimate Shooting Collection
+53534245|Puss in Boots
+53534250|Puss in Boots
+53534344|Scene It? Bright Lights! Big Screen!
+53534345|Scene It? Bright Lights! Big Screen!
+53534346|Scene It? Bright Lights! Big Screen!
+53534349|Scene It? Bright Lights! Big Screen!
+53534350|Scene It? Bright Lights! Big Screen!
+53534353|Scene It? Bright Lights! Big Screen!
+53534358|Scene It? Bright Lights! Big Screen!
+53534544|We Sing: Encore
+53534550|We Sing: Encore
+53534556|We Sing: Encore
+53534650|Sing 4: The Hits Edition
+53534a45|Summer Stars 2012
+53534a50|Summer Stars 2012
+53534c50|Sing It
+53534e45|Sniper Elite
+53534e50|Sniper Elite
+53535045|Spyro
+5353504a|Spyro
+53535050|Spyro
+53535058|Spyro
+53535059|Spyro
+53535145|Super Mario
+5353514a|Super Mario
+5353514b|Super Mario
+53535150|Super Mario
+53535157|Super Mario
+53535245|Wild West Shootout
+53535250|Wild West Shootout
+53535345|Wii
+53535645|Wipeout 3
+53535744|Water Sports
+53535745|Water Sports
+53535750|Water Sports
+53543450|Thomas & Friends: Hero of the Rails
+53543458|Thomas & Friends: Hero of the Rails
+53543545|Transformers
+53543550|Transformers
+53543645|The Biggest Loser Challenge
+53543650|The Biggest Loser Challenge
+5354374a|Wii
+53544145|Pictionary
+53544150|Sing It
+53544155|Pictionary
+53544445|Reload
+53544545|Tetris
+5354454a|Tetris
+53544550|Tetris
+53544645|Transformers
+53544650|Transformers
+53544850|Sing It
+53544a4a|Wii
+53544b45|Tatsunoko vs. Capcom: Ultimate All-Stars
+53544b4a|Tatsunoko vs. Capcom: Ultimate All-Stars
+53544b50|Tatsunoko vs. Capcom: Ultimate All-Stars
+53544c45|Truth or Lies
+53544c50|Truth or Lies
+53544d45|Titanic Mystery
+53544d50|Titanic Mystery
+53544f45|Cars Toon: Mater's Tall Tales
+53544f50|Cars Toon: Mater's Tall Tales
+53544f58|Cars Toon: Mater's Tall Tales
+53545050|Sing It
+5354514a|Inazuma Eleven Strikers
+53545150|Sing It
+53545158|Inazuma Eleven Strikers
+53545250|Sing It
+53545345|Toy Story
+53545350|Sing It
+53545352|Toy Story
+53545358|Toy Story
+53545359|Toy Story
+5354535a|Toy Story
+53545444|Hidden Mysteries: Titanic
+53545445|Hidden Mysteries: Titanic
+53545458|Hidden Mysteries: Titanic
+53545745|Tiger Woods PGA Tour 10
+53545750|Tiger Woods PGA Tour 10
+53545845|Tiger Woods PGA Tour 12: The Masters
+53545850|Tiger Woods PGA Tour 12: The Masters
+53545945|Tony Hawk
+53545950|Tony Hawk
+53545a45|Transformers
+53545a50|Transformers
+53553245|Nickelodeon Dance
+53553250|Nickelodeon Dance
+53553258|Nickelodeon Dance
+53553344|U-Sing
+53553346|U-Sing
+53553350|U-Sing
+53553353|U-Sing
+53553445|UFC Personal Trainer: The Ultimate Fitness System
+53553450|UFC Personal Trainer: The Ultimate Fitness System
+53553545|Monster High: Skultimate Roller Maze
+53553550|Monster High: Skultimate Roller Maze
+53553645|Zumba Fitness
+53553650|Zumba Fitness
+53553658|Zumba Fitness
+53553745|Rise of the Guardians
+53553750|Rise of the Guardians
+53553850|We Sing: Deutsche Hits
+53553945|Disney
+53553950|Disney
+53553958|Disney
+53554b45|Kirby's Return to Dream Land
+53554b4a|Wii
+53554b4b|Kirby's Return to Dream Land
+53554b50|Kirby's Adventure
+53554d4a|Winning Post World
+53554f45|The Hip Hop Dance Experience
+53554f50|The Hip Hop Dance Experience
+53555045|Wii
+5355504a|Wii
+5355504b|Wii
+53555050|Wii
+53555145|We Sing: UK Hits
+53555150|We Sing: UK Hits
+53555245|Wii
+53555250|Dance Dance Revolution Hottest Party
+53555545|uDraw Studio: Instant Artist
+53555550|uDraw Studio: Instant Artist
+53555645|Cabela's Dangerous Hunts 2
+53555650|Cabela's Dangerous Hunts 2
+53555745|uDraw Studio
+53555750|uDraw Studio
+53555845|Pro Evolution Soccer 2009
+5355584a|Winning Eleven PLAY MAKER 2009
+53555850|Pro Evolution Soccer 2009
+53555858|Pro Evolution Soccer 2009
+53555859|Pro Evolution Soccer 2009
+53555944|Schlag den Star - Das Spiel
+53563245|Big Beach Sports
+53563250|Big Beach Sports
+53563445|Virtua Tennis 4
+53563450|Virtua Tennis 4
+53563550|The Voice of Germany
+53563653|The Voice
+53563745|Penguins of Madagascar
+53563750|Penguins of Madagascar
+53564245|Battleship
+53564250|Battleship
+53564345|Big Time Rush: Dance Party
+53564350|Big Time Rush: Dance Party
+53564445|SpongeBob SquarePants
+53564450|SpongeBob SquarePants
+53564845|FIFA
+53564850|FIFA
+53564858|FIFA
+53564d45|Super Mario
+53564d4a|Super Mario
+53564d4b|Super Mario
+53564d50|Super Mario
+53565045|Vegas Party
+53565050|Vegas Party
+53565145|Barbie and Her Sisters: Puppy Rescue
+53565150|Barbie and Her Sisters: Puppy Rescue
+53565445|Bit.Trip Complete
+53565450|Bit.Trip Complete
+53565550|The Voice of Germany
+53565645|The Croods: Prehistoric Party!
+53565650|The Croods: Prehistoric Party!
+53565845|Skylanders: Swap Force
+53565846|Skylanders: Swap Force
+53565849|Skylanders: Swap Force
+53565850|Skylanders: Swap Force
+53565858|Skylanders: Swap Force
+53565859|Skylanders: Swap Force
+53565945|Ben 10
+53565950|Ben 10
+53565a45|How to Train Your Dragon
+53565a50|How to Train Your Dragon
+53573245|Wipeout 3
+53573345|Winter Stars
+53573350|Winter Stars
+5357344a|Winning Eleven PLAY MAKER 2009
+53573645|WWE
+53573650|WWE
+53573844|We Sing 80s
+53573845|We Sing 80s
+53573850|We Sing 80s
+53573945|Wicked Monsters Blast!
+53573950|Wicked Monsters Blast!
+53574145|DJ Hero
+53574150|DJ Hero
+53574245|DJ Hero
+53574250|Wii
+53583345|Pandora's Tower
+5358334a|Pandora’s Tower: Until I Return to Your Side
+53583350|Pandora's Tower
+53583445|Xenoblade Chronicles
+53583450|Xenoblade Chronicles
+53583745|Teenage Mutant Ninja Turtles
+53583750|Teenage Mutant Ninja Turtles
+53583845|X-Men
+53583850|X-Men
+53583950|The Voice Vol. 3
+53584145|Guitar Hero
+53584150|Guitar Hero
+53584245|Guitar Hero
+53584250|Guitar Hero
+53584345|Guitar Hero
+53584350|Guitar Hero
+53584445|Guitar Hero
+53584450|Guitar Hero
+53584545|Guitar Hero
+53584550|Guitar Hero
+53584645|Band Hero
+53584650|Band Hero
+53584945|Guitar Hero
+53584950|Guitar Hero
+53593750|Let's Sing
+53593850|Let's Sing
+535a3245|Zumba Fitness
+535a3250|Zumba Fitness
+535a3258|Zumba Fitness
+535a3345|Zumba Fitness World Party
+535a3350|Zumba Fitness World Party
+535a3545|Zumba Fitness
+535a3550|Zumba Fitness
+535a3745|Just Dance
+535a3750|Just Dance
+535a4145|Rock Band
+535a4150|Rock Band
+535a4245|Rock Band
+535a4250|Rock Band
+41465245|Wii
+414d4545|Wii
+414d4e45|Wii
+414d4f52|Guitar Hero
+41505250|Wii
+41534d42|Wii
+42455053|Guitar Hero
+424f5745|Wii
+43334245|Guitar Hero
+43334650|Guitar Hero
+43334b45|Guitar Hero
+43334d45|Guitar Hero
+43335050|Guitar Hero
+43344145|Harvest Moon
+43344745|Harvest Moon
+43383045|Guitar Hero
+43383050|Guitar Hero
+43414e45|Guitar Hero
+43424945|Harvest Moon
+43435045|Wii
+43464545|Guitar Hero
+43473145|Guitar Hero
+43473150|Guitar Hero
+43473245|Guitar Hero
+43473250|Guitar Hero
+43473345|Guitar Hero
+43473350|Guitar Hero
+43474245|Rock Band
+43474250|Rock Band
+43474833|Guitar Hero
+43474843|Guitar Hero
+43474845|Guitar Hero
+4347484a|Guitar Hero
+4347484b|Guitar Hero
+43474850|Guitar Hero
+43474852|Guitar Hero
+43474853|Guitar Hero
+43474945|Guitar Hero
+43475350|Guitar Hero
+43475645|Guitar Hero
+434b4245|Wii
+434c4150|Sing It
+434d4445|Guitar Hero
+434d4b45|Wii
+43533050|StarSing
+43533150|StarSing
+43533250|StarSing
+43533350|StarSing
+43533450|StarSing
+43533550|StarSing
+43533650|StarSing
+43533750|StarSing
+43533850|StarSing
+43533950|StarSing
+43534150|StarSing
+43534250|StarSing
+43534350|StarSing
+43534450|StarSing
+43534550|StarSing
+43534650|StarSing
+43534750|StarSing
+43534850|StarSing
+43534950|StarSing
+43534a50|StarSing
+43534b50|StarSing
+43534c50|StarSing
+43534d50|StarSing
+43534e50|StarSing
+43534f50|StarSing
+43535050|StarSing
+43535150|StarSing
+43535250|StarSing
+43535350|StarSing
+43535450|StarSing
+43535550|StarSing
+43535650|StarSing
+43535750|StarSing
+43535846|StarSing
+43535950|StarSing
+43535a50|StarSing
+43543050|StarSing
+43543150|StarSing
+43543250|StarSing
+43543350|StarSing
+43543450|StarSing
+43543550|StarSing
+43543650|StarSing
+43543750|StarSing
+43543850|StarSing
+43543950|StarSing
+43544150|StarSing
+43544250|StarSing
+43544350|StarSing
+43544450|StarSing
+43544550|StarSing
+43544650|StarSing
+43544750|StarSing
+43544850|StarSing
+43544950|StarSing
+43544a50|StarSing
+43544b50|StarSing
+43544c50|StarSing
+43544d50|StarSing
+43544e50|StarSing
+43544f50|StarSing
+43545050|StarSing
+43545150|StarSing
+43545250|StarSing
+43545350|StarSing
+43545450|StarSing
+43545550|StarSing
+43545650|StarSing
+43545750|StarSing
+43545850|StarSing
+43545950|StarSing
+43545a50|StarSing
+43553050|StarSing
+43553150|StarSing
+43553250|StarSing
+43553350|StarSing
+43553450|StarSing
+43553550|StarSing
+43553650|StarSing
+43553750|StarSing
+43553850|StarSing
+43553950|StarSing
+43564c45|Super Mario
+43595745|Harvest Moon
+44425342|Dragon Ball Z
+44495950|Wii
+444b4350|Wii
+444b5745|Wii
+444c5a45|Super Mario
+444d4b45|Wii
+444d5350|Sing It
+44525032|Sing It
+44554150|Super Mario
+44554345|Wii
+44554445|Wii
+454e4450|Wii
+45564f50|Wii
+46463445|Fatal Frame 4: Mask of the Lunar Eclipse
+47303145|Super Mario
+4730314a|Super Mario
+47303150|Super Mario
+47303245|Super Mario
+4730324a|Super Mario
+47303250|Super Mario
+47465a4a|F-ZERO
+47475045|Super Mario
+4747504a|SD Gundam
+474c5345|Gladius
+474d5345|Super Mario
+47544d45|Super Mario
+47565333|VIRTUA STRIKER 3 ver.2002
+47565334|Virtua Striker 4
+4756534a|VIRTUA STRIKER 3 ver.2002
+47583245|X-Men
+48425745|Wii
+48534d50|Wii
+4a4f5545|Wii
+4b4c5345|The Last Story
+4b4d4b45|Wii
+4b4d4e45|Koopa Country
+4b4d4e4a|Wii
+4b4d4e50|Koopa Country
+4c343050|Sing It
+4d445545|Super Mario
+4d454350|Sing It
+4d455445|Wii
+4d494a50|Sing It
+4d494c50|Sing It
+4d4b3750|Wii
+4d4b4445|Wii
+4d4b5445|Wii
+4d4b5750|Wii
+4d4d5245|Super Mario
+4d525245|Wii
+4d525250|Wii
+4e455745|Wii
+4e4d4745|Super Mario
+4e4d4750|Super Mario
+4e4d4e50|Wii
+4e524a31|StarSing
+4e534d42|Wii
+4e575250|Wii
+4f4e4b45|Sing It
+4f544650|Sing It
+50445545|Wii
+50494b45|Pikmin
+504d4e45|Wii
+504f5050|Sing It
+50504e45|Wii
+50504e50|Wii
+50524f45|Wii
+50543150|Sing It
+50543250|Sing It
+50543350|Sing It
+50555441|Guitar Hero
+50574e50|Wii
+52303150|Sing It
+52303250|Sing It
+52313550|Sing It
+52345a45|Fatal Frame 4: Mask of the Lunar Eclipse
+52345a50|Fatal Frame 4: Mask of the Lunar Eclipse
+52385043|Super Mario
+52414450|Wii
+52434352|Guitar Hero
+52434843|Guitar Hero
+52434f43|Meitantei Conan: Tsuioku no Mirage
+5244535a|Dragon Ball Z
+52445545|Super Mario
+52445a45|Dragon Ball Z
+52465945|Dragon Ball Z
+52473045|Guitar Hero
+52473135|Guitar Hero
+52473145|Guitar Hero
+52473345|Guitar Hero
+52473431|Guitar Hero
+52473445|Guitar Hero
+5247434d|Guitar Hero
+52474353|Guitar Hero
+5247454b|Guitar Hero
+52474745|Guitar Hero
+52474843|Guitar Hero
+52474849|Guitar Hero
+52474858|Guitar Hero
+5247524d|Guitar Hero
+5247584d|Guitar Hero
+52475a43|Guitar Hero
+52484432|The House of the Dead 2
+52484433|The House of the Dead 2
+52484748|Guitar Hero
+52493150|Sing It
+524a4a47|Guitar Hero
+524c3945|Guitar Hero
+524c494c|Guitar Hero
+524d4343|Wii
+524d4743|Super Mario
+524d4752|Super Mario
+524d4843|Monster Hunter G
+524f4d45|Monster Hunter G
+52534643|Muramasa: The Demon Blade
+52535858|Guitar Hero
+52544d45|Wii
+52553150|Sing It
+52554947|Sing It
+52574443|Guitar Hero
+52584743|Guitar Hero
+525a4443|Zelda
+53303250|Sing It
+53313245|Just Dance
+53355545|Just Dance
+53383055|Sing It
+53414d45|Wii
+53414e54|Sing It
+53423443|Super Mario
+53424f44|Sing It
+53425647|Sing It
+53425743|Super Mario
+53434c45|Wii
+53434c4a|Wii
+53434c50|Wii
+53445448|Sing It
+53454f50|Sing It
+53465245|Super Mario
+5346524a|Super Mario
+53474931|Sing It
+53475054|SiNG Party
+53494142|Sing It
+53494242|Sing It
+53494553|Sing It
+53495331|Sing It
+53495332|Sing It
+53495333|Sing It
+53495334|Sing It
+53495335|Sing It
+53495337|Sing It
+53495338|StarSing
+53495339|Sing It
+53495341|Sing It
+53495342|Sing It
+53495343|Sing It
+53495344|Sing It
+53495348|Sing It
+5349534c|Sing It
+5349534d|Sing It
+53495351|Sing It
+53495352|Sing It
+53495353|Sing It
+53495354|Sing It
+534c4245|Wii
+534c424a|Wii
+534c4250|Wii
+534c4645|Super Mario
+534d3345|Super Mario
+534d4433|Sing It
+534d4947|Sing It
+534d4d45|Super Mario
+534d4d50|Super Mario
+534d4e43|Wii
+534d4f54|Sing It
+534d564a|Super Mario
+534d5650|Super Mario
+534d574a|Super Mario
+534d5750|Super Mario
+53524850|Wii
+53525650|Super Mario
+53543850|Sing It
+53544350|Sing It
+53544450|Sing It
+53584546|Guitar Hero
+53584646|Guitar Hero
+535a4545|Wii
+55555545|Wii
+56495045|Wii
+57415245|Super Mario
+57464646|Fatal Frame 4: Mask of the Lunar Eclipse
+58424b45|Guitar Hero
+584e5745|Guitar Hero
+58585858|Super Mario
+5a4d3745|Call of Duty: Modern Warfare - Reflex Edition
+5a584650|Guitar Hero
+5743|ColorZ
+5749|Wii
+574d|Mother
+574e|Wii
+574f|Wii
+5750|Wii
+584a|Wii
+4642|Metroid
+4645|Wagyan Land
+4646|Contra
+4a41|The Legend of the Mystical Ninja
+4a43|Super Aoki Ōkami to Shiroki Mejika: Genchou Hishi
+4e41|Super Mario
+4e45|Zelda
+4e53|Super Mario
+4e54|Super Mario
+4e5a|Super Mario
+4d41|Homebrew Channel
+5043|Wallaby!! Usagi no Kuni no Kangaroo Race
+5044|Street Fighter
+5350|Castlevania
+4543|Sengoku
+4537|The Tower of Druga
+5841|Salamander
+4842|Wii
+4843|Wii
+4846|Wii
+4a4f|Homebrew Channel
+4c55|Homebrew Channel
+4f48|Homebrew Channel
+5246|Wii
+524d|Wii
+4441|Wii
+4444|Wii
+4445|Wii
+4449|cIOSx installer
+444a|Wii
+444c|cIOSx installer
+4450|Wii
+4456|Wii
+4457|Wii
+4857|Wii
+504c|Wii
+33303145|GameCube Service Disc
+4432384a|Interactive Multi-Game
+4432394a|Monthly Nintendo Shop Demo - May 2002
+4433324a|Monthly Nintendo Shop Demo - May 2002
+4433334a|Monthly Nintendo Shop Demo - May 2002
+4433344a|Monthly Nintendo Shop Demo - May 2002
+4433384a|Monthly Nintendo Shop Demo - May 2002
+4434324a|Gekkan Nintendo Tentou Demo 2003.1.1
+44343345|Zelda
+4434334a|Zelda
+44343350|Zelda
+44343355|Zelda
+44343357|Zelda
+4434364a|Gekkan Nintendo Tentou Demo 2003.1.1
+44344245|Resident Evil
+44344250|Resident Evil
+44344255|Resident Evil
+4435334a|Monthly Nintendo Shop Demo - May 2002
+44353645|Interactive Multi-Game
+4435364a|Pokemon
+44353745|Interactive Multi-Game
+44353845|Interactive Multi-Game
+44353945|Interactive Multi-Game
+44363245|Interactive Multi-Game
+44363345|Interactive Multi-Game
+44363445|Interactive Multi-Game
+44363545|Interactive Multi-Game
+44363645|Interactive Multi-Game
+44363745|Interactive Multi-Game
+4436374a|Monthly Nintendo Shop Demo - May 2002
+44363845|Interactive Multi-Game
+4436384a|Monthly Nintendo Shop Demo - May 2002
+44363945|Interactive Multi-Game
+44373245|Interactive Multi-Game
+44373345|Interactive Multi-Game
+44373445|Interactive Multi-Game
+44373545|Interactive Multi-Game
+44373645|Interactive Multi-Game
+44373745|Interactive Multi-Game
+44373750|Interactive Multi-Game
+44373845|Interactive Multi-Game
+4437384a|Monthly Nintendo Shop Demo - May 2002
+44373850|Interactive Multi-Game
+44373945|Interactive Multi-Game
+44373950|Interactive Multi-Game
+44383245|Interactive Multi-Game
+4438324a|Monthly Nintendo Shop Demo - May 2002
+44383250|Interactive Multi-Game
+44383345|Interactive Multi-Game
+44383350|Interactive Multi-Game
+44383445|Interactive Multi-Game
+44383450|Interactive Multi-Game
+44383545|Interactive Multi-Game
+44383550|Interactive Multi-Game
+44383645|Interactive Multi-Game
+44383650|Interactive Multi-Game
+44383745|GameCube Service Disc
+44383750|Interactive Multi-Game
+44383845|Interactive Multi-Game
+44383850|Interactive Multi-Game
+44383945|Interactive Multi-Game
+44383950|Interactive Multi-Game
+44393245|Interactive Multi-Game
+44393250|Interactive Multi-Game
+44393345|Interactive Multi-Game
+44393350|Interactive Multi-Game
+44393450|Interactive Multi-Game
+44393550|Interactive Multi-Game
+44414c4a|Dairantou Smash Brothers X
+4442494a|Resident Evil
+44424a4a|Resident Evil
+44425a4a|Resident Evil
+44434550|Tom Clancy
+44455a50|Billy Hatcher and the Giant Egg
+444c5345|Star Wars
+444c5350|Star Wars
+444d324a|Super Monkey Ball
+444e5545|Naruto
+4450494a|Pikmin
+44504e50|P.N.03
+44504f4a|Phantasy Star Online Episode III: C.A.R.D. Revolution
+4450534a|Phantasy Star Online Episode III: C.A.R.D. Revolution
+4452324a|Rune II: Koruten no Kagi no Himitsu
+44525345|SoulCalibur II
+4453574a|Star Wars
+44564a50|Viewtiful Joe
+47324245|Black & Bruised
+47324250|Black & Bruised
+47324344|True Crime: New York City
+47324345|True Crime: New York City
+47324350|True Crime: New York City
+47324358|True Crime: New York City
+47324644|Tak 2: The Staff of Dreams
+47324645|Tak 2: The Staff of Dreams
+47324646|Tak 2: The Staff of Dreams
+47324650|Tak 2: The Staff of Dreams
+47324b45|NFL 2K3
+47324b50|NFL 2K3
+47324d45|Metroid Prime
+47324d4a|Metroid Prime
+47324d50|Metroid Prime
+47324e4a|Need for Speed: Undercover
+47324f45|Prince of Persia
+47324f50|Prince of Persia
+47325245|Shrek
+4732534a|Shikigami no Shiro II
+47325445|Tony Hawk
+47325450|Tony Hawk
+47325645|Viewtiful Joe
+47325650|Viewtiful Joe
+47325845|Sonic
+4732584a|Sonic
+47325850|Sonic
+47334144|The Lord of the Rings: The Third Age
+47334145|The Lord of the Rings: The Third Age
+47334146|The Lord of the Rings: The Third Age
+47334150|The Lord of the Rings: The Third Age
+47334153|The Lord of the Rings: The Third Age
+47334245|Serious Sam: Next Encounter
+47334250|Serious Sam: Next Encounter
+47334445|Carmen Sandiego: The Secret of the Stolen Drums
+47334450|Carmen Sandiego: The Secret of the Stolen Drums
+47334458|Carmen Sandiego: The Secret of the Stolen Drums
+47334545|XGIII: Extreme G Racing
+4733454a|XGIII: Extreme G Racing
+47334550|XGIII: Extreme G Racing
+47334644|TimeSplitters: Future Perfect
+47334645|TimeSplitters: Future Perfect
+47334646|TimeSplitters: Future Perfect
+47334650|TimeSplitters: Future Perfect
+47334653|TimeSplitters: Future Perfect
+47334c45|Super Monkey Ball
+47334c50|Super Monkey Ball
+47334d45|Tom Clancy
+47334e4a|Naruto
+47335244|Shrek
+47335245|Shrek
+47335246|Shrek
+4733524d|Shrek
+47335250|Shrek
+4733534a|Super Puzzle Bobble All Stars
+47335357|Super Puzzle Bobble All Stars
+47335645|NBA
+4733564a|NBA
+47335650|NBA
+47335845|X-Men
+47335850|X-Men
+47335950|Shrek
+47335958|Shrek
+47335959|Shrek
+47344145|Harvest Moon
+4734414a|Bokujou Monogatari - Shiawase no Uta
+47344244|Resident Evil
+47344245|Resident Evil
+4734424a|Resident Evil
+47344250|Resident Evil
+47344345|Charlie and the Chocolate Factory
+47344350|Charlie and the Chocolate Factory
+47344644|FIFA
+47344645|FIFA
+47344646|FIFA
+47344650|FIFA
+47344745|Harvest Moon
+4734474a|Bokujou Monogatari: Wonderful Life
+47344945|Shrek
+47344950|Shrek
+47344d45|The Sims
+47344d50|The Sims
+47344e4a|Naruto
+47344f45|The Sims
+47344f50|The Sims
+4734504a|The Sims
+47345145|Super Mario
+4734514a|Super Mario
+47345150|Super Mario
+47345345|Zelda
+4734534a|Zelda
+47345350|Zelda
+4734574a|Bokujou Monogatari - Shiawase no Uta
+47345a45|The Sims
+47345a50|The Sims
+47354445|Scooby-Doo
+47354450|Scooby-Doo
+47354e45|Namco
+47354e50|Namco
+47355345|Spyro
+47355350|Spyro
+47355445|Tiger Woods PGA Tour 10
+47355450|Tiger Woods PGA Tour 10
+47363245|Baseball
+47363345|Tom Clancy
+47363350|Tom Clancy
+47364644|FIFA
+47364645|FIFA
+47364646|FIFA
+47364650|FIFA
+47364d45|Madden NFL
+47364d50|Madden NFL
+47364e45|NBA
+47364e50|NBA
+47365345|Spyro
+47365350|Spyro
+47365445|Teen Titans
+47365450|Teen Titans
+47365745|Tiger Woods PGA Tour 10
+47365750|Tiger Woods PGA Tour 10
+47374d45|Madden NFL
+47383945|Pac-Man
+47384d45|Super Mario
+47384d4a|Super Mario
+47384d50|Super Mario
+47385745|Battalion Wars
+4738574a|Super Famicom Wars
+47385750|Battalion Wars
+47393445|Interactive Multi-Game
+47393545|Interactive Multi-Game
+47393645|Interactive Multi-Game
+47393650|Interactive Multi-Game
+47393745|Interactive Multi-Game
+47393750|Interactive Multi-Game
+47393755|Interactive Multi-Game
+47393845|Interactive Multi-Game
+47393850|Interactive Multi-Game
+47393945|Interactive Multi-Game
+47393950|Interactive Multi-Game
+47394b4a|Jikkyou Powerful Pro Yakyuu 9
+47395244|Crash Tag Team Racing
+47395245|Crash Tag Team Racing
+47395246|Crash Tag Team Racing
+47395248|Crash Tag Team Racing
+47395250|Crash Tag Team Racing
+47395345|Bionicle Heroes
+4739534a|Bionicle Heroes
+47395350|Bionicle Heroes
+47395444|Shark Tale
+47395445|Shark Tale
+47395446|Shark Tale
+47395449|Shark Tale
+4739544a|Shark Tale
+47395450|Shark Tale
+47413245|Baseball
+47413345|Baseball
+4741334a|Baseball
+47413445|Baseball
+47413745|Baseball
+4741414a|Disney
+47414645|Animal Crossing
+47414650|Animal Crossing
+47414655|Animal Crossing
+47414b45|Midway Arcade Treasures
+47414c45|Super Mario
+47414c4a|Dairantou Smash Brothers X
+47414c50|Super Mario
+47414e45|Animaniacs: The Great Edgar Hunt
+47414e50|Animaniacs: The Great Edgar Hunt
+4741534a|Sonic
+47415445|ATV Quad Power Racing 2
+47415450|ATV Quad Power Racing 2
+47415645|The Last Airbender
+47415659|Avatar: The Legend of Aang
+47415845|The Ant Bully
+47415945|Midway Arcade Treasures
+47415a44|Harry Potter
+47415a45|Harry Potter
+47415a46|Harry Potter
+47415a48|Harry Potter
+47415a49|Harry Potter
+47415a4a|Harry Potter
+47415a4d|Harry Potter
+47415a50|Harry Potter
+47415a53|Harry Potter
+4742324a|Bomberman
+47423345|BMX XXX
+47423350|BMX XXX
+47423445|Burnout 2: Point of Impact
+47423450|Burnout 2: Point of Impact
+47424145|NBA
+47424445|BloodRayne
+47424446|BloodRayne
+47424450|BloodRayne
+47424453|BloodRayne
+47424645|Baseball
+47424745|Bomberman
+4742474a|Bomberman
+47424750|Bomberman
+47424844|Mystic Heroes
+47424845|Mystic Heroes
+47424846|Mystic Heroes
+47424850|Mystic Heroes
+47424945|Resident Evil
+4742494a|Resident Evil
+47424950|Resident Evil
+47424b45|Baseball
+47424c45|Bloody Roar: Primal Fury
+47424c50|Bloody Roar: Primal Fury
+47424d45|Batman: Dark Tomorrow
+47424d4a|Batman: Dark Tomorrow
+47424d50|Batman: Dark Tomorrow
+47424f45|Burnout
+47424f50|Burnout
+4742504a|Baseball
+47425145|Rocket Power: Beach Bandits
+47425150|Rocket Power: Beach Bandits
+47425345|Beach Spikers: Virtua Beach Volleyball
+4742534a|Beach Spikers: Virtua Beach Volleyball
+47425350|Beach Spikers: Virtua Beach Volleyball
+47425445|Beyblade VForce - Super Tournament Battle
+47425450|Beyblade VForce - Super Tournament Battle
+47425645|Batman Vengeance
+47425650|Batman Vengeance
+47425744|Star Wars
+47425745|Star Wars
+47425746|Star Wars
+47425749|Star Wars
+47425750|Star Wars
+47425753|Star Wars
+47425845|Dave Mirra Freestyle BMX 2
+47425850|Dave Mirra Freestyle BMX 2
+47425a45|Resident Evil
+47425a4a|Resident Evil
+47425a50|Resident Evil
+47433245|Conflict: Desert Storm II: Back to Baghdad
+47433250|Conflict: Desert Storm II: Back to Baghdad
+47433344|Scooby-Doo
+47433345|Scooby-Doo
+47433346|Scooby-Doo
+47433350|Scooby-Doo
+47433550|Cocoto Kart Racer
+47433645|Pokemon
+4743364a|Pokemon
+47433650|Pokemon
+47434245|Crash Bandicoot: The Wrath of Cortex
+47434250|Crash Bandicoot: The Wrath of Cortex
+47434345|Final Fantasy
+4743434a|Final Fantasy
+47434350|Final Fantasy
+47434445|Resident Evil
+4743444a|Resident Evil
+47434450|Resident Evil
+47434545|Tom Clancy
+47434550|Tom Clancy
+47434645|Conflict: Desert Storm
+47434650|Conflict: Desert Storm
+47434745|Charlie's Angels
+47434750|Charlie's Angels
+47434845|WWE
+47434850|WWE
+47434945|The Sims
+47434950|The Sims
+47434a45|Tom Clancy
+47434a50|Tom Clancy
+47434c45|Cel Damage
+47434c50|Cel Damage
+47434e45|Crash Nitro Kart
+47434e50|Crash Nitro Kart
+47434f44|Call of Duty: Finest Hour
+47434f45|Call of Duty: Finest Hour
+47434f46|Call of Duty: Finest Hour
+47434f50|Call of Duty: Finest Hour
+47435045|Casper: Spirit Dimensions
+47435050|Casper: Spirit Dimensions
+47435144|Buffy The Vampire Slayer Chaos Bleeds
+47435145|Buffy The Vampire Slayer Chaos Bleeds
+47435146|Buffy The Vampire Slayer Chaos Bleeds
+47435150|Buffy The Vampire Slayer Chaos Bleeds
+47435345|Street Racing Syndicate
+47435350|Street Racing Syndicate
+47435445|Crazy Taxi
+4743544a|Crazy Taxi
+47435450|Crazy Taxi
+47435545|NCAA
+47435a45|Catwoman
+47435a50|Catwoman
+4744354a|Dragon Drive: D-Masters Shot
+47443645|Digimon Rumble Arena 2
+47443650|Digimon Rumble Arena 2
+47443745|Dragon Ball Z
+47443750|Dragon Ball Z
+47443945|Drome Racers
+47443950|Drome Racers
+47444345|Speed Kings
+47444350|Speed Kings
+47444445|Disney
+47444450|Disney
+47444544|Baldur's Gate Dark Alliance
+47444545|Baldur's Gate Dark Alliance
+47444546|Baldur's Gate Dark Alliance
+47444550|Baldur's Gate Dark Alliance
+47444945|Die Hard: Vendetta
+47444950|Die Hard: Vendetta
+47444958|Die Hard: Vendetta
+47444959|Die Hard: Vendetta
+47444a45|Digimon World 4
+47444a4a|Digimon World 4
+47444b45|Disney
+47444b4a|Disney
+47444b50|Disney
+47444c45|Disney
+47444c4a|Disney
+47444c50|Disney
+47444d45|Disney
+47444d4a|Disney
+47444d50|Disney
+47444f50|Disney
+47445145|Darkened Skye
+47445150|Darkened Skye
+47445245|Dead to Rights
+47445250|Dead to Rights
+47445345|Dark Summit
+47445350|Dark Summit
+47445445|Def Jam Vendetta
+47445450|Def Jam Vendetta
+47445645|Driven
+47445650|Driven
+47445745|Disney
+4744574a|Disney
+47445845|Disney
+4744584a|Disney
+47445850|Disney
+47453345|Midway Arcade Treasures
+47454145|Skies of Arcadia Legends
+47454150|Skies of Arcadia Legends
+47454245|Evolution Snowboarding
+47454250|Evolution Snowboarding
+47454445|Eternal Darkness: Sanity's Requiem
+47454450|Eternal Darkness: Sanity's Requiem
+47454457|Eternal Darkness: Sanity's Requiem
+4745474a|Billy Hatcher and the Giant Egg
+47454a4a|Jikkyou Powerful Pro Yakyuu 9
+47454e44|007
+47454e45|007
+47454e46|007
+47454e4a|007
+47454e50|007
+47454e53|007
+47454f4a|Capcom vs. SNK 2 EO: Millionaire Fighting 2001
+47454f50|Capcom vs. SNK 2 EO: Millionaire Fighting 2001
+47455345|Evolution Snowboarding
+4745534a|Evolution Snowboarding
+47455350|Evolution Snowboarding
+47455745|Evolution Worlds
+47455750|Evolution Worlds
+47455845|Disney
+47455850|Disney
+47455858|Disney
+47455859|Disney
+47455945|Fight Night Round 2
+4745594a|Fight Night Round 2
+47455950|Fight Night Round 2
+47455a45|Billy Hatcher and the Giant Egg
+47455a50|Billy Hatcher and the Giant Egg
+47463245|F1 2009
+47463250|F1 2009
+47463345|NFL 2K3
+47463350|NFL 2K3
+47463444|Fantastic 4
+47463445|Fantastic 4
+47463446|Fantastic 4
+47463448|Fantastic 4
+47463449|Fantastic 4
+47463450|Fantastic 4
+47463453|Fantastic 4
+47463544|FIFA
+47463545|FIFA
+47463546|FIFA
+47463548|FIFA
+47463549|FIFA
+47463550|FIFA
+47463553|FIFA
+47463644|FIFA
+47463645|FIFA
+47463646|FIFA
+47463648|FIFA
+47463649|FIFA
+47463650|FIFA
+47463653|FIFA
+47463745|Star Fox
+4746374a|Star Fox
+47463750|Star Fox
+47463845|NBA
+47463850|NBA
+47464144|FIFA
+47464145|FIFA
+47464146|FIFA
+47464149|FIFA
+4746414a|FIFA
+47464150|FIFA
+47464153|FIFA
+47464245|FireBlade
+47464250|FireBlade
+47464444|Freedom Fighters
+47464445|Freedom Fighters
+47464446|Freedom Fighters
+47464450|Freedom Fighters
+47464545|Fire Emblem: Path of Radiance
+4746454a|Fire Emblem: Souen no Kiseki
+47464550|Fire Emblem: Path of Radiance
+47464745|Frogger Beyond
+47464750|Frogger Beyond
+47464945|FIFA
+4746494a|FIFA
+47464b45|Freekstyle
+47464b50|Freekstyle
+47464e4a|Finding Nemo
+47465344|FIFA
+47465345|FIFA
+4746534a|FIFA
+47465350|FIFA
+47465358|FIFA
+47465445|Super Mario
+4746544a|Super Mario
+47465450|Super Mario
+47465545|Future Tactics: The Uprising
+47465550|Future Tactics: The Uprising
+47465645|NHL
+47465945|FIFA
+47465950|FIFA
+47465a45|F-ZERO
+47465a50|F-ZERO
+47473445|Gotcha Force
+4747344a|Gotcha Force
+47473450|Gotcha Force
+47473545|Cabela's Big Game Hunter
+47474345|Goblin Commander: Unleash The Horde
+47474350|Goblin Commander: Unleash The Horde
+47474545|Beyond Good & Evil
+47474550|Beyond Good & Evil
+47474558|Beyond Good & Evil
+47474559|Beyond Good & Evil
+4747494a|007
+47474b4a|Konjiki no Gashbell!! Yuujou Tag Battle 2
+47474e45|The Grim Adventures of Billy & Mandy
+47475244|Tom Clancy
+47475245|Tom Clancy
+47475250|Tom Clancy
+47475345|Metal Gear Solid: The Twin Snakes
+4747534a|Metal Gear Solid: The Twin Snakes
+47475350|Metal Gear Solid: The Twin Snakes
+47475445|Chibi-Robo!
+4747544a|Chibi-Robo!
+47475450|Chibi-Robo!
+47475644|SpongeBob SquarePants
+47475645|SpongeBob SquarePants
+47475650|SpongeBob SquarePants
+47475658|SpongeBob SquarePants
+47475945|Tom Clancy
+47475950|Tom Clancy
+47475a45|Madagascar
+47475a48|Madagascar
+47475a49|Madagascar
+47475a4a|Madagascar
+47475a50|Madagascar
+47475a53|Madagascar
+47475a58|Madagascar
+47483245|Need for Speed: Hot Pursuit
+47483250|Need for Speed: Hot Pursuit
+47483345|NHL
+47483350|NHL
+47483444|Harry Potter
+47483445|Harry Potter
+47483446|Harry Potter
+47483448|Harry Potter
+47483449|Harry Potter
+4748344a|Harry Potter
+4748344d|Harry Potter
+47483450|Harry Potter
+47483453|Harry Potter
+47483544|Over The Hedge
+47483545|Over The Hedge
+47483546|Over The Hedge
+47483550|Over The Hedge
+47483645|Hello Kitty: Roller Rescue
+47483650|Hello Kitty: Roller Rescue
+47483745|Happy Feet
+47483950|Tony Hawk
+47484145|Resident Evil
+4748414a|Resident Evil
+47484150|Resident Evil
+47484245|The Hobbit
+47484250|The Hobbit
+47484344|Chicken Little
+47484345|Chicken Little
+47484346|Chicken Little
+4748434a|Chicken Little
+47484350|Chicken Little
+47484645|NBA
+47484c45|Harry Potter
+47484c4a|Harry Potter
+47484c50|Harry Potter
+47484c58|Harry Potter
+47484c59|Harry Potter
+47484c5a|Harry Potter
+47484d44|Hitman
+47484d45|Hitman
+47484d46|Hitman
+47484d50|Hitman
+47484e45|Hunter: The Reckoning
+47484e58|Hunter: The Reckoning
+47485145|The Simpsons: Hit & Run
+47485150|The Simpsons: Hit & Run
+47485245|Hot Wheels: World Race
+47485250|Hot Wheels: World Race
+47485345|Harry Potter
+4748534a|Harry Potter
+47485350|Harry Potter
+47485358|Harry Potter
+47485359|Harry Potter
+47485545|The Incredible Hulk Ultimate Destruction
+47485546|The Incredible Hulk Ultimate Destruction
+47485550|The Incredible Hulk Ultimate Destruction
+47485645|Disney
+47485650|Disney
+47485745|Hot Wheels: Velocity X
+47485750|Hot Wheels: Velocity X
+47485a45|NHL
+4749324a|Momotarô Dentetsu 16
+47494145|Ice Age
+47494150|Ice Age
+47494245|The Italian Job
+47494250|The Italian Job
+47494344|The Incredibles
+47494345|The Incredibles
+47494346|The Incredibles
+47494348|The Incredibles
+47494350|The Incredibles
+47494844|Scooby-Doo
+47494845|Scooby-Doo
+47494846|Scooby-Doo
+47494850|Scooby-Doo
+4749494a|Momotarô Dentetsu 16
+47494a45|Space Raiders
+47494a4a|Space Raiders
+47494a4b|Space Raiders
+47494b45|Ikaruga
+47494b4a|Ikaruga
+47494b50|Ikaruga
+47494c45|Aggressive Inline
+47494c50|Aggressive Inline
+47494e45|Batman Begins
+47494e58|Batman Begins
+47494f4a|Jikkyou Powerful Pro Yakyuu 9
+47495045|Shonen Jump's One Piece: Pirates Carnival
+4749504a|Shonen Jump's One Piece: Pirates Carnival
+47495145|The Incredibles: Rise of the Underminer
+4749514a|The Incredibles: Rise of the Underminer
+47495158|The Incredibles: Rise of the Underminer
+47495159|The Incredibles: Rise of the Underminer
+47495345|Second Sight
+47495350|Second Sight
+47495445|Geist
+47495450|Geist
+474a3250|International Superstar Soccer 2
+474a3350|International Superstar Soccer 2
+474a4245|Bomberman
+474a424a|Bomberman
+474a4345|Samurai Jack: The Shadow of Aku
+474a4350|Samurai Jack: The Shadow of Aku
+474a4445|Judge Dredd: Dredd vs. Death
+474a4458|Judge Dredd: Dredd vs. Death
+474a4459|Judge Dredd: Dredd vs. Death
+474a4645|Jimmy Neutron Jet Fusion
+474a4650|Jimmy Neutron Jet Fusion
+474a4b44|Star Wars
+474a4b45|Star Wars
+474a4b46|Star Wars
+474a4b50|Star Wars
+474a4e44|Jimmy Neutron Boy Genius
+474a4e45|Jimmy Neutron Boy Genius
+474a4e50|Jimmy Neutron Boy Genius
+474a504a|Jikkyou Powerful Pro Yakyuu 9
+474a5544|Tak and the Power of JuJu
+474a5545|Tak and the Power of JuJu
+474a5546|Tak and the Power of JuJu
+474a5550|Tak and the Power of JuJu
+474a5745|Tak: The Great JuJu Challenge
+474a5750|Tak: The Great JuJu Challenge
+474a5945|Jimmy Neutron: Attack of the Twonkies
+474a5950|Jimmy Neutron: Attack of the Twonkies
+474a5a45|EA
+474a5a50|EA
+474b3244|Spider-Man
+474b3245|Spider-Man
+474b3246|Spider-Man
+474b3249|Spider-Man
+474b3250|Spider-Man
+474b3345|NBA
+474b3350|NBA
+474b3545|Monster House
+474b3550|Monster House
+474b3558|Monster House
+474b3745|Killer7
+474b374a|Killer7
+474b3750|Killer7
+474b3945|Karaoke Revolution Glee
+474b4245|Baten Kaitos Eternal Wings and the Lost Ocean
+474b4250|Baten Kaitos Eternal Wings and the Lost Ocean
+474b454a|Jikkyou Powerful Pro Yakyuu 9
+474b4745|Donkey Kong
+474b474a|Donkey Kong
+474b4750|Donkey Kong
+474b4845|King Arthur
+474b4850|King Arthur
+474b4b45|Knockout Kings 2003
+474b4b50|Knockout Kings 2003
+474b4c44|The Lord of the Rings: The Return of the King
+474b4c45|The Lord of the Rings: The Return of the King
+474b4c46|The Lord of the Rings: The Return of the King
+474b4c49|The Lord of the Rings: The Return of the King
+474b4c4a|The Lord of the Rings: The Return of the King
+474b4c50|The Lord of the Rings: The Return of the King
+474b4c53|The Lord of the Rings: The Return of the King
+474b4d45|Prince of Persia
+474b4d50|Prince of Persia
+474b4f45|Kao The Kangaroo Round 2
+474b4f50|Kao The Kangaroo Round 2
+474b504a|Jikkyou Powerful Pro Yakyuu 9
+474b5245|Ribbit King
+474b5250|Ribbit King
+474b5345|Kelly Slater's Pro Surfer
+474b5350|Kelly Slater's Pro Surfer
+474b5358|Kelly Slater's Pro Surfer
+474b5945|Kirby Air Ride
+474b594a|Kirby Air Ride
+474b5950|Kirby Air Ride
+474b5a44|Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E
+474b5a45|Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E
+474b5a50|Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E
+474c3245|Legends of Wrestling
+474c3250|Legends of Wrestling
+474c3545|Star Wars
+474c3550|Star Wars
+474c3558|Star Wars
+474c3745|Star Wars
+474c3750|Star Wars
+474c3844|Lara Croft Tomb Raider: Legend
+474c3845|Lara Croft Tomb Raider: Legend
+474c3846|Lara Croft Tomb Raider: Legend
+474c3850|Lara Croft Tomb Raider: Legend
+474c4344|Lemony Snickets A Series Of Unfortunate Events
+474c4345|Lemony Snickets A Series Of Unfortunate Events
+474c4346|Lemony Snickets A Series Of Unfortunate Events
+474c4350|Lemony Snickets A Series Of Unfortunate Events
+474c4353|Lemony Snickets A Series Of Unfortunate Events
+474c4545|Resident Evil
+474c454a|Resident Evil
+474c4550|Resident Evil
+474c4845|Flushed Away
+474c4850|Flushed Away
+474c4c45|Ratatouille
+474c4c46|Ratatouille
+474c4d45|Super Mario
+474c4d4a|Super Mario
+474c4d50|Super Mario
+474c4e45|Looney Tunes: Back in Action
+474c4e50|Looney Tunes: Back in Action
+474c4f44|The Lord of the Rings: The Third Age
+474c4f45|The Lord of the Rings: The Third Age
+474c4f46|The Lord of the Rings: The Third Age
+474c4f49|The Lord of the Rings: The Third Age
+474c4f50|The Lord of the Rings: The Third Age
+474c4f53|The Lord of the Rings: The Third Age
+474c5145|Tom Clancy
+474c5150|Tom Clancy
+474c5244|Star Wars
+474c5245|Star Wars
+474c5246|Star Wars
+474c5250|Star Wars
+474c5344|Gladius
+474c5346|Gladius
+474c5350|Gladius
+474c5644|The Chronicles of Narnia: The Lion Witch and the Wardrobe
+474c5645|The Chronicles of Narnia: The Lion Witch and the Wardrobe
+474c5646|The Chronicles of Narnia: The Lion Witch and the Wardrobe
+474c5650|The Chronicles of Narnia: The Lion Witch and the Wardrobe
+474c5745|Legends of Wrestling
+474c5750|Legends of Wrestling
+474c5945|NBA
+474c5950|NBA
+474c5a44|007
+474c5a45|007
+474c5a46|007
+474c5a50|007
+474d3245|Super Monkey Ball
+474d324a|Super Monkey Ball
+474d3250|Super Monkey Ball
+474d3345|Madden NFL
+474d3350|Madden NFL
+474d3445|Super Mario
+474d344a|Super Mario
+474d3450|Super Mario
+474d3544|Metal Arms: Glitch in the System
+474d3545|Metal Arms: Glitch in the System
+474d3546|Metal Arms: Glitch in the System
+474d3550|Metal Arms: Glitch in the System
+474d3645|Medabots Infinity
+474d3650|Medabots Infinity
+474d3845|Metroid Prime
+474d384a|Metroid Prime
+474d3850|Metroid Prime
+474d4145|Mary-Kate and Ashley: Sweet 16 Licensed to Drive
+474d4150|Mary-Kate and Ashley: Sweet 16 Licensed to Drive
+474d4245|Super Dodgeball
+474d424a|Super Dodgeball
+474d4250|Super Dodgeball
+474d4445|Madden NFL
+474d4545|Men In Black
+474d4550|Men In Black
+474d4644|Medal of Honor: Frontline
+474d4645|Medal of Honor: Frontline
+474d4646|Medal of Honor: Frontline
+474d4649|Medal of Honor: Frontline
+474d4650|Medal of Honor: Frontline
+474d4653|Medal of Honor: Frontline
+474d4845|Mat Hoffman's Pro Bmx 2
+474d4850|Mat Hoffman's Pro Bmx 2
+474d4945|Mission Impossible: Operation Surma
+474d494a|Mission Impossible: Operation Surma
+474d4950|Mission Impossible: Operation Surma
+474d4a45|Monster Jam: Path of Destruction
+474d4a50|Monster Jam: Path of Destruction
+474d4b44|Mortal Kombat: Deadly Alliance
+474d4b45|Mortal Kombat: Deadly Alliance
+474d4b50|Mortal Kombat: Deadly Alliance
+474d4c45|ESPN
+474d4e45|Monsters, Inc. Scream Arena
+474d4e50|Monsters, Inc. Scream Arena
+474d5045|Super Mario
+474d504a|Super Mario
+474d5050|Super Mario
+474d5145|Monopoly Party
+474d5150|Monopoly Party
+474d5245|Big Air Freestyle
+474d5250|Big Air Freestyle
+474d534a|Super Mario
+474d5350|Super Mario
+474d5445|Disney
+474d544a|Disney
+474d5450|Disney
+474d5744|Minority Report: Everybody Runs
+474d5745|Minority Report: Everybody Runs
+474d5746|Minority Report: Everybody Runs
+474d5750|Minority Report: Everybody Runs
+474d5845|Enter The Matrix
+474d584a|Enter The Matrix
+474d5850|Enter The Matrix
+474e3245|NASCAR
+474e3345|NHL
+474e3350|NHL
+474e3445|NASCAR
+474e3545|NHL
+474e3550|NHL
+474e3645|NHL
+474e3650|NHL
+474e3745|NBA
+474e3750|NBA
+474e3845|NBA
+474e3850|NBA
+474e3945|Nickelodeon Party Blast
+474e4145|NCAA
+474e4245|NBA
+474e424a|NBA
+474e4250|NBA
+474e4345|NASCAR
+474e4444|Need for Speed: Undercover
+474e4445|Need for Speed: Undercover
+474e4446|Need for Speed: Undercover
+474e444a|Need for Speed: Undercover
+474e4450|Need for Speed: Undercover
+474e4544|Finding Nemo
+474e4545|Finding Nemo
+474e4546|Finding Nemo
+474e4550|Finding Nemo
+474e4553|Finding Nemo
+474e4645|NFL Blitz 2002
+474e4745|NCAA
+474e4845|NFL Blitz 2002
+474e4850|NFL Blitz 2002
+474e4945|Teenage Mutant Ninja Turtles 2: Battle Nexus
+474e4950|Teenage Mutant Ninja Turtles 2: Battle Nexus
+474e4b45|NCAA
+474e4c45|NBA
+474e4c50|NBA
+474e4d45|Namco
+474e4e45|NBA
+474e4e50|NBA
+474e4f58|SpongeBob SquarePants
+474e5050|Nickelodeon Party Blast
+474e5145|Madden NFL
+474e5150|Madden NFL
+474e5245|Naruto
+474e524a|Naruto
+474e5345|NBA
+474e534a|NBA
+474e5545|Naruto
+474e554a|Naruto
+474e5550|Naruto
+474e5645|NHL
+474e5650|NHL
+474e5745|Def Jam: Fight For NY
+474e5750|Def Jam: Fight For NY
+474e5845|NCAA
+474e5a45|NBA
+474e5a50|NBA
+474f3244|Blood Omen 2: The Legacy of Kain Series
+474f3245|Blood Omen 2: The Legacy of Kain Series
+474f3246|Blood Omen 2: The Legacy of Kain Series
+474f3250|Blood Omen 2: The Legacy of Kain Series
+474f3345|NFL Blitz 2002
+474f3744|007
+474f3745|007
+474f3746|007
+474f3750|007
+474f3753|007
+474f4145|Cabela's African Adventures
+474f4645|Outlaw Golf
+474f4650|Outlaw Golf
+474f474a|One Piece: Grand Battle! 3
+474f4d45|Super Mario
+474f4d4a|Super Mario
+474f4d50|Super Mario
+474f4e44|Medal of Honor: Europa Kyoushuu
+474f4e45|Medal of Honor: Europa Kyoushuu
+474f4e46|Medal of Honor: Europa Kyoushuu
+474f4e4a|Medal of Honor: Europa Kyoushuu
+474f4e50|Medal of Honor: Europa Kyoushuu
+474f4f45|Odama
+474f4f4a|Odama
+474f4f50|Odama
+474f5045|Shonen Jump's One Piece: Grand Battle
+474f504a|One Piece: Grand Battle! 3
+474f5145|Shonen Jump's One Piece: Grand Battle
+474f5345|Open Season
+474f5350|Open Season
+474f5358|Open Season
+474f5744|Need for Speed: Most Wanted
+474f5745|Need for Speed: Most Wanted
+474f5746|Need for Speed: Most Wanted
+474f574a|Need for Speed: Most Wanted
+474f5750|Need for Speed: Most Wanted
+474f5944|007
+474f5945|007
+474f5946|007
+474f5950|007
+474f5953|007
+47503245|MadWorld
+47503250|MadWorld
+47503345|The Polar Express
+47503350|The Polar Express
+47503545|Super Mario
+4750354a|Super Mario
+47503550|Super Mario
+47503645|Super Mario
+4750364a|Super Mario
+47503650|Super Mario
+47503745|Super Mario
+4750374a|Super Mario
+47503750|Super Mario
+47503845|Pac-Man
+47503850|Pac-Man
+47503945|Rogue Ops
+4750394a|Rogue Ops
+47503950|Rogue Ops
+47504145|Pokemon
+4750414a|Pokemon
+47504150|Pokemon
+47504155|Pokemon
+47504445|Dakar 2: The World's Ultimate Rally
+47504450|Dakar 2: The World's Ultimate Rally
+47504844|Pitfall
+47504845|Pitfall
+47504846|Pitfall
+47504850|Pitfall
+47504945|Pikmin
+4750494a|Pikmin
+47504950|Pikmin
+47504a4a|Jikkyou Powerful Pro Yakyuu 9
+47504b45|Disney
+47504c44|Piglet's Big Game
+47504c45|Piglet's Big Game
+47504c46|Piglet's Big Game
+47504c50|Piglet's Big Game
+47504d45|Pac-Man
+47504e45|P.N.03
+47504e4a|P.N.03
+47504e50|P.N.03
+47504f45|Phantasy Star Online Episode I&II
+47504f4a|Phantasy Star Online Episode I&II
+47504f50|Phantasy Star Online Episode I&II
+4750504a|Jikkyou Powerful Pro Yakyuu 9
+47505145|The Powerpuff Girls: Relish Rampage
+47505150|The Powerpuff Girls: Relish Rampage
+47505245|Pool Paradise
+47505250|Pool Paradise
+47505345|Phantasy Star Online Episode III: C.A.R.D. Revolution
+4750534a|Phantasy Star Online Episode III: C.A.R.D. Revolution
+47505350|Phantasy Star Online Episode III: C.A.R.D. Revolution
+47505445|Prince of Persia
+47505450|Prince of Persia
+47505545|Puyo Pop Fever
+47505550|Puyo Pop Fever
+47505645|Pikmin
+4750564a|Pikmin
+47505650|Pikmin
+47505745|Spawn: Armageddon
+47505750|Spawn: Armageddon
+47505845|Pokemon
+4750584a|Pokemon
+47505850|Pokemon
+4750594a|Puyo Pop Fever
+47513444|SpongeBob SquarePants
+47513445|SpongeBob SquarePants
+47513446|SpongeBob SquarePants
+47513448|SpongeBob SquarePants
+47513450|SpongeBob SquarePants
+47513845|Madden NFL
+4751414a|Choro Q
+47514344|Call of Duty 2: Big Red One
+47514345|Call of Duty 2: Big Red One
+47514346|Call of Duty 2: Big Red One
+47514349|Call of Duty 2: Big Red One
+47514350|Call of Duty 2: Big Red One
+47514353|Call of Duty 2: Big Red One
+47514c45|Dora the Explorer: Journey to the Purple Planet
+47514c50|Dora the Explorer: Journey to the Purple Planet
+47515045|SpongeBob SquarePants
+47515050|SpongeBob SquarePants
+47515144|SpongeBob SquarePants
+47515145|SpongeBob SquarePants
+47515146|SpongeBob SquarePants
+47515148|SpongeBob SquarePants
+47515150|SpongeBob SquarePants
+47515344|Tales of Symphonia
+47515345|Tales of Symphonia
+47515346|Tales of Symphonia
+47515349|Tales of Symphonia
+47515350|Tales of Symphonia
+47515353|Tales of Symphonia
+47515445|Meet the Robinsons
+47515745|Harry Potter
+4751574a|Harry Potter
+47515750|Harry Potter
+47515758|Harry Potter
+47515845|Madden NFL
+47515850|Madden NFL
+47523245|Lost Kingdoms
+4752324a|Rune II: Koruten no Kagi no Himitsu
+47523250|Lost Kingdoms
+47523445|MC Groovz Dance Craze
+47523450|MC Groovz Dance Craze
+47523644|Bratz: Rock Angelz
+47523645|Bratz: Rock Angelz
+47523646|Bratz: Rock Angelz
+47523650|Bratz: Rock Angelz
+47523844|Medal of Honor: Rising Sun
+47523845|Medal of Honor: Rising Sun
+47523846|Medal of Honor: Rising Sun
+47523850|Medal of Honor: Rising Sun
+47523945|Reign of Fire
+47523950|Reign of Fire
+47524145|Rally Championship
+47524150|Rally Championship
+47524245|Robotech: Battlecry
+47524250|Robotech: Battlecry
+47524545|Mega Man Network Transmission
+4752454a|RockMan
+47524550|Mega Man Network Transmission
+47524644|Red Faction II
+47524645|Red Faction II
+47524646|Red Faction II
+47524650|Red Faction II
+47524845|Rayman
+47524850|Rayman
+47524a45|Batting Revolution
+47524a50|R: Racing
+47524b45|Rocky
+47524b50|Rocky
+47524c45|Pro Rally
+47524c50|Pro Rally
+47524e45|Lost Kingdoms
+47524e50|Lost Kingdoms
+47525245|Rugrats: Royal Ransom
+47525246|Rugrats: Royal Ransom
+47525250|Rugrats: Royal Ransom
+47525345|SoulCalibur II
+4752534a|SoulCalibur II
+47525350|SoulCalibur II
+47525545|Power Rangers Dino Thunder
+47525546|Power Rangers Dino Thunder
+47525550|Power Rangers Dino Thunder
+4752574a|Super Robot Taisen GC
+47525945|Rayman
+47525a4a|Medal of Honor: Rising Sun
+47533244|Summoner: A Goddess Reborn
+47533245|Summoner: A Goddess Reborn
+47533250|Summoner: A Goddess Reborn
+47533345|SX Superstar
+47533350|SX Superstar
+47533745|MLB SlugFest 2004
+47533845|Spyro
+47533850|Spyro
+47533945|Shrek
+47533950|Shrek
+47534145|Star Fox
+4753414a|Star Fox
+47534150|Star Fox
+4753424a|Sonic
+47534345|Jeremy McGrath SuperCross World
+47534350|Jeremy McGrath SuperCross World
+47534745|MLB SlugFest 2004
+47534845|SpyHunter
+47534850|SpyHunter
+47534b45|The Scorpion King: Rise of the Akkadian
+47534b50|The Scorpion King: Rise of the Akkadian
+47534d44|Spider-Man
+47534d45|Spider-Man
+47534d46|Spider-Man
+47534d4a|Spider-Man
+47534d50|Spider-Man
+47534e45|Sonic
+47534e50|Sonic
+47534f45|Sonic
+47534f4a|Sonic
+47534f50|Sonic
+47535045|The Simpsons: Road Rage
+47535050|The Simpsons: Road Rage
+47535145|SpongeBob SquarePants
+47535150|SpongeBob SquarePants
+47535245|Smuggler's Run: Warzones
+47535250|Smuggler's Run: Warzones
+47535345|Sega Soccer Slam
+4753534a|Sega Soccer Slam
+47535350|Sega Soccer Slam
+47535445|SSX
+4753544a|SSX
+47535450|SSX
+47535545|Superman: Shadow of Apokolips
+47535550|Superman: Shadow of Apokolips
+47535645|MX Superfly featuring Ricky Carmichael
+47535650|MX Superfly featuring Ricky Carmichael
+47535744|Star Wars
+47535745|Star Wars
+47535746|Star Wars
+47535749|Star Wars
+4753574a|Star Wars
+47535750|Star Wars
+47535753|Star Wars
+47535844|Star Wars
+47535845|Star Wars
+47535846|Star Wars
+47535849|Star Wars
+4753584a|Star Wars
+47535850|Star Wars
+47535853|Star Wars
+47535945|Shrek
+47535950|Shrek
+47543344|Tony Hawk
+47543345|Tony Hawk
+47543346|Tony Hawk
+4754334a|Tony Hawk
+47543350|Tony Hawk
+47543444|Tony Hawk
+47543445|Tony Hawk
+47543446|Tony Hawk
+47543450|Tony Hawk
+47543545|Starsky & Hutch
+47543550|Starsky & Hutch
+47543645|Terminator 3: The Redemption
+4754364a|Terminator 3: The Redemption
+47543650|Terminator 3: The Redemption
+47543745|Tom Clancy
+47543750|Tom Clancy
+47543758|Tom Clancy
+47543845|Big Mutha Truckers
+47543850|Big Mutha Truckers
+47544145|Top Angler: Real Bass Fishing
+47544150|Top Angler: Real Bass Fishing
+47544445|Tony Hawk
+47544450|Tony Hawk
+47544545|1080° Avalanche
+47544550|1080° Avalanche
+47544645|Teenage Mutant Ninja Turtles
+47544650|Teenage Mutant Ninja Turtles
+47544745|Top Gun: Combat Zones
+47544750|Top Gun: Combat Zones
+47544945|Tiger Woods PGA Tour 10
+47544950|Tiger Woods PGA Tour 10
+47544b44|Rock Revolution
+47544b45|Rock Revolution
+47544b50|Rock Revolution
+47544c45|True Crime: Streets of LA
+47544c50|True Crime: Streets of LA
+47544c58|True Crime: Streets of LA
+47544f4a|Tales of Symphonia
+47545245|Tetris
+4754524a|Tetris
+47545250|Tetris
+47545345|TimeSplitters 2
+47545350|TimeSplitters 2
+47545745|Taz Wanted
+47545750|Taz Wanted
+47545945|Ty the Tasmanian Tiger
+47545950|Ty the Tasmanian Tiger
+47553244|2 Games in 1: The Incredibles / Finding Nemo
+47553246|2 Games in 1: The Incredibles / Finding Nemo
+47553344|SpongeBob SquarePants
+47553358|SpongeBob SquarePants
+47553459|SpongeBob SquarePants
+47554245|The Sims
+4755424a|The Sims
+47554250|The Sims
+47554344|UEFA Champions League 2004-2005
+47554346|UEFA Champions League 2004-2005
+47554350|UEFA Champions League 2004-2005
+47554744|Need for Speed: Undercover
+47554745|Need for Speed: Undercover
+47554746|Need for Speed: Undercover
+47554750|Need for Speed: Undercover
+47554e45|Gauntlet: Dark Legacy
+47554e50|Gauntlet: Dark Legacy
+47555045|Shadow the Hedgehog
+4755504a|Shadow the Hedgehog
+47555050|Shadow the Hedgehog
+47555345|Universal Studios Japan Adventure
+4755534a|Universal Studios Japan Adventure
+47555350|Universal Studios Japan Adventure
+47555444|Spider-Man
+47555445|Spider-Man
+47555446|Spider-Man
+47555449|Spider-Man
+4755544a|Spider-Man
+47555450|Spider-Man
+47555453|Spider-Man
+47555a45|Batman Rise of Sin Tzu
+47555a50|Batman Rise of Sin Tzu
+4756334a|V-Rally 3
+47563350|V-Rally 3
+47563445|Baseball
+47564345|Viewtiful Joe: Red Hot Rumble
+47564350|Viewtiful Joe: Red Hot Rumble
+47564445|Bratz Forever Diamondz
+47564450|Bratz Forever Diamondz
+47564845|Bionicle Heroes
+47564a45|Viewtiful Joe
+47564a4a|Viewtiful Joe
+47564a50|Viewtiful Joe
+47564b45|Cabela's Dangerous Hunts 2
+47564c44|Marvel Nemesis: Rise of the Imperfects
+47564c45|Marvel Nemesis: Rise of the Imperfects
+47564c46|Marvel Nemesis: Rise of the Imperfects
+47564c50|Marvel Nemesis: Rise of the Imperfects
+47564f45|Bionicle
+47564f50|Bionicle
+47565045|Baseball
+47565345|VIRTUA STRIKER 3 ver.2002
+47565350|VIRTUA STRIKER 3 ver.2002
+47573245|WWE
+47573250|WWE
+47573345|WWE
+4757334a|WWE
+47573350|WWE
+47573445|Tiger Woods PGA Tour 10
+47573450|Tiger Woods PGA Tour 10
+47573544|Need for Speed: Nitro
+47573545|Need for Speed: Nitro
+47573546|Need for Speed: Nitro
+47573550|Need for Speed: Nitro
+47573744|007
+47573745|007
+47573746|007
+47573750|007
+47573945|WWE
+4757394a|WWE
+47573950|WWE
+47574144|Spartan Total Warrior
+47574145|Spartan Total Warrior
+47574146|Spartan Total Warrior
+47574150|Spartan Total Warrior
+47574245|Worms
+47574250|Worms
+47574545|18 Wheeler American Pro Trucker
+4757454a|18 Wheeler American Pro Trucker
+47574550|18 Wheeler American Pro Trucker
+47574845|Winnie The Pooh Rumbly Tumbly Adventures
+47574850|Winnie The Pooh Rumbly Tumbly Adventures
+47574a45|Tony Hawk
+47574b45|Peter Jackson's King Kong: The Official Game of the Movie
+47574b50|Peter Jackson's King Kong: The Official Game of the Movie
+47574c45|Wallace & Gromit : Project Zoo
+47574c50|Wallace & Gromit : Project Zoo
+47574c58|Wallace & Gromit : Project Zoo
+47574d45|Worms
+47574d50|Worms
+47575045|WWE
+4757504a|WWE
+47575050|WWE
+47575145|Wreckless: The Yakuza Missions
+47575150|Wreckless: The Yakuza Missions
+47575245|Wave Race: Blue Storm
+4757524a|Wave Race: Blue Storm
+47575250|Wave Race: Blue Storm
+47575345|ESPN
+47575350|ESPN
+47575445|WTA Tour Tennis
+4757544a|WTA Tour Tennis
+47575545|Whirl Tour
+47575550|Whirl Tour
+47575645|X-Men
+47575650|X-Men
+47575658|X-Men
+47575745|Wario World
+4757574a|Wario World
+47575750|Wario World
+4757584a|Star Wars
+47575945|Tom Clancy
+47575958|Tom Clancy
+47575a45|Super Mario
+47575a4a|Super Mario
+47575a50|Super Mario
+47583244|X-Men
+47583250|X-Men
+47583253|X-Men
+47584145|XGRA Extreme G Racing Association
+47584150|XGRA Extreme G Racing Association
+47584245|SSX
+4758424a|SSX
+47584250|SSX
+47584345|Custom Robo
+47584545|Sonic
+4758454a|Sonic
+47584550|Sonic
+47584644|FIFA
+47584645|FIFA
+47584646|FIFA
+47584649|FIFA
+47584650|FIFA
+47584653|FIFA
+47584745|Pac-Man
+47584c45|X-Men
+47584c50|X-Men
+47584c58|X-Men
+47584d45|X-Men
+47584d50|X-Men
+47584e45|Rampage Total Destruction
+47584f45|SSX
+47584f4a|SSX
+47584f50|SSX
+47584f58|SSX
+47585045|Sphinx and the Cursed Mummy
+47585050|Sphinx and the Cursed Mummy
+47585245|Mega Man X: Command Mission
+4758524a|Mega Man X: Command Mission
+47585250|Mega Man X: Command Mission
+47585345|Sonic
+47585350|Sonic
+47585545|Surf's Up
+47585845|Pokemon
+4758584a|Pokemon
+47585850|Pokemon
+47593245|Donkey Kong
+4759324a|Donkey Kong
+47593250|Donkey Kong
+4759334a|Donkey Kong
+47594144|Barnyard
+47594145|Barnyard
+47594150|Barnyard
+47594158|Barnyard
+47594245|Donkey Kong
+4759424a|Donkey Kong
+47594250|Donkey Kong
+47594645|Yu-Gi-Oh
+4759464a|Yu-Gi-Oh
+47594650|Yu-Gi-Oh
+47594b4a|Konjiki no Gashbell!! Yuujou Tag Battle 2
+47594d4a|Jikkyou Powerful Major League
+47595145|Baseball
+4759514a|Baseball
+47595150|Baseball
+47595445|Ty the Tasmanian Tiger 2: Bush Rescue
+47595450|Ty the Tasmanian Tiger 2: Bush Rescue
+47595744|Harvest Moon
+47595745|Harvest Moon
+4759574a|Bokujou Monogatari: Wonderful Life
+47595750|Harvest Moon
+475a3245|Zelda
+475a324a|Zelda
+475a3250|Zelda
+475a3345|Dragon Ball Z
+475a3350|Dragon Ball Z
+475a424a|Dragon Ball Z
+475a4345|ZooCube
+475a434a|ZooCube
+475a4350|ZooCube
+475a4445|Godzilla: Destroy all Monsters Melee
+475a4450|Godzilla: Destroy all Monsters Melee
+475a4545|Dragon Ball Z
+475a4c45|Zelda
+475a4c4a|Zelda
+475a4c50|Zelda
+475a4f4a|Zoids vs.
+475a5045|Zapper: One Wicked Cricket!
+475a5050|Zapper: One Wicked Cricket!
+475a5145|Robots
+475a514a|Robots
+475a5150|Robots
+475a534a|Zoids vs.
+475a564a|Zoids vs.
+475a5745|WarioWare, Inc.: Mega Microgame$
+475a574a|Sawaru Made in Wario
+475a5750|WarioWare, Inc.: Mega Microgame$
+50324d45|Metroid Prime
+5034424a|Resident Evil
+50433645|Pokemon
+50434b4a|Pokemon
+5043534a|Pokemon
+5044354a|Dragon Drive: D-Masters Shot
+5047504a|SD Gundam
+5047534a|Metal Gear Solid: The Twin Snakes
+504b424a|The Tower of Druga
+504d3445|Super Mario
+504e524a|Naruto
+50524a45|Pac-Man
+50524a4a|Pac-Man
+50524a50|Pac-Man
+505a4c45|Zelda
+505a4c4a|Zelda
+505a4c50|Zelda
+55475045|Game Boy Player
+5547504a|Game Boy Player
+55475050|Game Boy Player
+10157f00|Bayonetta
+10157e00|Bayonetta
+101c6400|Animal Crossing: amiibo Festival
+10190100|Animal Crossing: amiibo Festival
+101c6500|Animal Crossing: amiibo Festival
+10162d00|Super Mario
+10161f00|Super Mario
+10162e00|Super Mario
+10147d00|Barbie: Dreamhouse Party
+1010ac00|Ben 10
+10111000|Ben 10
+10113d00|Rapala Pro Bass Fishing
+1012d000|Resident Evil
+10113100|Resident Evil
+1012b400|Resident Evil
+101e5300|Sonic
+10190300|Sonic
+101e5400|Sonic
+1017c200|Baila Latino
+101d4200|Brunswick Pro Bowling
+1010ab00|Batman Arkham City: Armored Edition
+10112900|Batman Arkham City: Armored Edition
+10111300|Batman Arkham City: Armored Edition
+10147500|Ben 10
+10146600|Ben 10
+10170700|Kamen Rider: Battride War II
+10147a00|Monster High: 13 Wishes
+1012bd00|Pikmin
+1012bc00|Pikmin
+1012be00|Pikmin
+1010e700|Cabela's Dangerous Hunts 2
+10143200|Cabela's Big Game Hunter
+1012dc00|The Wonderful 101
+10116300|The Wonderful 101
+10135300|The Wonderful 101
+10146800|Call of Duty: Ghosts
+10157600|Call of Duty: Ghosts
+10157900|Call of Duty: Ghosts
+10156100|Call of Duty: Ghosts
+10112000|The Croods: Prehistoric Party!
+1012cc00|The Croods: Prehistoric Party!
+1010ad00|Darksiders II
+10110f00|Darksiders II
+10177600|Devil's Third
+10138f00|Devil's Third
+10177700|Devil's Third
+10162f00|Disney
+1016c800|Disney
+10115e00|Dragon Quest X: Mezameshi Itsutsu no Shuzoku
+1016dc00|Disney
+10188c00|Disney
+10188d00|Disney
+10132900|Disney
+1015a300|Disney
+10136f00|Disney
+10137000|Disney
+10144000|Adventure Time: Explore the Dungeon Because I DON'T KNOW!
+1014e200|Adventure Time: Explore the Dungeon Because I DON'T KNOW!
+1012ba00|Deus Ex: Human Revolution - Director's Cut
+1012b200|Deus Ex: Human Revolution - Director's Cut
+10113700|Call of Duty: Black Ops
+1010cf00|Call of Duty: Black Ops
+10113500|Call of Duty: Black Ops
+1011b400|Call of Duty: Black Ops
+10113400|Call of Duty: Black Ops
+1010db00|Disney
+1011b000|Disney
+1010d900|FIFA
+10110c00|FIFA
+1010ee00|FIFA
+10133b00|F1 Race Stars: Powered Up Edition
+10113c00|Funky Barn
+10118400|Funky Barn
+10162800|Famicom Remix
+10137200|Wii
+1010f300|Family Party: 30 Great Games Outdoor Fun
+10118200|Wii
+10113200|Family Party: 30 Great Games Outdoor Fun
+10187b00|Disney
+1018cc00|Disney
+101b0400|Star Fox
+101aff00|Star Fox
+101b0500|Star Fox
+10176900|Splatoon
+10162b00|Splatoon
+10176a00|Splatoon
+101ba400|Guitar Hero
+101bc600|Guitar Hero
+1010e400|Game Party Champions
+1010ff00|Game Party Champions
+10145e00|Star Wars
+10149100|Star Wars
+10116600|Fist of the North Star: Ken's Rage 2
+10110200|Warriors Orochi 3 Hyper
+10112b00|Warriors Orochi 3 Hyper
+10118300|Monster Hunter 3 Ultimate
+10104d00|Monster Hunter G
+10117200|Monster Hunter 3 Ultimate
+101db200|Shantae Half-Genie Hero
+10147e00|Hello Kitty Kruisers
+10177000|Hello Kitty Kruisers
+10143300|Hot Wheels: World's Best Driver
+10145100|Hot Wheels: World's Best Driver
+10139900|Just Dance
+10168f00|Wii
+10143f00|Just Dance
+101b9000|Just Dance
+101b9800|Just Dance
+1010ae00|Just Dance
+1010f000|Just Dance
+10145200|Just Dance
+10145b00|Just Dance
+10111100|Jeopardy!
+10111700|Injustice: Gods Among Us
+10111a00|Injustice: Gods Among Us
+10182c00|Jett Tailfin
+10180600|Captain Toad: Treasure Tracker
+10180700|Captain Toad: Treasure Tracker
+10110000|Pokkén Tournament
+10100600|Pokkén Tournament
+1010f800|Pokkén Tournament
+101d0300|Project Zero: Maiden of Black Water
+1014de00|LEGO
+10192100|LEGO
+1014e000|LEGO
+10135e00|LEGO
+10135500|LEGO
+10102000|Nintendo Land
+10101f00|Nintendo Land
+10102100|Nintendo Land
+1016aa00|LEGO
+10168d00|LEGO
+101a6200|LEGO
+101cdf00|LEGO
+101a5c00|LEGO
+10132b00|LEGO
+101a2d00|LEGO
+10132400|LEGO
+101bef00|LEGO
+101ea100|LEGO
+101be900|LEGO
+10154e00|Luv Me Buddies Wonderland
+101c9400|Zelda
+101c9300|Zelda
+101c9500|Zelda
+10146a00|Spider-Man
+1016d600|Spider-Man
+1018dc00|Super Mario
+1018db00|Super Mario
+1018dd00|Super Mario
+1010d800|Madden NFL
+1010dc00|Mass Effect 3: Special Edition
+10113000|Mass Effect 3: Special Edition
+1010f500|Mass Effect 3: Special Edition
+1010ec00|Super Mario
+1010eb00|Super Mario
+1010ed00|Super Mario
+101c9800|Mighty No. 9
+101c5b00|Mighty No. 9
+1010af00|Marvel Avengers: Battle for Earth
+10110800|Marvel Avengers: Battle for Earth
+1011c300|Spider-Man
+10128300|Spider-Man
+1010da00|NBA
+10112f00|NBA
+10110a00|Ninja Gaiden
+10110900|Ninja Gaiden
+10110b00|Ninja Gaiden
+10140300|Angry Birds Trilogy
+10128800|Need for Speed: Most Wanted
+1012b700|Need for Speed: Most Wanted
+10128400|Need for Speed: Most Wanted
+10137d00|Wii
+1011a800|Wii
+10137e00|Wii
+10155f00|Dragon Quest X: Nemureru Yuusha to Michibiki no Meiyuu Online
+1011c500|Disney
+10136b00|Disney
+10146300|Pac-Man
+10147900|Pac-Man
+10139400|Phineas and Ferb
+1018fd00|Penguins of Madagascar
+10193f00|Penguins of Madagascar
+101df400|Pokkén Tournament
+101c5800|Pokkén Tournament
+101df500|Pokkén Tournament
+10101a00|LEGO
+10142f00|LEGO
+10101b00|LEGO
+1014d900|Tetris
+10149000|Sangokushi 11 with Power-Up Kit
+10170600|Kamen Rider: Battride War II
+10194200|LEGO
+10195d00|LEGO
+10172600|Bayonetta
+1011b900|Bayonetta
+10172700|Bayonetta
+1010b000|Rabbids Land
+10112700|Rabbids Land
+1010fc00|Rabbids Land
+10145c00|Super Mario
+10106100|Super Mario
+10145d00|Super Mario
+1010f200|Rise of the Guardians
+1010f100|Rise of the Guardians
+10137f00|Donkey Kong
+10144800|Donkey Kong
+10138300|Donkey Kong
+1010b100|Rayman
+10112600|Rayman
+10111400|Rayman
+10101d00|Super Mario
+10101c00|Super Mario
+10101e00|Super Mario
+10142300|Super Mario
+10142400|Super Mario
+1010b300|Sonic
+1015b400|Sonic
+10111f00|Sonic
+10146900|SpongeBob SquarePants
+10142d00|Spyro
+10134e00|Sniper Elite
+10145500|Sniper Elite
+1010e300|Tom Clancy
+10112800|Tom Clancy
+1012ac00|Tom Clancy
+1011f200|Game & Wario
+10112e00|Game & Wario
+10128900|Game & Wario
+10138b00|Assassin's Creed IV: Black Flag
+1014c800|Assassin's Creed IV: Black Flag
+10138800|Assassin's Creed IV: Black Flag
+1010b200|Scribblenauts Unlimited
+1010f900|Scribblenauts Unlimited
+101ed800|Tokyo Mirage Sessions #FE
+101ed700|Tokyo Mirage Sessions #FE
+10139200|Skylanders: Swap Force
+10140400|Skylanders: Swap Force
+1010d700|Skylanders: Giants
+10128f00|Sonic
+10135700|Sonic
+1012b100|Sonic
+1010b400|Sports Connection
+10112500|Sports Connection
+10111e00|Sports Connection
+10106b00|Assassin's Creed III
+10112400|Assassin's Creed III
+1010f600|Assassin's Creed III
+10102300|Wii
+10102200|Wii
+10102500|Wii
+10113300|The Smurfs 2
+10115d00|The Smurfs 2
+10101800|SiNG Party
+10101900|SiNG Party
+10132200|Wii
+101dad00|Tumblestone
+10133900|Turbo: Super Stunt Squad
+10136700|Turbo: Super Stunt Squad
+10161a00|How to Train Your Dragon
+10162a00|How to Train Your Dragon
+1010fd00|Tank! Tank! Tank!
+10113600|Tank! Tank! Tank!
+1010fe00|Tank! Tank! Tank!
+1010b500|Transformers
+1010f400|Transformers
+1014b700|Super Mario
+1014b800|Super Mario
+101d9d00|Super Mario
+101dbe00|Wii
+101d7500|Wii
+10148000|One Piece: Unlimited World R
+10175d00|One Piece: Unlimited World R
+1010c700|Sonic
+10106900|Sonic
+1010c800|Sonic
+101c8900|Just Dance
+101a3500|Super Mario
+10199000|Super Mario
+101a3600|Super Mario
+1010e800|Wipeout 3
+10142000|Watch Dogs
+1014c000|Watch Dogs
+10140500|Watch Dogs
+10111200|Wheel of Fortune
+10144d00|Wii
+1012f100|Wii
+10144e00|Wii
+101c4c00|Xenoblade Chronicles
+101c4d00|Xenoblade Chronicles
+10144f00|Wii
+10110e00|Wii
+10145000|Wii
+101abc00|Kirby and the Rainbow Curse
+101b5400|Kirby and the Rainbow Curse
+10184d00|Yoshi Wool World
+10132100|Yoshi Wool World
+10185900|Yoshi Wool World
+1014c100|Transformers
+10173400|Transformers
+1010b800|Your Shape: Fitness Evolved 2013
+1010f700|Your Shape: Fitness Evolved 2013
+1019e500|Zelda
+1019c800|Zelda
+1019e600|Zelda
+10142a00|Zumba Fitness World Party
+1018e000|Zumba Fitness World Party
+1014e300|Zumba Fitness World Party
+10137c00|Batman: Arkham Origins
+10154600|Batman: Arkham Origins
+10136d00|Batman: Arkham Origins
+1011a700|ZombiU
+1010dd00|ZombiU
+10112300|ZombiU
+1010ef00|ZombiU
+10209900|Cars 3: Driven to Win
+1020a400|Cars 3: Driven to Win
+1020a200|Minecraft: Story Mode - The Complete Adventure
+1020a300|Minecraft: Story Mode - The Complete Adventure
+10143500|Zelda
+10143400|Zelda
+10143600|Zelda
+101ac900|Disney
+101ddc00|Disney
+101b3d00|Disney
+101b3400|Dragon Quest X Inishie no Ryu no Denshou Online
+101fa600|Darksiders - Warmastered Edition
+101f9700|Darksiders - Warmastered Edition
+101ac700|Adventure Time: Finn & Jake Investigations
+101afe00|Adventure Time: Finn & Jake Investigations
+101eb200|Just Dance
+101eaa00|Just Dance
+10211300|Just Dance
+10210c00|Just Dance
+10179100|Just Dance
+10176f00|Just Dance
+1017c600|Skylanders: Trap Team
+10181f00|Skylanders: Trap Team
+101a6500|Kung Fu Panda: Showdown of Legendary Legends
+101aa500|Kung Fu Panda: Showdown of Legendary Legends
+101f4d00|Skylanders: Giants
+101fb100|Skylanders: Giants
+101dab00|Star Wars
+101ea000|Star Wars
+101daa00|Star Wars
+10193400|Legend of Kay Anniversary
+10193300|Legend of Kay Anniversary
+101c8d00|Monster High: New Ghoul in School
+101ca900|Monster High: New Ghoul in School
+101c4200|The Peanuts Movie: Snoopy's Grand Adventure
+101d5000|The Peanuts Movie: Snoopy's Grand Adventure
+1017e600|Pac-Man
+1017e500|Pac-Man
+101fed00|FAST Racing NEO
+101bf600|EA
+1018c500|EA
+101c4000|EA
+101d1000|Barbie and Her Sisters: Puppy Rescue
+101d1d00|Barbie and Her Sisters: Puppy Rescue
+101b8500|Skylanders: SuperChargers
+101bfc00|Skylanders: SuperChargers
+10175b00|Sonic
+10191f00|Sonic
+10177800|Sonic
+1016ad00|LEGO
+101b2700|LEGO
+1016a400|LEGO
+1019c300|Terraria
+101f3a00|Terraria
+10198f00|Terraria
+101ea200|The Book of Unwritten Tales 2
+101e9f00|The Book of Unwritten Tales 2
+101bec00|Star Fox
+101beb00|Star Fox
+101bed00|Star Fox
+1017d800|Hyrule Warriors
+1017cd00|Zelda
+1017d900|Hyrule Warriors
+1f600a00|Super Mario
+1f600900|Super Mario
+1f600b00|Super Mario
+10217300|Just Dance
+10217000|Just Dance
+10179200|Donkey Kong
+10178e00|Donkey Kong
+10100d00|Wii
+10129000|DuckTales: Remastered
+10129400|DuckTales: Remastered
+101a1600|Teslagrad
+1016e100|Shovel Knight
+10178f00|Shovel Knight
+10142c00|Art Academy: SketchPad
+10142b00|Art Academy: SketchPad
+10142700|Art Academy: SketchPad
+101e3600|Spheroids
+1020c900|Spheroids
+101e3500|Spheroids
+101e1f00|B3 Game Expo For Bees
+101f9800|B3 Game Expo For Bees
+101e7b00|Asdivine Hearts
+101e4000|Asdivine Hearts
+101eff00|Asdivine Hearts
+101c5400|The Bridge
+101cbf00|The Bridge
+101e4c00|Bird Mania Party
+101d2f00|Bird Mania Party
+101e4b00|Bird Mania Party
+1017c400|Baila Latino
+101faa00|Blasting Agent: Ultimate Edition
+101fa900|Blasting Agent: Ultimate Edition
+10139b00|Cocoto Magic Circus
+1014cc00|Cocoto Magic Circus
+101ce100|Canvaleon
+101d0700|Canvaleon
+1015b200|Child of Light
+1016d800|Child of Light
+1016ea00|Child of Light
+1018d400|Cake Ninja 3: The Legend Continues
+1018cd00|Cake Ninja 3: The Legend Continues
+1017da00|Costume Quest 2
+10197d00|Costume Quest 2
+101a6400|Cube Life Island Survival
+101e9c00|Cube Life Island Survival
+101a6300|Cube Life Island Survival
+101bc900|Aperion Cyberstorm
+101c8a00|Aperion Cyberstorm
+101c6a00|Octodad: Dadliest Catch
+101dc100|Octodad: Dadliest Catch
+101c4300|Don’t Starve: Giant Edition
+101c9a00|Don’t Starve: Giant Edition
+10145600|Animal Crossing
+1018f100|SteamWorld Dig
+101a2800|SteamWorld Dig
+1018d800|SteamWorld Dig
+1018f800|SMART Adventures Mission Math: Sabotage at the Space Station
+1018a800|SMART Adventures Mission Math: Sabotage at the Space Station
+101d9b00|Discovery
+101e8300|Discovery
+101ff200|Exile's End
+10204a00|Exile's End
+10217b00|Forest Escape
+10217a00|Forest Escape
+101ba500|Extreme Exorcism
+101b9f00|Extreme Exorcism
+101cee00|Electronic Super Joy
+101d8300|Electronic Super Joy
+101f3f00|Super Meat Boy
+101f4000|Super Meat Boy
+101f4800|Sweetest Thing
+101f4300|Sweetest Thing
+101f4900|Tallowmere
+10212400|Tallowmere
+101f7500|Midnight
+101faf00|Midnight
+101c7b00|Chronicles of Teddy Harmony of Exidus
+10204c00|Chronicles of Teddy Harmony of Exidus
+101daf00|Chronicles of Teddy Harmony of Exidus
+101d5f00|FreezeME
+101fd400|FreezeME
+101e8000|FreezeME
+10138600|Falling Skies: The Game
+10161600|Falling Skies: The Game
+10138d00|F1 Race Stars: Powered Up Edition
+10131900|F1 Race Stars: Powered Up Edition
+10129500|Funky Barn
+10159900|Wii
+10159800|Wii
+10159a00|Wii
+101c3100|Freedom Planet
+101cc900|Freedom Planet
+101c0800|FullBlast
+101dd400|FullBlast
+101c4100|FullBlast
+10177300|Wii
+1018ab00|Affordable Space Adventures
+101a1200|Affordable Space Adventures
+101cf100|Island Flight Simulator
+101cf200|Island Flight Simulator
+101e5000|The Gem Collector
+10209000|The Gem Collector
+101f5500|Letter Quest Grimm's Journey Remastered
+101f6400|Letter Quest Grimm's Journey Remastered
+101f5000|Dracula's Legacy
+101f4f00|Dracula's Legacy
+101d4500|Grumpy Reaper
+101fd100|Grumpy Reaper
+101e7400|Grumpy Reaper
+101d1800|Girls Like Robots
+101bc100|Girls Like Robots
+101d0900|Gunman Clive HD Collection
+101dda00|Gunman Clive HD Collection
+101d6100|Gunman Clive HD Collection
+101f6600|Gravity+
+101f8100|Gravity+
+1012b900|Fist of the North Star: Ken's Rage 2
+1012b800|Fist of the North Star: Ken's Rage 2
+10203200|Shantae Half-Genie Hero
+101e1800|Human Resource Machine
+101e1a00|Human Resource Machine
+101f5d00|PixelMaker
+101f7700|PixelMaker
+101f5f00|Hot Rod Racer
+101f7400|Hot Rod Racer
+101d5500|Joe's Diner
+101d4d00|Joe's Diner
+1012cd00|Jett Tailfin
+101d5600|Jones on Fire
+101d4e00|Jones on Fire
+101f8c00|Twin Robots
+101f8900|Twin Robots
+101cff00|Job the Leprechaun
+101d9f00|Job the Leprechaun
+101f8b00|Pirate Pop Plus
+10203300|Pirate Pop Plus
+101f9400|Super Destronaut 2: Go Duck Yourself
+101fb000|Super Destronaut 2: Go Duck Yourself
+101e3200|Jewel Quest
+101f6a00|Jewel Quest
+101fa000|Ohayou! Beginner's Japanese
+10206a00|Ohayou! Beginner's Japanese
+101f5700|Jotun: Valhalla Edition
+101f6f00|Jotun: Valhalla Edition
+101fab00|Collateral Thinking
+101fad00|SHOOTY SPACE
+101d6400|Kung Fu FIGHT!
+101e8b00|Kung Fu FIGHT!
+10201500|TITANS TOWER
+10201600|TITANS TOWER
+10201800|SHOOTY SPACE
+10205000|Cubit The Hardcore Platformer Robot HD
+1020f100|Cubit The Hardcore Platformer Robot HD
+101dc300|Kick & Fennick
+101d9700|Kick & Fennick
+101ea500|Noitu Love: Devolution
+101f1100|Noitu Love: Devolution
+101d7a00|6-Hand Video Poker
+10200200|Collateral Thinking
+101d6300|Ascent of Kings
+101e8a00|Ascent of Kings
+10201000|SHOOT THE BALL
+1020cf00|SHOOT THE BALL
+10201100|SHOOT THE BALL
+101d3c00|Level 22
+101d3b00|Level 22
+101d3f00|Project Zero: Maiden of Black Water
+10202600|Laser Blaster
+10202b00|Laser Blaster
+10204800|Plantera
+10204400|Plantera
+101f5e00|Defend your Crypt
+101f5a00|Defend your Crypt
+101a7f00|Shiftlings
+101a7100|OlliOlli
+101a5e00|OlliOlli
+101fe500|STEEL LORDS
+101fde00|STEEL LORDS
+1018d100|Lone Survivor: The Director's Cut
+101b3600|Nintendo Game Seminar 2014
+10177400|Luv Me Buddies Wonderland
+101c8300|NBA
+101e4300|NBA
+101c7400|NBA
+101dd900|Mighty No. 9
+101b8400|Mortar Melon
+101bc500|Mortar Melon
+101b9b00|Mutant Mudds Super Challenge
+101ca800|Mutant Mudds Super Challenge
+101c0a00|Nova-111
+101c0700|Nova-111
+101c6b00|Solitaire
+101d3700|Ninja Strike: Dangerous Dash
+101d3a00|Ninja Strike: Dangerous Dash
+10196000|Ninja Pizza Girl
+101e9b00|Ninja Pizza Girl
+10203800|Ninja Pizza Girl
+10202800|Sky Force Anniversary
+10203500|Sky Force Anniversary
+101db000|Oddworld: New 'n' Tasty
+101dbb00|Oddworld: New 'n' Tasty
+101c6200|Super Mario
+101c6100|Super Mario
+101c6300|Super Mario
+101ba700|PENTAPUZZLE
+101f5900|PENTAPUZZLE
+1014f300|MadWorld
+101a4800|LOST REAVERS
+1018d900|LOST REAVERS
+101b9900|LOST REAVERS
+101ca600|Year Walk
+101c4500|Year Walk
+101d4b00|Year Walk
+101db100|Pictionary
+101c3c00|Pictionary
+101bc800|Paranautical Activity
+101f0f00|Paranautical Activity
+10203b00|Dreamals: Dream Quest
+10203700|Dreamals: Dream Quest
+101d0100|The Quiet Collection
+101d3900|The Quiet Collection
+101d8000|Q.U.B.E: Director's Cut
+101f4700|Queen's Garden
+101f4200|Queen's Garden
+1020d800|Aqua TV
+10205f00|Aqua TV
+101c6900|TABLETOP GALLERY
+101e3400|Olympia Rising
+101e3300|Olympia Rising
+101bf000|Race The Sun
+101c6d00|Race The Sun
+101d4a00|Rakoo & Friends
+10190400|Red Riding Hood
+101aac00|Red Riding Hood
+10183000|RUNBOW
+101dd700|RUNBOW
+101d6d00|RUNBOW
+101e5a00|Inside My Radio
+101e5800|Inside My Radio
+101a6100|Shantae: Risky's Revenge - Director's Cut
+101a9600|Shantae: Risky's Revenge - Director's Cut
+101a9b00|Rakoo & Friends
+101d8d00|Ford Racing Off Road
+101d9600|Ford Racing Off Road
+10195e00|Rock Zombie
+1019ca00|Rock Zombie
+101a6700|Suspension Railroad Simulator
+101aa300|SDK Spriter
+101b9700|SDK Spriter
+101acc00|Shiftlings
+101f6e00|Tumblestone
+1018ed00|Tetrobot & Co.
+101d2b00|Tetrobot & Co.
+1018de00|Tetrobot & Co.
+10193e00|Twisted Fusion
+10200700|Twisted Fusion
+101d6200|Test Your Mind
+101ff900|Test Your Mind
+101a4400|Toon Tanks
+101fec00|Toon Tanks
+101baa00|Totem Topple
+101d7400|Totem Topple
+101c6c00|Typoman
+101ce000|Typoman
+101d2c00|Charisô Ultra DX World Tour
+101d9e00|Charisô Ultra DX World Tour
+101b5f00|TABLETOP GALLERY
+101d8a00|Star Sky
+101d8c00|Blue Moon
+101d6c00|Star Sky
+10183400|U Host
+101e9700|U Host
+10175c00|One Piece: Unlimited World R
+101d2900|PIXEL SLIME U
+101f6b00|PIXEL SLIME U
+101a1c00|Ultratron
+101a1400|Ultratron
+1020fd00|Absolutely Unstoppable MineRun
+1020f500|Absolutely Unstoppable MineRun
+101f7900|Axiom Verge
+10200800|Axiom Verge
+1018f400|Angry Video Game Nerd Adventures
+101dbf00|Angry Video Game Nerd Adventures
+101e7900|SPLASHY DUCK
+101db800|PixelMaker
+101dca00|PixelMaker
+101f6800|Völgarr the Viking
+10215000|Völgarr the Viking
+101dc000|Vektor Wars
+101dc200|Vektor Wars
+101cfa00|Word Puzzles by POWGI
+101cf900|Word Puzzles by POWGI
+10208900|WordsUp! Academy
+1020d200|WordsUp! Academy
+1020cb00|Toon War
+1020cc00|WinKings
+1020dc00|WinKings
+101bd000|Word Logic by POWGI
+101c3900|Word Logic by POWGI
+10202500|Alice in Wonderland
+10203900|Alice in Wonderland
+101c8100|Wicked Monsters Blast!
+101c8b00|Wicked Monsters Blast!
+101c5500|Word Party
+101c4a00|Word Party
+101fce00|Word Logic by POWGI
+101ffa00|Word Logic by POWGI
+101c7e00|Whispering Willows
+101d4800|Whispering Willows
+1020a800|Use Your Words
+1020d600|Use Your Words
+1018d300|The Swapper
+1018c700|The Swapper
+1018c600|The Swapper
+101a4000|SteamWorld Dig
+101a3700|SteamWorld Dig
+10209e00|Sudoku Party
+10209d00|Sudoku Party
+10207700|Y.A.S.G
+10210500|Y.A.S.G
+1020c000|I C REDD
+1020c100|I C REDD
+1019ee00|Zombie Defense
+101b3200|Zombie Defense
+101a1800|Zombie Defense
+101f9c00|Ziggurat
+101f7800|Ziggurat
+101fe200|CUP CRITTERS
+1020ea00|CUP CRITTERS
+101fe300|CUP CRITTERS
+1020bb00|Scribble
+1020b800|Scribble
+1020c300|RADIANTFLUX: HYPERFRACTAL
+1020c400|RADIANTFLUX: HYPERFRACTAL
+10212f00|Revenant Saga
+10210200|Revenant Saga
+10211200|Revenant Saga
+10206600|Annihilation
+10214b00|Annihilation
+10207600|Space Hunted
+10210400|Space Hunted
+1019a600|AFL Live: Game of the Year Edition
+101a5d00|AFL Live: Game of the Year Edition
+10201b00|Star Fox
+10201a00|Star Fox
+10201c00|Star Fox
+10204200|Mr. Pumpkin Adventure
+10206b00|Mr. Pumpkin Adventure
+1018cf00|Adventures of Pip
+101e5600|Adventures of Pip
+101fb400|Shadow Archer
+10207b00|Shadow Archer
+10189100|Soul Axiom
+10188e00|Soul Axiom
+101ffb00|Brick Breaker
+10200a00|Brick Breaker
+1020ba00|Breakout Defense
+1020b900|Breakout Defense
+10206c00|NBA
+10208300|NBA
+1019c100|Spy Chameleon
+101a3800|Spy Chameleon
+101a9e00|Chompy Chomp Chomp Party
+101a9c00|Chompy Chomp Chomp Party
+101e2e00|Christmas Adventure of Rocket Penguin
+10181400|Christmas Adventure of Rocket Penguin
+101b0000|Candy Hoarder
+1020d400|Candy Hoarder
+10182f00|Midtown Crazy Race
+10189b00|Midtown Crazy Race
+10197200|Cosmophony
+10195c00|Cosmophony
+101d9100|Dragon Skills
+101e7500|Dragon Skills
+101dd000|Star Ghost
+101dbc00|Star Ghost
+101e3800|Dual Core
+101f7600|Dual Core
+101a3e00|Defense Dome
+101ec600|Defense Dome
+101b2f00|Nintendo Game Seminar 2014
+1018f600|Dinox
+1018a700|Dinox
+101a8200|Epic Dumpster Bear
+101c6000|Epic Dumpster Bear
+101e2c00|Bit Dungeon+
+10208700|Octocopter: Super Sub Squid Escape
+10208500|Octocopter: Super Sub Squid Escape
+101f9000|Citadale
+101f9a00|Citadale
+101ada00|Eba & Egg: A Hatch Trip
+10211800|Eba & Egg: A Hatch Trip
+101e8e00|Futuridium EP Deluxe
+101e8d00|Futuridium EP Deluxe
+1019ad00|Elliot Quest
+101dd500|Elliot Quest
+101bb800|Elliot Quest
+10211700|SPHERE SLICE
+10211b00|SPHERE SLICE
+10211500|FIFTEEN
+10211900|FIFTEEN
+101fa100|forma.8
+101cbc00|forma.8
+10210b00|Jolt Family Robot Racer
+10210a00|Jolt Family Robot Racer
+101b0100|Funk of Titans
+101b4e00|Funk of Titans
+101e9300|Gear Gauntlet
+101e9400|Gear Gauntlet
+101ffc00|Ghost Blade HD
+1020b600|Ghost Blade HD
+10200100|Grand Prix Rock 'N Racing
+1020e900|Grand Prix Rock 'N Racing
+10201f00|Grand Prix Rock 'N Racing
+10212d00|GALAXY BLASTER
+10212a00|GALAXY BLASTER
+101fb800|Hurry Up! Bird Hunter
+101fda00|Hurry Up! Bird Hunter
+101ade00|Space Hulk
+101b6000|Space Hulk
+10199e00|High Strangeness
+1019ab00|High Strangeness
+1019ed00|STARWHAL
+101d4700|STARWHAL
+10216400|Breakout Defense
+10216000|Breakout Defense
+1020e000|BRICK RACE
+1020e100|BRICK RACE
+10213600|SWAP BLOCKS
+10200e00|PANDA LOVE
+10200f00|PANDA LOVE
+1019ba00|Blok Drop X: Twisted Fusion
+10211600|NBA
+10211a00|NBA
+101a3b00|Life of Pixel
+101a4900|Life of Pixel
+101e0900|Lovely Planet
+101e0a00|Lovely Planet
+1019a700|Blok Drop X: Twisted Fusion
+101f9500|Mega Man Zero
+101ffd00|Mahjong
+10200900|Mahjong
+101aef00|Midnight
+101b3000|Nintendo Game Seminar 2014
+10183a00|99Moves
+101d3200|99Moves
+10191700|99Moves
+101f9200|Jackpot 777
+101f8400|Jackpot 777
+101cde00|Never Alone
+101ce300|Never Alone
+101ce800|Never Alone
+101ea900|Armored ACORNs: Action Squirrel Squad
+10212500|Armored ACORNs: Action Squirrel Squad
+10181c00|Zombie Brigade: No Brain No Gain
+10181b00|Zombie Brigade: No Brain No Gain
+101cc000|PONCHO
+101ca700|PONCHO
+101d7f00|6-Hand Video Poker
+101e1e00|PSIBO
+101f7d00|PSIBO
+101c7d00|Pumped BMX +
+101c7600|Pumped BMX +
+101b0200|PIXELJUNK MONSTERS
+101e1200|PIXELJUNK MONSTERS
+101e4800|Sudoku and Permudoku
+101e8900|Sudoku and Permudoku
+10182300|MadWorld
+10189f00|Shadow Puppeteer
+101e1b00|Shadow Puppeteer
+101a8600|Puzzle Monkeys
+101afc00|Puzzle Monkeys
+101f1400|Quest of Dungeons
+101f0b00|Quest of Dungeons
+1020d700|Pic-a-Pix Color
+1020d100|Pic-a-Pix Color
+101f1300|Armikrog
+10200300|Armikrog
+10200d00|MikroGame: Rotator
+10205500|MikroGame: Rotator
+101ccd00|The Rivers of Alice : Extended Version
+101d9200|The Rivers of Alice : Extended Version
+101d9500|STEEL RIVALS
+101f1600|STEEL RIVALS
+101e3000|REPLAY : VHS is not dead
+101e2d00|REPLAY : VHS is not dead
+101f9d00|The Girl and the Robot
+10214100|The Girl and the Robot
+10210800|The Girl and the Robot
+1019a800|Citadale - The Legends Trilogy
+10210300|Citadale - The Legends Trilogy
+101f4c00|Reptilian Rebellion
+101f5400|Reptilian Rebellion
+10183c00|Infinity Runner
+10184400|Infinity Runner
+101f2d00|Run Run and Die
+10205600|Run Run and Die
+101f6300|Run Run and Die
+101a3c00|The Binding of Isaac: Rebirth
+101de400|The Binding of Isaac: Rebirth
+101c9b00|The Binding of Isaac: Rebirth
+101f7300|Shantae: Risky's Revenge - Director's Cut
+101a1b00|Swords & Soldiers
+101ddd00|Swords & Soldiers
+101c6e00|Swords & Soldiers
+101bbc00|Astral Breakers
+101e9a00|Astral Breakers
+101c0b00|The Swindle
+101c1f00|The Swindle
+10184900|Slender: The Arrival
+101d8900|Slender: The Arrival
+101b2c00|Shutshimi
+101bf400|Shutshimi
+101ba900|Severed
+101ba000|Severed
+1018ec00|Soon Shine
+101a8700|Suspension Railroad Simulator
+101a4c00|Soon Shine
+101d5100|Soon Shine
+1018cb00|Lone Survivor: The Director's Cut
+101a5f00|Shantae and the Pirate's Curse
+101f7f00|Shantae and the Pirate's Curse
+101a9500|Shantae and the Pirate's Curse
+101ae300|Toto Temple Deluxe
+101c7f00|Toto Temple Deluxe
+101ffe00|Tetraminos
+10200b00|Tetraminos
+101fff00|Solitaire
+10200000|Solitaire
+101e7d00|TAP TAP ARCADE
+101e7c00|TAP TAP ARCADE
+101a4300|Beatbuddy
+101bc300|Beatbuddy
+1019b000|Tachyon Project
+1020c800|Tachyon Project
+1019b200|Tachyon Project
+101a7e00|Bit Dungeon+
+10212100|Bit Dungeon+
+10189e00|Trine Enchanted Edition
+10189c00|Trine Enchanted Edition
+10189400|The Fall
+101b2800|The Fall
+101e7f00|TOUCH SELECTIONS
+101e7e00|TOUCH SELECTIONS
+101cfb00|Brave Tank Hero
+101cf800|Brave Tank Hero
+1018af00|Teslapunk
+10209300|Teslapunk
+10200400|Teslapunk
+101f7c00|TAP TAP ARCADE
+101f8d00|TAP TAP ARCADE
+101f8800|Toby: The Secret Mine
+101fdb00|Toby: The Secret Mine
+101c7300|The Stonecutter
+10210700|The Stonecutter
+1018b000|Thomas Was Alone
+1018a900|Thomas Was Alone
+10189a00|TEMPLE OF YOG
+101e8500|TEMPLE OF YOG
+10202d00|360 Breakout
+10202e00|360 Breakout
+101bcd00|Underground
+10187100|Underground
+1020fe00|Double Breakout
+1020eb00|Double Breakout
+101abb00|COLOR BOMBS
+101e8800|COLOR BOMBS
+10205700|Double Breakout
+10205400|Double Breakout
+1020b100|Bridge Constructor Playground
+1020b000|Bridge Constructor Playground
+101dcd00|Star Fox
+101dcc00|Star Fox
+101dce00|Star Fox
+1020d900|Maze Break
+1020d500|Maze Break
+101b5e00|SPLASHY DUCK
+10202700|Rorrim
+10203600|Rorrim
+10207500|Koi DX
+10207300|Koi DX
+10212b00|BOX UP
+10212800|BOX UP
+101f3e00|Star Sky
+1020a100|Blue Moon
+101f2700|Star Sky
+101bc700|Blocky Bot
+101bb700|Blocky Bot
+101b3100|Nintendo Game Seminar 2014
+101f0300|Star Splash: Shattered Star
+1020df00|Star Splash: Shattered Star
+10201d00|Rock Zombie
+10202c00|Rock Zombie
+101f0200|Back to Bed
+1020e700|Back to Bed
+10202000|Back to Bed
+1020ce00|Mutant Alien Moles of the Dead
+1020fc00|Mutant Alien Moles of the Dead
+1020ec00|COLOR CUBES
+1020e200|COLOR CUBES
+10210e00|ORBIT
+10211100|ORBIT
+101a4f00|Cube Life: Pixel Action Heroes
+10212200|Cube Life: Pixel Action Heroes
+101a4e00|Cube Life: Pixel Action Heroes
+1020ff00|Double Breakout
+1020fb00|Double Breakout
+10172a00|Crunchyroll
+10172b00|Crunchyroll
+10161800|Pikmin
+10161700|Pikmin
+10161900|Pikmin
+1014ca00|Zelda
+10131b00|Wii
+10129600|Wii
+10131c00|Wii
+101b7400|Oboro Muramasa
+101b7800|Trauma Team
+101b7700|Trauma Team
+101b7d00|Lost in Shadow
+101b7c00|Lost in Shadow
+101b7e00|A Shadow's Tale
+1019cc00|Super Mario
+1019cb00|Super Mario
+1019cd00|Super Mario
+1019cf00|Donkey Kong
+1019ce00|Donkey Kong
+1019d000|Donkey Kong
+1019d200|Punch-Out!!
+1019d100|Punch-Out!!
+1019d300|Punch-Out!!
+1019d500|Kirby's Return to Dream Land
+1019d400|Wii
+1019d700|Kirby's Adventure
+1019d800|Xenoblade Chronicles
+1019da00|Xenoblade Chronicles
+1019dc00|Wii
+1019dd00|Metroid Prime
+1019de00|Metroid Prime
+1019e000|Metroid: Other M
+1019df00|Metroid: Other M
+1019e200|Metroid: Other M
+1019e300|Wii
+1019e400|Wii
+101b0600|Minna no Rhythm Tengoku
+101b0a00|Sin & Punishment
+101b0900|Sin & Punishment
+101b0f00|Sin & Punishment
+101b1000|Zelda
+101b1100|Zelda
+101b1300|Pandora's Tower
+101b1200|Pandora’s Tower: Until I Return to Your Side
+101b1400|Pandora's Tower
+101b1600|Zangeki no Reginleiv
+101b1700|Kirby's Epic Yarn
+101b1800|Kirby's Epic Yarn
+101b1a00|Super Mario
+101b1900|Super Mario
+101b1b00|Super Mario
+101b2300|Zero: Shinku no Chou
+101b2400|Wii
+101b2600|ExciteBots: Trick Racing
+101b2500|ExciteBots: Trick Racing
+101f0d00|Rayman
+101f0e00|Rayman
+101bd100|Super Mario
+101bd200|Super Mario
+101bd700|Wii
+101bd600|Wii
+101bd800|Wii
+101bda00|Zack & Wiki: Quest for Barbaros' Treasure
+101bd900|Zack & Wiki: Quest for Barbaros' Treasure
+101bdc00|Zack & Wiki: Quest for Barbaros' Treasure
+101be600|Super Mario
+101bde00|Super Mario
+101bdf00|Wario Land Shake
+101be100|Wario Land: The Shake Dimension
+101be200|Super Mario
+101bfe00|Super Mario
+101bfd00|Super Mario
+101c0000|Super Mario
+101ebe00|Pikmin
+101ebd00|Pikmin
+101ebf00|Pikmin
+101ec100|Pikmin
+101ec000|Pikmin
+101ec200|Pikmin
+101eca00|WarioWare: Smooth Moves
+101ec900|WarioWare: Smooth Moves
+101ecb00|WarioWare: Smooth Moves
+101ecd00|Resident Evil
+101ecc00|Resident Evil
+101ed200|Donkey Kong
+101ed100|Donkey Kong
+101ed300|Donkey Kong
+10135200|NBA
+10132a00|NBA
+10128700|Toki Tori
+1017ca00|Toki Tori
+10116500|Toki Tori
+10135000|Art of Balance
+1017cb00|Art of Balance
+10149400|Art of Balance
+10138500|NBA
+10148200|Ford Racing Off Road
+101dd300|Ford Racing Off Road
+10191800|Ford Racing Off Road
+10149300|Donkey Kong
+10148500|Abyss
+101c5700|Abyss
+1016d900|Abyss
+10149600|Wii
+10133800|Tank! Tank! Tank!
+1012f200|Tank! Tank! Tank!
+10128c00|Tank! Tank! Tank!
+10102900|Demaekan
+1014fd00|Cubemen 2
+10150200|Cubemen 2
+10152a00|Super Mario
+10150300|Super Mario
+10152b00|Super Mario
+10110100|Nano Assault Neo
+10136400|Nano Assault Neo
+10110700|Nano Assault Neo
+1014f000|TNT Racers - Nitro Machines Edition
+10142800|TNT Racers - Nitro Machines Edition
+10147f00|Spin the Bottle: Bumpie's Party
+10138700|Spin the Bottle: Bumpie's Party
+10139500|Rayman
+10138e00|Rayman
+10132500|Wii
+10116000|NBA
+10113800|NBA
+1014ef00|Knytt Underground
+1017b700|Knytt Underground
+1014d800|Knytt Underground
+10128a00|Q.U.B.E: Director's Cut
+1014d600|Q.U.B.E: Director's Cut
+10112200|Q.U.B.E: Director's Cut
+1016ef00|Angry Bunnies: Colossal Carrot Crusade
+10154900|Angry Bunnies: Colossal Carrot Crusade
+1017a800|Gaiabreaker
+10157d00|Gaiabreaker
+1017ab00|Gaiabreaker
+10156000|My Style Studio: Notebook
+10154a00|My Style Studio: Notebook
+1016df00|Batman: Arkham Origins Blackgate - Deluxe Edition
+1016d300|Batman: Arkham Origins Blackgate - Deluxe Edition
+1016fe00|Ballpoint Universe: Infinite
+1018ac00|Ballpoint Universe: Infinite
+1017a700|Rock Blast
+10131200|Wii
+1012d600|Wii
+10131600|Wii
+10140800|Baseball
+1011af00|BIT.TRIP Presents… Runner2: Future Legend of Rhythm Alien
+101dd600|BIT.TRIP Presents… Runner2: Future Legend of Rhythm Alien
+10136300|BIT.TRIP Presents… Runner2: Future Legend of Rhythm Alien
+1016e500|BLOK DROP U
+101fd300|BLOK DROP U
+10175700|BLOK DROP U
+1016ab00|Bombing Bastards
+1016a200|Bombing Bastards
+10156400|Rubik's Cube
+10154b00|Rubik's Cube
+10156500|The Mysterious Cities of Gold: Secret Paths
+10154d00|The Mysterious Cities of Gold: Secret Paths
+1017ac00|Chariot
+101b4400|Chariot
+10179900|Chariot
+10147400|Pure Chess
+10145a00|Pure Chess
+1011c000|Chasing Aurora
+10117700|Chasing Aurora
+1014cf00|Coaster Crazy Deluxe
+10145900|Coaster Crazy Deluxe
+10176500|Stealth Inc 2: A Game of Clones
+10173300|Stealth Inc 2: A Game of Clones
+1017b000|Roving Rogue
+10180e00|Roving Rogue
+1011c600|Cloudberry Kingdom
+1014f400|Cloudberry Kingdom
+10131a00|Cloudberry Kingdom
+10131e00|Pokemon
+10147700|Pokemon
+1016e700|99Seconds
+101c4800|99Seconds
+10182700|99Seconds
+10133700|CastleStorm
+10113a00|CastleStorm
+1016de00|Super Toy Cars
+101a2f00|Super Toy Cars
+1016d500|Super Toy Cars
+10177200|Citizens Of Earth
+10180b00|Citizens Of Earth
+1010fa00|The Cube
+10135600|The Cube
+1012b500|The Cube
+101eaf00|Color Symphony 2
+101eb700|Color Symphony 2
+1016ce00|ColorZ
+10162300|ColorZ
+1014bf00|Wii
+10216200|Fat Dragons
+10216700|Fat Dragons
+1014fb00|Q.U.B.E: Director's Cut
+1012c400|Dungeons & Dragons: Chronicles of Mystara
+1012bf00|Dungeons & Dragons: Chronicles of Mystara
+1014df00|Spot the differences
+1016b000|Spot the differences
+10149200|Spot the differences
+10110500|Puddle
+101a2700|Puddle
+1010fb00|Puddle
+10158300|Wooden Sen'SeY
+101a2500|Wooden Sen'SeY
+10152700|Wooden Sen'SeY
+10135100|Darts Up
+101d3100|Darts Up
+1018a200|Darts Up
+10179400|Ittle Dew
+10197700|Ittle Dew
+1016db00|Ittle Dew
+1015ed00|Wii
+10169500|My Exotic Farm
+10169000|My Exotic Farm
+10132800|Unepic
+10145800|Unepic
+10169600|Unepic
+10131100|Wii
+1012d500|Wii
+10131500|Wii
+10175500|Outer World 20th Anniversary Edition
+101ab100|Outer World 20th Anniversary Edition
+10173200|Outer World 20th Anniversary Edition
+10147300|Evofish
+10147600|Evofish
+10170400|XType+
+101a2e00|XType+
+1016e200|XType+
+10162500|NES Remix
+10162400|Famicom Remix
+10162600|NES Remix
+10179500|Plenty of Fishies
+101bc400|Plenty of Fishies
+10179600|Shiny The Firefly
+10180d00|Shiny The Firefly
+1012f000|FAST Racing NEO
+101e4100|FAST Racing NEO
+101d6000|FAST Racing NEO
+1017dc00|Frenchy Bird
+10182800|Frenchy Bird
+1016ff00|Flowerworks HD: Follie's Adventure
+1017ed00|Flowerworks HD: Follie's Adventure
+1015b100|Tengami
+101b6500|Tengami
+10155b00|Tengami
+10170200|Pier Solar and the Great Architects
+10187000|Pier Solar and the Great Architects
+10176800|Guacamelee! Super Turbo Championship Edition
+10179700|Guacamelee! Super Turbo Championship Edition
+1018a100|Teslagrad
+101bb400|Teslagrad
+10161b00|Teslagrad
+1018fb00|Alphadia Genesis
+10157c00|Alphadia Genesis
+1019c900|Alphadia Genesis
+101ec500|ACT IT OUT! A Game of Charades
+101eb600|ACT IT OUT! A Game of Charades
+1016e300|SWAP BLOCKS
+1014cb00|Giana Sisters: Twisted Dreams
+10175e00|Giana Sisters: Twisted Dreams
+1014c600|Giana Sisters: Twisted Dreams
+1016b100|Gravity Badgers
+1016e900|Gravity Badgers
+10177500|Nihilumbra
+101dfe00|Nihilumbra
+1016da00|Nihilumbra
+1014fe00|My Style Studio: Hair Salon
+10154c00|My Style Studio: Hair Salon
+1014c700|How to Survive
+10138a00|How to Survive
+1012d300|Wii
+1011b100|Mighty Switch Force! Hyper Drive Edition
+1015eb00|Mighty Switch Force! Hyper Drive Edition
+10128200|Mighty Switch Force! Hyper Drive Edition
+10157a00|Squids Odyssey
+10157800|Squids Odyssey
+1017af00|PING 1.5+
+101f6900|PING 1.5+
+1017b200|Turtle Tale
+1017e000|Turtle Tale
+10116700|KickBeat Special Edition
+10113b00|KickBeat Special Edition
+10172200|Color Zen Kids
+10174200|Color Zen Kids
+1012da00|Kung Fu Rabbit
+101a2600|Kung Fu Rabbit
+10117800|Kung Fu Rabbit
+101d9300|Shovel Knight
+10152300|Toki Tori
+10152400|Toki Tori
+1017c700|Swords & Soldiers
+101ce600|Swords & Soldiers
+1017c800|Swords & Soldiers
+10149500|Scram Kitty and his Buddy on Rails
+1014d100|Scram Kitty and his Buddy on Rails
+10131300|Wii
+1012d700|Wii
+10131700|Wii
+1011ba00|Uplay
+10148f00|Demaekan
+1011b700|Uplay
+1011b200|Little Inferno
+10176300|Little Inferno
+10128600|Little Inferno
+1019ae00|Family Tennis SP
+101a2c00|Family Tennis SP
+10131000|Wii
+1012d400|Wii
+10131400|Wii
+10133600|Monster Hunter G
+10111b00|Monster Hunter G
+1014fc00|Mighty Switch Force! 2
+1014f100|Mighty Switch Force! 2
+10175400|Paper Monsters Recut
+101a1300|Paper Monsters Recut
+10175a00|6180 the moon
+101f8f00|6180 the moon
+101d3300|6180 the moon
+10176b00|1001 Spikes
+101de500|1001 Spikes
+101ca000|1001 Spikes
+10175900|My Exotic Farm
+1014d000|My Farm
+1014c900|My Farm
+10146000|NES Remix
+10145f00|Famicom Remix
+10146100|NES Remix
+1016dd00|Mon Premier Karaoké
+1016fb00|Mon Premier Karaoké
+1016ac00|Armillo
+1017b900|Armillo
+1016c700|Armillo
+1016e000|Stick it to the Man
+1018c800|Stick it to the Man
+1016d400|Stick it to the Man
+10170100|Monkey Pirates
+10162200|Monkey Pirates
+1016b200|Master Reboot
+101e4200|Master Reboot
+1016e800|Master Reboot
+10158400|My First Songs
+1016a300|My First Songs
+1016fc00|Aqua Moto Racing Utopia
+10172900|Aqua Moto Racing Utopia
+1017a900|SUPER ROBO MOUSE
+101fd200|SUPER ROBO MOUSE
+1019b900|SUPER ROBO MOUSE
+10218500|Petite Zombies
+10218300|Petite Zombies
+10216600|RTO 2
+10216500|RTO 2
+10216900|Masked Forces
+10216800|Masked Forces
+101eb500|Dreamals
+101eab00|Dreamals
+10217400|Rainbow Snake
+10217200|Rainbow Snake
+10216100|Spellcaster's Assistant
+10215f00|Spellcaster's Assistant
+10213700|Schlag den Star - Das Spiel
+10182600|Ice Cream Surfer
+1017e100|Ice Cream Surfer
+1017eb00|SDK Paint
+101aeb00|SDK Paint
+10216d00|Shadow Archer
+10216e00|Shadow Archer
+101ed000|Spheroids
+101eb300|The Beggar's Ride
+101ec700|The Beggar's Ride
+1017e700|3Souls
+1017e300|3Souls
+10213100|Toon War
+10213c00|Super Ultra Star Shooter
+10213500|Super Ultra Star Shooter
+101ecf00|Buddy & Me: Dream Edition
+101f4a00|Buddy & Me: Dream Edition
+1017e400|Chasing Dead
+101e5e00|Chasing Dead
+1012df00|Wrecking Crew
+1012de00|Wrecking Crew
+1012e000|Wrecking Crew
+1012e300|Galaga
+1012e200|Galaga
+1012e400|Galaga
+1012e700|Mega Man
+1012e600|RockMan
+1012e800|Mega Man
+1012f400|Metroid
+1012f300|Metroid
+1012f500|Metroid
+1012f700|Super Mario
+1012f600|Super Mario
+1012f800|Super Mario
+10106d00|Super Mario
+10106c00|Super Mario
+10106e00|Super Mario
+10107000|Super Mario
+10106f00|Super Mario
+10107100|Super Mario
+10107500|Ice Climber
+10107200|Ice Climber
+10107600|Ice Climber
+10107800|Kirby's Adventure
+10107700|Kirby's Adventure
+10107a00|Kirby's Adventure
+10107c00|Super Mario
+10107b00|Super Mario
+10107d00|Super Mario
+10107f00|Donkey Kong
+10107e00|Donkey Kong
+10108000|Donkey Kong
+10108200|Excitebike
+10108100|Excitebike
+10108300|Excitebike
+10108500|Super Mario
+10108400|Super Mario
+10108600|Super Mario
+10108800|Balloon Fight
+10108700|Balloon Fight
+10108900|Balloon Fight
+10108b00|Punch-Out!!
+10108a00|Punch-Out!!
+10108c00|Punch-Out!!
+10113f00|Xevious
+10113e00|Xevious
+10114000|Xevious
+10114300|Super Mario
+10114500|Mega Man
+10114400|Shockman
+10114600|Mega Man
+10114800|Mega Man
+10114700|RockMan
+10114900|Mega Man Zero
+10119200|Pac-Land
+10119100|Pac-Land
+10119300|Pac-Land
+1011a900|Spelunker
+10119400|Spelunker
+1011aa00|Spelunker
+1011ae00|Gladius
+10119500|Gladius
+10119700|Gladius
+10119800|TwinBee
+1011ac00|Lode Runner
+1011ab00|Lode Runner
+1011ad00|Lode Runner
+10129800|Donkey Kong
+10129700|Donkey Kong
+10129900|Donkey Kong
+10129c00|Solomon's Key
+10129d00|Solomon's Key
+10129f00|Mega Man
+10129e00|RockMan
+1012a000|Mega Man
+10151100|Super Dodgeball
+10151000|Super Dodgeball
+10151200|Super Dodgeball
+10151400|Castlevania
+10151300|Castlevania
+10151500|Castlevania
+10152e00|NES Open Tournament Golf
+10152c00|Super Mario
+10152f00|NES Open Tournament Golf
+10153100|Super Mario
+10153000|Super Mario
+10153200|Super Mario
+10153400|Renegade
+10153300|Renegade
+10153500|Renegade
+10153700|Double Dragon
+10153600|Double Dragon
+10153800|Double Dragon
+10153b00|Castlevania
+10153900|Castlevania
+10153c00|Castlevania
+1012fa00|Zelda
+1012f900|Zelda
+1012fb00|Zelda
+1012fd00|Kid Icarus
+1012fc00|Kid Icarus
+1012fe00|Kid Icarus
+10130000|Zelda
+1012ff00|Zelda
+10130100|Zelda
+10133100|EarthBound Beginnings
+10133000|Mother
+10133200|EarthBound Beginnings
+10134100|Adventure Island
+10134000|Adventure Island
+10134200|Adventure Island
+10134400|Ghosts 'N Goblins
+10134500|Ghosts 'N Goblins
+10139800|The Tower of Druga
+10149900|Baseball
+10149800|Baseball
+10149a00|Baseball
+10149c00|Tennis
+10149b00|Tennis
+10149d00|Tennis
+10149f00|NBA
+10149e00|NBA
+1014a000|NBA
+1014a200|Urban Champion
+1014a100|Urban Champion
+1014a300|Urban Champion
+1014a500|Clu Clu Land
+1014a400|Clu Clu Land
+1014a600|Clu Clu Land
+1014a800|Donkey Kong
+1014a700|Donkey Kong
+1014a900|Donkey Kong
+1014ab00|NES Open Tournament Golf
+1014ad00|Final Fantasy
+10150500|Ice Hockey
+10150400|Ice Hockey
+10150600|Ice Hockey
+10150800|Wario's Woods
+10150700|Wario's Woods
+10150900|Wario's Woods
+10150d00|Final Fantasy
+10150e00|Final Fantasy
+1016ba00|Baseball
+1016bc00|Yie Ar Kung-Fu
+1016bd00|Antarctic Adventure
+1016bf00|Mega Man
+1016be00|RockMan
+1016c000|Mega Man
+1016c200|Gargoyle's Quest II: The Demon Darkness
+1016c300|Gargoyle's Quest II: The Demon Darkness
+10170c00|Double Dragon II: The Revenge
+10170d00|Double Dragon II: The Revenge
+10170f00|Life Force
+10170e00|Salamander
+10171000|Life Force
+10158700|Ninja Gaiden
+10158800|Ninja Gaiden
+10158a00|Mighty Bomb Jack
+10158900|Mighty Bomb Jack
+10158b00|Mighty Bomb Jack
+10158c00|NBA
+10158e00|Super C
+10158f00|Super C
+1015f000|Volleyball
+1015ef00|Volleyball
+1015f100|Volleyball
+1015f400|Castlevania
+1015f300|Castlevania
+1015f500|Castlevania
+1015fc00|Flying Dragon: The Secret Scroll
+1015fd00|Flying Dragon: The Secret Scroll
+10160500|Soccer
+10160400|Soccer
+10160600|Soccer
+10160800|Mach Rider
+10160700|Mach Rider
+10160900|Mach Rider
+10160c00|Mega Man
+10160b00|RockMan
+10160d00|Mega Man
+10160f00|Wagyan Land
+10161200|Kung-Fu Heroes
+10161100|Super Chinese
+10161300|Kung-Fu Heroes
+1016b400|Adventures of Pip
+1016b300|Adventures of Pip
+1016b500|Adventures of Pip
+1016b800|Pac-Land
+1016b700|Pac-Land
+1016b900|Pac-Land
+10186300|The Adventures of Bayou Billy
+10186400|The Adventures of Bayou Billy
+1018b300|NBA
+1018b900|Mappy-Land
+1018b800|Mappy-Land
+1018ba00|Mappy-Land
+10171200|Ufouria: The Saga
+10171300|Ufouria: The Saga
+10174400|Donkey Kong
+10174300|Donkey Kong
+10174500|Donkey Kong
+10174700|Dig Dug
+10174600|Dig Dug
+10174800|Dig Dug
+10177b00|Mighty Final Fight
+10177a00|Mighty Final Fight
+10177c00|Mighty Final Fight
+10177e00|Street Fighter
+10177d00|Street Fighter
+10177f00|Street Fighter
+1017ee00|Devil World
+1017ef00|Devil World
+1017f200|NBA
+1017f500|Crash 'n the Boys Street Challenge
+1017f600|Crash 'n the Boys Street Challenge
+1017f700|Shadow of the Ninja
+1017f800|Shadow of the Ninja
+1017f900|S.C.A.T.
+1017fa00|S.C.A.T.
+10186000|SkyKid
+10185f00|SkyKid
+101b5a00|StarTropics
+101b5b00|StarTropics
+101b5c00|Zoda's Revenge: Star Tropics II
+101b5d00|Zoda's Revenge: Star Tropics II
+101c2200|Ninja Gaiden
+101c2300|Ninja Gaiden
+101c2400|Ninja Gaiden
+101c2500|Ninja Gaiden
+101c2600|Tecmo Bowl
+101c2700|Tecmo Bowl
+101c2800|Double Dragon III: The Sacred Stones
+101c2900|Double Dragon III: The Sacred Stones
+1018bd00|Blaster Master
+1018be00|Blaster Master
+10190800|Lode Runner
+10190a00|Wagyan Land
+10192500|Duck Hunt
+10192400|Duck Hunt
+10192600|Duck Hunt
+10196500|NBA
+1019fa00|Little Ninja Brothers
+1019f900|Little Ninja Brothers
+1019fb00|Little Ninja Brothers
+1019fd00|Flying Warriors
+1019fc00|Flying Warriors
+101a0200|Flying Warriors
+101a7200|Wild Guns
+101a7300|Wild Guns
+101a7600|Baseball
+101a7400|Baseball
+101a7700|Dig Dug
+101a7a00|Dig Dug
+101b5900|Excitebike
+101b5700|Excitebike
+101b5500|Hogan's Alley
+101b5600|Hogan's Alley
+1012ec00|Shin Megami Tensei
+1012ee00|Contra III: The Alien Wars
+1012ed00|Contra Spirits
+1012ef00|Contra III: The Alien Wars
+10130400|Pilotwings
+10130300|Pilotwings
+10130500|Pilotwings
+10130700|Final Fight
+10130600|Final Fight
+10130800|Final Fight
+10130a00|Castlevania
+10130900|Castlevania
+10130b00|Castlevania
+10108f00|Super Mario
+10108e00|Super Mario
+10109000|Super Mario
+10109200|Super Mario
+10109100|Super Mario
+10109300|Super Mario
+10109500|Donkey Kong
+10109400|Donkey Kong
+10109600|Donkey Kong
+10109800|Zelda
+10109700|Zelda
+10109b00|Zelda
+10109d00|Kirby Super Star
+10109c00|Kirby Super Star
+10109e00|Kirby Super Star
+1010a300|Donkey Kong
+1010a100|Donkey Kong
+1010a000|Donkey Kong
+1010a200|Donkey Kong
+1010a600|Super Metroid
+1010a500|Super Metroid
+1010a700|Super Metroid
+1010a900|Super Mario
+1010a800|Super Mario
+1010aa00|Super Mario
+10114c00|The Legend of the Mystical Ninja
+10114b00|NBA
+10114e00|The Legend of the Mystical Ninja
+10115000|Street Fighter
+10114f00|Street Fighter
+10115100|Street Fighter
+10115300|Kirby's Dream Land 3
+10115200|Kirby's Dream Land 3
+10115400|Kirby's Dream Land 3
+10115a00|Super Mario
+10115b00|Super Mario
+10119a00|F-ZERO
+10119900|F-ZERO
+10119b00|F-ZERO
+10119d00|Kirby's Dream Course
+10119c00|Kirby's Dream Course
+10119e00|Kirby's Dream Course
+1011a000|Super Ghouls'n Ghosts
+10119f00|Super Ghouls'n Ghosts
+1011a100|Super Ghouls'n Ghosts
+1011a400|Street Fighter
+1011a300|Street Fighter
+1011a600|Street Fighter
+1012a300|NBA
+1012a600|Street Fighter
+1012a500|Street Fighter
+1012ad00|Street Fighter
+10151600|Romancing Saga
+10153e00|Romancing Saga
+10153f00|Final Fantasy
+10154000|Final Fantasy
+10159100|Super Punch Out
+10159000|Super Punch Out
+10159200|Super Punch Out
+10159300|Romancing Saga
+10130d00|Mega Man
+10130c00|RockMan
+10130e00|Mega Man
+10133400|EarthBound
+10133500|EarthBound
+10134700|Romance of the Three Kingdoms IV Wall of Fire
+10136000|Romance of the Three Kingdoms IV Wall of Fire
+10134b00|BREATH OF FIRE
+10134a00|BREATH OF FIRE
+10134c00|BREATH OF FIRE
+10135c00|Super Famicom Wars
+10137400|Vegas Stakes
+10137500|Vegas Stakes
+10137600|Harvest Moon
+10137800|Harvest Moon
+10137a00|Final Fight
+10138000|Final Fight
+10137b00|Final Fight
+10140e00|Cybernator
+10140f00|Cybernator
+10141200|Uncharted Waters: New Horizons
+10141300|Uncharted Waters: New Horizons
+10141400|Shin Megami Tensei
+10141500|Shin Megami Tensei
+10141700|Mega Man
+10141600|RockMan
+10141800|Mega Man
+10141a00|Final Fight
+10141900|Final Fight
+10141b00|Final Fight
+10141d00|Brawl Brothers
+10141c00|Rushing Beat
+10141e00|Brawl Brothers
+10143c00|Final Fantasy
+1014b000|Final Fantasy
+10186c00|Pac-Attack
+10186d00|Pac-Attack
+10190c00|Super Aoki Ōkami to Shiroki Mejika: Genchou Hishi
+10159500|Pop'n Twinbee
+10159600|Pop'n Twinbee
+10160000|Castlevania
+1015ff00|Castlevania
+10160100|Castlevania
+10161400|TwinBee Rainbow Bell Adventure
+10161500|TwinBee Rainbow Bell Adventure
+1016c500|Street Fighter
+1016c400|Street Fighter
+1016c600|Street Fighter
+10171700|Super Chinese
+10171c00|Nobunaga's Ambition
+10171e00|Nobunaga's Ambition
+10174c00|Heisei Era: New Onigashima Part 1
+10174e00|Mega Man
+10174d00|RockMan
+10174f00|Mega Man
+10175200|Mega Man
+10175100|RockMan
+10175300|Mega Man
+10178000|Heisei Era: New Onigashima Part 1
+10178300|Wild Guns
+10178400|Wild Guns
+10178600|Natsume Championship Wrestling
+10178700|Natsume Championship Wrestling
+10178900|BREATH OF FIRE
+10178a00|BREATH OF FIRE
+10178c00|Demon's Crest
+10178d00|Demon's Crest
+1017fc00|Donkey Kong
+1017fb00|Donkey Kong
+1017fd00|Donkey Kong
+10186600|AXELAY
+10186500|AXELAY
+10186700|AXELAY
+10191200|SUPER E.D.F.EARTH DEFENSE FORCE
+10191100|SUPER E.D.F.EARTH DEFENSE FORCE
+10191300|Rushing Beat
+101c2a00|Pac-Man
+101c2b00|Pac-Man
+101fea00|Harvest Moon
+10199200|Donkey Kong
+10199100|Donkey Kong
+10199300|Donkey Kong
+10199500|Super Mario
+10199400|Super Mario
+10199700|Super Mario
+10199600|Super Mario
+10199800|Super Mario
+10199b00|Zelda
+10199a00|Zelda
+10199c00|Zelda
+101a1000|Super Mario
+101a5900|Super Mario
+101a5800|Super Mario
+101a5b00|1080º Snowboarding
+101a5a00|1080º Snowboarding
+101ac400|Star Fox
+101ac600|Wave Race 64
+101ac500|Wave Race 64
+101b4600|Super Mario
+101b4500|Super Mario
+101b4800|Sin & Punishment
+101b4700|Sin & Punishment
+101baf00|Zelda
+101bae00|Zelda
+101bb000|Zelda
+101bb200|Yoshi's Story
+101bb100|Yoshi's Story
+101c5d00|Super Mario
+101c5c00|Super Mario
+101c5e00|Custom Robo
+101da800|Pokemon
+101da700|Pokemon
+101da900|Pokemon
+101e6500|Excitebike
+101e6400|Excitebike
+101ebb00|F-ZERO
+101fe800|Bomberman
+101fe700|Bomberman
+10173e00|Super Mario
+10174000|NBA
+10174100|Super Mario
+10176100|Castlevania
+10176000|Castlevania
+10176200|Castlevania
+10176d00|Golden Sun: The Lost Age
+10176c00|Golden Sun: The Lost Age
+10176e00|Golden Sun: The Lost Age
+1017a000|Namco
+1017a100|Pac-Man
+1017ba00|Namco
+1017a200|Kuru Kuru Kururin
+1017bb00|Kuru Kuru Kururin
+1017bc00|Kuru Kuru Kururin
+10180100|Mega Man: Battle Chip Challenge
+1017a400|Mega Man: Battle Chip Challenge
+1017a300|Mega Man: Battle Chip Challenge
+10156700|F-Zero: Maximum Velocity
+10156800|F-Zero: Maximum Velocity
+10156a00|Super Mario
+10156900|Super Mario
+10156b00|Super Mario
+10156e00|WarioWare, Inc.: Mega Microgame$
+10156f00|WarioWare, Inc.: Mega Microgame$
+10157100|Metroid Fusion
+10157000|Metroid Fusion
+10157200|Metroid Fusion
+10157400|Super Mario
+10157300|Super Mario
+10157500|Super Mario
+1015d800|Golden Sun
+1015d700|Golden Sun
+1015d900|Golden Sun
+1015db00|Donkey Kong
+1015da00|Donkey Kong
+1015dc00|Donkey Kong
+1015de00|Kirby and the Amazing Mirror
+1015dd00|Kirby and the Amazing Mirror
+1015df00|Kirby and the Amazing Mirror
+1015e400|Zelda
+1015e300|Zelda
+1015e500|Zelda
+1015e100|Advance Wars
+1015e200|Advance Wars
+1016cf00|Mr. Driller 2
+10169700|Mr. Driller 2
+1016d000|Mr. Driller 2
+1016d100|KLONOA: Empire of Dreams
+1016d200|KLONOA: Empire of Dreams
+10169a00|Super Mario
+10169900|Super Mario
+10169b00|Super Mario
+10169d00|Super Mario
+10169c00|Super Mario
+10169e00|Super Mario
+1016a000|Wario Land 4
+10169f00|Super Mario
+1016a100|Wario Land 4
+1016f200|Castlevania
+10170900|Castlevania
+1016f400|Kirby: Nightmare in Dream Land
+1016f300|Kirby: Nightmare in Dream Land
+10172c00|Kirby: Nightmare in Dream Land
+1016f600|Super Mario
+1016f500|Super Mario
+10172d00|Super Mario
+1016f800|Super Mario
+1016f700|Super Mario
+10172e00|Super Mario
+1016fa00|Metroid: Zero Mission
+1016f900|Metroid: Zero Mission
+10172f00|Metroid: Zero Mission
+10173600|Super Mario
+10173500|Super Mario
+10173700|Super Mario
+10173900|Pac-Man
+10173800|Pac-Man
+10173f00|Pac-Man
+10173b00|Fire Emblem
+10173d00|Fire Emblem
+10193100|Final Fight
+10194600|Final Fight
+10193200|Final Fight
+10197000|Gyakuten Saiban
+10197f00|Medabots: Rokusho
+10198000|Medarot G - Kabuto Version
+10197e00|Medabots: Rokusho
+10198200|Medabots: Metabee
+10198300|Medarot G - Kabuto Version
+10198100|Medabots: Metabee
+10198400|Super Mario
+10198600|Sonic
+1019bd00|Street Fighter
+1019be00|Street Fighter
+1019bc00|Street Fighter
+1017ff00|Mega Man Battle Network
+1017a500|Mega Man Battle Network
+10180000|Mega Man Battle Network
+1017cf00|Fire Emblem: The Sacred Stones
+1017ce00|Fire Emblem: Souen no Kiseki
+1017d000|Fire Emblem: The Sacred Stones
+1017d600|DK: King of Swing
+1017d700|DK: King of Swing
+1017d300|Super Mario
+1017d500|Super Mario
+1017d200|Super Mario
+10180300|Mega Man Zero
+10180400|RockMan
+10180200|Mega Man Zero
+10181100|Super Mario
+10181000|Super Mario
+10181200|Super Mario
+10182a00|F-Zero: GP Legend
+10182900|F-Zero: GP Legend
+10182b00|F-Zero: GP Legend
+10183600|NBA
+10183500|NBA
+10183700|NBA
+10183f00|Castlevania
+10183e00|Castlevania
+10184000|Castlevania
+10184300|KLONOA 2: Dream Champ Tournament
+10184200|KLONOA 2: Dream Champ Tournament
+10188000|Wii
+10188200|Mega Man Battle Network
+10188100|RockMan
+10188300|Mega Man Battle Network
+10188500|Mega Man Battle Network
+10188400|RockMan
+10188600|Mega Man Battle Network
+10188800|Mega Man Battle Network 4 Blue Moon
+10188700|RockMan
+10188900|Mega Man Battle Network 4 Blue Moon
+1018e400|Super Ghouls'n Ghosts
+1018e500|Super Ghouls'n Ghosts
+1018e700|Mega Man & Bass
+1018e600|Mega Man & Bass
+1018e800|Mega Man & Bass
+1018ea00|Mega Man Zero
+1018e900|RockMan
+1018eb00|Mega Man Zero
+1018ff00|Harvest Moon
+10190000|Harvest Moon
+10192800|Mega Man Battle Network 4 Blue Moon
+10192700|RockMan
+10192900|Mega Man Battle Network 4 Blue Moon
+10192b00|Mega Man Battle Network 4 Blue Moon
+10192a00|RockMan
+10192c00|Mega Man Battle Network 4 Blue Moon
+10192e00|Mega Man Zero
+10192d00|RockMan
+10192f00|Mega Man Zero
+101bbb00|Shining Soul
+101c0200|Mega Man Battle Network 6: Cybeast Falzar
+101c0300|Mega Man Battle Network 6: Cybeast Falzar
+101c0100|Mega Man Battle Network 6: Cybeast Falzar
+101c0500|Mega Man Battle Network 6: Cybeast Falzar
+101c0600|Mega Man Battle Network 6: Cybeast Falzar
+101c0400|Mega Man Battle Network 6: Cybeast Falzar
+101c3a00|RockMan
+101c3b00|Gyakuten Saiban
+101c3e00|Densetsu no Stafy
+101c3f00|Mother
+1019f000|Mega Man Zero
+1019f100|RockMan
+1019ef00|Mega Man Zero
+1019f300|Mega Man Battle Network 5: Team Protoman
+1019f500|Mega Man Battle Network 5: Team Protoman
+1019f200|Mega Man Battle Network 5: Team Protoman
+1019f700|Mega Man Battle Network 5: Team Protoman
+1019f800|Mega Man Battle Network 5: Team Protoman
+1019f600|Mega Man Battle Network 5: Team Protoman
+101a3100|Advance Wars 2: Black Hole Rising
+101a3000|Advance Wars 2: Black Hole Rising
+101a3200|Densetsu no Stafy
+101a9300|Onimusha Tactics
+101a9400|Onimusha Tactics
+101a9200|Onimusha Tactics
+101ad000|Medabots: Rokusho
+101ad100|Medarot G - Kabuto Version
+101acf00|Medabots: Rokusho
+101ad300|Medabots: Metabee
+101ad400|Medarot G - Kabuto Version
+101ad200|Medabots: Metabee
+101ad500|Sonic
+101ae500|Contra Advance The Alien Wars Ex
+101ae600|Contra Spirits
+101ae400|Contra Advance The Alien Wars Ex
+101ae800|Konami Krazy Racers
+101ae700|Konami Krazy Racers
+101aea00|Gyakuten Saiban
+101b9100|Shining Soul
+101b9d00|Polarium Advance
+101b9c00|Polarium Advance
+101bba00|Densetsu no Stafy
+101cb000|Drill Dozer
+101caf00|Drill Dozer
+101cb200|Game & Watch Gallery 4
+101cbb00|Game & Watch Gallery 4
+101d0c00|Pokemon
+101d0b00|Pokemon
+101d0a00|Pokemon
+101d2600|Final Fantasy
+101d5900|Rayman
+101d5800|Rayman
+101d5b00|Rayman
+101d5a00|Rayman
+101d5c00|Final Fantasy
+101d5d00|Final Fantasy
+101d5e00|Final Fantasy
+101e0700|Final Fantasy
+101d9900|Final Fantasy
+101e0600|Final Fantasy
+101da200|Super Mario
+101da100|Super Mario
+101da300|Super Mario
+101da500|Advance Wars: Dual Strike
+101da400|Advance Wars: Dual Strike
+101da600|Advance Wars: Dual Strike
+101e0d00|Pokemon
+101e0c00|Pokemon
+101e0e00|Pokemon
+101e1000|Pokemon
+101e0f00|Pokemon
+101e1100|Pokemon
+101e6d00|Picross 3D
+101e6e00|Picross 3D
+101e7000|Pokemon
+101e6f00|Pokemon
+101e7100|Pokemon
+10179b00|Brain Age: Train Your Brain in Minutes a Day!
+10179d00|Brain Age: Train Your Brain in Minutes a Day!
+10179e00|Yoshi Touch & Go
+10179f00|Yoshi Touch & Go
+10195700|Super Mario
+10195800|Super Mario
+10195a00|Super Mario
+10195900|Super Mario
+10195b00|Super Mario
+10198900|Yoshi's Island DS
+10198800|Yoshi's Island DS
+10198a00|Yoshi's Island DS
+10198c00|Big Brain Academy
+10198b00|Wii
+10198d00|Big Brain Academy
+101a1f00|WarioWare: Touched!
+101a1e00|Sawaru Made in Wario
+101a2000|WarioWare: Touched!
+101a2200|Super Mario
+101a2100|Super Mario
+101a2300|Super Mario
+101a5300|DK Jungle Climber
+101a5200|Donkey Kong
+101a5400|DK Jungle Climber
+101a5700|Kirby Mass Attack
+101abe00|Wario: Master of Disguise
+101ac000|Wario: Master of Disguise
+101ac100|Star Fox
+101ac300|Star Fox
+101b3800|Fire Emblem: Shadow Dragon
+101b3700|Fire Emblem: Shadow Dragon
+101b3900|Fire Emblem: Shadow Dragon
+101b3b00|Metroid Prime
+101b3a00|Metroid Prime
+101b3c00|Metroid Prime
+101b8800|Kirby: Power Paintbrush
+101b8b00|Kirby: Power Paintbrush
+101b8c00|Zelda
+101b8d00|Zelda
+101c3400|Super Mario
+101c3300|Super Mario
+101c3600|Super Mario
+101c3700|Zelda
+101c3800|Zelda
+101c8400|Donkey Kong
+101c8500|Donkey Kong
+101c8700|Kirby Mass Attack
+101c8600|Kirby Mass Attack
+101c8800|Kirby Mass Attack
+101cc300|Pokemon
+101cc200|Pokemon
+101cc400|Pokemon
+101cc700|Pokemon
+101cc500|Pokemon
+101cc800|Pokemon
+101d2000|Animal Crossing: City Folk
+101d1f00|Animal Crossing: City Folk
+101d2100|Animal Crossing: City Folk
+101d2300|Super Mario
+101d2200|Super Mario
+101d2400|Super Mario
+10167500|MOTOROADER
+1015cd00|MOTOROADER
+10167600|MOTOROADER
+10167700|Dungeon Explorer
+1015ce00|Dungeon Explorer
+10167800|Dungeon Explorer
+10167900|World Sports Competition
+1015cf00|Water Sports
+10167a00|World Sports Competition
+10167b00|Lords Of Thunder
+1015d000|Lords Of Thunder
+10167c00|Lords Of Thunder
+10167d00|Devil's Crush
+1015d100|Devil's Crush
+10167e00|Devil's Crush
+10167f00|Bomberman
+1015d200|Bomberman
+10168000|Bomberman
+10164500|Gladius
+1015b500|Gladius
+10164600|Gladius
+10164700|M&M's Adventure
+1015b600|PC Genjin
+10164800|M&M's Adventure
+10164900|Adventure Island
+10164a00|Adventure Island
+10164b00|Super Star Soldier
+1015b800|Super Star Soldier
+10164c00|Super Star Soldier
+10164d00|Neutopia
+1015b900|Neutopia
+10164e00|Neutopia
+10164f00|AIR ZONK
+10165000|AIR ZONK
+10165100|Bonk's Revenge
+1015bb00|PC Genjin
+10165200|Bonk's Revenge
+10165300|BONK 3 Bonk's Big Adventure
+1015bc00|PC Genjin
+10165400|BONK 3 Bonk's Big Adventure
+10165500|China Warrior
+10165600|China Warrior
+10165700|Blazing Lazers
+1015be00|Blazing Lazers
+10165800|Blazing Lazers
+10165900|Alien Crush
+1015bf00|Alien Crush
+10165a00|Alien Crush
+10165b00|Neutopia
+1015c000|Neutopia
+10165c00|Neutopia
+10165d00|Shockman
+10165e00|Shockman
+10165f00|CHEW MAN FU
+1015c200|Baseball
+10166000|CHEW MAN FU
+10166100|Final Soldier
+1015c300|Final Soldier
+10166200|Final Soldier
+10166300|Victory Run
+1015c400|Victory Run
+10166400|Victory Run
+10166500|Double Dragon
+1015c500|Double Dragon
+10166600|Double Dragon
+10166700|Soldier Blade
+1015c600|Soldier Blade
+10166800|Soldier Blade
+10166900|Power Golf
+1015c700|Power Golf
+10166a00|Power Golf
+10166b00|Salamander
+1015c800|Salamander
+10166c00|Salamander
+10166d00|Bomberman
+1015c900|Bomberman
+10166e00|Bomberman
+10166f00|Detana Twin Bee
+10167000|Detana Twin Bee
+10167100|Digital Champ Battle Boxing
+1015cb00|Digital Champ Battle Boxing
+10167300|Break in
+1015cc00|Break in
+10167400|Break in
+10163200|XType+
+10170800|XType+
+1016a500|XType+
+10163400|Vigilante
+10163300|Vigilante
+10163500|Vigilante
+10163700|Legend of Hero Tonma
+10163600|Legend of Hero Tonma
+10163800|Legend of Hero Tonma
+10163a00|Ninja Spirit
+10163900|Ninja Spirit
+10163b00|Ninja Spirit
+10163d00|ImageFight
+10163c00|ImageFight
+10163e00|ImageFight
+10164000|ImageFight
+10163f00|ImageFight
+10164100|ImageFight
+10164300|Battle Chopper
+10164400|Battle Chopper
+101e2300|Wallaby!! Usagi no Kuni no Kangaroo Race
+101e2500|MOTOROADER
+101e2800|Chou Aniki
+101e2900|Chou Aniki
+10215a00|BATTLE LODE RUNNER
+1020a900|BATTLE LODE RUNNER
+10215900|BATTLE LODE RUNNER
+10215c00|Bomberman
+1020aa00|Bomberman
+10215b00|Bomberman
+10215e00|NECROMANCER
+1020ab00|NECROMANCER
+10215d00|NECROMANCER
+1020af00|MOTOROADER
+10168400|Yie Ar Kung-Fu
+10168700|Contra
+10168900|Gladius
+10168b00|Salamander
+10194800|TwinBee
+10194900|Antarctic Adventure
+10194b00|Yie Ar Kung-Fu
+10195300|Gladius
+10102d00|Hulu Plus
+10104c00|Hulu Plus