Fixed Start Date

His Dad [04-24-15 - 21:17]
Fixed Start Date
Filename
HistOffline.lua
history.lua
working/DumpAchievements.lua
diff --git a/HistOffline.lua b/HistOffline.lua
index 0577986..2f48494 100644
--- a/HistOffline.lua
+++ b/HistOffline.lua
@@ -404,7 +404,7 @@ btn_archive = iup.button{title="Archive", FGCOLOR = "#FF0000"}
 							},
 					}  -- end of tabs for characters vbox
 		iup.Append(accounts[acc].tabs,accounts[acc].name[char].tab)
-		accounts[acc].panelsize =  tostring(#accounts[acc].names * 40 +350) ..  "x250"
+		accounts[acc].panelsize =  tostring(#accounts[acc].names * 50 +350) ..  "x250"
 	end  -- Chars

 -- Add to end of Characters
diff --git a/history.lua b/history.lua
index f6e4c4f..3f1080f 100644
--- a/history.lua
+++ b/history.lua
@@ -29,21 +29,30 @@ local function log(text)
 							})
 end

-local function get_start ()	-- get better start date from Ach 993 (First main line quest out of training)
-			_,_,_,_,completed,adate,atime= GetAchievementInfo(993)
-		if completed then
-			local quest_time =(luatz_esodate(adate .. " " .. atime)+ hist.tz_offset)
-			if hist.me.Recorded == nil	then	-- starting but complete
-				hist.me.Recorded = quest_time
-			elseif hist.me.Recorded > quest_time then		-- Quest was earlier, then reset to earlier
-				if hist.debug then
-						d("Start Time Reset for " .. hist.player)
-				end
-				log ("Start Time Reset. " .. adate .. " " .. atime )
-				hist.me.Recorded = quest_time
+local function get_start ()	-- get better start date from Achievements
+		-- Check Achievements
+		local earliest_time = 0
+		for id, ach in pairs(hist.me.ach) do
+			if earliest_time == 0 then
+				earliest_time = ach.time
+				earliest_Achievement = id
+			elseif earliest_time > ach.time then
+				earliest_time = ach.time
+			end
+		end
+
+		if earliest_time == 0 then	-- No Achievements
+			earliest_time = GetTimeStamp()
+		end
+
+		if hist.me.Recorded == nil	then
+			hist.me.Recorded = earliest_time
+		elseif hist.me.Recorded > earliest_time then		-- Quest was earlier, then reset to earlier
+			if hist.debug then
+					d("Start Time Reset for " .. hist.player)
 			end
-		else	-- Not Completed, early start on new char
-			hist.me. Recorded = GetTimeStamp()
+			log ("Start Time Reset.")
+			hist.me.Recorded = earliest_time
 		end
 end

@@ -77,13 +86,15 @@ function load_history()
 	log("Request to load historic Dungeon Achievements")
 	local name,points,description,completed,adate,atime
   local cat
+  local count = 0
 	for i = 1,1400 do
 		name,description,points,_,completed,adate,atime= GetAchievementInfo(i)
 		if completed then
 			cat,_,_ =GetCategoryInfoFromAchievementId(i)
-			if cat == 7 then
+--			if cat == 7 then
+			if true then
 				if hist.me.ach[i] == nil then
-					log("Added historic achievement " ..i .. " " .. name)
+				--	log("Added historic achievement " ..i .. " " .. name)
 						local category_id  = GetCategoryInfoFromAchievementId(i)
 						local category_name =GetAchievementCategoryInfo(category_id)
 						hist.me.ach[i]={
@@ -95,11 +106,12 @@ function load_history()
 							["description"] = description,
 							["link"] = GetAchievementLink(i)
 							}
-
+						count = count + 1
 				end
 			end
 		end
 	end
+	log("Added " .. tostring(count) .. " historic achievements.")
 end

 local function fix()  -- fix links etc for any old data
@@ -125,7 +137,12 @@ local function Activated()
 		hist.me.maps[map] = {}
 		hist.me.maps[map].visit = 1
 	else
-	hist.me.maps[map].visit = hist.me.maps[map].visit +1
+
+		if hist.me.maps[map].visit == nil then
+		hist.me.maps[map].visit = 1
+		else
+		hist.me.maps[map].visit = hist.me.maps[map].visit +1
+		end
 	end

 end
@@ -194,8 +211,6 @@ local function setup_char()
 		hist.SV.data[hist.player] = {}		-- initialise data for current char
 		hist.me = hist.SV.data[hist.player]

---		hist.me.Recorded = GetTimeStamp()
-		get_start()			-- Set Recorded
 		hist.me.Class = GetUnitClass("player")
 		hist.me.Race = GetUnitRace("player")
 		hist.me.Gender = gendertext()
@@ -212,6 +227,7 @@ local function setup_char()
 			map= {}
 		}  -- end of defaults
 		load_history()
+		get_start()
 end

 local function Dead()
@@ -235,15 +251,6 @@ local function Dead()
 	hist.me.maps[map].deaths = hist.me.maps[map].deaths +1
 end

-local function newzone (_, zoneName,SubZoneName,isnew)
---EVENT_ZONE_CHANGED (integer eventCode, string zoneName, string subZoneName, bool newSubzone)
-	d("Zone:  " .. zoneName .. "  SubZone: " ..SubZoneName)
-	if (isnew ==true) then
-	d("new")
-	else d("old")
-	end
-end
-

 function hist.Initialise(_, addOnName)
 	if (hist.name ~= addOnName) then return end
@@ -336,7 +343,6 @@ function hist.Initialise(_, addOnName)
 	EVENT_MANAGER:RegisterForEvent(hist.name, EVENT_PLAYER_ACTIVATED, Activated)
 	EVENT_MANAGER:RegisterForEvent(hist.name, EVENT_PLAYER_DEACTIVATED, Activated)
 	EVENT_MANAGER:RegisterForEvent(hist.name, EVENT_PLAYER_DEAD, Dead)
-	--EVENT_MANAGER:RegisterForEvent(hist.name, EVENT_ZONE_CHANGED, newzone)
 	hist.initialised = true
 end

diff --git a/working/DumpAchievements.lua b/working/DumpAchievements.lua
index 5cdb13a..0cc31a0 100644
--- a/working/DumpAchievements.lua
+++ b/working/DumpAchievements.lua
@@ -6,932 +6,7049 @@ DumpAchievements_SV =
         {
             ["$AccountWide"] =
             {
-                ["version"] = 1,
-                ["Yru someantome"] =
-                {
-                },
-                ["The Nightmare of Godd"] =
+                ["Yru so Mean"] =
                 {
                 },
-                ["dungeon"] =
+                ["Crafting"] =
                 {
-                    [11] =
+                    [64] =
                     {
-                        ["name"] = "Elden Hollow Vanquisher",
-                        ["description"] = "Defeat Akash gra-Mal, Chokethorn, and Canonreeve Oraneth in Elden Hollow.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Harvest any crafting materials 10 times.",
+                        ["name"] = "Apprentice Crafting Harvester",
                     },
-                    [272] =
+                    [1025] =
                     {
-                        ["name"] = "Arx Corinium Vanquisher",
-                        ["description"] = "Defeat the Ancient Wamasu, the Lamia Songstress, and the Lamia Queen.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn any Racial Style.",
+                        ["name"] = "Racial Style Learned",
                     },
-                    [1049] =
+                    [1026] =
                     {
-                        ["name"] = "Root Sunder Conqueror",
-                        ["description"] = "Defeat all of the champions in Root Sunder.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn 10 Provisioning Recipes.",
+                        ["name"] = "Recipe Card",
                     },
-                    [1050] =
+                    [1027] =
                     {
-                        ["name"] = "Rulanyil's Fall Conqueror",
-                        ["description"] = "Defeat all of the Champions in Rulanyil's Fall.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 10,
+                        ["description"] = "Learn 50 Provisioning Recipes.",
+                        ["name"] = "Recipe Book",
                     },
-                    [1051] =
+                    [1028] =
                     {
-                        ["name"] = "Crimson Cove Conqueror",
-                        ["description"] = "Defeat all of the champions in Crimson Cove.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 15,
+                        ["description"] = "Learn 100 Provisioning Recipes.",
+                        ["name"] = "Recipe Compendium",
                     },
-                    [1052] =
+                    [1093] =
                     {
-                        ["name"] = "The Vile Manse Conqueror",
-                        ["description"] = "Defeat all of the champions in The Vile Manse.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Columbine Alchemy Plant.",
+                        ["name"] = "Columbine",
                     },
-                    [1053] =
+                    [1030] =
                     {
-                        ["name"] = "Bad Man's Hallows Conqueror",
-                        ["description"] = "Defeat all of the champions in Bad Man's Hallows.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 15,
+                        ["description"] = "Learn all Alliance Racial Styles.",
+                        ["name"] = "Alliance Style Master",
                     },
-                    [1054] =
+                    [1031] =
                     {
-                        ["name"] = "Bonesnap Ruins Conqueror",
-                        ["description"] = "Defeat all of the champions in Bonesnap Ruins.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Attain an Alchemy rank of 50.",
+                        ["name"] = "Master Alchemist",
                     },
-                    [1055] =
+                    [1032] =
                     {
-                        ["name"] = "Razak's Wheel Conqueror",
-                        ["description"] = "Defeat all of the champions in Razak's Wheel.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Attain a Blacksmith rank of 50.",
+                        ["name"] = "Master Blacksmith",
                     },
-                    [1056] =
+                    [1033] =
                     {
-                        ["name"] = "Village of the Lost Conqueror",
-                        ["description"] = "Defeat all of the champions in Village of the Lost.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Attain a Clothier rank of 50.",
+                        ["name"] = "Master Clothier",
                     },
-                    [545] =
+                    [1034] =
                     {
-                        ["name"] = "Banished Cells Champion",
-                        ["description"] = "Defeat the Maw of the Infernal, Keeper Imiril, and High Kinlord Rilis in the Banished Cells.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Attain an Enchanting rank of 50.",
+                        ["name"] = "Master Enchanter",
                     },
-                    [1058] =
+                    [1035] =
                     {
-                        ["name"] = "Rulanyil's Fall Vanquisher",
-                        ["description"] = "Defeat three of the champions in Rulanyil's Fall.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Attain a Provisioning rank of 50.",
+                        ["name"] = "Master Provisioner",
                     },
-                    [1059] =
+                    [1036] =
                     {
-                        ["name"] = "Crimson Cove Vanquisher",
-                        ["description"] = "Defeat three of the champions in Crimson Cove.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Attain a Woodworking rank of 50.",
+                        ["name"] = "Master Woodworker",
                     },
-                    [1060] =
+                    [781] =
                     {
-                        ["name"] = "The Vile Manse Vanquisher",
-                        ["description"] = "Defeat three of the champions in The Vile Manse.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Translate all of the Essence runes.",
+                        ["name"] = "Essence",
                     },
-                    [1061] =
+                    [1102] =
                     {
-                        ["name"] = "Bad Man's Hallows Vanquisher",
-                        ["description"] = "Defeat three of the champions in Bad Man's Hallows.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the White Cap Alchemy Plant.",
+                        ["name"] = "White Cap",
                     },
-                    [294] =
+                    [1103] =
                     {
-                        ["name"] = "Fungal Grotto Vanquisher",
-                        ["description"] = "Defeat the Goblin War Chief and the Dreugh King at the Fungal Grotto.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Luminous Russula Alchemy Plant.",
+                        ["name"] = "Luminous Russula",
                     },
-                    [551] =
+                    [1040] =
                     {
-                        ["name"] = "City of Ash Vanquisher",
-                        ["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in the City of Ash.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Improve Blacksmithing items to all available Qualities.",
+                        ["name"] = "Legendary Blacksmith",
                     },
-                    [1064] =
+                    [1041] =
                     {
-                        ["name"] = "Village of the Lost Vanquisher",
-                        ["description"] = "Defeat three of the champions in Village of the Lost.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Research every available Trait at least once.",
+                        ["name"] = "Trait Master",
                     },
-                    [299] =
+                    [1042] =
                     {
-                        ["name"] = "Sanguine's Demesne Vanquisher",
-                        ["description"] = "Defeat three of the champions in Sanguine's Demesne.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Have a character apply a Legendary Enchantment that they created, to a Legendary piece of gear that they created.",
+                        ["name"] = "Truly Legendary",
                     },
-                    [300] =
+                    [1043] =
                     {
-                        ["name"] = "Sanguine's Demesne Conqueror",
-                        ["description"] = "Defeat all six champions in Sanguine's Demesne.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Learn all Rare Racial Styles.",
+                        ["name"] = "Rare Style Master",
                     },
-                    [301] =
+                    [788] =
                     {
-                        ["name"] = "Spindleclutch Vanquisher",
-                        ["description"] = "Defeat the Swarm Mother and the Whisperer in Spindleclutch.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Translate all of the Aspect runes.",
+                        ["name"] = "Aspect",
                     },
-                    [1070] =
+                    [1045] =
                     {
-                        ["name"] = "Daggerfall Covenant Conqueror",
-                        ["description"] = "Defeat all of the Public Dungeon champions in the Daggerfall Covenant.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Learn every Alchemy plant Trait.",
+                        ["name"] = "Botanist",
                     },
-                    [1071] =
+                    [1046] =
                     {
-                        ["name"] = "Complete All Speed Challenges",
-                        ["description"] = "Complete the listed Speed Challenges",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Make a Renowned and an Epic Food or Drink.",
+                        ["name"] = "Master Chef",
                     },
-                    [1072] =
+                    [1048] =
                     {
-                        ["name"] = "Complete All Death Challenges",
-                        ["description"] = "Complete the listed Death Challenges",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Improve Clothier items to all available Qualities.",
+                        ["name"] = "Legendary Clothier",
                     },
-                    [1073] =
+                    [1023] =
                     {
-                        ["name"] = "Vanquisher of the Pact",
-                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Ebonheart Pact.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Research a Trait for any weapon or armor type.",
+                        ["name"] = "Learn a Trait",
                     },
-                    [1074] =
+                    [1022] =
                     {
-                        ["name"] = "Vanquisher of the Covenant",
-                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Daggerfall Covenant.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 10,
+                        ["description"] = "Refine 3000 raw materials.",
+                        ["name"] = "Master of Refinement",
                     },
-                    [1075] =
+                    [987] =
                     {
-                        ["name"] = "Vanquisher of the Dominion",
-                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Aldmeri Dominion.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 10,
+                        ["description"] = "Translate all of the Potency runes.",
+                        ["name"] = "Potency",
                     },
-                    [1078] =
+                    [1021] =
                     {
-                        ["name"] = "Weekly Trial Complete",
-                        ["description"] = "Completed a Weekly Trial",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Refine 300 raw materials.",
+                        ["name"] = "Expert of Refinement",
                     },
-                    [1079] =
+                    [1020] =
                     {
-                        ["name"] = "Time Trial: Weekly",
-                        ["description"] = "Completed a Weekly Trial within 33 minutes.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Refine 30 raw materials.",
+                        ["name"] = "Apprentice of Refinement",
                     },
-                    [1080] =
+                    [1019] =
                     {
-                        ["name"] = "Time Trial: Hel Ra Citadel",
-                        ["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 10,
+                        ["description"] = "Deconstruct 1000 items.",
+                        ["name"] = "Master Deconstructor",
                     },
-                    [1081] =
+                    [1018] =
                     {
-                        ["name"] = "Time Trial: Aetherian Archive",
-                        ["description"] = "Completed the Aetherian Archive within a time limit of 33 minutes.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Deconstruct 100 items.",
+                        ["name"] = "Expert Deconstructor",
                     },
-                    [570] =
+                    [1017] =
                     {
-                        ["name"] = "Vaults of Madness Vanquisher",
-                        ["description"] = "Defeat Ulguna Soul-Reaver, Grothdarr, Iskra the Omen, and the Mad Architect in the Vaults of Madness.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Deconstruct 50 items.",
+                        ["name"] = "Apprentice Deconstructor",
                     },
-                    [1084] =
+                    [1104] =
                     {
-                        ["name"] = "The Blade's Edge",
-                        ["description"] = "In Veteran Crypt of Hearts, allow four of Nerien'eth's Students to survive until he takes the Ebony Blade before defeating them all.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Imp Stool Alchemy Plant.",
+                        ["name"] = "Imp Stool",
                     },
-                    [325] =
+                    [779] =
                     {
-                        ["name"] = "Vanquisher of the Banished Cells",
-                        ["description"] = "Defeat Shadowrend and High Kinlord Rilis in the Banished Cells.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Translate all of the Positive Potency runes",
+                        ["name"] = "Positive Potency",
                     },
-                    [78] =
+                    [68] =
                     {
-                        ["name"] = "Darkshade Caverns Vanquisher",
-                        ["description"] = "Defeat Foreman Llothan, the Hive Lord, and the Sentinel of Rkugamz.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Harvest any crafting materials 10000 times.",
+                        ["name"] = "Grand Master Crafting Harvester",
                     },
-                    [79] =
+                    [67] =
                     {
-                        ["name"] = "Wayrest Sewers Vanquisher",
-                        ["description"] = "Defeat Investigator Garron, Varain Pellingare and Allene Pellingare.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Harvest any crafting materials 1000 times.",
+                        ["name"] = "Master Crafting Harvester",
                     },
-                    [80] =
+                    [1125] =
                     {
-                        ["name"] = "Crypt of Hearts Vanquisher",
-                        ["description"] = "Defeat Archmaster Siniel, the Bone Leviathan, and the Ilambris Twins.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Research the Nirnhoned Trait for any weapon or armor type.",
+                        ["name"] = "Learn the Nirnhoned Trait",
                     },
-                    [81] =
+                    [66] =
                     {
-                        ["name"] = "Tempest Island Vanquisher",
-                        ["description"] = "Defeat Valaran Stormcaller, Stormfist, and Admiral Neidir.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Harvest any crafting materials 100 times.",
+                        ["name"] = "Expert Crafting Harvester",
                     },
-                    [850] =
+                    [65] =
                     {
-                        ["name"] = "Veteran Arachnid Slayer",
-                        ["description"] = "Defeat 200 spiders in Veteran Fungal Grotto dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Harvest any crafting materials 50 times.",
+                        ["name"] = "Journeyman Crafting Harvester",
                     },
-                    [851] =
+                    [1044] =
                     {
-                        ["name"] = "Veteran Obsidian Slayer",
-                        ["description"] = "Defeat Obsidian Warriors in Veteran Fungal Grotto dungeon.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 50,
+                        ["description"] = "Improve Woodworking items to all available Qualities.",
+                        ["name"] = "Legendary Woodworker",
+                    },
+                    [1085] =
+                    {
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Make a Renowned Food or Drink.",
+                        ["name"] = "Renowned Provisioner",
                     },
-                    [340] =
+                    [1098] =
                     {
-                        ["name"] = "Veteran Fungal Grotto Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Fungal Grotto before defeating Vila Theran within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Entoloma Alchemy Plant.",
+                        ["name"] = "Entoloma",
                     },
-                    [853] =
+                    [780] =
                     {
-                        ["name"] = "Rilis Dremora Slayer",
-                        ["description"] = "Defeat Dremora in Veteran Banished Cells dungeon.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Translate all of the Negative Potency runes.",
+                        ["name"] = "Negative Potency",
                     },
-                    [342] =
+                    [1088] =
                     {
-                        ["name"] = "Fearless Assaulter",
-                        ["description"] = "Defeat Vila Theran without any member of your party using the protection of the Obsidian Husk.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Wormwood Alchemy Plant.",
+                        ["name"] = "Wormwood",
                     },
-                    [343] =
+                    [1089] =
                     {
-                        ["name"] = "Veteran Shadow Slayer",
-                        ["description"] = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Lady's Smock Alchemy Plant.",
+                        ["name"] = "Lady's Smock",
                     },
-                    [856] =
+                    [1090] =
                     {
-                        ["name"] = "Veteran Kwama Slayer",
-                        ["description"] = "Defeat 200 kwama in Veteran Darkshade Caverns dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Bugloss Alchemy Plant.",
+                        ["name"] = "Bugloss",
                     },
-                    [857] =
+                    [1091] =
                     {
-                        ["name"] = "Veteran Construct Slayer",
-                        ["description"] = "Defeat Dwarven constructs in Veteran Darkshade Caverns dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Dragonthorn Alchemy Plant.",
+                        ["name"] = "Dragonthorn",
                     },
-                    [858] =
+                    [1092] =
                     {
-                        ["name"] = "Veteran Banekin Slayer",
-                        ["description"] = "Defeat banekin in Veteran Elden Hollow dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Mountain Flower Alchemy Plant.",
+                        ["name"] = "Mountain Flower",
                     },
-                    [859] =
+                    [1094] =
                     {
-                        ["name"] = "Veteran Lurcher Slayer",
-                        ["description"] = "Defeat lurchers in Veteran Elden Hollow dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Corn Flower Alchemy Plant.",
+                        ["name"] = "Corn Flower",
                     },
-                    [860] =
+                    [1095] =
                     {
-                        ["name"] = "Veteran Zombie Slayer",
-                        ["description"] = "Defeat zombies in Veteran Wayrest Sewers dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Nirnroot Alchemy Plant.",
+                        ["name"] = "Nirnroot",
                     },
-                    [861] =
+                    [1096] =
                     {
-                        ["name"] = "Veteran Colossus Slayer",
-                        ["description"] = "Defeat bone colossuses in Veteran Wayrest Sewers dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Water Hyacinth Alchemy Plant.",
+                        ["name"] = "Water Hyacinth",
                     },
-                    [1123] =
+                    [1097] =
                     {
-                        ["name"] = "Sanctum Ophidia Completed",
-                        ["description"] = "You defeated the Serpent Celestial.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Stinkhorn Alchemy Plant.",
+                        ["name"] = "Stinkhorn",
                     },
-                    [1124] =
+                    [1099] =
                     {
-                        ["name"] = "Time Trial: Sanctum Ophidia",
-                        ["description"] = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Emetic Russula Alchemy Plant.",
+                        ["name"] = "Emetic Russula",
                     },
-                    [357] =
+                    [1100] =
                     {
-                        ["name"] = "Direfrost Keep Vanquisher",
-                        ["description"] = "Defeat the Guardian of the Flame, the Empowered Frost Atronach, and Drodda of Icereach at Direfrost Keep.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Violet Coprinus Alchemy Plant.",
+                        ["name"] = "Violet Coprinus",
                     },
-                    [870] =
+                    [1101] =
                     {
-                        ["name"] = "Hel Ra Citadel: The War Horn",
-                        ["description"] = "",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Namira's Rot Alchemy Plant.",
+                        ["name"] = "Namira's Rot",
                     },
-                    [874] =
+                    [1144] =
                     {
-                        ["name"] = "Lost Village Group Challenge",
-                        ["description"] = "Defeat Zatalguch in the Village of the Lost.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Collect and learn from every Dwemer Style book.",
+                        ["name"] = "Dwemer Style Master",
                     },
-                    [876] =
+                    [1145] =
                     {
-                        ["name"] = "Crypt of Hearts Conqueror",
-                        ["description"] = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth in Veteran Crypt of Hearts.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Become certified in every crafting profession.",
+                        ["name"] = "Certified Jack-of-All-Trades",
                     },
-                    [878] =
+                    [1146] =
                     {
-                        ["name"] = "Veteran City of Ash",
-                        ["description"] = "Complete Veteran City of Ash by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
-                        ["points"] = 15,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Complete one Crafting Writ.",
+                        ["name"] = "First Writ",
                     },
-                    [367] =
+                    [1147] =
                     {
-                        ["name"] = "Crow's Wood Vanquisher",
-                        ["description"] = "Defeat three of the champions in Crow's Wood.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 10,
+                        ["description"] = "Complete 25 Crafting Writs.",
+                        ["name"] = "I Must Complete My Contract",
                     },
-                    [368] =
+                    [1148] =
                     {
-                        ["name"] = "Crow's Wood Conqueror",
-                        ["description"] = "Defeat all of Crow's Wood's champions.",
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 15,
+                        ["description"] = "Complete 150 Crafting Writs.",
+                        ["name"] = "Signed the Manifest",
+                    },
+                    [1149] =
+                    {
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
                         ["points"] = 50,
+                        ["description"] = "Complete 250 Crafting Writs.",
+                        ["name"] = "Writ Upon the Sky",
                     },
-                    [369] =
+                    [1086] =
                     {
-                        ["name"] = "Forgotten Crypts Vanquisher",
-                        ["description"] = "Defeat three of the champions in the Forgotten Crypts.",
-                        ["points"] = 10,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 15,
+                        ["description"] = "Make an Epic Food or Drink.",
+                        ["name"] = "Epic Provisioner",
                     },
-                    [370] =
+                    [1087] =
                     {
-                        ["name"] = "Forgotten Crypts Conqueror",
-                        ["description"] = "Defeat all of the champions in the Forgotten Crypts.",
-                        ["points"] = 50,
+                        ["Category"] = "Crafting",
+                        ["Category_ID"] = 5,
+                        ["points"] = 5,
+                        ["description"] = "Learn all the Traits for the Blessed Thistle Alchemy Plant.",
+                        ["name"] = "Blessed Thistle",
                     },
-                    [371] =
+                },
+                ["Character"] =
+                {
+                    [704] =
                     {
-                        ["name"] = "Lion's Den Group Event",
-                        ["description"] = "Defeat  the Lonely Giant and his angry mammoths in the Lion's Den.",
-                        ["points"] = 50,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Buy drinks for your Undaunted companions at each gathering.",
+                        ["name"] = "This One's On Me",
                     },
-                    [372] =
+                    [1217] =
                     {
-                        ["name"] = "Sanguine's Group Event",
-                        ["description"] = "Defeat Fight-Master Grel and his adepts at Sanguine's Demesne.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Spend 1,200 Champion Points in the Warrior Constellation.",
+                        ["name"] = "Champion of Last Seed",
                     },
-                    [373] =
+                    [1218] =
                     {
-                        ["name"] = "Lion's Den Vanquisher",
-                        ["description"] = "Defeat three of the champions in the Lion's Den.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Spend 300 Champion Points in the Mage Constellation.",
+                        ["name"] = "Arcane Decree",
                     },
-                    [374] =
+                    [1219] =
                     {
-                        ["name"] = "Lion's Den Conqueror",
-                        ["description"] = "Defeat all of the champions in the Lion's Den.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Spend 600 Champion Points in the Mage Constellation.",
+                        ["name"] = "Mysterious Destiny",
+                    },
+                    [1220] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Spend 1,200 Champion Points in the Mage Constellation.",
+                        ["name"] = "Champion of Rain's Hand",
                     },
-                    [375] =
+                    [1221] =
                     {
-                        ["name"] = "Hall of the Dead Vanquisher",
-                        ["description"] = "Defeat three of the champions in the Hall of the Dead.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Spend 300 Champion Points in the Thief Constellation.",
+                        ["name"] = "Stealthy Decree",
                     },
-                    [376] =
+                    [1222] =
                     {
-                        ["name"] = "Hall of the Dead Conqueror",
-                        ["description"] = "Defeat all of the champions in the Hall of the Dead.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Spend 600 Champion Points in the Thief Constellation.",
+                        ["name"] = "Devious Destiny",
+                    },
+                    [1223] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Spend 1,200 Champion Points in the Thief Constellation.",
+                        ["name"] = "Champion of Evening Star",
                     },
-                    [377] =
+                    [12] =
                     {
-                        ["name"] = "Obsidian Scar Vanquisher",
-                        ["description"] = "Defeat three of the champions in Obsidian Scar.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Reach Level 10.",
+                        ["name"] = "Level 10 Hero",
                     },
-                    [378] =
+                    [13] =
                     {
-                        ["name"] = "Obsidian Scar Conqueror",
-                        ["description"] = "Defeat all of the champions in Obsidian Scar.",
-                        ["points"] = 50,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 10,
+                        ["description"] = "Reach Level 20.",
+                        ["name"] = "Level 20 Hero",
                     },
-                    [379] =
+                    [14] =
                     {
-                        ["name"] = "Crow's Wood Group Event",
-                        ["description"] = "Destroy the Soul Wraiths to summon and slay Ghyslain in Crow's Wood.",
-                        ["points"] = 50,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 10,
+                        ["description"] = "Reach Level 30.",
+                        ["name"] = "Level 30 Hero",
                     },
-                    [380] =
+                    [15] =
                     {
-                        ["name"] = "Bad Man's Group Event",
-                        ["description"] = "Slay the Giant Snake Mother in Bad Man's Hallows.",
-                        ["points"] = 50,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 10,
+                        ["description"] = "Reach Level 40.",
+                        ["name"] = "Level 40 Hero",
                     },
-                    [381] =
+                    [16] =
                     {
-                        ["name"] = "Hall of the Dead Group Event",
-                        ["description"] = "Defeat Reynir the Destroyer and his minions in the Hall of the Dead.",
-                        ["points"] = 50,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 10,
+                        ["description"] = "Reach Level 50.",
+                        ["name"] = "Level 50 Hero",
                     },
-                    [1150] =
+                    [17] =
                     {
-                        ["name"] = "Pledge Taker",
-                        ["description"] = "Complete one Undaunted Pledge.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 5,
+                        ["description"] = "Loot a Superior quality item.",
+                        ["name"] = "Superior Ransacker",
                     },
-                    [1151] =
+                    [18] =
                     {
-                        ["name"] = "Returned Undaunted",
-                        ["description"] = "Complete 10 Undaunted Pledges.",
-                        ["points"] = 10,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Loot an Epic quality item.",
+                        ["name"] = "Epic Acquirer",
                     },
-                    [1152] =
+                    [19] =
                     {
-                        ["name"] = "Undaunted, Daily",
-                        ["description"] = "Complete 50 Undaunted Pledges.",
-                        ["points"] = 15,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Loot any 10 Treasure Chests.",
+                        ["name"] = "Treasure Chest Spotter",
                     },
-                    [1153] =
+                    [20] =
                     {
-                        ["name"] = "Maj's Cohort",
-                        ["description"] = "Complete 100 Undaunted Pledges.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Loot any 50 Treasure Chests.",
+                        ["name"] = "Treasure Chest Seeker",
+                    },
+                    [21] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Loot any 100 Treasure Chests.",
+                        ["name"] = "Treasure Chest Stalker",
+                    },
+                    [22] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Loot any 1000 Treasure Chests.",
+                        ["name"] = "Treasure Chest Hunter",
+                    },
+                    [992] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Conquer all challengers and earn the title of Dragonstar Arena Champion!",
+                        ["name"] = "Dragonstar Arena Champion",
                     },
