diff --git a/actors/error_model/geo_header.h b/actors/error_model/geo_header.h index 7cefd08fd..921a8f21f 100644 --- a/actors/error_model/geo_header.h +++ b/actors/error_model/geo_header.h @@ -1,7 +1,7 @@ extern const GeoLayout error_model_geo[]; -extern Lights1 error_model_f3d_material_lights; -extern Vtx error_model_error_bone_mesh_layer_1_vtx_0[336]; -extern Gfx error_model_error_bone_mesh_layer_1_tri_0[]; -extern Gfx mat_error_model_f3d_material[]; -extern Gfx error_model_error_bone_mesh_layer_1[]; -extern Gfx error_model_material_revert_render_settings[]; +extern const Lights1 error_model_f3d_material_lights; +extern const Vtx error_model_error_bone_mesh_layer_1_vtx_0[336]; +extern const Gfx error_model_error_bone_mesh_layer_1_tri_0[]; +extern const Gfx mat_error_model_f3d_material[]; +extern const Gfx error_model_error_bone_mesh_layer_1[]; +extern const Gfx error_model_material_revert_render_settings[]; diff --git a/autogen/autogen.sh b/autogen/autogen.sh index 6105d698c..3c9cad122 100755 --- a/autogen/autogen.sh +++ b/autogen/autogen.sh @@ -2,3 +2,4 @@ python3 ./autogen/convert_structs.py $1 python3 ./autogen/convert_functions.py $1 python3 ./autogen/convert_constants.py $1 +python3 ./autogen/extract_display_lists.py $1 diff --git a/autogen/extract_display_lists.py b/autogen/extract_display_lists.py new file mode 100644 index 000000000..ef02b524d --- /dev/null +++ b/autogen/extract_display_lists.py @@ -0,0 +1,122 @@ +import os +import re +import sys + + +DIRECTORIES = [ + "actors", + "bin", + "levels", +] + +FILE_EXTENSIONS = [ + ".c", + ".h", +] + +CUSTOM_DEFINED = [ + "dl_billboard_num3_0", + "dl_billboard_num3_1", + "dl_billboard_num3_2", + "dl_billboard_num3_3", + "dl_billboard_num3_4", + "dl_billboard_num3_5", + "dl_billboard_num3_6", + "dl_billboard_num3_7", + "dl_billboard_num3_8", + "dl_billboard_num3_9", + "dl_billboard_num3_0x", + "dl_billboard_num3_1x", + "dl_billboard_num3_2x", + "dl_billboard_num3_3x", + "dl_billboard_num3_4x", + "dl_billboard_num3_5x", + "dl_billboard_num3_6x", + "dl_billboard_num3_7x", + "dl_billboard_num3_8x", + "dl_billboard_num3_9x", + "dl_billboard_num3_x0", + "dl_billboard_num3_x1", + "dl_billboard_num3_x2", + "dl_billboard_num3_x3", + "dl_billboard_num3_x4", + "dl_billboard_num3_x5", + "dl_billboard_num3_x6", + "dl_billboard_num3_x7", + "dl_billboard_num3_x8", + "dl_billboard_num3_x9", + "dl_billboard_num3_0xx", + "dl_billboard_num3_1xx", + "dl_billboard_num3_2xx", + "dl_billboard_num3_3xx", + "dl_billboard_num3_4xx", + "dl_billboard_num3_5xx", + "dl_billboard_num3_6xx", + "dl_billboard_num3_7xx", + "dl_billboard_num3_8xx", + "dl_billboard_num3_9xx", + "dl_billboard_num3_x0x", + "dl_billboard_num3_x1x", + "dl_billboard_num3_x2x", + "dl_billboard_num3_x3x", + "dl_billboard_num3_x4x", + "dl_billboard_num3_x5x", + "dl_billboard_num3_x6x", + "dl_billboard_num3_x7x", + "dl_billboard_num3_x8x", + "dl_billboard_num3_x9x", + "dl_billboard_num3_xx0", + "dl_billboard_num3_xx1", + "dl_billboard_num3_xx2", + "dl_billboard_num3_xx3", + "dl_billboard_num3_xx4", + "dl_billboard_num3_xx5", + "dl_billboard_num3_xx6", + "dl_billboard_num3_xx7", + "dl_billboard_num3_xx8", + "dl_billboard_num3_xx9", +] + + +def main(): + verbose = len(sys.argv) > 1 and (sys.argv[1] == "-v" or sys.argv[1] == "--verbose") + pattern = re.compile("[\W]+") + display_lists = [] + for dir in DIRECTORIES: + for root, _, filenames in os.walk(dir): + for filename in filenames: + if filename[filename.rfind("."):] in FILE_EXTENSIONS: + display_lists_in_file = [] + filepath = os.path.join(root, filename) + lines = open(filepath, "r").readlines() + ignore = False + for line in lines: + if ("#ifdef VERSION_EU" in line or + "#ifdef VERSION_SH" in line or + "#ifdef VERSION_JP" in line): + ignore = True + if "#endif" in line: + ignore = False + if not ignore and "Gfx" in line and "static" not in line and "extern" not in line and "#" not in line: + identifiers = pattern.sub(" ", line).split() + index_gfx = identifiers.index("Gfx") + name = identifiers[index_gfx + 1] + if name not in display_lists: + display_lists.append(name) + if verbose: + display_lists_in_file.append(name) + if verbose and display_lists_in_file: + print("%s\n %s" % (filepath, "\n ".join(display_lists_in_file))) + + # Add these manually because they are defined by a macro + display_lists += CUSTOM_DEFINED + + with open("include/display_lists.inl", "w") as f: + for name in display_lists: + f.write("DISPLAY_LIST(%s)\n" % (name)) + + print("Total display lists: %d" % (len(display_lists))) + + +if __name__ == "__main__": + main() diff --git a/data/dynos.c.h b/data/dynos.c.h index c99db532e..f6739ef53 100644 --- a/data/dynos.c.h +++ b/data/dynos.c.h @@ -79,7 +79,8 @@ struct GraphNode* dynos_model_load_dl(u32* aId, enum ModelPool aModelPool, u8 aL struct GraphNode* dynos_model_store_geo(u32* aId, enum ModelPool aModelPool, void* aAsset, struct GraphNode* aGraphNode); struct GraphNode* dynos_model_get_geo(u32 aId); void dynos_model_overwrite_slot(u32 srcSlot, u32 dstSlot); -Gfx *dynos_model_duplicate_displaylist(Gfx* gfx); +Gfx *dynos_model_get_writable_display_list(Gfx* gfx); +void dynos_model_restore_vanilla_display_lists(); u32 dynos_model_get_id_from_asset(void* aAsset); u32 dynos_model_get_id_from_graph_node(struct GraphNode* aGraphNode); void dynos_model_clear_pool(enum ModelPool aModelPool); diff --git a/data/dynos.cpp.h b/data/dynos.cpp.h index 83f526ea8..64aed1e37 100644 --- a/data/dynos.cpp.h +++ b/data/dynos.cpp.h @@ -865,6 +865,8 @@ const void* DynOS_Builtin_Func_GetFromName(const char* aDataName); const void* DynOS_Builtin_Func_GetFromIndex(s32 aIndex); const char * DynOS_Builtin_Func_GetNameFromIndex(s64 aIndex); s32 DynOS_Builtin_Func_GetIndexFromData(const void* aData); +const Gfx * DynOS_Builtin_Gfx_GetFromName(const char *aDataName); +const char * DynOS_Builtin_Gfx_GetFromData(const Gfx *aData); // // Pack Manager @@ -972,7 +974,8 @@ struct GraphNode* DynOS_Model_GetGeo(u32 aId); u32 DynOS_Model_GetIdFromAsset(void* asset); u32 DynOS_Model_GetIdFromGraphNode(struct GraphNode* aNode); void DynOS_Model_OverwriteSlot(u32 srcSlot, u32 dstSlot); -Gfx *DynOS_Model_Duplicate_DisplayList(Gfx* aGfx); +Gfx *DynOS_Model_GetWritableDisplayList(Gfx* aGfx); +void DynOS_Model_RestoreVanillaDisplayLists(); void DynOS_Model_ClearPool(enum ModelPool aModelPool); // diff --git a/data/dynos_c.cpp b/data/dynos_c.cpp index bb21202dc..eca2ff90a 100644 --- a/data/dynos_c.cpp +++ b/data/dynos_c.cpp @@ -270,8 +270,12 @@ void dynos_model_overwrite_slot(u32 srcSlot, u32 dstSlot) { DynOS_Model_OverwriteSlot(srcSlot, dstSlot); } -Gfx *dynos_model_duplicate_displaylist(Gfx* gfx) { - return DynOS_Model_Duplicate_DisplayList(gfx); +Gfx *dynos_model_get_writable_display_list(Gfx* gfx) { + return DynOS_Model_GetWritableDisplayList(gfx); +} + +void dynos_model_restore_vanilla_display_lists() { + return DynOS_Model_RestoreVanillaDisplayLists(); } // -- other -- // diff --git a/data/dynos_mgr_builtin.cpp b/data/dynos_mgr_builtin.cpp index d222411a3..ae6d858ff 100644 --- a/data/dynos_mgr_builtin.cpp +++ b/data/dynos_mgr_builtin.cpp @@ -126,9 +126,9 @@ extern "C" { } \ return NULL; - /////////////////////// - // Function Pointers // -/////////////////////// + ///////////////////// + // Script Pointers // +///////////////////// static const void* sDynosBuiltinScriptPtrs[] = { define_builtin(level_main_scripts_entry), @@ -2060,3 +2060,21 @@ s32 DynOS_Builtin_Func_GetIndexFromData(const void* aData) { } return -1; } + + /////////////////// + // Display Lists // +/////////////////// + +static const void *sDynosBuiltinDisplayLists[] = { +#define DISPLAY_LIST(name) define_builtin(name), +#include "include/display_lists.inl" +#undef DISPLAY_LIST +}; + +const Gfx *DynOS_Builtin_Gfx_GetFromName(const char *aDataName) { + MGR_FIND_DATA(sDynosBuiltinDisplayLists, (const Gfx *)); +} + +const char *DynOS_Builtin_Gfx_GetFromData(const Gfx *aData) { + MGR_FIND_NAME(sDynosBuiltinDisplayLists); +} diff --git a/data/dynos_mgr_builtin_externs.h b/data/dynos_mgr_builtin_externs.h index db2296f39..b3485172b 100644 --- a/data/dynos_mgr_builtin_externs.h +++ b/data/dynos_mgr_builtin_externs.h @@ -1,4 +1,9 @@ #include "include/types.h" + + ////////////// + // Textures // +////////////// + extern ALIGNED8 const Texture amp_seg8_texture_08000F18[]; extern ALIGNED8 const Texture amp_seg8_texture_08001318[]; extern ALIGNED8 const Texture amp_seg8_texture_08001B18[]; @@ -2359,3 +2364,12 @@ extern ALIGNED8 const Texture cake_end_texture_44[]; extern ALIGNED8 const Texture cake_end_texture_45[]; extern ALIGNED8 const Texture cake_end_texture_46[]; extern ALIGNED8 const Texture cake_end_texture_47[]; + + /////////////////// + // Display lists // +/////////////////// + +#define DISPLAY_LIST(name) \ +extern const Gfx name[]; +#include "include/display_lists.inl" +#undef DISPLAY_LIST diff --git a/data/dynos_mgr_models.cpp b/data/dynos_mgr_models.cpp index 58779547e..bdaf29123 100644 --- a/data/dynos_mgr_models.cpp +++ b/data/dynos_mgr_models.cpp @@ -8,6 +8,7 @@ extern "C" { #include "model_ids.h" #include "pc/lua/utils/smlua_model_utils.h" #include "engine/display_list.h" +#include "dynos_mgr_builtin_externs.h" } enum ModelLoadType { @@ -21,7 +22,6 @@ struct ModelInfo { void* asset; struct GraphNode* graphNode; enum ModelPool modelPool; - std::vector *duplicates; }; static struct DynamicPool* sModelPools[MODEL_POOL_MAX] = { 0 }; @@ -30,9 +30,8 @@ static std::map sAssetMap[MODEL_POOL_MAX]; static std::map> sIdMap; static std::map sOverwriteMap; -// An array of display list and/or vertex buffer duplicates for the current model processed in process_geo_layout -static std::vector *sCurrModelDuplicates = nullptr; -static std::vector sScheduledFree[MODEL_POOL_MAX]; +// Maps read-only Gfx and Vtx buffers to their writable duplicates +static std::map> sRomToRamGfxVtxMap; static u32 find_empty_id(bool aIsPermanent) { u32 id = aIsPermanent ? 9999 : VANILLA_ID_END + 1; @@ -96,8 +95,6 @@ static struct GraphNode* DynOS_Model_LoadCommonInternal(u32* aId, enum ModelPool return found.graphNode; } - sCurrModelDuplicates = new std::vector(); - // load geo struct GraphNode* node = NULL; switch (mlt) { @@ -111,14 +108,7 @@ static struct GraphNode* DynOS_Model_LoadCommonInternal(u32* aId, enum ModelPool node = aGraphNode; break; } - if (!node) { - for (auto &duplicate : *sCurrModelDuplicates) { - free(duplicate); - } - delete sCurrModelDuplicates; - sCurrModelDuplicates = nullptr; - return NULL; - } + if (!node) { return NULL; } // figure out id if (!*aId) { *aId = find_empty_id(aModelPool == MODEL_POOL_PERMANENT); } @@ -129,9 +119,7 @@ static struct GraphNode* DynOS_Model_LoadCommonInternal(u32* aId, enum ModelPool .asset = aAsset, .graphNode = node, .modelPool = aModelPool, - .duplicates = sCurrModelDuplicates, }; - sCurrModelDuplicates = nullptr; // store in maps sIdMap[*aId].push_back(info); @@ -241,54 +229,93 @@ void DynOS_Model_OverwriteSlot(u32 srcSlot, u32 dstSlot) { sOverwriteMap[srcSlot] = dstSlot; } -// Display lists need to be duplicated so they can be modified by mods -// also to prevent trying to write to read only memory for vanilla display lists -Gfx *DynOS_Model_Duplicate_DisplayList(Gfx* aGfx) { - if (!aGfx) { return nullptr; } +static Vtx *DynOS_Model_DuplicateVtx(Vtx *aVtx, u32 vtxCount, bool shouldDuplicate) { + if (!aVtx) { return NULL; } - u32 size = gfx_get_size(aGfx) * sizeof(Gfx); - Gfx *gfxDuplicate = (Gfx *) malloc(size); - memcpy(gfxDuplicate, aGfx, size); + // Return duplicate if it already exists + auto it = sRomToRamGfxVtxMap.find((void *) aVtx); + if (it != sRomToRamGfxVtxMap.end()) { + return (Vtx *) it->second.first; + } + + // Duplicate vertex buffer and return the copy + if (shouldDuplicate) { + size_t vtxSize = vtxCount * sizeof(Vtx); + Vtx *vtxDuplicate = (Vtx *) malloc(vtxSize); + memcpy(vtxDuplicate, aVtx, vtxSize); + DynOS_Find_Pending_Scroll_Target(aVtx, vtxDuplicate); + sRomToRamGfxVtxMap[(void *) aVtx] = { (void *) vtxDuplicate, vtxSize }; + return vtxDuplicate; + } + + return aVtx; +} + +static Gfx *DynOS_Model_DuplicateDisplayList(Gfx *aGfx, bool shouldDuplicate) { + if (!aGfx) { return NULL; } + + // Return duplicate if it already exists + auto it = sRomToRamGfxVtxMap.find((void *) aGfx); + if (it != sRomToRamGfxVtxMap.end()) { + return (Gfx *) it->second.first; + } + + // Check if it's vanilla + if (!shouldDuplicate) { + shouldDuplicate = (DynOS_Builtin_Gfx_GetFromData(aGfx) != NULL); + } + + // Duplicate display list + Gfx *gfxDuplicate = aGfx; + u32 gfxLength = gfx_get_size(aGfx); + if (shouldDuplicate) { + size_t gfxSize = gfxLength * sizeof(Gfx); + gfxDuplicate = (Gfx *) malloc(gfxSize); + memcpy(gfxDuplicate, aGfx, gfxSize); + sRomToRamGfxVtxMap[(void *) aGfx] = { (void *) gfxDuplicate, gfxSize }; + } // Look for other display lists or vertices - for (u32 i = 0; i < size / sizeof(Gfx); i++) { + for (u32 i = 0; i < gfxLength; i++) { Gfx *cmd = gfxDuplicate + i; u32 op = cmd->words.w0 >> 24; // Duplicate referenced display lists if (op == G_DL) { - cmd->words.w1 = (uintptr_t) DynOS_Model_Duplicate_DisplayList((Gfx *) cmd->words.w1); + cmd->words.w1 = (uintptr_t) DynOS_Model_DuplicateDisplayList((Gfx *) cmd->words.w1, shouldDuplicate); if (C0(cmd, 16, 1) == G_DL_NOPUSH) { break; } // This is a branch (jump), end of display list } // Duplicate referenced vertices if (op == G_VTX) { - u32 size = C0(cmd, 12, 8) * sizeof(Vtx); - Vtx *vtxDuplicate = (Vtx *) malloc(size); - memcpy(vtxDuplicate, (Vtx *) cmd->words.w1, size); - DynOS_Find_Pending_Scroll_Target((Vtx *) cmd->words.w1, vtxDuplicate); - cmd->words.w1 = (uintptr_t) vtxDuplicate; - sCurrModelDuplicates->push_back(vtxDuplicate); + cmd->words.w1 = (uintptr_t) DynOS_Model_DuplicateVtx((Vtx *) cmd->words.w1, C0(cmd, 12, 8), shouldDuplicate); } } - sCurrModelDuplicates->push_back(gfxDuplicate); - return gfxDuplicate; } +// Get a writable display list so it can be modified by mods +// If it's a vanilla display list, duplicate it, so it can be restored later +Gfx *DynOS_Model_GetWritableDisplayList(Gfx *aGfx) { + return DynOS_Model_DuplicateDisplayList(aGfx, false); +} + +void DynOS_Model_RestoreVanillaDisplayLists() { + for (auto &it : sRomToRamGfxVtxMap) { + const void *original = it.first; + void *duplicate = it.second.first; + size_t size = it.second.second; + memcpy(duplicate, original, size); + } +} + void DynOS_Model_ClearPool(enum ModelPool aModelPool) { if (!sModelPools[aModelPool]) { return; } // schedule pool to be freed dynamic_pool_free_pool(sModelPools[aModelPool]); - // free scheduled duplicates - for (auto &duplicate : sScheduledFree[aModelPool]) { - free(duplicate); - } - sScheduledFree[aModelPool].clear(); - // clear overwrite if (aModelPool == MODEL_POOL_LEVEL) { sOverwriteMap.clear(); @@ -316,15 +343,6 @@ void DynOS_Model_ClearPool(enum ModelPool aModelPool) { info2++; } } - - // schedule duplicates to be freed - if (info.duplicates) { - for (auto &duplicate : *info.duplicates) { - sScheduledFree[aModelPool].push_back(duplicate); - } - delete info.duplicates; - info.duplicates = nullptr; - } } assetMap.clear(); diff --git a/include/display_lists.inl b/include/display_lists.inl new file mode 100644 index 000000000..1b3a39343 --- /dev/null +++ b/include/display_lists.inl @@ -0,0 +1,2769 @@ +DISPLAY_LIST(amp_seg8_dl_08002B68) +DISPLAY_LIST(amp_seg8_dl_08002BA0) +DISPLAY_LIST(amp_seg8_dl_08002C50) +DISPLAY_LIST(amp_seg8_dl_08002C88) +DISPLAY_LIST(amp_seg8_dl_08002D38) +DISPLAY_LIST(amp_seg8_dl_08002D70) +DISPLAY_LIST(amp_seg8_dl_08002E20) +DISPLAY_LIST(amp_seg8_dl_08002E58) +DISPLAY_LIST(amp_seg8_dl_08003910) +DISPLAY_LIST(amp_seg8_dl_08003940) +DISPLAY_LIST(amp_seg8_dl_08003970) +DISPLAY_LIST(amp_seg8_dl_080039A0) +DISPLAY_LIST(amp_seg8_dl_080039D0) +DISPLAY_LIST(amp_seg8_dl_08003DA8) +DISPLAY_LIST(amp_seg8_dl_08003DD8) +DISPLAY_LIST(amp_seg8_dl_08003E00) +DISPLAY_LIST(birds_seg5_dl_05000528) +DISPLAY_LIST(birds_seg5_dl_05000598) +DISPLAY_LIST(birds_seg5_dl_05000600) +DISPLAY_LIST(birds_seg5_dl_05000670) +DISPLAY_LIST(blargg_seg5_dl_050058D0) +DISPLAY_LIST(blargg_seg5_dl_05005A60) +DISPLAY_LIST(blargg_seg5_dl_05005D00) +DISPLAY_LIST(blue_coin_switch_seg8_dl_08000D58) +DISPLAY_LIST(blue_coin_switch_seg8_dl_08000DD0) +DISPLAY_LIST(blue_coin_switch_seg8_dl_08000E08) +DISPLAY_LIST(blue_fish_seg3_dl_0301BEC0) +DISPLAY_LIST(blue_fish_seg3_dl_0301BFB8) +DISPLAY_LIST(blue_fish_seg3_dl_0301C0A8) +DISPLAY_LIST(blue_fish_seg3_dl_0301C150) +DISPLAY_LIST(bobomb_seg8_dl_08022AC0) +DISPLAY_LIST(bobomb_seg8_dl_08022B08) +DISPLAY_LIST(bobomb_seg8_dl_08022B58) +DISPLAY_LIST(bobomb_seg8_dl_08022B88) +DISPLAY_LIST(bobomb_seg8_dl_08022C38) +DISPLAY_LIST(bobomb_seg8_dl_08022CA0) +DISPLAY_LIST(bobomb_seg8_dl_08022D08) +DISPLAY_LIST(bobomb_seg8_dl_08022D78) +DISPLAY_LIST(bobomb_seg8_dl_08023270) +DISPLAY_LIST(bobomb_seg8_dl_08023378) +DISPLAY_LIST(bobomb_seg8_dl_08023480) +DISPLAY_LIST(bomb_seg6_dl_0605A7C0) +DISPLAY_LIST(bomb_seg6_dl_0605A7F8) +DISPLAY_LIST(bomb_seg6_dl_0605A830) +DISPLAY_LIST(bomb_seg6_dl_0605A8A8) +DISPLAY_LIST(bomb_seg6_dl_0605A9C0) +DISPLAY_LIST(boo_seg5_dl_0500BEE0) +DISPLAY_LIST(boo_seg5_dl_0500BF48) +DISPLAY_LIST(boo_seg5_dl_0500BFA0) +DISPLAY_LIST(boo_seg5_dl_0500C1B0) +DISPLAY_LIST(book_seg5_dl_05002EF0) +DISPLAY_LIST(book_seg5_dl_05002F58) +DISPLAY_LIST(book_seg5_dl_05002FB0) +DISPLAY_LIST(bookend_seg5_dl_050018F8) +DISPLAY_LIST(bookend_seg5_dl_05001940) +DISPLAY_LIST(bookend_seg5_dl_05001978) +DISPLAY_LIST(bookend_seg5_dl_05001AA0) +DISPLAY_LIST(bookend_seg5_dl_05001AE8) +DISPLAY_LIST(bookend_seg5_dl_05001B20) +DISPLAY_LIST(bookend_seg5_dl_05001CC8) +DISPLAY_LIST(bookend_seg5_dl_05001D10) +DISPLAY_LIST(bookend_seg5_dl_05001D68) +DISPLAY_LIST(bookend_seg5_dl_05001EF8) +DISPLAY_LIST(bookend_seg5_dl_05001F40) +DISPLAY_LIST(bookend_seg5_dl_05001F98) +DISPLAY_LIST(bookend_seg5_dl_050020E8) +DISPLAY_LIST(bookend_seg5_dl_05002140) +DISPLAY_LIST(bookend_seg5_dl_05002288) +DISPLAY_LIST(bookend_seg5_dl_050022E0) +DISPLAY_LIST(boo_castle_seg6_dl_06017A10) +DISPLAY_LIST(boo_castle_seg6_dl_06017A78) +DISPLAY_LIST(boo_castle_seg6_dl_06017AD0) +DISPLAY_LIST(boo_castle_seg6_dl_06017CE0) +DISPLAY_LIST(bowser_seg6_dl_06039110) +DISPLAY_LIST(bowser_seg6_dl_060391C8) +DISPLAY_LIST(bowser_seg6_dl_06039260) +DISPLAY_LIST(bowser_seg6_dl_060392E0) +DISPLAY_LIST(bowser_seg6_dl_06039808) +DISPLAY_LIST(bowser_seg6_dl_060398B0) +DISPLAY_LIST(bowser_seg6_dl_06039958) +DISPLAY_LIST(bowser_seg6_dl_060399D8) +DISPLAY_LIST(bowser_seg6_dl_0603A210) +DISPLAY_LIST(bowser_seg6_dl_0603A380) +DISPLAY_LIST(bowser_seg6_dl_0603A4E8) +DISPLAY_LIST(bowser_seg6_dl_0603AED8) +DISPLAY_LIST(bowser_seg6_dl_0603B038) +DISPLAY_LIST(bowser_seg6_dl_0603B208) +DISPLAY_LIST(bowser_seg6_dl_0603B718) +DISPLAY_LIST(bowser_seg6_dl_0603B8D0) +DISPLAY_LIST(bowser_seg6_dl_0603B948) +DISPLAY_LIST(bowser_seg6_dl_0603BDF8) +DISPLAY_LIST(bowser_seg6_dl_0603BEA0) +DISPLAY_LIST(bowser_seg6_dl_0603BF48) +DISPLAY_LIST(bowser_seg6_dl_0603BFC8) +DISPLAY_LIST(bowser_seg6_dl_0603C500) +DISPLAY_LIST(bowser_seg6_dl_0603C5A8) +DISPLAY_LIST(bowser_seg6_dl_0603C650) +DISPLAY_LIST(bowser_seg6_dl_0603C6D0) +DISPLAY_LIST(bowser_seg6_dl_0603CF28) +DISPLAY_LIST(bowser_seg6_dl_0603D098) +DISPLAY_LIST(bowser_seg6_dl_0603D200) +DISPLAY_LIST(bowser_seg6_dl_0603DC70) +DISPLAY_LIST(bowser_seg6_dl_0603DDD0) +DISPLAY_LIST(bowser_seg6_dl_0603DFB0) +DISPLAY_LIST(bowser_seg6_dl_0603E500) +DISPLAY_LIST(bowser_seg6_dl_0603E6B8) +DISPLAY_LIST(bowser_seg6_dl_0603FBA8) +DISPLAY_LIST(bowser_seg6_dl_0603FC18) +DISPLAY_LIST(bowser_seg6_dl_0603FD38) +DISPLAY_LIST(bowser_seg6_dl_0603FDD0) +DISPLAY_LIST(bowser_seg6_dl_0603FEA8) +DISPLAY_LIST(bowser_seg6_dl_0603FFA8) +DISPLAY_LIST(bowser_seg6_dl_06040180) +DISPLAY_LIST(bowser_seg6_dl_060401F0) +DISPLAY_LIST(bowser_seg6_dl_06040210) +DISPLAY_LIST(bowser_seg6_dl_06040358) +DISPLAY_LIST(bowser_seg6_dl_06041A28) +DISPLAY_LIST(bowser_seg6_dl_06041BA0) +DISPLAY_LIST(bowser_seg6_dl_06041E48) +DISPLAY_LIST(bowser_seg6_dl_06041EA8) +DISPLAY_LIST(bowser_seg6_dl_06041F50) +DISPLAY_LIST(bowser_seg6_dl_06042098) +DISPLAY_LIST(bowser_seg6_dl_060420F0) +DISPLAY_LIST(bowser_seg6_dl_06042140) +DISPLAY_LIST(bowser_seg6_dl_060421D8) +DISPLAY_LIST(bowser_seg6_dl_06042220) +DISPLAY_LIST(bowser_seg6_dl_06042278) +DISPLAY_LIST(bowser_seg6_dl_06042328) +DISPLAY_LIST(bowser_seg6_dl_06042348) +DISPLAY_LIST(bowser_seg6_dl_060423A0) +DISPLAY_LIST(bowser_seg6_dl_060423F8) +DISPLAY_LIST(bowser_seg6_dl_06042450) +DISPLAY_LIST(bowser_seg6_dl_060424A8) +DISPLAY_LIST(bowser_seg6_dl_06042500) +DISPLAY_LIST(bowser_seg6_dl_06042558) +DISPLAY_LIST(bowser_seg6_dl_060425B0) +DISPLAY_LIST(bowser_seg6_dl_06042608) +DISPLAY_LIST(bowser_seg6_dl_06042EE0) +DISPLAY_LIST(bowser_seg6_dl_060430E8) +DISPLAY_LIST(bowser_seg6_dl_06043180) +DISPLAY_LIST(bowser_seg6_dl_060431F0) +DISPLAY_LIST(bowser_seg6_dl_06043548) +DISPLAY_LIST(bowser_seg6_dl_06043648) +DISPLAY_LIST(bowser_seg6_dl_06043698) +DISPLAY_LIST(flame_seg6_dl_0601C080) +DISPLAY_LIST(flame_seg6_dl_0601C0B0) +DISPLAY_LIST(flame_seg6_dl_0601C0C8) +DISPLAY_LIST(flame_seg6_dl_0601C0E0) +DISPLAY_LIST(flame_seg6_dl_0601C108) +DISPLAY_LIST(flame_seg6_dl_0601C1A8) +DISPLAY_LIST(flame_seg6_dl_0601C248) +DISPLAY_LIST(flame_seg6_dl_0601C2E8) +DISPLAY_LIST(flame_seg6_dl_0601C388) +DISPLAY_LIST(flame_seg6_dl_0601C428) +DISPLAY_LIST(flame_seg6_dl_0601C4C8) +DISPLAY_LIST(flame_seg6_dl_0601C568) +DISPLAY_LIST(flame_seg6_dl_0601C608) +DISPLAY_LIST(flame_seg6_dl_0601C6A8) +DISPLAY_LIST(flame_seg6_dl_0601C748) +DISPLAY_LIST(flame_seg6_dl_0601C7E8) +DISPLAY_LIST(flame_seg6_dl_0601C888) +DISPLAY_LIST(flame_seg6_dl_0601C928) +DISPLAY_LIST(bowser_key_dl) +DISPLAY_LIST(breakable_box_seg8_dl_08012C30) +DISPLAY_LIST(breakable_box_seg8_dl_08012CD8) +DISPLAY_LIST(breakable_box_seg8_dl_08012D20) +DISPLAY_LIST(breakable_box_seg8_dl_08012D48) +DISPLAY_LIST(bub_seg6_dl_06011848) +DISPLAY_LIST(bub_seg6_dl_060118C0) +DISPLAY_LIST(bub_seg6_dl_06011918) +DISPLAY_LIST(bub_seg6_dl_06011968) +DISPLAY_LIST(bub_seg6_dl_06011A50) +DISPLAY_LIST(bub_seg6_dl_06011B28) +DISPLAY_LIST(bub_seg6_dl_06011C58) +DISPLAY_LIST(bub_seg6_dl_06011CF0) +DISPLAY_LIST(bub_seg6_dl_06011DC0) +DISPLAY_LIST(bub_seg6_dl_06011E48) +DISPLAY_LIST(bub_seg6_dl_06011F18) +DISPLAY_LIST(bub_seg6_dl_06011FA0) +DISPLAY_LIST(bubba_seg5_dl_05004A40) +DISPLAY_LIST(bubba_seg5_dl_05004AA8) +DISPLAY_LIST(bubba_seg5_dl_05004BE8) +DISPLAY_LIST(bubba_seg5_dl_05004C40) +DISPLAY_LIST(bubba_seg5_dl_05004D48) +DISPLAY_LIST(bubba_seg5_dl_05004E80) +DISPLAY_LIST(bubba_seg5_dl_05005538) +DISPLAY_LIST(bubba_seg5_dl_050055A0) +DISPLAY_LIST(bubba_seg5_dl_050056E0) +DISPLAY_LIST(bubba_seg5_dl_05005738) +DISPLAY_LIST(bubba_seg5_dl_05005840) +DISPLAY_LIST(bubba_seg5_dl_05005978) +DISPLAY_LIST(bubble_seg4_dl_0401DD60) +DISPLAY_LIST(bubble_seg4_dl_0401DDE0) +DISPLAY_LIST(bullet_bill_seg5_dl_0500E5E8) +DISPLAY_LIST(bullet_bill_seg5_dl_0500E678) +DISPLAY_LIST(bullet_bill_seg5_dl_0500E730) +DISPLAY_LIST(bullet_bill_seg5_dl_0500E8A8) +DISPLAY_LIST(bully_seg5_dl_050002E0) +DISPLAY_LIST(bully_seg5_dl_05000398) +DISPLAY_LIST(bully_seg5_dl_05003708) +DISPLAY_LIST(bully_seg5_dl_050037A0) +DISPLAY_LIST(bully_seg5_dl_05003838) +DISPLAY_LIST(bully_seg5_dl_05003878) +DISPLAY_LIST(bully_seg5_dl_05003CD0) +DISPLAY_LIST(bully_seg5_dl_05003D08) +DISPLAY_LIST(bully_seg5_dl_05003D40) +DISPLAY_LIST(bully_seg5_dl_05003E38) +DISPLAY_LIST(bully_seg5_dl_05003E70) +DISPLAY_LIST(bully_seg5_dl_05003EA8) +DISPLAY_LIST(bully_seg5_dl_05003F80) +DISPLAY_LIST(bully_seg5_dl_05003FC8) +DISPLAY_LIST(burn_smoke_seg4_dl_04022000) +DISPLAY_LIST(burn_smoke_seg4_dl_04022028) +DISPLAY_LIST(burn_smoke_seg4_dl_04022048) +DISPLAY_LIST(burn_smoke_seg4_dl_04022070) +DISPLAY_LIST(butterfly_seg3_dl_03005408) +DISPLAY_LIST(butterfly_seg3_dl_030054A0) +DISPLAY_LIST(cannon_barrel_seg8_dl_08006408) +DISPLAY_LIST(cannon_barrel_seg8_dl_080064C0) +DISPLAY_LIST(cannon_barrel_seg8_dl_08006660) +DISPLAY_LIST(cannon_base_seg8_dl_08005658) +DISPLAY_LIST(cannon_base_seg8_dl_080056D0) +DISPLAY_LIST(cannon_base_seg8_dl_080057F8) +DISPLAY_LIST(cannon_lid_seg8_dl_08004898) +DISPLAY_LIST(cannon_lid_seg8_dl_080048E0) +DISPLAY_LIST(capswitch_seg5_dl_05002D88) +DISPLAY_LIST(cap_switch_exclamation_seg5_dl_05002E00) +DISPLAY_LIST(capswitch_seg5_dl_05003020) +DISPLAY_LIST(cap_switch_base_seg5_dl_05003120) +DISPLAY_LIST(capswitch_seg5_dl_05003280) +DISPLAY_LIST(capswitch_seg5_dl_05003350) +DISPLAY_LIST(capswitch_seg5_dl_05003370) +DISPLAY_LIST(capswitch_seg5_dl_05003390) +DISPLAY_LIST(capswitch_seg5_dl_050033B0) +DISPLAY_LIST(chain_ball_seg6_dl_060212E8) +DISPLAY_LIST(chain_chomp_seg6_dl_06024000) +DISPLAY_LIST(chain_chomp_seg6_dl_06024040) +DISPLAY_LIST(chain_chomp_seg6_dl_06024240) +DISPLAY_LIST(chain_chomp_seg6_dl_06024700) +DISPLAY_LIST(chain_chomp_seg6_dl_06024900) +DISPLAY_LIST(chain_chomp_seg6_dl_06024940) +DISPLAY_LIST(chain_chomp_seg6_dl_06024AA8) +DISPLAY_LIST(chain_chomp_seg6_dl_06024B00) +DISPLAY_LIST(chain_chomp_seg6_dl_06024CF0) +DISPLAY_LIST(chain_chomp_seg6_dl_06024D60) +DISPLAY_LIST(chain_chomp_seg6_dl_06024F50) +DISPLAY_LIST(chain_chomp_seg6_dl_06024FC0) +DISPLAY_LIST(chair_seg5_dl_05004E38) +DISPLAY_LIST(chair_seg5_dl_05004EE8) +DISPLAY_LIST(chair_seg5_dl_050050F0) +DISPLAY_LIST(chair_seg5_dl_05005190) +DISPLAY_LIST(chair_seg5_dl_05005378) +DISPLAY_LIST(chair_seg5_dl_05005408) +DISPLAY_LIST(chair_seg5_dl_050055F0) +DISPLAY_LIST(chair_seg5_dl_05005680) +DISPLAY_LIST(checkerboard_platform_seg8_dl_0800D5C0) +DISPLAY_LIST(checkerboard_platform_seg8_dl_0800D618) +DISPLAY_LIST(checkerboard_platform_seg8_dl_0800D680) +DISPLAY_LIST(chilly_chief_seg6_dl_06002B30) +DISPLAY_LIST(chilly_chief_seg6_dl_06002BC8) +DISPLAY_LIST(chilly_chief_seg6_dl_06002C60) +DISPLAY_LIST(chilly_chief_seg6_dl_06002D18) +DISPLAY_LIST(chilly_chief_seg6_dl_06002D50) +DISPLAY_LIST(chilly_chief_seg6_dl_06002D88) +DISPLAY_LIST(chilly_chief_seg6_dl_06002E80) +DISPLAY_LIST(chilly_chief_seg6_dl_06002EB8) +DISPLAY_LIST(chilly_chief_seg6_dl_06002EF0) +DISPLAY_LIST(chilly_chief_seg6_dl_06002FC8) +DISPLAY_LIST(chilly_chief_seg6_dl_06003010) +DISPLAY_LIST(chuckya_seg8_dl_08009FF8) +DISPLAY_LIST(chuckya_seg8_dl_0800A030) +DISPLAY_LIST(chuckya_seg8_dl_0800A068) +DISPLAY_LIST(chuckya_seg8_dl_0800A160) +DISPLAY_LIST(chuckya_seg8_dl_0800A198) +DISPLAY_LIST(chuckya_seg8_dl_0800A1D0) +DISPLAY_LIST(chuckya_seg8_dl_0800A2C8) +DISPLAY_LIST(chuckya_seg8_dl_0800A300) +DISPLAY_LIST(chuckya_seg8_dl_0800A338) +DISPLAY_LIST(chuckya_seg8_dl_0800A3F0) +DISPLAY_LIST(chuckya_seg8_dl_0800A428) +DISPLAY_LIST(chuckya_seg8_dl_0800A4D8) +DISPLAY_LIST(chuckya_seg8_dl_0800A510) +DISPLAY_LIST(chuckya_seg8_dl_0800A5C0) +DISPLAY_LIST(chuckya_seg8_dl_0800A5F8) +DISPLAY_LIST(chuckya_seg8_dl_0800A700) +DISPLAY_LIST(chuckya_seg8_dl_0800A758) +DISPLAY_LIST(chuckya_seg8_dl_0800A870) +DISPLAY_LIST(chuckya_seg8_dl_0800A8D0) +DISPLAY_LIST(chuckya_seg8_dl_0800A958) +DISPLAY_LIST(chuckya_seg8_dl_0800A998) +DISPLAY_LIST(chuckya_seg8_dl_0800AB70) +DISPLAY_LIST(chuckya_seg8_dl_0800ABE8) +DISPLAY_LIST(clam_shell_seg5_dl_050011A8) +DISPLAY_LIST(clam_shell_seg5_dl_05001238) +DISPLAY_LIST(clam_shell_seg5_dl_050012B8) +DISPLAY_LIST(clam_shell_seg5_dl_05001478) +DISPLAY_LIST(clam_shell_seg5_dl_050014F8) +DISPLAY_LIST(clam_shell_seg5_dl_05001568) +DISPLAY_LIST(coin_seg3_dl_03007780) +DISPLAY_LIST(coin_seg3_dl_030077D0) +DISPLAY_LIST(coin_seg3_dl_03007800) +DISPLAY_LIST(coin_seg3_dl_03007828) +DISPLAY_LIST(coin_seg3_dl_03007850) +DISPLAY_LIST(coin_seg3_dl_03007878) +DISPLAY_LIST(coin_seg3_dl_030078A0) +DISPLAY_LIST(coin_seg3_dl_030078C8) +DISPLAY_LIST(coin_seg3_dl_030078F0) +DISPLAY_LIST(coin_seg3_dl_03007918) +DISPLAY_LIST(coin_seg3_dl_03007940) +DISPLAY_LIST(coin_seg3_dl_03007968) +DISPLAY_LIST(coin_seg3_dl_03007990) +DISPLAY_LIST(coin_seg3_dl_030079B8) +DISPLAY_LIST(cyan_fish_seg6_dl_0600DD20) +DISPLAY_LIST(cyan_fish_seg6_dl_0600DDD8) +DISPLAY_LIST(cyan_fish_seg6_dl_0600DE90) +DISPLAY_LIST(cyan_fish_seg6_dl_0600DED8) +DISPLAY_LIST(cyan_fish_seg6_dl_0600DFC0) +DISPLAY_LIST(cyan_fish_seg6_dl_0600E038) +DISPLAY_LIST(dirt_seg3_dl_0302BFF8) +DISPLAY_LIST(dirt_seg3_dl_0302C028) +DISPLAY_LIST(dirt_seg3_dl_0302C238) +DISPLAY_LIST(dirt_seg3_dl_0302C298) +DISPLAY_LIST(dirt_seg3_dl_0302C2B8) +DISPLAY_LIST(dirt_seg3_dl_0302C2D8) +DISPLAY_LIST(dirt_seg3_dl_0302C2F8) +DISPLAY_LIST(dirt_seg3_dl_0302C318) +DISPLAY_LIST(dirt_seg3_dl_0302C378) +DISPLAY_LIST(dirt_seg3_dl_0302C3B0) +DISPLAY_LIST(dirt_seg3_dl_0302C3E8) +DISPLAY_LIST(dirt_seg3_dl_0302C420) +DISPLAY_LIST(dirt_seg3_dl_0302C458) +DISPLAY_LIST(door_seg3_dl_03013C10) +DISPLAY_LIST(door_seg3_dl_03013CC8) +DISPLAY_LIST(door_seg3_dl_03013D78) +DISPLAY_LIST(door_seg3_dl_03013E28) +DISPLAY_LIST(door_seg3_dl_03013EA8) +DISPLAY_LIST(door_seg3_dl_03014020) +DISPLAY_LIST(door_seg3_dl_03014100) +DISPLAY_LIST(door_seg3_dl_03014128) +DISPLAY_LIST(door_seg3_dl_030141C0) +DISPLAY_LIST(door_seg3_dl_03014218) +DISPLAY_LIST(door_seg3_dl_03014250) +DISPLAY_LIST(door_seg3_dl_03014280) +DISPLAY_LIST(door_seg3_dl_030142B0) +DISPLAY_LIST(door_seg3_dl_030142E0) +DISPLAY_LIST(door_seg3_dl_03014310) +DISPLAY_LIST(door_seg3_dl_03014340) +DISPLAY_LIST(door_seg3_dl_03014470) +DISPLAY_LIST(door_seg3_dl_030144E0) +DISPLAY_LIST(door_seg3_dl_03014528) +DISPLAY_LIST(door_seg3_dl_03014540) +DISPLAY_LIST(door_seg3_dl_03014888) +DISPLAY_LIST(door_seg3_dl_030149C0) +DISPLAY_LIST(door_seg3_dl_03014A20) +DISPLAY_LIST(door_seg3_dl_03014A50) +DISPLAY_LIST(door_seg3_dl_03014A80) +DISPLAY_LIST(door_seg3_dl_03014B30) +DISPLAY_LIST(door_seg3_dl_03014BE0) +DISPLAY_LIST(door_seg3_dl_03014C90) +DISPLAY_LIST(door_seg3_dl_03014D40) +DISPLAY_LIST(door_seg3_dl_03014EF0) +DISPLAY_LIST(door_seg3_dl_03014F30) +DISPLAY_LIST(door_seg3_dl_03014F68) +DISPLAY_LIST(door_seg3_dl_03014F98) +DISPLAY_LIST(door_seg3_dl_03015008) +DISPLAY_LIST(door_seg3_dl_03015078) +DISPLAY_LIST(door_seg3_dl_030150E8) +DISPLAY_LIST(door_seg3_dl_03015158) +DISPLAY_LIST(dorrie_seg6_dl_0600B8E8) +DISPLAY_LIST(dorrie_seg6_dl_0600B940) +DISPLAY_LIST(dorrie_seg6_dl_0600BAF8) +DISPLAY_LIST(dorrie_seg6_dl_0600BE68) +DISPLAY_LIST(dorrie_seg6_dl_0600BF10) +DISPLAY_LIST(dorrie_seg6_dl_0600C030) +DISPLAY_LIST(dorrie_seg6_dl_0600C310) +DISPLAY_LIST(dorrie_seg6_dl_0600C468) +DISPLAY_LIST(dorrie_seg6_dl_0600C758) +DISPLAY_LIST(dorrie_seg6_dl_0600C8B8) +DISPLAY_LIST(dorrie_seg6_dl_0600CDE8) +DISPLAY_LIST(dorrie_seg6_dl_0600CFD0) +DISPLAY_LIST(dorrie_seg6_dl_0600D300) +DISPLAY_LIST(dorrie_seg6_dl_0600D440) +DISPLAY_LIST(dorrie_seg6_dl_0600D620) +DISPLAY_LIST(dorrie_seg6_dl_0600D6D8) +DISPLAY_LIST(dorrie_seg6_dl_0600D818) +DISPLAY_LIST(dorrie_seg6_dl_0600D8B0) +DISPLAY_LIST(dorrie_seg6_dl_0600D9F0) +DISPLAY_LIST(dorrie_seg6_dl_0600DA88) +DISPLAY_LIST(dorrie_seg6_dl_0600DBC8) +DISPLAY_LIST(dorrie_seg6_dl_0600DC60) +DISPLAY_LIST(dorrie_seg6_dl_0600DDA0) +DISPLAY_LIST(dorrie_seg6_dl_0600DE38) +DISPLAY_LIST(dorrie_seg6_dl_0600DF60) +DISPLAY_LIST(dorrie_seg6_dl_0600DFA8) +DISPLAY_LIST(error_model_error_bone_mesh_layer_1_tri_0) +DISPLAY_LIST(mat_error_model_f3d_material) +DISPLAY_LIST(error_model_error_bone_mesh_layer_1) +DISPLAY_LIST(error_model_material_revert_render_settings) +DISPLAY_LIST(exclamation_box_seg8_dl_08018FA8) +DISPLAY_LIST(exclamation_box_seg8_dl_08019008) +DISPLAY_LIST(exclamation_box_seg8_dl_08019058) +DISPLAY_LIST(exclamation_box_seg8_dl_08019220) +DISPLAY_LIST(exclamation_box_seg8_dl_08019280) +DISPLAY_LIST(exclamation_box_seg8_dl_080192D0) +DISPLAY_LIST(exclamation_box_seg8_dl_08019318) +DISPLAY_LIST(exclamation_box_seg8_dl_08019378) +DISPLAY_LIST(exclamation_box_seg8_dl_080193D8) +DISPLAY_LIST(exclamation_box_seg8_dl_08019438) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024EB8) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024F30) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024F58) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024F88) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024FA8) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024FC8) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024FE8) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025968) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_080259F8) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025EC0) +DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025F08) +DISPLAY_LIST(explosion_seg3_dl_03004208) +DISPLAY_LIST(explosion_seg3_dl_03004298) +DISPLAY_LIST(explosion_seg3_dl_030042B0) +DISPLAY_LIST(explosion_seg3_dl_030042C8) +DISPLAY_LIST(explosion_seg3_dl_030042E0) +DISPLAY_LIST(explosion_seg3_dl_030042F8) +DISPLAY_LIST(explosion_seg3_dl_03004310) +DISPLAY_LIST(explosion_seg3_dl_03004328) +DISPLAY_LIST(eyerok_seg5_dl_0500B6B8) +DISPLAY_LIST(eyerok_seg5_dl_0500B748) +DISPLAY_LIST(eyerok_seg5_dl_0500B930) +DISPLAY_LIST(eyerok_seg5_dl_0500B9C0) +DISPLAY_LIST(eyerok_seg5_dl_0500BBE8) +DISPLAY_LIST(eyerok_seg5_dl_0500BC88) +DISPLAY_LIST(eyerok_seg5_dl_0500BE70) +DISPLAY_LIST(eyerok_seg5_dl_0500BF00) +DISPLAY_LIST(eyerok_seg5_dl_0500C088) +DISPLAY_LIST(eyerok_seg5_dl_0500C100) +DISPLAY_LIST(eyerok_seg5_dl_0500C2E8) +DISPLAY_LIST(eyerok_seg5_dl_0500C378) +DISPLAY_LIST(eyerok_seg5_dl_0500C5A0) +DISPLAY_LIST(eyerok_seg5_dl_0500C640) +DISPLAY_LIST(eyerok_seg5_dl_0500C868) +DISPLAY_LIST(eyerok_seg5_dl_0500C908) +DISPLAY_LIST(eyerok_seg5_dl_0500C9B8) +DISPLAY_LIST(eyerok_seg5_dl_0500CA50) +DISPLAY_LIST(eyerok_seg5_dl_0500CAE8) +DISPLAY_LIST(eyerok_seg5_dl_0500CB80) +DISPLAY_LIST(eyerok_seg5_dl_0500CC18) +DISPLAY_LIST(eyerok_seg5_dl_0500CC30) +DISPLAY_LIST(flame_seg3_dl_0301B320) +DISPLAY_LIST(flame_seg3_dl_0301B3B0) +DISPLAY_LIST(flame_seg3_dl_0301B3C8) +DISPLAY_LIST(flame_seg3_dl_0301B3E0) +DISPLAY_LIST(flame_seg3_dl_0301B3F8) +DISPLAY_LIST(flame_seg3_dl_0301B410) +DISPLAY_LIST(flame_seg3_dl_0301B428) +DISPLAY_LIST(flame_seg3_dl_0301B440) +DISPLAY_LIST(flame_seg3_dl_0301B458) +DISPLAY_LIST(flame_seg3_dl_0301B470) +DISPLAY_LIST(flame_seg3_dl_0301B500) +DISPLAY_LIST(flame_seg3_dl_0301B518) +DISPLAY_LIST(flame_seg3_dl_0301B530) +DISPLAY_LIST(flame_seg3_dl_0301B548) +DISPLAY_LIST(flame_seg3_dl_0301B560) +DISPLAY_LIST(flame_seg3_dl_0301B578) +DISPLAY_LIST(flame_seg3_dl_0301B590) +DISPLAY_LIST(flame_seg3_dl_0301B5A8) +DISPLAY_LIST(flyguy_seg8_dl_08010840) +DISPLAY_LIST(flyguy_seg8_dl_08010968) +DISPLAY_LIST(flyguy_seg8_dl_08010A90) +DISPLAY_LIST(flyguy_seg8_dl_08010B38) +DISPLAY_LIST(flyguy_seg8_dl_08010B80) +DISPLAY_LIST(flyguy_seg8_dl_080113A8) +DISPLAY_LIST(flyguy_seg8_dl_08011420) +DISPLAY_LIST(flyguy_seg8_dl_080116D0) +DISPLAY_LIST(flyguy_seg8_dl_08011710) +DISPLAY_LIST(fwoosh_seg5_dl_05016008) +DISPLAY_LIST(fwoosh_seg5_dl_05016040) +DISPLAY_LIST(goomba_seg8_dl_0801B2E8) +DISPLAY_LIST(goomba_seg8_dl_0801B560) +DISPLAY_LIST(goomba_seg8_dl_0801B5A0) +DISPLAY_LIST(goomba_seg8_dl_0801B5C8) +DISPLAY_LIST(goomba_seg8_dl_0801B5F0) +DISPLAY_LIST(goomba_seg8_dl_0801B658) +DISPLAY_LIST(goomba_seg8_dl_0801B690) +DISPLAY_LIST(goomba_seg8_dl_0801CE20) +DISPLAY_LIST(goomba_seg8_dl_0801CF78) +DISPLAY_LIST(goomba_seg8_dl_0801D0D0) +DISPLAY_LIST(goomba_seg8_dl_0801D360) +DISPLAY_LIST(goomba_seg8_dl_0801D760) +DISPLAY_LIST(haunted_cage_seg5_dl_0500F4C8) +DISPLAY_LIST(haunted_cage_seg5_dl_0500F660) +DISPLAY_LIST(haunted_cage_seg5_dl_0500F760) +DISPLAY_LIST(haunted_cage_seg5_dl_0500F7D8) +DISPLAY_LIST(haunted_cage_seg5_dl_0500FB40) +DISPLAY_LIST(haunted_cage_seg5_dl_0500FC28) +DISPLAY_LIST(haunted_cage_seg5_dl_0500FFF0) +DISPLAY_LIST(haunted_cage_seg5_dl_05010100) +DISPLAY_LIST(heart_seg8_dl_0800DFE0) +DISPLAY_LIST(heave_ho_seg5_dl_05011D98) +DISPLAY_LIST(heave_ho_seg5_dl_05011DE0) +DISPLAY_LIST(heave_ho_seg5_dl_05011E28) +DISPLAY_LIST(heave_ho_seg5_dl_05011E80) +DISPLAY_LIST(heave_ho_seg5_dl_05011EC0) +DISPLAY_LIST(heave_ho_seg5_dl_050120A0) +DISPLAY_LIST(heave_ho_seg5_dl_05012100) +DISPLAY_LIST(heave_ho_seg5_dl_05012148) +DISPLAY_LIST(heave_ho_seg5_dl_05012300) +DISPLAY_LIST(heave_ho_seg5_dl_05012360) +DISPLAY_LIST(heave_ho_seg5_dl_050123A8) +DISPLAY_LIST(heave_ho_seg5_dl_05012560) +DISPLAY_LIST(heave_ho_seg5_dl_050125A8) +DISPLAY_LIST(heave_ho_seg5_dl_050125F8) +DISPLAY_LIST(heave_ho_seg5_dl_050126B0) +DISPLAY_LIST(heave_ho_seg5_dl_050126E8) +DISPLAY_LIST(heave_ho_seg5_dl_050127B0) +DISPLAY_LIST(heave_ho_seg5_dl_050127F8) +DISPLAY_LIST(heave_ho_seg5_dl_05014188) +DISPLAY_LIST(heave_ho_seg5_dl_05014560) +DISPLAY_LIST(heave_ho_seg5_dl_050145D0) +DISPLAY_LIST(heave_ho_seg5_dl_050149A8) +DISPLAY_LIST(heave_ho_seg5_dl_05014D80) +DISPLAY_LIST(hoot_seg5_dl_05001B80) +DISPLAY_LIST(hoot_seg5_dl_05001C00) +DISPLAY_LIST(hoot_seg5_dl_05001DF0) +DISPLAY_LIST(hoot_seg5_dl_05002EB0) +DISPLAY_LIST(hoot_seg5_dl_05002F10) +DISPLAY_LIST(hoot_seg5_dl_05002FD8) +DISPLAY_LIST(hoot_seg5_dl_05003038) +DISPLAY_LIST(hoot_seg5_dl_05003100) +DISPLAY_LIST(hoot_seg5_dl_05003160) +DISPLAY_LIST(hoot_seg5_dl_05003228) +DISPLAY_LIST(hoot_seg5_dl_05003288) +DISPLAY_LIST(hoot_seg5_dl_05003350) +DISPLAY_LIST(hoot_seg5_dl_050033B0) +DISPLAY_LIST(hoot_seg5_dl_05003478) +DISPLAY_LIST(hoot_seg5_dl_050034D8) +DISPLAY_LIST(hoot_seg5_dl_050035A0) +DISPLAY_LIST(hoot_seg5_dl_05003600) +DISPLAY_LIST(hoot_seg5_dl_050036C8) +DISPLAY_LIST(hoot_seg5_dl_05003728) +DISPLAY_LIST(hoot_seg5_dl_05004928) +DISPLAY_LIST(hoot_seg5_dl_05004A98) +DISPLAY_LIST(hoot_seg5_dl_05004B38) +DISPLAY_LIST(hoot_seg5_dl_05004CA8) +DISPLAY_LIST(hoot_seg5_dl_05004D48) +DISPLAY_LIST(impact_ring_seg6_dl_0601EA50) +DISPLAY_LIST(impact_ring_seg6_dl_0601EA88) +DISPLAY_LIST(impact_ring_seg6_dl_0601EAC0) +DISPLAY_LIST(impact_smoke_seg6_dl_06062AA8) +DISPLAY_LIST(impact_smoke_seg6_dl_06062AD8) +DISPLAY_LIST(impact_smoke_seg6_dl_06062AF0) +DISPLAY_LIST(impact_smoke_seg6_dl_06062B08) +DISPLAY_LIST(impact_smoke_seg6_dl_06062B38) +DISPLAY_LIST(impact_smoke_seg6_dl_06062BD8) +DISPLAY_LIST(impact_smoke_seg6_dl_06062C78) +DISPLAY_LIST(impact_smoke_seg6_dl_06062D18) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A4B8) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A4F0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A5A0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A5D8) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A688) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A6C0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A770) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A7A8) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A858) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A890) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A940) +DISPLAY_LIST(king_bobomb_seg5_dl_0500A978) +DISPLAY_LIST(king_bobomb_seg5_dl_0500ABC0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500AD08) +DISPLAY_LIST(king_bobomb_seg5_dl_0500AF20) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B068) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B118) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B150) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B188) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B278) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B2D0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B3C8) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B418) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B5F0) +DISPLAY_LIST(king_bobomb_seg5_dl_0500B6C0) +DISPLAY_LIST(klepto_seg5_dl_05003A68) +DISPLAY_LIST(klepto_seg5_dl_05003AC0) +DISPLAY_LIST(klepto_seg5_dl_05003B40) +DISPLAY_LIST(klepto_seg5_dl_05003BD0) +DISPLAY_LIST(klepto_seg5_dl_05003D00) +DISPLAY_LIST(klepto_seg5_dl_05003D80) +DISPLAY_LIST(klepto_seg5_dl_05003E68) +DISPLAY_LIST(klepto_seg5_dl_05003F20) +DISPLAY_LIST(klepto_seg5_dl_05004058) +DISPLAY_LIST(klepto_seg5_dl_05004118) +DISPLAY_LIST(klepto_seg5_dl_050041A0) +DISPLAY_LIST(klepto_seg5_dl_050041E8) +DISPLAY_LIST(klepto_seg5_dl_050042D0) +DISPLAY_LIST(klepto_seg5_dl_05004330) +DISPLAY_LIST(klepto_seg5_dl_050043D8) +DISPLAY_LIST(klepto_seg5_dl_05004438) +DISPLAY_LIST(klepto_seg5_dl_05004698) +DISPLAY_LIST(klepto_seg5_dl_050047C8) +DISPLAY_LIST(klepto_seg5_dl_05004A28) +DISPLAY_LIST(klepto_seg5_dl_05004B58) +DISPLAY_LIST(klepto_seg5_dl_05004BE0) +DISPLAY_LIST(klepto_seg5_dl_05004C28) +DISPLAY_LIST(klepto_seg5_dl_05004CF0) +DISPLAY_LIST(klepto_seg5_dl_05004D38) +DISPLAY_LIST(klepto_seg5_dl_05004E00) +DISPLAY_LIST(klepto_seg5_dl_05004E48) +DISPLAY_LIST(klepto_seg5_dl_05004F10) +DISPLAY_LIST(klepto_seg5_dl_05004F58) +DISPLAY_LIST(klepto_seg5_dl_05005020) +DISPLAY_LIST(klepto_seg5_dl_05005068) +DISPLAY_LIST(klepto_seg5_dl_05005130) +DISPLAY_LIST(klepto_seg5_dl_05005178) +DISPLAY_LIST(koopa_seg6_dl_06007658) +DISPLAY_LIST(koopa_seg6_dl_060076B0) +DISPLAY_LIST(koopa_seg6_dl_06007850) +DISPLAY_LIST(koopa_seg6_dl_06007970) +DISPLAY_LIST(koopa_seg6_dl_06007A60) +DISPLAY_LIST(koopa_seg6_dl_06007AA0) +DISPLAY_LIST(koopa_seg6_dl_06007AF8) +DISPLAY_LIST(koopa_seg6_dl_06007B20) +DISPLAY_LIST(koopa_seg6_dl_06007FB8) +DISPLAY_LIST(koopa_seg6_dl_06008050) +DISPLAY_LIST(koopa_seg6_dl_060080F8) +DISPLAY_LIST(koopa_seg6_dl_06008250) +DISPLAY_LIST(koopa_seg6_dl_06008530) +DISPLAY_LIST(koopa_seg6_dl_060085E8) +DISPLAY_LIST(koopa_seg6_dl_06008640) +DISPLAY_LIST(koopa_seg6_dl_060086D0) +DISPLAY_LIST(koopa_seg6_dl_060089B0) +DISPLAY_LIST(koopa_seg6_dl_06008A68) +DISPLAY_LIST(koopa_seg6_dl_06008AC0) +DISPLAY_LIST(koopa_seg6_dl_06008B50) +DISPLAY_LIST(koopa_seg6_dl_0600B6E0) +DISPLAY_LIST(koopa_seg6_dl_0600B838) +DISPLAY_LIST(koopa_seg6_dl_0600B8B8) +DISPLAY_LIST(koopa_seg6_dl_0600BA10) +DISPLAY_LIST(koopa_seg6_dl_0600BA90) +DISPLAY_LIST(koopa_seg6_dl_0600BC18) +DISPLAY_LIST(koopa_seg6_dl_0600BC88) +DISPLAY_LIST(koopa_seg6_dl_0600BE10) +DISPLAY_LIST(koopa_seg6_dl_0600BE80) +DISPLAY_LIST(koopa_seg6_dl_0600C240) +DISPLAY_LIST(koopa_seg6_dl_0600C498) +DISPLAY_LIST(koopa_flag_seg6_dl_06000968) +DISPLAY_LIST(koopa_flag_seg6_dl_06000A08) +DISPLAY_LIST(koopa_flag_seg6_dl_06000AB8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000AE8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000B08) +DISPLAY_LIST(koopa_flag_seg6_dl_06000BC0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000BF8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000CA8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000CE0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000D90) +DISPLAY_LIST(koopa_flag_seg6_dl_06000DB0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000E20) +DISPLAY_LIST(koopa_flag_seg6_dl_06000E38) +DISPLAY_LIST(koopa_shell_seg8_dl_08027108) +DISPLAY_LIST(koopa_shell_seg8_dl_08027170) +DISPLAY_LIST(koopa_shell_seg8_dl_08027258) +DISPLAY_LIST(koopa_shell_seg8_dl_080273C8) +DISPLAY_LIST(koopa_shell_seg8_dl_08027420) +DISPLAY_LIST(koopa_shell_seg8_dl_080288E0) +DISPLAY_LIST(koopa_shell_seg8_dl_08028978) +DISPLAY_LIST(koopa_shell_seg8_dl_08028A20) +DISPLAY_LIST(koopa_shell_seg8_dl_08028B78) +DISPLAY_LIST(lakitu_seg6_dl_06003C80) +DISPLAY_LIST(lakitu_seg6_dl_06003DB0) +DISPLAY_LIST(lakitu_seg6_dl_06003E30) +DISPLAY_LIST(lakitu_seg6_dl_06004410) +DISPLAY_LIST(lakitu_seg6_dl_06004680) +DISPLAY_LIST(lakitu_seg6_dl_060047E8) +DISPLAY_LIST(lakitu_seg6_dl_060049E0) +DISPLAY_LIST(lakitu_seg6_dl_06004BA8) +DISPLAY_LIST(lakitu_seg6_dl_06004BE8) +DISPLAY_LIST(lakitu_seg6_dl_06004C30) +DISPLAY_LIST(lakitu_seg6_dl_06004C60) +DISPLAY_LIST(lakitu_seg6_dl_06004C88) +DISPLAY_LIST(lakitu_seg6_dl_060051D0) +DISPLAY_LIST(lakitu_seg6_dl_06005218) +DISPLAY_LIST(lakitu_seg6_dl_06005360) +DISPLAY_LIST(lakitu_seg6_dl_06005598) +DISPLAY_LIST(lakitu_seg6_dl_060055E8) +DISPLAY_LIST(lakitu_seg6_dl_06005610) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012760) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012890) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012910) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012EF0) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013160) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013298) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050132D8) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013320) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013350) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013378) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050134A8) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050136A0) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013860) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050138B0) +DISPLAY_LIST(leaves_seg3_dl_0301CDE0) +DISPLAY_LIST(luigi_butt_dl) +DISPLAY_LIST(luigi_butt) +DISPLAY_LIST(luigi_metal_butt) +DISPLAY_LIST(luigi_left_arm_shared_dl) +DISPLAY_LIST(luigi_left_arm) +DISPLAY_LIST(luigi_left_forearm_shared_dl) +DISPLAY_LIST(luigi_left_hand_closed_shared_dl) +DISPLAY_LIST(luigi_left_hand_closed) +DISPLAY_LIST(luigi_right_arm_shared_dl) +DISPLAY_LIST(luigi_right_arm) +DISPLAY_LIST(luigi_right_forearm_shared_dl) +DISPLAY_LIST(luigi_right_hand_closed_dl) +DISPLAY_LIST(luigi_right_hand_closed) +DISPLAY_LIST(luigi_metal_right_hand_closed) +DISPLAY_LIST(luigi_left_thigh_dl) +DISPLAY_LIST(luigi_left_thigh) +DISPLAY_LIST(luigi_metal_left_thigh) +DISPLAY_LIST(luigi_left_leg_shared_dl) +DISPLAY_LIST(luigi_left_foot_shared_dl) +DISPLAY_LIST(luigi_left_foot) +DISPLAY_LIST(luigi_right_thigh_shared_dl) +DISPLAY_LIST(luigi_right_thigh) +DISPLAY_LIST(luigi_right_leg_shared_dl) +DISPLAY_LIST(luigi_right_foot_dl) +DISPLAY_LIST(luigi_right_foot) +DISPLAY_LIST(luigi_metal_right_foot) +DISPLAY_LIST(luigi_yellow_button_dl) +DISPLAY_LIST(luigi_pants_overalls_shared_dl) +DISPLAY_LIST(luigi_tshirt_shared_dl) +DISPLAY_LIST(luigi_torso_dl) +DISPLAY_LIST(luigi_torso) +DISPLAY_LIST(luigi_metal_torso_shared_dl) +DISPLAY_LIST(luigi_l_logo_dl) +DISPLAY_LIST(luigi_eyes_cap_on_dl) +DISPLAY_LIST(luigi_hair_sideburn_cap_on_dl) +DISPLAY_LIST(luigi_mustache_cap_on_dl) +DISPLAY_LIST(luigi_face_part_cap_on_dl) +DISPLAY_LIST(luigi_face_cap_dl) +DISPLAY_LIST(luigi_face_back_hair_cap_on_dl) +DISPLAY_LIST(luigi_hair_sideburn_decal_cap_on) +DISPLAY_LIST(luigi_l_logo_decal) +DISPLAY_LIST(luigi_face_cap_on_dl) +DISPLAY_LIST(luigi_cap_on_eyes_front) +DISPLAY_LIST(luigi_cap_on_eyes_half_closed) +DISPLAY_LIST(luigi_cap_on_eyes_closed) +DISPLAY_LIST(luigi_cap_on_eyes_right) +DISPLAY_LIST(luigi_cap_on_eyes_left) +DISPLAY_LIST(luigi_cap_on_eyes_up) +DISPLAY_LIST(luigi_cap_on_eyes_down) +DISPLAY_LIST(luigi_cap_on_eyes_dead) +DISPLAY_LIST(luigi_metal_cap_on_shared_dl) +DISPLAY_LIST(luigi_eyes_cap_off_dl) +DISPLAY_LIST(luigi_mustache_cap_off_dl) +DISPLAY_LIST(luigi_hair_sideburn_cap_off_dl) +DISPLAY_LIST(luigi_face_part_cap_off_dl) +DISPLAY_LIST(luigi_face_hair_cap_off_dl) +DISPLAY_LIST(luigi_hair_sideburn_decal_cap_off) +DISPLAY_LIST(luigi_face_cap_off_dl) +DISPLAY_LIST(luigi_cap_off_eyes_front) +DISPLAY_LIST(luigi_cap_off_eyes_half_closed) +DISPLAY_LIST(luigi_cap_off_eyes_closed) +DISPLAY_LIST(luigi_cap_off_eyes_right) +DISPLAY_LIST(luigi_cap_off_eyes_left) +DISPLAY_LIST(luigi_cap_off_eyes_up) +DISPLAY_LIST(luigi_cap_off_eyes_down) +DISPLAY_LIST(luigi_cap_off_eyes_dead) +DISPLAY_LIST(luigi_metal_cap_off_shared_dl) +DISPLAY_LIST(luigi_left_hand_open_shared_dl) +DISPLAY_LIST(luigi_left_hand_open) +DISPLAY_LIST(luigi_right_hand_open_dl) +DISPLAY_LIST(luigi_right_hand_open) +DISPLAY_LIST(luigi_metal_right_hand_open) +DISPLAY_LIST(luigi_right_hand_cap_l_logo_dl) +DISPLAY_LIST(luigi_right_hand_cap_top_dl) +DISPLAY_LIST(luigi_right_hand_cap_hand_position_dl) +DISPLAY_LIST(luigi_right_hand_cap_bottom_dl) +DISPLAY_LIST(luigi_right_hand_cap_decal) +DISPLAY_LIST(luigi_right_hand_cap_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(luigi_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_end_dl) +DISPLAY_LIST(luigi_right_hand_cap) +DISPLAY_LIST(luigi_right_hand_cap_wings) +DISPLAY_LIST(luigi_right_hand_cap_wings_transparent) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(luigi_right_hand_peace_shared_dl) +DISPLAY_LIST(luigi_right_hand_peace) +DISPLAY_LIST(luigi_wings_half_1_dl) +DISPLAY_LIST(luigi_wings_half_2_dl) +DISPLAY_LIST(luigi_cap_wings) +DISPLAY_LIST(luigi_cap_wings_transparent) +DISPLAY_LIST(luigi_metal_cap_wings) +DISPLAY_LIST(luigi_metal_cap_wings_transparent) +DISPLAY_LIST(luigi_material_revert_render_settings) +DISPLAY_LIST(luigi_cap_seg3_dl_03022B30) +DISPLAY_LIST(luigi_cap_seg3_dl_03022B68) +DISPLAY_LIST(luigi_cap_seg3_dl_03022CC8) +DISPLAY_LIST(luigi_cap_seg3_dl_03022D10) +DISPLAY_LIST(luigi_cap_seg3_dl_03022E78) +DISPLAY_LIST(luigi_cap_seg3_dl_03022EA8) +DISPLAY_LIST(luigi_cap_seg3_dl_03022ED8) +DISPLAY_LIST(luigi_cap_seg3_dl_03022ED8_metal) +DISPLAY_LIST(luigi_cap_seg3_dl_03022F20) +DISPLAY_LIST(luigi_cap_l_logo_decal) +DISPLAY_LIST(luigi_cap_seg3_dl_03022F48) +DISPLAY_LIST(luigi_cap_seg3_dl_03022FF8) +DISPLAY_LIST(luigi_cap_seg3_dl_030230B0) +DISPLAY_LIST(luigi_cap_seg3_dl_03023108) +DISPLAY_LIST(luigi_cap_seg3_dl_03023160) +DISPLAY_LIST(luigi_cap_seg3_dl_03023298) +DISPLAY_LIST(luigi_cap_material_revert_render_settings) +DISPLAY_LIST(mad_piano_seg5_dl_05008B68) +DISPLAY_LIST(mad_piano_seg5_dl_05008BD0) +DISPLAY_LIST(mad_piano_seg5_dl_05008CB0) +DISPLAY_LIST(mad_piano_seg5_dl_05009590) +DISPLAY_LIST(mad_piano_seg5_dl_050096C8) +DISPLAY_LIST(mad_piano_seg5_dl_050097B0) +DISPLAY_LIST(mad_piano_seg5_dl_050097F8) +DISPLAY_LIST(mad_piano_seg5_dl_05009840) +DISPLAY_LIST(mad_piano_seg5_dl_05009888) +DISPLAY_LIST(mad_piano_seg5_dl_050098E8) +DISPLAY_LIST(manta_seg5_dl_05004960) +DISPLAY_LIST(manta_seg5_dl_050049C8) +DISPLAY_LIST(manta_seg5_dl_05004A70) +DISPLAY_LIST(manta_seg5_dl_05004CA8) +DISPLAY_LIST(manta_seg5_dl_05004D10) +DISPLAY_LIST(manta_seg5_dl_05004DB8) +DISPLAY_LIST(manta_seg5_dl_05004E60) +DISPLAY_LIST(manta_seg5_dl_05004E90) +DISPLAY_LIST(manta_seg5_dl_05004FA0) +DISPLAY_LIST(manta_seg5_dl_05005038) +DISPLAY_LIST(manta_seg5_dl_05005248) +DISPLAY_LIST(manta_seg5_dl_05005288) +DISPLAY_LIST(manta_seg5_dl_05005308) +DISPLAY_LIST(manta_seg5_dl_05005358) +DISPLAY_LIST(manta_seg5_dl_050054F0) +DISPLAY_LIST(manta_seg5_dl_05005558) +DISPLAY_LIST(manta_seg5_dl_050055A8) +DISPLAY_LIST(manta_seg5_dl_050056E0) +DISPLAY_LIST(manta_seg5_dl_05005730) +DISPLAY_LIST(manta_seg5_dl_05005768) +DISPLAY_LIST(manta_seg5_dl_05005880) +DISPLAY_LIST(manta_seg5_dl_05005918) +DISPLAY_LIST(manta_seg5_dl_05005B28) +DISPLAY_LIST(manta_seg5_dl_05005B68) +DISPLAY_LIST(manta_seg5_dl_05005BE8) +DISPLAY_LIST(manta_seg5_dl_05005C38) +DISPLAY_LIST(manta_seg5_dl_05005DD0) +DISPLAY_LIST(manta_seg5_dl_05005E38) +DISPLAY_LIST(manta_seg5_dl_05005E88) +DISPLAY_LIST(manta_seg5_dl_05005FC0) +DISPLAY_LIST(manta_seg5_dl_05006010) +DISPLAY_LIST(manta_seg5_dl_05006048) +DISPLAY_LIST(manta_seg5_dl_05006510) +DISPLAY_LIST(manta_seg5_dl_05006588) +DISPLAY_LIST(manta_seg5_dl_050065F0) +DISPLAY_LIST(manta_seg5_dl_050066D0) +DISPLAY_LIST(manta_seg5_dl_05006750) +DISPLAY_LIST(manta_seg5_dl_05006B08) +DISPLAY_LIST(manta_seg5_dl_05006B70) +DISPLAY_LIST(manta_seg5_dl_05006C08) +DISPLAY_LIST(mario_butt_dl) +DISPLAY_LIST(mario_butt) +DISPLAY_LIST(mario_metal_butt) +DISPLAY_LIST(mario_left_arm_shared_dl) +DISPLAY_LIST(mario_left_arm) +DISPLAY_LIST(mario_left_forearm_shared_dl) +DISPLAY_LIST(mario_left_hand_closed_shared_dl) +DISPLAY_LIST(mario_left_hand_closed) +DISPLAY_LIST(mario_right_arm_shared_dl) +DISPLAY_LIST(mario_right_arm) +DISPLAY_LIST(mario_right_forearm_shared_dl) +DISPLAY_LIST(mario_right_hand_closed_dl) +DISPLAY_LIST(mario_right_hand_closed) +DISPLAY_LIST(mario_metal_right_hand_closed) +DISPLAY_LIST(mario_left_thigh_dl) +DISPLAY_LIST(mario_left_thigh) +DISPLAY_LIST(mario_metal_left_thigh) +DISPLAY_LIST(mario_left_leg_shared_dl) +DISPLAY_LIST(mario_left_foot_shared_dl) +DISPLAY_LIST(mario_left_foot) +DISPLAY_LIST(mario_right_thigh_shared_dl) +DISPLAY_LIST(mario_right_thigh) +DISPLAY_LIST(mario_right_leg_shared_dl) +DISPLAY_LIST(mario_right_foot_dl) +DISPLAY_LIST(mario_right_foot) +DISPLAY_LIST(mario_metal_right_foot) +DISPLAY_LIST(mario_yellow_button_dl) +DISPLAY_LIST(mario_pants_overalls_shared_dl) +DISPLAY_LIST(mario_tshirt_shared_dl) +DISPLAY_LIST(mario_torso_dl) +DISPLAY_LIST(mario_torso) +DISPLAY_LIST(mario_metal_torso_shared_dl) +DISPLAY_LIST(mario_m_logo_dl) +DISPLAY_LIST(mario_eyes_cap_on_dl) +DISPLAY_LIST(mario_hair_sideburn_cap_on_dl) +DISPLAY_LIST(mario_mustache_cap_on_dl) +DISPLAY_LIST(mario_face_part_cap_on_dl) +DISPLAY_LIST(mario_face_cap_dl) +DISPLAY_LIST(mario_face_back_hair_cap_on_dl) +DISPLAY_LIST(mario_hair_sideburn_decal_cap_on) +DISPLAY_LIST(mario_m_logo_decal) +DISPLAY_LIST(mario_face_cap_on_dl) +DISPLAY_LIST(mario_cap_on_eyes_front) +DISPLAY_LIST(mario_cap_on_eyes_half_closed) +DISPLAY_LIST(mario_cap_on_eyes_closed) +DISPLAY_LIST(mario_cap_on_eyes_right) +DISPLAY_LIST(mario_cap_on_eyes_left) +DISPLAY_LIST(mario_cap_on_eyes_up) +DISPLAY_LIST(mario_cap_on_eyes_down) +DISPLAY_LIST(mario_cap_on_eyes_dead) +DISPLAY_LIST(mario_metal_cap_on_shared_dl) +DISPLAY_LIST(mario_eyes_cap_off_dl) +DISPLAY_LIST(mario_mustache_cap_off_dl) +DISPLAY_LIST(mario_hair_sideburn_cap_off_dl) +DISPLAY_LIST(mario_face_part_cap_off_dl) +DISPLAY_LIST(mario_face_hair_cap_off_dl) +DISPLAY_LIST(mario_hair_sideburn_decal_cap_off) +DISPLAY_LIST(mario_face_cap_off_dl) +DISPLAY_LIST(mario_cap_off_eyes_front) +DISPLAY_LIST(mario_cap_off_eyes_half_closed) +DISPLAY_LIST(mario_cap_off_eyes_closed) +DISPLAY_LIST(mario_cap_off_eyes_right) +DISPLAY_LIST(mario_cap_off_eyes_left) +DISPLAY_LIST(mario_cap_off_eyes_up) +DISPLAY_LIST(mario_cap_off_eyes_down) +DISPLAY_LIST(mario_cap_off_eyes_dead) +DISPLAY_LIST(mario_metal_cap_off_shared_dl) +DISPLAY_LIST(mario_left_hand_open_shared_dl) +DISPLAY_LIST(mario_left_hand_open) +DISPLAY_LIST(mario_right_hand_open_dl) +DISPLAY_LIST(mario_right_hand_open) +DISPLAY_LIST(mario_metal_right_hand_open) +DISPLAY_LIST(mario_right_hand_cap_m_logo_dl) +DISPLAY_LIST(mario_right_hand_cap_top_dl) +DISPLAY_LIST(mario_right_hand_cap_hand_position_dl) +DISPLAY_LIST(mario_right_hand_cap_bottom_dl) +DISPLAY_LIST(mario_right_hand_cap_decal) +DISPLAY_LIST(mario_right_hand_cap_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(mario_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_end_dl) +DISPLAY_LIST(mario_right_hand_cap) +DISPLAY_LIST(mario_right_hand_cap_wings) +DISPLAY_LIST(mario_right_hand_cap_wings_transparent) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(mario_right_hand_peace_shared_dl) +DISPLAY_LIST(mario_right_hand_peace) +DISPLAY_LIST(mario_wings_half_1_dl) +DISPLAY_LIST(mario_wings_half_2_dl) +DISPLAY_LIST(mario_cap_wings) +DISPLAY_LIST(mario_cap_wings_transparent) +DISPLAY_LIST(mario_metal_cap_wings) +DISPLAY_LIST(mario_metal_cap_wings_transparent) +DISPLAY_LIST(mario_material_revert_render_settings) +DISPLAY_LIST(mario_cap_seg3_dl_03022B30) +DISPLAY_LIST(mario_cap_seg3_dl_03022B68) +DISPLAY_LIST(mario_cap_seg3_dl_03022CC8) +DISPLAY_LIST(mario_cap_seg3_dl_03022D10) +DISPLAY_LIST(mario_cap_seg3_dl_03022E78) +DISPLAY_LIST(mario_cap_seg3_dl_03022EA8) +DISPLAY_LIST(mario_cap_seg3_dl_03022ED8) +DISPLAY_LIST(mario_cap_seg3_dl_03022ED8_metal) +DISPLAY_LIST(mario_cap_seg3_dl_03022F20) +DISPLAY_LIST(mario_cap_m_logo_decal) +DISPLAY_LIST(mario_cap_seg3_dl_03022F48) +DISPLAY_LIST(mario_cap_seg3_dl_03022FF8) +DISPLAY_LIST(mario_cap_seg3_dl_030230B0) +DISPLAY_LIST(mario_cap_seg3_dl_03023108) +DISPLAY_LIST(mario_cap_seg3_dl_03023160) +DISPLAY_LIST(mario_cap_seg3_dl_03023298) +DISPLAY_LIST(mario_cap_material_revert_render_settings) +DISPLAY_LIST(metal_box_seg8_dl_08024B18) +DISPLAY_LIST(metal_box_dl) +DISPLAY_LIST(mips_seg6_dl_06010600) +DISPLAY_LIST(mips_seg6_dl_06010748) +DISPLAY_LIST(mips_seg6_dl_060107B8) +DISPLAY_LIST(mips_seg6_dl_06010A98) +DISPLAY_LIST(mips_seg6_dl_06010C40) +DISPLAY_LIST(mips_seg6_dl_06010DB0) +DISPLAY_LIST(mips_seg6_dl_06010E60) +DISPLAY_LIST(mips_seg6_dl_06010FF8) +DISPLAY_LIST(mips_seg6_dl_060110B0) +DISPLAY_LIST(mips_seg6_dl_06011240) +DISPLAY_LIST(mips_seg6_dl_06011310) +DISPLAY_LIST(mips_seg6_dl_06011470) +DISPLAY_LIST(mips_seg6_dl_06011520) +DISPLAY_LIST(mips_seg6_dl_060116B0) +DISPLAY_LIST(mips_seg6_dl_06011780) +DISPLAY_LIST(mips_seg6_dl_060118E0) +DISPLAY_LIST(mips_seg6_dl_06011990) +DISPLAY_LIST(mips_seg6_dl_06011B00) +DISPLAY_LIST(mips_seg6_dl_06011BB0) +DISPLAY_LIST(mips_seg6_dl_06011D10) +DISPLAY_LIST(mips_seg6_dl_06011DB0) +DISPLAY_LIST(mips_seg6_dl_06011E88) +DISPLAY_LIST(mips_seg6_dl_06011ED8) +DISPLAY_LIST(mips_seg6_dl_06011F70) +DISPLAY_LIST(mips_seg6_dl_06011FC0) +DISPLAY_LIST(mist_seg3_dl_03000880) +DISPLAY_LIST(mist_seg3_dl_03000920) +DISPLAY_LIST(moneybag_seg6_dl_06005300) +DISPLAY_LIST(moneybag_seg6_dl_06005358) +DISPLAY_LIST(moneybag_seg6_dl_060053B8) +DISPLAY_LIST(moneybag_seg6_dl_06005590) +DISPLAY_LIST(moneybag_seg6_dl_06005618) +DISPLAY_LIST(moneybag_seg6_dl_06005688) +DISPLAY_LIST(moneybag_seg6_dl_06005708) +DISPLAY_LIST(moneybag_seg6_dl_06005750) +DISPLAY_LIST(moneybag_seg6_dl_06005980) +DISPLAY_LIST(moneybag_seg6_dl_060059F0) +DISPLAY_LIST(monty_mole_seg5_dl_05003208) +DISPLAY_LIST(monty_mole_seg5_dl_050032A0) +DISPLAY_LIST(monty_mole_seg5_dl_05003438) +DISPLAY_LIST(monty_mole_seg5_dl_050034A0) +DISPLAY_LIST(monty_mole_seg5_dl_05003518) +DISPLAY_LIST(monty_mole_seg5_dl_05003730) +DISPLAY_LIST(monty_mole_seg5_dl_050037A8) +DISPLAY_LIST(monty_mole_seg5_dl_05003820) +DISPLAY_LIST(monty_mole_seg5_dl_05003938) +DISPLAY_LIST(monty_mole_seg5_dl_050039D0) +DISPLAY_LIST(monty_mole_seg5_dl_05003B68) +DISPLAY_LIST(monty_mole_seg5_dl_05003BD0) +DISPLAY_LIST(monty_mole_seg5_dl_05003C48) +DISPLAY_LIST(monty_mole_seg5_dl_05003E60) +DISPLAY_LIST(monty_mole_seg5_dl_05003ED8) +DISPLAY_LIST(monty_mole_seg5_dl_05003F50) +DISPLAY_LIST(monty_mole_seg5_dl_050042B8) +DISPLAY_LIST(monty_mole_seg5_dl_05004368) +DISPLAY_LIST(monty_mole_seg5_dl_050044B0) +DISPLAY_LIST(monty_mole_seg5_dl_050049B0) +DISPLAY_LIST(monty_mole_seg5_dl_05004A10) +DISPLAY_LIST(monty_mole_seg5_dl_05004B50) +DISPLAY_LIST(monty_mole_seg5_dl_05004BE0) +DISPLAY_LIST(monty_mole_seg5_dl_05004C00) +DISPLAY_LIST(monty_mole_seg5_dl_05004CE8) +DISPLAY_LIST(monty_mole_seg5_dl_05004D30) +DISPLAY_LIST(monty_mole_hole_seg5_dl_05000840) +DISPLAY_LIST(mr_i_eyeball_seg6_dl_06002080) +DISPLAY_LIST(mr_i_iris_seg6_dl_06004170) +DISPLAY_LIST(mr_i_iris_seg6_dl_060041D8) +DISPLAY_LIST(mr_i_iris_seg6_dl_060041F0) +DISPLAY_LIST(mr_i_iris_seg6_dl_06004208) +DISPLAY_LIST(mr_i_iris_seg6_dl_06004220) +DISPLAY_LIST(mushroom_1up_seg3_dl_0302A628) +DISPLAY_LIST(mushroom_1up_seg3_dl_0302A660) +DISPLAY_LIST(geo_num3_switch) +DISPLAY_LIST(peach_seg5_dl_05005648) +DISPLAY_LIST(peach_seg5_dl_05005750) +DISPLAY_LIST(peach_seg5_dl_05005780) +DISPLAY_LIST(peach_seg5_dl_050058B8) +DISPLAY_LIST(peach_seg5_dl_050058E0) +DISPLAY_LIST(peach_seg5_dl_05005C48) +DISPLAY_LIST(peach_seg5_dl_05005CB0) +DISPLAY_LIST(peach_seg5_dl_05005CE0) +DISPLAY_LIST(peach_seg5_dl_05005D38) +DISPLAY_LIST(peach_seg5_dl_05005D90) +DISPLAY_LIST(peach_seg5_dl_05005DE8) +DISPLAY_LIST(peach_seg5_dl_05005E40) +DISPLAY_LIST(peach_seg5_dl_05005E98) +DISPLAY_LIST(peach_seg5_dl_05005EF0) +DISPLAY_LIST(peach_seg5_dl_05005F48) +DISPLAY_LIST(peach_seg5_dl_05006058) +DISPLAY_LIST(peach_seg5_dl_050060E0) +DISPLAY_LIST(peach_seg5_dl_05006728) +DISPLAY_LIST(peach_seg5_dl_05006798) +DISPLAY_LIST(peach_seg5_dl_05006A18) +DISPLAY_LIST(peach_seg5_dl_05006FA8) +DISPLAY_LIST(peach_seg5_dl_05007230) +DISPLAY_LIST(peach_seg5_us_dl_05007288) +DISPLAY_LIST(peach_seg5_dl_05007810) +DISPLAY_LIST(peach_seg5_dl_05007AB8) +DISPLAY_LIST(peach_seg5_dl_05007CE8) +DISPLAY_LIST(peach_seg5_dl_05007E58) +DISPLAY_LIST(peach_seg5_dl_050080B8) +DISPLAY_LIST(peach_seg5_dl_05008228) +DISPLAY_LIST(peach_seg5_dl_05008428) +DISPLAY_LIST(peach_seg5_dl_050084C0) +DISPLAY_LIST(peach_seg5_dl_05008560) +DISPLAY_LIST(peach_seg5_dl_050086C8) +DISPLAY_LIST(peach_seg5_dl_050087A8) +DISPLAY_LIST(peach_seg5_dl_05008978) +DISPLAY_LIST(peach_seg5_dl_05008A10) +DISPLAY_LIST(peach_seg5_dl_05008AB0) +DISPLAY_LIST(peach_seg5_dl_05008C18) +DISPLAY_LIST(peach_seg5_dl_05008CF8) +DISPLAY_LIST(peach_seg5_dl_05008E38) +DISPLAY_LIST(peach_seg5_dl_05008F20) +DISPLAY_LIST(peach_seg5_dl_05009060) +DISPLAY_LIST(peach_seg5_dl_05009148) +DISPLAY_LIST(peach_seg5_dl_05009388) +DISPLAY_LIST(peach_seg5_dl_05009500) +DISPLAY_LIST(peach_seg5_dl_050097C0) +DISPLAY_LIST(peach_seg5_dl_05009940) +DISPLAY_LIST(peach_seg5_dl_05009E20) +DISPLAY_LIST(peach_seg5_dl_0500A0A8) +DISPLAY_LIST(peach_seg5_us_dl_0500A188) +DISPLAY_LIST(pebble_seg3_dl_0301CB00) +DISPLAY_LIST(penguin_seg5_dl_05006188) +DISPLAY_LIST(penguin_seg5_dl_050061C8) +DISPLAY_LIST(penguin_seg5_dl_050061F8) +DISPLAY_LIST(penguin_seg5_dl_05006380) +DISPLAY_LIST(penguin_seg5_dl_050063C8) +DISPLAY_LIST(penguin_seg5_dl_05006428) +DISPLAY_LIST(penguin_seg5_dl_05006458) +DISPLAY_LIST(penguin_seg5_dl_05006488) +DISPLAY_LIST(penguin_seg5_dl_050064B8) +DISPLAY_LIST(penguin_seg5_dl_050064E8) +DISPLAY_LIST(penguin_seg5_dl_05007198) +DISPLAY_LIST(penguin_seg5_dl_050071E8) +DISPLAY_LIST(penguin_seg5_dl_05007238) +DISPLAY_LIST(penguin_seg5_dl_050072C8) +DISPLAY_LIST(penguin_seg5_dl_05007358) +DISPLAY_LIST(penguin_seg5_dl_05007540) +DISPLAY_LIST(piranha_plant_seg6_dl_06015438) +DISPLAY_LIST(piranha_plant_seg6_dl_06015480) +DISPLAY_LIST(piranha_plant_seg6_dl_06015530) +DISPLAY_LIST(piranha_plant_seg6_dl_06015578) +DISPLAY_LIST(piranha_plant_seg6_dl_06015798) +DISPLAY_LIST(piranha_plant_seg6_dl_06015850) +DISPLAY_LIST(piranha_plant_seg6_dl_06015E40) +DISPLAY_LIST(piranha_plant_seg6_dl_06015EA8) +DISPLAY_LIST(piranha_plant_seg6_dl_06015F68) +DISPLAY_LIST(piranha_plant_seg6_dl_06016060) +DISPLAY_LIST(piranha_plant_seg6_dl_060160B0) +DISPLAY_LIST(piranha_plant_seg6_dl_06016120) +DISPLAY_LIST(piranha_plant_seg6_dl_06016750) +DISPLAY_LIST(piranha_plant_seg6_dl_060167B8) +DISPLAY_LIST(piranha_plant_seg6_dl_06016890) +DISPLAY_LIST(piranha_plant_seg6_dl_06016960) +DISPLAY_LIST(piranha_plant_seg6_dl_060169A8) +DISPLAY_LIST(piranha_plant_seg6_dl_060169E8) +DISPLAY_LIST(piranha_plant_seg6_dl_06016A78) +DISPLAY_LIST(piranha_plant_seg6_dl_06016BA8) +DISPLAY_LIST(piranha_plant_seg6_dl_06016C10) +DISPLAY_LIST(piranha_plant_seg6_dl_06016D30) +DISPLAY_LIST(piranha_plant_seg6_dl_06016D98) +DISPLAY_LIST(piranha_plant_seg6_dl_06016EB8) +DISPLAY_LIST(piranha_plant_seg6_dl_06016F20) +DISPLAY_LIST(pokey_seg5_dl_05012750) +DISPLAY_LIST(pokey_seg5_dl_05012798) +DISPLAY_LIST(pokey_seg5_dl_050127D8) +DISPLAY_LIST(pokey_seg5_dl_05012808) +DISPLAY_LIST(pokey_seg5_dl_05013078) +DISPLAY_LIST(pokey_seg5_dl_050130B0) +DISPLAY_LIST(poundable_pole_seg6_dl_060022F0) +DISPLAY_LIST(poundable_pole_seg6_dl_06002358) +DISPLAY_LIST(poundable_pole_seg6_dl_06002410) +DISPLAY_LIST(dl_power_meter_base) +DISPLAY_LIST(dl_power_meter_health_segments_begin) +DISPLAY_LIST(dl_power_meter_health_segments_end) +DISPLAY_LIST(purple_switch_seg8_dl_0800C668) +DISPLAY_LIST(purple_switch_seg8_dl_0800C6E0) +DISPLAY_LIST(purple_switch_seg8_dl_0800C718) +DISPLAY_LIST(sand_seg3_dl_0302BCD0) +DISPLAY_LIST(scuttlebug_seg6_dl_06013988) +DISPLAY_LIST(scuttlebug_seg6_dl_060139C0) +DISPLAY_LIST(scuttlebug_seg6_dl_060139F8) +DISPLAY_LIST(scuttlebug_seg6_dl_06013AB0) +DISPLAY_LIST(scuttlebug_seg6_dl_06013AE8) +DISPLAY_LIST(scuttlebug_seg6_dl_06013B98) +DISPLAY_LIST(scuttlebug_seg6_dl_06013BD0) +DISPLAY_LIST(scuttlebug_seg6_dl_06013C80) +DISPLAY_LIST(scuttlebug_seg6_dl_06013CB8) +DISPLAY_LIST(scuttlebug_seg6_dl_06013D68) +DISPLAY_LIST(scuttlebug_seg6_dl_06013DA0) +DISPLAY_LIST(scuttlebug_seg6_dl_06013FC8) +DISPLAY_LIST(scuttlebug_seg6_dl_060140F0) +DISPLAY_LIST(scuttlebug_seg6_dl_06014150) +DISPLAY_LIST(scuttlebug_seg6_dl_06014188) +DISPLAY_LIST(scuttlebug_seg6_dl_06014238) +DISPLAY_LIST(scuttlebug_seg6_dl_06014270) +DISPLAY_LIST(scuttlebug_seg6_dl_06014338) +DISPLAY_LIST(scuttlebug_seg6_dl_06014378) +DISPLAY_LIST(seaweed_seg6_dl_06009E50) +DISPLAY_LIST(seaweed_seg6_dl_06009E98) +DISPLAY_LIST(seaweed_seg6_dl_06009F48) +DISPLAY_LIST(seaweed_seg6_dl_06009F90) +DISPLAY_LIST(seaweed_seg6_dl_0600A040) +DISPLAY_LIST(seaweed_seg6_dl_0600A088) +DISPLAY_LIST(seaweed_seg6_dl_0600A138) +DISPLAY_LIST(seaweed_seg6_dl_0600A180) +DISPLAY_LIST(skeeter_seg6_dl_060009D0) +DISPLAY_LIST(skeeter_seg6_dl_06000A08) +DISPLAY_LIST(skeeter_seg6_dl_06000AB8) +DISPLAY_LIST(skeeter_seg6_dl_06000AF0) +DISPLAY_LIST(skeeter_seg6_dl_06000BA0) +DISPLAY_LIST(skeeter_seg6_dl_06000BD8) +DISPLAY_LIST(skeeter_seg6_dl_06000C78) +DISPLAY_LIST(skeeter_seg6_dl_06000CA8) +DISPLAY_LIST(skeeter_seg6_dl_06000D48) +DISPLAY_LIST(skeeter_seg6_dl_06000D78) +DISPLAY_LIST(skeeter_seg6_dl_06000E60) +DISPLAY_LIST(skeeter_seg6_dl_06000EC0) +DISPLAY_LIST(skeeter_seg6_dl_06003FF0) +DISPLAY_LIST(skeeter_seg6_dl_06004040) +DISPLAY_LIST(skeeter_seg6_dl_06004070) +DISPLAY_LIST(skeeter_seg6_dl_060040A0) +DISPLAY_LIST(skeeter_seg6_dl_060040F0) +DISPLAY_LIST(skeeter_seg6_dl_06004120) +DISPLAY_LIST(skeeter_seg6_dl_06004150) +DISPLAY_LIST(skeeter_seg6_dl_060041A0) +DISPLAY_LIST(skeeter_seg6_dl_060041D0) +DISPLAY_LIST(skeeter_seg6_dl_06004200) +DISPLAY_LIST(skeeter_seg6_dl_060045C8) +DISPLAY_LIST(skeeter_seg6_dl_06004618) +DISPLAY_LIST(skeeter_seg6_dl_06004648) +DISPLAY_LIST(skeeter_seg6_dl_06004678) +DISPLAY_LIST(skeeter_seg6_dl_06004A40) +DISPLAY_LIST(skeeter_seg6_dl_06005328) +DISPLAY_LIST(skeeter_seg6_dl_06005358) +DISPLAY_LIST(small_key_seg5_dl_05006700) +DISPLAY_LIST(small_key_seg5_dl_05006A08) +DISPLAY_LIST(small_key_seg5_dl_05006A28) +DISPLAY_LIST(small_key_seg5_dl_05006A48) +DISPLAY_LIST(small_key_seg5_dl_05006A68) +DISPLAY_LIST(smoke_seg5_dl_05007AC0) +DISPLAY_LIST(smoke_seg5_dl_05007AF8) +DISPLAY_LIST(snowman_seg5_dl_0500C4C8) +DISPLAY_LIST(snowman_seg5_dl_0500C500) +DISPLAY_LIST(snowman_seg5_dl_0500C5B0) +DISPLAY_LIST(snowman_seg5_dl_0500C5E8) +DISPLAY_LIST(snowman_seg5_dl_0500C620) +DISPLAY_LIST(snowman_seg5_dl_0500C718) +DISPLAY_LIST(snowman_seg5_dl_0500C760) +DISPLAY_LIST(snowman_seg5_dl_0500C978) +DISPLAY_LIST(snowman_seg5_dl_0500CAA8) +DISPLAY_LIST(snowman_seg5_dl_0500CB88) +DISPLAY_LIST(snowman_seg5_dl_0500CBC0) +DISPLAY_LIST(snowman_seg5_dl_0500CBF8) +DISPLAY_LIST(snowman_seg5_dl_0500CCB0) +DISPLAY_LIST(snowman_seg5_dl_0500CCE8) +DISPLAY_LIST(snufit_seg6_dl_060091E0) +DISPLAY_LIST(snufit_seg6_dl_06009278) +DISPLAY_LIST(snufit_seg6_dl_060092F0) +DISPLAY_LIST(snufit_seg6_dl_06009498) +DISPLAY_LIST(snufit_seg6_dl_06009668) +DISPLAY_LIST(snufit_seg6_dl_06009700) +DISPLAY_LIST(snufit_seg6_dl_06009748) +DISPLAY_LIST(snufit_seg6_dl_060098A0) +DISPLAY_LIST(snufit_seg6_dl_06009938) +DISPLAY_LIST(snufit_seg6_dl_060099D8) +DISPLAY_LIST(snufit_seg6_dl_06009A10) +DISPLAY_LIST(snufit_seg6_dl_06009B18) +DISPLAY_LIST(snufit_seg6_dl_06009B68) +DISPLAY_LIST(sparkles_seg4_dl_0402A490) +DISPLAY_LIST(sparkles_seg4_dl_0402A4F8) +DISPLAY_LIST(sparkles_seg4_dl_0402A510) +DISPLAY_LIST(sparkles_seg4_dl_0402A528) +DISPLAY_LIST(sparkles_seg4_dl_0402A540) +DISPLAY_LIST(sparkles_seg4_dl_0402A558) +DISPLAY_LIST(sparkles_seg4_dl_0402A570) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035288) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035300) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035318) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035330) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035348) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035360) +DISPLAY_LIST(spindrift_seg5_dl_050002A0) +DISPLAY_LIST(spindrift_seg5_dl_05000328) +DISPLAY_LIST(spindrift_seg5_dl_05002710) +DISPLAY_LIST(spindrift_seg5_dl_05002748) +DISPLAY_LIST(spindrift_seg5_dl_050027F8) +DISPLAY_LIST(spindrift_seg5_dl_05002830) +DISPLAY_LIST(spindrift_seg5_dl_050028D0) +DISPLAY_LIST(spindrift_seg5_dl_05002900) +DISPLAY_LIST(spindrift_seg5_dl_050029C8) +DISPLAY_LIST(spindrift_seg5_dl_05002A20) +DISPLAY_LIST(spindrift_seg5_dl_05002AD8) +DISPLAY_LIST(spindrift_seg5_dl_05002B30) +DISPLAY_LIST(spindrift_seg5_dl_05002C98) +DISPLAY_LIST(spindrift_seg5_dl_05002D08) +DISPLAY_LIST(spiny_seg5_dl_05016418) +DISPLAY_LIST(spiny_seg5_dl_050164E0) +DISPLAY_LIST(spiny_seg5_dl_050165A8) +DISPLAY_LIST(spiny_seg5_dl_05016670) +DISPLAY_LIST(spiny_seg5_dl_05016738) +DISPLAY_LIST(spiny_seg5_dl_05016A48) +DISPLAY_LIST(spiny_egg_seg5_dl_050151A8) +DISPLAY_LIST(spiny_egg_seg5_dl_050151E0) +DISPLAY_LIST(spiny_egg_seg5_dl_05015218) +DISPLAY_LIST(spiny_egg_seg5_dl_05015250) +DISPLAY_LIST(spiny_egg_seg5_dl_05015288) +DISPLAY_LIST(spiny_egg_seg5_dl_050152C0) +DISPLAY_LIST(spiny_egg_seg5_dl_050152F8) +DISPLAY_LIST(spiny_egg_seg5_dl_05015330) +DISPLAY_LIST(spiny_egg_seg5_dl_05015368) +DISPLAY_LIST(spiny_egg_seg5_dl_05015740) +DISPLAY_LIST(springboard_checkerboard_seg5_dl_050016B8) +DISPLAY_LIST(springboard_spring_seg5_dl_05001800) +DISPLAY_LIST(springboard_checkerboard_seg5_dl_05001900) +DISPLAY_LIST(star_seg3_dl_0302B7B0) +DISPLAY_LIST(star_seg3_dl_0302B870) +DISPLAY_LIST(star_seg3_dl_0302B9C0) +DISPLAY_LIST(star_seg3_dl_0302BA18) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025148) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025190) +DISPLAY_LIST(stomp_smoke_seg4_dl_040251C8) +DISPLAY_LIST(stomp_smoke_seg4_dl_040251E0) +DISPLAY_LIST(stomp_smoke_seg4_dl_040251F8) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025210) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025228) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025240) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025258) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025270) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025288) +DISPLAY_LIST(stomp_smoke_seg4_dl_040252A0) +DISPLAY_LIST(stomp_smoke_seg4_dl_040252B8) +DISPLAY_LIST(stomp_smoke_seg4_dl_040252D0) +DISPLAY_LIST(stomp_smoke_seg4_dl_040252E8) +DISPLAY_LIST(stomp_smoke_seg4_dl_04025300) +DISPLAY_LIST(sushi_seg5_dl_05009CC0) +DISPLAY_LIST(sushi_seg5_dl_05009DD0) +DISPLAY_LIST(sushi_seg5_dl_05009F30) +DISPLAY_LIST(sushi_seg5_dl_0500A008) +DISPLAY_LIST(sushi_seg5_dl_0500A0E8) +DISPLAY_LIST(sushi_seg5_dl_0500A160) +DISPLAY_LIST(sushi_seg5_dl_0500A580) +DISPLAY_LIST(sushi_seg5_dl_0500A748) +DISPLAY_LIST(sushi_seg5_dl_0500A768) +DISPLAY_LIST(sushi_seg5_dl_0500A860) +DISPLAY_LIST(sushi_seg5_dl_0500A8A8) +DISPLAY_LIST(sushi_seg5_dl_0500A958) +DISPLAY_LIST(sushi_seg5_dl_0500A990) +DISPLAY_LIST(swoop_seg6_dl_060065B8) +DISPLAY_LIST(swoop_seg6_dl_060066F8) +DISPLAY_LIST(swoop_seg6_dl_06006758) +DISPLAY_LIST(swoop_seg6_dl_06006848) +DISPLAY_LIST(swoop_seg6_dl_06006880) +DISPLAY_LIST(swoop_seg6_dl_06006A10) +DISPLAY_LIST(swoop_seg6_dl_06006A68) +DISPLAY_LIST(swoop_seg6_dl_06006A88) +DISPLAY_LIST(swoop_seg6_dl_06006B98) +DISPLAY_LIST(swoop_seg6_dl_06006BD0) +DISPLAY_LIST(swoop_seg6_dl_06006CC8) +DISPLAY_LIST(swoop_seg6_dl_06006D00) +DISPLAY_LIST(unknown_seg8_dl_08026260) +DISPLAY_LIST(thwomp_seg5_dl_0500B570) +DISPLAY_LIST(thwomp_seg5_dl_0500B718) +DISPLAY_LIST(thwomp_seg5_dl_0500B750) +DISPLAY_LIST(toad_seg6_dl_06007300) +DISPLAY_LIST(toad_seg6_dl_06007498) +DISPLAY_LIST(toad_seg6_dl_060076C0) +DISPLAY_LIST(toad_seg6_dl_06007710) +DISPLAY_LIST(toad_seg6_us_dl_06007788) +DISPLAY_LIST(toad_seg6_dl_06007960) +DISPLAY_LIST(toad_seg6_dl_06007A48) +DISPLAY_LIST(toad_seg6_us_dl_06007B00) +DISPLAY_LIST(toad_seg6_dl_06007D10) +DISPLAY_LIST(toad_seg6_dl_06007EB0) +DISPLAY_LIST(toad_seg6_dl_060080C0) +DISPLAY_LIST(toad_seg6_dl_060081F8) +DISPLAY_LIST(toad_seg6_dl_060083E8) +DISPLAY_LIST(toad_seg6_dl_06008520) +DISPLAY_LIST(toad_seg6_us_dl_06008608) +DISPLAY_LIST(toad_seg6_dl_06008748) +DISPLAY_LIST(toad_seg6_dl_06008890) +DISPLAY_LIST(toad_seg6_dl_06008A90) +DISPLAY_LIST(toad_seg6_dl_06008BD8) +DISPLAY_LIST(toad_cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_cap_mesh_layer_5_tri_0) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_1) +DISPLAY_LIST(mat_toad_cap_metal) +DISPLAY_LIST(mat_revert_toad_cap_metal) +DISPLAY_LIST(mat_toad_cap_base) +DISPLAY_LIST(mat_toad_cap_inside) +DISPLAY_LIST(mat_toad_cap_spots) +DISPLAY_LIST(mat_toad_cap_wing) +DISPLAY_LIST(mat_revert_toad_cap_wing) +DISPLAY_LIST(mat_toad_cap_wing_tip) +DISPLAY_LIST(mat_revert_toad_cap_wing_tip) +DISPLAY_LIST(mat_toad_cap_metal_wing) +DISPLAY_LIST(mat_revert_toad_cap_metal_wing) +DISPLAY_LIST(mat_toad_cap_metal_wing_tip) +DISPLAY_LIST(mat_revert_toad_cap_metal_wing_tip) +DISPLAY_LIST(toad_cap_mesh_layer_1) +DISPLAY_LIST(toad_cap_mesh_layer_5) +DISPLAY_LIST(toad_cap_Metal_Cap_mesh_layer_1) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_cap_Winged_Metal_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_cap_material_revert_render_settings) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_2) +DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_wings_half_1_dl) +DISPLAY_LIST(toad_player_wings_half_2_dl) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(mat_toad_player_white) +DISPLAY_LIST(mat_toad_player_beige) +DISPLAY_LIST(mat_toad_player_vest) +DISPLAY_LIST(mat_revert_toad_player_vest) +DISPLAY_LIST(mat_toad_player_metal) +DISPLAY_LIST(mat_revert_toad_player_metal) +DISPLAY_LIST(mat_toad_player_metal_vest) +DISPLAY_LIST(mat_revert_toad_player_metal_vest) +DISPLAY_LIST(mat_toad_player_cap_base) +DISPLAY_LIST(mat_toad_player_cap_spots) +DISPLAY_LIST(mat_toad_player_hair) +DISPLAY_LIST(mat_revert_toad_player_hair) +DISPLAY_LIST(mat_toad_player_eyes_center) +DISPLAY_LIST(mat_revert_toad_player_eyes_center) +DISPLAY_LIST(mat_toad_player_eyes_half_closed) +DISPLAY_LIST(mat_revert_toad_player_eyes_half_closed) +DISPLAY_LIST(mat_toad_player_eyes_closed) +DISPLAY_LIST(mat_revert_toad_player_eyes_closed) +DISPLAY_LIST(mat_toad_player_eyes_right) +DISPLAY_LIST(mat_revert_toad_player_eyes_right) +DISPLAY_LIST(mat_toad_player_eyes_left) +DISPLAY_LIST(mat_revert_toad_player_eyes_left) +DISPLAY_LIST(mat_toad_player_eyes_up) +DISPLAY_LIST(mat_revert_toad_player_eyes_up) +DISPLAY_LIST(mat_toad_player_eyes_down) +DISPLAY_LIST(mat_revert_toad_player_eyes_down) +DISPLAY_LIST(mat_toad_player_eyes_dead) +DISPLAY_LIST(mat_revert_toad_player_eyes_dead) +DISPLAY_LIST(mat_toad_player_wing) +DISPLAY_LIST(mat_revert_toad_player_wing) +DISPLAY_LIST(mat_toad_player_wing_tip) +DISPLAY_LIST(mat_revert_toad_player_wing_tip) +DISPLAY_LIST(mat_toad_player_metal_wing) +DISPLAY_LIST(mat_revert_toad_player_metal_wing) +DISPLAY_LIST(mat_toad_player_metal_wing_tip) +DISPLAY_LIST(mat_revert_toad_player_metal_wing_tip) +DISPLAY_LIST(mat_toad_player_toad_cap_inside) +DISPLAY_LIST(mat_toad_player_brown) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_cap_base) +DISPLAY_LIST(toad_player_cap_decal) +DISPLAY_LIST(toad_player_metal_cap) +DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_half_closed_1) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_closed_2) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_right_3) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_left_4) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_up_5) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_down_6) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_dead_7) +DISPLAY_LIST(toad_player_cap_wings) +DISPLAY_LIST(toad_player_metal_cap_wings) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_right_hand_cap) +DISPLAY_LIST(toad_player_right_hand_cap_metal) +DISPLAY_LIST(toad_player_right_hand_cap_decal) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_material_revert_render_settings) +DISPLAY_LIST(tornado_seg5_dl_05014450) +DISPLAY_LIST(tornado_seg5_dl_050145C0) +DISPLAY_LIST(transparent_star_seg3_dl_0302C560) +DISPLAY_LIST(transparent_star_seg3_dl_0302C620) +DISPLAY_LIST(treasure_chest_seg6_dl_06016D58) +DISPLAY_LIST(treasure_chest_seg6_dl_06016DA0) +DISPLAY_LIST(treasure_chest_seg6_dl_06016E18) +DISPLAY_LIST(treasure_chest_seg6_dl_06016EE0) +DISPLAY_LIST(treasure_chest_seg6_dl_06016F90) +DISPLAY_LIST(treasure_chest_seg6_dl_06017680) +DISPLAY_LIST(treasure_chest_seg6_dl_06017790) +DISPLAY_LIST(treasure_chest_seg6_dl_06017810) +DISPLAY_LIST(treasure_chest_seg6_dl_060178C0) +DISPLAY_LIST(tree_seg3_dl_0302FE88) +DISPLAY_LIST(tree_seg3_dl_0302FEB8) +DISPLAY_LIST(tree_seg3_dl_0302FEE8) +DISPLAY_LIST(tree_seg3_dl_03030FA0) +DISPLAY_LIST(tree_seg3_dl_03032088) +DISPLAY_LIST(tree_seg3_dl_03032170) +DISPLAY_LIST(tree_seg3_dl_03033258) +DISPLAY_LIST(ukiki_seg5_dl_0500B040) +DISPLAY_LIST(ukiki_seg5_dl_0500B1D8) +DISPLAY_LIST(ukiki_seg5_dl_0500B278) +DISPLAY_LIST(ukiki_seg5_dl_0500B2B8) +DISPLAY_LIST(ukiki_seg5_dl_0500B2E8) +DISPLAY_LIST(ukiki_seg5_dl_0500B310) +DISPLAY_LIST(ukiki_seg5_dl_0500B660) +DISPLAY_LIST(ukiki_seg5_dl_0500B7E8) +DISPLAY_LIST(ukiki_seg5_dl_0500B820) +DISPLAY_LIST(ukiki_seg5_dl_0500B920) +DISPLAY_LIST(ukiki_seg5_dl_0500B988) +DISPLAY_LIST(ukiki_seg5_dl_0500BA90) +DISPLAY_LIST(ukiki_seg5_dl_0500BB28) +DISPLAY_LIST(ukiki_seg5_dl_0500BC10) +DISPLAY_LIST(ukiki_seg5_dl_0500BC78) +DISPLAY_LIST(ukiki_seg5_dl_0500BDA0) +DISPLAY_LIST(ukiki_seg5_dl_0500BE38) +DISPLAY_LIST(ukiki_seg5_dl_0500BF60) +DISPLAY_LIST(ukiki_seg5_dl_0500BFF8) +DISPLAY_LIST(ukiki_seg5_dl_0500C120) +DISPLAY_LIST(ukiki_seg5_dl_0500C1B8) +DISPLAY_LIST(ukiki_seg5_dl_0500C2D0) +DISPLAY_LIST(ukiki_seg5_dl_0500C368) +DISPLAY_LIST(ukiki_seg5_dl_0500C490) +DISPLAY_LIST(ukiki_seg5_dl_0500C528) +DISPLAY_LIST(ukiki_seg5_dl_0500C650) +DISPLAY_LIST(ukiki_seg5_dl_0500C6E8) +DISPLAY_LIST(ukiki_seg5_dl_0500C800) +DISPLAY_LIST(ukiki_seg5_dl_0500C898) +DISPLAY_LIST(ukiki_seg5_dl_0500C9B0) +DISPLAY_LIST(ukiki_seg5_dl_0500CA48) +DISPLAY_LIST(ukiki_seg5_dl_0500CF68) +DISPLAY_LIST(ukiki_seg5_dl_0500CFF0) +DISPLAY_LIST(ukiki_seg5_dl_0500D078) +DISPLAY_LIST(ukiki_seg5_dl_0500D108) +DISPLAY_LIST(unagi_seg5_dl_0500CCE0) +DISPLAY_LIST(unagi_seg5_dl_0500CD30) +DISPLAY_LIST(unagi_seg5_dl_0500CDD0) +DISPLAY_LIST(unagi_seg5_dl_0500CF88) +DISPLAY_LIST(unagi_seg5_dl_0500D038) +DISPLAY_LIST(unagi_seg5_dl_0500D050) +DISPLAY_LIST(unagi_seg5_dl_0500D1C0) +DISPLAY_LIST(unagi_seg5_dl_0500D268) +DISPLAY_LIST(unagi_seg5_dl_0500D3C0) +DISPLAY_LIST(unagi_seg5_dl_0500D468) +DISPLAY_LIST(unagi_seg5_dl_0500D5C0) +DISPLAY_LIST(unagi_seg5_dl_0500D668) +DISPLAY_LIST(unagi_seg5_dl_0500D7A0) +DISPLAY_LIST(unagi_seg5_dl_0500D828) +DISPLAY_LIST(unagi_seg5_dl_0500DB60) +DISPLAY_LIST(unagi_seg5_dl_0500DBC0) +DISPLAY_LIST(unagi_seg5_dl_0500DD08) +DISPLAY_LIST(unagi_seg5_dl_0500DE70) +DISPLAY_LIST(unagi_seg5_dl_0500DEB8) +DISPLAY_LIST(unagi_seg5_dl_0500E030) +DISPLAY_LIST(unagi_seg5_dl_0500E088) +DISPLAY_LIST(unagi_seg5_dl_0500E200) +DISPLAY_LIST(unagi_seg5_dl_0500E258) +DISPLAY_LIST(smoke_seg4_dl_040216A0) +DISPLAY_LIST(smoke_seg4_dl_04021718) +DISPLAY_LIST(smoke_seg4_dl_04021730) +DISPLAY_LIST(smoke_seg4_dl_04021748) +DISPLAY_LIST(smoke_seg4_dl_04021760) +DISPLAY_LIST(smoke_seg4_dl_04021778) +DISPLAY_LIST(smoke_seg4_dl_04021790) +DISPLAY_LIST(smoke_seg4_dl_040217A8) +DISPLAY_LIST(waluigi_butt_dl) +DISPLAY_LIST(waluigi_butt) +DISPLAY_LIST(waluigi_metal_butt) +DISPLAY_LIST(waluigi_left_arm_shared_dl) +DISPLAY_LIST(waluigi_left_arm) +DISPLAY_LIST(waluigi_left_forearm_shared_dl) +DISPLAY_LIST(waluigi_left_hand_closed_shared_dl) +DISPLAY_LIST(waluigi_left_hand_closed) +DISPLAY_LIST(waluigi_right_arm_shared_dl) +DISPLAY_LIST(waluigi_right_arm) +DISPLAY_LIST(waluigi_right_forearm_shared_dl) +DISPLAY_LIST(waluigi_right_hand_closed_dl) +DISPLAY_LIST(waluigi_right_hand_closed) +DISPLAY_LIST(waluigi_metal_right_hand_closed) +DISPLAY_LIST(waluigi_left_thigh_dl) +DISPLAY_LIST(waluigi_left_thigh) +DISPLAY_LIST(waluigi_metal_left_thigh) +DISPLAY_LIST(waluigi_left_leg_shared_dl) +DISPLAY_LIST(waluigi_left_foot_shared_dl) +DISPLAY_LIST(waluigi_left_foot) +DISPLAY_LIST(waluigi_right_thigh_shared_dl) +DISPLAY_LIST(waluigi_right_thigh) +DISPLAY_LIST(waluigi_right_leg_shared_dl) +DISPLAY_LIST(waluigi_right_foot_dl) +DISPLAY_LIST(waluigi_right_foot) +DISPLAY_LIST(waluigi_metal_right_foot) +DISPLAY_LIST(waluigi_yellow_button_dl) +DISPLAY_LIST(waluigi_pants_overalls_shared_dl) +DISPLAY_LIST(waluigi_tshirt_shared_dl) +DISPLAY_LIST(waluigi_torso_dl) +DISPLAY_LIST(waluigi_torso) +DISPLAY_LIST(waluigi_metal_torso_shared_dl) +DISPLAY_LIST(waluigi_r_logo_dl) +DISPLAY_LIST(waluigi_eyes_cap_on_dl) +DISPLAY_LIST(waluigi_hair_sideburn_cap_on_dl) +DISPLAY_LIST(waluigi_mouth_cap_on_dl) +DISPLAY_LIST(waluigi_face_part_cap_on_dl) +DISPLAY_LIST(waluigi_face_cap_dl) +DISPLAY_LIST(waluigi_face_back_hair_cap_on_dl) +DISPLAY_LIST(waluigi_nose_cap_on_dl) +DISPLAY_LIST(waluigi_mustache_cap_on_dl) +DISPLAY_LIST(waluigi_mustache_cap_on_dead_dl) +DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_on) +DISPLAY_LIST(waluigi_r_logo_decal) +DISPLAY_LIST(waluigi_face_cap_on_dl) +DISPLAY_LIST(waluigi_face_cap_on_dead_dl) +DISPLAY_LIST(waluigi_cap_on_eyes_front) +DISPLAY_LIST(waluigi_cap_on_eyes_half_closed) +DISPLAY_LIST(waluigi_cap_on_eyes_closed) +DISPLAY_LIST(waluigi_cap_on_eyes_right) +DISPLAY_LIST(waluigi_cap_on_eyes_left) +DISPLAY_LIST(waluigi_cap_on_eyes_up) +DISPLAY_LIST(waluigi_cap_on_eyes_down) +DISPLAY_LIST(waluigi_cap_on_eyes_dead) +DISPLAY_LIST(waluigi_metal_cap_on_shared_dl) +DISPLAY_LIST(waluigi_eyes_cap_off_dl) +DISPLAY_LIST(waluigi_mouth_cap_off_dl) +DISPLAY_LIST(waluigi_hair_sideburn_cap_off_dl) +DISPLAY_LIST(waluigi_face_part_cap_off_dl) +DISPLAY_LIST(waluigi_face_hair_cap_off_dl) +DISPLAY_LIST(waluigi_nose_cap_off_dl) +DISPLAY_LIST(waluigi_mustache_cap_off_dl) +DISPLAY_LIST(waluigi_mustache_cap_off_dead_dl) +DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_off) +DISPLAY_LIST(waluigi_face_cap_off_dl) +DISPLAY_LIST(waluigi_face_cap_off_dead_dl) +DISPLAY_LIST(waluigi_cap_off_eyes_front) +DISPLAY_LIST(waluigi_cap_off_eyes_half_closed) +DISPLAY_LIST(waluigi_cap_off_eyes_closed) +DISPLAY_LIST(waluigi_cap_off_eyes_right) +DISPLAY_LIST(waluigi_cap_off_eyes_left) +DISPLAY_LIST(waluigi_cap_off_eyes_up) +DISPLAY_LIST(waluigi_cap_off_eyes_down) +DISPLAY_LIST(waluigi_cap_off_eyes_dead) +DISPLAY_LIST(waluigi_metal_cap_off_shared_dl) +DISPLAY_LIST(waluigi_left_hand_open_shared_dl) +DISPLAY_LIST(waluigi_left_hand_open) +DISPLAY_LIST(waluigi_right_hand_open_dl) +DISPLAY_LIST(waluigi_right_hand_open) +DISPLAY_LIST(waluigi_metal_right_hand_open) +DISPLAY_LIST(waluigi_right_hand_cap_r_logo_dl) +DISPLAY_LIST(waluigi_right_hand_cap_top_dl) +DISPLAY_LIST(waluigi_right_hand_cap_hand_position_dl) +DISPLAY_LIST(waluigi_right_hand_cap_bottom_dl) +DISPLAY_LIST(waluigi_right_hand_cap_decal) +DISPLAY_LIST(waluigi_right_hand_cap_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(waluigi_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_end_dl) +DISPLAY_LIST(waluigi_right_hand_cap) +DISPLAY_LIST(waluigi_right_hand_cap_wings) +DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(waluigi_right_hand_peace_shared_dl) +DISPLAY_LIST(waluigi_right_hand_peace) +DISPLAY_LIST(waluigi_wings_half_1_dl) +DISPLAY_LIST(waluigi_wings_half_2_dl) +DISPLAY_LIST(waluigi_cap_wings) +DISPLAY_LIST(waluigi_cap_wings_transparent) +DISPLAY_LIST(waluigi_metal_cap_wings) +DISPLAY_LIST(waluigi_metal_cap_wings_transparent) +DISPLAY_LIST(waluigi_material_revert_render_settings) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022B30) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022B68) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022CC8) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022D10) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022E78) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022EA8) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022ED8) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022ED8_metal) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022F20) +DISPLAY_LIST(waluigi_cap_r_logo_decal) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022F48) +DISPLAY_LIST(waluigi_cap_seg3_dl_03022FF8) +DISPLAY_LIST(waluigi_cap_seg3_dl_030230B0) +DISPLAY_LIST(waluigi_cap_seg3_dl_03023108) +DISPLAY_LIST(waluigi_cap_seg3_dl_03023160) +DISPLAY_LIST(waluigi_cap_seg3_dl_03023298) +DISPLAY_LIST(waluigi_cap_material_revert_render_settings) +DISPLAY_LIST(wario_butt_dl) +DISPLAY_LIST(wario_butt) +DISPLAY_LIST(wario_metal_butt) +DISPLAY_LIST(wario_left_arm_shared_dl) +DISPLAY_LIST(wario_left_arm) +DISPLAY_LIST(wario_left_forearm_shared_dl) +DISPLAY_LIST(wario_left_hand_closed_shared_dl) +DISPLAY_LIST(wario_left_hand_closed) +DISPLAY_LIST(wario_right_arm_shared_dl) +DISPLAY_LIST(wario_right_arm) +DISPLAY_LIST(wario_right_forearm_shared_dl) +DISPLAY_LIST(wario_right_hand_closed_dl) +DISPLAY_LIST(wario_right_hand_closed) +DISPLAY_LIST(wario_metal_right_hand_closed) +DISPLAY_LIST(wario_left_thigh_dl) +DISPLAY_LIST(wario_left_thigh) +DISPLAY_LIST(wario_metal_left_thigh) +DISPLAY_LIST(wario_left_leg_shared_dl) +DISPLAY_LIST(wario_left_foot_shared_dl) +DISPLAY_LIST(wario_left_foot) +DISPLAY_LIST(wario_right_thigh_shared_dl) +DISPLAY_LIST(wario_right_thigh) +DISPLAY_LIST(wario_right_leg_shared_dl) +DISPLAY_LIST(wario_right_foot_dl) +DISPLAY_LIST(wario_right_foot) +DISPLAY_LIST(wario_metal_right_foot) +DISPLAY_LIST(wario_white_button_dl) +DISPLAY_LIST(wario_pants_overalls_shared_dl) +DISPLAY_LIST(wario_tshirt_shared_dl) +DISPLAY_LIST(wario_torso_dl) +DISPLAY_LIST(wario_torso) +DISPLAY_LIST(wario_metal_torso_shared_dl) +DISPLAY_LIST(wario_w_logo_dl) +DISPLAY_LIST(wario_eyes_cap_on_dl) +DISPLAY_LIST(wario_hair_sideburn_cap_on_dl) +DISPLAY_LIST(wario_mouth_cap_on_dl) +DISPLAY_LIST(wario_face_part_cap_on_dl) +DISPLAY_LIST(wario_face_cap_dl) +DISPLAY_LIST(wario_face_back_hair_cap_on_dl) +DISPLAY_LIST(wario_nose_cap_on_dl) +DISPLAY_LIST(wario_mustache_cap_on_dl) +DISPLAY_LIST(wario_mustache_cap_on_dead_dl) +DISPLAY_LIST(wario_hair_sideburn_decal_cap_on) +DISPLAY_LIST(wario_w_logo_decal) +DISPLAY_LIST(wario_face_cap_on_dl) +DISPLAY_LIST(wario_face_cap_on_dead_dl) +DISPLAY_LIST(wario_cap_on_eyes_front) +DISPLAY_LIST(wario_cap_on_eyes_half_closed) +DISPLAY_LIST(wario_cap_on_eyes_closed) +DISPLAY_LIST(wario_cap_on_eyes_right) +DISPLAY_LIST(wario_cap_on_eyes_left) +DISPLAY_LIST(wario_cap_on_eyes_up) +DISPLAY_LIST(wario_cap_on_eyes_down) +DISPLAY_LIST(wario_cap_on_eyes_dead) +DISPLAY_LIST(wario_metal_cap_on_shared_dl) +DISPLAY_LIST(wario_eyes_cap_off_dl) +DISPLAY_LIST(wario_mouth_cap_off_dl) +DISPLAY_LIST(wario_hair_sideburn_cap_off_dl) +DISPLAY_LIST(wario_face_part_cap_off_dl) +DISPLAY_LIST(wario_face_hair_cap_off_dl) +DISPLAY_LIST(wario_nose_cap_off_dl) +DISPLAY_LIST(wario_mustache_cap_off_dl) +DISPLAY_LIST(wario_mustache_cap_off_dead_dl) +DISPLAY_LIST(wario_hair_sideburn_decal_cap_off) +DISPLAY_LIST(wario_face_cap_off_dl) +DISPLAY_LIST(wario_face_cap_off_dead_dl) +DISPLAY_LIST(wario_cap_off_eyes_front) +DISPLAY_LIST(wario_cap_off_eyes_half_closed) +DISPLAY_LIST(wario_cap_off_eyes_closed) +DISPLAY_LIST(wario_cap_off_eyes_right) +DISPLAY_LIST(wario_cap_off_eyes_left) +DISPLAY_LIST(wario_cap_off_eyes_up) +DISPLAY_LIST(wario_cap_off_eyes_down) +DISPLAY_LIST(wario_cap_off_eyes_dead) +DISPLAY_LIST(wario_metal_cap_off_shared_dl) +DISPLAY_LIST(wario_left_hand_open_shared_dl) +DISPLAY_LIST(wario_left_hand_open) +DISPLAY_LIST(wario_right_hand_open_dl) +DISPLAY_LIST(wario_right_hand_open) +DISPLAY_LIST(wario_metal_right_hand_open) +DISPLAY_LIST(wario_right_hand_cap_w_logo_dl) +DISPLAY_LIST(wario_right_hand_cap_top_dl) +DISPLAY_LIST(wario_right_hand_cap_hand_position_dl) +DISPLAY_LIST(wario_right_hand_cap_bottom_dl) +DISPLAY_LIST(wario_right_hand_cap_decal) +DISPLAY_LIST(wario_right_hand_cap_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(wario_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_end_dl) +DISPLAY_LIST(wario_right_hand_cap) +DISPLAY_LIST(wario_right_hand_cap_wings) +DISPLAY_LIST(wario_right_hand_cap_wings_transparent) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(wario_right_hand_peace_shared_dl) +DISPLAY_LIST(wario_right_hand_peace) +DISPLAY_LIST(wario_wings_half_1_dl) +DISPLAY_LIST(wario_wings_half_2_dl) +DISPLAY_LIST(wario_cap_wings) +DISPLAY_LIST(wario_cap_wings_transparent) +DISPLAY_LIST(wario_metal_cap_wings) +DISPLAY_LIST(wario_metal_cap_wings_transparent) +DISPLAY_LIST(wario_material_revert_render_settings) +DISPLAY_LIST(wario_cap_seg3_dl_03022B30) +DISPLAY_LIST(wario_cap_seg3_dl_03022B68) +DISPLAY_LIST(wario_cap_seg3_dl_03022CC8) +DISPLAY_LIST(wario_cap_seg3_dl_03022D10) +DISPLAY_LIST(wario_cap_seg3_dl_03022E78) +DISPLAY_LIST(wario_cap_seg3_dl_03022EA8) +DISPLAY_LIST(wario_cap_seg3_dl_03022ED8) +DISPLAY_LIST(wario_cap_seg3_dl_03022ED8_metal) +DISPLAY_LIST(wario_cap_seg3_dl_03022F20) +DISPLAY_LIST(wario_cap_w_logo_decal) +DISPLAY_LIST(wario_cap_seg3_dl_03022F48) +DISPLAY_LIST(wario_cap_seg3_dl_03022FF8) +DISPLAY_LIST(wario_cap_seg3_dl_030230B0) +DISPLAY_LIST(wario_cap_seg3_dl_03023108) +DISPLAY_LIST(wario_cap_seg3_dl_03023160) +DISPLAY_LIST(wario_cap_seg3_dl_03023298) +DISPLAY_LIST(wario_cap_material_revert_render_settings) +DISPLAY_LIST(warp_pipe_seg3_dl_03008E40) +DISPLAY_LIST(warp_pipe_seg3_dl_03008F98) +DISPLAY_LIST(warp_pipe_seg3_dl_03009968) +DISPLAY_LIST(warp_pipe_seg3_dl_03009A20) +DISPLAY_LIST(warp_pipe_seg3_dl_03009A50) +DISPLAY_LIST(water_bubble_seg5_dl_05010D30) +DISPLAY_LIST(water_bubble_seg5_dl_05011000) +DISPLAY_LIST(water_mine_seg6_dl_0600D1F8) +DISPLAY_LIST(water_mine_seg6_dl_0600D230) +DISPLAY_LIST(water_mine_seg6_dl_0600D268) +DISPLAY_LIST(water_mine_seg6_dl_0600D2E0) +DISPLAY_LIST(water_mine_seg6_dl_0600D3F8) +DISPLAY_LIST(water_ring_seg6_dl_06013AC0) +DISPLAY_LIST(water_splash_seg4_dl_040325C8) +DISPLAY_LIST(water_splash_seg4_dl_04032640) +DISPLAY_LIST(water_splash_seg4_dl_04032658) +DISPLAY_LIST(water_splash_seg4_dl_04032670) +DISPLAY_LIST(water_splash_seg4_dl_04032688) +DISPLAY_LIST(water_splash_seg4_dl_040326A0) +DISPLAY_LIST(water_splash_seg4_dl_040326B8) +DISPLAY_LIST(water_splash_seg4_dl_040326D0) +DISPLAY_LIST(water_splash_seg4_dl_040326E8) +DISPLAY_LIST(water_wave_seg4_dl_04027358) +DISPLAY_LIST(water_wave_seg4_dl_040273A0) +DISPLAY_LIST(water_wave_seg4_dl_040273D8) +DISPLAY_LIST(water_wave_seg4_dl_040273F0) +DISPLAY_LIST(water_wave_seg4_dl_04027408) +DISPLAY_LIST(water_wave_seg4_dl_04027420) +DISPLAY_LIST(water_wave_seg4_dl_04027438) +DISPLAY_LIST(whirlpool_seg5_dl_05013B58) +DISPLAY_LIST(whirlpool_seg5_dl_05013CB8) +DISPLAY_LIST(white_particle_dl) +DISPLAY_LIST(white_particle_small_dl_begin) +DISPLAY_LIST(white_particle_small_dl_end) +DISPLAY_LIST(white_particle_small_dl) +DISPLAY_LIST(white_particle_small_unused_dl) +DISPLAY_LIST(whomp_seg6_dl_0601F4F8) +DISPLAY_LIST(whomp_seg6_dl_0601F570) +DISPLAY_LIST(whomp_seg6_dl_0601F5A8) +DISPLAY_LIST(whomp_seg6_dl_0601F5E0) +DISPLAY_LIST(whomp_seg6_dl_0601F7F0) +DISPLAY_LIST(whomp_seg6_dl_0601F880) +DISPLAY_LIST(whomp_seg6_dl_0601FA58) +DISPLAY_LIST(whomp_seg6_dl_0601FAE8) +DISPLAY_LIST(whomp_seg6_dl_0601FB88) +DISPLAY_LIST(whomp_seg6_dl_0601FBC0) +DISPLAY_LIST(whomp_seg6_dl_0601FC70) +DISPLAY_LIST(whomp_seg6_dl_0601FCA8) +DISPLAY_LIST(whomp_seg6_dl_0601FE10) +DISPLAY_LIST(whomp_seg6_dl_0601FEA8) +DISPLAY_LIST(whomp_seg6_dl_0601FFA0) +DISPLAY_LIST(whomp_seg6_dl_06020038) +DISPLAY_LIST(wiggler_seg5_dl_0500BCB8) +DISPLAY_LIST(wiggler_seg5_dl_0500BE10) +DISPLAY_LIST(wiggler_seg5_dl_0500BE98) +DISPLAY_LIST(wiggler_seg5_dl_0500BF20) +DISPLAY_LIST(wiggler_seg5_dl_0500C078) +DISPLAY_LIST(wiggler_seg5_dl_0500C100) +DISPLAY_LIST(wiggler_seg5_dl_0500C208) +DISPLAY_LIST(wiggler_seg5_dl_0500C240) +DISPLAY_LIST(wiggler_seg5_dl_0500C278) +DISPLAY_LIST(wiggler_seg5_dl_0500DC18) +DISPLAY_LIST(wiggler_seg5_dl_0500DD70) +DISPLAY_LIST(wiggler_seg5_dl_0500DDF8) +DISPLAY_LIST(wiggler_seg5_dl_0500DE80) +DISPLAY_LIST(wiggler_seg5_dl_0500DFD8) +DISPLAY_LIST(wiggler_seg5_dl_0500E060) +DISPLAY_LIST(wiggler_seg5_dl_0500E168) +DISPLAY_LIST(wiggler_seg5_dl_0500E1A0) +DISPLAY_LIST(wiggler_seg5_dl_0500E1D8) +DISPLAY_LIST(wiggler_seg5_dl_0500E2B0) +DISPLAY_LIST(wiggler_seg5_dl_0500E2F8) +DISPLAY_LIST(wiggler_seg5_dl_0500E3E8) +DISPLAY_LIST(wiggler_seg5_dl_0500E430) +DISPLAY_LIST(wiggler_seg5_dl_0500E4E0) +DISPLAY_LIST(wiggler_seg5_dl_0500E518) +DISPLAY_LIST(wiggler_seg5_dl_0500E608) +DISPLAY_LIST(wiggler_seg5_dl_0500E640) +DISPLAY_LIST(wiggler_seg5_dl_0500E678) +DISPLAY_LIST(wooden_signpost_seg3_dl_0302D9C8) +DISPLAY_LIST(wooden_signpost_seg3_dl_0302DA48) +DISPLAY_LIST(wooden_signpost_seg3_dl_0302DC40) +DISPLAY_LIST(wooden_signpost_seg3_dl_0302DCD0) +DISPLAY_LIST(wooden_signpost_seg3_dl_0302DD08) +DISPLAY_LIST(yellow_sphere_seg6_dl_0601F388) +DISPLAY_LIST(yellow_sphere_seg6_dl_0601F3C0) +DISPLAY_LIST(yellow_sphere_seg5_dl_05000840) +DISPLAY_LIST(yellow_sphere_seg5_dl_05000888) +DISPLAY_LIST(yellow_sphere_seg5_dl_050008C8) +DISPLAY_LIST(yoshi_seg5_dl_0501D440) +DISPLAY_LIST(yoshi_seg5_dl_0501D488) +DISPLAY_LIST(yoshi_seg5_dl_0501D4E0) +DISPLAY_LIST(yoshi_seg5_dl_0501D8F8) +DISPLAY_LIST(yoshi_seg5_dl_0501D940) +DISPLAY_LIST(yoshi_seg5_dl_0501D970) +DISPLAY_LIST(yoshi_seg5_dl_0501D998) +DISPLAY_LIST(yoshi_seg5_dl_050212B0) +DISPLAY_LIST(yoshi_seg5_dl_05021490) +DISPLAY_LIST(yoshi_seg5_dl_050215D8) +DISPLAY_LIST(yoshi_seg5_dl_05021678) +DISPLAY_LIST(yoshi_seg5_dl_05021718) +DISPLAY_LIST(yoshi_seg5_dl_05021860) +DISPLAY_LIST(yoshi_seg5_dl_05021900) +DISPLAY_LIST(yoshi_seg5_dl_050219A0) +DISPLAY_LIST(yoshi_seg5_dl_05021B90) +DISPLAY_LIST(yoshi_seg5_dl_05021CD8) +DISPLAY_LIST(yoshi_seg5_dl_05021E38) +DISPLAY_LIST(yoshi_seg5_dl_05021F70) +DISPLAY_LIST(yoshi_seg5_dl_05022160) +DISPLAY_LIST(yoshi_seg5_dl_050222A8) +DISPLAY_LIST(yoshi_seg5_dl_05022408) +DISPLAY_LIST(yoshi_seg5_dl_05022608) +DISPLAY_LIST(yoshi_egg_seg5_dl_050097B8) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009820) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009838) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009850) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009868) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009880) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009898) +DISPLAY_LIST(yoshi_egg_seg5_dl_050098B0) +DISPLAY_LIST(yoshi_egg_seg5_dl_050098C8) +DISPLAY_LIST(debug_level_select_dl_07000858) +DISPLAY_LIST(debug_level_select_dl_07001100) +DISPLAY_LIST(debug_level_select_dl_07001BA0) +DISPLAY_LIST(debug_level_select_dl_070025F0) +DISPLAY_LIST(debug_level_select_dl_07003258) +DISPLAY_LIST(debug_level_select_dl_07003DB8) +DISPLAY_LIST(debug_level_select_dl_070048C8) +DISPLAY_LIST(debug_level_select_dl_07005558) +DISPLAY_LIST(debug_level_select_dl_070059F8) +DISPLAY_LIST(debug_level_select_dl_070063B0) +DISPLAY_LIST(tiny_bubble_dl_0B006A50) +DISPLAY_LIST(tiny_bubble_dl_0B006AB0) +DISPLAY_LIST(tiny_bubble_dl_0B006CD8) +DISPLAY_LIST(tiny_bubble_dl_0B006D38) +DISPLAY_LIST(tiny_bubble_dl_0B006D68) +DISPLAY_LIST(dl_hud_img_begin) +DISPLAY_LIST(dl_hud_img_load_tex_block) +DISPLAY_LIST(dl_hud_img_end) +DISPLAY_LIST(dl_rgba16_text_begin) +DISPLAY_LIST(dl_rgba16_load_tex_block) +DISPLAY_LIST(dl_rgba16_text_end) +DISPLAY_LIST(dl_draw_text_bg_box) +DISPLAY_LIST(dl_ia_text_end) +DISPLAY_LIST(dl_draw_triangle) +DISPLAY_LIST(dl_billboard_num_begin) +DISPLAY_LIST(dl_billboard_num_end) +DISPLAY_LIST(dl_billboard_num_0) +DISPLAY_LIST(dl_billboard_num_1) +DISPLAY_LIST(dl_billboard_num_2) +DISPLAY_LIST(dl_billboard_num_3) +DISPLAY_LIST(dl_billboard_num_4) +DISPLAY_LIST(dl_billboard_num_5) +DISPLAY_LIST(dl_billboard_num_6) +DISPLAY_LIST(dl_billboard_num_7) +DISPLAY_LIST(dl_billboard_num_8) +DISPLAY_LIST(dl_billboard_num_9) +DISPLAY_LIST(dl_draw_quad_verts_0123) +DISPLAY_LIST(dl_draw_quad_verts_4567) +DISPLAY_LIST(dl_shadow_begin) +DISPLAY_LIST(dl_shadow_circle) +DISPLAY_LIST(dl_shadow_square) +DISPLAY_LIST(dl_shadow_spike_ext) +DISPLAY_LIST(dl_shadow_9_verts) +DISPLAY_LIST(dl_shadow_4_verts) +DISPLAY_LIST(dl_shadow_end) +DISPLAY_LIST(dl_proj_mtx_fullscreen) +DISPLAY_LIST(dl_screen_transition_end) +DISPLAY_LIST(dl_transition_draw_filled_region) +DISPLAY_LIST(dl_skybox_begin) +DISPLAY_LIST(dl_skybox_tile_tex_settings) +DISPLAY_LIST(dl_skybox_end) +DISPLAY_LIST(dl_waterbox_rgba16_begin) +DISPLAY_LIST(dl_waterbox_ia16_begin) +DISPLAY_LIST(dl_waterbox_end) +DISPLAY_LIST(dl_ia8_up_arrow_begin) +DISPLAY_LIST(dl_rgba16_unused) +DISPLAY_LIST(dl_ia8_up_arrow_load_texture_block) +DISPLAY_LIST(dl_ia8_up_arrow_end) +DISPLAY_LIST(dl_paintings_rippling_begin) +DISPLAY_LIST(dl_paintings_rippling_end) +DISPLAY_LIST(dl_paintings_env_mapped_begin) +DISPLAY_LIST(dl_paintings_env_mapped_end) +DISPLAY_LIST(dl_paintings_draw_ripples) +DISPLAY_LIST(title_screen_bg_dl_0A000100) +DISPLAY_LIST(title_screen_bg_dl_0A000118) +DISPLAY_LIST(title_screen_bg_dl_0A000130) +DISPLAY_LIST(title_screen_bg_dl_0A000148) +DISPLAY_LIST(title_screen_bg_dl_0A000160) +DISPLAY_LIST(title_screen_bg_dl_0A000178) +DISPLAY_LIST(title_screen_bg_dl_0A000190) +DISPLAY_LIST(bbh_seg7_dl_070075A8) +DISPLAY_LIST(bbh_seg7_dl_0700B9E0) +DISPLAY_LIST(bbh_seg7_dl_0700BBF8) +DISPLAY_LIST(bbh_seg7_dl_0700D080) +DISPLAY_LIST(bbh_seg7_dl_0700D2E0) +DISPLAY_LIST(bbh_seg7_dl_0700D490) +DISPLAY_LIST(bbh_seg7_dl_0700D7E0) +DISPLAY_LIST(bbh_seg7_dl_0700F510) +DISPLAY_LIST(bbh_seg7_dl_0700F848) +DISPLAY_LIST(bbh_seg7_dl_07011120) +DISPLAY_LIST(bbh_seg7_dl_07012220) +DISPLAY_LIST(bbh_seg7_dl_07007940) +DISPLAY_LIST(bbh_seg7_dl_07012510) +DISPLAY_LIST(bbh_seg7_dl_070126E8) +DISPLAY_LIST(bbh_seg7_dl_070139A8) +DISPLAY_LIST(bbh_seg7_dl_07013BE8) +DISPLAY_LIST(bbh_seg7_dl_07014FD8) +DISPLAY_LIST(bbh_seg7_dl_07015398) +DISPLAY_LIST(bbh_seg7_dl_070156E0) +DISPLAY_LIST(bbh_seg7_dl_07015A20) +DISPLAY_LIST(bbh_seg7_dl_07017378) +DISPLAY_LIST(bbh_seg7_dl_07017570) +DISPLAY_LIST(bbh_seg7_dl_07007B90) +DISPLAY_LIST(bbh_seg7_dl_07017788) +DISPLAY_LIST(bbh_seg7_dl_07019EF8) +DISPLAY_LIST(bbh_seg7_dl_0701A080) +DISPLAY_LIST(bbh_seg7_dl_0701A850) +DISPLAY_LIST(bbh_seg7_dl_0701B6D0) +DISPLAY_LIST(bbh_seg7_dl_0701E4E0) +DISPLAY_LIST(bbh_seg7_dl_0701E8D8) +DISPLAY_LIST(bbh_seg7_dl_0701ED18) +DISPLAY_LIST(bbh_seg7_dl_0701EEC8) +DISPLAY_LIST(bbh_seg7_dl_0701F070) +DISPLAY_LIST(bbh_seg7_dl_07007FD0) +DISPLAY_LIST(bbh_seg7_dl_07008B58) +DISPLAY_LIST(bbh_seg7_dl_07008EA8) +DISPLAY_LIST(bbh_seg7_dl_0700AFF0) +DISPLAY_LIST(bbh_seg7_dl_0700B1C8) +DISPLAY_LIST(bbh_seg7_dl_0700B418) +DISPLAY_LIST(bbh_seg7_dl_070206F0) +DISPLAY_LIST(bbh_seg7_dl_070202F0) +DISPLAY_LIST(bbh_seg7_dl_0701FFE8) +DISPLAY_LIST(bbh_seg7_dl_0701FD28) +DISPLAY_LIST(bbh_seg7_dl_0701F2E8) +DISPLAY_LIST(bbh_seg7_dl_0701F5F8) +DISPLAY_LIST(bbh_seg7_dl_0701F7E8) +DISPLAY_LIST(bbh_seg7_dl_0701FAB0) +DISPLAY_LIST(bitdw_seg7_dl_070020C8) +DISPLAY_LIST(bitdw_seg7_dl_070032F8) +DISPLAY_LIST(bitdw_seg7_dl_0700AD10) +DISPLAY_LIST(bitdw_seg7_dl_07005078) +DISPLAY_LIST(bitdw_seg7_dl_07007AA8) +DISPLAY_LIST(bitdw_seg7_dl_07008FF0) +DISPLAY_LIST(bitdw_seg7_dl_07005BC0) +DISPLAY_LIST(bitdw_seg7_dl_07003BF0) +DISPLAY_LIST(bitdw_seg7_dl_07004318) +DISPLAY_LIST(bitdw_seg7_dl_070045C0) +DISPLAY_LIST(bitdw_seg7_dl_070093B0) +DISPLAY_LIST(bitdw_seg7_dl_0700A368) +DISPLAY_LIST(bitdw_seg7_dl_070028A0) +DISPLAY_LIST(bitdw_seg7_dl_0700A6A8) +DISPLAY_LIST(bitdw_seg7_dl_07003608) +DISPLAY_LIST(bitdw_seg7_dl_070065F0) +DISPLAY_LIST(bitdw_seg7_dl_0700C0E0) +DISPLAY_LIST(bitdw_seg7_dl_0700C670) +DISPLAY_LIST(bitdw_seg7_dl_0700CC00) +DISPLAY_LIST(bitdw_seg7_dl_0700D190) +DISPLAY_LIST(bitdw_seg7_dl_0700D3E8) +DISPLAY_LIST(bitdw_seg7_dl_0700BB58) +DISPLAY_LIST(bitdw_seg7_dl_0700B8D8) +DISPLAY_LIST(bitdw_seg7_dl_0700B220) +DISPLAY_LIST(bitdw_seg7_dl_0700AFA0) +DISPLAY_LIST(bitdw_seg7_dl_0700B480) +DISPLAY_LIST(bitfs_dl_lava_sections) +DISPLAY_LIST(bitfs_dl_lava_floor) +DISPLAY_LIST(bitfs_seg7_dl_07002118) +DISPLAY_LIST(bitfs_seg7_dl_07007958) +DISPLAY_LIST(bitfs_seg7_dl_07008F48) +DISPLAY_LIST(bitfs_seg7_dl_070091E0) +DISPLAY_LIST(bitfs_seg7_dl_070095E0) +DISPLAY_LIST(bitfs_seg7_dl_0700AA00) +DISPLAY_LIST(bitfs_seg7_dl_0700AB90) +DISPLAY_LIST(bitfs_seg7_dl_0700BED8) +DISPLAY_LIST(bitfs_seg7_dl_0700C3C0) +DISPLAY_LIST(bitfs_seg7_dl_0700EC78) +DISPLAY_LIST(bitfs_seg7_dl_0700ED90) +DISPLAY_LIST(bitfs_seg7_dl_07002A78) +DISPLAY_LIST(bitfs_seg7_dl_0700F1C8) +DISPLAY_LIST(bitfs_seg7_dl_07003670) +DISPLAY_LIST(bitfs_seg7_dl_07003C60) +DISPLAY_LIST(bitfs_seg7_dl_070040B0) +DISPLAY_LIST(bitfs_seg7_dl_07004630) +DISPLAY_LIST(bitfs_seg7_dl_07006B90) +DISPLAY_LIST(bitfs_seg7_dl_07007070) +DISPLAY_LIST(bitfs_seg7_dl_07007720) +DISPLAY_LIST(bitfs_seg7_dl_0700F508) +DISPLAY_LIST(bitfs_seg7_dl_07011318) +DISPLAY_LIST(bitfs_seg7_dl_07011798) +DISPLAY_LIST(bitfs_seg7_dl_07011D98) +DISPLAY_LIST(bitfs_seg7_dl_07011E28) +DISPLAY_LIST(bitfs_seg7_dl_0700F6A8) +DISPLAY_LIST(bitfs_seg7_dl_0700FB38) +DISPLAY_LIST(bitfs_seg7_dl_07011BA0) +DISPLAY_LIST(bitfs_seg7_dl_07011568) +DISPLAY_LIST(bitfs_seg7_dl_07010340) +DISPLAY_LIST(bitfs_seg7_dl_07011138) +DISPLAY_LIST(bitfs_seg7_dl_0700FD08) +DISPLAY_LIST(bitfs_seg7_dl_07010168) +DISPLAY_LIST(bitfs_seg7_dl_0700FF90) +DISPLAY_LIST(bits_seg7_dl_07002918) +DISPLAY_LIST(bits_seg7_dl_07009690) +DISPLAY_LIST(bits_seg7_dl_0700B4A0) +DISPLAY_LIST(bits_seg7_dl_0700B820) +DISPLAY_LIST(bits_seg7_dl_0700BA18) +DISPLAY_LIST(bits_seg7_dl_0700CDC0) +DISPLAY_LIST(bits_seg7_dl_0700D278) +DISPLAY_LIST(bits_seg7_dl_0700D5A0) +DISPLAY_LIST(bits_seg7_dl_0700DD00) +DISPLAY_LIST(bits_seg7_dl_0700FC70) +DISPLAY_LIST(bits_seg7_dl_070128F0) +DISPLAY_LIST(bits_seg7_dl_07003670) +DISPLAY_LIST(bits_seg7_dl_07012B10) +DISPLAY_LIST(bits_seg7_dl_07012D40) +DISPLAY_LIST(bits_seg7_dl_070135A0) +DISPLAY_LIST(bits_seg7_dl_07013820) +DISPLAY_LIST(bits_seg7_dl_07013C78) +DISPLAY_LIST(bits_seg7_dl_07013EF8) +DISPLAY_LIST(bits_seg7_dl_07014178) +DISPLAY_LIST(bits_seg7_dl_07014C28) +DISPLAY_LIST(bits_seg7_dl_070153C0) +DISPLAY_LIST(bits_seg7_dl_07015B60) +DISPLAY_LIST(bits_seg7_dl_070047F0) +DISPLAY_LIST(bits_seg7_dl_07016300) +DISPLAY_LIST(bits_seg7_dl_07016AA0) +DISPLAY_LIST(bits_seg7_dl_07016DA0) +DISPLAY_LIST(bits_seg7_dl_07005DB8) +DISPLAY_LIST(bits_seg7_dl_07007AF0) +DISPLAY_LIST(bits_seg7_dl_07007C28) +DISPLAY_LIST(bits_seg7_dl_07007EC8) +DISPLAY_LIST(bits_seg7_dl_07008D18) +DISPLAY_LIST(bits_seg7_dl_07008FE8) +DISPLAY_LIST(bob_seg7_dl_07004390) +DISPLAY_LIST(bob_seg7_dl_07009D80) +DISPLAY_LIST(bob_seg7_dl_0700A470) +DISPLAY_LIST(bob_seg7_dl_0700A920) +DISPLAY_LIST(bob_seg7_dl_0700DD18) +DISPLAY_LIST(bob_seg7_dl_0700E338) +DISPLAY_LIST(bob_seg7_dl_0700E458) +DISPLAY_LIST(bob_seg7_dl_0700E8A0) +DISPLAY_LIST(bob_seg7_dl_0700E768) +DISPLAY_LIST(bowser_1_seg7_dl_07002768) +DISPLAY_LIST(bowser_2_seg7_dl_07001930) +DISPLAY_LIST(bowser_2_seg7_dl_07000D30) +DISPLAY_LIST(bowser_2_seg7_dl_07000FE0) +DISPLAY_LIST(bowser_3_seg7_dl_070046B0) +DISPLAY_LIST(bowser_3_seg7_dl_07004958) +DISPLAY_LIST(bowser_3_seg7_dl_070022A8) +DISPLAY_LIST(bowser_3_seg7_dl_07003FA0) +DISPLAY_LIST(bowser_3_seg7_dl_070025E0) +DISPLAY_LIST(bowser_3_seg7_dl_07002918) +DISPLAY_LIST(bowser_3_seg7_dl_07002C50) +DISPLAY_LIST(bowser_3_seg7_dl_07002F88) +DISPLAY_LIST(bowser_3_seg7_dl_070032C0) +DISPLAY_LIST(bowser_3_seg7_dl_070035F8) +DISPLAY_LIST(bowser_3_seg7_dl_07003930) +DISPLAY_LIST(bowser_3_seg7_dl_07003C68) +DISPLAY_LIST(castle_courtyard_seg7_dl_070048B8) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005698) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005938) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005078) +DISPLAY_LIST(castle_grounds_dl_waterfall) +DISPLAY_LIST(castle_grounds_seg7_dl_07006D70) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C430) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C670) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C6A8) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C6E8) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C728) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C768) +DISPLAY_LIST(castle_grounds_seg7_dl_0700EA58) +DISPLAY_LIST(castle_grounds_seg7_us_dl_0700F2E8) +DISPLAY_LIST(castle_grounds_seg7_dl_070095F0) +DISPLAY_LIST(castle_grounds_seg7_dl_0700A290) +DISPLAY_LIST(castle_grounds_seg7_dl_0700A860) +DISPLAY_LIST(castle_grounds_seg7_dl_0700B1D0) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BA20) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BB80) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BC68) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C210) +DISPLAY_LIST(inside_castle_seg7_dl_070225D8) +DISPLAY_LIST(inside_castle_seg7_dl_07022610) +DISPLAY_LIST(inside_castle_seg7_dl_070234C0) +DISPLAY_LIST(inside_castle_seg7_dl_07023520) +DISPLAY_LIST(inside_castle_seg7_dl_07023DB0) +DISPLAY_LIST(inside_castle_seg7_dl_07031168) +DISPLAY_LIST(inside_castle_seg7_dl_07031588) +DISPLAY_LIST(inside_castle_seg7_dl_07031720) +DISPLAY_LIST(inside_castle_seg7_dl_07031830) +DISPLAY_LIST(inside_castle_seg7_dl_07032FC0) +DISPLAY_LIST(inside_castle_seg7_dl_07033158) +DISPLAY_LIST(inside_castle_seg7_dl_07034D88) +DISPLAY_LIST(inside_castle_seg7_dl_07035178) +DISPLAY_LIST(inside_castle_seg7_dl_07035288) +DISPLAY_LIST(inside_castle_seg7_dl_07036D88) +DISPLAY_LIST(inside_castle_seg7_dl_07037988) +DISPLAY_LIST(inside_castle_seg7_dl_07028FD0) +DISPLAY_LIST(inside_castle_seg7_dl_07037BF8) +DISPLAY_LIST(inside_castle_seg7_dl_07037DE8) +DISPLAY_LIST(dl_castle_aquarium_light) +DISPLAY_LIST(inside_castle_seg7_dl_07038350) +DISPLAY_LIST(inside_castle_seg7_dl_0703A6C8) +DISPLAY_LIST(inside_castle_seg7_dl_0703A808) +DISPLAY_LIST(inside_castle_seg7_dl_0703BA08) +DISPLAY_LIST(inside_castle_seg7_dl_07029578) +DISPLAY_LIST(inside_castle_seg7_dl_0702A650) +DISPLAY_LIST(dl_castle_lobby_wing_cap_light) +DISPLAY_LIST(inside_castle_seg7_dl_0702AA10) +DISPLAY_LIST(inside_castle_seg7_dl_0702AB20) +DISPLAY_LIST(inside_castle_seg7_dl_0702E408) +DISPLAY_LIST(inside_castle_seg7_dl_0702FD30) +DISPLAY_LIST(inside_castle_seg7_dl_0703E6F0) +DISPLAY_LIST(inside_castle_seg7_dl_07051678) +DISPLAY_LIST(inside_castle_seg7_dl_070519C8) +DISPLAY_LIST(inside_castle_seg7_dl_07051B60) +DISPLAY_LIST(inside_castle_seg7_dl_070558D0) +DISPLAY_LIST(inside_castle_seg7_dl_070572A0) +DISPLAY_LIST(inside_castle_seg7_dl_07057F00) +DISPLAY_LIST(inside_castle_seg7_dl_07043028) +DISPLAY_LIST(inside_castle_seg7_dl_07043B48) +DISPLAY_LIST(inside_castle_seg7_dl_07043CD8) +DISPLAY_LIST(inside_castle_seg7_dl_0704A0E8) +DISPLAY_LIST(inside_castle_seg7_dl_0704A2E0) +DISPLAY_LIST(inside_castle_seg7_dl_0704AA98) +DISPLAY_LIST(inside_castle_seg7_dl_0704C7D8) +DISPLAY_LIST(inside_castle_seg7_dl_07050938) +DISPLAY_LIST(inside_castle_seg7_dl_070512F8) +DISPLAY_LIST(inside_castle_seg7_dl_0705E088) +DISPLAY_LIST(inside_castle_seg7_dl_07066FA0) +DISPLAY_LIST(inside_castle_seg7_dl_07068850) +DISPLAY_LIST(inside_castle_seg7_dl_0705E2A0) +DISPLAY_LIST(inside_castle_seg7_dl_0705E450) +DISPLAY_LIST(inside_castle_seg7_dl_070616E8) +DISPLAY_LIST(inside_castle_seg7_dl_07061C20) +DISPLAY_LIST(inside_castle_seg7_dl_07064B78) +DISPLAY_LIST(inside_castle_seg7_dl_07064D58) +DISPLAY_LIST(inside_castle_seg7_dl_07066CE0) +DISPLAY_LIST(inside_castle_seg7_dl_07066E90) +DISPLAY_LIST(inside_castle_seg7_dl_07059190) +DISPLAY_LIST(inside_castle_seg7_dl_07058950) +DISPLAY_LIST(inside_castle_seg7_dl_0703BFA8) +DISPLAY_LIST(inside_castle_seg7_dl_0703BCB8) +DISPLAY_LIST(inside_castle_seg7_dl_07068B10) +DISPLAY_LIST(ccm_seg7_dl_0700B090) +DISPLAY_LIST(ccm_seg7_dl_07010660) +DISPLAY_LIST(ccm_seg7_dl_070109D0) +DISPLAY_LIST(ccm_seg7_dl_07010B50) +DISPLAY_LIST(ccm_seg7_dl_0700B1D8) +DISPLAY_LIST(ccm_seg7_dl_0700C380) +DISPLAY_LIST(ccm_seg7_dl_0700D578) +DISPLAY_LIST(ccm_seg7_dl_0700DDF0) +DISPLAY_LIST(ccm_seg7_dl_0700E708) +DISPLAY_LIST(ccm_seg7_dl_0700E970) +DISPLAY_LIST(ccm_seg7_dl_0700F440) +DISPLAY_LIST(ccm_seg7_dl_0700F650) +DISPLAY_LIST(ccm_seg7_dl_0700F780) +DISPLAY_LIST(ccm_seg7_dl_0700FB00) +DISPLAY_LIST(ccm_seg7_dl_0700FD08) +DISPLAY_LIST(ccm_seg7_dl_0701CE30) +DISPLAY_LIST(ccm_seg7_dl_0701E558) +DISPLAY_LIST(ccm_seg7_dl_0701E6B0) +DISPLAY_LIST(ccm_seg7_dl_0701FC78) +DISPLAY_LIST(ccm_seg7_dl_0701FD78) +DISPLAY_LIST(ccm_seg7_dl_0701FE60) +DISPLAY_LIST(ccm_seg7_dl_070207F0) +DISPLAY_LIST(ccm_seg7_dl_07010F28) +DISPLAY_LIST(ccm_seg7_dl_070118B0) +DISPLAY_LIST(ccm_seg7_dl_07012BD8) +DISPLAY_LIST(ccm_seg7_dl_070136D0) +DISPLAY_LIST(ccm_seg7_dl_07013870) +DISPLAY_LIST(cotmc_dl_water_begin) +DISPLAY_LIST(cotmc_dl_water_end) +DISPLAY_LIST(cotmc_dl_water) +DISPLAY_LIST(cotmc_seg7_dl_07007D48) +DISPLAY_LIST(cotmc_seg7_dl_0700A160) +DISPLAY_LIST(cotmc_seg7_dl_0700A4B8) +DISPLAY_LIST(ddd_seg7_dl_07004D48) +DISPLAY_LIST(ddd_seg7_dl_070057E8) +DISPLAY_LIST(ddd_seg7_dl_07005C40) +DISPLAY_LIST(ddd_seg7_dl_07005F78) +DISPLAY_LIST(ddd_seg7_dl_07007408) +DISPLAY_LIST(ddd_seg7_dl_07007CB8) +DISPLAY_LIST(ddd_seg7_dl_07008C48) +DISPLAY_LIST(ddd_seg7_dl_07008F80) +DISPLAY_LIST(ddd_seg7_dl_0700BAE0) +DISPLAY_LIST(ddd_seg7_dl_0700CE48) +DISPLAY_LIST(ddd_seg7_dl_0700D2A0) +DISPLAY_LIST(ddd_seg7_dl_0700AF10) +DISPLAY_LIST(ddd_seg7_dl_0700B068) +DISPLAY_LIST(ddd_seg7_dl_07009030) +DISPLAY_LIST(ddd_seg7_dl_07009120) +DISPLAY_LIST(ddd_seg7_dl_07009208) +DISPLAY_LIST(hmc_seg7_dl_07024268) +DISPLAY_LIST(hmc_seg7_dl_070242A0) +DISPLAY_LIST(hmc_seg7_dl_070078B0) +DISPLAY_LIST(hmc_seg7_dl_07010070) +DISPLAY_LIST(hmc_seg7_dl_07013CA8) +DISPLAY_LIST(hmc_seg7_dl_07013E80) +DISPLAY_LIST(hmc_seg7_dl_07014300) +DISPLAY_LIST(hmc_seg7_dl_07014B08) +DISPLAY_LIST(hmc_seg7_dl_07014C00) +DISPLAY_LIST(hmc_seg7_dl_07014E48) +DISPLAY_LIST(hmc_seg7_dl_070173A8) +DISPLAY_LIST(hmc_seg7_dl_07017C98) +DISPLAY_LIST(hmc_seg7_dl_07018200) +DISPLAY_LIST(hmc_seg7_dl_07007B50) +DISPLAY_LIST(hmc_seg7_dl_07019248) +DISPLAY_LIST(hmc_seg7_dl_07019368) +DISPLAY_LIST(hmc_seg7_dl_0701A080) +DISPLAY_LIST(hmc_seg7_dl_0701A400) +DISPLAY_LIST(hmc_seg7_dl_0701E820) +DISPLAY_LIST(hmc_seg7_dl_0701F1B0) +DISPLAY_LIST(hmc_seg7_dl_0701F690) +DISPLAY_LIST(hmc_seg7_dl_0701F818) +DISPLAY_LIST(hmc_seg7_dl_0701FD58) +DISPLAY_LIST(hmc_seg7_dl_07020FD0) +DISPLAY_LIST(hmc_seg7_dl_070080E8) +DISPLAY_LIST(hmc_seg7_dl_07021760) +DISPLAY_LIST(hmc_seg7_dl_07021BA0) +DISPLAY_LIST(hmc_seg7_dl_070228A0) +DISPLAY_LIST(hmc_seg7_dl_070093F0) +DISPLAY_LIST(hmc_seg7_dl_0700E448) +DISPLAY_LIST(hmc_seg7_dl_0700EF00) +DISPLAY_LIST(hmc_seg7_dl_0700F3E8) +DISPLAY_LIST(hmc_seg7_dl_0700FA40) +DISPLAY_LIST(hmc_seg7_dl_0700FEF0) +DISPLAY_LIST(hmc_seg7_dl_0701FFF8) +DISPLAY_LIST(hmc_seg7_dl_07022DA0) +DISPLAY_LIST(hmc_seg7_dl_07023090) +DISPLAY_LIST(hmc_seg7_dl_07022AA0) +DISPLAY_LIST(hmc_seg7_dl_07023BC8) +DISPLAY_LIST(hmc_seg7_dl_07023E10) +DISPLAY_LIST(hmc_seg7_dl_07024110) +DISPLAY_LIST(intro_seg7_dl_0700B3A0) +DISPLAY_LIST(intro_seg7_dl_0700C6A0) +DISPLAY_LIST(jrb_seg7_dl_07002FD0) +DISPLAY_LIST(jrb_seg7_dl_07004940) +DISPLAY_LIST(jrb_seg7_dl_07004C78) +DISPLAY_LIST(jrb_seg7_dl_070058C8) +DISPLAY_LIST(jrb_seg7_dl_070069B0) +DISPLAY_LIST(jrb_seg7_dl_07007570) +DISPLAY_LIST(jrb_seg7_dl_07007718) +DISPLAY_LIST(jrb_seg7_dl_0700EF00) +DISPLAY_LIST(jrb_seg7_dl_0700FE48) +DISPLAY_LIST(jrb_seg7_dl_07010548) +DISPLAY_LIST(jrb_seg7_dl_0700AE48) +DISPLAY_LIST(jrb_seg7_dl_0700AFB0) +DISPLAY_LIST(jrb_seg7_dl_07007DC8) +DISPLAY_LIST(jrb_seg7_dl_07007AC8) +DISPLAY_LIST(jrb_seg7_dl_070080F8) +DISPLAY_LIST(jrb_seg7_dl_07008FD8) +DISPLAY_LIST(jrb_seg7_dl_070090B0) +DISPLAY_LIST(jrb_seg7_dl_07009A58) +DISPLAY_LIST(jrb_seg7_dl_07009B30) +DISPLAY_LIST(jrb_seg7_dl_0700A608) +DISPLAY_LIST(jrb_seg7_dl_0700AC68) +DISPLAY_LIST(lll_seg7_dl_070134E0) +DISPLAY_LIST(lll_seg7_dl_070165C8) +DISPLAY_LIST(lll_seg7_dl_07016B00) +DISPLAY_LIST(lll_seg7_dl_070174E0) +DISPLAY_LIST(lll_seg7_dl_070178A8) +DISPLAY_LIST(lll_seg7_dl_07017B50) +DISPLAY_LIST(lll_seg7_dl_07017F40) +DISPLAY_LIST(lll_seg7_dl_070137C0) +DISPLAY_LIST(lll_seg7_dl_070138F8) +DISPLAY_LIST(lll_seg7_dl_07013D28) +DISPLAY_LIST(lll_seg7_dl_07014788) +DISPLAY_LIST(lll_seg7_dl_07014BD8) +DISPLAY_LIST(lll_seg7_dl_07015458) +DISPLAY_LIST(lll_seg7_dl_07015C88) +DISPLAY_LIST(lll_seg7_dl_07015E20) +DISPLAY_LIST(lll_seg7_dl_07016250) +DISPLAY_LIST(lll_dl_lava_floor) +DISPLAY_LIST(lll_dl_lavafall_volcano) +DISPLAY_LIST(lll_seg7_dl_070235C8) +DISPLAY_LIST(lll_seg7_dl_07024C18) +DISPLAY_LIST(lll_seg7_dl_070255D8) +DISPLAY_LIST(lll_seg7_dl_07025A48) +DISPLAY_LIST(lll_seg7_dl_07025BD8) +DISPLAY_LIST(lll_seg7_dl_07019160) +DISPLAY_LIST(lll_seg7_dl_07018680) +DISPLAY_LIST(lll_seg7_dl_070193E0) +DISPLAY_LIST(lll_seg7_dl_07018380) +DISPLAY_LIST(lll_seg7_dl_0701A388) +DISPLAY_LIST(lll_seg7_dl_0701A3B8) +DISPLAY_LIST(lll_seg7_dl_0701A3E8) +DISPLAY_LIST(lll_seg7_dl_0701A418) +DISPLAY_LIST(lll_seg7_dl_0701A448) +DISPLAY_LIST(lll_seg7_dl_0701A478) +DISPLAY_LIST(lll_seg7_dl_0701A4A8) +DISPLAY_LIST(lll_seg7_dl_0701A4D8) +DISPLAY_LIST(lll_seg7_dl_0701A508) +DISPLAY_LIST(lll_seg7_dl_0701A538) +DISPLAY_LIST(lll_seg7_dl_0701A568) +DISPLAY_LIST(lll_seg7_dl_0701A598) +DISPLAY_LIST(lll_seg7_dl_0701A5C8) +DISPLAY_LIST(lll_seg7_dl_0701A5F8) +DISPLAY_LIST(lll_seg7_dl_0701A628) +DISPLAY_LIST(lll_seg7_dl_0701AD70) +DISPLAY_LIST(lll_seg7_dl_07018A30) +DISPLAY_LIST(lll_seg7_dl_07019A08) +DISPLAY_LIST(lll_seg7_dl_07019C08) +DISPLAY_LIST(lll_seg7_dl_0701A878) +DISPLAY_LIST(lll_seg7_dl_0701A010) +DISPLAY_LIST(lll_seg7_dl_0701A1F0) +DISPLAY_LIST(lll_seg7_dl_07025EC0) +DISPLAY_LIST(lll_seg7_dl_07018EF8) +DISPLAY_LIST(lll_seg7_dl_07018C90) +DISPLAY_LIST(dl_menu_mario_save_button_base) +DISPLAY_LIST(dl_menu_mario_new_button_base) +DISPLAY_LIST(dl_menu_save_button_back) +DISPLAY_LIST(dl_menu_save_button_fade_back) +DISPLAY_LIST(dl_menu_erase_button) +DISPLAY_LIST(dl_menu_copy_button) +DISPLAY_LIST(dl_menu_file_button) +DISPLAY_LIST(dl_menu_score_button) +DISPLAY_LIST(dl_menu_sound_button) +DISPLAY_LIST(dl_menu_generic_button) +DISPLAY_LIST(dl_menu_idle_hand) +DISPLAY_LIST(dl_menu_grabbing_hand) +DISPLAY_LIST(dl_menu_ia8_text_begin) +DISPLAY_LIST(dl_menu_ia8_text_end) +DISPLAY_LIST(dl_menu_rgba16_wood_course) +DISPLAY_LIST(pss_seg7_dl_0700A7C0) +DISPLAY_LIST(pss_seg7_dl_0700AFA8) +DISPLAY_LIST(pss_seg7_dl_0700B3F0) +DISPLAY_LIST(pss_seg7_dl_0700D338) +DISPLAY_LIST(pss_seg7_dl_0700DAD8) +DISPLAY_LIST(pss_seg7_dl_0700E2B0) +DISPLAY_LIST(pss_seg7_dl_0700E3E8) +DISPLAY_LIST(dl_cruiser_metal_holes) +DISPLAY_LIST(rr_seg7_dl_0700CA38) +DISPLAY_LIST(rr_seg7_dl_0700DBD8) +DISPLAY_LIST(rr_seg7_dl_0700DE88) +DISPLAY_LIST(rr_seg7_dl_0700E178) +DISPLAY_LIST(rr_seg7_dl_0700E830) +DISPLAY_LIST(rr_seg7_dl_07012758) +DISPLAY_LIST(rr_seg7_dl_07014508) +DISPLAY_LIST(rr_seg7_dl_07014F30) +DISPLAY_LIST(rr_seg7_dl_070156B8) +DISPLAY_LIST(rr_seg7_dl_07015C68) +DISPLAY_LIST(rr_seg7_dl_07017530) +DISPLAY_LIST(rr_seg7_dl_07002CC8) +DISPLAY_LIST(rr_seg7_dl_07018B58) +DISPLAY_LIST(rr_seg7_dl_070191A0) +DISPLAY_LIST(rr_seg7_dl_07002E80) +DISPLAY_LIST(rr_seg7_dl_07004A98) +DISPLAY_LIST(rr_seg7_dl_07005C80) +DISPLAY_LIST(rr_seg7_dl_07007E60) +DISPLAY_LIST(rr_seg7_dl_07008258) +DISPLAY_LIST(rr_seg7_dl_07008E20) +DISPLAY_LIST(rr_seg7_dl_0700BB48) +DISPLAY_LIST(rr_seg7_dl_0701A680) +DISPLAY_LIST(rr_seg7_dl_0701B848) +DISPLAY_LIST(rr_seg7_dl_0701B980) +DISPLAY_LIST(rr_seg7_dl_0701B220) +DISPLAY_LIST(dl_flying_carpet_begin) +DISPLAY_LIST(dl_flying_carpet_model_half) +DISPLAY_LIST(dl_flying_carpet_end) +DISPLAY_LIST(rr_seg7_dl_0701BD08) +DISPLAY_LIST(rr_seg7_dl_0701AB78) +DISPLAY_LIST(rr_seg7_dl_0701AFA0) +DISPLAY_LIST(rr_seg7_dl_0701A568) +DISPLAY_LIST(rr_seg7_dl_0701B4C0) +DISPLAY_LIST(rr_seg7_dl_0701ADF8) +DISPLAY_LIST(rr_seg7_dl_07019AE0) +DISPLAY_LIST(rr_seg7_dl_0701E670) +DISPLAY_LIST(rr_seg7_dl_07021100) +DISPLAY_LIST(rr_seg7_dl_07023B90) +DISPLAY_LIST(rr_seg7_dl_07026630) +DISPLAY_LIST(rr_seg7_dl_07028FA8) +DISPLAY_LIST(sa_seg7_dl_07002DE8) +DISPLAY_LIST(sa_seg7_dl_07002FD0) +DISPLAY_LIST(sl_seg7_dl_07005478) +DISPLAY_LIST(sl_seg7_dl_070056B0) +DISPLAY_LIST(sl_seg7_dl_070073D0) +DISPLAY_LIST(sl_seg7_dl_07007880) +DISPLAY_LIST(sl_seg7_dl_070088B0) +DISPLAY_LIST(sl_seg7_dl_07008D58) +DISPLAY_LIST(sl_seg7_dl_0700A5A0) +DISPLAY_LIST(sl_seg7_dl_0700BAE8) +DISPLAY_LIST(sl_seg7_dl_0700BCF8) +DISPLAY_LIST(sl_seg7_dl_0700C9E8) +DISPLAY_LIST(sl_seg7_dl_0700CB58) +DISPLAY_LIST(sl_seg7_dl_0700A780) +DISPLAY_LIST(sl_seg7_dl_0700A890) +DISPLAY_LIST(sl_seg7_dl_0700A980) +DISPLAY_LIST(ssl_dl_quicksand_begin) +DISPLAY_LIST(ssl_dl_quicksand_end) +DISPLAY_LIST(ssl_dl_pyramid_quicksand) +DISPLAY_LIST(ssl_dl_pyramid_corners_quicksand) +DISPLAY_LIST(ssl_dl_sides_quicksand) +DISPLAY_LIST(ssl_seg7_dl_07009F48) +DISPLAY_LIST(ssl_seg7_dl_0700BA78) +DISPLAY_LIST(ssl_seg7_dl_0700BC18) +DISPLAY_LIST(ssl_seg7_dl_0700BD00) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_begin) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_begin) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_front_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_side_end) +DISPLAY_LIST(ssl_seg7_dl_0701EE80) +DISPLAY_LIST(ssl_seg7_dl_0701F920) +DISPLAY_LIST(ssl_seg7_dl_0701FCE0) +DISPLAY_LIST(ssl_dl_quicksand_pit_begin) +DISPLAY_LIST(ssl_dl_quicksand_pit_end) +DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_begin) +DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_end) +DISPLAY_LIST(ssl_dl_quicksand_pit) +DISPLAY_LIST(ssl_seg7_dl_07021A08) +DISPLAY_LIST(ssl_seg7_dl_07021DE8) +DISPLAY_LIST(ssl_seg7_dl_070220A8) +DISPLAY_LIST(ssl_seg7_dl_070221E8) +DISPLAY_LIST(ssl_seg7_dl_07022CF8) +DISPLAY_LIST(ssl_seg7_dl_070233A8) +DISPLAY_LIST(ssl_seg7_dl_070235C0) +DISPLAY_LIST(ssl_seg7_dl_0700BF18) +DISPLAY_LIST(ssl_seg7_dl_070228A8) +DISPLAY_LIST(ssl_seg7_dl_070229E8) +DISPLAY_LIST(ssl_seg7_dl_0700FCE0) +DISPLAY_LIST(thi_seg7_dl_07005260) +DISPLAY_LIST(thi_seg7_dl_07006968) +DISPLAY_LIST(thi_seg7_dl_07007008) +DISPLAY_LIST(thi_seg7_dl_070072E8) +DISPLAY_LIST(thi_seg7_dl_070073C0) +DISPLAY_LIST(thi_seg7_dl_07007648) +DISPLAY_LIST(thi_seg7_dl_07007930) +DISPLAY_LIST(thi_seg7_dl_07007538) +DISPLAY_LIST(thi_seg7_dl_07007C20) +DISPLAY_LIST(thi_seg7_dl_07009670) +DISPLAY_LIST(thi_seg7_dl_07009D50) +DISPLAY_LIST(thi_seg7_dl_07009F58) +DISPLAY_LIST(totwc_seg7_dl_07005D28) +DISPLAY_LIST(totwc_seg7_dl_07007048) +DISPLAY_LIST(totwc_seg7_dl_070078B8) +DISPLAY_LIST(totwc_seg7_dl_070079A8) +DISPLAY_LIST(ttc_dl_surface_treadmill_begin) +DISPLAY_LIST(ttc_dl_surface_treadmill_end) +DISPLAY_LIST(ttc_dl_surface_treadmill) +DISPLAY_LIST(ttc_seg7_dl_0700AD38) +DISPLAY_LIST(ttc_seg7_dl_0700B1D8) +DISPLAY_LIST(ttc_seg7_dl_0700E878) +DISPLAY_LIST(ttc_seg7_dl_07011B38) +DISPLAY_LIST(ttc_seg7_dl_070116A8) +DISPLAY_LIST(ttc_seg7_dl_07012278) +DISPLAY_LIST(ttc_seg7_dl_0700FBB8) +DISPLAY_LIST(ttc_seg7_dl_0700F760) +DISPLAY_LIST(ttc_seg7_dl_07011040) +DISPLAY_LIST(ttc_seg7_dl_07011360) +DISPLAY_LIST(ttc_seg7_dl_070102B8) +DISPLAY_LIST(ttc_seg7_dl_0700ECB8) +DISPLAY_LIST(ttc_seg7_dl_07010868) +DISPLAY_LIST(ttc_seg7_dl_0700EFE0) +DISPLAY_LIST(ttc_seg7_dl_07010D38) +DISPLAY_LIST(ttc_seg7_dl_07012148) +DISPLAY_LIST(ttc_seg7_dl_0700FFE8) +DISPLAY_LIST(ttc_seg7_dl_07012028) +DISPLAY_LIST(ttm_dl_waterfall) +DISPLAY_LIST(ttm_dl_bottom_waterfall) +DISPLAY_LIST(ttm_dl_puddle_waterfall) +DISPLAY_LIST(ttm_seg7_dl_07012388) +DISPLAY_LIST(ttm_seg7_dl_070123A0) +DISPLAY_LIST(ttm_seg7_dl_070123B8) +DISPLAY_LIST(ttm_seg7_dl_07012410) +DISPLAY_LIST(ttm_seg7_dl_0700A120) +DISPLAY_LIST(ttm_seg7_dl_0700CAE0) +DISPLAY_LIST(ttm_seg7_dl_0700CD10) +DISPLAY_LIST(ttm_seg7_dl_0700D1D8) +DISPLAY_LIST(ttm_seg7_dl_0700D688) +DISPLAY_LIST(ttm_seg7_dl_0700DF78) +DISPLAY_LIST(ttm_seg7_dl_0700E308) +DISPLAY_LIST(ttm_seg7_dl_0700EAC8) +DISPLAY_LIST(ttm_seg7_dl_0700EC58) +DISPLAY_LIST(ttm_seg7_dl_0700F270) +DISPLAY_LIST(ttm_seg7_dl_0700FA18) +DISPLAY_LIST(ttm_seg7_dl_07010978) +DISPLAY_LIST(ttm_seg7_dl_07010A68) +DISPLAY_LIST(ttm_seg7_dl_07011128) +DISPLAY_LIST(ttm_seg7_dl_0700A2E0) +DISPLAY_LIST(ttm_seg7_dl_07011608) +DISPLAY_LIST(ttm_seg7_dl_07011C78) +DISPLAY_LIST(ttm_seg7_dl_07011D78) +DISPLAY_LIST(ttm_seg7_dl_0700A8C0) +DISPLAY_LIST(ttm_seg7_dl_0700AB08) +DISPLAY_LIST(ttm_seg7_dl_0700AF90) +DISPLAY_LIST(ttm_seg7_dl_0700B0D0) +DISPLAY_LIST(ttm_seg7_dl_0700B530) +DISPLAY_LIST(ttm_seg7_dl_0700B670) +DISPLAY_LIST(ttm_seg7_dl_0700BAD0) +DISPLAY_LIST(ttm_seg7_dl_0700BC10) +DISPLAY_LIST(ttm_seg7_dl_0700BE20) +DISPLAY_LIST(ttm_seg7_dl_0700C070) +DISPLAY_LIST(ttm_seg7_dl_0700C408) +DISPLAY_LIST(ttm_seg7_dl_0701D798) +DISPLAY_LIST(ttm_seg7_dl_0701DBB8) +DISPLAY_LIST(ttm_seg7_dl_070249A0) +DISPLAY_LIST(ttm_seg7_dl_07024C78) +DISPLAY_LIST(ttm_seg7_dl_07025F48) +DISPLAY_LIST(ttm_seg7_dl_0702A1B8) +DISPLAY_LIST(ttm_seg7_dl_0702A8A0) +DISPLAY_LIST(ttm_seg7_dl_0702A9C0) +DISPLAY_LIST(ttm_seg7_dl_0702AC78) +DISPLAY_LIST(ttm_seg7_dl_07012270) +DISPLAY_LIST(ttm_seg7_dl_0702BB60) +DISPLAY_LIST(ttm_seg7_dl_07013430) +DISPLAY_LIST(ttm_seg7_dl_07013608) +DISPLAY_LIST(ttm_seg7_dl_0702AB90) +DISPLAY_LIST(ttm_seg7_dl_0702AAA8) +DISPLAY_LIST(vcutm_seg7_dl_07007E88) +DISPLAY_LIST(vcutm_seg7_dl_070080D0) +DISPLAY_LIST(vcutm_seg7_dl_07008E10) +DISPLAY_LIST(vcutm_seg7_dl_070093E8) +DISPLAY_LIST(vcutm_seg7_dl_070096E0) +DISPLAY_LIST(wdw_seg7_dl_07009AB0) +DISPLAY_LIST(wdw_seg7_dl_0700A138) +DISPLAY_LIST(wdw_seg7_dl_07012798) +DISPLAY_LIST(wdw_seg7_dl_07011E48) +DISPLAY_LIST(wdw_seg7_dl_07012258) +DISPLAY_LIST(wdw_seg7_dl_07012E88) +DISPLAY_LIST(wdw_seg7_dl_07012908) +DISPLAY_LIST(wdw_seg7_dl_07013B70) +DISPLAY_LIST(wdw_seg7_dl_07013490) +DISPLAY_LIST(wdw_seg7_dl_07013E40) +DISPLAY_LIST(wdw_seg7_dl_070140E0) +DISPLAY_LIST(wdw_seg7_dl_07012B90) +DISPLAY_LIST(wdw_seg7_dl_070131B8) +DISPLAY_LIST(wf_seg7_dl_070050C8) +DISPLAY_LIST(wf_seg7_dl_070087B0) +DISPLAY_LIST(wf_seg7_dl_07008FE8) +DISPLAY_LIST(wf_seg7_dl_07009278) +DISPLAY_LIST(wf_seg7_dl_07009780) +DISPLAY_LIST(wf_seg7_dl_07009890) +DISPLAY_LIST(wf_seg7_dl_07009DB0) +DISPLAY_LIST(wf_seg7_dl_0700A170) +DISPLAY_LIST(wf_seg7_dl_0700ABA0) +DISPLAY_LIST(wf_seg7_dl_0700AEC8) +DISPLAY_LIST(wf_seg7_dl_0700AFB8) +DISPLAY_LIST(wf_seg7_dl_0700BA28) +DISPLAY_LIST(wf_seg7_dl_0700BF50) +DISPLAY_LIST(wf_seg7_dl_0700D028) +DISPLAY_LIST(wf_seg7_dl_0700D300) +DISPLAY_LIST(wf_seg7_dl_070052B8) +DISPLAY_LIST(wf_seg7_dl_07005538) +DISPLAY_LIST(wf_seg7_dl_07005690) +DISPLAY_LIST(wf_seg7_dl_07005DD8) +DISPLAY_LIST(wf_seg7_dl_07005EE8) +DISPLAY_LIST(wf_seg7_dl_070064E8) +DISPLAY_LIST(wf_seg7_dl_070065F8) +DISPLAY_LIST(wf_seg7_dl_07006820) +DISPLAY_LIST(wf_seg7_dl_07007220) +DISPLAY_LIST(wf_seg7_dl_07007518) +DISPLAY_LIST(wf_seg7_dl_0700EDC0) +DISPLAY_LIST(wf_seg7_dl_0700F340) +DISPLAY_LIST(wf_seg7_dl_0700F1A8) +DISPLAY_LIST(wf_seg7_dl_0700F018) +DISPLAY_LIST(wf_seg7_dl_0700F610) +DISPLAY_LIST(wf_seg7_dl_0700F6C0) +DISPLAY_LIST(wf_seg7_dl_0700DE20) +DISPLAY_LIST(wf_seg7_dl_0700E760) +DISPLAY_LIST(wf_seg7_dl_0700E9B8) +DISPLAY_LIST(wf_seg7_dl_0700EB40) +DISPLAY_LIST(wf_seg7_dl_0700D708) +DISPLAY_LIST(wf_seg7_dl_0700D9F0) +DISPLAY_LIST(wf_seg7_dl_0700F7F8) +DISPLAY_LIST(wf_seg7_dl_0700E3D0) +DISPLAY_LIST(wf_seg7_dl_0700E0F0) +DISPLAY_LIST(wmotr_seg7_dl_0700C1F8) +DISPLAY_LIST(wmotr_seg7_dl_0700EFD8) +DISPLAY_LIST(wmotr_seg7_dl_07010608) +DISPLAY_LIST(dl_billboard_num3_0) +DISPLAY_LIST(dl_billboard_num3_1) +DISPLAY_LIST(dl_billboard_num3_2) +DISPLAY_LIST(dl_billboard_num3_3) +DISPLAY_LIST(dl_billboard_num3_4) +DISPLAY_LIST(dl_billboard_num3_5) +DISPLAY_LIST(dl_billboard_num3_6) +DISPLAY_LIST(dl_billboard_num3_7) +DISPLAY_LIST(dl_billboard_num3_8) +DISPLAY_LIST(dl_billboard_num3_9) +DISPLAY_LIST(dl_billboard_num3_0x) +DISPLAY_LIST(dl_billboard_num3_1x) +DISPLAY_LIST(dl_billboard_num3_2x) +DISPLAY_LIST(dl_billboard_num3_3x) +DISPLAY_LIST(dl_billboard_num3_4x) +DISPLAY_LIST(dl_billboard_num3_5x) +DISPLAY_LIST(dl_billboard_num3_6x) +DISPLAY_LIST(dl_billboard_num3_7x) +DISPLAY_LIST(dl_billboard_num3_8x) +DISPLAY_LIST(dl_billboard_num3_9x) +DISPLAY_LIST(dl_billboard_num3_x0) +DISPLAY_LIST(dl_billboard_num3_x1) +DISPLAY_LIST(dl_billboard_num3_x2) +DISPLAY_LIST(dl_billboard_num3_x3) +DISPLAY_LIST(dl_billboard_num3_x4) +DISPLAY_LIST(dl_billboard_num3_x5) +DISPLAY_LIST(dl_billboard_num3_x6) +DISPLAY_LIST(dl_billboard_num3_x7) +DISPLAY_LIST(dl_billboard_num3_x8) +DISPLAY_LIST(dl_billboard_num3_x9) +DISPLAY_LIST(dl_billboard_num3_0xx) +DISPLAY_LIST(dl_billboard_num3_1xx) +DISPLAY_LIST(dl_billboard_num3_2xx) +DISPLAY_LIST(dl_billboard_num3_3xx) +DISPLAY_LIST(dl_billboard_num3_4xx) +DISPLAY_LIST(dl_billboard_num3_5xx) +DISPLAY_LIST(dl_billboard_num3_6xx) +DISPLAY_LIST(dl_billboard_num3_7xx) +DISPLAY_LIST(dl_billboard_num3_8xx) +DISPLAY_LIST(dl_billboard_num3_9xx) +DISPLAY_LIST(dl_billboard_num3_x0x) +DISPLAY_LIST(dl_billboard_num3_x1x) +DISPLAY_LIST(dl_billboard_num3_x2x) +DISPLAY_LIST(dl_billboard_num3_x3x) +DISPLAY_LIST(dl_billboard_num3_x4x) +DISPLAY_LIST(dl_billboard_num3_x5x) +DISPLAY_LIST(dl_billboard_num3_x6x) +DISPLAY_LIST(dl_billboard_num3_x7x) +DISPLAY_LIST(dl_billboard_num3_x8x) +DISPLAY_LIST(dl_billboard_num3_x9x) +DISPLAY_LIST(dl_billboard_num3_xx0) +DISPLAY_LIST(dl_billboard_num3_xx1) +DISPLAY_LIST(dl_billboard_num3_xx2) +DISPLAY_LIST(dl_billboard_num3_xx3) +DISPLAY_LIST(dl_billboard_num3_xx4) +DISPLAY_LIST(dl_billboard_num3_xx5) +DISPLAY_LIST(dl_billboard_num3_xx6) +DISPLAY_LIST(dl_billboard_num3_xx7) +DISPLAY_LIST(dl_billboard_num3_xx8) +DISPLAY_LIST(dl_billboard_num3_xx9) diff --git a/src/engine/graph_node.c b/src/engine/graph_node.c index d1eb67207..024133b75 100644 --- a/src/engine/graph_node.c +++ b/src/engine/graph_node.c @@ -235,7 +235,7 @@ init_graph_node_translation_rotation(struct DynamicPool *pool, vec3s_copy(graphNode->translation, translation); vec3s_copy(graphNode->rotation, rotation); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -257,7 +257,7 @@ struct GraphNodeTranslation *init_graph_node_translation(struct DynamicPool *poo vec3s_copy(graphNode->translation, translation); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -278,7 +278,7 @@ struct GraphNodeRotation *init_graph_node_rotation(struct DynamicPool *pool, init_scene_graph_node_links(&graphNode->node, GRAPH_NODE_TYPE_ROTATION); vec3s_copy(graphNode->rotation, rotation); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -299,7 +299,7 @@ struct GraphNodeScale *init_graph_node_scale(struct DynamicPool *pool, graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); graphNode->scale = scale; graphNode->prevScale = scale; - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -369,7 +369,7 @@ struct GraphNodeAnimatedPart *init_graph_node_animated_part(struct DynamicPool * init_scene_graph_node_links(&graphNode->node, GRAPH_NODE_TYPE_ANIMATED_PART); vec3s_copy(graphNode->translation, translation); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -390,7 +390,7 @@ struct GraphNodeBillboard *init_graph_node_billboard(struct DynamicPool *pool, init_scene_graph_node_links(&graphNode->node, GRAPH_NODE_TYPE_BILLBOARD); vec3s_copy(graphNode->translation, translation); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; @@ -409,7 +409,7 @@ struct GraphNodeDisplayList *init_graph_node_display_list(struct DynamicPool *po if (graphNode != NULL) { init_scene_graph_node_links(&graphNode->node, GRAPH_NODE_TYPE_DISPLAY_LIST); graphNode->node.flags = (drawingLayer << 8) | (graphNode->node.flags & 0xFF); - graphNode->displayList = dynos_model_duplicate_displaylist(displayList); + graphNode->displayList = dynos_model_get_writable_display_list(displayList); } return graphNode; diff --git a/src/game/moving_texture.c b/src/game/moving_texture.c index ceb07ab98..9e3a2e0dc 100644 --- a/src/game/moving_texture.c +++ b/src/game/moving_texture.c @@ -90,12 +90,12 @@ struct MovtexObject { /// segmented address to movtex mesh with vertices void *movtexVerts; /// display list inserted before moving triangles - Gfx *beginDl; + const Gfx *beginDl; /// display list inserted after moving triangles - Gfx *endDl; + const Gfx *endDl; /// display list with the actual moving texture triangles. /// Assumes the animated vertices are buffered and correct texture is set - Gfx *triDl; + const Gfx *triDl; // if the list does not have per-vertex colors, all vertices have these colors u8 r; /// red u8 g; /// green @@ -134,58 +134,58 @@ u8 *gMovtexIdToTexture[] = { texture_waterbox_water, texture_waterbox_mist, texture_waterbox_lava, ssl_quicksand, ssl_pyramid_sand, ttc_yellow_triangle }; -extern Gfx castle_grounds_dl_waterfall[]; +extern const Gfx castle_grounds_dl_waterfall[]; extern s16 castle_grounds_movtex_tris_waterfall[]; extern s16 ssl_movtex_tris_pyramid_sand_pathway_front[]; -extern Gfx ssl_dl_pyramid_sand_pathway_begin[]; -extern Gfx ssl_dl_pyramid_sand_pathway_end[]; -extern Gfx ssl_dl_pyramid_sand_pathway_front_end[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_begin[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_end[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_front_end[]; extern s16 ssl_movtex_tris_pyramid_sand_pathway_floor[]; -extern Gfx ssl_dl_pyramid_sand_pathway_floor_begin[]; -extern Gfx ssl_dl_pyramid_sand_pathway_floor_end[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_floor_begin[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_floor_end[]; extern s16 ssl_movtex_tris_pyramid_sand_pathway_side[]; -extern Gfx ssl_dl_pyramid_sand_pathway_side_end[]; +extern const Gfx ssl_dl_pyramid_sand_pathway_side_end[]; extern s16 bitfs_movtex_tris_lava_first_section[]; -extern Gfx bitfs_dl_lava_sections[]; +extern const Gfx bitfs_dl_lava_sections[]; extern s16 bitfs_movtex_tris_lava_second_section[]; extern s16 bitfs_movtex_tris_lava_floor[]; -extern Gfx bitfs_dl_lava_floor[]; +extern const Gfx bitfs_dl_lava_floor[]; extern s16 lll_movtex_tris_lava_floor[]; -extern Gfx lll_dl_lava_floor[]; +extern const Gfx lll_dl_lava_floor[]; extern s16 lll_movtex_tris_lavafall_volcano[]; -extern Gfx lll_dl_lavafall_volcano[]; +extern const Gfx lll_dl_lavafall_volcano[]; extern s16 cotmc_movtex_tris_water[]; -extern Gfx cotmc_dl_water_begin[]; -extern Gfx cotmc_dl_water_end[]; -extern Gfx cotmc_dl_water[]; +extern const Gfx cotmc_dl_water_begin[]; +extern const Gfx cotmc_dl_water_end[]; +extern const Gfx cotmc_dl_water[]; extern s16 ttm_movtex_tris_begin_waterfall[]; -extern Gfx ttm_dl_waterfall[]; +extern const Gfx ttm_dl_waterfall[]; extern s16 ttm_movtex_tris_end_waterfall[]; extern s16 ttm_movtex_tris_begin_puddle_waterfall[]; -extern Gfx ttm_dl_bottom_waterfall[]; +extern const Gfx ttm_dl_bottom_waterfall[]; extern s16 ttm_movtex_tris_end_puddle_waterfall[]; extern s16 ttm_movtex_tris_puddle_waterfall[]; -extern Gfx ttm_dl_puddle_waterfall[]; +extern const Gfx ttm_dl_puddle_waterfall[]; extern s16 ssl_movtex_tris_pyramid_quicksand[]; -extern Gfx ssl_dl_quicksand_begin[]; -extern Gfx ssl_dl_quicksand_end[]; -extern Gfx ssl_dl_pyramid_quicksand[]; +extern const Gfx ssl_dl_quicksand_begin[]; +extern const Gfx ssl_dl_quicksand_end[]; +extern const Gfx ssl_dl_pyramid_quicksand[]; extern s16 ssl_movtex_tris_pyramid_corners_quicksand[]; -extern Gfx ssl_dl_pyramid_corners_quicksand[]; +extern const Gfx ssl_dl_pyramid_corners_quicksand[]; extern s16 ssl_movtex_tris_sides_quicksand[]; -extern Gfx ssl_dl_sides_quicksand[]; +extern const Gfx ssl_dl_sides_quicksand[]; extern s16 ttc_movtex_tris_big_surface_treadmill[]; -extern Gfx ttc_dl_surface_treadmill_begin[]; -extern Gfx ttc_dl_surface_treadmill_end[]; -extern Gfx ttc_dl_surface_treadmill[]; +extern const Gfx ttc_dl_surface_treadmill_begin[]; +extern const Gfx ttc_dl_surface_treadmill_end[]; +extern const Gfx ttc_dl_surface_treadmill[]; extern s16 ttc_movtex_tris_small_surface_treadmill[]; extern s16 ssl_movtex_tris_quicksand_pit[]; -extern Gfx ssl_dl_quicksand_pit_begin[]; -extern Gfx ssl_dl_quicksand_pit_end[]; -extern Gfx ssl_dl_quicksand_pit[]; +extern const Gfx ssl_dl_quicksand_pit_begin[]; +extern const Gfx ssl_dl_quicksand_pit_end[]; +extern const Gfx ssl_dl_quicksand_pit[]; extern s16 ssl_movtex_tris_pyramid_quicksand_pit[]; -extern Gfx ssl_dl_pyramid_quicksand_pit_begin[]; -extern Gfx ssl_dl_pyramid_quicksand_pit_end[]; +extern const Gfx ssl_dl_pyramid_quicksand_pit_begin[]; +extern const Gfx ssl_dl_pyramid_quicksand_pit_end[]; /** * MovtexObjects that have no color attributes per vertex (though the mesh diff --git a/src/game/segment2.h b/src/game/segment2.h index 81601a681..0a0bced19 100644 --- a/src/game/segment2.h +++ b/src/game/segment2.h @@ -9,10 +9,10 @@ extern u8* seg2_course_name_table[]; extern u8* seg2_course_name_table_original[]; extern u8* seg2_act_name_table[]; extern u8* seg2_act_name_table_original[]; -extern Gfx dl_rgba16_text_begin[]; -extern Gfx dl_rgba16_text_end[]; -extern Gfx dl_ia_text_begin[]; -extern Gfx dl_ia_text_end[]; +extern const Gfx dl_rgba16_text_begin[]; +extern const Gfx dl_rgba16_text_end[]; +extern const Gfx dl_ia_text_begin[]; +extern const Gfx dl_ia_text_end[]; extern Texture texture_transition_star_half[]; extern Texture texture_transition_circle_half[]; extern Texture texture_transition_mario[]; @@ -22,51 +22,51 @@ extern Texture texture_waterbox_mist[]; extern Texture texture_waterbox_jrb_water[]; extern Texture texture_waterbox_unknown_water[]; extern Texture texture_waterbox_lava[]; -extern Gfx dl_proj_mtx_fullscreen[]; -extern Gfx dl_draw_quad_verts_0123[]; -extern Gfx dl_screen_transition_end[]; -extern Gfx dl_transition_draw_filled_region[]; -extern Gfx dl_shadow_circle[]; -extern Gfx dl_shadow_square[]; -extern Gfx dl_shadow_spike_ext[]; -extern Gfx dl_shadow_9_verts[]; -extern Gfx dl_shadow_4_verts[]; -extern Gfx dl_shadow_end[]; -extern Gfx dl_skybox_begin[]; -extern Gfx dl_skybox_tile_tex_settings[]; -extern Gfx dl_skybox_end[]; -extern Gfx dl_waterbox_ia16_begin[]; -extern Gfx dl_waterbox_rgba16_begin[]; -extern Gfx dl_waterbox_end[]; -extern Gfx dl_paintings_draw_ripples[]; -extern Gfx dl_paintings_rippling_begin[]; -extern Gfx dl_paintings_rippling_end[]; -extern Gfx dl_paintings_env_mapped_begin[]; -extern Gfx dl_paintings_env_mapped_end[]; +extern const Gfx dl_proj_mtx_fullscreen[]; +extern const Gfx dl_draw_quad_verts_0123[]; +extern const Gfx dl_screen_transition_end[]; +extern const Gfx dl_transition_draw_filled_region[]; +extern const Gfx dl_shadow_circle[]; +extern const Gfx dl_shadow_square[]; +extern const Gfx dl_shadow_spike_ext[]; +extern const Gfx dl_shadow_9_verts[]; +extern const Gfx dl_shadow_4_verts[]; +extern const Gfx dl_shadow_end[]; +extern const Gfx dl_skybox_begin[]; +extern const Gfx dl_skybox_tile_tex_settings[]; +extern const Gfx dl_skybox_end[]; +extern const Gfx dl_waterbox_ia16_begin[]; +extern const Gfx dl_waterbox_rgba16_begin[]; +extern const Gfx dl_waterbox_end[]; +extern const Gfx dl_paintings_draw_ripples[]; +extern const Gfx dl_paintings_rippling_begin[]; +extern const Gfx dl_paintings_rippling_end[]; +extern const Gfx dl_paintings_env_mapped_begin[]; +extern const Gfx dl_paintings_env_mapped_end[]; extern u8 seg2_painting_triangle_mesh[]; extern u8 seg2_painting_mesh_neighbor_tris[]; extern u8* main_hud_lut[58]; -extern Gfx dl_hud_img_load_tex_block[]; -extern Gfx dl_hud_img_begin[]; -extern Gfx dl_hud_img_end[]; +extern const Gfx dl_hud_img_load_tex_block[]; +extern const Gfx dl_hud_img_begin[]; +extern const Gfx dl_hud_img_end[]; extern void *main_font_lut[]; -extern Gfx dl_ia_text_tex_settings[]; -extern Gfx dl_rgba16_load_tex_block[]; +extern const Gfx dl_ia_text_tex_settings[]; +extern const Gfx dl_rgba16_load_tex_block[]; extern void *main_credits_font_lut[]; extern u8* main_hud_camera_lut[6]; -extern Gfx dl_draw_text_bg_box[]; -extern Gfx dl_draw_triangle[]; +extern const Gfx dl_draw_text_bg_box[]; +extern const Gfx dl_draw_triangle[]; extern const u8* seg2_dialog_original[]; extern void *seg2_dialog_table[]; -extern Gfx dl_billboard_num_0[]; -extern Gfx dl_billboard_num_1[]; -extern Gfx dl_billboard_num_2[]; -extern Gfx dl_billboard_num_3[]; -extern Gfx dl_billboard_num_4[]; -extern Gfx dl_billboard_num_5[]; -extern Gfx dl_billboard_num_6[]; -extern Gfx dl_billboard_num_7[]; -extern Gfx dl_billboard_num_8[]; -extern Gfx dl_billboard_num_9[]; +extern const Gfx dl_billboard_num_0[]; +extern const Gfx dl_billboard_num_1[]; +extern const Gfx dl_billboard_num_2[]; +extern const Gfx dl_billboard_num_3[]; +extern const Gfx dl_billboard_num_4[]; +extern const Gfx dl_billboard_num_5[]; +extern const Gfx dl_billboard_num_6[]; +extern const Gfx dl_billboard_num_7[]; +extern const Gfx dl_billboard_num_8[]; +extern const Gfx dl_billboard_num_9[]; #endif // SEGMENT2_H diff --git a/src/game/segment7.h b/src/game/segment7.h index 6692ac6b4..0ce62b391 100644 --- a/src/game/segment7.h +++ b/src/game/segment7.h @@ -5,27 +5,27 @@ #include // from main menu segment 7 -extern u8 dl_menu_idle_hand[]; -extern u8 dl_menu_grabbing_hand[]; -extern u8 menu_hud_lut[]; -extern u8 menu_font_lut[]; -extern u8 dl_menu_ia8_text_begin[]; -extern u8 dl_menu_ia8_text_end[]; -extern u8 dl_menu_rgba16_wood_course[]; +extern const Gfx dl_menu_idle_hand[]; +extern const Gfx dl_menu_grabbing_hand[]; +extern const Gfx menu_hud_lut[]; +extern const Gfx menu_font_lut[]; +extern const Gfx dl_menu_ia8_text_begin[]; +extern const Gfx dl_menu_ia8_text_end[]; +extern const Gfx dl_menu_rgba16_wood_course[]; #ifdef VERSION_EU -extern u8 dl_menu_rgba16_wood_course_end[]; -extern u8 dl_menu_texture_course_upper[]; -extern u8 dl_menu_texture_niveau_upper[]; -extern u8 dl_menu_texture_kurs_upper[]; +extern const Gfx dl_menu_rgba16_wood_course_end[]; +extern const Gfx dl_menu_texture_course_upper[]; +extern const Gfx dl_menu_texture_niveau_upper[]; +extern const Gfx dl_menu_texture_kurs_upper[]; -extern const u8 eu_course_strings_en_table[]; -extern const u8 eu_course_strings_fr_table[]; -extern const u8 eu_course_strings_de_table[]; +extern const Gfx eu_course_strings_en_table[]; +extern const Gfx eu_course_strings_fr_table[]; +extern const Gfx eu_course_strings_de_table[]; #endif // from intro_segment7 -extern Gfx *intro_seg7_dl_0700B3A0; -extern Gfx *intro_seg7_dl_0700C6A0; +extern const Gfx intro_seg7_dl_0700B3A0[]; +extern const Gfx intro_seg7_dl_0700C6A0[]; extern f32 intro_seg7_table_0700C790[]; extern f32 intro_seg7_table_0700C880[]; diff --git a/src/pc/network/network.c b/src/pc/network/network.c index 529f35f65..eb5cf95a2 100644 --- a/src/pc/network/network.c +++ b/src/pc/network/network.c @@ -669,6 +669,8 @@ void network_shutdown(bool sendLeaving, bool exiting, bool popup, bool reconnect if (exiting) { return; } + dynos_model_restore_vanilla_display_lists(); + // reset other stuff extern u8* gOverrideEeprom; gOverrideEeprom = NULL;