├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── missing-translation.md │ └── mistranslation.md ├── .gitignore ├── LICENSE ├── RBC1GP-String-Editor └── src │ ├── bad.json │ ├── bad_tab.py │ ├── events_tab.py │ ├── file_reader.py │ ├── main.py │ ├── resources │ ├── c1gp.tbl │ └── modified.tbl │ ├── rivals.json │ ├── rivals_tab.py │ └── teams_tab.py ├── README.md ├── c1gp_atlas_cart ├── add_to_out.txt ├── ascii.tbl ├── atlas.bat ├── bin │ ├── 00000224.bin │ ├── 00000227.bin │ ├── 00000228.bin │ ├── 00000229.bin │ ├── 00000230.bin │ ├── 00000231.bin │ └── 00000737.bin ├── c1gp.tbl ├── cartographer.bat ├── cartographer_scripts │ ├── c1gp_224.txt │ ├── c1gp_227.txt │ ├── c1gp_228.txt │ ├── c1gp_229.txt │ ├── c1gp_230.txt │ ├── c1gp_231.txt │ └── c1gp_737.txt ├── ext │ ├── Atlas.exe │ └── Cartographer.exe ├── find_repeat.py └── out │ ├── 224.txt │ ├── 227.txt │ ├── 228.txt │ ├── 229.txt │ ├── 230.txt │ ├── 231.txt │ └── 737.txt ├── misc ├── TM2.hexpat ├── bad_struct.hexpat ├── clut_visualizer.hexnode ├── event_struct.hexpat ├── gnk_table.tbl ├── gnk_table.xlsx ├── jp_font.png ├── rival_struct.hexpat ├── rival_struct.jpg ├── rival_struct_info_from_ghidra.txt └── tuning_descriptions_translated.txt ├── non-offset-files ├── 00000210.bin ├── 00000211.bin └── 00000212.bin ├── pnach ├── SLPM-65897_1C087362.pnach ├── SLPM_658.97_patchedElf └── widescreen_patch │ └── SLPM-65897_1C087362.pnach └── texture_replacement ├── 216 ├── 00000216.tm2 └── 00000216_layer0_0.png ├── 217 ├── 00000217.tm2 └── 00000217_layer0_0.png ├── 693 ├── 00000693.tm2 ├── 00000693_layer1_reference.png └── 00000693_layer2_reference.png ├── 735 ├── 00000735.tm2 ├── 00000735.xml ├── 00000735_layer0_0.png ├── 00000735_layer10_0.png ├── 00000735_layer11_0.png ├── 00000735_layer12_0.png ├── 00000735_layer13_0.png ├── 00000735_layer14_0.png ├── 00000735_layer15_0.png ├── 00000735_layer16_0.png ├── 00000735_layer17_0.png ├── 00000735_layer18_0.png ├── 00000735_layer19_0.png ├── 00000735_layer1_0.png ├── 00000735_layer20_0.png ├── 00000735_layer21_0.png ├── 00000735_layer22_0.png ├── 00000735_layer23_0.png ├── 00000735_layer24_0.png ├── 00000735_layer2_0.png ├── 00000735_layer3_0.png ├── 00000735_layer4_0.png ├── 00000735_layer5_0.png ├── 00000735_layer6_0.png ├── 00000735_layer7_0.png ├── 00000735_layer8_0.png └── 00000735_layer9_0.png ├── 760 ├── 00000760.tm2 └── 00000760_layer6_0.png ├── 762 ├── 00000762.tm2 ├── 00000762_layer0_0.png └── 00000762_layer1_0.png ├── 764 ├── 00000764.tm2 └── 00000764_layer2_0.png ├── 766 ├── 00000766.tm2 └── 00000766_layer6_0.png ├── 768 ├── 00000768.tm2 └── 00000768_layer0_0.png ├── 770 ├── 00000770.tm2 └── 00000770_layer10_0.png ├── 772 ├── 00000772.tm2 └── 00000772_layer5_0.png ├── 780 ├── 00000780.tm2 ├── 00000780.xml └── 00000780_layer2_0.png ├── 787 ├── 00000787.tm2 ├── 00000787.xml └── 00000787_layer1_reference.png ├── 792 ├── 00000792.tm2 ├── 00000792.xml ├── 00000792_layer10_0.png ├── 00000792_layer11_0.png ├── 00000792_layer12_0.png ├── 00000792_layer13_0.png ├── 00000792_layer14_0.png ├── 00000792_layer31_0.png ├── 00000792_layer6_0.png ├── 00000792_layer7_0.png ├── 00000792_layer8_0.png └── 00000792_layer9_0.png ├── 847 ├── 00000847.tm2 ├── 00000847.xml ├── 00000847_layer0_0.png ├── 00000847_layer1_0.png ├── 00000847_layer2_0.png ├── 00000847_layer3_0.png ├── 00000847_layer4_0.png ├── 00000847_layer5_0.png ├── 00000847_layer6_0.png ├── 00000847_layer7_0.png ├── 00000847_layer8_0.png └── 00000847_layer9_0.png ├── 852 ├── 00000852.tm2 ├── 00000852.xml ├── 00000852_layer0_0.png ├── 00000852_layer0_1.png ├── 00000852_layer0_reference.png ├── 00000852_layer1_0.png ├── 00000852_layer1_1.png ├── 00000852_layer1_reference.png ├── 00000852_layer2_0.png ├── 00000852_layer3_0.png ├── 00000852_layer4_0.png ├── 00000852_layer5_0.png ├── 00000852_layer6_0.png ├── 00000852_layer7_0.png ├── 00000852_layer8_0.png └── 00000852_layer9_0.png ├── 853 ├── 00000853.tm2 ├── 00000853.xml ├── 00000853_layer8_0.png ├── 00000853_layer8_1.png ├── 00000853_layer8_reference.png └── 00000853_layer9_0.png ├── 854 ├── 00000854.tm2 ├── 00000854.xml ├── 00000854_layer5_0.png ├── 00000854_layer5_1.png ├── 00000854_layer5_reference.png └── 00000854_layer6_0.png ├── 856 ├── 00000856.tm2 ├── 00000856.xml ├── 00000856_layer0_0.png ├── 00000856_layer0_1.png └── 00000856_layer0_reference.png ├── 857 ├── 00000857.tm2 ├── 00000857.xml └── 00000857_layer1_0.png ├── 858 ├── 00000858.tm2 ├── 00000858.xml └── 00000858_layer16_0.png ├── 859 ├── 00000859.tm2 ├── 00000859.xml ├── 00000859_layer10_0.png ├── 00000859_layer11_0.png ├── 00000859_layer14_reference.png ├── 00000859_layer1_0.png ├── 00000859_layer2_0.png ├── 00000859_layer3_0.png ├── 00000859_layer4_0.png ├── 00000859_layer5_0.png ├── 00000859_layer6_0.png ├── 00000859_layer7_0.png ├── 00000859_layer8_0.png └── 00000859_layer9_0.png ├── 860 ├── 00000860.tm2 ├── 00000860.xml ├── 00000860_layer10_0.png ├── 00000860_layer11_0.png ├── 00000860_layer12_0.png ├── 00000860_layer13_0.png ├── 00000860_layer14_0.png ├── 00000860_layer5_0.png ├── 00000860_layer69_0.png ├── 00000860_layer6_0.png ├── 00000860_layer7_0.png ├── 00000860_layer8_0.png └── 00000860_layer9_0.png ├── 862 ├── 00000862.tm2 ├── 00000862.xml ├── 00000862_layer10_0.png ├── 00000862_layer15_0.png ├── 00000862_layer16_0.png ├── 00000862_layer17_0.png ├── 00000862_layer42_0.png ├── 00000862_layer43_0.png ├── 00000862_layer44_0.png ├── 00000862_layer45_0.png ├── 00000862_layer46_0.png ├── 00000862_layer47_0.png ├── 00000862_layer48_0.png ├── 00000862_layer49_0.png ├── 00000862_layer50_0.png ├── 00000862_layer51_0.png ├── 00000862_layer52_0.png ├── 00000862_layer53_0.png ├── 00000862_layer54_0.png ├── 00000862_layer55_0.png ├── 00000862_layer56_0.png ├── 00000862_layer57_0.png ├── 00000862_layer58_0.png ├── 00000862_layer59_0.png ├── 00000862_layer60_0.png ├── 00000862_layer61_0.png ├── 00000862_layer62_0.png ├── 00000862_layer63_0.png ├── 00000862_layer64_0.png ├── 00000862_layer65_0.png ├── 00000862_layer66_0.png ├── 00000862_layer67_0.png ├── 00000862_layer68_0.png ├── 00000862_layer69_0.png ├── 00000862_layer6_0.png ├── 00000862_layer70_0.png ├── 00000862_layer71_0.png ├── 00000862_layer73_0.png ├── 00000862_layer74_0.png ├── 00000862_layer75_0.png ├── 00000862_layer76_0.png ├── 00000862_layer77_0.png ├── 00000862_layer78_0.png ├── 00000862_layer79_0.png ├── 00000862_layer80_0.png ├── 00000862_layer81_0.png ├── 00000862_layer82_0.png └── 00000862_layer8_0.png ├── 863 ├── 00000863.tm2 ├── 00000863.xml ├── 00000863_layer12_0.png ├── 00000863_layer21_reference.png ├── 00000863_layer36_0.png ├── 00000863_layer37_0.png ├── 00000863_layer57_reference.png └── 00000863_layer59_reference.png ├── 865 ├── 00000865.tm2 ├── 00000865.xml └── 00000865_layer28_0.png ├── 868 ├── 00000868.tm2 ├── 00000868.xml └── 00000868_layer16_reference.png ├── 869 ├── 00000869.tm2 ├── 00000869.xml ├── 00000869_layer0_reference.png ├── 00000869_layer19_reference.png ├── 00000869_layer24_reference.png ├── 00000869_layer2_reference.png ├── 00000869_layer6_0.png ├── 00000869_layer7_reference.png └── 00000869_layer8_reference.png ├── 870 ├── 00000870.tm2 ├── 00000870.xml └── 00000870_layer24_reference.png ├── 872 ├── 00000872.tm2 ├── 00000872.xml ├── 00000872_layer0_0.png └── 00000872_layer1_reference.png ├── 873 ├── 00000873.tm2 ├── 00000873.xml └── 00000873_layer6_0.png ├── 874 ├── 00000874.tm2 ├── 00000874_layer10_0.png ├── 00000874_layer11_0.png ├── 00000874_layer12_0.png ├── 00000874_layer13_0.png ├── 00000874_layer14_0.png ├── 00000874_layer5_0.png ├── 00000874_layer6_0.png ├── 00000874_layer7_0.png ├── 00000874_layer8_0.png └── 00000874_layer9_0.png ├── 875 ├── 00000875.tm2 ├── 00000875.xml ├── 00000875_layer12_0.png └── 00000875_layer16_0.png ├── 878 ├── 00000878.tm2 ├── 00000878.xml ├── 00000878_layer4_reference.png ├── 00000878_layer6_reference.png └── 00000878_layer7_reference.png ├── 879 ├── 00000879.tm2 ├── 00000879.xml ├── 00000879_layer33_0.png ├── 00000879_layer48_reference.png └── 00000879_layer54_reference.png ├── 880 ├── 00000880.tm2 ├── 00000880.xml ├── 00000880_layer20_0.png └── 00000880_layer28_reference.png ├── 883 ├── 00000883.tm2 ├── 00000883.xml └── 00000883_layer0_0.png ├── 884 ├── 00000884.tm2 ├── 00000884.xml ├── 00000884_layer11_reference.png ├── 00000884_layer5_reference.png ├── 00000884_layer7_reference.png └── 00000884_layer8_reference.png ├── 889 ├── 00000889.tm2 ├── 00000889.xml ├── 00000889_layer21_0.png ├── 00000889_layer25_reference.png ├── 00000889_layer26_0.png ├── 00000889_layer27_0.png ├── 00000889_layer28_0.png ├── 00000889_layer29_0.png ├── 00000889_layer30_0.png ├── 00000889_layer31_0.png ├── 00000889_layer32_0.png ├── 00000889_layer33_0.png ├── 00000889_layer34_0.png └── 00000889_layer4_0.png └── 891 ├── 00000891.tm2 ├── 00000891.xml ├── 00000891_layer2_0.png ├── 00000891_layer2_1.png ├── 00000891_layer2_reference.png ├── 00000891_layer53_0.png ├── 00000891_layer54_0.png └── 00000891_layer6_0.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/.github/ISSUE_TEMPLATE/missing-translation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mistranslation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/.github/ISSUE_TEMPLATE/mistranslation.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/bad.json -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/bad_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/bad_tab.py -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/events_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/events_tab.py -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/file_reader.py -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/main.py -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/resources/c1gp.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/resources/c1gp.tbl -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/resources/modified.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/resources/modified.tbl -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/rivals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/rivals.json -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/rivals_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/rivals_tab.py -------------------------------------------------------------------------------- /RBC1GP-String-Editor/src/teams_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/RBC1GP-String-Editor/src/teams_tab.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/README.md -------------------------------------------------------------------------------- /c1gp_atlas_cart/add_to_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/add_to_out.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/ascii.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/ascii.tbl -------------------------------------------------------------------------------- /c1gp_atlas_cart/atlas.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/atlas.bat -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000224.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000224.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000227.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000227.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000228.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000228.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000229.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000229.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000230.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000230.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000231.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000231.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/bin/00000737.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/bin/00000737.bin -------------------------------------------------------------------------------- /c1gp_atlas_cart/c1gp.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/c1gp.tbl -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer.bat -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_224.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_227.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_228.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_229.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_230.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_231.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/cartographer_scripts/c1gp_737.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/cartographer_scripts/c1gp_737.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/ext/Atlas.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/ext/Atlas.exe -------------------------------------------------------------------------------- /c1gp_atlas_cart/ext/Cartographer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/ext/Cartographer.exe -------------------------------------------------------------------------------- /c1gp_atlas_cart/find_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/find_repeat.py -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/224.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/227.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/228.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/229.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/230.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/231.txt -------------------------------------------------------------------------------- /c1gp_atlas_cart/out/737.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/c1gp_atlas_cart/out/737.txt -------------------------------------------------------------------------------- /misc/TM2.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/TM2.hexpat -------------------------------------------------------------------------------- /misc/bad_struct.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/bad_struct.hexpat -------------------------------------------------------------------------------- /misc/clut_visualizer.hexnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/clut_visualizer.hexnode -------------------------------------------------------------------------------- /misc/event_struct.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/event_struct.hexpat -------------------------------------------------------------------------------- /misc/gnk_table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/gnk_table.tbl -------------------------------------------------------------------------------- /misc/gnk_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/gnk_table.xlsx -------------------------------------------------------------------------------- /misc/jp_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/jp_font.png -------------------------------------------------------------------------------- /misc/rival_struct.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/rival_struct.hexpat -------------------------------------------------------------------------------- /misc/rival_struct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/rival_struct.jpg -------------------------------------------------------------------------------- /misc/rival_struct_info_from_ghidra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/rival_struct_info_from_ghidra.txt -------------------------------------------------------------------------------- /misc/tuning_descriptions_translated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/misc/tuning_descriptions_translated.txt -------------------------------------------------------------------------------- /non-offset-files/00000210.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/non-offset-files/00000210.bin -------------------------------------------------------------------------------- /non-offset-files/00000211.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/non-offset-files/00000211.bin -------------------------------------------------------------------------------- /non-offset-files/00000212.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/non-offset-files/00000212.bin -------------------------------------------------------------------------------- /pnach/SLPM-65897_1C087362.pnach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/pnach/SLPM-65897_1C087362.pnach -------------------------------------------------------------------------------- /pnach/SLPM_658.97_patchedElf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/pnach/SLPM_658.97_patchedElf -------------------------------------------------------------------------------- /pnach/widescreen_patch/SLPM-65897_1C087362.pnach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/pnach/widescreen_patch/SLPM-65897_1C087362.pnach -------------------------------------------------------------------------------- /texture_replacement/216/00000216.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/216/00000216.tm2 -------------------------------------------------------------------------------- /texture_replacement/216/00000216_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/216/00000216_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/217/00000217.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/217/00000217.tm2 -------------------------------------------------------------------------------- /texture_replacement/217/00000217_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/217/00000217_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/693/00000693.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/693/00000693.tm2 -------------------------------------------------------------------------------- /texture_replacement/693/00000693_layer1_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/693/00000693_layer1_reference.png -------------------------------------------------------------------------------- /texture_replacement/693/00000693_layer2_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/693/00000693_layer2_reference.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735.tm2 -------------------------------------------------------------------------------- /texture_replacement/735/00000735.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735.xml -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer11_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer13_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer14_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer15_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer15_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer16_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer17_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer17_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer18_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer18_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer19_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer19_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer20_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer21_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer22_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer22_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer23_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer23_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer24_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer3_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer4_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/735/00000735_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/735/00000735_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/760/00000760.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/760/00000760.tm2 -------------------------------------------------------------------------------- /texture_replacement/760/00000760_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/760/00000760_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/762/00000762.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/762/00000762.tm2 -------------------------------------------------------------------------------- /texture_replacement/762/00000762_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/762/00000762_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/762/00000762_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/762/00000762_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/764/00000764.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/764/00000764.tm2 -------------------------------------------------------------------------------- /texture_replacement/764/00000764_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/764/00000764_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/766/00000766.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/766/00000766.tm2 -------------------------------------------------------------------------------- /texture_replacement/766/00000766_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/766/00000766_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/768/00000768.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/768/00000768.tm2 -------------------------------------------------------------------------------- /texture_replacement/768/00000768_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/768/00000768_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/770/00000770.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/770/00000770.tm2 -------------------------------------------------------------------------------- /texture_replacement/770/00000770_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/770/00000770_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/772/00000772.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/772/00000772.tm2 -------------------------------------------------------------------------------- /texture_replacement/772/00000772_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/772/00000772_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/780/00000780.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/780/00000780.tm2 -------------------------------------------------------------------------------- /texture_replacement/780/00000780.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/780/00000780.xml -------------------------------------------------------------------------------- /texture_replacement/780/00000780_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/780/00000780_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/787/00000787.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/787/00000787.tm2 -------------------------------------------------------------------------------- /texture_replacement/787/00000787.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/787/00000787.xml -------------------------------------------------------------------------------- /texture_replacement/787/00000787_layer1_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/787/00000787_layer1_reference.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792.tm2 -------------------------------------------------------------------------------- /texture_replacement/792/00000792.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792.xml -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer11_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer13_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer14_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer31_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer31_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/792/00000792_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/792/00000792_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847.tm2 -------------------------------------------------------------------------------- /texture_replacement/847/00000847.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847.xml -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer3_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer4_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/847/00000847_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/847/00000847_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852.tm2 -------------------------------------------------------------------------------- /texture_replacement/852/00000852.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852.xml -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer0_1.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer0_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer0_reference.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer1_1.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer1_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer1_reference.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer3_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer4_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/852/00000852_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/852/00000852_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/853/00000853.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853.tm2 -------------------------------------------------------------------------------- /texture_replacement/853/00000853.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853.xml -------------------------------------------------------------------------------- /texture_replacement/853/00000853_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/853/00000853_layer8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853_layer8_1.png -------------------------------------------------------------------------------- /texture_replacement/853/00000853_layer8_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853_layer8_reference.png -------------------------------------------------------------------------------- /texture_replacement/853/00000853_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/853/00000853_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/854/00000854.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854.tm2 -------------------------------------------------------------------------------- /texture_replacement/854/00000854.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854.xml -------------------------------------------------------------------------------- /texture_replacement/854/00000854_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/854/00000854_layer5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854_layer5_1.png -------------------------------------------------------------------------------- /texture_replacement/854/00000854_layer5_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854_layer5_reference.png -------------------------------------------------------------------------------- /texture_replacement/854/00000854_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/854/00000854_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/856/00000856.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/856/00000856.tm2 -------------------------------------------------------------------------------- /texture_replacement/856/00000856.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/856/00000856.xml -------------------------------------------------------------------------------- /texture_replacement/856/00000856_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/856/00000856_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/856/00000856_layer0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/856/00000856_layer0_1.png -------------------------------------------------------------------------------- /texture_replacement/856/00000856_layer0_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/856/00000856_layer0_reference.png -------------------------------------------------------------------------------- /texture_replacement/857/00000857.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/857/00000857.tm2 -------------------------------------------------------------------------------- /texture_replacement/857/00000857.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/857/00000857.xml -------------------------------------------------------------------------------- /texture_replacement/857/00000857_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/857/00000857_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/858/00000858.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/858/00000858.tm2 -------------------------------------------------------------------------------- /texture_replacement/858/00000858.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/858/00000858.xml -------------------------------------------------------------------------------- /texture_replacement/858/00000858_layer16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/858/00000858_layer16_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859.tm2 -------------------------------------------------------------------------------- /texture_replacement/859/00000859.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859.xml -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer11_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer14_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer14_reference.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer1_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer3_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer4_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/859/00000859_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/859/00000859_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860.tm2 -------------------------------------------------------------------------------- /texture_replacement/860/00000860.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860.xml -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer11_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer13_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer14_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer69_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer69_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/860/00000860_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/860/00000860_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862.tm2 -------------------------------------------------------------------------------- /texture_replacement/862/00000862.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862.xml -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer15_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer15_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer16_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer17_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer17_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer42_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer42_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer43_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer43_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer44_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer44_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer45_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer45_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer46_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer46_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer47_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer47_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer48_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer49_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer49_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer50_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer50_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer51_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer51_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer52_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer52_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer53_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer53_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer54_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer54_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer55_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer55_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer56_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer56_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer57_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer57_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer58_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer58_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer59_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer59_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer60_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer60_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer61_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer61_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer62_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer62_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer63_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer63_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer64_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer64_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer65_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer65_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer66_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer66_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer67_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer67_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer68_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer68_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer69_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer69_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer70_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer70_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer71_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer71_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer73_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer73_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer74_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer74_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer75_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer75_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer76_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer76_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer77_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer77_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer78_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer78_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer79_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer79_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer80_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer80_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer81_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer81_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer82_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer82_0.png -------------------------------------------------------------------------------- /texture_replacement/862/00000862_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/862/00000862_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863.tm2 -------------------------------------------------------------------------------- /texture_replacement/863/00000863.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863.xml -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer21_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer21_reference.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer36_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer36_0.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer37_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer37_0.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer57_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer57_reference.png -------------------------------------------------------------------------------- /texture_replacement/863/00000863_layer59_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/863/00000863_layer59_reference.png -------------------------------------------------------------------------------- /texture_replacement/865/00000865.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/865/00000865.tm2 -------------------------------------------------------------------------------- /texture_replacement/865/00000865.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/865/00000865.xml -------------------------------------------------------------------------------- /texture_replacement/865/00000865_layer28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/865/00000865_layer28_0.png -------------------------------------------------------------------------------- /texture_replacement/868/00000868.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/868/00000868.tm2 -------------------------------------------------------------------------------- /texture_replacement/868/00000868.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/868/00000868.xml -------------------------------------------------------------------------------- /texture_replacement/868/00000868_layer16_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/868/00000868_layer16_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869.tm2 -------------------------------------------------------------------------------- /texture_replacement/869/00000869.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869.xml -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer0_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer0_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer19_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer19_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer24_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer24_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer2_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer2_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer7_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer7_reference.png -------------------------------------------------------------------------------- /texture_replacement/869/00000869_layer8_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/869/00000869_layer8_reference.png -------------------------------------------------------------------------------- /texture_replacement/870/00000870.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/870/00000870.tm2 -------------------------------------------------------------------------------- /texture_replacement/870/00000870.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/870/00000870.xml -------------------------------------------------------------------------------- /texture_replacement/870/00000870_layer24_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/870/00000870_layer24_reference.png -------------------------------------------------------------------------------- /texture_replacement/872/00000872.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/872/00000872.tm2 -------------------------------------------------------------------------------- /texture_replacement/872/00000872.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/872/00000872.xml -------------------------------------------------------------------------------- /texture_replacement/872/00000872_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/872/00000872_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/872/00000872_layer1_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/872/00000872_layer1_reference.png -------------------------------------------------------------------------------- /texture_replacement/873/00000873.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/873/00000873.tm2 -------------------------------------------------------------------------------- /texture_replacement/873/00000873.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/873/00000873.xml -------------------------------------------------------------------------------- /texture_replacement/873/00000873_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/873/00000873_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874.tm2 -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer10_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer11_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer13_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer14_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer5_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer6_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer7_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer8_0.png -------------------------------------------------------------------------------- /texture_replacement/874/00000874_layer9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/874/00000874_layer9_0.png -------------------------------------------------------------------------------- /texture_replacement/875/00000875.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/875/00000875.tm2 -------------------------------------------------------------------------------- /texture_replacement/875/00000875.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/875/00000875.xml -------------------------------------------------------------------------------- /texture_replacement/875/00000875_layer12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/875/00000875_layer12_0.png -------------------------------------------------------------------------------- /texture_replacement/875/00000875_layer16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/875/00000875_layer16_0.png -------------------------------------------------------------------------------- /texture_replacement/878/00000878.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/878/00000878.tm2 -------------------------------------------------------------------------------- /texture_replacement/878/00000878.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/878/00000878.xml -------------------------------------------------------------------------------- /texture_replacement/878/00000878_layer4_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/878/00000878_layer4_reference.png -------------------------------------------------------------------------------- /texture_replacement/878/00000878_layer6_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/878/00000878_layer6_reference.png -------------------------------------------------------------------------------- /texture_replacement/878/00000878_layer7_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/878/00000878_layer7_reference.png -------------------------------------------------------------------------------- /texture_replacement/879/00000879.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/879/00000879.tm2 -------------------------------------------------------------------------------- /texture_replacement/879/00000879.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/879/00000879.xml -------------------------------------------------------------------------------- /texture_replacement/879/00000879_layer33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/879/00000879_layer33_0.png -------------------------------------------------------------------------------- /texture_replacement/879/00000879_layer48_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/879/00000879_layer48_reference.png -------------------------------------------------------------------------------- /texture_replacement/879/00000879_layer54_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/879/00000879_layer54_reference.png -------------------------------------------------------------------------------- /texture_replacement/880/00000880.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/880/00000880.tm2 -------------------------------------------------------------------------------- /texture_replacement/880/00000880.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/880/00000880.xml -------------------------------------------------------------------------------- /texture_replacement/880/00000880_layer20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/880/00000880_layer20_0.png -------------------------------------------------------------------------------- /texture_replacement/880/00000880_layer28_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/880/00000880_layer28_reference.png -------------------------------------------------------------------------------- /texture_replacement/883/00000883.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/883/00000883.tm2 -------------------------------------------------------------------------------- /texture_replacement/883/00000883.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/883/00000883.xml -------------------------------------------------------------------------------- /texture_replacement/883/00000883_layer0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/883/00000883_layer0_0.png -------------------------------------------------------------------------------- /texture_replacement/884/00000884.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884.tm2 -------------------------------------------------------------------------------- /texture_replacement/884/00000884.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884.xml -------------------------------------------------------------------------------- /texture_replacement/884/00000884_layer11_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884_layer11_reference.png -------------------------------------------------------------------------------- /texture_replacement/884/00000884_layer5_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884_layer5_reference.png -------------------------------------------------------------------------------- /texture_replacement/884/00000884_layer7_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884_layer7_reference.png -------------------------------------------------------------------------------- /texture_replacement/884/00000884_layer8_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/884/00000884_layer8_reference.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889.tm2 -------------------------------------------------------------------------------- /texture_replacement/889/00000889.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889.xml -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer21_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer25_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer25_reference.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer26_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer26_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer27_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer27_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer28_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer29_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer29_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer30_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer30_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer31_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer31_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer32_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer32_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer33_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer34_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer34_0.png -------------------------------------------------------------------------------- /texture_replacement/889/00000889_layer4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/889/00000889_layer4_0.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891.tm2 -------------------------------------------------------------------------------- /texture_replacement/891/00000891.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891.xml -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer2_0.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer2_1.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer2_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer2_reference.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer53_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer53_0.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer54_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer54_0.png -------------------------------------------------------------------------------- /texture_replacement/891/00000891_layer6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorciz777/RBC1GP-Translation-Pipeline/HEAD/texture_replacement/891/00000891_layer6_0.png --------------------------------------------------------------------------------