-                    [1154] =
+                    [35] =
                     {
-                        ["name"] = "Prove Them Wrong",
-                        ["description"] = "Complete one Veteran Undaunted Pledge.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Wear a full set of Superior, and only Superior, gear.",
+                        ["name"] = "Superior Attire",
+                    },
+                    [36] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Wear a full set of Epic, and only Epic, gear.",
+                        ["name"] = "Epic Attire",
+                    },
+                    [38] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Kill humanoids, Goblin-kin, and giant-kin.",
+                        ["name"] = "Humanoid Slayer",
+                    },
+                    [39] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Kill Daedric creatures from Oblivion.",
+                        ["name"] = "Daedra Slayer",
+                    },
+                    [40] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Kill Dwarven mechanical constructs.",
+                        ["name"] = "Dwarven Construct Slayer",
+                    },
+                    [41] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Kill a variety of natural creatures in the wilds of Tamriel and beyond.",
+                        ["name"] = "Nature Slayer",
+                    },
+                    [42] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Kill skeletons, zombies, ghosts, spirits, and vampires.",
+                        ["name"] = "Undead Slayer",
+                    },
+                    [1004] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 5,
+                        ["description"] = "Join the Mages Guild",
+                        ["name"] = "Student of the Mages Guild",
                     },
-                    [1155] =
+                    [1005] =
                     {
-                        ["name"] = "You Still Draw Breath",
-                        ["description"] = "Complete 10 Veteran Undaunted Pledges.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Join the Fighters Guild",
+                        ["name"] = "Associate of the Fighters Guild",
+                    },
+                    [1006] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 5,
+                        ["description"] = "Join the Undaunted",
+                        ["name"] = "Recruit of the Undaunted",
+                    },
+                    [1007] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Become a Werewolf.",
+                        ["name"] = "Lycanthropy",
                     },
-                    [388] =
+                    [1008] =
                     {
-                        ["name"] = "Forgotten Crypts Group Event",
-                        ["description"] = "Eradicate the Kwama infestation and kill the Kwama Guardians in the Forgotten Crypts.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 10,
+                        ["description"] = "Become a Vampire.",
+                        ["name"] = "Vampirism",
+                    },
+                    [1009] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Reach the max level of the Werewolf Skill Line.",
+                        ["name"] = "Lycanthropy Master",
                     },
-                    [389] =
+                    [1010] =
                     {
-                        ["name"] = "Toothmaul Gully Vanquisher",
-                        ["description"] = "Defeat three of the champions in Toothmaul Gully.",
-                        ["points"] = 10,
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Reach the max level of the Vampire Skill Line.",
+                        ["name"] = "Vampirism Master",
                     },
-                    [390] =
+                    [51] =
                     {
-                        ["name"] = "Toothmaul Gully Conqueror",
-                        ["description"] = "Defeat all of the champions in Toothmaul Gully.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 50,
+                        ["description"] = "Complete all of the Slayer Achievements.",
+                        ["name"] = "Master Monster Slayer",
                     },
-                    [391] =
+                    [1012] =
                     {
-                        ["name"] = "Volenfell Vanquisher",
-                        ["description"] = "Defeat Quintus Verres, Tremorscale, and the Guardian's Constructs at Volenfell.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Reach the max level of the Fighters Guild Skill Line.",
+                        ["name"] = "Fighters Guild Skill Master",
+                    },
+                    [1013] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Reach the max level of the Undaunted Skill Line.",
+                        ["name"] = "Undaunted Skill Master",
+                    },
+                    [703] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Complete the Fighters Guild series of quests.",
+                        ["name"] = "Fighters Guild Veteran",
+                    },
+                    [702] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Complete the Mages Guild series of quests.",
+                        ["name"] = "Arch-Mage",
+                    },
+                    [1011] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Reach the max level of the Mages Guild Skill Line.",
+                        ["name"] = "Mages Guild Skill Master",
+                    },
+                    [1140] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 50,
+                        ["description"] = "Conquer all challengers on the increased difficulty version of Dragonstar Arena.",
+                        ["name"] = "Dragonstar Arena Conqueror",
+                    },
+                    [1216] =
+                    {
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Spend 300 Champion Points in the Warrior Constellation.",
+                        ["name"] = "Vigorous Decree",
                     },
-                    [393] =
+                    [1214] =
                     {
-                        ["name"] = "Blessed Crucible Vanquisher",
-                        ["description"] = "Defeat the Pack, the Beast Master, and the Lava Queen at the Blessed Crucible.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
                         ["points"] = 10,
+                        ["description"] = "Spend your first Champion Point.",
+                        ["name"] = "Dawn of a Champion",
                     },
-                    [395] =
+                    [1215] =
                     {
-                        ["name"] = "Lost City Vanquisher",
-                        ["description"] = "Defeat three of the champions in the Lost City of the Na-Totambu.",
+                        ["Category"] = "Character",
+                        ["Category_ID"] = 1,
+                        ["points"] = 15,
+                        ["description"] = "Spend 600 Champion Points in the Warrior Constellation.",
+                        ["name"] = "Robust Destiny",
+                    },
+                },
+                ["Trophies"] =
+                {
+                    [838] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Collect trophies from all the beasts of Tamriel.",
+                        ["name"] = "Tamriel Beast Collector",
                     },
-                    [396] =
+                    [841] =
                     {
-                        ["name"] = "Lost City Conqueror",
-                        ["description"] = "Defeat all of the champions in the Lost City of the Na-Totambu.",
-                        ["points"] = 50,
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 10,
+                        ["description"] = "Collect trophies from all the undead of Tamriel.",
+                        ["name"] = "Undead Hoarder",
                     },
-                    [410] =
+                    [842] =
                     {
-                        ["name"] = "Blackheart Haven Vanquisher",
-                        ["description"] = "Defeat Atarus, the Roost Mother, and Captain Blackheart in Blackheart Haven.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Collect trophies from all the chitinous creatures of Tamriel.",
+                        ["name"] = "Chitin Accumulator",
                     },
-                    [417] =
+                    [843] =
                     {
-                        ["name"] = "Selene's Web Vanquisher",
-                        ["description"] = "Defeat Longclaw, Foulhide, and Selene in Selene's Web.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Collect trophies from nature spirits and natural creatures from across Tamriel.",
+                        ["name"] = "Nature Collector",
                     },
-                    [421] =
+                    [844] =
                     {
-                        ["name"] = "Spindleclutch Vanquisher",
-                        ["description"] = "Defeat the Blood Golem, Praxin's Ghost, and Vorenor Winterbourne in Spindleclutch.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Collect trophies from all the monstrous creatures of Tamriel.",
+                        ["name"] = "Monstrous Component Collector",
                     },
-                    [678] =
+                    [846] =
                     {
-                        ["name"] = "Wayrest Sewers Vanquisher",
-                        ["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in the Wayrest Sewers.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Collect trophies from Dwemer constructs.",
+                        ["name"] = "Dwarven Secrets Gatherer",
                     },
-                    [679] =
+                    [847] =
                     {
-                        ["name"] = "Veteran Wayrest Sewers Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Wayrest Sewers before defeating Allene and Varaine Pellingare within twenty minutes of starting the dungeon. Timer starts when players engage the first necromancer and his minions.",
-                        ["points"] = 50,
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 10,
+                        ["description"] = "Collect trophies from all types of atronachs.",
+                        ["name"] = "Atronach Element Collector",
                     },
-                    [681] =
+                    [848] =
                     {
-                        ["name"] = "Pellingare Ghoul Slayer",
-                        ["description"] = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers.",
-                        ["points"] = 50,
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 10,
+                        ["description"] = "Collect trophies from all types of slain Daedra.",
+                        ["name"] = "Oblivion Shard Gatherer",
                     },
-                    [939] =
+                    [916] =
                     {
-                        ["name"] = "Veteran Spiderkith Slayer",
-                        ["description"] = "Defeat 250 Spiderkith in the Veteran Crypt of Hearts dungeon.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Craglorn.",
+                        ["name"] = "Craglorn Angler",
+                    },
+                    [471] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12  rare fish in Glenumbra.",
+                        ["name"] = "Glenumbra Angler",
+                    },
+                    [472] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Stormhaven.",
+                        ["name"] = "Stormhaven Angler",
+                    },
+                    [473] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Rivenspire.",
+                        ["name"] = "Rivenspire Angler",
+                    },
+                    [474] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Angler",
+                    },
+                    [475] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Bangkorai.",
+                        ["name"] = "Bangkorai Angler",
+                    },
+                    [476] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Complete all Daggerfall Covenant fishing achievements.",
+                        ["name"] = "Covenant Fisherman",
                     },
