diff --git a/SabreTools.RedumpLib.Test/Data/ExtensionsTests.cs b/SabreTools.RedumpLib.Test/Data/ExtensionsTests.cs
index 530efd3..d33d78f 100644
--- a/SabreTools.RedumpLib.Test/Data/ExtensionsTests.cs
+++ b/SabreTools.RedumpLib.Test/Data/ExtensionsTests.cs
@@ -2530,10 +2530,13 @@ namespace SabreTools.RedumpLib.Test.Data
SiteCode.BandaiID,
SiteCode.BethesdaID,
SiteCode.CDProjektID,
+ SiteCode.DiceMultimedia,
SiteCode.DisneyInteractiveID,
SiteCode.EidosID,
SiteCode.ElectronicArtsID,
+ SiteCode.FocusMultimedia,
SiteCode.FoxInteractiveID,
+ SiteCode.GSPSoftware,
SiteCode.GTInteractiveID,
SiteCode.InterplayID,
SiteCode.JASRACID,
diff --git a/SabreTools.RedumpLib/Data/Enumerations.cs b/SabreTools.RedumpLib/Data/Enumerations.cs
index a8ae229..d4b5414 100644
--- a/SabreTools.RedumpLib/Data/Enumerations.cs
+++ b/SabreTools.RedumpLib/Data/Enumerations.cs
@@ -3553,6 +3553,10 @@ namespace SabreTools.RedumpLib.Data
[HumanReadable(ShortName = "Cover ID:", LongName = "Cover ID:")]
CoverID,
+ // This doesn't have a site tag yet
+ [HumanReadable(ShortName = "Dice Multimedia:", LongName = "Dice Multimedia:")]
+ DiceMultimedia,
+
// This doesn't have a site tag yet
[HumanReadable(ShortName = "Disc Hologram ID:", LongName = "Disc Hologram ID:")]
DiscHologramID,
@@ -3594,6 +3598,10 @@ namespace SabreTools.RedumpLib.Data
[HumanReadable(ShortName = "Filename:", LongName = "Filename:")]
Filename,
+ // This doesn't have a site tag yet
+ [HumanReadable(ShortName = "Focus Multimedia:", LongName = "Focus Multimedia:")]
+ FocusMultimedia,
+
[HumanReadable(ShortName = "[T:FIID]", LongName = "Fox Interactive ID:")]
FoxInteractiveID,
@@ -3607,6 +3615,10 @@ namespace SabreTools.RedumpLib.Data
[HumanReadable(ShortName = "[T:G]", LongName = "Genre:")]
Genre,
+ // This doesn't have a site tag yet
+ [HumanReadable(ShortName = "GSP Software:", LongName = "GSP Software:")]
+ GSPSoftware,
+
[HumanReadable(ShortName = "[T:GTID]", LongName = "GT Interactive ID:")]
GTInteractiveID,
diff --git a/SabreTools.RedumpLib/Data/Extensions.cs b/SabreTools.RedumpLib/Data/Extensions.cs
index 648022b..082de4c 100644
--- a/SabreTools.RedumpLib/Data/Extensions.cs
+++ b/SabreTools.RedumpLib/Data/Extensions.cs
@@ -2060,10 +2060,13 @@ namespace SabreTools.RedumpLib.Data
SiteCode.BandaiID => true,
SiteCode.BethesdaID => true,
SiteCode.CDProjektID => true,
+ SiteCode.DiceMultimedia => true,
SiteCode.DisneyInteractiveID => true,
SiteCode.EidosID => true,
SiteCode.ElectronicArtsID => true,
+ SiteCode.FocusMultimedia => true,
SiteCode.FoxInteractiveID => true,
+ SiteCode.GSPSoftware => true,
SiteCode.GTInteractiveID => true,
SiteCode.InterplayID => true,
SiteCode.JASRACID => true,
diff --git a/SabreTools.RedumpLib/Tools/Formatter.cs b/SabreTools.RedumpLib/Tools/Formatter.cs
index a767a82..3367c69 100644
--- a/SabreTools.RedumpLib/Tools/Formatter.cs
+++ b/SabreTools.RedumpLib/Tools/Formatter.cs
@@ -67,10 +67,13 @@ namespace SabreTools.RedumpLib.Tools
SiteCode.BandaiID,
SiteCode.BethesdaID,
SiteCode.CDProjektID,
+ SiteCode.DiceMultimedia,
SiteCode.DisneyInteractiveID,
SiteCode.EidosID,
SiteCode.ElectronicArtsID,
+ SiteCode.FocusMultimedia,
SiteCode.FoxInteractiveID,
+ SiteCode.GSPSoftware,
SiteCode.GTInteractiveID,
SiteCode.InterplayID,
SiteCode.JASRACID,