-                    [940] =
+                    [477] =
                     {
-                        ["name"] = "Veteran Flesh Atronach Slayer",
-                        ["description"] = "Defeat 50 Flesh Atronachs in the Veteran Crypt of Hearts dungeon.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Stonefalls.",
+                        ["name"] = "Stonefalls Angler",
+                    },
+                    [478] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Deshaan.",
+                        ["name"] = "Deshaan Angler",
+                    },
+                    [479] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Shadowfen.",
+                        ["name"] = "Shadowfen Angler",
+                    },
+                    [480] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Eastmarch.",
+                        ["name"] = "Eastmarch Angler",
+                    },
+                    [481] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in the Rift.",
+                        ["name"] = "Rift Angler",
+                    },
+                    [482] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
                         ["points"] = 10,
+                        ["description"] = "Complete all Ebonheart Pact fishing achievements.",
+                        ["name"] = "Pact Fisherman",
                     },
-                    [941] =
+                    [483] =
                     {
-                        ["name"] = "Veteran Crypt of Hearts Assassin",
-                        ["description"] = "Defeat Ibelgast, the Chamber Guardian, Mezeluth, Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth within thirty minutes of starting Veteran Crypt of Hearts. The timer starts when the gate opens.",
-                        ["points"] = 50,
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Auridon.",
+                        ["name"] = "Auridon Angler",
                     },
-                    [942] =
+                    [484] =
                     {
-                        ["name"] = "Deadly Crypt Survivor",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Crypt of Hearts before defeating Nerien'eth without suffering a group member death.",
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Grahtwood.",
+                        ["name"] = "Grahtwood Angler",
+                    },
+                    [485] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Greenshade.",
+                        ["name"] = "Greenshade Angler",
+                    },
+                    [486] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Malabal Tor.",
+                        ["name"] = "Malabal Tor Angler",
+                    },
+                    [487] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Reaper's March.",
+                        ["name"] = "Reaper's March Angler",
+                    },
+                    [488] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 10,
+                        ["description"] = "Complete all Aldmeri Dominion fishing achievements.",
+                        ["name"] = "Dominion Fisherman",
+                    },
+                    [489] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 10,
+                        ["description"] = "Catch all 12 rare fish in Cyrodiil.",
+                        ["name"] = "Cyrodiil Angler",
+                    },
+                    [490] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch all 12 rare fish in Coldharbour.",
+                        ["name"] = "Coldharbour Angler",
+                    },
+                    [491] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch a rare Eltheric Grouper in Stros M'Kai.",
+                        ["name"] = "Stros M'Kai Angler",
+                    },
+                    [492] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch a rare Pyandonean Ray in Khenarthi's Roost.",
+                        ["name"] = "Khenarthi's Roost Angler",
+                    },
+                    [493] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 5,
+                        ["description"] = "Catch a rare Inner Sea Scalyfin fish in Bleakrock.",
+                        ["name"] = "Bleakrock Angler",
+                    },
+                    [494] =
+                    {
+                        ["Category"] = "Trophies",
+                        ["Category_ID"] = 2,
+                        ["points"] = 50,
+                        ["description"] = "Complete all fishing achievements.",
+                        ["name"] = "Master Fisher",
+                    },
+                },
+                ["Exploration"] =
+                {
+                    [526] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Intervene in all instances of skooma abuse on Khenarthi's Roost.",
+                        ["name"] = "Skooma Watch",
+                    },
+                    [539] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Troll's Toothpick.",
+                        ["name"] = "Troll's Toothpick Explorer",
+                    },
+                    [540] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Torog's Spite.",
+                        ["name"] = "Torog's Spite Explorer",
+                    },
+                    [541] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Crypt of the Exiles.",
+                        ["name"] = "Crypt of the Exiles Explorer",
+                    },
+                    [542] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Viridian Watch.",
+                        ["name"] = "Viridian Watch Explorer",
+                    },
+                    [543] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Rubble Butte.",
+                        ["name"] = "Rubble Butte Explorer",
+                    },
+                    [544] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Klathzgar.",
+                        ["name"] = "Klathzgar Explorer",
+                    },
+                    [550] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Underroot.",
+                        ["name"] = "Underroot Explorer",
+                    },
+                    [553] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Carac Dena.",
+                        ["name"] = "Carac Dena Explorer",
+                    },
+                    [555] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Gurzag's Mine.",
+                        ["name"] = "Gurzag's Mine Explorer",
+                    },
+                    [558] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Harridan's Lair.",
+                        ["name"] = "Harridan's Lair Explorer",
+                    },
+                    [559] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Barrow Trench.",
+                        ["name"] = "Barrow Trench Explorer",
+                    },
+                    [560] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the giant crocodile, Gathongor the Mauler, at Gathongor's Mire.",
+                        ["name"] = "Gathongor Hunter",
+                    },
+                    [561] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the ogre, Thodundor of the Hill, at Thodundor's View.",
+                        ["name"] = "King of the Hill",
+                    },
+                    [562] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Sea Elf, Jahlasri, and her Maormer companions at the Maormer Camp.",
+                        ["name"] = "Sea Elf's Woe",
+                    },
+                    [563] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the lurcher known as the Heart of Rootwater at Rootwater Spring.",
+                        ["name"] = "Rootwater's Demise",
+                    },
+                    [564] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Argonian Maheelius and his force of spies at the Reconnaissance Camp.",
+                        ["name"] = "Spy Smasher",
+                    },
+                    [565] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Storm Atronach, Zymel Etitan, at Pelda Tarn.",
+                        ["name"] = "Zymel Chaser",
+                    },
+                    [567] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Naril Nagaia.",
+                        ["name"] = "Naril Nagaia Explorer",
+                    },
+                    [568] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Greenshade.",
+                        ["name"] = "Greenshade Cave Delver",
+                    },
+                    [572] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Grahtwood.",
+                        ["name"] = "Grahtwood Cave Delver",
+                    },
+                    [573] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Ne Salas.",
+                        ["name"] = "Ne Salas Explorer",
+                    },
+                    [574] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Scuttle Pit.",
+                        ["name"] = "Scuttle Pit Explorer",
+                    },
+                    [575] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Vinedeath Cave.",
+                        ["name"] = "Vinedeath Cave Explorer",
+                    },
+                    [576] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Burroot Kwama Mine.",
+                        ["name"] = "Burroot Kwama Mine Explorer",
+                    },
+                    [577] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Wormroot Depths.",
+                        ["name"] = "Wormroot Depths Explorer",
+                    },
+                    [578] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Mobar Mine.",
+                        ["name"] = "Mobar Mine Explorer",
+                    },
+                    [1121] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Find Geldrion Treehelm's stash in Belkarth.",
+                        ["name"] = "Earthly Possessions",
+                    },
+                    [1126] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all caves and locales throughout Upper Craglorn.",
+                        ["name"] = "Upper Craglorn Master Explorer",
+                    },
+                    [1127] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six explorable caves in Upper Craglorn.",
+                        ["name"] = "Upper Craglorn Cave Delver",
+                    },
+                    [622] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Complete all of the Aldmeri Dominion cave exploration achievements.",
+                        ["name"] = "Dominion Cave Delver",
+                    },
+                    [625] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Complete all of the Daggerfall Covenant cave exploration achievements.",
+                        ["name"] = "Covenant Cave Delver",
+                    },
+                    [626] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Complete all of the Ebonheart Pact cave exploration achievements.",
+                        ["name"] = "Pact Cave Delver",
+                    },
+                    [627] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Complete every cave exploration achievement in Tamriel.",
+                        ["name"] = "Tamriel Master Cave Delver",
+                    },
+                    [148] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the spriggan Woodblight at Blighted Isle.",
+                        ["name"] = "Woodblight Killer",
+                    },
+                    [149] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill Dayarrus the Xivilai at Arlimahera's Sanctum.",
+                        ["name"] = "Dayarrus' Deathbringer",
+                    },
+                    [150] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the frost atronach monarch Nomeg Hyri at Nilata Falls.",
+                        ["name"] = "Nomeg Hyril's Executioner",
+                    },
+                    [151] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the liches Qumehdi and Zaman at the Telesubi Ruins.",
+                        ["name"] = "Lich Butcher",
+                    },
+                    [152] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the summoner Caecilia Attius and her Daedra minions at the Summoner's Camp.",
+                        ["name"] = "Summoner Slayer",
+                    },
+                    [153] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy the ghost Garach Wolf-Father and his werewolf spirits at Lakewatch Tower.",
+                        ["name"] = "Wolf-Father Exorcist",
+                    },
+                    [158] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the giant spider, Aesar the Hatespinner, at Aesar's Web.",
+                        ["name"] = "Hatespinner Hunter",
+                    },
+                    [159] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the gargoyle, Menhir Stoneskin, at Valeguard Tower.",
+                        ["name"] = "Menhir Hunter",
+                    },
+                    [160] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the necromancer, Louna Darkblood, at Old Kalgon's Keep.",
+                        ["name"] = "Darkblood Hunter",
+                    },
+                    [161] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the hag, Magdelena, at Magdelena's Haunt.",
+                        ["name"] = "Hag Hunter",
+                    },
+                    [162] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Orc, Sgugh gra-Dum, at East-Rock Landing.",
+                        ["name"] = "Sgugh's Assassin",
+                    },
+                    [163] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the nereid, Desuuga the Siren, at Siren's Cove.",
+                        ["name"] = "Siren Hunter",
+                    },
+                    [176] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Glenumbra.",
+                        ["name"] = "Glenumbra Cave Delver",
+                    },
+                    [177] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Stormhaven.",
+                        ["name"] = "Stormhaven Cave Delver",
+                    },
+                    [178] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Rivenspire.",
+                        ["name"] = "Rivenspire Cave Delver",
+                    },
+                    [180] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Bangkorai.",
+                        ["name"] = "Bangkorai Cave Delver",
+                    },
+                    [181] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Stonefalls.",
+                        ["name"] = "Stonefalls Cave Delver",
+                    },
+                    [696] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the crazed Orc hunter Shagura at Hircine's Henge.",
+                        ["name"] = "Shagura's Doom",
+                    },
+                    [697] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the senche-tigress Nindaeril the Monsoon atop Nindaeril's Perch.",
+                        ["name"] = "Monsoon Marauder",
+                    },
+                    [698] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the nereid Lady Solace in Lady Solace's Fen.",
+                        ["name"] = "Water Walloper",
+                    },
+                    [187] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the wamasu champion Haynekhtnamet in its lair.",
+                        ["name"] = "Haynekhtnamet Hunter",
+                    },
+                    [188] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the ogre twins Argalog and Vlaga at Xal Thak.",
+                        ["name"] = "Ogre Twin Tormentor",
+                    },
+                    [189] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Ayleid Mummy Lord Talkynd at Nen Ria.",
+                        ["name"] = "Mummy Lord Murderer",
+                    },
+                    [190] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Captain Bones and his undead crew aboard the Captain's ship.",
+                        ["name"] = "Captain Bones Destroyer",
+                    },
+                    [191] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Daedroth Urrai at Bitterroot Cave.",
+                        ["name"] = "Urrai's Bane",
+                    },
+                    [192] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Slave Lord Rendrasa at the Slaver's Camp.",
+                        ["name"] = "Slave Lord's Ruination",
+                    },
+                    [193] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Shadowfen.",
+                        ["name"] = "Shadowfen Cave Delver",
+                    },
+                    [195] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the champion of the Strifeswarm kwama hive.",
+                        ["name"] = "Strifeswarm Eradicator",
+                    },
+                    [196] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Enter the Cave of Memories and destroy the Ashlander Guardian.",
+                        ["name"] = "Memory Masher",
+                    },
+                    [197] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Survive the mudcrabs of Shipwreck Strand and kill Shellcracker, the cannibal crab.",
+                        ["name"] = "Shellcracker",
+                    },
+                    [198] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Storm the beach at Matron's Clutch, slay the Dreugh Matrons, and end the threat of the Dreugh egg-tenders.",
+                        ["name"] = "Dreugh Destroyer",
+                    },
+                    [199] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy the Golden Saint at the Shivering Shrine.",
+                        ["name"] = "Saintly Slaughter",
+                    },
+                    [200] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the bull netch Ozzacha in Brahma's Grove.",
+                        ["name"] = "Netch Wrangler",
+                    },
+                    [202] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Inner Sea Armature.",
+                        ["name"] = "Inner Sea Armature Explorer",
+                    },
+                    [203] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Emberflint Mine.",
+                        ["name"] = "Emberflint Mine Explorer",
+                    },
+                    [716] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Help ease cultural tensions and reconcile the allies in Grahtwood.",
+                        ["name"] = "Peacemaker",
+                    },
+                    [205] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Mephala's Nest.",
+                        ["name"] = "Mephala's Nest Explorer",
+                    },
+                    [206] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Hightide Hollow.",
+                        ["name"] = "Hightide Hollow Explorer",
+                    },
+                    [207] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Softloam Cavern.",
+                        ["name"] = "Softloam Cavern Explorer",
+                    },
+                    [208] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Sheogorath's Tongue.",
+                        ["name"] = "Sheogorath's Tongue Explorer",
+                    },
+                    [210] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the great werewolf, Rageclaw, at Rageclaw's Den.",
+                        ["name"] = "Rageclaw Hunter",
+                    },
+                    [211] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Breton necromancer, Vivien Armene, at the Dragon Mound.",
+                        ["name"] = "Armene's Bane",
+                    },
+                    [212] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the vampire, Olveidi the Ratmaster, at the Ratmaster's Prowl.",
+                        ["name"] = "Ratmaster Crusher",
+                    },
+                    [213] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the wild mammoth, Mannskadi, at Dragon's Hallow.",
+                        ["name"] = "Mannskadi's Mauler",
+                    },
+                    [214] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the great sabre cat, Ammabani, at Ammabani's Pride.",
+                        ["name"] = "Ammabani Ambusher",
+                    },
+                    [215] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Ilessan Tower.",
+                        ["name"] = "Ilessan Tower Explorer",
+                    },
+                    [216] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Silumm.",
+                        ["name"] = "Silumm Explorer",
+                    },
+                    [217] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Enduum.",
+                        ["name"] = "Enduum Explorer",
+                    },
+                    [218] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Mines of Khuras.",
+                        ["name"] = "Mines of Khuras Explorer",
+                    },
+                    [219] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Ebon Crypt.",
+                        ["name"] = "Ebon Crypt Explorer",
+                    },
+                    [220] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Cryptwatch Fort.",
+                        ["name"] = "Cryptwatch Fort Explorer",
+                    },
+                    [221] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Portdun Watch.",
+                        ["name"] = "Portdun Watch Explorer",
+                    },
+                    [222] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Koeglin Mine.",
+                        ["name"] = "Koeglin Mine Explorer",
+                    },
+                    [223] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Pariah Catacombs.",
+                        ["name"] = "Pariah Catacombs Explorer",
+                    },
+                    [224] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Farangel's Delve.",
+                        ["name"] = "Farangel's Delve Explorer",
+                    },
+                    [225] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Bearclaw Mine.",
+                        ["name"] = "Bearclaw Mine Explorer",
+                    },
+                    [226] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Norvolk Ruins.",
+                        ["name"] = "Norvolk Ruins Explorer",
+                    },
+                    [227] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Crestshade Mine.",
+                        ["name"] = "Crestshade Mine Explorer",
+                    },
+                    [228] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Flyleaf Catacombs.",
+                        ["name"] = "Flyleaf Catacombs Explorer",
+                    },
+                    [229] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Tribulation Crypt.",
+                        ["name"] = "Tribulation Crypt Explorer",
+                    },
+                    [230] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Orc's Finger Ruins.",
+                        ["name"] = "Orc's Finger Ruins Explorer",
+                    },
+                    [231] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Erokii Ruins.",
+                        ["name"] = "Erokii Ruins Explorer",
+                    },
+                    [232] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Hildune's Secret Refuge.",
+                        ["name"] = "Hildune's Secret Refuge Explorer",
+                    },
+                    [745] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Newt Cave.",
+                        ["name"] = "Newt Cave Explorer",
+                    },
+                    [746] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Quickwater Cave.",
+                        ["name"] = "Quickwater Cave Explorer",
+                    },
+                    [747] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Vahtacen.",
+                        ["name"] = "Vahtacen Explorer",
+                    },
+                    [245] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Atanaz Ruins.",
+                        ["name"] = "Atanaz Ruins Explorer",
+                    },
+                    [246] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Broken Tusk.",
+                        ["name"] = "Broken Tusk Explorer",
+                    },
+                    [247] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Chid-Moska Ruins.",
+                        ["name"] = "Chid-Moska Ruins Explorer",
+                    },
+                    [248] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Gandranen.",
+                        ["name"] = "Gandranen Explorer",
+                    },
+                    [249] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Onkobra Kwama Mine.",
+                        ["name"] = "Onkobra Kwama Mine Explorer",
+                    },
+                    [250] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Shrine of the Black Maw.",
+                        ["name"] = "Black Maw Shrine Explorer",
+                    },
+                    [251] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear The Chill Hollow.",
+                        ["name"] = "Chill Hollow Explorer",
+                    },
+                    [252] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Icehammer's Vault.",
+                        ["name"] = "Icehammer's Vault Explorer",
+                    },
+                    [253] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Old Sord's Cave.",
+                        ["name"] = "Old Sord's Cave Explorer",
+                    },
+                    [254] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Frigid Grotto.",
+                        ["name"] = "Frigid Grotto Explorer",
+                    },
+                    [255] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Stormcrag Crypt.",
+                        ["name"] = "Stormcrag Crypt Explorer",
+                    },
+                    [768] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales on Khenarthi's Roost.",
+                        ["name"] = "Khenarthi's Roost Pathfinder",
+                    },
+                    [769] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales on Auridon.",
+                        ["name"] = "Auridon Pathfinder",
+                    },
+                    [770] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales on Bleakrock Isle.",
+                        ["name"] = "Bleakrock Isle Pathfinder",
+                    },
+                    [771] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Bal Foyen.",
+                        ["name"] = "Bal Foyen Pathfinder",
+                    },
+                    [772] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Stonefalls.",
+                        ["name"] = "Stonefalls Pathfinder",
+                    },
+                    [773] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales on Stros M'kai.",
+                        ["name"] = "Stros M'kai Pathfinder",
+                    },
+                    [774] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales on Betnikh.",
+                        ["name"] = "Betnikh Pathfinder",
+                    },
+                    [775] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Glenumbra.",
+                        ["name"] = "Glenumbra Pathfinder",
+                    },
+                    [264] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Lady Llarel's Shelter.",
+                        ["name"] = "Lady Llarel's Shelter Explorer",
+                    },
+                    [265] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the ruins of Lower Bthanual.",
+                        ["name"] = "Lower Bthanual Explorer",
+                    },
+                    [266] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Triple Circle Mine.",
+                        ["name"] = "Triple Circle Mine Explorer",
+                    },
+                    [267] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Taleon's Crag.",
+                        ["name"] = "Taleon's Crag Explorer",
+                    },
+                    [268] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Knife Ear Grotto.",
+                        ["name"] = "Knife Ear Grotto Explorer",
+                    },
+                    [269] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Corpse Garden.",
+                        ["name"] = "Corpse Garden Explorer",
+                    },
+                    [270] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Deshaan.",
+                        ["name"] = "Deshaan Cave Delver",
+                    },
+                    [274] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Dead Man's Drop.",
+                        ["name"] = "Dead Man's Drop Explorer",
+                    },
+                    [275] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the giant kagouti, Short-Tusk, at Short-Tusk's Hillock.",
+                        ["name"] = "Short-Tusk Hunter",
+                    },
+                    [276] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the corpse husk, the Abomination, at the Grove of the Abomination.",
+                        ["name"] = "Abomination Slayer",
+                    },
+                    [277] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the giant troll, Sharpfang, at the Dire Bramblepatch.",
+                        ["name"] = "Sharpfang Killer",
+                    },
+                    [278] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy the Mabrigash Shade at the Mabrigash Burial Circle.",
+                        ["name"] = "Mabrigash Shade Destroyer",
+                    },
+                    [279] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Dremora ritualist, Druitularg, at Druitularg's Ritual Altar.",
+                        ["name"] = "Druitularg's Bane",
+                    },
+                    [280] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the giant guar, Bittergreen the Wild, at Caravan Crest.",
+                        ["name"] = "Bittergreen Obliterator",
+                    },
+                    [281] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Black Vine Ruins.",
+                        ["name"] = "Black Vine Ruins Explorer",
+                    },
+                    [282] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Roots of Silvenar.",
+                        ["name"] = "Roots of Silvenar Explorer",
+                    },
+                    [286] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Shael Ruins.",
+                        ["name"] = "Shael Ruins Explorer",
+                    },
+                    [287] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Auridon.",
+                        ["name"] = "Auridon Cave Delver",
+                    },
+                    [288] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Del's Claim.",
+                        ["name"] = "Del's Claim Explorer",
+                    },
+                    [289] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Ondil.",
+                        ["name"] = "Ondil Explorer",
+                    },
+                    [290] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Entila's Folly.",
+                        ["name"] = "Entila's Folly Explorer",
+                    },
+                    [291] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Wansalen.",
+                        ["name"] = "Wansalen Explorer",
+                    },
+                    [292] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Mehrunes' Spite.",
+                        ["name"] = "Mehrunes' Spite Explorer",
+                    },
+                    [293] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Bewan.",
+                        ["name"] = "Bewan Explorer",
+                    },
+                    [296] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Malabal Tor.",
+                        ["name"] = "Malabal Tor Cave Delver",
+                    },
+                    [297] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Tomb of the Apostates.",
+                        ["name"] = "Tomb of the Apostates Explorer",
+                    },
+                    [298] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Hoarvor Pit.",
+                        ["name"] = "Hoarvor Pit Explorer",
+                    },
+                    [832] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Grahtwood.",
+                        ["name"] = "Grahtwood Pathfinder",
+                    },
+                    [833] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Stormhaven.",
+                        ["name"] = "Stormhaven Pathfinder",
+                    },
+                    [834] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Deshaan.",
+                        ["name"] = "Deshaan Pathfinder",
+                    },
+                    [835] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Reaper's March.",
+                        ["name"] = "Reaper's March Pathfinder",
+                    },
+                    [836] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeated by slaughterfish.",
+                        ["name"] = "Slaughtered",
+                    },
+                    [839] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Greenshade.",
+                        ["name"] = "Greenshade Pathfinder",
+                    },
+                    [328] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in the Rift.",
+                        ["name"] = "The Rift Cave Delver",
+                    },
+                    [329] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Faldar's Tooth.",
+                        ["name"] = "Faldar's Tooth Explorer",
+                    },
+                    [330] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Broken Helm Hollow.",
+                        ["name"] = "Broken Helm Hollow Explorer",
+                    },
+                    [331] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Avancheznel.",
+                        ["name"] = "Avancheznel Explorer",
+                    },
+                    [332] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Fort Greenwall.",
+                        ["name"] = "Fort Greenwall Explorer",
+                    },
+                    [333] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Shroud Hearth Barrow.",
+                        ["name"] = "Shroud Hearth Barrow Explorer",
+                    },
+                    [334] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Snapleg Cave.",
+                        ["name"] = "Snapleg Cave Explorer",
+                    },
+                    [849] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Pathfinder",
+                    },
+                    [345] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Indur-sa and the Khajiiti Hunters at the Hunter Camp.",
+                        ["name"] = "Khajiiti Hunters' Bane",
+                    },
+                    [346] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the trolls, Frostdrool and Sleetclaw, at the Troll Cave.",
+                        ["name"] = "Troll Killer",
+                    },
+                    [347] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Frost Atronach, Nomeg Rine, at the Frozen Ruins.",
+                        ["name"] = "Frost Atronach Destroyer",
+                    },
+                    [348] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Put Ghoragham the Ghost to rest at the Abandoned Camp.",
+                        ["name"] = "Ghost Banisher",
+                    },
+                    [349] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Longstride the Giant and his Mammoth at the Giant Camp.",
+                        ["name"] = "Giant Slayer",
+                    },
+                    [350] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Banish Aereus the Wispmother from Wisplight Glen.",
+                        ["name"] = "Wispmother Vanquisher",
+                    },
+                    [351] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "End the threat of the necromancers at Soulfire Plateau and avenge the First Auridon Marines.",
+                        ["name"] = "Marines Avenger",
+                    },
+                    [352] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Quenyas, leader of Auridon's bandit gangs, in the camp at Seaside Scarp.",
+                        ["name"] = "Bandit Lord Bounty Hunter",
+                    },
+                    [353] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy Ghost Captain Blanchete at the Wreck of the Raptor.",
+                        ["name"] = "Ghost Captain Crusher",
+                    },
+                    [354] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the clannfear champion, Snapjaw, and end the murder of innocents at Heretic's Summons.",
+                        ["name"] = "Snapjaw's Bane",
+                    },
+                    [355] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the giant snake known as the Nestmother in her den.",
+                        ["name"] = "Nestmother Eradicator",
+                    },
+                    [356] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Anarume at the Heritance Proving Ground and end his treason.",
+                        ["name"] = "Anarume Bounty Hunter",
+                    },
+                    [869] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Extort gold from merchants across Tamriel.",
+                        ["name"] = "Crime Pays",
+                    },
+                    [871] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Share your wealth with needy beggars across Tamriel.",
+                        ["name"] = "Give to the Poor",
+                    },
+                    [872] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Track the movements of M'aiq the Liar across Tamriel and beyond.",
+                        ["name"] = "I Like M'aiq",
+                    },
+                    [873] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Bring light to the dark places of the world.",
+                        ["name"] = "Lightbringer",
+                    },
+                    [884] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Molavar.",
+                        ["name"] = "Molavar Explorer",
+                    },
+                    [885] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Rkundzelft.",
+                        ["name"] = "Rkundzelft Explorer",
+                    },
+                    [886] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Serpent's Nest.",
+                        ["name"] = "Serpent's Nest Explorer",
+                    },
+                    [887] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Ilthag's Undertower.",
+                        ["name"] = "Ilthag's Undertower Explorer",
+                    },
+                    [888] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Ruins of Kardala.",
+                        ["name"] = "Ruins of Kardala Explorer",
+                    },
+                    [889] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Loth'Na Caverns.",
+                        ["name"] = "Loth'Na Caverns Explorer",
+                    },
+                    [890] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Rkhardahrk.",
+                        ["name"] = "Rkhardahrk Explorer",
+                    },
+                    [891] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Haddock's Market.",
+                        ["name"] = "Haddock's Market Explorer",
+                    },
+                    [892] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Chiselshriek Mine.",
+                        ["name"] = "Chiselshriek Mine Explorer",
+                    },
+                    [893] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Buried Sands.",
+                        ["name"] = "Buried Sands Explorer",
+                    },
+                    [382] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the giant bear Graufang at Seaview Point.",
+                        ["name"] = "Graufang Hunter",
+                    },
+                    [383] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the lurcher Limbscather at the Western Overlook.",
+                        ["name"] = "Limbscather Slayer",
+                    },
+                    [384] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the werewolf, Salazar the Wolf, at the Wolf's Camp.",
+                        ["name"] = "Werewolf's Bane",
+                    },
+                    [385] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Bloodthorn zombie, Asard the Putrid, at North Shore Point.",
+                        ["name"] = "Asard's Assassin",
+                    },
+                    [386] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the giant crocodile, Trapjaw, at Trapjaw's Cove.",
+                        ["name"] = "Trapjaw Stalker",
+                    },
+                    [387] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the necromancer, Grivier Bloodcaller, at Balefire Island.",
+                        ["name"] = "Bloodcaller's Ruin",
+                    },
+                    [900] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Tombs of the Na-Totambu.",
+                        ["name"] = "Tombs of the Na-Totambu Explorer",
+                    },
+                    [901] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Hircine's Haunt.",
+                        ["name"] = "Hircine's Haunt Explorer",
+                    },
+                    [902] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Lower Craglorn.",
+                        ["name"] = "Lower Craglorn Pathfinder",
+                    },
+                    [399] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Titanclaw the mudcrab at Mudcrab Beach.",
+                        ["name"] = "Titanclaw Cracker",
+                    },
+                    [400] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Old Widow Silk and the Bloodweaver spiders at the Spider Nest.",
+                        ["name"] = "Spider Slayer",
+                    },
+                    [401] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Dreugh Brood Queen at the Dreugh Waters.",
+                        ["name"] = "Brood Queen Destroyer",
+                    },
+                    [402] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Daedroth Gar Xuu Gar and his minions at the Abandoned Farm.",
+                        ["name"] = "Gar Xuu Gar's Bane",
+                    },
+                    [403] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Ogre called Cousin Scrag at Scrag's Larder.",
+                        ["name"] = "Cousin Scrag's Demolisher",
+                    },
+                    [404] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Zymel Kruz the Storm Atronach at the Ancient Altar.",
+                        ["name"] = "Kruz Control",
+                    },
+                    [406] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Jump from the nose of the Weeping Giant.",
+                        ["name"] = "Nose Diver",
+                    },
+                    [699] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Otho Rufinus, the poacher leader, at the Poacher Camp.",
+                        ["name"] = "Poacher Pounder",
+                    },
+                    [700] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the giant flesh atronach Thugrub the Reformed in Thugrub's Cave.",
+                        ["name"] = "Thugrub Dissector",
+                    },
+                    [701] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the lich Valanir the Restless at Valanir's Rest.",
+                        ["name"] = "Valanir's Bane",
+                    },
+                    [730] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Bloodmayne Cave.",
+                        ["name"] = "Bloodmayne Cave Explorer",
+                    },
+                    [731] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Breakneck Cave.",
+                        ["name"] = "Breakneck Cave Explorer",
+                    },
+                    [412] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Santaki Ruins.",
+                        ["name"] = "Santaki Ruins Explorer",
+                    },
+                    [413] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in the Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Cave Delver",
+                    },
+                    [414] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Divad's Chagrin Mine.",
+                        ["name"] = "Divad's Chagrin Mine Explorer",
+                    },
+                    [732] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Haynote Cave.",
+                        ["name"] = "Haynote Cave Explorer",
+                    },
+                    [416] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Aldunz Ruins.",
+                        ["name"] = "Aldunz Ruins Explorer",
+                    },
+                    [733] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Nisin Cave.",
+                        ["name"] = "Nisin Cave Explorer",
+                    },
+                    [734] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Pothole Caverns.",
+                        ["name"] = "Pothole Caverns Explorer",
+                    },
+                    [419] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Coldrock Diggings.",
+                        ["name"] = "Coldrock Diggings Explorer",
+                    },
+                    [420] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Sandblown Mine.",
+                        ["name"] = "Sandblown Mine Explorer",
+                    },
+                    [735] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Serpent Hollow.",
+                        ["name"] = "Serpent Hollow Explorer",
+                    },
+                    [736] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Capstone Cave.",
+                        ["name"] = "Capstone Cave Explorer",
+                    },
+                    [423] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Yldzuun Ruins.",
+                        ["name"] = "Yldzuun Ruins Explorer",
+                    },
+                    [424] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Eastmarch.",
+                        ["name"] = "Eastmarch Cave Delver",
+                    },
+                    [425] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy the tainted plant creatures at Deathsong Cleft in Reaper's March.",
+                        ["name"] = "Deathsong Deforester",
+                    },
+                    [426] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Big Ozur the Ogre in Big Ozur's Valley.",
+                        ["name"] = "Big Ozur's Bane",
+                    },
+                    [427] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Queen of Three Mercies and her entourage at Waterdancer Falls in Reaper's March.",
+                        ["name"] = "Mercy Killer",
+                    },
+                    [428] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Gravecaller Niramo and his dark daughter Varien at the Reaper's Henge.",
+                        ["name"] = "Gravecaller's Doom",
+                    },
+                    [429] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Daedroth, Ysolmarr the Roving Pyre, near the Old S'ren-ja Docks in Reaper's March.",
+                        ["name"] = "Ysolmarr's Ruin",
+                    },
+                    [430] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the vampire, Overlord Nur-dro, at Ushmal's Rest in Reaper's March.",
+                        ["name"] = "Nur-dro's Downfall",
+                    },
+                    [737] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Echo Cave.",
+                        ["name"] = "Echo Cave Explorer",
+                    },
+                    [432] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Aba-Loria.",
+                        ["name"] = "Aba-Loria Explorer",
+                    },
+                    [433] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Grotto of Depravity.",
+                        ["name"] = "Grotto of Depravity Explorer",
+                    },
+                    [434] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Cave of Trophies.",
+                        ["name"] = "Cave of Trophies Explorer",
+                    },
+                    [435] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Vault of Haman Forgefire.",
+                        ["name"] = "Forgefire Vault Explorer",
+                    },
+                    [436] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Mal Sorra's Tomb.",
+                        ["name"] = "Mal Sorra's Tomb Explorer",
+                    },
+                    [437] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Wailing Maw.",
+                        ["name"] = "Wailing Maw Explorer",
+                    },
+                    [438] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Coldharbour.",
+                        ["name"] = "Coldharbour Cave Delver",
+                    },
+                    [439] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the daedroth, Sthorha the Crazed, at Aba-Darre.",
+                        ["name"] = "Sthorha's Doom",
+                    },
+                    [440] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the ice wraith, Duriatundur, at Duriatundur's Killing Field.",
+                        ["name"] = "Ice Wraith Hunter",
+                    },
+                    [441] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the ancient Dwarven Centurian, Zemarek-thul, at Zemarek's Hollow.",
+                        ["name"] = "Centurian's Ruin",
+                    },
+                    [442] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the daedroth trio, Nolagha, Keggagiha and Rsolignah, at the Daedroth Larder.",
+                        ["name"] = "Daedroth Trio Hunter",
+                    },
+                    [443] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Dremora necromancer, Brolsgerbwd, at the Risen Court.",
+                        ["name"] = "Brolsgerbwd's Bane",
+                    },
+                    [444] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the harvester, Cynhamoth, at Cynhamoth's Grove.",
+                        ["name"] = "Cynhamoth's End",
+                    },
+                    [738] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Lipsand Tarn.",
+                        ["name"] = "Lipsand Tarn Explorer",
+                    },
+                    [452] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all six caves in Reaper's March.",
+                        ["name"] = "Reaper's March Cave Delver",
+                    },
+                    [453] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Kuna's Delve.",
+                        ["name"] = "Kuna's Delve Explorer",
+                    },
+                    [454] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Thibaut's Cairn.",
+                        ["name"] = "Thibaut's Cairn Explorer",
+                    },
+                    [455] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Weeping Wind Cave.",
+                        ["name"] = "Weeping Wind Cave Explorer",
+                    },
+                    [456] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Claw's Strike.",
+                        ["name"] = "Claw's Strike Explorer",
+                    },
+                    [969] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all caves and locales throughout the Aldmeri Dominion Territory.",
+                        ["name"] = "Aldmeri Master Explorer",
+                    },
+                    [964] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Glenumbra.",
+                        ["name"] = "Glenumbra Master Explorer",
+                    },
+                    [965] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Stormhaven.",
+                        ["name"] = "Stormhaven Master Explorer",
+                    },
+                    [966] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Rivenspire.",
+                        ["name"] = "Rivenspire Master Explorer",
+                    },
+                    [967] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in the Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Master Explorer",
+                    },
+                    [968] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Bangkorai.",
+                        ["name"] = "Bangkorai Master Explorer",
+                    },
+                    [457] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Fardir's Folly.",
+                        ["name"] = "Fardir's Folly Explorer",
+                    },
+                    [458] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Jode's Light.",
+                        ["name"] = "Jode's Light Explorer",
+                    },
+                    [971] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Deshaan.",
+                        ["name"] = "Deshaan Master Explorer",
+                    },
+                    [972] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Shadowfen.",
+                        ["name"] = "Shadowfen Master Explorer",
+                    },
+                    [973] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Eastmarch.",
+                        ["name"] = "Eastmarch Master Explorer",
+                    },
+                    [974] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in The Rift.",
+                        ["name"] = "The Rift Master Explorer",
+                    },
+                    [975] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover all of the striking locales on Bleakrock and Bal Foyen.",
+                        ["name"] = "Bleakrock and Bal Foyen Explorer",
+                    },
+                    [976] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Auridon.",
+                        ["name"] = "Auridon Master Explorer",
+                    },
+                    [977] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Grahtwood.",
+                        ["name"] = "Grahtwood Master Explorer",
+                    },
+                    [978] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Greenshade.",
+                        ["name"] = "Greenshade Master Explorer",
+                    },
+                    [979] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Malabal Tor.",
+                        ["name"] = "Malabal Tor Master Explorer",
+                    },
+                    [980] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Reaper's March.",
+                        ["name"] = "Reaper's March Master Explorer",
+                    },
+                    [981] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover all of the striking locales on Stros M'kai and Betnikh.",
+                        ["name"] = "Stros M'kai and Betnikh Explorer",
+                    },
+                    [982] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all caves and locales throughout the Daggerfall Covenant Territory.",
+                        ["name"] = "Daggerfall Master Explorer",
+                    },
+                    [983] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all caves and locales throughout the Ebonheart Pact Territory.",
+                        ["name"] = "Ebonheart Master Explorer",
+                    },
+                    [984] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Coldharbour.",
+                        ["name"] = "Coldharbour Master Explorer",
+                    },
+                    [985] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 15,
+                        ["description"] = "Discover and clear all twelve explorable caves in Lower Craglorn.",
+                        ["name"] = "Lower Craglorn Cave Delver",
+                    },
+                    [986] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all caves and locales throughout Lower Craglorn.",
+                        ["name"] = "Lower Craglorn Master Explorer",
+                    },
+                    [739] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Red Ruby Cave.",
+                        ["name"] = "Red Ruby Cave Explorer",
+                    },
+                    [740] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Toadstool Hollow.",
+                        ["name"] = "Toadstool Hollow Explorer",
+                    },
+                    [741] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Underpall Cave.",
+                        ["name"] = "Underpall Cave Explorer",
+                    },
+                    [742] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Cracked Wood Cave.",
+                        ["name"] = "Cracked Wood Cave Explorer",
+                    },
+                    [743] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Kingscrest Cavern.",
+                        ["name"] = "Kingscrest Cavern Explorer",
+                    },
+                    [744] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Muck Valley Cavern.",
+                        ["name"] = "Muck Valley Cavern Explorer",
+                    },
+                    [766] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Explore and clear all 18 caves in Cyrodiil.",
+                        ["name"] = "Cyrodiil Cave Delver",
+                    },
+                    [840] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Rivenspire.",
+                        ["name"] = "Rivenspire Pathfinder",
+                    },
+                    [845] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Shadowfen.",
+                        ["name"] = "Shadowfen Pathfinder",
+                    },
+                    [862] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Malabal Tor.",
+                        ["name"] = "Malabal Tor Pathfinder",
+                    },
+                    [863] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in the Rift.",
+                        ["name"] = "The Rift Pathfinder",
+                    },
+                    [864] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Coldharbour.",
+                        ["name"] = "Coldharbour Pathfinder",
+                    },
+                    [865] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Bangkorai.",
+                        ["name"] = "Bangkorai Pathfinder",
+                    },
+                    [866] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Eastmarch.",
+                        ["name"] = "Eastmarch Pathfinder",
+                    },
+                    [263] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill Commander Faldethil of the Green Hunters at River Edge.",
+                        ["name"] = "Green Vanquisher",
+                    },
+                    [262] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill Skullbreaker the sea troll at Windshriek Strand.",
+                        ["name"] = "Skullbreaker",
+                    },
+                    [261] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the nereid queen Tallatta the Lustrous in the Jagged Grotto.",
+                        ["name"] = "Tallatta's Annihilator",
+                    },
+                    [260] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the strangler Bone Grappler in its nest.",
+                        ["name"] = "Bone Grappler's Bane",
+                    },
+                    [259] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the Orc reaver Dugan the Red.",
+                        ["name"] = "Dugan's Demolisher",
+                    },
+                    [970] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover and clear all six caves and striking locales in Stonefalls.",
+                        ["name"] = "Stonefalls Master Explorer",
+                    },
+                    [495] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the duneripper, Mother Sands, at the Lost Caravan.",
+                        ["name"] = "Duneripper's Downfall",
+                    },
+                    [496] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the giant, Lonely Papa, at the Giant Camp.",
+                        ["name"] = "Lonely Papa's Doom",
+                    },
+                    [497] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Hag Sisters, Igazkad, Orochar and Ukha, at the Hag Camp.",
+                        ["name"] = "Hag Upheaval",
+                    },
+                    [498] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Korignah the harvester in the Forsaken Hearts Cave.",
+                        ["name"] = "Korignah's Bane",
+                    },
+                    [499] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Mummy King at King's Rest.",
+                        ["name"] = "Mummy King Murderer",
+                    },
+                    [500] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the golden saint, Staada, at the Lesser Circle.",
+                        ["name"] = "Saint Slayer",
+                    },
+                    [937] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Discover all of the striking locales in Upper Craglorn.",
+                        ["name"] = "Upper Craglorn Pathfinder",
+                    },
+                    [899] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Zalgaz's Den.",
+                        ["name"] = "Zalgaz's Den Explorer",
+                    },
+                    [898] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Exarch's Stronghold.",
+                        ["name"] = "Exarch's Stronghold Explorer",
+                    },
+                    [897] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Fearfangs Cavern.",
+                        ["name"] = "Fearfangs Cavern Explorer",
+                    },
+                    [896] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Balamath.",
+                        ["name"] = "Balamath Explorer",
+                    },
+                    [895] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Howling Sepulchers.",
+                        ["name"] = "The Howling Sepulchers Explorer",
+                    },
+                    [894] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear Mtharnaz.",
+                        ["name"] = "Mtharnaz Explorer",
+                    },
+                    [867] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 50,
+                        ["description"] = "Discover all of the striking locales in the core regions of the Aldmeri Dominion, the Daggerfall Covenant, the Ebonheart Pact, and Coldharbour.",
+                        ["name"] = "Tamriel Trailblazer",
+                    },
+                    [256] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 10,
+                        ["description"] = "Explore and clear the Bastard's Tomb.",
+                        ["name"] = "Bastard's Tomb Explorer",
+                    },
+                    [257] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Kill the great bear, Beralagr, at Swiftblade's Camp.",
+                        ["name"] = "Beralagr Hunter",
+                    },
+                    [258] =
+                    {
+                        ["Category"] = "Exploration",
+                        ["Category_ID"] = 8,
+                        ["points"] = 5,
+                        ["description"] = "Destroy Thjormar and the Drowned Horde at Bitterpoint Strand.",
+                        ["name"] = "Drowned Horde Decimater",
+                    },
+                },
+                ["Dark Anchors"] =
+                {
+                    [322] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Release the Dark Anchor pinions to send the chains back to Coldharbour.",
+                        ["name"] = "Chainbreaker",
+                    },
+                    [579] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 15,
+                        ["description"] = "Destroy every Dark Anchor in Aldmeri Dominion territory.",
+                        ["name"] = "Dominion Anchor Shatterer",
+                    },
+                    [324] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 5,
+                        ["description"] = "Destroy 10 Dark Anchors from Coldharbour.",
+                        ["name"] = "Anchor Destroyer",
+                    },
+                    [584] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 15,
+                        ["description"] = "Destroy every Dark Anchor in Daggerfall Covenant territory.",
+                        ["name"] = "Covenant Anchor Shatterer",
+                    },
+                    [585] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 15,
+                        ["description"] = "Destroy every Dark Anchor in Ebonheart Pact territory.",
+                        ["name"] = "Pact Anchor Shatterer",
+                    },
+                    [586] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 15,
+                        ["description"] = "Destroy every Dark Anchor in the contested lands of Cyrodiil.",
+                        ["name"] = "Imperial Anchor Shatterer",
+                    },
+                    [587] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 50,
+                        ["description"] = "Destroy every Dark Anchor in Tamriel.",
+                        ["name"] = "Anchors Away",
+                    },
+                    [620] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 15,
+                        ["description"] = "Destroy 100 Dark Anchors from Coldharbour.",
+                        ["name"] = "Anchor Decimater",
+                    },
+                    [621] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 50,
+                        ["description"] = "Destroy 250 Dark Anchors from Coldharbour.",
+                        ["name"] = "Anchor Devastater",
+                    },
+                    [548] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Destroy Ozzozachar, the favored Titan of Molag Bal.",
+                        ["name"] = "Ozzozachar's Door",
+                    },
+                    [303] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Kathutet, Amkaos, and Ranyu, Molag Bal's torturers, at a Dark Anchor.",
+                        ["name"] = "Torturers' Demise",
+                    },
+                    [304] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Glut, Hogshead, and Stumble, the three Ogrim Brothers, at a Dark Anchor.",
+                        ["name"] = "Ogrim Brother Subjugator",
+                    },
+                    [305] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Velehk Sain, the Dremora pirate, at a Dark Anchor.",
+                        ["name"] = "Dremora Pirate Slayer",
+                    },
+                    [306] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Methats, Vonshala, and Sumeer, the Dremora travelers, at a Dark Anchor.",
+                        ["name"] = "Traveling Dremora Slayer",
+                    },
+                    [307] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Menta Na, Molag Bal's most favored Daedroth, at a Dark Anchor.",
+                        ["name"] = "Favored Daedroth Destroyer",
+                    },
+                    [308] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Yggmanei the Ever-Open Eye, Molag Bal's greatest spy, at a Dark Anchor.",
+                        ["name"] = "Closer of the Ever-Open Eye",
+                    },
+                    [309] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Daedroth Hrelvesuu at a Dark Anchor.",
+                        ["name"] = "Hrelvesuu's Bane",
+                    },
+                    [310] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Rhagothan, the Devourer of Souls, at a Dark Anchor.",
+                        ["name"] = "Devourer of Souls Subverter",
+                    },
+                    [311] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Nomeg Haga, the giant Frost Atronach of Coldharbour, at a Dark Anchor.",
+                        ["name"] = "Frost Lord Destroyer",
+                    },
+                    [312] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Zymel Hriz, the giant Storm Atronach of Coldharbour, at a Dark Anchor.",
+                        ["name"] = "Storm Lord Destroyer",
+                    },
+                    [313] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Anaxes and Medrike, the Xivilai torturers, at a Dark Anchor.",
+                        ["name"] = "Xivilai Slavemaster Destroyer",
+                    },
+                    [314] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Vika, Dylora, and Jansa, the Dark Seducer sisters, at a Dark Anchor.",
+                        ["name"] = "Seductive Sister Destroyer",
+                    },
+                    [315] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat King Styriche of Verkarth and his companions, Fangaril and Zayzahad, at a Dark Anchor.",
+                        ["name"] = "Verkarth Vampire Destroyer",
+                    },
+                    [316] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Lord Dregas Volar, the holder of the Daedric Crescent, at a Dark Anchor.",
+                        ["name"] = "Crescent Dremora Destroyer",
+                    },
+                    [317] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Gedna Relvel, the Lich of Mournhold, at a Dark Anchor.",
+                        ["name"] = "Mournhold Lich Destroyer",
+                    },
+                    [318] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 50,
+                        ["description"] = "Destroy all of Molag Bal's generals that appear at the Dark Anchors.",
+                        ["name"] = "General Executioner",
+                    },
+                    [619] =
+                    {
+                        ["Category"] = "Dark Anchors",
+                        ["Category_ID"] = 6,
+                        ["points"] = 10,
+                        ["description"] = "Destroy 50 Dark Anchors from Coldharbour.",
+                        ["name"] = "Anchor Demolisher",
+                    },
+                },
+                ["version"] = 1,
+                ["Alliance War"] =
+                {
+                    [960] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 15,
+                        ["description"] = "Kill 100 enemy Sorcerers.",
+                        ["name"] = "Grand Sorcerer Slayer",
+                    },
+                    [705] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Grand Overlord in the Alliance War.",
+                        ["name"] = "Alliance War Grand Overlord",
+                    },
+                    [706] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of First Sergeant in the Alliance War.",
+                        ["name"] = "Alliance War First Sergeant",
+                    },
+                    [963] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Help capture a Resource (Farm, Lumber Mill, or Mine), and Keep in Cyrodiil.",
+                        ["name"] = "Support the Fight",
+                    },
+                    [962] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 enemy Dragonknights.",
+                        ["name"] = "Grand Dragonknight Slayer",
+                    },
+                    [903] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Enter Cyrodiil and join the Alliance War.",
+                        ["name"] = "Cyrodiil Recruit",
+                    },
+                    [134] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill an enemy with the rank of Grand Overlord in the Alliance War.",
+                        ["name"] = "Kill a Grand Overlord",
+                    },
+                    [135] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Deal 1,000,000 points of damage to enemies in Cyrodiil.",
+                        ["name"] = "Damage Dealer",
+                    },
+                    [136] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Deal 5,000,000 points of damage to enemies in Cyrodiil.",
+                        ["name"] = "Massive Damage Dealer",
+                    },
+                    [137] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Deal 100,000,000 points of damage to enemies in Cyrodiil.",
+                        ["name"] = "Tremendous Damage Dealer",
+                    },
+                    [138] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Heal 1,000,000 points of damage to allies in Cyrodiil.",
+                        ["name"] = "Healer",
+                    },
+                    [139] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Heal 5,000,000 points of damage to allies in Cyrodiil.",
+                        ["name"] = "Massive Healer",
+                    },
+                    [140] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Heal 100,000,000 points of damage to allies in Cyrodiil.",
+                        ["name"] = "Tremendous Healer",
+                    },
+                    [141] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Breton enemies in the Alliance War.",
+                        ["name"] = "Breton Slayer",
+                    },
+                    [718] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Redguard enemies in the Alliance War.",
+                        ["name"] = "Redguard Slayer",
+                    },
+                    [719] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Orc enemies in the Alliance War.",
+                        ["name"] = "Orc Slayer",
+                    },
+                    [720] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Dunmer enemies in the Alliance War.",
+                        ["name"] = "Dark Elf Slayer",
+                    },
+                    [721] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Nord enemies in the Alliance War.",
+                        ["name"] = "Nord Slayer",
+                    },
+                    [722] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Argonian enemies in the Alliance War.",
+                        ["name"] = "Argonian Slayer",
+                    },
+                    [723] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Bosmer enemies in the Alliance War.",
+                        ["name"] = "Wood Elf Slayer",
+                    },
+                    [724] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Altmer enemies in the Alliance War.",
+                        ["name"] = "High Elf Slayer",
+                    },
+                    [725] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Khajiit enemies in the Alliance War.",
+                        ["name"] = "Khajiit Slayer",
+                    },
+                    [726] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 Imperial enemies in the Alliance War.",
+                        ["name"] = "Imperial Slayer",
+                    },
+                    [114] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Overlord in the Alliance War.",
+                        ["name"] = "Alliance War Overlord",
+                    },
+                    [88] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 10 enemy Dragonknights.",
+                        ["name"] = "Dragonknight Slayer",
+                    },
+                    [89] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 10 enemy Sorcerers.",
+                        ["name"] = "Sorcerer Slayer",
+                    },
+                    [90] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 10 enemy Templars.",
+                        ["name"] = "Templar Slayer",
+                    },
+                    [91] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Help capture a resource (farm, lumbermill, or mine) in Cyrodiil.",
+                        ["name"] = "Capture a Resource",
+                    },
+                    [92] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn your first rank in the Alliance War.",
+                        ["name"] = "Alliance War Volunteer",
+                    },
+                    [93] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Recruit in the Alliance War.",
+                        ["name"] = "Alliance War Recruit",
+                    },
+                    [94] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Tyro in the Alliance War.",
+                        ["name"] = "Alliance War Tyro",
+                    },
+                    [95] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Legionary in the Alliance War.",
+                        ["name"] = "Alliance War Legionary",
+                    },
+                    [96] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Veteran in the Alliance War.",
+                        ["name"] = "Alliance War Veteran",
+                    },
+                    [97] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Corporal in the Alliance War.",
+                        ["name"] = "Alliance War Corporal",
+                    },
+                    [98] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Sergeant in the Alliance War.",
+                        ["name"] = "Alliance War Sergeant",
+                    },
+                    [99] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Lieutenant in the Alliance War.",
+                        ["name"] = "Alliance War Lieutenant",
+                    },
+                    [100] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Captain in the Alliance War.",
+                        ["name"] = "Alliance War Captain",
+                    },
+                    [101] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Major in the Alliance War.",
+                        ["name"] = "Alliance War Major",
+                    },
+                    [102] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Centurion in the Alliance War.",
+                        ["name"] = "Alliance War Centurion",
+                    },
+                    [103] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Colonel in the Alliance War.",
+                        ["name"] = "Alliance War Colonel",
+                    },
+                    [104] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Tribune in the Alliance War.",
+                        ["name"] = "Alliance War Tribune",
+                    },
+                    [105] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Brigadier in the Alliance War.",
+                        ["name"] = "Alliance War Brigadier",
+                    },
+                    [106] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Prefect in the Alliance War.",
+                        ["name"] = "Alliance War Prefect",
+                    },
+                    [107] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Praetorian in the Alliance War.",
+                        ["name"] = "Alliance War Praetorian",
+                    },
+                    [108] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Palatine in the Alliance War.",
+                        ["name"] = "Alliance War Palatine",
+                    },
+                    [109] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of August Palatine in the Alliance War.",
+                        ["name"] = "Alliance War August Palatine",
+                    },
+                    [110] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Legate in the Alliance War.",
+                        ["name"] = "Alliance War Legate",
+                    },
+                    [111] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of General in the Alliance War.",
+                        ["name"] = "Alliance War General",
+                    },
+                    [112] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Warlord in the Alliance War.",
+                        ["name"] = "Alliance War Warlord",
+                    },
+                    [113] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn the rank of Grand Warlord in the Alliance War.",
+                        ["name"] = "Alliance War Grand Warlord",
+                    },
+                    [882] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the Emperor of your Home Campaign in the Alliance War.",
+                        ["name"] = "Emperor Assassin",
+                    },
+                    [115] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Score a Revenge kill in the Alliance War.",
+                        ["name"] = "First Revenge",
+                    },
+                    [116] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Score 10 Revenge kills in the Alliance War.",
+                        ["name"] = "Sweet Vengeance",
+                    },
+                    [117] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Score your first Avenge kill in the Alliance War.",
+                        ["name"] = "First Avenge",
+                    },
+                    [118] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Score 10 Avenge kills in the Alliance War.",
+                        ["name"] = "Vindication",
+                    },
+                    [119] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn a kill when below 5 percent health in the Alliance War.",
+                        ["name"] = "Close Call Kill",
+                    },
+                    [120] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn 5 kills when below 5 percent health in the Alliance War.",
+                        ["name"] = "Five Under Five",
+                    },
+                    [121] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Earn 10 kills when below 5 percent health in the Alliance War.",
+                        ["name"] = "Ten Under Five",
+                    },
+                    [122] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Capture your first keep in the Alliance War.",
+                        ["name"] = "Keep Capture",
+                    },
+                    [904] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 50,
+                        ["description"] = "Defeat an Emperor from any campaign in the Alliance War.",
+                        ["name"] = "Emperor Slayer",
+                    },
+                    [935] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 50,
+                        ["description"] = "Dominate the Alliance War battlefield and become Emperor of Tamriel. \n\nLong may you reign!",
+                        ["name"] = "Emperor!",
+                    },
+                    [717] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 10,
+                        ["description"] = "Kill 10 enemy Nightblades.",
+                        ["name"] = "Nightblade Slayer",
+                    },
+                    [961] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 15,
+                        ["description"] = "Kill 100 enemy Templars.",
+                        ["name"] = "Grand Templar Slayer",
+                    },
+                    [959] =
+                    {
+                        ["Category"] = "Alliance War",
+                        ["Category_ID"] = 4,
+                        ["points"] = 15,
+                        ["description"] = "Kill 100 enemy Nightblades.",
+                        ["name"] = "Grand Nightblade Slayer",
+                    },
+                },
+                ["Justice"] =
+                {
+                    [1224] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a citizen of Tamriel.",
+                        ["name"] = "Murderer",
+                    },
+                    [1225] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill fifty citizens of Tamriel.",
+                        ["name"] = "Serial Killer",
+                    },
+                    [1226] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill one hundred citizens of Tamriel.",
+                        ["name"] = "Mass Murderer",
+                    },
+                    [1227] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a livestock cow, bull, or ox.",
+                        ["name"] = "Ground Beef",
+                    },
+                    [1228] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a livestock chicken, or bantam guar.",
+                        ["name"] = "Poultry Assassin",
+                    },
+                    [1229] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a livestock goat or sheep.",
+                        ["name"] = "Wicked Shepherd",
+                    },
+                    [1230] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a livestock pig.",
+                        ["name"] = "Hog Killer",
+                    },
+                    [1231] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a livestock guar.",
+                        ["name"] = "Guar Slayer",
+                    },
+                    [1232] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a total of ten livestock animals.",
+                        ["name"] = "Butcher",
+                    },
+                    [1233] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a total of one hundred livestock animals.",
+                        ["name"] = "Slaughterer",
+                    },
+                    [1234] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Kill a total of five hundred livestock animals.",
+                        ["name"] = "Livestock Mass Murderer",
+                    },
+                    [1190] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Successfully pickpocket any citizen of Tamriel.",
+                        ["name"] = "Pocket Picker",
+                    },
+                    [1191] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "Successfully pickpocket one hundred citizens of Tamriel.",
+                        ["name"] = "Purse Snatcher",
+                    },
+                    [1192] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Successfully pickpocket one thousand citizens of Tamriel.",
+                        ["name"] = "Sneak Thief Extraordinaire",
+                    },
+                    [1193] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Successfully escape a guard after choosing the \"Flee\" option in the Accost Dialogue Window.",
+                        ["name"] = "Cut and Run",
+                    },
+                    [1194] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Successfully escape the guards a total of one hundred times after choosing the \"Flee\" option in the Accost Dialogue Window.",
+                        ["name"] = "Escape Artist",
+                    },
+                    [1195] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Make a one time transaction of 1,000 gold or greater for crimes committed against the citizens of Tamriel.",
+                        ["name"] = "Make Amends",
+                    },
+                    [1196] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Pay a total of 100,000 gold to the Fence OR to the Tamriel Guards to clear your criminal record.",
+                        ["name"] = "Felonious Recompense",
+                    },
+                    [1197] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Earn 1,000 gold by selling stolen goods to a Fence.",
+                        ["name"] = "Ill-Gotten Gains",
+                    },
+                    [1198] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Break into and loot the contents of a safebox.",
+                        ["name"] = "Safebox Pilferer",
+                    },
+                    [1199] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "Break into and loot the contents of ten safeboxes.",
+                        ["name"] = "Safebox Looter",
+                    },
+                    [1200] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Break into and loot the contents of one hundred safeboxes.",
+                        ["name"] = "Safebox Cracker",
+                    },
+                    [1201] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Earn 100,000 gold by selling stolen goods to a Fence.",
+                        ["name"] = "Illicit Entrepreneur",
+                    },
+                    [1202] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 50,
+                        ["description"] = "Earn 1,000,000 gold by selling stolen goods to a Fence.",
+                        ["name"] = "Black Market Mogul",
+                    },
+                    [1203] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Spend 100 gold to launder stolen items through a Fence.",
+                        ["name"] = "Loot Cleaner",
+                    },
+                    [1204] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "Spend 1,000 gold to launder stolen items through a Fence.",
+                        ["name"] = "Loot Sanitizer",
+                    },
+                    [1205] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Spend 10,000 gold to launder stolen items through a Fence.",
+                        ["name"] = "Illustrious Launderer",
+                    },
+                    [1206] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Successfully pick the lock on a locked door.",
+                        ["name"] = "Home Trespasser",
+                    },
+                    [1207] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "Successfully pick the locks on fifty locked doors.",
+                        ["name"] = "Sneaky Housebreaker",
+                    },
+                    [1208] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Successfully pick the locks on one hundred locked doors.",
+                        ["name"] = "Master Burglar",
+                    },
+                    [1209] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "A guard repossess an article of stolen clothing that you were wearing.",
+                        ["name"] = "Disrobed Discipline",
+                    },
+                    [1210] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "A guard repossess stolen clothing from all your armor slots at the same time.",
+                        ["name"] = "Indecent Exposure",
+                    },
+                    [1211] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 5,
+                        ["description"] = "Steal an item of Fine quality.",
+                        ["name"] = "Discerning Pilferer",
+                    },
+                    [1212] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 10,
+                        ["description"] = "Steal an item of Superior quality.",
+                        ["name"] = "Discriminating Plunderer",
+                    },
+                    [1213] =
+                    {
+                        ["Category"] = "Justice",
+                        ["Category_ID"] = 3,
+                        ["points"] = 15,
+                        ["description"] = "Steal an item of Epic quality.",
+                        ["name"] = "Grand Larcenist",
+                    },
+                },
+                ["Dungeons"] =
+                {
+                    [11] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Akash gra-Mal, Chokethorn, and Canonreeve Oraneth in Elden Hollow.",
+                        ["name"] = "Elden Hollow Vanquisher",
+                    },
+                    [272] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Ancient Wamasu, the Lamia Songstress, and the Lamia Queen.",
+                        ["name"] = "Arx Corinium Vanquisher",
+                    },
+                    [1049] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Root Sunder.",
+                        ["name"] = "Root Sunder Conqueror",
+                    },
+                    [1050] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the Champions in Rulanyil's Fall.",
+                        ["name"] = "Rulanyil's Fall Conqueror",
+                    },
+                    [1051] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Crimson Cove.",
+                        ["name"] = "Crimson Cove Conqueror",
+                    },
+                    [1052] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in The Vile Manse.",
+                        ["name"] = "The Vile Manse Conqueror",
+                    },
+                    [1053] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Bad Man's Hallows.",
+                        ["name"] = "Bad Man's Hallows Conqueror",
+                    },
+                    [1054] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Bonesnap Ruins.",
+                        ["name"] = "Bonesnap Ruins Conqueror",
+                    },
+                    [1055] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Razak's Wheel.",
+                        ["name"] = "Razak's Wheel Conqueror",
+                    },
+                    [1056] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Village of the Lost.",
+                        ["name"] = "Village of the Lost Conqueror",
+                    },
+                    [545] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Maw of the Infernal, Keeper Imiril, and High Kinlord Rilis in the Banished Cells.",
+                        ["name"] = "Banished Cells Champion",
+                    },
+                    [1058] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Rulanyil's Fall.",
+                        ["name"] = "Rulanyil's Fall Vanquisher",
+                    },
+                    [1059] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Crimson Cove.",
+                        ["name"] = "Crimson Cove Vanquisher",
+                    },
+                    [1060] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in The Vile Manse.",
+                        ["name"] = "The Vile Manse Vanquisher",
+                    },
+                    [1061] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Bad Man's Hallows.",
+                        ["name"] = "Bad Man's Hallows Vanquisher",
+                    },
+                    [294] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Goblin War Chief and the Dreugh King at the Fungal Grotto.",
+                        ["name"] = "Fungal Grotto Vanquisher",
+                    },
+                    [551] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in the City of Ash.",
+                        ["name"] = "City of Ash Vanquisher",
+                    },
+                    [1064] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Village of the Lost.",
+                        ["name"] = "Village of the Lost Vanquisher",
+                    },
+                    [299] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Sanguine's Demesne.",
+                        ["name"] = "Sanguine's Demesne Vanquisher",
+                    },
+                    [300] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all six champions in Sanguine's Demesne.",
+                        ["name"] = "Sanguine's Demesne Conqueror",
+                    },
+                    [301] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Swarm Mother and the Whisperer in Spindleclutch.",
+                        ["name"] = "Spindleclutch Vanquisher",
+                    },
+                    [1070] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the Public Dungeon champions in the Daggerfall Covenant.",
+                        ["name"] = "Daggerfall Covenant Conqueror",
+                    },
+                    [1071] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Complete the listed Speed Challenges",
+                        ["name"] = "Complete All Speed Challenges",
+                    },
+                    [1072] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Complete the listed Death Challenges",
+                        ["name"] = "Complete All Death Challenges",
+                    },
+                    [1073] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Ebonheart Pact.",
+                        ["name"] = "Vanquisher of the Pact",
+                    },
+                    [1074] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Daggerfall Covenant.",
+                        ["name"] = "Vanquisher of the Covenant",
+                    },
+                    [1075] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all the bosses throughout the Group Dungeons in the Aldmeri Dominion.",
+                        ["name"] = "Vanquisher of the Dominion",
+                    },
+                    [1078] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Completed a Weekly Trial",
+                        ["name"] = "Weekly Trial Complete",
+                    },
+                    [1079] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Completed a Weekly Trial within 33 minutes.",
+                        ["name"] = "Time Trial: Weekly",
+                    },
+                    [1080] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
+                        ["name"] = "Time Trial: Hel Ra Citadel",
+                    },
+                    [1081] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Completed the Aetherian Archive within a time limit of 33 minutes.",
+                        ["name"] = "Time Trial: Aetherian Archive",
+                    },
+                    [570] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Ulguna Soul-Reaver, Grothdarr, Iskra the Omen, and the Mad Architect in the Vaults of Madness.",
+                        ["name"] = "Vaults of Madness Vanquisher",
+                    },
+                    [1084] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "In Veteran Crypt of Hearts, allow four of Nerien'eth's Students to survive until he takes the Ebony Blade before defeating them all.",
+                        ["name"] = "The Blade's Edge",
+                    },
+                    [325] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Shadowrend and High Kinlord Rilis in the Banished Cells.",
+                        ["name"] = "Vanquisher of the Banished Cells",
+                    },
+                    [78] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Foreman Llothan, the Hive Lord, and the Sentinel of Rkugamz.",
+                        ["name"] = "Darkshade Caverns Vanquisher",
+                    },
+                    [79] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Investigator Garron, Varain Pellingare and Allene Pellingare.",
+                        ["name"] = "Wayrest Sewers Vanquisher",
+                    },
+                    [80] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Archmaster Siniel, the Bone Leviathan, and the Ilambris Twins.",
+                        ["name"] = "Crypt of Hearts Vanquisher",
+                    },
+                    [81] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Valaran Stormcaller, Stormfist, and Admiral Neidir.",
+                        ["name"] = "Tempest Island Vanquisher",
+                    },
+                    [850] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 200 spiders in Veteran Fungal Grotto dungeon.",
+                        ["name"] = "Veteran Arachnid Slayer",
+                    },
+                    [851] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Obsidian Warriors in Veteran Fungal Grotto dungeon.",
+                        ["name"] = "Veteran Obsidian Slayer",
+                    },
+                    [340] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Fungal Grotto before defeating Vila Theran within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
+                        ["name"] = "Veteran Fungal Grotto Assassin",
+                    },
+                    [853] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Dremora in Veteran Banished Cells dungeon.",
+                        ["name"] = "Rilis Dremora Slayer",
+                    },
+                    [342] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Vila Theran without any member of your party using the protection of the Obsidian Husk.",
+                        ["name"] = "Fearless Assaulter",
+                    },
+                    [343] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran.",
+                        ["name"] = "Veteran Shadow Slayer",
+                    },
+                    [856] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 200 kwama in Veteran Darkshade Caverns dungeon.",
+                        ["name"] = "Veteran Kwama Slayer",
+                    },
+                    [857] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Dwarven constructs in Veteran Darkshade Caverns dungeon.",
+                        ["name"] = "Veteran Construct Slayer",
+                    },
+                    [858] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat banekin in Veteran Elden Hollow dungeon.",
+                        ["name"] = "Veteran Banekin Slayer",
+                    },
+                    [859] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat lurchers in Veteran Elden Hollow dungeon.",
+                        ["name"] = "Veteran Lurcher Slayer",
+                    },
+                    [860] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat zombies in Veteran Wayrest Sewers dungeon.",
+                        ["name"] = "Veteran Zombie Slayer",
+                    },
+                    [861] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat bone colossuses in Veteran Wayrest Sewers dungeon.",
+                        ["name"] = "Veteran Colossus Slayer",
+                    },
+                    [1123] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Serpent Celestial.",
+                        ["name"] = "Sanctum Ophidia Completed",
+                    },
+                    [1124] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
+                        ["name"] = "Time Trial: Sanctum Ophidia",
+                    },
+                    [357] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Guardian of the Flame, the Empowered Frost Atronach, and Drodda of Icereach at Direfrost Keep.",
+                        ["name"] = "Direfrost Keep Vanquisher",
+                    },
+                    [870] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 5,
+                        ["description"] = "",
+                        ["name"] = "Hel Ra Citadel: The War Horn",
+                    },
+                    [874] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Zatalguch in the Village of the Lost.",
+                        ["name"] = "Lost Village Group Challenge",
+                    },
+                    [876] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth in Veteran Crypt of Hearts.",
+                        ["name"] = "Crypt of Hearts Conqueror",
+                    },
+                    [878] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 15,
+                        ["description"] = "Complete Veteran City of Ash by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
+                        ["name"] = "Veteran City of Ash",
+                    },
+                    [367] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Crow's Wood.",
+                        ["name"] = "Crow's Wood Vanquisher",
+                    },
+                    [368] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of Crow's Wood's champions.",
+                        ["name"] = "Crow's Wood Conqueror",
+                    },
+                    [369] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in the Forgotten Crypts.",
+                        ["name"] = "Forgotten Crypts Vanquisher",
+                    },
+                    [370] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in the Forgotten Crypts.",
+                        ["name"] = "Forgotten Crypts Conqueror",
+                    },
+                    [371] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat  the Lonely Giant and his angry mammoths in the Lion's Den.",
+                        ["name"] = "Lion's Den Group Event",
+                    },
+                    [372] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Fight-Master Grel and his adepts at Sanguine's Demesne.",
+                        ["name"] = "Sanguine's Group Event",
+                    },
+                    [373] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in the Lion's Den.",
+                        ["name"] = "Lion's Den Vanquisher",
+                    },
+                    [374] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in the Lion's Den.",
+                        ["name"] = "Lion's Den Conqueror",
+                    },
+                    [375] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in the Hall of the Dead.",
+                        ["name"] = "Hall of the Dead Vanquisher",
+                    },
+                    [376] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in the Hall of the Dead.",
+                        ["name"] = "Hall of the Dead Conqueror",
+                    },
+                    [377] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Obsidian Scar.",
+                        ["name"] = "Obsidian Scar Vanquisher",
+                    },
+                    [378] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Obsidian Scar.",
+                        ["name"] = "Obsidian Scar Conqueror",
+                    },
+                    [379] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Destroy the Soul Wraiths to summon and slay Ghyslain in Crow's Wood.",
+                        ["name"] = "Crow's Wood Group Event",
+                    },
+                    [380] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Slay the Giant Snake Mother in Bad Man's Hallows.",
+                        ["name"] = "Bad Man's Group Event",
+                    },
+                    [381] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Reynir the Destroyer and his minions in the Hall of the Dead.",
+                        ["name"] = "Hall of the Dead Group Event",
+                    },
+                    [1150] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 5,
+                        ["description"] = "Complete one Undaunted Pledge.",
+                        ["name"] = "Pledge Taker",
+                    },
+                    [1151] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Complete 10 Undaunted Pledges.",
+                        ["name"] = "Returned Undaunted",
+                    },
+                    [1152] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 15,
+                        ["description"] = "Complete 50 Undaunted Pledges.",
+                        ["name"] = "Undaunted, Daily",
+                    },
+                    [1153] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Complete 100 Undaunted Pledges.",
+                        ["name"] = "Maj's Cohort",
+                    },
+                    [1154] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 5,
+                        ["description"] = "Complete one Veteran Undaunted Pledge.",
+                        ["name"] = "Prove Them Wrong",
+                    },
+                    [1155] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Complete 10 Veteran Undaunted Pledges.",
+                        ["name"] = "You Still Draw Breath",
+                    },
+                    [388] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Eradicate the Kwama infestation and kill the Kwama Guardians in the Forgotten Crypts.",
+                        ["name"] = "Forgotten Crypts Group Event",
+                    },
+                    [389] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Toothmaul Gully.",
+                        ["name"] = "Toothmaul Gully Vanquisher",
+                    },
+                    [390] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in Toothmaul Gully.",
+                        ["name"] = "Toothmaul Gully Conqueror",
+                    },
+                    [391] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Quintus Verres, Tremorscale, and the Guardian's Constructs at Volenfell.",
+                        ["name"] = "Volenfell Vanquisher",
+                    },
+                    [393] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Pack, the Beast Master, and the Lava Queen at the Blessed Crucible.",
+                        ["name"] = "Blessed Crucible Vanquisher",
+                    },
+                    [395] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in the Lost City of the Na-Totambu.",
+                        ["name"] = "Lost City Vanquisher",
+                    },
+                    [396] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the champions in the Lost City of the Na-Totambu.",
+                        ["name"] = "Lost City Conqueror",
+                    },
+                    [410] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Atarus, the Roost Mother, and Captain Blackheart in Blackheart Haven.",
+                        ["name"] = "Blackheart Haven Vanquisher",
+                    },
+                    [417] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Longclaw, Foulhide, and Selene in Selene's Web.",
+                        ["name"] = "Selene's Web Vanquisher",
+                    },
+                    [421] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Blood Golem, Praxin's Ghost, and Vorenor Winterbourne in Spindleclutch.",
+                        ["name"] = "Spindleclutch Vanquisher",
+                    },
+                    [678] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in the Wayrest Sewers.",
+                        ["name"] = "Wayrest Sewers Vanquisher",
+                    },
+                    [679] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Wayrest Sewers before defeating Allene and Varaine Pellingare within twenty minutes of starting the dungeon. Timer starts when players engage the first necromancer and his minions.",
+                        ["name"] = "Veteran Wayrest Sewers Assassin",
+                    },
+                    [681] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers.",
+                        ["name"] = "Pellingare Ghoul Slayer",
+                    },
+                    [939] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 250 Spiderkith in the Veteran Crypt of Hearts dungeon.",
+                        ["name"] = "Veteran Spiderkith Slayer",
+                    },
+                    [940] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 50 Flesh Atronachs in the Veteran Crypt of Hearts dungeon.",
+                        ["name"] = "Veteran Flesh Atronach Slayer",
+                    },
+                    [941] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Ibelgast, the Chamber Guardian, Mezeluth, Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth within thirty minutes of starting Veteran Crypt of Hearts. The timer starts when the gate opens.",
+                        ["name"] = "Veteran Crypt of Hearts Assassin",
+                    },
+                    [942] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Crypt of Hearts before defeating Nerien'eth without suffering a group member death.",
+                        ["name"] = "Deadly Crypt Survivor",
+                    },
+                    [691] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Kill 100 named enemies in dungeons.",
+                        ["name"] = "Dungeon Ruler",
+                    },
+                    [445] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the undead hordes of Hergor the Fallen at Rulanyil's Fall.",
+                        ["name"] = "Rulanyil's Fall Group Event",
+                    },
+                    [446] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Spindleclutch before defeating Vorenor Winterbourne within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
+                        ["name"] = "Veteran Spindleclutch Assassin",
+                    },
+                    [448] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Vorenor Winterbourne without killing any of the innocent victims held captive in his lair.",
+                        ["name"] = "Compassionate Hero",
+                    },
+                    [449] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Banished Cells before defeating High Kinlord Rilis within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Banished skeletons.",
+                        ["name"] = "Veteran Banished Cells Assassin",
+                    },
+                    [451] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat High Kinlord Rilis while three or more Daedroth still live.",
+                        ["name"] = "Cursed Hero",
+                    },
+                    [708] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the flesh atronach at Razak's Wheel.",
+                        ["name"] = "Razak's Wheel Group Event",
+                    },
+                    [709] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat 1000 named enemies in Dungeons.",
+                        ["name"] = "Dungeon Lord",
+                    },
+                    [710] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 1000 enemies in Dungeons.",
+                        ["name"] = "Dungeon Marauder",
+                    },
+                    [711] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat 10,000 enemies in Dungeons.",
+                        ["name"] = "Dungeon Annihilator",
+                    },
+                    [713] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the Orc, Zilbash the Deceiver, at Obsidian Scar.",
+                        ["name"] = "Obsidian Scar Group Event",
+                    },
+                    [714] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the Eternal One in the Bonesnap Ruins.",
+                        ["name"] = "Bonesnap Ruins Group Event",
+                    },
+                    [459] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Elden Hollow.",
+                        ["name"] = "Elden Hollow Conqueror",
+                    },
+                    [460] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Flat Tooth and his minions at Crimson Cove.",
+                        ["name"] = "Crimson Cove Group Event",
+                    },
+                    [461] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Elden Hollow before defeating Bogdan the Nightflame within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
+                        ["name"] = "Veteran Elden Hollow Assassin",
+                    },
+                    [463] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment.",
+                        ["name"] = "Closing the Book",
+                    },
+                    [464] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat the Transmuted Hive Lord, Grobull the Transmuted, and the Engine Guardian in Darkshade Caverns.",
+                        ["name"] = "Darkshade Caverns Vanquisher",
+                    },
+                    [465] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Darkshade before defeating the Engine Guardian within twenty minutes of starting the dungeon. Timer starts when players engage the first group of kwama.",
+                        ["name"] = "Veteran Darkshade Assassin",
+                    },
+                    [467] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the Engine Guardian without anyone in your group activating an Engine Lever.",
+                        ["name"] = "Deadly Engineer",
+                    },
+                    [468] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Destroy Bloodroot and its guardians at Toothmaul Gully.",
+                        ["name"] = "Toothmaul Gully Group Event",
+                    },
+                    [469] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the damned creations of Graccus' frost experiments at the Vile Manse.",
+                        ["name"] = "Vile Manse Group Event",
+                    },
+                    [470] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat the Bonemonger and its captors in Root Sunder Ruins.",
+                        ["name"] = "Root Sunder Group Event",
+                    },
+                    [855] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat flesh atronachs in Veteran Spindleclutch dungeon.",
+                        ["name"] = "Veteran Flesh Atronach Conqueror",
+                    },
+                    [707] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Solve the puzzle of the Guardians in the Lost City of the Na-Totambu.",
+                        ["name"] = "Na-Totambu Group Event",
+                    },
+                    [990] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Mage Celestial, freeing her from the Serpent's control.",
+                        ["name"] = "Aetherian Archive Completed",
+                    },
+                    [991] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Warrior Celestial, freeing him from the Serpent's control.",
+                        ["name"] = "Hel Ra Citadel Completed",
+                    },
+                    [854] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat Vampire Thralls in Veteran Spindleclutch dungeon.",
+                        ["name"] = "Veteran Thrall Slayer",
+                    },
+                    [1063] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Razak's Wheel.",
+                        ["name"] = "Razak's Wheel Vanquisher",
+                    },
+                    [1062] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Bonesnap Ruins.",
+                        ["name"] = "Bonesnap Ruins Vanquisher",
+                    },
+                    [1068] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the Public Dungeon champions in the Ebonheart Pact.",
+                        ["name"] = "Ebonheart Pact Conqueror",
+                    },
+                    [1069] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all of the Public Dungeon champions in the Aldmeri Dominion.",
+                        ["name"] = "Aldmeri Dominion Conqueror",
+                    },
+                    [1057] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat three of the champions in Root Sunder.",
+                        ["name"] = "Root Sunder Vanquisher",
+                    },
+                    [1082] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Rescue all of the members of the failed Undaunted expedition to the Deadlands of Mehrunes Dagon.",
+                        ["name"] = "Undaunted Rescuer",
+                    },
+                    [852] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Kill skeletons in Veteran Banished Cells dungeon.",
+                        ["name"] = "Veteran Bonebreaker",
+                    },
+                    [1105] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 300 Dremora in the Veteran City of Ash dungeon.",
+                        ["name"] = "Mehrunes Dremora Slayer",
+                    },
+                    [1106] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Defeat 50 Flame Colossi in the Veteran City of Ash dungeon.",
+                        ["name"] = "Veteran Flame Colossus Slayer",
+                    },
+                    [1107] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria without suffering a group member death.",
+                        ["name"] = "Deadly Deadlands Survivor",
+                    },
+                    [1111] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 5,
+                        ["description"] = "Explore the culinary traditions of the Dremora.",
+                        ["name"] = "Easy as Pie",
+                    },
+                    [1108] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria within thirty minutes of starting the dungeon. Timer starts when players enter the Inner Grove.",
+                        ["name"] = "Veteran City of Ash Assassin",
+                    },
+                    [749] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Deal 1,000,000 points of damage in Dungeons.",
+                        ["name"] = "Dungeon Damage Dealer",
+                    },
+                    [750] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Deal 10,000,000 points of damage in Dungeons.",
+                        ["name"] = "Dungeon Damage Dispenser",
+                    },
+                    [751] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Heal 1,000,000 points of damage to allies in Dungeons.",
+                        ["name"] = "Dungeon Healer",
+                    },
+                    [752] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Heal 10,000,000 points of damage to allies in Dungeons.",
+                        ["name"] = "Greater Dungeon Healer",
+                    },
+                    [753] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Block 1,000,000 points of damage in Dungeons.",
+                        ["name"] = "Dungeon Blocker",
+                    },
+                    [754] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Block 10,000,000 points of damage in Dungeons.",
+                        ["name"] = "Greater Dungeon Blocker",
+                    },
+                    [1113] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 5,
+                        ["description"] = "",
+                        ["name"] = "Sanctum Ophidia: Feeding Pit",
+                    },
+                    [1114] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "In Veteran City of Ash, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
+                        ["name"] = "A World On Fire",
+                    },
+                    [1115] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Deal 1,000,000 points of damage in Trials.",
+                        ["name"] = "Trials Damage Dealer",
+                    },
+                    [1116] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Heal 1,000,000 points of damage to allies in Trials.",
+                        ["name"] = "Trials Healer",
+                    },
+                    [1117] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Block 1,000,000 points of damage in Trials.",
+                        ["name"] = "Trials Blocker",
+                    },
+                    [1136] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Celestial Warrior after enraging him through the destruction of his statue army.",
+                        ["name"] = "Hel Ra Citadel Difficult Mode",
+                    },
+                    [1137] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
+                        ["name"] = "Aetherian Archive Difficult Mode",
+                    },
+                    [1138] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You defeated the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
+                        ["name"] = "Sanctum Ophidia Difficult Mode",
+                    },
+                    [1139] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "You have completed Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
+                        ["name"] = "Craglorn Trials Conqueror",
+                    },
+                    [1156] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 15,
+                        ["description"] = "Complete 50 Veteran Undaunted Pledges.",
+                        ["name"] = "Death Has Not Claimed You",
+                    },
+                    [1157] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Complete 100 Veteran Undaunted Pledges",
+                        ["name"] = "Glirion's Cohort",
+                    },
+                    [1158] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 10,
+                        ["description"] = "Reach level 45, attracting the attention of the Undaunted elite.",
+                        ["name"] = "Call of the Undaunted",
+                    },
+                    [1159] =
+                    {
+                        ["Category"] = "Dungeons",
+                        ["Category_ID"] = 7,
+                        ["points"] = 50,
+                        ["description"] = "Complete all the achievements associated with the Veteran City of Ash Dungeon.",
+                        ["name"] = "Deadlands Savvy",
+                    },
+                },
+                ["Skyshards"] =
+                {
+                    [515] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Stormhaven.",
+                        ["name"] = "Stormhaven Skyshard Hunter",
+                    },
+                    [684] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Malabal Tor.",
+                        ["name"] = "Malabal Tor Skyshard Hunter",
+                    },
+                    [685] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Reaper's March.",
+                        ["name"] = "Reaper's March Skyshard Hunter",
+                    },
+                    [748] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find the Skyshard on top of the mountain in Cyrodiil.",
+                        ["name"] = "Mountain Skyshard Hunter",
+                    },
+                    [397] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Stonefalls.",
+                        ["name"] = "Stonefalls Skyshard Hunter",
+                    },
+                    [431] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find all 6 Skyshards in Khenarthi's Roost.",
+                        ["name"] = "Khenarthi's Skyshard Hunter",
+                    },
+                    [554] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Rivenspire.",
+                        ["name"] = "Rivenspire Skyshard Hunter",
+                    },
+                    [683] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Greenshade.",
+                        ["name"] = "Greenshade Skyshard Hunter",
+                    },
+                    [556] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Skyshard Hunter",
+                    },
+                    [557] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Bangkorai.",
+                        ["name"] = "Bangkorai Skyshard Hunter",
+                    },
+                    [398] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find all 3 Skyshards in Bleakrock.",
+                        ["name"] = "Bleakrock Skyshard Hunter",
+                    },
+                    [687] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Shadowfen.",
+                        ["name"] = "Shadowfen Skyshard Hunter",
+                    },
+                    [688] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Eastmarch.",
+                        ["name"] = "Eastmarch Skyshard Hunter",
+                    },
+                    [689] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in the Rift.",
+                        ["name"] = "The Rift Skyshard Hunter",
+                    },
+                    [686] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Coldharbour.",
+                        ["name"] = "Coldharbour Skyshard Hunter",
+                    },
+                    [407] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find all 3 Skyshards in Stros M'Kai.",
+                        ["name"] = "Stros M'Kai Skyshard Hunter",
+                    },
+                    [692] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 15 Skyshards in the Ebonheart Pact territory of Cyrodiil.",
+                        ["name"] = "Cyrodiil Pact Skyshard Hunter",
+                    },
+                    [405] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find all 3 Skyshards in Bal Foyen.",
+                        ["name"] = "Bal Foyen Skyshard Hunter",
+                    },
+                    [694] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 15 Skyshards in the Aldmeri Dominion territory of Cyrodiil.",
+                        ["name"] = "Cyrodiil Aldmeri Skyshard Hunter",
+                    },
+                    [695] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Auridon.",
+                        ["name"] = "Auridon Skyshard Hunter",
+                    },
+                    [408] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 5,
+                        ["description"] = "Find all 3 Skyshards in Betnikh.",
+                        ["name"] = "Betnikh Skyshard Hunter",
+                    },
+                    [409] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Glenumbra.",
+                        ["name"] = "Glenumbra Skyshard Hunter",
+                    },
+                    [693] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 15 Skyshards in the Daggerfall Covenant territory of Cyrodiil.",
+                        ["name"] = "Cyrodiil Covenant Skyshards",
+                    },
+                    [727] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 12 Skyshards in Lower Craglorn.",
+                        ["name"] = "Lower Craglorn Skyshards",
+                    },
+                    [912] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all six Skyshards in Upper Craglorn.",
+                        ["name"] = "Upper Craglorn Skyshards",
+                    },
+                    [989] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 50,
+                        ["description"] = "Find all the Skyshards located throughout Tamriel.",
+                        ["name"] = "Tamriel Skyshard Hunter",
+                    },
+                    [682] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Grahtwood.",
+                        ["name"] = "Grahtwood Skyshard Hunter",
+                    },
+                    [547] =
+                    {
+                        ["Category"] = "Skyshards",
+                        ["Category_ID"] = 9,
+                        ["points"] = 15,
+                        ["description"] = "Find all 16 Skyshards in Deshaan.",
+                        ["name"] = "Deshaan Skyshard Hunter",
+                    },
+                },
+                ["A Good Keen Reptile"] =
+                {
+                },
+                ["Quests"] =
+                {
+                    [512] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Cleanse the corruption from Valenwood.",
+                        ["name"] = "Valenwood Protector",
+                    },
+                    [516] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Uwafa and reclaim the Ansei Ward.",
+                        ["name"] = "Uwafa's Ruination",
+                    },
+                    [517] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Alasan and restore the Ansei Ward.",
+                        ["name"] = "Alasan's Devastation",
+                    },
+                    [518] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Withered Hand and reclaim all the Ansei Wards.",
+                        ["name"] = "Ash'abah Hero",
+                    },
+                    [905] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Defeat Shada and cleanse the waters of Shada's Tear.",
+                        ["name"] = "Shada's Tear Curse-Breaker",
+                    },
+                    [778] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Unravel the mysteries of Rahni'Za, School of Warriors.",
+                        ["name"] = "Champion of Rahni'Za",
+                    },
+                    [907] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Prevent a catastrophic explosion of magic from within the Spellscar.",
+                        ["name"] = "Spellscar Defender",
+                    },
+                    [524] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Gather all of the Lights of Meridia within Coldharbour.",
+                        ["name"] = "Meridia's Lightbearer",
+                    },
+                    [525] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Stop the Maormer from summoning a hurricane to destroy Khenarthi's Roost.",
+                        ["name"] = "Maormer's Bane",
+                    },
+                    [511] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "End the Veiled Heritance threat in Greenshade.",
+                        ["name"] = "Veil Lifter",
+                    },
+                    [908] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Defeat Yamanu-ko and end the strife in Elinhir.",
+                        ["name"] = "Exalted of Elinhir",
+                    },
+                    [145] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Stop the Reachmen from attacking Evermore.",
+                        ["name"] = "Evermore Defender",
+                    },
+                    [146] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Liberate the Bangkorai Garrison from the invaders.",
+                        ["name"] = "Bangkorai Garrison Liberator",
+                    },
+                    [147] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Rescue High King Emeric from the clutches of Septima Tharn.",
+                        ["name"] = "High King Emeric's Savior",
+                    },
+                    [906] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Uncover the secrets hidden within the Seeker's Archive.",
+                        ["name"] = "Tenacious Seeker",
+                    },
+                    [154] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Omen of the Watchful Eye and lift the paranoia in Alcaire.",
+                        ["name"] = "Dreamslayer",
+                    },
+                    [28] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Faolchu the Changeling and set the city of Camlorn free.",
+                        ["name"] = "Faolchu's Bane",
+                    },
+                    [759] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete all quests in Cheydinhal.",
+                        ["name"] = "Cheydinhal Adventurer",
+                    },
+                    [536] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Restore the Clanmother to power in Arenthia.",
+                        ["name"] = "Clanmother Inaugurator",
+                    },
+                    [537] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Shackle the Dark Mane to his prison beneath Moonmont.",
+                        ["name"] = "Dark Mane Incarcerator",
+                    },
+                    [538] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Walk the Two Moons Path with the next Mane.",
+                        ["name"] = "Two Moons Pathwalker",
+                    },
+                    [283] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Uncover the Hound's Plan to lure the Green Lady to Silvenar.",
+                        ["name"] = "Hound Hinderer",
+                    },
+                    [284] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Save the Silvenar from his captors.",
+                        ["name"] = "Silvenar's Friend",
+                    },
+                    [285] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Unite the Silvenar with the Green Lady.",
+                        ["name"] = "Hero of Frond and Leaf",
+                    },
+                    [30] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Help the Wyresses remove Angof's corruption from their sacred groves and the Wyrd Tree.",
+                        ["name"] = "Wyrd Friend",
+                    },
+                    [31] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Stop Angof the Gravesinger's necromantic plan to conquer Glenumbra.",
+                        ["name"] = "Savior of Glenumbra",
+                    },
+                    [952] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You defeated the Worm Cult in the Rift.",
+                        ["name"] = "Shattered Remnants",
+                    },
+                    [760] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete all quests in Chorrol and Weynon Priory.",
+                        ["name"] = "Chorrol Weynon Priory Adventurer",
+                    },
+                    [34] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 53 quests in Glenumbra.",
+                        ["name"] = "Glenumbra Adventurer",
+                    },
+                    [1015] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Defeat Virmaril the Betrayer and his undead legions within Skyreach Catacombs.",
+                        ["name"] = "Vanquisher of Virmaril",
+                    },
+                    [758] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete all quests in Bruma.",
+                        ["name"] = "Bruma Adventurer",
+                    },
+                    [54] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Complete 500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+                        ["name"] = "Adventurer",
+                    },
+                    [949] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You averted the destruction of Deshaan.",
+                        ["name"] = "Plague Eater",
+                    },
+                    [185] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Protect the Argonian eggs so a new generation can be born.",
+                        ["name"] = "Egg Protector",
+                    },
+                    [936] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Dismantle the Serpent's forces and vanquish the Exalted Viper.",
+                        ["name"] = "Serpents and Secrets",
+                    },
+                    [954] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You ended the nightmares in Stormhaven.",
+                        ["name"] = "Rude Awakening",
+                    },
+                    [957] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You defied the will of Molag Bal in Coldharbour.",
+                        ["name"] = "Radiant Champion",
+                    },
+                    [362] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Daedric army and their leader at Firsthold.",
+                        ["name"] = "Sunder the Third Veil",
+                    },
+                    [361] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Infiltrate the Veiled Heritance and discover its secret.",
+                        ["name"] = "Sunder the Second Veil",
+                    },
+                    [360] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Execute the traitor at Tanzelwil in the name of Queen Ayrenn.",
+                        ["name"] = "Sunder the First Veil",
+                    },
+                    [209] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Destroy Sadal and save Stonefalls.",
+                        ["name"] = "Sadal's Overthrower",
+                    },
+                    [943] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You defeated a hidden threat to the Dominion in Auridon.",
+                        ["name"] = "A Rule Unquestioned",
+                    },
+                    [944] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You thwarted perilous Daedric schemes in Grahtwood.",
+                        ["name"] = "Iconoclast",
+                    },
+                    [945] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You drove corruption from the heart of Valenwood in Greenshade.",
+                        ["name"] = "Spirit of the Bosmer",
+                    },
+                    [946] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You restored the Silvenar and the Green Lady to their rightful place in Malabal Tor.",
+                        ["name"] = "Matchmaker",
+                    },
+                    [947] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You walked the Two Moons Path in Reaper's March.",
+                        ["name"] = "Hallowed Moons",
+                    },
+                    [948] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You imprisoned the Brothers of Strife in Stonefalls.",
+                        ["name"] = "Hearts of Darkness",
+                    },
+                    [53] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete 100 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+                        ["name"] = "Explorer",
+                    },
+                    [950] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You defeated a great threat to the Hist in Shadowfen.",
+                        ["name"] = "Egg and Root",
+                    },
+                    [951] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You prevented a great threat to the Skald-King in Eastmarch.",
+                        ["name"] = "Blood Feud",
+                    },
+                    [56] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Complete 1500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+                        ["name"] = "Indomitable Adventurer",
+                    },
+                    [953] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You stopped an insidious cultist plot in Glenumbra.",
+                        ["name"] = "Ritual Destruction",
+                    },
+                    [186] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Recover the Mnemic Egg from the Dominion.",
+                        ["name"] = "Mnemic Egg Guardian",
+                    },
+                    [59] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 42 quests in Alik'r Desert.",
+                        ["name"] = "Alik'r Desert Adventurer",
+                    },
+                    [60] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 36 quests in Bangkorai.",
+                        ["name"] = "Bangkorai Adventurer",
+                    },
+                    [61] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete all Daggerfall Covenant achievements.",
+                        ["name"] = "Hero of the Daggerfall Covenant",
+                    },
+                    [958] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You drove Imperial forces out of Bangkorai.",
+                        ["name"] = "End of Empire",
+                    },
+                    [335] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Crush the Reach's presence in the Rift.",
+                        ["name"] = "Reach Crusher",
+                    },
+                    [363] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Kill Merdyndril the Alchemist at Obsidian Gorge and put an end to the Llodos plague.",
+                        ["name"] = "Plague Ender",
+                    },
+                    [618] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete all Aldmeri Dominion quest achievements.",
+                        ["name"] = "Hero of the Aldmeri Dominion",
                     },
-                    [691] =
+                    [194] =
                     {
-                        ["name"] = "Dungeon Ruler",
-                        ["description"] = "Kill 100 named enemies in dungeons.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Find Bleakrock's missing villagers and send them home.",
+                        ["name"] = "Hero of Bleakrock",
                     },
-                    [445] =
+                    [617] =
                     {
-                        ["name"] = "Rulanyil's Fall Group Event",
-                        ["description"] = "Defeat the undead hordes of Hergor the Fallen at Rulanyil's Fall.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete all Ebonheart Pact achievements.",
+                        ["name"] = "Hero of the Ebonheart Pact",
                     },
-                    [446] =
+                    [616] =
                     {
-                        ["name"] = "Veteran Spindleclutch Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Spindleclutch before defeating Vorenor Winterbourne within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 29 quests in Coldharbour.",
+                        ["name"] = "Coldharbour Adventurer",
                     },
-                    [448] =
+                    [337] =
                     {
-                        ["name"] = "Compassionate Hero",
-                        ["description"] = "Defeat Vorenor Winterbourne without killing any of the innocent victims held captive in his lair.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Return Sinmur to his grave.",
+                        ["name"] = "Ysgramor's Prodigy",
                     },
-                    [449] =
+                    [614] =
                     {
-                        ["name"] = "Veteran Banished Cells Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Banished Cells before defeating High Kinlord Rilis within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Banished skeletons.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Stop the Planemeld and defeat Molag Bal's plan of conquest at the Endless Stair.",
+                        ["name"] = "Planemeld Sunderer",
                     },
-                    [451] =
+                    [613] =
                     {
-                        ["name"] = "Cursed Hero",
-                        ["description"] = "Defeat High Kinlord Rilis while three or more Daedroth still live.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Rescue the Great Mage, Vanus Galerion, and help him destroy Molag Bal's Great Shackle,",
+                        ["name"] = "Guardian of the Great Mage",
                     },
-                    [708] =
+                    [612] =
                     {
-                        ["name"] = "Razak's Wheel Group Event",
-                        ["description"] = "Defeat the flesh atronach at Razak's Wheel.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Rescue the last Ayleid King, Laloriaran Dynar, from the Lightless Oubliette.",
+                        ["name"] = "Light of the Ayleid King",
                     },
-                    [709] =
+                    [201] =
                     {
-                        ["name"] = "Dungeon Lord",
-                        ["description"] = "Defeat 1000 named enemies in Dungeons.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Destroy Balreth and return the Brother of Strife to slumber.",
+                        ["name"] = "Balreth's Bane",
                     },
-                    [710] =
+                    [611] =
                     {
-                        ["name"] = "Dungeon Marauder",
-                        ["description"] = "Defeat 1000 enemies in Dungeons.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 40 quests in Malabal Tor.",
+                        ["name"] = "Malabal Tor Adventurer",
                     },
-                    [711] =
+                    [610] =
                     {
-                        ["name"] = "Dungeon Annihilator",
-                        ["description"] = "Defeat 10,000 enemies in Dungeons.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 40 quests in Greenshade.",
+                        ["name"] = "Greenshade Adventurer",
                     },
-                    [713] =
+                    [204] =
                     {
-                        ["name"] = "Obsidian Scar Group Event",
-                        ["description"] = "Defeat the Orc, Zilbash the Deceiver, at Obsidian Scar.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Slay General Serien and stop the Covenant invasion of Stonefalls.",
+                        ["name"] = "General Serien's Demise",
                     },
-                    [714] =
+                    [589] =
                     {
-                        ["name"] = "Bonesnap Ruins Group Event",
-                        ["description"] = "Defeat the Eternal One in the Bonesnap Ruins.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Kill Reezal-Jul at Camp Tamrith and save the Crestshade refugees.",
+                        ["name"] = "Hero of House Tamrith",
                     },
-                    [459] =
+                    [590] =
                     {
-                        ["name"] = "Elden Hollow Conqueror",
-                        ["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Elden Hollow.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Kill Lady Lleraya Montclair at Northpoint and set Baron Dorell's city free.",
+                        ["name"] = "Hero of House Dorell",
                     },
-                    [460] =
+                    [591] =
                     {
-                        ["name"] = "Crimson Cove Group Event",
-                        ["description"] = "Defeat Flat Tooth and his minions at Crimson Cove.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Kill Baron Wylon Montclair and destroy the Lightless Remnant at the Doomcrag to save Rivenspire.",
+                        ["name"] = "Sword of Ravenwatch",
                     },
-                    [461] =
+                    [336] =
                     {
-                        ["name"] = "Veteran Elden Hollow Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Elden Hollow before defeating Bogdan the Nightflame within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Thallik Wormfather and scatter the Worm Cult.",
+                        ["name"] = "Wormsquasher",
                     },
-                    [463] =
+                    [593] =
                     {
-                        ["name"] = "Closing the Book",
-                        ["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 59 quests in Stonefalls.",
+                        ["name"] = "Stonefalls Adventurer",
                     },
-                    [464] =
+                    [600] =
                     {
-                        ["name"] = "Darkshade Caverns Vanquisher",
-                        ["description"] = "Defeat the Transmuted Hive Lord, Grobull the Transmuted, and the Engine Guardian in Darkshade Caverns.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 43 quests in Eastmarch.",
+                        ["name"] = "Eastmarch Adventurer",
                     },
-                    [465] =
+                    [595] =
                     {
-                        ["name"] = "Veteran Darkshade Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran Darkshade before defeating the Engine Guardian within twenty minutes of starting the dungeon. Timer starts when players engage the first group of kwama.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 55 quests in Deshaan.",
+                        ["name"] = "Deshaan Adventurer",
                     },
-                    [467] =
+                    [596] =
                     {
-                        ["name"] = "Deadly Engineer",
-                        ["description"] = "Defeat the Engine Guardian without anyone in your group activating an Engine Lever.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 51 quests in Shadowfen.",
+                        ["name"] = "Shadowfen Adventurer",
                     },
-                    [468] =
+                    [597] =
                     {
-                        ["name"] = "Toothmaul Gully Group Event",
-                        ["description"] = "Destroy Bloodroot and its guardians at Toothmaul Gully.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Kill Lob the Cleaver and befriend the Giants at the Cradlecrush Arena.",
+                        ["name"] = "Giant-Friend",
                     },
-                    [469] =
+                    [598] =
                     {
-                        ["name"] = "Vile Manse Group Event",
-                        ["description"] = "Defeat the damned creations of Graccus' frost experiments at the Vile Manse.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Save Jorunn the Skald-King at Mistwatch Tower.",
+                        ["name"] = "Skald-King's Salvation",
                     },
-                    [470] =
+                    [599] =
                     {
-                        ["name"] = "Root Sunder Group Event",
-                        ["description"] = "Defeat the Bonemonger and its captors in Root Sunder Ruins.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat Fildgor Orcthane at Skuldafn and earn the title of Arrow of Jorunn the Skald-King.",
+                        ["name"] = "Skald-King's Arrow",
                     },
-                    [855] =
+                    [1112] =
                     {
-                        ["name"] = "Veteran Flesh Atronach Conqueror",
-                        ["description"] = "Defeat flesh atronachs in Veteran Spindleclutch dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Complete the Gray Passage pilgrimage within the alloted time limit.",
+                        ["name"] = "Craglorn Pilgrim",
                     },
-                    [707] =
+                    [156] =
                     {
-                        ["name"] = "Na-Totambu Group Event",
-                        ["description"] = "Solve the puzzle of the Guardians in the Lost City of the Na-Totambu.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Defeat the Omen of Counting Stars and end the obsessions plaguing Gavaudon.",
+                        ["name"] = "Azura's Ally",
                     },
-                    [990] =
+                    [602] =
                     {
-                        ["name"] = "Aetherian Archive Completed",
-                        ["description"] = "You defeated the Mage Celestial, freeing her from the Serpent's control.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 45 quests in Reaper's March.",
+                        ["name"] = "Reaper's March Adventurer",
                     },
-                    [991] =
+                    [603] =
                     {
-                        ["name"] = "Hel Ra Citadel Completed",
-                        ["description"] = "You defeated the Warrior Celestial, freeing him from the Serpent's control.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 61 quests in the Rift.",
+                        ["name"] = "The Rift Adventurer",
                     },
-                    [854] =
+                    [604] =
                     {
-                        ["name"] = "Veteran Thrall Slayer",
-                        ["description"] = "Defeat Vampire Thralls in Veteran Spindleclutch dungeon.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 37 quests in Auridon.",
+                        ["name"] = "Auridon Adventurer",
                     },
-                    [1063] =
+                    [605] =
                     {
-                        ["name"] = "Razak's Wheel Vanquisher",
-                        ["description"] = "Defeat three of the champions in Razak's Wheel.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Free Southpoint from the influence of the Daedric Prince, Sheogorath.",
+                        ["name"] = "Southpoint Savior",
                     },
-                    [1062] =
+                    [606] =
                     {
-                        ["name"] = "Bonesnap Ruins Vanquisher",
-                        ["description"] = "Defeat three of the champions in Bonesnap Ruins.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Retrieve the Heart of Anumaril from the Reliquary of Stars.",
+                        ["name"] = "Reliquary Retriever",
                     },
-                    [1068] =
+                    [607] =
                     {
-                        ["name"] = "Ebonheart Pact Conqueror",
-                        ["description"] = "Defeat all of the Public Dungeon champions in the Ebonheart Pact.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Free Nairume from her prison and retrieved Rajhin's Mantle.",
+                        ["name"] = "Hero of Falinesti",
                     },
-                    [1069] =
+                    [608] =
                     {
-                        ["name"] = "Aldmeri Dominion Conqueror",
-                        ["description"] = "Defeat all of the Public Dungeon champions in the Aldmeri Dominion.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 38 quests in Grahtwood.",
+                        ["name"] = "Grahtwood Adventurer",
                     },
-                    [1057] =
+                    [993] =
                     {
-                        ["name"] = "Root Sunder Vanquisher",
-                        ["description"] = "Defeat three of the champions in Root Sunder.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 1",
+                        ["name"] = "Soul Shriven in Coldharbour",
                     },
-                    [1082] =
+                    [994] =
                     {
-                        ["name"] = "Undaunted Rescuer",
-                        ["description"] = "Rescue all of the members of the failed Undaunted expedition to the Deadlands of Mehrunes Dagon.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 1.5",
+                        ["name"] = "The Harborage",
                     },
-                    [852] =
+                    [995] =
                     {
-                        ["name"] = "Veteran Bonebreaker",
-                        ["description"] = "Kill skeletons in Veteran Banished Cells dungeon.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 2",
+                        ["name"] = "Daughter of Giants",
                     },
-                    [1105] =
+                    [996] =
                     {
-                        ["name"] = "Mehrunes Dremora Slayer",
-                        ["description"] = "Defeat 300 Dremora in the Veteran City of Ash dungeon.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 2.5",
+                        ["name"] = "Chasing Shadows",
                     },
-                    [1106] =
+                    [997] =
                     {
-                        ["name"] = "Veteran Flame Colossus Slayer",
-                        ["description"] = "Defeat 50 Flame Colossi in the Veteran City of Ash dungeon.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 3",
+                        ["name"] = "Castle of the Worm",
                     },
-                    [1107] =
+                    [998] =
                     {
-                        ["name"] = "Deadly Deadlands Survivor",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria without suffering a group member death.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 3.5",
+                        ["name"] = "The Tharn Speaks",
                     },
-                    [1111] =
+                    [999] =
                     {
-                        ["name"] = "Easy as Pie",
-                        ["description"] = "Explore the culinary traditions of the Dremora.",
-                        ["points"] = 5,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 4",
+                        ["name"] = "The Halls of Torment",
                     },
-                    [1108] =
+                    [1000] =
                     {
-                        ["name"] = "Veteran City of Ash Assassin",
-                        ["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria within thirty minutes of starting the dungeon. Timer starts when players enter the Inner Grove.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 4.5",
+                        ["name"] = "The Valley of Blades",
                     },
-                    [749] =
+                    [1001] =
                     {
-                        ["name"] = "Dungeon Damage Dealer",
-                        ["description"] = "Deal 1,000,000 points of damage in Dungeons.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 5",
+                        ["name"] = "The Shadow of Sancre Tor",
                     },
-                    [750] =
+                    [1002] =
                     {
-                        ["name"] = "Dungeon Damage Dispenser",
-                        ["description"] = "Deal 10,000,000 points of damage in Dungeons.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 5.5",
+                        ["name"] = "Council of the Five Companions",
                     },
-                    [751] =
+                    [1003] =
                     {
-                        ["name"] = "Dungeon Healer",
-                        ["description"] = "Heal 1,000,000 points of damage to allies in Dungeons.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete Main Quest Chapter 6",
+                        ["name"] = "The God of Schemes",
                     },
-                    [752] =
+                    [364] =
                     {
-                        ["name"] = "Greater Dungeon Healer",
-                        ["description"] = "Heal 10,000,000 points of damage to allies in Dungeons.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Free the Tribunal Temple from invading Daedric forces.",
+                        ["name"] = "Temple Knight",
                     },
-                    [753] =
+                    [365] =
                     {
-                        ["name"] = "Dungeon Blocker",
-                        ["description"] = "Block 1,000,000 points of damage in Dungeons.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Kill Magistrix Vox at Eidolon's Hollow and restore peace to Deshaan.",
+                        ["name"] = "Vox Slayer",
                     },
-                    [754] =
+                    [956] =
                     {
-                        ["name"] = "Greater Dungeon Blocker",
-                        ["description"] = "Block 10,000,000 points of damage in Dungeons.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You put the dead to rest in Alik'r.",
+                        ["name"] = "Consecrated Ground",
                     },
-                    [1113] =
+                    [955] =
                     {
-                        ["name"] = "Sanctum Ophidia: Feeding Pit",
-                        ["description"] = "",
-                        ["points"] = 5,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "You ended the blood-curse and restored order in Rivenspire.",
+                        ["name"] = "Curse Breaker",
                     },
-                    [1114] =
+                    [58] =
                     {
-                        ["name"] = "A World On Fire",
-                        ["description"] = "In Veteran City of Ash, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete 42 quests in Rivenspire.",
+                        ["name"] = "Rivenspire Adventurer",
                     },
-                    [1115] =
+                    [57] =
                     {
-                        ["name"] = "Trials Damage Dealer",
-                        ["description"] = "Deal 1,000,000 points of damage in Trials.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Complete 60 quests in Stormhaven.",
+                        ["name"] = "Stormhaven Adventurer",
                     },
-                    [1116] =
+                    [184] =
                     {
-                        ["name"] = "Trials Healer",
-                        ["description"] = "Heal 1,000,000 points of damage to allies in Trials.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Destroy the Dominion's ability to create Skin-Stealers.",
+                        ["name"] = "Skin-Stealer Destroyer",
                     },
-                    [1117] =
+                    [55] =
                     {
-                        ["name"] = "Trials Blocker",
-                        ["description"] = "Block 1,000,000 points of damage in Trials.",
-                        ["points"] = 10,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Complete 1000 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+                        ["name"] = "Master Adventurer",
                     },
-                    [1136] =
+                    [628] =
                     {
-                        ["name"] = "Hel Ra Citadel Difficult Mode",
-                        ["description"] = "You defeated the Celestial Warrior after enraging him through the destruction of his statue army.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete all of the quest achievements across Tamriel.",
+                        ["name"] = "Tamriel Expert Adventurer",
                     },
-                    [1137] =
+                    [52] =
                     {
-                        ["name"] = "Aetherian Archive Difficult Mode",
-                        ["description"] = "You defeated the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Complete 50 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+                        ["name"] = "Quester",
                     },
-                    [1138] =
+                    [1014] =
                     {
-                        ["name"] = "Sanctum Ophidia Difficult Mode",
-                        ["description"] = "You defeated the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 15,
+                        ["description"] = "Defeat Exarch Arnoth and clear Skyreach Hold of the Scaled Court and its allies.",
+                        ["name"] = "Shatterer of Scales",
                     },
-                    [1139] =
+                    [1143] =
                     {
-                        ["name"] = "Craglorn Trials Conqueror",
-                        ["description"] = "You have completed Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Eliminate the threat of the Serpent and his Scaled Court throughout all of Craglorn.",
+                        ["name"] = "Craglorn Completist",
                     },
-                    [1156] =
+                    [1016] =
                     {
-                        ["name"] = "Death Has Not Claimed You",
-                        ["description"] = "Complete 50 Veteran Undaunted Pledges.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 15,
+                        ["description"] = "Defeat Aetherion and restore the Nedic wards within Skyreach Pinnacle.",
+                        ["name"] = "Warden of the Pinnacle",
                     },
-                    [1157] =
+                    [761] =
                     {
-                        ["name"] = "Glirion's Cohort",
-                        ["description"] = "Complete 100 Veteran Undaunted Pledges",
-                        ["points"] = 50,
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Complete all quests in Cropsford.",
+                        ["name"] = "Cropsford Adventurer",
                     },
-                    [1158] =
+                    [762] =
                     {
-                        ["name"] = "Call of the Undaunted",
-                        ["description"] = "Reach level 45, attracting the attention of the Undaunted elite.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 10,
+                        ["description"] = "Complete all quests in Vlastarus.",
+                        ["name"] = "Vlastarus Adventurer",
                     },
-                    [1159] =
+                    [415] =
                     {
-                        ["name"] = "Deadlands Savvy",
-                        ["description"] = "Complete all the achievements associated with the Veteran City of Ash Dungeon.",
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 10,
+                        ["description"] = "Recruit all three famous privateers on Stros M'Kai.",
+                        ["name"] = "Famed Recruiter",
+                    },
+                    [155] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Return the Dream Shard to Pariah Abbey and restore peace to Menevia.",
+                        ["name"] = "Spirit Warden Champion",
+                    },
+                    [909] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 50,
+                        ["description"] = "Discover why the Celestials have appeared in Craglorn.",
+                        ["name"] = "Celestial Investigator",
+                    },
+                    [510] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
+                        ["points"] = 5,
+                        ["description"] = "Protect the Court of the Wilderking.",
+                        ["name"] = "Court Ranger",
+                    },
+                    [767] =
+                    {
+                        ["Category"] = "Quests",
+                        ["Category_ID"] = 10,
                         ["points"] = 50,
+                        ["description"] = "Complete all quest achievements in Cyrodiil.",
+                        ["name"] = "Cyrodiil Champion",
                     },
                 },
             },