WARFRAME Wiki
Advertisement
WARFRAME Wiki
Photo-4
“It's taking longer than I calculated.”
This page is actively being worked on and may not be completely correct. Please assist in making this page accurate. See WARFRAME Wiki:Research on ways to perform research on this game. Click here to add more info.
Update 33.0 (2023-04-26) and Duviri

Manually updated fork of the public Drop Tables provided by DE:

See Module:DropTables to see what various things this is being used for right now.

Last updated: Thu, 31 Aug 2017 06:50:57 +0000 (UTC) by User:FINNER

How To Update Drop Tables

  1. Login to your wiki account and click "Edit Source" at the top right corner of the page. These pages are usually protected from anonymous editors.
    • If you are an anon and don't want to make an account, you can contribute by writing exactly what you want changed in reference to the official drop tables on the talk page (Module talk:DropTables/data) to streamline the update process for editors.
  2. CTRL+F the name of the relevant drop table, usually typing the mission type/enemy name should suffice.
    • If you still can't find the relevant drop table then you can reference the "Locations" section on any mission type article in the navigation box below to see what drop table alias a particular mission node uses. These drop table aliases are editor-defined for ease of reference since DE doesn't publicly name their drop tables.
      • Alternatively, you can go directly to the mission data stored on the wiki Module:Missions/data and see exactly what drop table alias a particular node is mapped to.
    • For bounties, search by the name of the hub that a particular bounty is associated with (e.g. Cetus, Fortuna, Necralisk) and its enemy level range. Zariman Ten Zero bounties are called "Zariman".
  3. Change drop names or drop chances in accordance to the below schemas. Use EN localization for item names.
  4. Updated data should proliferate across relevant pages across the wiki. If something isn't changed on an article then you can purge the page's cache by adding the query parameter ?action=purge at the end of the URL.

Mod Drop Table Schema

{
	{ "Endo", "Resource", 75.88, 15 },
	{ "Hawk Eye", "Mod", 7.37 },
	{ "Shotgun Barrage", "Mod", 7.37 },
	{ "Endo", "Resource", 7.37, 50 },
	{ "Shock Absorbers", "Mod", 1.01 },
	{ "Endo", "Resource", 1.01, 80 } 
}
  1. First element in each table element will be the mod's name as a string (required)
  2. Second element in each table element will be the item's type as a string (required)
  3. Third element in each table element will be the individual drop chance of said mod as a float (required)
  4. Forth element in each table element will represent drop count of Endo as an integer (required if first element is "Endo")

General Drop Table Schema

{
	{ "Morphic Transformer", "Mod", 5.64 },
	{ "Automatic Trigger", "Mod", 38.72 },
	{ "Phaedra Receiver", "Item", 5.64 },
	{ "Extend", "Mod", 38.72 },
	{ "Shell Rush", "Mod", 5.64 },
	{ "Shell Rush", "Mod", 5.64 } 
}
  1. First element in each table element will be the item's name as a string (required)
  2. Second element in each table element will represent item type as a string (required)
    • Possible values include "Mod", "Blueprint", "Relic", "Resource", "Arcane", "Item", "Scene"
  3. Third element in each table element will be the individual drop chance of said item as a float (required)
  4. Fourth element in each table element will represent drop count of said item as an integer (optional)

Enemies Entry Schema

		["Enemy Name"] = {
			ModChance = 3,
			Mods = {
				{ "Mod 1 Name", "Mod", 25 },
				{ "Mod 2 Name", "Mod", 25 },
				{ "Endo", "Resource", 25, 15 },
				{ "Endo", "Resource", 25, 80 }
			},
			Name = "Enemy Name",
		},
Key/Column Name Data Type Required? Explanation/Description Example(s)
_IgnoreEntry Boolean Denotes drop tables that are in the official repository but should be ignored when parsing tables for the wiki since its contents cannot be dropped in-game true
BlueprintChance Number (float) Blueprint/Item drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 5
Blueprints Table (of tables) Blueprint/Item drop table contents as seen in the official drop table repo, each table element is a table that contains the name of blueprint/item and the percentage chance of that blueprint/item dropping. Required if BlueprintChance is a non-nil value. { { "War Blade", 50 }, { "War Hilt", 50 } }
ItemChance Number (float) Additional Items drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 100
Items Table (of tables) Additional Items drop table contents as seen in the official drop table repo, each table element is a table that contains the name of item and the percentage chance of that item dropping. Required if ItemChance is a non-nil value. { { "Powercell", 100 } }
ModChance Number (float) Mod drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 3
Mods Table (of tables) Mod drop table contents as seen in the official drop table repo, each table element is a table that contains the name of mod and the percentage chance of that mod dropping; if reward is Endo, also add a third element containing the amount of Endo rewarded. Required if ModChance is a non-nil value.
{
	{ "Regen", "Mod", 18.97 },
	{ "Calculated Redirection", "Mod", 18.97 },
	{ "Rupture", "Mod", 18.97 },
	{ "Endo", "Resource", 18.97, 15 },
	{ "Convulsion", "Mod", 7.37 },
	{ "Speed Trigger", "Mod", 7.37 },
	{ "Fracturing Wind", "Mod", 7.37 },
	{ "Endo", "Resource", 2.01, 80 } 
}
Name String ✔️ Name of enemy "Elite Lancer"
PigmentChance Number (float) Pigment drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive. Note that in-game, this chance only applies if the Clan that player is in is actively researching the pigment in question 100
Pigments Table (of tables) Pigment drop table contents. Note that in-game, this chance only applies if the Clan that player is in is actively researching the pigment in question. Required if PigmentChance is a non-nil value.
{
	{ "Boiler Red Pigment", "Resource", 100, 2 }
}
RelicChance Number (float) Resource drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 20
Relics Table (of tables) Relic drop table contents as seen in the official drop table repo, each table element is a table that contains the name of relic and the percentage chance of that relic dropping. Required if RelicChance is a non-nil value.
{
	{ "Lith T7", "Relic", 15.49 },
	{ "Lith N7", "Relic", 15.49 },
	{ "Meso B5", "Relic", 15.49 },
	{ "Meso S10", "Relic", 15.49 },
	{ "Meso B6", "Relic", 15.49 },
	{ "Neo N16", "Relic", 3.76 },
	{ "Neo T5", "Relic", 3.76 },
	{ "Neo N17", "Relic", 3.76 },
	{ "Axi A14", "Relic", 3.76 },
	{ "Axi I2", "Relic", 3.76 },
	{ "Axi M2", "Relic", 3.76 } 
}
ResourceChance Number (float) Resource drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 7
Resources Table (of tables) Resource drop table contents as seen in the official drop table repo, each table element is a table that contains the name of resource and the percentage chance of that resource dropping. Required if ResourceChance is a non-nil value. { { "Region Resource", 77.44 }, { "Nav Coordinate", 22.56 } }
SigilChance Number (float) Sigil drop table chance of rolling its rewards as a percentage; a value between 0 exclusive and 100 inclusive 100
Sigils Table (of tables) Sigil drop table contents as seen in the official drop table repo, each table element is a table that contains the name of sigil and the percentage chance of that sigil dropping. Required if SigilChance is a non-nil value. { { "Alad V Sigil", 100 } }

Missions Entry Schema

		Spy1 = {
			Alias = "Spy1",
			Link = "Spy",
			Name = "Tier 1",
			Rewards = {
				A = {
					{ "Credits Cache", "Credits", 14.29, 1500 },
					{ "Credits Cache", "Credits", 14.29, 1500 },
					{ "Endo", "Resource", 14.29, 100 },
					{ "Endo", "Resource", 14.29, 100 },
					{ "Reflection", "Mod", 14.29 },
					{ "Reflex Guard", "Mod", 14.29 },
					{ "Parry", "Mod", 14.29 } 
				},
				B = {
					{ "Lith G4", "Relic", 14.29 },
					{ "Lith T7", "Relic", 14.29 },
					{ "Lith K7", "Relic", 14.29 },
					{ "Lith N7", "Relic", 14.29 },
					{ "Lith G4", "Relic", 14.29 },
					{ "Lith I1", "Relic", 14.29 },
					{ "Lith N8", "Relic", 14.29 } 
				},
				C = {
					{ "Master Key", "Mod", 10 },
					{ "Reflection", "Mod", 10 },
					{ "Parry", "Mod", 10 },
					{ "Heavy Impact", "Mod", 10 },
					{ "Serration", "Mod", 10 },
					{ "Hornet Strike", "Mod", 10 },
					{ "Metal Auger", "Mod", 10 },
					{ "Volcanic Edge", "Mod", 10 },
					{ "Vicious Frost", "Mod", 10 },
					{ "Ivara Systems Blueprint", "Blueprint", 10 } 
				} 
			},
			Type = "Spy" 
		},
Key/Column Name Data Type Required? Explanation/Description Example(s)
Alias String ✔️ User-defined name for the drop table group. Many missions share the same drop tables so this is how we refer to a specific drop table group. "Survival1"
InternalName String The full unique name of a drop table formatted as a file path "/Lotus/Types/Game/MissionDecks/InvasionRewards"
Link String ✔️ Name of page on the wiki of the mission associated with drop table "Spy"
Name String ✔️ User-defined name of drop table to be displayed to readers "Tier 1 Spy"
Rewards Table (of key-value pairs) ✔️ Contains at least three drop tables (named A, B, and C) associated with a specific drop table group.
Tier String ✔️ Name of tier associated with mission type for the drop table "All" or "Tier 2"
Type String ✔️ Name of mission type associated with drop table "Survival"

Rewards Subtable Collection

Any reward entries added to the Enemies and Missions collections are automatically populated into the Rewards collection, indexed by item name and with the following schema:

Key/Column Name Data Type Required? Explanation/Description Example(s)
Number index Table (of table entries) ✔️ Each item name is mapped to an array-like table containing table entries about their drop source.
["Ambassador Blueprint"] = {
		{
			[1] = "Missions",
			[2] = "VeilProximaSurvival",
			[3] = "C"
			[4] = 2,
			Entry = { "Ambassador Blueprint", "Blueprint", 16.67 },
			Probability: 0.1667,
			Source = reference to original table entry,
		},
		{
			[1] = "Missions",
			[2] = "NeptuneProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
			[1] = "Missions",
			[2] = "PlutoProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
		{
			[1] = "Missions",
			[2] = "VenusProximaSurvival",
			[3] = "C",
			[4] = 5,
			Entry = { "Ambassador Blueprint", "Blueprint", 8.33 },
			Probability = 0.0833,
			Source = reference to original table entry,
		},
}

Viewing Contents via API Call

CephalonSimaris
“Hunter, I have temporarily disabled that ability.”
This article contains JavaScript scripts that users can run locally in their browser's console or machine. As a warning, which goes for any scripts you copy/run from the Internet, MAKE SURE YOU UNDERSTAND THE CODE BEFORE RUNNING IT LOCALLY FOR YOUR OWN SECURITY! Contact an admin if you have any concerns or questions about a script.

For debugging purposes in browser console:

let origin = "https://warframe.fandom.com";
// MediaWiki's Action API endpoint
let path = "/api.php";
// Passing Lua code to Action API to convert Lua tables containing drop table data into JSON
let params = {
	action: "scribunto-console",
	format: "json",
	title: "Module:DropTables/data",
	content: "",
	question: `
local DropData = require('Module:DropTables/data').Rewards
local json = require('Module:JSON')
print(json.stringify(DropData))`,
	clear: 1
};

// [ ["action", "scribunto-console"], ["format","json"], ... ] to "action=scribunto-console&format=json&..."
let queryString = new URLSearchParams([ ...Object.entries(params) ]).toString();

let url = new URL(`${origin}${path}?${queryString}`);

fetch(url)
	.then((data) => data.json())
	.then((json) => {
		if (json.print !== undefined) {
			console.log(JSON.parse(json.print));
		} else {
			throw json.html;	// Lua script error has occurred
		}
	})
	.catch((error) => console.log(error));

Differences Between Official Repo And Wiki's Drop Tables

The official drop table repository and the wiki's repo are not one-to-one, just as the official repo is not one-to-one with actual in-game drop tables. Entries are manually edited and audited for the purposes of rendering content properly on the wiki. DO NOT ASSUME THIS IS THE SAME AS THE OFFICIAL REPO OR IN-GAME DROP TABLES.

Wiki's repo
  • Chassis components for gun weapons are named "<Weapon_Name> Gun Chassis" instead of "<Weapon_Name> Chassis" to differentiate between Warframe chassis and weapon chassis
  • Includes the chances that a new Invasion node will roll a specific reward for both sides. This data was sourced from a datamined resource which may or may not be outdated.
  • Includes Orokin Tower Containers
  • Includes Requiem Relic drop chances of Kuva Thralls and Hounds
  • Enemy names will be formatted to their in-game representation (like "Raptor Mt" to "Raptor MT")
    • "Nechramech" is renamed to "Necramech" to match in-game presentation
    • Duplicate "Vomvalyst" entry is not included in wiki's repo. Use "Eidolon Vomvalyst" instead.
    • Exception would be "MOA" as in the Corpus enemy. Game is inconsistent with capitalization, using both "MOA" and "Moa". "MOA" is the original spelling.
  • Drop chances may be rounded to more decimal places than two
  • Void Relic drop tables are stored in Module:Void/data and we only store the items in relic drop tables since drop chances at different relic refinements are the same across all relics (i.e. drop chances can be derived, no need to store additional data)
  • Since some mission types of the same tier/difficulty share drop tables, we will not store duplicate drop tables in the wiki's repo to save space
  • Contains Pigment drop chance data
  • For items that appear more than once in the same drop table, we consolidate these drop chances into one entry for simplicity and for sorting by highest/lowest drop chances in wikitables, even if that is not that actual internal implementation
    • For example, as of 2022-12-14, we see duplicate Void Relic entries for Void/Taranis (Defense) Rotation A drop table[1]
Official repo
  • Contains drop tables of outdated event/Star Chart nodes like Camenae, Sedna (Defense) and Viver, Eris (Caches)
  • Contains drop tables of enemies that cannot be normally spawned like "Terra Cestra Manker" or "Kuva Lich Agor Rok (Level 0 - 69)"
  • Contains entries that share the name as others like Common Corpus Storage Container. In the wiki's repo, the second instance of these drop tables will have " (2)" appended to the name so that keys stay unique.
  • Labels all Railjack mission nodes as the "Skirmish" mission type. The wiki uses the mission type as shown in menus in-game.
  • May contain unreleased content[2]

Updating Relic Drop Locations Notes

Every Prime Access (once every ~3 months or financial quarter), DE will release new Void Relics that will contain at least one component/blueprint of the new Primes released. In addition, the oldest available Primes' relics will be removed from the game's Drop Tables to make room for the new relics and to not dilute the drop tables further. In some cases, newer/recent Prime items' parts would be unavailable to farm when DE removes these old relics, so they will add additional relics (separate from the newly released Primes) to make these items farmable.

It takes about 1-3 hours of manually editing to fully update Module:Void/data and Module:DropTables/data with the latest Prime content.

Updating the vaulted status of relics here will automatically tag the appropriate item articles with Template:ItemVault.

Creating New Void Relic Pages

Use Template:VoidRelicArticle as reference for creating new Void Relic articles. See WARFRAME Wiki:Creating New Pages#Create New Void Relic Article for a sample text input to article wizard.

Module:DropTables/data

A simple find & replace should be enough to keep relic drops in Module:DropTables/data up-to-date with the latest Prime Access/Prime Resurgence. This is especially true if the number of relics introduced is equal to the number of relics removed from drop tables. However, there had been times where there is an unequal number of removed/added relics (mainly because some Prime weapons have varying numbers of parts associated with its crafting recipe; Prime parts are distributed across relics so that only one part from a unique weapon may be present in any given relic) which requires editors to manually go through each relevant mission drop table to audit for accuracy.

Good drop tables to check for what has changed:

  • Tier 1 Survival for Lith relics like Mercury/Apollodorus (Survival)
  • Tier 1 Defense (rotation B and C) for Meso relics like Mercury/Lares (Defense)
  • Tier 3 Excavation (rotation B) for Neo relics like Pluto/Hieracon (Excavation)
  • Tier 3 Excavation (rotation C) for Axi relics like Pluto/Hieracon (Excavation)

Notable patterns in relic drop distribution:

  • Relics that are replaced are usually the same tier as the relic that replaces them (Lith, Meso, Neo, Axi)
  • Bounties usually only drop relics that have been recently unvaulted with the latest Prime Vault With Prime Resurgence being a permanent feature in the game since Hotfix 32.0.3 (2022-09-14), editors will most likely won't need to update bounty drop tables on a frequent basis. Vaulted relics that once existed in bounty drop tables are now replaced by an intermediary currency Aya Aya.

Examples

U31.7 - Khora Prime

Update 31.7 (2022-07-16) relic drop locations update for KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime relics (InarosPrimeIcon272 Inaros Prime/PantheraPrime Panthera Prime/KarystPrime Karyst Prime vaulted):

  • Old -> New
InarosPrimeIcon272 Inaros Prime -> KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
PantheraPrime Panthera Prime -> KhoraPrimeIcon272 Khora Prime/HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
KarystPrime Karyst Prime -> HystrixPrime Hystrix Prime/DualKeresPrime Dual Keres Prime
U31.3 - Garuda Prime

Update 31.3 (2022-03-28) relic drop locations update for GarudaPrimeIcon Garuda Prime/NagantakaPrime Nagantaka Prime/CorvasPrime Corvas Prime relics (TitaniaPrimeIcon272 Titania Prime/CorinthPrime Corinth Prime/PangolinPrime Pangolin Prime vaulted):

U31.0 - Harrow Prime

Update 31.0 (2021-12-15) relic drop locations update for HarrowPrimeIcon Harrow Prime/ScourgePrime Scourge Prime/KnellPrime Knell Prime relics (Ivara PrimeIcon272 Ivara Prime/BazaPrime Baza Prime/AksomatiPrime Aksomati Prime vaulted):

References

  1. (2022, December 14). Official Drop Table Repo. Digital Extremes. Accessed 2022-12-22. Archived from the original on 2022-12-17.
  2. (2022, December 14). Official Drop Table Repo. Digital Extremes. Accessed 2022-12-26. Archived from the original on 2022-12-17. Lith A5, Lith V9, Meso T6, Meso V8, Neo A7, Neo D6, and Axi F1 are included in 2022-12-14 update of drop table repo, representing a future Atlas/Vauban Prime rerun.

Drop Table Data


--GOOD NEWS EVERYBODY!
--DE is now making drop tables publicly available
--See Module:DropTables to see what various things this is being used for right now
--User:Falterfire

--Sourced from DE at... https://n8k6e2y6.ssl.hwcdn.net/repos/hnfvc0o3jnfvc873njb03enrf56.html
--Last updated 8/24/2017 (U21.6)
--Also update "Last Updated" on Template:Rewards

--Guide to which Mission Type/Difficulties match which actual missions
local DropData = 
{
    --This is needed for Void Relic/ByMission
    --Also gives a second name for some types
    --So "Tier 1" and "Easy" are both valid names for low level Defenses
    --But "Tier 1" is the official name
    ["Categories"] = {
            ["Rathuum"] = {
                ["Easy"] = { Name = "Easy", Alias = "Rathuum1", SingleRot = true},
                ["Hard"] = { Name = "Hard", Alias = "Rathuum2", SingleRot = true}
            },
            ["Capture"] = {
                ["All"] = { Name = "All", Alias = "Capture", SingleRot = true}
            },
            ["Defection"] = {
                ["Phobos"] = { Name = "Tier 1", Alias = "Defection1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Saturn"] = { Name = "Tier 2", Alias = "Defection2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Neptune"] = { Name = "Tier 3", Alias = "Defection3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" }
            },
            ["Defense"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Defense1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Tier 2", Alias = "Defense2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Tier 3", Alias = "Defense3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
                ["Easy2"] = { Name = "Dark Sector", Alias = "DSDefense", ShortName = "[[Dark Sector|DS]]" },
                ["Derelict"] = { Name = "Derelict", Alias = "DerelictDefense" }
            },
            ["Excavation"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Excavation1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" }
            },
            ["Exterminate"] = {
                ["Archwing"] = { Name = "Archwing", Alias = "AWExterminate", ShortName = "AW", SingleRot = true},
                ["Kuva Fortress"] = { Name = "Kuva", Alias = "KuvaCaches", ShortName = "[[Kuva Fortress|Kuva]]" },
                ["Lua"] = { Name = "Lua", Alias = "LuaCaches", ShortName = "[[Lua]]"}
            },
            ["Interception"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Interception1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Tier 2", Alias = "Interception2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Tier 3", Alias = "Interception3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
                ["Archwing"] = { Name = "Archwing", Alias = "AWInterception", ShortName = "AW" }
            },
            ["Mobile Defense"] = {
                ["Archwing"] = { Name = "Archwing", Alias = "AWMobileDefense", ShortName = "AW", SingleRot = true}
            },
            ["Pursuit"] = {
                ["Archwing"] = { Name = "Archwing", Alias = "AWPursuit", ShortName = "AW", SingleRot = true}
            },
            ["Rescue"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Rescue1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Tier 2", Alias = "Rescue2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Tier 3", Alias = "Rescue3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
            },
            ["Rush"] = {
                ["Archwing"] = { Name = "Archwing", Alias = "AWRush", ShortName = "AW" }
            },
            ["Sabotage"] = {
                ["Easy"] = { Name = "Reactor 1", Alias = "Reactor1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Reactor 2", Alias = "Reactor2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Reactor 3", Alias = "Reactor3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
                ["VoidEasy"] = { Name = "Void 1", Alias = "VoidCaches1" },
                ["VoidHard"] = { Name = "Void 2", Alias = "VoidCaches2" },
                ["Derelict"] = { Name = "Derelict", Alias = "DerelictCaches" },
                ["Uranus"] = { Name = "Sealab", Alias = "SealabCaches" },
                ["Earth"] = { Name = "Earth", Alias = "EarthCaches" },
                ["Archwing"] = { Name = "Archwing", Alias = "AWSabotage", ShortName = "AW", SingleRot = true},
                ["Hive"] = { Name = "Hive Sabotage", Alias = "HiveCaches", ShortName = "[[Hive Sabotage|Hive]]" }
            },
            ["Salvage"] = {
                ["All"] = {Name = "All", Alias = "Salvage" }
            },
            ["Spy"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Spy1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Tier 2", Alias = "Spy2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Tier 3", Alias = "Spy3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
                ["Lua"] = { Name = "Lua", Alias = "LuaSpy", ShortName = "[[Lua]]" },
                ["Kuva Fortress"] = { Name = "Kuva", Alias = "KuvaSpy", ShortName = "[[Kuva Fortress|Kuva]]" },
            },
            ["Survival"] = {
                ["Easy"] = { Name = "Tier 1", Alias = "Survival1", ShortName = "[[Mission Rewards#Mission Tier|T1]]" },
                ["Medium"] = { Name = "Tier 2", Alias = "Survival2", ShortName = "[[Mission Rewards#Mission Tier|T2]]" },
                ["Hard"] = { Name = "Tier 3", Alias = "Survival3", ShortName = "[[Mission Rewards#Mission Tier|T3]]" },
                ["Mot"] = { Name = "Tier 4", Alias = "Survival4", ShortName = "[[Mission Rewards#Mission Tier|T4]]" },
                ["Easy2"] = { Name = "Dark Sector 1", Alias = "DSSurvival1", ShortName = "[[Dark Sector|DS1]]" },
                ["Medium2"] = { Name = "Dark Sector 2", Alias = "DSSurvival2", ShortName = "[[Dark Sector|DS2]]" },
                ["Hard2"] = { Name = "Dark Sector 3", Alias = "DSSurvival3", ShortName = "[[Dark Sector|DS3]]" },
                ["Eris"] = { Name = "Dark Sector 4", Alias = "DSSurvival4", ShortName = "[[Dark Sector|DS4]]" },
                ["Derelict"] = { Name = "Derelict", Alias = "DerelictSurvival" }
            },
            
        },
    
    --Format is...
    --Mission Type,Difficulty,Rotation,Item,Rarity,Exact Chance
    ["Drops"] = {
        {"Capture","All","A",1,"Vitality","Mod","Rare",9.48},
        {"Capture","All","A",1,"Fast Deflection","Mod","Rare",9.48},
        {"Capture","All","A",1,"Rush","Mod","Uncommon",11.06},
        {"Capture","All","A",1,"Magazine Warp","Mod","Rare",9.48},
        {"Capture","All","A",1,"Trick Mag","Mod","Rare",9.48},
        {"Capture","All","A",1,"Pressure Point","Mod","Legendary",0.13},
        {"Capture","All","A",1,"Ammo Drum","Mod","Uncommon",11.06},
        {"Capture","All","A",1,"Fast Hands","Mod","Rare",9.48},
        {"Capture","All","A",1,"Quickdraw","Mod","Rare",9.48},
        {"Capture","All","A",1,"Health Restore","Item","Rare",9.48},
        {"Capture","All","A",1,"Omni Ammo Box","Item","Legendary",0.13},
        {"Capture","All","A",1,"North Wind","Mod","Legendary",0.13},
        {"Capture","All","A",1,"Shocking Touch","Mod","Legendary",0.13},
        {"Capture","All","A",1,"Molten Impact","Mod","Legendary",0.13},
        {"Capture","All","A",1,"Stretch","Mod","Legendary",0.13},
        {"Capture","All","A",1,"Lith N3 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Meso S2 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Meso O1 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Meso S5 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Meso N4 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Neo V5 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Lith V4 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Lith A2 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Meso V5 Relic","Relic","Legendary",0.13},
        {"Capture","All","A",1,"Neo B2 Relic","Relic","Rare",9.48},
        {"Capture","All","A",1,"Meso S6 Relic","Relic","Legendary",0.13},
        {"Defection","Neptune","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Defection","Neptune","A",240,"Endo","Endo","Uncommon",25},
        {"Defection","Neptune","B",1,"Neo V5 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Neo S7 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Neo S8 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Neo B2 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Neo V2 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Neo H1 Relic","Relic","Uncommon",12.91},
        {"Defection","Neptune","B",1,"Expel Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Smite Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Cleanse Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","B",1,"Bane of Corrupted","Mod","Rare",5.64},
        {"Defection","Neptune","C",1,"Axi N4 Relic","Relic","Uncommon",15.49},
        {"Defection","Neptune","C",1,"Axi N5 Relic","Relic","Uncommon",15.49},
        {"Defection","Neptune","C",1,"Axi V6 Relic","Relic","Uncommon",15.49},
        {"Defection","Neptune","C",1,"Axi E2 Relic","Relic","Uncommon",15.49},
        {"Defection","Neptune","C",1,"Axi O1 Relic","Relic","Uncommon",15.49},
        {"Defection","Neptune","C",1,"Life Strike","Mod","Uncommon",11.28},
        {"Defection","Neptune","C",1,"Harrow Systems Blueprint","Blueprint","Uncommon",11.28},
        {"Defection","Phobos","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Defection","Phobos","A",15,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","A",50,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","A",80,"Endo","Endo","Uncommon",14.29},
        {"Defection","Phobos","B",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith T1 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith B2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","B",1,"Expel Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Smite Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Cleanse Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Bane of Corrupted","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Intensify","Mod","Rare",4.51},
        {"Defection","Phobos","B",1,"Lith H1 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith T1 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith B2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Defection","Phobos","C",1,"Quickening","Mod","Rare",7.52},
        {"Defection","Phobos","C",1,"Enduring Strike","Mod","Rare",7.52},
        {"Defection","Phobos","C",1,"Harrow Systems Blueprint","Blueprint","Rare",7.52},
        {"Defection","Phobos","C",1,"Lith H1 Relic","Relic","Rare",9.68},
        {"Defection","Saturn","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Defection","Saturn","A",15,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","A",50,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","A",80,"Endo","Endo","Uncommon",16.67},
        {"Defection","Saturn","B",1,"Meso N5 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso O1 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S2 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso C3 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso G1 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S5 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso N4 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso V5 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Meso S6 Relic","Relic","Rare",8.6},
        {"Defection","Saturn","B",1,"Expel Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Smite Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Cleanse Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","B",1,"Bane of Corrupted","Mod","Rare",5.64},
        {"Defection","Saturn","C",1,"Neo V5 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Neo S7 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Neo S8 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Neo B2 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Neo V2 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Neo H1 Relic","Relic","Uncommon",12.91},
        {"Defection","Saturn","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Defection","Saturn","C",1,"Harrow Systems Blueprint","Blueprint","Uncommon",11.28},
        {"Defense","Derelict","A",240,"Endo","Endo","Uncommon",10},
        {"Defense","Derelict","A",150,"Endo","Endo","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V2 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith N3 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith T1 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V4 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith A2 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith B2 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith V3 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","A",1,"Lith H1 Relic","Relic","Uncommon",10},
        {"Defense","Derelict","B",240,"Endo","Endo","Common",38.72},
        {"Defense","Derelict","B",150,"Endo","Endo","Common",38.72},
        {"Defense","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Uncommon",22.56},
        {"Defense","Derelict","C",1,"Meso O1 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso N5 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso S2 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Forma Blueprint","Blueprint","Uncommon",22.56},
        {"Defense","Derelict","C",1,"Meso C3 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso G1 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso S5 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso N4 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso V5 Relic","Relic","Rare",8.6},
        {"Defense","Derelict","C",1,"Meso S6 Relic","Relic","Rare",8.6},
        {"Defense","Easy","A",1,"Synthula","Resource","Rare",7.14},
        {"Defense","Easy","A",1,"Magazine Warp","Mod","Rare",7.14},
        {"Defense","Easy","A",1,"Trick Mag","Mod","Rare",7.14},
        {"Defense","Easy","A",1,"Pressure Point","Mod","Rare",7.14},
        {"Defense","Easy","A",1,"Ammo Drum","Mod","Rare",7.14},
        {"Defense","Easy","A",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith T1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith B2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Meso S2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","A",1,"Lith H1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","B",1,"Meso N5 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso C3 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso S2 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso G1 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso O1 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso S5 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Reflex Coil","Mod","Rare",7.69},
        {"Defense","Easy","B",1,"Cryo Rounds","Mod","Rare",7.69},
        {"Defense","Easy","B",1,"Hell's Chamber","Mod","Rare",7.69},
        {"Defense","Easy","B",1,"Shocking Touch","Mod","Rare",7.69},
        {"Defense","Easy","B",50,"Endo","Endo","Rare",7.69},
        {"Defense","Easy","B",1,"Meso N4 Relic","Relic","Rare",7.69},
        {"Defense","Easy","B",1,"Meso V5 Relic","Relic","Rare",7.69},
        {"Defense","Easy","C",1,"Metal Auger","Mod","Rare",7.14},
        {"Defense","Easy","C",1,"Ravage","Mod","Rare",7.14},
        {"Defense","Easy","C",1,"Meso N5 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso S2 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso C3 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso G1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Continuity","Mod","Rare",7.14},
        {"Defense","Easy","C",1,"Master Thief","Mod","Rare",7.14},
        {"Defense","Easy","C",80,"Endo","Endo","Rare",7.14},
        {"Defense","Easy","C",1,"Meso O1 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso S5 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso N4 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso V5 Relic","Relic","Rare",7.14},
        {"Defense","Easy","C",1,"Meso S6 Relic","Relic","Rare",7.14},
        {"Defense","Easy2","A",1,"Vitality","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Fast Deflection","Mod","Rare",18.96},
        {"Defense","Easy2","A",1,"Rush","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Magazine Warp","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Trick Mag","Mod","Rare",9.48},
        {"Defense","Easy2","A",1,"Pressure Point","Mod","Ultra Rare",1.01},
        {"Defense","Easy2","A",1,"Ammo Drum","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Fast Hands","Mod","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith T1 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith N3 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith V2 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"Lith B2 Relic","Relic","Rare",3.16},
        {"Defense","Easy2","A",1,"True Punishment","Mod","Ultra Rare",1.01},
        {"Defense","Easy2","A",1,"Lith V4 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","A",1,"Lith A2 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","A",1,"Lith H1 Relic","Relic","Rare",9.48},
        {"Defense","Easy2","B",1,"Speed Trigger","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Fast Hands","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Point Strike","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Vital Sense","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Piercing Hit","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Metal Auger","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Pistol Gambit","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Target Cracker","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"No Return","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Ravage","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Blunderbuss","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Point Blank","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Serration","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Hornet Strike","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Fury","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Reflex Coil","Mod","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Pressure Point","Mod","Rare",8.43},
        {"Defense","Easy2","B",1,"Meso S2 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso N5 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso C3 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso G1 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso O1 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"True Punishment","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Quickening","Mod","Legendary",0.67},
        {"Defense","Easy2","B",1,"Meso S5 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso N4 Relic","Relic","Ultra Rare",1.38},
        {"Defense","Easy2","B",1,"Meso V5 Relic","Relic","Ultra Rare",2.76},
        {"Defense","Easy2","C",1,"Hellfire","Mod","Rare",6.9},
        {"Defense","Easy2","C",1,"Heated Charge","Mod","Rare",6.9},
        {"Defense","Easy2","C",1,"Molten Impact","Mod","Rare",2.01},
        {"Defense","Easy2","C",1,"Barrel Diffusion","Mod","Rare",2.01},
        {"Defense","Easy2","C",1,"Streamline","Mod","Rare",2.01},
        {"Defense","Easy2","C",1,"Intensify","Mod","Rare",2.01},
        {"Defense","Easy2","C",1,"Neo S7 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"Thunderbolt","Mod","Legendary",0.4},
        {"Defense","Easy2","C",50,"Endo","Endo","Rare",6.9},
        {"Defense","Easy2","C",80,"Endo","Endo","Rare",2.01},
        {"Defense","Easy2","C",1,"Meso S2 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Meso N5 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Neo V5 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"Neo V2 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"Neo S8 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"Neo B2 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"True Punishment","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Quickening","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Enduring Strike","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Life Strike","Mod","Legendary",0.4},
        {"Defense","Easy2","C",1,"Meso O1 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Neo H1 Relic","Relic","Rare",2.01},
        {"Defense","Easy2","C",1,"Meso S5 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Meso N4 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Meso V5 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Meso C3 Relic","Relic","Rare",6.9},
        {"Defense","Easy2","C",1,"Meso G1 Relic","Relic","Rare",6.9},
        {"Defense","Hard","A",1,"Vitality","Mod","Uncommon",11.11},
        {"Defense","Hard","A",1,"Magazine Warp","Mod","Uncommon",11.11},
        {"Defense","Hard","A",1,"Trick Mag","Mod","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo V5 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo V2 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo S7 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo S8 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo B2 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","A",1,"Neo H1 Relic","Relic","Uncommon",11.11},
        {"Defense","Hard","B",1,"Axi N4 Relic","Relic","Rare",7.14},
        {"Defense","Hard","B",1,"Axi N5 Relic","Relic","Rare",7.14},
        {"Defense","Hard","B",1,"Axi E2 Relic","Relic","Rare",7.14},
        {"Defense","Hard","B",1,"Axi V6 Relic","Relic","Rare",7.14},
        {"Defense","Hard","B",1,"Axi O1 Relic","Relic","Rare",7.14},
        {"Defense","Hard","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"Reflex Coil","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"Deep Freeze","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"North Wind","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"Streamline","Mod","Rare",7.14},
        {"Defense","Hard","B",1,"Shocking Touch","Mod","Rare",7.14},
        {"Defense","Hard","B",50,"Endo","Endo","Rare",7.14},
        {"Defense","Hard","B",1,"Axi B2 Relic","Relic","Rare",7.14},
        {"Defense","Hard","C",1,"Vital Sense","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Metal Auger","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Ravage","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Stretch","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Handspring","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Convulsion","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Split Chamber","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Continuity","Mod","Rare",2.26},
        {"Defense","Hard","C",1,"Master Thief","Mod","Rare",2.26},
        {"Defense","Hard","C",80,"Endo","Endo","Rare",2.26},
        {"Defense","Hard","C",1,"Axi N4 Relic","Relic","Uncommon",12.91},
        {"Defense","Hard","C",1,"Axi N5 Relic","Relic","Uncommon",12.91},
        {"Defense","Hard","C",1,"Axi E2 Relic","Relic","Uncommon",12.91},
        {"Defense","Hard","C",1,"Axi V6 Relic","Relic","Uncommon",12.91},
        {"Defense","Hard","C",1,"Axi O1 Relic","Relic","Uncommon",12.91},
        {"Defense","Hard","C",1,"Axi B2 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","A",1,"Meso N5 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso C3 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso S2 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso G1 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso O1 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso S5 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",15,"Endo","Endo","Uncommon",10},
        {"Defense","Medium","A",1,"Meso N4 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso V5 Relic","Relic","Uncommon",10},
        {"Defense","Medium","A",1,"Meso S6 Relic","Relic","Uncommon",10},
        {"Defense","Medium","B",1,"Neo V5 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Neo V2 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Neo S7 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Neo S8 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Neo B2 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Neo H1 Relic","Relic","Rare",6.67},
        {"Defense","Medium","B",1,"Reflex Coil","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Deep Freeze","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"North Wind","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Cryo Rounds","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Hell's Chamber","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Stormbringer","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Point Blank","Mod","Rare",6.67},
        {"Defense","Medium","B",1,"Fury","Mod","Rare",6.67},
        {"Defense","Medium","B",50,"Endo","Endo","Rare",6.67},
        {"Defense","Medium","C",1,"Vital Sense","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Metal Auger","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Ravage","Mod","Rare",4.51},
        {"Defense","Medium","C",1,"Stretch","Mod","Rare",4.51},
        {"Defense","Medium","C",80,"Endo","Endo","Rare",4.51},
        {"Defense","Medium","C",1,"Neo V5 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","C",1,"Neo V2 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","C",1,"Neo S7 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","C",1,"Neo S8 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","C",1,"Neo B2 Relic","Relic","Uncommon",12.91},
        {"Defense","Medium","C",1,"Neo H1 Relic","Relic","Uncommon",12.91},
        {"Excavation","Easy","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Excavation","Easy","A",15,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Excavation","Easy","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith T1 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith B2 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Parry","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Serration","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Intensify","Mod","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","B",1,"Lith H1 Relic","Relic","Rare",7.14},
        {"Excavation","Easy","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith T1 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith B2 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Excavation","Easy","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Cleanse Grineer","Mod","Rare",3.76},
        {"Excavation","Easy","C",1,"Lith H1 Relic","Relic","Rare",9.68},
        {"Exterminate","Archwing","A",1,"Morphic Transformer","Mod","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Automatic Trigger","Mod","Common",38.72},
        {"Exterminate","Archwing","A",1,"Phaedra Receiver","Mod","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Extend","Mod","Common",38.72},
        {"Exterminate","Archwing","A",1,"Shell Rush","Mod","Rare",5.64},
        {"Exterminate","Archwing","A",1,"Shell Rush","Mod","Rare",5.64},
        {"Exterminate","Kuva Fortress","A",4000,"Credits Cache","Credits","Common",38.72},
        {"Exterminate","Kuva Fortress","A",5000,"Credits Cache","Credits","Common",38.72},
        {"Exterminate","Kuva Fortress","A",10000,"Credits Cache","Credits","Uncommon",22.56},
        {"Exterminate","Kuva Fortress","B",75,"Endo","Endo","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",150,"Endo","Endo","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",80,"Endo","Endo","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",400,"Circuits","Resource","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",400,"Rubedo","Resource","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Exterminate","Kuva Fortress","B",240,"Endo","Endo","Uncommon",11.06},
        {"Exterminate","Kuva Fortress","B",400,"Endo","Endo","Uncommon",11.06},
        {"Exterminate","Kuva Fortress","B",640,"Endo","Endo","Rare",2.01},
        {"Exterminate","Kuva Fortress","C",80,"Endo","Endo","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",150,"Endo","Endo","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",1,"Orokin Cell","Resource","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",1,"Gallium","Resource","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",1,"Neurodes","Resource","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",240,"Endo","Endo","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",1,"Cyclone Kraken","Mod","Uncommon",10.79},
        {"Exterminate","Kuva Fortress","C",400,"Endo","Endo","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",2,"Orokin Cell","Resource","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",2,"Gallium","Resource","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",2,"Neural Sensors","Resource","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",1,"Argon Crystal","Resource","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",1,"Tellurium","Resource","Rare",3.67},
        {"Exterminate","Kuva Fortress","C",1,"Nitain Extract","Resource","Rare",2},
        {"Exterminate","Kuva Fortress","C",1,"Xiphos Avionics Blueprint","Blueprint","Legendary",0.5},
        {"Exterminate","Lua","A",150,"Endo","Endo","Uncommon",12.91},
        {"Exterminate","Lua","A",80,"Endo","Endo","Uncommon",12.91},
        {"Exterminate","Lua","A",300,"Polymer Bundle","Resource","Uncommon",12.91},
        {"Exterminate","Lua","A",350,"Rubedo","Resource","Uncommon",12.91},
        {"Exterminate","Lua","A",300,"Plastids","Resource","Uncommon",12.91},
        {"Exterminate","Lua","A",240,"Endo","Endo","Uncommon",12.91},
        {"Exterminate","Lua","A",1,"Octavia Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Exterminate","Lua","B",2500,"Credits Cache","Credits","Uncommon",25.29},
        {"Exterminate","Lua","B",3000,"Credits Cache","Credits","Uncommon",25.29},
        {"Exterminate","Lua","B",4000,"Credits Cache","Credits","Uncommon",25.29},
        {"Exterminate","Lua","B",240,"Endo","Endo","Uncommon",22.11},
        {"Exterminate","Lua","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Exterminate","Lua","B",640,"Endo","Endo","Ultra Rare",1.01},
        {"Exterminate","Lua","C",1,"Orokin Cell","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",1,"Gallium","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",1,"Neurodes","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",240,"Endo","Endo","Uncommon",10.82},
        {"Exterminate","Lua","C",2,"Gallium","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",2,"Orokin Cell","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",2,"Neurodes","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",1,"Tellurium","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",1,"Argon Crystal","Resource","Uncommon",10.82},
        {"Exterminate","Lua","C",1,"Nitain Extract","Resource","Ultra Rare",1.29},
        {"Exterminate","Lua","C",1,"Xiphos Engines Blueprint","Blueprint","Ultra Rare",1.29},
        {"Interception","Archwing","A",1,"Automatic Trigger","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Combustion Rounds","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Dual Rounds","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Hollowed Bullets","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Magazine Extension","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Modified Munitions","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Parallax Scope","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Rubedo-Lined Barrel","Mod","Rare",2.51},
        {"Interception","Archwing","A",1,"Venomous Clip","Mod","Rare",2.51},
        {"Interception","Archwing","A",150,"Endo","Endo","Common",38.72},
        {"Interception","Archwing","A",250,"Endo","Endo","Common",38.72},
        {"Interception","Archwing","B",1,"Superior Defenses","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Bleeding Edge","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Superior Defenses","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Argon Plating","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Furor","Mod","Uncommon",10},
        {"Interception","Archwing","B",250,"Endo","Endo","Uncommon",10},
        {"Interception","Archwing","B",1,"Glacial Edge","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Electrified Barrel","Mod","Uncommon",10},
        {"Interception","Archwing","B",1,"Energy Inversion","Mod","Uncommon",10},
        {"Interception","Archwing","B",50,"Endo","Endo","Uncommon",10},
        {"Interception","Archwing","C",400,"Endo","Endo","Uncommon",22.56},
        {"Interception","Archwing","C",250,"Endo","Endo","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi N4 Relic","Relic","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi N5 Relic","Relic","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi E2 Relic","Relic","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi V6 Relic","Relic","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi O1 Relic","Relic","Uncommon",11.06},
        {"Interception","Archwing","C",1,"Axi B2 Relic","Relic","Uncommon",11.06},
        {"Interception","Easy","A",1,"Vitality","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Magazine Warp","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Trick Mag","Mod","Rare",8.33},
        {"Interception","Easy","A",1,"Synthula","Resource","Rare",8.33},
        {"Interception","Easy","A",1,"Lith T1 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith N3 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith B2 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V4 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith A2 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V2 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith V3 Relic","Relic","Rare",8.33},
        {"Interception","Easy","A",1,"Lith H1 Relic","Relic","Rare",8.33},
        {"Interception","Easy","B",1,"Speed Trigger","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Fast Deflection","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Rush","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Target Cracker","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"No Return","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Serration","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Hornet Strike","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Reflex Coil","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Deep Freeze","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"North Wind","Mod","Rare",5.26},
        {"Interception","Easy","B",1,"Meso O1 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso N5 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso C3 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso S2 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso G1 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso S5 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso N4 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso V5 Relic","Relic","Rare",5.26},
        {"Interception","Easy","B",1,"Meso S6 Relic","Relic","Rare",5.26},
        {"Interception","Easy","C",1,"Meso O1 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso N5 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso C3 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso S2 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso G1 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso S5 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Natural Talent","Mod","Rare",2.58},
        {"Interception","Easy","C",1,"Meso N4 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso V5 Relic","Relic","Uncommon",10.82},
        {"Interception","Easy","C",1,"Meso S6 Relic","Relic","Uncommon",10.82},
        {"Interception","Hard","A",1,"Vitality","Mod","Uncommon",11.11},
        {"Interception","Hard","A",1,"Magazine Warp","Mod","Uncommon",11.11},
        {"Interception","Hard","A",1,"Trick Mag","Mod","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo V5 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo S7 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo B2 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo S8 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo V2 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","A",1,"Neo H1 Relic","Relic","Uncommon",11.11},
        {"Interception","Hard","B",1,"Axi N4 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","B",1,"Axi N5 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","B",1,"Axi V6 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","B",1,"Axi E2 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","B",1,"Axi O1 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","B",1,"Axi B2 Relic","Relic","Uncommon",16.67},
        {"Interception","Hard","C",1,"Axi N4 Relic","Relic","Rare",2.58},
        {"Interception","Hard","C",1,"Axi N5 Relic","Relic","Uncommon",19.48},
        {"Interception","Hard","C",1,"Axi E2 Relic","Relic","Uncommon",19.48},
        {"Interception","Hard","C",1,"Axi O1 Relic","Relic","Uncommon",19.48},
        {"Interception","Hard","C",1,"Axi V6 Relic","Relic","Uncommon",19.48},
        {"Interception","Hard","C",1,"Axi B2 Relic","Relic","Uncommon",19.48},
        {"Interception","Medium","A",1,"Vitality","Mod","Rare",7.69},
        {"Interception","Medium","A",1,"Magazine Warp","Mod","Rare",7.69},
        {"Interception","Medium","A",1,"Trick Mag","Mod","Rare",7.69},
        {"Interception","Medium","A",1,"Meso O1 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso N5 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso C3 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso S2 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso G1 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso S5 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",15,"Endo","Endo","Rare",7.69},
        {"Interception","Medium","A",1,"Meso N4 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso V5 Relic","Relic","Rare",7.69},
        {"Interception","Medium","A",1,"Meso S6 Relic","Relic","Rare",7.69},
        {"Interception","Medium","B",1,"Target Cracker","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"No Return","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"Serration","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"Reflex Coil","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"North Wind","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Interception","Medium","B",1,"Neo V5 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Neo S7 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Neo B2 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Neo S8 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Neo V2 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",1,"Neo H1 Relic","Relic","Rare",7.14},
        {"Interception","Medium","B",50,"Endo","Endo","Rare",7.14},
        {"Interception","Medium","C",1,"Neo V5 Relic","Relic","Uncommon",16.67},
        {"Interception","Medium","C",1,"Neo S7 Relic","Relic","Uncommon",16.67},
        {"Interception","Medium","C",1,"Neo B2 Relic","Relic","Uncommon",16.67},
        {"Interception","Medium","C",1,"Neo S8 Relic","Relic","Uncommon",16.67},
        {"Interception","Medium","C",1,"Neo V2 Relic","Relic","Uncommon",16.67},
        {"Interception","Medium","C",1,"Neo H1 Relic","Relic","Uncommon",16.67},
        {"Mobile Defense","Archwing","A",1,"Polar Magazine","Mod","Common",38.72},
        {"Mobile Defense","Archwing","A",1,"Superior Defenses","Mod","Common",38.72},
        {"Mobile Defense","Archwing","A",1,"Meteor Crash","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Nebula Bore","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Astral Slash","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Comet Blast","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Quasar Drill","Mod","Rare",3.76},
        {"Mobile Defense","Archwing","A",1,"Zodiac Shred","Mod","Rare",3.76},
        {"Pursuit","Archwing","A",1,"Tempered Blade","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Sudden Impact","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Poisonous Sting","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Glacial Edge","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",150,"Endo","Endo","Uncommon",10.84},
        {"Pursuit","Archwing","A",1,"Furor","Mod","Uncommon",10.84},
        {"Pursuit","Archwing","A",50,"Endo","Endo","Uncommon",22.11},
        {"Pursuit","Archwing","A",80,"Endo","Endo","Rare",2.01},
        {"Pursuit","Archwing","B",1,"Extend","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Superior Defenses","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Cutting Edge","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"System Reroute","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Efficient Transferral","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",1,"Blazing Steel","Mod","Rare",3.76},
        {"Pursuit","Archwing","B",150,"Endo","Endo","Very Common",77.44},
        {"Pursuit","Archwing","C",400,"Endo","Endo","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso N5 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso C3 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso S2 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso O1 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso G1 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso S5 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso N4 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso V5 Relic","Relic","Uncommon",10},
        {"Pursuit","Archwing","C",1,"Meso S6 Relic","Relic","Uncommon",10},
        {"Rathuum","Easy","A",4000,"Credits Cache","Credits","Very Common",75.88},
        {"Rathuum","Easy","A",250,"Endo","Endo","Uncommon",22.11},
        {"Rathuum","Easy","A",1,"Forma Blueprint","Blueprint","Legendary",0.34},
        {"Rathuum","Easy","A",1,"Crushing Ruin","Mod","Legendary",0.34},
        {"Rathuum","Easy","A",1,"Final Harbinger","Mod","Legendary",0.34},
        {"Rathuum","Easy","A",1,"Vermillion Storm","Mod","Legendary",0.34},
        {"Rathuum","Easy","A",1,"Stalking Fan","Mod","Legendary",0.34},
        {"Rathuum","Easy","A",1,"Decisive Judgement","Mod","Legendary",0.34},
        {"Rathuum","Hard","A",5000,"Credits Cache","Credits","Very Common",75.5},
        {"Rathuum","Hard","A",240,"Endo","Endo","Uncommon",22},
        {"Rathuum","Hard","A",1,"Forma Blueprint","Blueprint","Legendary",0.5},
        {"Rathuum","Hard","A",1,"Crimson Dervish","Mod","Legendary",0.5},
        {"Rathuum","Hard","A",1,"Astral Twilight","Mod","Legendary",0.5},
        {"Rathuum","Hard","A",1,"Blind Justice","Mod","Legendary",0.5},
        {"Rathuum","Hard","A",1,"Tempo Royale","Mod","Legendary",0.25},
        {"Rathuum","Hard","A",1,"Vengeful Revenant","Mod","Legendary",0.25},
        {"Rescue","Easy","B",1,"Vapor Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Easy","C",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Hard","A",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Hard","B",1,"Force Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Hard","C",1,"Cosmic Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Medium","A",1,"Phase Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Medium","B",1,"Force Specter Blueprint","Blueprint","Very Common",100},
        {"Rescue","Medium","C",1,"Cosmic Specter Blueprint","Blueprint","Very Common",100},
        {"Rush","Archwing","A",1,"Tempered Blade","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Sudden Impact","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Poisonous Sting","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Glacial Edge","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",14.29},
        {"Rush","Archwing","A",150,"Endo","Endo","Uncommon",14.29},
        {"Rush","Archwing","A",1,"Furor","Mod","Uncommon",14.29},
        {"Rush","Archwing","B",1,"Extend","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Superior Defenses","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Cutting Edge","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"System Reroute","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Efficient Transferral","Mod","Rare",3.76},
        {"Rush","Archwing","B",1,"Blazing Steel","Mod","Rare",3.76},
        {"Rush","Archwing","B",150,"Endo","Endo","Very Common",77.44},
        {"Rush","Archwing","C",1,"Meteor Crash","Mod","Rare",7.52},
        {"Rush","Archwing","C",1,"Nebula Bore","Mod","Rare",7.52},
        {"Rush","Archwing","C",1,"Astral Slash","Mod","Rare",7.52},
        {"Rush","Archwing","C",400,"Endo","Endo","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith T1 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V2 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith N3 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith B2 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V4 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith A2 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith V3 Relic","Relic","Rare",8.6},
        {"Rush","Archwing","C",1,"Lith H1 Relic","Relic","Rare",8.6},
        {"Sabotage","Archwing","A",1,"Glacial Edge","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Galvanized Blade","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Tempered Blade","Mod","Uncommon",25.81},
        {"Sabotage","Archwing","A",1,"Meteor Crash","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Nebula Bore","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Astral Slash","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Comet Blast","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Quasar Drill","Mod","Rare",3.76},
        {"Sabotage","Archwing","A",1,"Zodiac Shred","Mod","Rare",3.76},
        {"Sabotage","Derelict","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Sabotage","Derelict","A",3000,"Credits Cache","Credits","Uncommon",14.29},
        {"Sabotage","Derelict","A",1000,"Nano Spores","Resource","Uncommon",14.29},
        {"Sabotage","Derelict","A",80,"Endo","Endo","Uncommon",14.29},
        {"Sabotage","Derelict","A",150,"Endo","Endo","Uncommon",14.29},
        {"Sabotage","Derelict","A",1,"Thief's Wit","Mod","Uncommon",14.29},
        {"Sabotage","Derelict","A",3,"Mutagen Sample","Resource","Uncommon",14.29},
        {"Sabotage","Derelict","B",4000,"Credits Cache","Credits","Uncommon",15.18},
        {"Sabotage","Derelict","B",5000,"Credits Cache","Credits","Uncommon",15.18},
        {"Sabotage","Derelict","B",150,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Derelict","B",1,"Neurodes","Resource","Uncommon",15.18},
        {"Sabotage","Derelict","B",2,"Neurodes","Resource","Rare",4.42},
        {"Sabotage","Derelict","B",80,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Rare",2.01},
        {"Sabotage","Derelict","B",1,"Cleanse Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Bane Of Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Smite Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","B",1,"Expel Infested","Mod","Rare",4.42},
        {"Sabotage","Derelict","C",1,"Argon Crystal","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Argon Crystal","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Orokin Cell","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Orokin Cell","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Neural Sensors","Resource","Uncommon",19.36},
        {"Sabotage","Derelict","C",2,"Neural Sensors","Resource","Rare",3.76},
        {"Sabotage","Derelict","C",240,"Endo","Endo","Uncommon",19.36},
        {"Sabotage","Derelict","C",400,"Endo","Endo","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Enemy Sense","Mod","Rare",3.76},
        {"Sabotage","Derelict","C",1,"Master Thief","Mod","Rare",3.76},
        {"Sabotage","Earth","A",1000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",1500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Earth","B",300,"Ferrite","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",150,"Rubedo","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Detonite Ampule","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",45,"Endo","Endo","Uncommon",12.18},
        {"Sabotage","Earth","B",75,"Endo","Endo","Uncommon",12.18},
        {"Sabotage","Earth","B",2500,"Credits Cache","Credits","Uncommon",12.18},
        {"Sabotage","Earth","B",3000,"Credits Cache","Credits","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Neurodes","Resource","Uncommon",12.18},
        {"Sabotage","Earth","B",1,"Kubrow Egg","Item","Rare",2.58},
        {"Sabotage","Earth","C",1,"Health Restore","Item","Uncommon",15.1},
        {"Sabotage","Earth","C",1,"Health Restore","Item","Uncommon",15.1},
        {"Sabotage","Earth","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Earth","C",100,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Earth","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Earth","C",1,"Bite","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Armor","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Health","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Link Shields","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Maul","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Hastened Deflection","Mod","Rare",3.67},
        {"Sabotage","Earth","C",1,"Forma Blueprint","Blueprint","Rare",2},
        {"Sabotage","Earth","C",1,"Forma","Resource","Legendary",0.5},
        {"Sabotage","Easy","A",1000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",1500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Sabotage","Easy","B",45,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Easy","B",240,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",750,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",750,"Alloy Plate","Resource","Uncommon",12.65},
        {"Sabotage","Easy","B",250,"Endo","Endo","Uncommon",22.11},
        {"Sabotage","Easy","B",240,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Easy","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Easy","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Easy","C",150,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Morphics","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Gallium","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Easy","C",2,"Morphics","Resource","Rare",5.5},
        {"Sabotage","Easy","C",2,"Gallium","Resource","Rare",5.5},
        {"Sabotage","Easy","C",2,"Neurodes","Resource","Rare",5.5},
        {"Sabotage","Easy","C",160,"Endo","Endo","Rare",5.5},
        {"Sabotage","Easy","C",1,"Argon Crystal","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Tellurium","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Nitain Extract","Resource","Legendary",0.67},
        {"Sabotage","Easy","C",1,"Xiphos Fuselage Blueprint","Blueprint","Legendary",0.5},
        {"Sabotage","Hard","A",4000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Hard","A",5000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","Hard","A",10000,"Credits Cache","Credits","Uncommon",22.56},
        {"Sabotage","Hard","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Hard","B",400,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",400,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","Hard","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Hard","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Hard","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","Hard","C",80,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",150,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Orokin Cell","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Gallium","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",1,"Neurodes","Resource","Uncommon",12.58},
        {"Sabotage","Hard","C",240,"Endo","Endo","Uncommon",12.58},
        {"Sabotage","Hard","C",400,"Endo","Endo","Rare",3.67},
        {"Sabotage","Hard","C",2,"Orokin Cell","Resource","Rare",3.67},
        {"Sabotage","Hard","C",2,"Gallium","Resource","Rare",3.67},
        {"Sabotage","Hard","C",2,"Neurodes","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Argon Crystal","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Tellurium","Resource","Rare",3.67},
        {"Sabotage","Hard","C",1,"Nitain Extract","Resource","Rare",2},
        {"Sabotage","Hard","C",1,"Xiphos Avionics Blueprint","Blueprint","Legendary",0.5},
        {"Sabotage","Hive","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Sabotage","Hive","A",3000,"Credits Cache","Credits","Uncommon",16.67},
        {"Sabotage","Hive","A",1000,"Nano Spores","Resource","Uncommon",16.67},
        {"Sabotage","Hive","A",50,"Endo","Endo","Uncommon",16.67},
        {"Sabotage","Hive","A",150,"Endo","Endo","Uncommon",16.67},
        {"Sabotage","Hive","A",1,"Thief's Wit","Mod","Uncommon",16.67},
        {"Sabotage","Hive","B",4000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Hive","B",5000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Hive","B",350,"Plastids","Resource","Uncommon",15.49},
        {"Sabotage","Hive","B",3,"Mutagen Sample","Resource","Uncommon",15.49},
        {"Sabotage","Hive","B",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","B",1,"Contagious Spread","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Pathogen Rounds","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Infected Clip","Mod","Rare",5.64},
        {"Sabotage","Hive","B",1,"Fever Strike","Mod","Rare",5.64},
        {"Sabotage","Hive","C",1,"Neurodes","Resource","Uncommon",15.49},
        {"Sabotage","Hive","C",2,"Neurodes","Resource","Uncommon",15.49},
        {"Sabotage","Hive","C",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","C",240,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Hive","C",1,"Enemy Sense","Mod","Uncommon",15.49},
        {"Sabotage","Hive","C",400,"Endo","Endo","Rare",4.51},
        {"Sabotage","Hive","C",1,"Mutalist Alad V Nav Coordinate","Resource","Rare",4.51},
        {"Sabotage","Hive","C",1,"High Voltage","Mod","Rare",4.51},
        {"Sabotage","Hive","C",1,"Shell Shock","Mod","Rare",4.51},
        {"Sabotage","Hive","C",1,"Firestorm","Mod","Rare",4.51},
        {"Sabotage","Medium","A",2500,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","A",3000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","A",4000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","Medium","B",75,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",150,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","Medium","B",300,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",350,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","Medium","B",250,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Medium","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","Medium","B",400,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Medium","B",640,"Endo","Endo","Ultra Rare",1.01},
        {"Sabotage","Medium","C",80,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Medium","C",150,"Endo","Endo","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Orokin Cell","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Gallium","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",1,"Neurodes","Resource","Uncommon",15.1},
        {"Sabotage","Medium","C",240,"Endo","Endo","Rare",4.4},
        {"Sabotage","Medium","C",2,"Orokin Cell","Resource","Rare",4.4},
        {"Sabotage","Medium","C",2,"Gallium","Resource","Rare",4.4},
        {"Sabotage","Medium","C",2,"Neurodes","Resource","Rare",4.4},
        {"Sabotage","Medium","C",1,"Tellurium","Resource","Rare",4.4},
        {"Sabotage","Medium","C",1,"Argon Crystal","Resource","Ultra Rare",1},
        {"Sabotage","Medium","C",1,"Nitain Extract","Resource","Ultra Rare",1},
        {"Sabotage","Medium","C",1,"Xiphos Engines Blueprint","Blueprint","Legendary",0.5},
        {"Sabotage","Uranus","A",2500,"Credits Cache","Credits","Uncommon",20},
        {"Sabotage","Uranus","A",3000,"Credits Cache","Credits","Uncommon",20},
        {"Sabotage","Uranus","A",300,"Polymer Bundle","Resource","Uncommon",20},
        {"Sabotage","Uranus","A",45,"Endo","Endo","Uncommon",20},
        {"Sabotage","Uranus","A",150,"Endo","Endo","Uncommon",20},
        {"Sabotage","Uranus","B",4000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Uranus","B",5000,"Credits Cache","Credits","Uncommon",15.49},
        {"Sabotage","Uranus","B",150,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","B",300,"Plastids","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","B",80,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","B",1,"Battering Maneuver","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Mobilize","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Piercing Step","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Rending Turn","Mod","Rare",4.51},
        {"Sabotage","Uranus","B",1,"Patagium","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",2,"Gallium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",3,"Gallium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",240,"Endo","Endo","Uncommon",15.49},
        {"Sabotage","Uranus","C",250,"Oxium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",1,"Tellurium","Resource","Uncommon",15.49},
        {"Sabotage","Uranus","C",1,"Lightning Dash","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Firewalker","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Ice Spring","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",1,"Toxic Flight","Mod","Rare",4.51},
        {"Sabotage","Uranus","C",400,"Endo","Endo","Rare",4.51},
        {"Sabotage","VoidEasy","A",3000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","VoidEasy","A",4000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","VoidEasy","A",5000,"Credits Cache","Credits","Common",33.33},
        {"Sabotage","VoidEasy","B",15,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","VoidEasy","B",50,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","VoidEasy","B",80,"Endo","Endo","Uncommon",12.65},
        {"Sabotage","VoidEasy","B",240,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","VoidEasy","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","VoidEasy","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","VoidEasy","B",400,"Circuits","Resource","Uncommon",12.65},
        {"Sabotage","VoidEasy","B",400,"Rubedo","Resource","Uncommon",12.65},
        {"Sabotage","VoidEasy","B",300,"Plastids","Resource","Uncommon",12.65},
        {"Sabotage","VoidEasy","C",80,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","VoidEasy","C",150,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","VoidEasy","C",1,"Neurodes","Resource","Uncommon",18.88},
        {"Sabotage","VoidEasy","C",240,"Endo","Endo","Uncommon",18.88},
        {"Sabotage","VoidEasy","C",400,"Endo","Endo","Rare",3.67},
        {"Sabotage","VoidEasy","C",2,"Orokin Cell","Resource","Rare",3.67},
        {"Sabotage","VoidEasy","C",2,"Gallium","Resource","Rare",3.67},
        {"Sabotage","VoidEasy","C",2,"Neurodes","Resource","Rare",3.67},
        {"Sabotage","VoidEasy","C",1,"Argon Crystal","Resource","Rare",3.67},
        {"Sabotage","VoidEasy","C",1,"Bullet Dance","Mod","Rare",3.67},
        {"Sabotage","VoidEasy","C",1,"Nitain Extract","Resource","Rare",2},
        {"Sabotage","VoidEasy","C",1,"Xiphos Avionics Blueprint","Blueprint","Legendary",0.5},
        {"Sabotage","VoidHard","A",5000,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","VoidHard","A",7500,"Credits Cache","Credits","Common",38.72},
        {"Sabotage","VoidHard","A",10000,"Credits Cache","Credits","Uncommon",22.56},
        {"Sabotage","VoidHard","B",150,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","VoidHard","B",240,"Endo","Endo","Uncommon",15.18},
        {"Sabotage","VoidHard","B",320,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","VoidHard","B",400,"Endo","Endo","Uncommon",11.06},
        {"Sabotage","VoidHard","B",640,"Endo","Endo","Rare",2.01},
        {"Sabotage","VoidHard","B",400,"Circuits","Resource","Uncommon",15.18},
        {"Sabotage","VoidHard","B",400,"Rubedo","Resource","Uncommon",15.18},
        {"Sabotage","VoidHard","B",300,"Plastids","Resource","Uncommon",15.18},
        {"Sabotage","VoidHard","C",150,"Endo","Endo","Uncommon",25.29},
        {"Sabotage","VoidHard","C",240,"Endo","Endo","Uncommon",25.29},
        {"Sabotage","VoidHard","C",400,"Endo","Endo","Rare",4.42},
        {"Sabotage","VoidHard","C",1,"Neurodes","Resource","Uncommon",25.29},
        {"Sabotage","VoidHard","C",2,"Orokin Cell","Resource","Rare",4.42},
        {"Sabotage","VoidHard","C",2,"Gallium","Resource","Rare",4.42},
        {"Sabotage","VoidHard","C",1,"Argon Crystal","Resource","Rare",4.42},
        {"Sabotage","VoidHard","C",1,"Bullet Dance","Mod","Rare",4.42},
        {"Sabotage","VoidHard","C",1,"Nitain Extract","Resource","Ultra Rare",1.01},
        {"Sabotage","VoidHard","C",1,"Xiphos Avionics Blueprint","Blueprint","Ultra Rare",1.01},
        {"Salvage","All","A",1,"Vitality","Mod","Uncommon",11.11},
        {"Salvage","All","A",1,"Magazine Warp","Mod","Uncommon",11.11},
        {"Salvage","All","A",1,"Trick Mag","Mod","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo V5 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo V2 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo S7 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo S8 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo B2 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","A",1,"Neo H1 Relic","Relic","Uncommon",11.11},
        {"Salvage","All","B",1,"Axi N4 Relic","Relic","Rare",7.14},
        {"Salvage","All","B",1,"Axi N5 Relic","Relic","Rare",7.14},
        {"Salvage","All","B",1,"Axi E2 Relic","Relic","Rare",7.14},
        {"Salvage","All","B",1,"Axi V6 Relic","Relic","Rare",7.14},
        {"Salvage","All","B",1,"Axi O1 Relic","Relic","Rare",7.14},
        {"Salvage","All","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Salvage","All","B",1,"Reflex Coil","Mod","Rare",7.14},
        {"Salvage","All","B",1,"Deep Freeze","Mod","Rare",7.14},
        {"Salvage","All","B",1,"North Wind","Mod","Rare",7.14},
        {"Salvage","All","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Salvage","All","B",1,"Streamline","Mod","Rare",7.14},
        {"Salvage","All","B",1,"Shocking Touch","Mod","Rare",7.14},
        {"Salvage","All","B",50,"Endo","Endo","Rare",7.14},
        {"Salvage","All","B",1,"Axi B2 Relic","Relic","Rare",7.14},
        {"Salvage","All","C",1,"Nidus Systems Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Nidus Neuroptics Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Nidus Chassis Blueprint","Blueprint","Uncommon",14.29},
        {"Salvage","All","C",1,"Vital Sense","Mod","Uncommon",14.29},
        {"Salvage","All","C",1,"Metal Auger","Mod","Uncommon",14.29},
        {"Salvage","All","C",1,"Stretch","Mod","Uncommon",14.29},
        {"Salvage","All","C",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Easy","A",1,"Synthula","Resource","Uncommon",14.29},
        {"Spy","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Easy","A",1,"Reflection","Mod","Uncommon",14.29},
        {"Spy","Easy","A",1,"Reflex Guard","Mod","Uncommon",14.29},
        {"Spy","Easy","A",1,"Parry","Mod","Uncommon",14.29},
        {"Spy","Easy","B",1,"Lith V2 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith T1 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith N3 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith B2 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith V4 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith A2 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith V3 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","B",1,"Lith H1 Relic","Relic","Uncommon",12.5},
        {"Spy","Easy","C",2000,"Credits Cache","Credits","Rare",9.09},
        {"Spy","Easy","C",3000,"Credits Cache","Credits","Rare",9.09},
        {"Spy","Easy","C",1,"Reflection","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Parry","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Heavy Impact","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Serration","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Hornet Strike","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Metal Auger","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Volcanic Edge","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Vicious Frost","Mod","Rare",9.09},
        {"Spy","Easy","C",1,"Ivara Systems Blueprint","Blueprint","Rare",9.09},
        {"Spy","Hard","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Hard","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Hard","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Hard","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Hard","A",1,"Steady Hands","Mod","Uncommon",14.29},
        {"Spy","Hard","A",1,"Stabilizer","Mod","Uncommon",14.29},
        {"Spy","Hard","A",1,"Power Throw","Mod","Uncommon",14.29},
        {"Spy","Hard","B",1,"Meso N5 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso O1 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso S2 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso C3 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso G1 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Neo V5 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo S7 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo S8 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo B2 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo V2 Relic","Relic","Rare",4.51},
        {"Spy","Hard","B",1,"Neo H1 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso S5 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso N4 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso V5 Relic","Relic","Rare",7.74},
        {"Spy","Hard","B",1,"Meso S6 Relic","Relic","Rare",7.74},
        {"Spy","Hard","C",4000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Hard","C",5000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Hard","C",1,"Power Throw","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Stretch","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Hell's Chamber","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Scorch","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Thermite Rounds","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Frostbite","Mod","Rare",7.52},
        {"Spy","Hard","C",1,"Frigid Blast","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Arrow Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Sniper Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Shotgun Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Covert Lethality","Mod","Rare",6.45},
        {"Spy","Hard","C",1,"Ivara Neuroptics Blueprint","Blueprint","Rare",7.52},
        {"Spy","Hard","C",1,"Ivara Blueprint","Blueprint","Rare",7.52},
        {"Spy","Kuva Fortress","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",2500,"Credits Cache","Credits","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",50,"Endo","Endo","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",80,"Endo","Endo","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Steady Hands","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Stabilizer","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","A",1,"Power Throw","Mod","Uncommon",14.29},
        {"Spy","Kuva Fortress","B",1,"Meso N5 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso O1 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso S2 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso C3 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso G1 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Neo V5 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo S7 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo S8 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo B2 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo V2 Relic","Relic","Rare",4.51},
        {"Spy","Kuva Fortress","B",1,"Neo H1 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso S5 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso N4 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso V5 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","B",1,"Meso S6 Relic","Relic","Rare",7.74},
        {"Spy","Kuva Fortress","C",4000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Kuva Fortress","C",5000,"Credits Cache","Credits","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Power Throw","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Stretch","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Hell's Chamber","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Scorch","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Thermite Rounds","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Frostbite","Mod","Uncommon",11.28},
        {"Spy","Kuva Fortress","C",1,"Frigid Blast","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Arrow Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Sniper Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Shotgun Ammo Mutation","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Covert Lethality","Mod","Rare",6.45},
        {"Spy","Kuva Fortress","C",1,"Harrow Neuroptics Blueprint","Blueprint","Uncommon",11.28},
        {"Spy","Lua","A",1,"Blood Rush","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Hydraulic Crosshairs","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Shrapnel Shot","Mod","Uncommon",12.18},
        {"Spy","Lua","A",100,"Endo","Endo","Uncommon",12.18},
        {"Spy","Lua","A",1,"Fast Hands","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Point Strike","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Piercing Hit","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Pistol Gambit","Mod","Uncommon",12.18},
        {"Spy","Lua","A",1,"Gnashing Payara","Mod","Ultra Rare",1.29},
        {"Spy","Lua","A",1,"Astral Twilight","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",1,"Focused Defense","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Catalyzer Link","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Target Cracker","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"No Return","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Serration","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Hornet Strike","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Reflex Coil","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Deep Freeze","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"North Wind","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Cryo Rounds","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Hell's Chamber","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Streamline","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Shocking Touch","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"Stormbringer","Mod","Rare",6.49},
        {"Spy","Lua","B",1,"High Noon","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",1,"Crushing Ruin","Mod","Ultra Rare",1.29},
        {"Spy","Lua","B",150,"Endo","Endo","Rare",6.49},
        {"Spy","Lua","C",1,"Rime Rounds","Mod","Rare",7.37},
        {"Spy","Lua","C",1,"Scattering Inferno","Mod","Rare",7.37},
        {"Spy","Lua","C",400,"Endo","Endo","Common",37.94},
        {"Spy","Lua","C",1,"Coiling Viper","Mod","Common",37.94},
        {"Spy","Lua","C",1,"Cleaving Whirlwind","Mod","Rare",2.01},
        {"Spy","Lua","C",1,"Ivara Chassis Blueprint","Blueprint","Rare",7.37},
        {"Spy","Medium","A",1,"Vitality","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Magazine Warp","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Trick Mag","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Pressure Point","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Ammo Drum","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Fast Hands","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Point Strike","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Piercing Hit","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Pistol Gambit","Mod","Rare",9.09},
        {"Spy","Medium","A",1,"Blunderbuss","Mod","Rare",9.09},
        {"Spy","Medium","A",15,"Endo","Endo","Rare",9.09},
        {"Spy","Medium","B",1,"Speed Trigger","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Fast Deflection","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Rush","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Target Cracker","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"No Return","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Serration","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Hornet Strike","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Reflex Coil","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Deep Freeze","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"North Wind","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Cryo Rounds","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Hell's Chamber","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Streamline","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Shocking Touch","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Stormbringer","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Point Blank","Mod","Rare",5.56},
        {"Spy","Medium","B",1,"Fury","Mod","Rare",5.56},
        {"Spy","Medium","B",50,"Endo","Endo","Rare",5.56},
        {"Spy","Medium","C",1,"Metal Auger","Mod","Rare",5.64},
        {"Spy","Medium","C",1,"Rime Rounds","Mod","Rare",5.64},
        {"Spy","Medium","C",1,"Scattering Inferno","Mod","Rare",5.64},
        {"Spy","Medium","C",80,"Endo","Endo","Rare",7.74},
        {"Spy","Medium","C",1,"Meso N5 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso C3 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso S2 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso G1 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso O1 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Ivara Chassis Blueprint","Blueprint","Rare",5.64},
        {"Spy","Medium","C",1,"Meso S5 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso N4 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso V5 Relic","Relic","Rare",7.74},
        {"Spy","Medium","C",1,"Meso S6 Relic","Relic","Rare",7.74},
        {"Survival","Derelict","A",1,"Lith V2 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith T1 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith N3 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith B2 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith V4 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith A2 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith V3 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","A",320,"Endo","Endo","Uncommon",10},
        {"Survival","Derelict","A",400,"Endo","Endo","Uncommon",10},
        {"Survival","Derelict","A",1,"Lith H1 Relic","Relic","Uncommon",10},
        {"Survival","Derelict","B",1,"Neo V2 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Neo S7 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Neo V5 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Neo S8 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Mutalist Alad V Nav Coordinate","Resource","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Neo B2 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","B",1,"Neo H1 Relic","Relic","Uncommon",14.29},
        {"Survival","Derelict","C",1,"Axi N4 Relic","Relic","Uncommon",12.91},
        {"Survival","Derelict","C",1,"Axi N5 Relic","Relic","Uncommon",12.91},
        {"Survival","Derelict","C",1,"Axi V6 Relic","Relic","Uncommon",12.91},
        {"Survival","Derelict","C",1,"Axi E2 Relic","Relic","Uncommon",12.91},
        {"Survival","Derelict","C",1,"Axi O1 Relic","Relic","Uncommon",12.91},
        {"Survival","Derelict","C",1,"Octavia Neuroptics Blueprint","Blueprint","Uncommon",22.56},
        {"Survival","Derelict","C",1,"Axi B2 Relic","Relic","Uncommon",12.91},
        {"Survival","Easy","A",1,"Synthula","Resource","Uncommon",14.29},
        {"Survival","Easy","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy","A",15,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","A",50,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","A",80,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith T1 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith B2 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Survival","Easy","B",1,"Parry","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Intensify","Mod","Rare",7.14},
        {"Survival","Easy","B",1,"Lith H1 Relic","Relic","Rare",7.14},
        {"Survival","Easy","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith T1 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith B2 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Survival","Easy","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Cleanse Grineer","Mod","Rare",3.76},
        {"Survival","Easy","C",1,"Lith H1 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","A",500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",1000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",1500,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",2000,"Credits Cache","Credits","Uncommon",14.29},
        {"Survival","Easy2","A",15,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","A",50,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","A",80,"Endo","Endo","Uncommon",14.29},
        {"Survival","Easy2","B",1,"Lith V2 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith T1 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith N3 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith B2 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith V4 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith A2 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith V3 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","B",1,"Parry","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Incendiary Coat","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Intensify","Mod","Rare",7.14},
        {"Survival","Easy2","B",1,"Lith H1 Relic","Relic","Rare",7.14},
        {"Survival","Easy2","C",1,"Lith V2 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith T1 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith N3 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith B2 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith V4 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith A2 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"Lith V3 Relic","Relic","Rare",9.68},
        {"Survival","Easy2","C",1,"True Punishment","Mod","Uncommon",11.28},
        {"Survival","Easy2","C",1,"Quickening","Mod","Uncommon",11.28},
        {"Survival","Easy2","C",1,"Lith H1 Relic","Relic","Rare",9.68},
        {"Survival","Eris","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Eris","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Eris","B",1,"Neo V5 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","B",1,"Neo S7 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","B",1,"Neo S8 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","B",1,"Neo B2 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","B",1,"Neo V2 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","B",1,"Neo H1 Relic","Relic","Uncommon",16.67},
        {"Survival","Eris","C",1,"Axi N4 Relic","Relic","Uncommon",14.29},
        {"Survival","Eris","C",1,"Axi N5 Relic","Relic","Uncommon",14.29},
        {"Survival","Eris","C",1,"Axi V6 Relic","Relic","Uncommon",14.29},
        {"Survival","Eris","C",1,"Axi E2 Relic","Relic","Uncommon",14.29},
        {"Survival","Eris","C",1,"Axi O1 Relic","Relic","Uncommon",14.29},
        {"Survival","Eris","C",1,"Life Strike","Mod","Uncommon",14.29},
        {"Survival","Eris","C",1,"Axi B2 Relic","Relic","Uncommon",14.29},
        {"Survival","Hard","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Hard","B",1,"Neo V5 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Neo S7 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Neo S8 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Neo B2 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Neo V2 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Neo H1 Relic","Relic","Rare",7.14},
        {"Survival","Hard","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Stretch","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Flow","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Split Chamber","Mod","Rare",7.14},
        {"Survival","Hard","B",1,"Stabilizer","Mod","Rare",7.14},
        {"Survival","Hard","C",1,"Axi N4 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard","C",1,"Axi N5 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard","C",1,"Axi V6 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard","C",1,"Axi E2 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard","C",1,"Axi O1 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard","C",1,"Cleanse Infested","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Hard","C",1,"Axi B2 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Hard2","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Hard2","B",1,"Neo V5 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Neo S7 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Neo S8 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Neo B2 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Neo V2 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Neo H1 Relic","Relic","Rare",7.14},
        {"Survival","Hard2","B",1,"Steel Fiber","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Stretch","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Serration","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Hell's Chamber","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Hornet Strike","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Flow","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Split Chamber","Mod","Rare",7.14},
        {"Survival","Hard2","B",1,"Stabilizer","Mod","Rare",7.14},
        {"Survival","Hard2","C",1,"Axi N4 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","C",1,"Axi N5 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","C",1,"Axi V6 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","C",1,"Axi E2 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","C",1,"Axi O1 Relic","Relic","Uncommon",12.91},
        {"Survival","Hard2","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Survival","Hard2","C",1,"Life Strike","Mod","Uncommon",11.28},
        {"Survival","Hard2","C",1,"Axi B2 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium","A",15,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","A",50,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","A",80,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium","B",1,"Meso N5 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso O1 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso S2 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso C3 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso G1 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso S5 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Provoked","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Steel Fiber","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Serration","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Hornet Strike","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Fast Deflection","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Charged Shell","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Vital Sense","Mod","Rare",6.25},
        {"Survival","Medium","B",1,"Meso N4 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso V5 Relic","Relic","Rare",6.25},
        {"Survival","Medium","B",1,"Meso S6 Relic","Relic","Rare",6.25},
        {"Survival","Medium","C",1,"Neo V5 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Neo S7 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Neo S8 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Neo B2 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Neo V2 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Neo H1 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium","C",1,"Cleanse Corpus","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Pistol Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Arrow Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Rifle Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Sniper Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium","C",1,"Shotgun Ammo Mutation","Mod","Rare",3.76},
        {"Survival","Medium2","A",1500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",2000,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",2500,"Credits Cache","Credits","Uncommon",16.67},
        {"Survival","Medium2","A",15,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","A",50,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","A",80,"Endo","Endo","Uncommon",16.67},
        {"Survival","Medium2","B",1,"Meso N5 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso O1 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso S2 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso C3 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso G1 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso S5 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Provoked","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Steel Fiber","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Serration","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Hornet Strike","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Fast Deflection","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Charged Shell","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Vital Sense","Mod","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso N4 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso V5 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","B",1,"Meso S6 Relic","Relic","Rare",6.25},
        {"Survival","Medium2","C",1,"Neo V5 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Neo S7 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Neo S8 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Neo B2 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Neo V2 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Neo H1 Relic","Relic","Uncommon",12.91},
        {"Survival","Medium2","C",1,"Quickening","Mod","Uncommon",11.28},
        {"Survival","Medium2","C",1,"Enduring Strike","Mod","Uncommon",11.28},
        {"Survival","Mot","A",2000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",2500,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",3000,"Credits Cache","Credits","Uncommon",25},
        {"Survival","Mot","A",400,"Endo","Endo","Uncommon",25},
        {"Survival","Mot","B",1,"Neo V5 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","B",1,"Neo S7 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","B",1,"Neo S8 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","B",1,"Neo B2 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","B",1,"Neo V2 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","B",1,"Neo H1 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi N4 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi N5 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi V6 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi E2 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi O1 Relic","Relic","Uncommon",16.67},
        {"Survival","Mot","C",1,"Axi B2 Relic","Relic","Uncommon",16.67},
        {"Assassinate","Alad V","A",1,"Valkyr Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Alad V","A",1,"Valkyr Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Alad V","A",1,"Valkyr Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Ambulas","A",1,"Excalibur Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Ambulas","A",1,"Excalibur Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Ambulas","A",1,"Excalibur Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Hyena Pack","A",1,"Loki Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Hyena Pack","A",1,"Loki Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Hyena Pack","A",1,"Loki Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Jackal","A",1,"Rhino Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Jackal","A",1,"Rhino Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Jackal","A",1,"Rhino Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kela De Thaym","A",1,"Saryn Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Barrel","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Blade","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Handle","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Chassis","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Miter Blueprint","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 1","A",1,"Twin Gremlins Blueprint","Blueprint","Uncommon",16.67},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Kril and Vor 2","A",1,"Trinity Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Lech Kril","A",1,"Frost Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Lech Kril","A",1,"Frost Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Lech Kril","A",1,"Frost Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Lephantis","A",1,"Nekros Chassis Blueprint","Blueprint","Common",33.33},
        {"Assassinate","Lephantis","A",1,"Nekros Neuroptics Blueprint","Blueprint","Common",33.33},
        {"Assassinate","Lephantis","A",1,"Nekros Systems Blueprint","Blueprint","Common",33.33},
        {"Assassinate","Raptor","A",1,"Nova Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Raptor","A",1,"Nova Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Raptor","A",1,"Nova Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Sargas Ruk","A",1,"Ember Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sargas Ruk","A",1,"Ember Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sargas Ruk","A",1,"Ember Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Sergeant","A",1,"Mag Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sergeant","A",1,"Mag Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Sergeant","A",1,"Mag Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Vay Hek","A",1,"Hydroid Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vay Hek","A",1,"Hydroid Chassis Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vay Hek","A",1,"Hydroid Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Assassinate","Vor","A",1,"Seer Blueprint","Blueprint","Common",38.72},
        {"Assassinate","Vor","A",1,"Seer Barrel","Blueprint","Common",38.72},
        {"Assassinate","Vor","A",1,"Seer Receiver","Blueprint","Uncommon",22.56},
        {"Cephalon Capture","All","A",400,"Endo","Endo","Rare",8.33},
        {"Cephalon Capture","All","A",1,"Blind Shot","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Barrel","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Lucky Shot","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Gauge","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hydraulic Chamber","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Feathered Arrows","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Heightened Reflexes","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Hastened Steps","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Adrenaline Boost","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Vital Systems Bypass","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Secondary Wind","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Deft Tempo","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Plan B","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Kill Switch","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Gorgon Frenzy","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Grinloked","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Double Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Triple Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Final Tap","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Directed Convergence","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Sudden Justice","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Focused Acceleration","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Measured Burst","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Heavy Warhead","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Final Act","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Tactical Retreat","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Mortal Conduct","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Soaring Strike","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Emergent Aftermath","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Static Alacrity","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Thundermiter","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Shrapnel Rounds","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Ambush Optics","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Skull Shots","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Brain Storm","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Draining Gloom","Mod","Rare",2.48},
        {"Cephalon Capture","All","A",1,"Precision Munition","Mod","Rare",2.48},
        {"Cephalon Capture","All","B",400,"Alloy Plate","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",600,"Cryotic","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",400,"Ferrite","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",500,"Nano Spores","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",500,"Polymer Bundle","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",600,"Salvage","Resource","Uncommon",12.65},
        {"Cephalon Capture","All","B",100,"Circuits","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",120,"Plastids","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",100,"Rubedo","Resource","Rare",7.37},
        {"Cephalon Capture","All","B",1,"Argon Crystal","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Control Module","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Gallium","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Morphics","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Neural Sensors","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Neurodes","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Orokin Cell","Resource","Legendary",0.25},
        {"Cephalon Capture","All","B",1,"Forma Blueprint","Blueprint","Legendary",0.25},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Night Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Aspect Blueprint","Blueprint","Uncommon",11.28},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Chassis Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Neuroptics Blueprint","Blueprint","Uncommon",12.91},
        {"Assassinate","Tyl Regor","A",1,"Equinox Day Systems Blueprint","Blueprint","Uncommon",12.91},
        {"Nightmare","All","A",1,"Ice Storm","Mod","Uncommon",18.97},
        {"Nightmare","All","A",1,"Stunning Speed","Mod","Uncommon",18.97},
        {"Nightmare","All","A",1,"Hammer Shot","Mod","Ultra Rare",1.01},
        {"Nightmare","All","A",1,"Wildfire","Mod","Uncommon",18.97},
        {"Nightmare","All","A",1,"Accelerated Blast","Mod","Uncommon",18.97},
        {"Nightmare","All","A",1,"Blaze","Mod","Ultra Rare",1.01},
        {"Nightmare","All","A",1,"Chilling Reload","Mod","Uncommon",22.11},
        {"Nightmare","All","B",1,"Drifting Contact","Mod","Uncommon",22.56},
        {"Nightmare","All","B",1,"Seeking Fury","Mod","Uncommon",15.49},
        {"Nightmare","All","B",1,"Armored Agility","Mod","Uncommon",15.49},
        {"Nightmare","All","B",1,"Shred","Mod","Uncommon",15.49},
        {"Nightmare","All","B",1,"Rending Strike","Mod","Uncommon",15.49},
        {"Nightmare","All","B",1,"Fortitude","Mod","Uncommon",15.49},
        {"Nightmare","All","C",1,"Streamlined Form","Mod","Uncommon",22.56},
        {"Nightmare","All","C",1,"Constitution","Mod","Uncommon",15.49},
        {"Nightmare","All","C",1,"Vigor","Mod","Uncommon",15.49},
        {"Nightmare","All","C",1,"Lethal Torrent","Mod","Uncommon",15.49},
        {"Nightmare","All","C",1,"Focus Energy","Mod","Uncommon",15.49},
        {"Nightmare","All","C",1,"Animal Instinct","Mod","Uncommon",15.49},
    },
    ["Enemies"] = {
        {"Kuva Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Kuva Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Kuva Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Kuva Lancer",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Kuva Lancer",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Kuva Lancer",3,1,"Streamline","Mod","Legendary",0.5},
        {"Kuva Lancer",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Kuva Lancer",3,80,"Endo","Endo","Legendary",0.5},
        {"Ancient Disruptor",3,1,"Flechette","Mod","Uncommon",25.29},
        {"Ancient Disruptor",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Ancient Disruptor",3,1,"Expel Infested","Mod","Uncommon",11.06},
        {"Ancient Disruptor",3,1,"Lasting Sting","Mod","Uncommon",25.29},
        {"Ancient Disruptor",3,1,"Cleaving Whirlwind","Mod","Ultra Rare",1.01},
        {"Ancient Disruptor",3,1,"Relentless Combination","Mod","Uncommon",11.06},
        {"Ancient Disruptor",3,1,"Adhesive Blast","Mod","Ultra Rare",1.01},
        {"Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Lancer",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Lancer",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Lancer",3,1,"Streamline","Mod","Legendary",0.5},
        {"Lancer",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Lancer",3,80,"Endo","Endo","Legendary",0.5},
        {"Orokin Spectator",3,1,"Guardian","Mod","Uncommon",25.29},
        {"Orokin Spectator",3,1,"Coolant Leak","Mod","Legendary",0.67},
        {"Orokin Spectator",3,1,"Fired Up","Mod","Legendary",0.67},
        {"Orokin Spectator",3,1,"Hush","Mod","Uncommon",25.29},
        {"Orokin Spectator",3,15,"Endo","Endo","Common",25.29},
        {"Orokin Spectator",3,50,"Endo","Endo","Uncommon",22.11},
        {"Locust Drone",20,1,"Sudden Impact","Mod","Common",37.94},
        {"Locust Drone",20,1,"Rubedo-Lined Barrel","Mod","Uncommon",11.06},
        {"Locust Drone",20,1,"Hyperion Thrusters","Mod","Rare",2.01},
        {"Locust Drone",20,15,"Endo","Endo","Common",37.94},
        {"Locust Drone",20,50,"Endo","Endo","Uncommon",11.06},
        {"Regulator",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Regulator",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Regulator",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Regulator",3,1,"Fury","Mod","Rare",7.37},
        {"Regulator",3,1,"Convulsion","Mod","Rare",7.37},
        {"Regulator",3,15,"Endo","Endo","Common",25.29},
        {"Regulator",3,50,"Endo","Endo","Uncommon",7.37},
        {"Regulator",3,80,"Endo","Endo","Rare",1.01},
        {"Vay Hek Terra Frame",100,1,"Cryo Rounds","Mod","Rare",4.42},
        {"Vay Hek Terra Frame",100,1,"Stretch","Mod","Rare",4.42},
        {"Vay Hek Terra Frame",100,1,"Molten Impact","Mod","Rare",4.42},
        {"Vay Hek Terra Frame",100,1,"Killing Blow","Mod","Rare",4.42},
        {"Vay Hek Terra Frame",100,1,"Energy Channel","Mod","Ultra Rare",1.01},
        {"Vay Hek Terra Frame",100,15,"Endo","Endo","Common",75.88},
        {"Vay Hek Terra Frame",100,50,"Endo","Endo","Uncommon",4.42},
        {"Vay Hek Terra Frame",100,80,"Endo","Endo","Rare",1.01},
        {"Bailiff Defector",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Bailiff Defector",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Bailiff Defector",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Bailiff Defector",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Bailiff Defector",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Bailiff Defector",3,1,"North Wind","Mod","Rare",5.53},
        {"Bailiff Defector",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Bailiff Defector",3,15,"Endo","Endo","Common",18.97},
        {"Bailiff Defector",3,50,"Endo","Endo","Uncommon",5.53},
        {"Bailiff Defector",3,80,"Endo","Endo","Rare",1.01},
        {"MOA",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"MOA",3,1,"North Wind","Mod","Uncommon",11.06},
        {"MOA",3,1,"Energy Channel","Mod","Ultra Rare",1.01},
        {"MOA",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"MOA",3,1,"Revenge","Mod","Uncommon",25.29},
        {"MOA",3,15,"Endo","Endo","Common",25.29},
        {"MOA",3,80,"Endo","Endo","Rare",1.01},
        {"Shield Osprey",3,1,"Hawk Eye","Mod","Rare",7.37},
        {"Shield Osprey",3,1,"Shotgun Spazz","Mod","Rare",7.37},
        {"Shield Osprey",3,1,"Shock Absorbers","Mod","Ultra Rare",1.01},
        {"Shield Osprey",3,15,"Endo","Endo","Common",75.88},
        {"Shield Osprey",3,50,"Endo","Endo","Uncommon",7.37},
        {"Shield Osprey",3,80,"Endo","Endo","Rare",1.01},
        {"Feral Kubrow",3,1,"Hunt","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Stalk","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Dig","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Howl","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Protect","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Scavenge","Mod","Uncommon",25.29},
        {"Feral Kubrow",3,1,"Unleashed","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Ferocity","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Link Armor","Mod","Rare",3.69},
        {"Feral Kubrow",3,1,"Link Health","Mod","Rare",3.69},
        {"Feral Kubrow",3,1,"Link Shields","Mod","Rare",3.69},
        {"Feral Kubrow",3,1,"Loyal Companion","Mod","Uncommon",25.29},
        {"Feral Kubrow",3,1,"Hastened Deflection","Mod","Rare",3.69},
        {"Feral Kubrow",3,1,"Savagery","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Pack Leader","Mod","Uncommon",25.29},
        {"Feral Kubrow",3,1,"Maul","Mod","Rare",3.69},
        {"Feral Kubrow",3,1,"Bite","Mod","Legendary",0.22},
        {"Feral Kubrow",3,1,"Shelter","Mod","Rare",3.69},
        {"Tyl Regor",100,1,"Vitality","Mod","Uncommon",25.81},
        {"Tyl Regor",100,1,"Cryo Rounds","Mod","Rare",7.52},
        {"Tyl Regor",100,1,"True Steel","Mod","Uncommon",25.81},
        {"Tyl Regor",100,1,"Shocking Touch","Mod","Rare",7.52},
        {"Tyl Regor",100,1,"Steel Fiber","Mod","Uncommon",25.81},
        {"Tyl Regor",100,1,"Lethal Momentum","Mod","Rare",7.52},
        {"Charger",3,1,"Convulsion","Mod","Rare",7.37},
        {"Charger",3,1,"Speed Trigger","Mod","Rare",7.37},
        {"Charger",3,1,"Regen","Mod","Uncommon",18.97},
        {"Charger",3,1,"Calculated Redirection","Mod","Uncommon",18.97},
        {"Charger",3,1,"Rupture","Mod","Uncommon",18.97},
        {"Charger",3,1,"Fracturing Wind","Mod","Rare",7.37},
        {"Charger",3,15,"Endo","Endo","Uncommon",18.97},
        {"Charger",3,80,"Endo","Endo","Uncommon",2.01},
        {"Attack Drone",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Attack Drone",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Attack Drone",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Attack Drone",3,1,"Fury","Mod","Rare",7.37},
        {"Attack Drone",3,1,"Convulsion","Mod","Rare",7.37},
        {"Attack Drone",3,15,"Endo","Endo","Common",25.29},
        {"Attack Drone",3,50,"Endo","Endo","Uncommon",7.37},
        {"Attack Drone",3,80,"Endo","Endo","Rare",1.01},
        {"Latcher",3,1,"True Steel","Mod","Uncommon",18.97},
        {"Latcher",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Latcher",3,1,"Hellfire","Mod","Rare",7.37},
        {"Latcher",3,1,"Fast Deflection","Mod","Rare",7.37},
        {"Latcher",3,1,"Enhanced Vitality","Mod","Uncommon",18.97},
        {"Latcher",3,15,"Endo","Endo","Common",18.97},
        {"Latcher",3,50,"Endo","Endo","Uncommon",7.37},
        {"Latcher",3,80,"Endo","Endo","Rare",2.01},
        {"Roller",3,1,"True Steel","Mod","Uncommon",18.97},
        {"Roller",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Roller",3,1,"Hellfire","Mod","Rare",7.37},
        {"Roller",3,1,"Fast Deflection","Mod","Rare",7.37},
        {"Roller",3,1,"Enhanced Vitality","Mod","Uncommon",18.97},
        {"Roller",3,15,"Endo","Endo","Common",18.97},
        {"Roller",3,50,"Endo","Endo","Uncommon",7.37},
        {"Roller",3,80,"Endo","Endo","Rare",2.01},
        {"Swarm Mutalist MOA",3,1,"Lightning Rod","Mod","Uncommon",25.29},
        {"Swarm Mutalist MOA",3,1,"Flame Repellent","Mod","Uncommon",25.29},
        {"Swarm Mutalist MOA",3,1,"Seeker","Mod","Ultra Rare",1.01},
        {"Swarm Mutalist MOA",3,15,"Endo","Endo","Common",25.29},
        {"Swarm Mutalist MOA",3,50,"Endo","Endo","Uncommon",22.11},
        {"Swarm Mutalist MOA",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Jester",2.5,1,"Lightning Dash","Mod","Uncommon",20},
        {"Kuva Jester",2.5,1,"Firewalker","Mod","Uncommon",20},
        {"Kuva Jester",2.5,1,"Ice Spring","Mod","Uncommon",20},
        {"Kuva Jester",2.5,1,"Toxic Flight","Mod","Uncommon",20},
        {"Kuva Jester",2.5,1,"Astral Twilight","Mod","Uncommon",20},
        {"Lephantis (Head)",100,1,"Pressure Point","Mod","Common",38.72},
        {"Lephantis (Head)",100,1,"Parry","Mod","Common",38.72},
        {"Lephantis (Head)",100,1,"Provoked","Mod","Rare",7.52},
        {"Lephantis (Head)",100,1,"Equilibrium","Mod","Rare",7.52},
        {"Lephantis (Head)",100,1,"Eleventh Storm","Mod","Rare",7.52},
        {"Lephantis (Corpus Head)",100,1,"Pressure Point","Mod","Common",38.72,true},
        {"Lephantis (Corpus Head)",100,1,"Parry","Mod","Common",38.72,true},
        {"Lephantis (Corpus Head)",100,1,"Provoked","Mod","Rare",7.52,true},
        {"Lephantis (Corpus Head)",100,1,"Equilibrium","Mod","Rare",7.52,true},
        {"Lephantis (Corpus Head)",100,1,"Eleventh Storm","Mod","Rare",7.52,true},
        {"Lephantis (Infested Head)",100,1,"Pressure Point","Mod","Common",38.72,true},
        {"Lephantis (Infested Head)",100,1,"Parry","Mod","Common",38.72,true},
        {"Lephantis (Infested Head)",100,1,"Provoked","Mod","Rare",7.52,true},
        {"Lephantis (Infested Head)",100,1,"Equilibrium","Mod","Rare",7.52,true},
        {"Lephantis (Infested Head)",100,1,"Eleventh Storm","Mod","Rare",7.52,true},
        {"Lephantis (Grineer Head)",100,1,"Pressure Point","Mod","Common",38.72,true},
        {"Lephantis (Grineer Head)",100,1,"Parry","Mod","Common",38.72,true},
        {"Lephantis (Grineer Head)",100,1,"Provoked","Mod","Rare",7.52,true},
        {"Lephantis (Grineer Head)",100,1,"Equilibrium","Mod","Rare",7.52,true},
        {"Lephantis (Grineer Head)",100,1,"Eleventh Storm","Mod","Rare",7.52,true},
        {"Alad V",100,1,"Vitality","Mod","Uncommon",25.29},
        {"Alad V",100,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Alad V",100,1,"Slip Magazine","Mod","Uncommon",25.29},
        {"Alad V",100,1,"Gunslinger","Mod","Uncommon",11.06},
        {"Alad V",100,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Alad V",100,1,"Intensify","Mod","Rare",2.01},
        {"Vem Tabook",50,1,"Hell's Chamber","Mod","Uncommon",20},
        {"Vem Tabook",50,1,"Barrel Diffusion","Mod","Uncommon",20},
        {"Vem Tabook",50,1,"Split Chamber","Mod","Uncommon",20},
        {"Vem Tabook",50,1,"Natural Talent","Mod","Uncommon",20},
        {"Vem Tabook",50,80,"Endo","Endo","Uncommon",20},
        {"Vem Tabook",50,1,"Scimitar Fuselage Blueprint","Blueprint","Common",50},
        {"Vem Tabook",50,1,"Brakk Blueprint","Blueprint","Common",50},
        {"Leekter",100,1,"Hell's Chamber","Mod","Uncommon",20},
        {"Leekter",100,1,"Barrel Diffusion","Mod","Uncommon",20},
        {"Leekter",100,1,"Split Chamber","Mod","Uncommon",20},
        {"Leekter",100,1,"Natural Talent","Mod","Uncommon",20},
        {"Leekter",100,80,"Endo","Endo","Uncommon",20},
        {"Mutalist Alad V",100,1,"Vitality","Mod","Uncommon",25.29},
        {"Mutalist Alad V",100,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Mutalist Alad V",100,1,"Slip Magazine","Mod","Uncommon",25.29},
        {"Mutalist Alad V",100,1,"Gunslinger","Mod","Uncommon",11.06},
        {"Mutalist Alad V",100,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Mutalist Alad V",100,1,"Intensify","Mod","Rare",2.01},
        {"Jackal",100,1,"Blunderbuss","Mod","Very Common",75.88},
        {"Jackal",100,1,"Shell Compression","Mod","Rare",7.37},
        {"Jackal",100,1,"Tactical Pump","Mod","Rare",7.37},
        {"Jackal",100,1,"Shock Absorbers","Mod","Ultra Rare",1.01},
        {"Jackal",100,1,"Handspring","Mod","Ultra Rare",1.01},
        {"Jackal",100,1,"Ruinous Extension","Mod","Rare",7.37},
        {"Hyena Pack",60,1,"Master Thief","Mod","Rare",2.01},
        {"Hyena Pack",60,1,"North Wind","Mod","Uncommon",22.11},
        {"Hyena Pack",60,1,"True Steel","Mod","Common",37.94},
        {"Hyena Pack",60,1,"Trick Mag","Mod","Common",37.94},
        {"Phorid",100,1,"Cryo Rounds","Mod","Uncommon",22.92},
        {"Phorid",100,1,"Stretch","Mod","Uncommon",22.92},
        {"Phorid",100,1,"Molten Impact","Mod","Uncommon",22.92},
        {"Phorid",100,1,"Killing Blow","Mod","Uncommon",22.92},
        {"Phorid",100,1,"Energy Channel","Mod","Rare",8.33},
        {"J3 Jordas Golem",100,1,"Pressure Point","Mod","Common",37.94},
        {"J3 Jordas Golem",100,1,"Streamline","Mod","Rare",2.01},
        {"J3 Jordas Golem",100,1,"Magazine Warp","Mod","Common",37.94},
        {"J3 Jordas Golem",100,1,"Incendiary Coat","Mod","Uncommon",11.06},
        {"J3 Jordas Golem",100,1,"Bane of Infested","Mod","Uncommon",11.06},
        {"The Sergeant",100,1,"Reflex Coil","Mod","Uncommon",15.04},
        {"The Sergeant",100,1,"Shocking Touch","Mod","Rare",7.52},
        {"The Sergeant",100,1,"Magazine Warp","Mod","Common",38.72},
        {"The Sergeant",100,1,"Thief's Wit","Mod","Common",38.72},
        {"Ambulas",80,1,"Pressure Point","Mod","Common",38.72},
        {"Ambulas",80,1,"Heated Charge","Mod","Rare",5.64},
        {"Ambulas",80,1,"Molten Impact","Mod","Rare",5.64},
        {"Ambulas",80,1,"Magazine Warp","Mod","Common",38.72},
        {"Ambulas",80,1,"Hellfire","Mod","Rare",5.64},
        {"Ambulas",80,1,"Fast Deflection","Mod","Rare",5.64},
        {"Lieutenant Lech Kril",100,1,"Cryo Rounds","Mod","Uncommon",22.92},
        {"Lieutenant Lech Kril",100,1,"Stretch","Mod","Uncommon",22.92},
        {"Lieutenant Lech Kril",100,1,"Molten Impact","Mod","Uncommon",22.92},
        {"Lieutenant Lech Kril",100,1,"Killing Blow","Mod","Uncommon",22.92},
        {"Lieutenant Lech Kril",100,1,"Energy Channel","Mod","Rare",8.33},
        {"Kela De Thaym",100,1,"Electromagnetic Shielding","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Vulcan Blitz","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Hunter's Bonesaw","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Rift Strike","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Nightwatch Napalm","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Acid Shells","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Harkonar Scope","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Fomorian Accelerant","Mod","Uncommon",11.11},
        {"Kela De Thaym",100,1,"Medi-Ray","Mod","Uncommon",11.11},
        {"Kela De Thaym",25,1,"Twin Kohmak Blueprint","Blueprint","Very Common",100},
        {"Councilor Vay Hek",100,1,"Cryo Rounds","Mod","Rare",4.42},
        {"Councilor Vay Hek",100,1,"Stretch","Mod","Rare",4.42},
        {"Councilor Vay Hek",100,1,"Molten Impact","Mod","Rare",4.42},
        {"Councilor Vay Hek",100,1,"Killing Blow","Mod","Rare",4.42},
        {"Councilor Vay Hek",100,1,"Energy Channel","Mod","Ultra Rare",1.01},
        {"Councilor Vay Hek",100,15,"Endo","Endo","Common",75.88},
        {"Councilor Vay Hek",100,50,"Endo","Endo","Uncommon",4.42},
        {"Councilor Vay Hek",100,80,"Endo","Endo","Rare",1.01},
        {"Shik Tal",100,1,"Hell's Chamber","Mod","Uncommon",20},
        {"Shik Tal",100,1,"Barrel Diffusion","Mod","Uncommon",20},
        {"Shik Tal",100,1,"Split Chamber","Mod","Uncommon",20},
        {"Shik Tal",100,1,"Natural Talent","Mod","Uncommon",20},
        {"Shik Tal",100,80,"Endo","Endo","Uncommon",20},
        {"Raptor",100,1,"Reflex Coil","Mod","Uncommon",11.06,true},
        {"Raptor",100,1,"Stretch","Mod","Uncommon",11.06,true},
        {"Raptor",100,1,"Organ Shatter","Mod","Common",37.94,true},
        {"Raptor",100,1,"Reach","Mod","Common",37.94,true},
        {"Raptor",100,1,"Split Chamber","Mod","Rare",2.01,true},
        {"Infested Mesa",3,1,"Rage","Mod","Uncommon",20},
        {"Infested Mesa",3,1,"Berserker","Mod","Uncommon",20},
        {"Infested Mesa",3,1,"Flow","Mod","Uncommon",20},
        {"Infested Mesa",3,1,"Master Thief","Mod","Uncommon",20},
        {"Infested Mesa",3,1,"Decisive Judgement","Mod","Uncommon",20},
        {"Seeker",3,1,"Killing Blow","Mod","Rare",7.37},
        {"Seeker",3,1,"Barrel Diffusion","Mod","Legendary",0.67},
        {"Seeker",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Seeker",3,1,"Sawtooth Clip","Mod","Very Common",75.88},
        {"Seeker",3,1,"Crushing Ruin","Mod","Legendary",0.67},
        {"Seeker",3,1,"Shimmering Blight","Mod","Rare",7.37},
        {"Seeker",3,80,"Endo","Endo","Legendary",0.67},
        {"Arid Seeker",3,1,"Killing Blow","Mod","Rare",7.37},
        {"Arid Seeker",3,1,"Barrel Diffusion","Mod","Legendary",0.67},
        {"Arid Seeker",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Arid Seeker",3,1,"Sawtooth Clip","Mod","Very Common",75.88},
        {"Arid Seeker",3,1,"Crushing Ruin","Mod","Legendary",0.67},
        {"Arid Seeker",3,1,"Shimmering Blight","Mod","Rare",7.37},
        {"Arid Seeker",3,80,"Endo","Endo","Legendary",0.67},
        {"Frontier Seeker",3,1,"Killing Blow","Mod","Rare",7.37},
        {"Frontier Seeker",3,1,"Barrel Diffusion","Mod","Legendary",0.67},
        {"Frontier Seeker",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Frontier Seeker",3,1,"Sawtooth Clip","Mod","Very Common",75.88},
        {"Frontier Seeker",3,1,"Crushing Ruin","Mod","Legendary",0.67},
        {"Frontier Seeker",3,1,"Shimmering Blight","Mod","Rare",7.37},
        {"Frontier Seeker",3,80,"Endo","Endo","Legendary",0.67},
        {"Drekar Seeker",3,1,"Killing Blow","Mod","Rare",7.37},
        {"Drekar Seeker",3,1,"Barrel Diffusion","Mod","Legendary",0.67},
        {"Drekar Seeker",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Drekar Seeker",3,1,"Sawtooth Clip","Mod","Very Common",75.88},
        {"Drekar Seeker",3,1,"Crushing Ruin","Mod","Legendary",0.67},
        {"Drekar Seeker",3,1,"Battering Maneuver","Mod","Rare",7.37},
        {"Drekar Seeker",3,80,"Endo","Endo","Legendary",0.67},
        {"Detron Crewman",3,1,"Melee Prowess","Mod","Uncommon",25.81},
        {"Detron Crewman",3,1,"Infected Clip","Mod","Rare",5.64},
        {"Detron Crewman",3,1,"Concussion Rounds","Mod","Rare",5.64},
        {"Detron Crewman",3,1,"Shredder","Mod","Uncommon",25.81},
        {"Detron Crewman",3,1,"Sinking Talon","Mod","Rare",5.64},
        {"Detron Crewman",3,15,"Endo","Endo","Common",25.81},
        {"Detron Crewman",3,50,"Endo","Endo","Uncommon",5.64},
        {"Volatile Runner",3,1,"Sundering Strike","Mod","Ultra Rare",1.01},
        {"Volatile Runner",3,1,"Reach","Mod","Uncommon",25.29},
        {"Volatile Runner",3,1,"Point Blank","Mod","Uncommon",11.06},
        {"Volatile Runner",3,1,"Ghost","Mod","Uncommon",25.29},
        {"Volatile Runner",3,1,"Concussion Rounds","Mod","Uncommon",11.06},
        {"Volatile Runner",3,15,"Endo","Endo","Common",25.29},
        {"Volatile Runner",3,80,"Endo","Endo","Rare",1.01},
        {"Hyekka Master",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Hyekka Master",3,1,"Fast Hands","Mod","Uncommon",25.29},
        {"Hyekka Master",3,1,"Pressure Point","Mod","Uncommon",25.29},
        {"Hyekka Master",3,15,"Endo","Endo","Common",25.29},
        {"Hyekka Master",3,50,"Endo","Endo","Uncommon",22.11},
        {"Hyekka Master",3,80,"Endo","Endo","Rare",1.01},
        {"Hyekka Master",1.5,1,"Kavat Incubator Upgrade Segment Blueprint","Blueprint","Very Common",100},
        {"Railgun MOA",3,1,"Trick Mag","Mod","Common",38.72},
        {"Railgun MOA",3,1,"Charged Chamber","Mod","Uncommon",11.28},
        {"Railgun MOA",3,15,"Endo","Endo","Common",38.72},
        {"Railgun MOA",3,50,"Endo","Endo","Uncommon",11.28},
        {"General Sargas Ruk",100,1,"Pressure Point","Mod","Common",37.94},
        {"General Sargas Ruk",100,1,"Melee Prowess","Mod","Common",37.94},
        {"General Sargas Ruk",100,1,"Continuity","Mod","Ultra Rare",1.01},
        {"General Sargas Ruk",100,1,"Split Chamber","Mod","Ultra Rare",1.01},
        {"General Sargas Ruk",100,1,"Shotgun Savvy","Mod","Uncommon",11.06},
        {"General Sargas Ruk",100,1,"Shattering Storm","Mod","Uncommon",11.06},
        {"Brood Mother",3,1,"Flechette","Mod","Uncommon",25.29},
        {"Brood Mother",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Brood Mother",3,1,"Expel Infested","Mod","Uncommon",22.11},
        {"Brood Mother",3,1,"Lasting Sting","Mod","Uncommon",25.29},
        {"Brood Mother",3,1,"High Noon","Mod","Ultra Rare",1.01},
        {"Brood Mother",3,80,"Endo","Endo","Ultra Rare",1.01},
        {"Drekar Manic",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Drekar Manic",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Drekar Manic",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Drekar Manic",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Drekar Manic",3,1,"North Wind","Mod","Rare",5.53},
        {"Drekar Manic",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Drekar Manic",3,1,"Final Harbinger","Mod","Rare",5.53},
        {"Drekar Manic",3,15,"Endo","Endo","Common",18.97},
        {"Drekar Manic",3,50,"Endo","Endo","Uncommon",5.53},
        {"Drekar Manic",3,80,"Endo","Endo","Rare",1.01},
        {"Denial Bursa",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"Denial Bursa",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Denial Bursa",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Denial Bursa",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Denial Bursa",3,1,"Astral Twilight","Mod","Rare",2.01},
        {"Denial Bursa",3,15,"Endo","Endo","Uncommon",25.29},
        {"Juggernaut",3,1,"Convulsion","Mod","Rare",7.37},
        {"Juggernaut",3,1,"Speed Trigger","Mod","Rare",7.37},
        {"Juggernaut",3,1,"Regen","Mod","Uncommon",18.97},
        {"Juggernaut",3,1,"Calculated Redirection","Mod","Uncommon",18.97},
        {"Juggernaut",3,1,"Rupture","Mod","Uncommon",18.97},
        {"Juggernaut",3,1,"Fracturing Wind","Mod","Rare",7.37},
        {"Juggernaut",3,15,"Endo","Endo","Common",18.97},
        {"Juggernaut",3,80,"Endo","Endo","Rare",2.01},
        {"Juggernaut",10,1,"Pherliac Pods Blueprint","Blueprint","Very Common",100},
        {"Butcher",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Butcher",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Butcher",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Butcher",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Butcher",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Butcher",3,1,"North Wind","Mod","Rare",5.53},
        {"Butcher",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Butcher",3,15,"Endo","Endo","Common",18.97},
        {"Butcher",3,50,"Endo","Endo","Uncommon",5.53},
        {"Butcher",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Guardian",40,1,"Vermilion Storm","Mod","Ultra Rare",1.01},
        {"Kuva Guardian",40,15,"Endo","Endo","Common",75.88},
        {"Kuva Guardian",40,50,"Endo","Endo","Uncommon",22.11},
        {"Kuva Guardian",40,80,"Endo","Endo","Rare",1.01},
        {"Frontier Trooper",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Frontier Trooper",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Frontier Trooper",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Frontier Trooper",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Frontier Trooper",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Frontier Trooper",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Frontier Trooper",3,80,"Endo","Endo","Rare",2.01},
        {"Remech Osprey",3,1,"Vitality","Mod","Uncommon",25.29,true},
        {"Remech Osprey",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01,true},
        {"Remech Osprey",3,1,"Melee Prowess","Mod","Uncommon",25.29,true},
        {"Remech Osprey",3,1,"Fury","Mod","Rare",7.37,true},
        {"Remech Osprey",3,1,"Convulsion","Mod","Rare",7.37,true},
        {"Remech Osprey",3,15,"Endo","Endo","Common",25.29,true},
        {"Remech Osprey",3,50,"Endo","Endo","Uncommon",7.37,true},
        {"Remech Osprey",3,80,"Endo","Endo","Rare",1.01,true},
        {"Drekar Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Drekar Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.67},
        {"Drekar Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Drekar Lancer",3,1,"Heated Charge","Mod","Rare",7.37},
        {"Drekar Lancer",3,1,"Diamond Skin","Mod","Rare",7.37},
        {"Drekar Lancer",3,1,"Streamline","Mod","Legendary",0.67},
        {"Drekar Lancer",3,1,"Mobilize","Mod","Rare",7.37},
        {"Drekar Lancer",3,80,"Endo","Endo","Legendary",0.67},
        {"Drekar Elite Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Drekar Elite Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.67},
        {"Drekar Elite Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Drekar Elite Lancer",3,1,"Heated Charge","Mod","Rare",7.37},
        {"Drekar Elite Lancer",3,1,"Diamond Skin","Mod","Rare",7.37},
        {"Drekar Elite Lancer",3,1,"Streamline","Mod","Legendary",0.67},
        {"Drekar Elite Lancer",3,1,"Mobilize","Mod","Rare",7.37},
        {"Drekar Elite Lancer",3,80,"Endo","Endo","Legendary",0.67},
        {"Drekar Scorpion",3,1,"Pressure Point","Mod","Common",37.94},
        {"Drekar Scorpion",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Drekar Scorpion",3,1,"Vitality","Mod","Common",37.94},
        {"Drekar Scorpion",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Drekar Scorpion",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Drekar Scorpion",3,1,"Streamline","Mod","Legendary",0.5},
        {"Drekar Scorpion",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Drekar Scorpion",3,80,"Endo","Endo","Legendary",0.5},
        {"Drekar Butcher",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"Drekar Butcher",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Drekar Butcher",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Drekar Butcher",3,1,"Reflex Coil","Mod","Uncommon",11.06},
        {"Drekar Butcher",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Drekar Butcher",3,1,"Ice Spring","Mod","Legendary",0.67},
        {"Drekar Butcher",3,1,"Condition Overload","Mod","Legendary",0.67},
        {"Drekar Butcher",3,1,"Shattering Impact","Mod","Uncommon",18.97},
        {"Drekar Butcher",3,80,"Endo","Endo","Legendary",0.67},
        {"Drekar Trooper",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Drekar Trooper",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Drekar Trooper",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Drekar Trooper",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Drekar Trooper",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Drekar Trooper",3,1,"Patagium","Mod","Uncommon",11.06},
        {"Drekar Trooper",3,80,"Endo","Endo","Rare",2.01},
        {"Drekar Trooper",0.5,1,"Boar Blueprint","Blueprint","Very Common",100},
        {"Drekar Heavy Gunner",3,1,"Pressure Point","Mod","Common",38.72},
        {"Drekar Heavy Gunner",3,1,"Melee Prowess","Mod","Common",38.72},
        {"Drekar Heavy Gunner",3,1,"Shotgun Savvy","Mod","Uncommon",11.28},
        {"Drekar Heavy Gunner",3,1,"Piercing Step","Mod","Uncommon",11.28},
        {"Shield Lancer",3,1,"Flechette","Mod","Uncommon",25.29},
        {"Shield Lancer",3,1,"Thief's Wit","Mod","Uncommon",25.29},
        {"Shield Lancer",3,1,"Smite Infested","Mod","Uncommon",11.06},
        {"Shield Lancer",3,1,"Retribution","Mod","Ultra Rare",1.01},
        {"Shield Lancer",3,15,"Endo","Endo","Common",25.29},
        {"Shield Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Shield Lancer",3,80,"Endo","Endo","Rare",1.01},
        {"Bombard",3,1,"True Steel","Mod","Uncommon",25.29},
        {"Bombard",3,1,"Tactical Pump","Mod","Uncommon",11.06},
        {"Bombard",3,1,"Warm Coat","Mod","Uncommon",25.29},
        {"Bombard",3,1,"Expel Grineer","Mod","Uncommon",11.06},
        {"Bombard",3,1,"Sanctuary","Mod","Legendary",0.5},
        {"Bombard",3,1,"Sure Footed","Mod","Legendary",0.5},
        {"Bombard",3,1,"Crimson Dervish","Mod","Legendary",0.5},
        {"Bombard",3,15,"Endo","Endo","Common",25.29},
        {"Bombard",3,80,"Endo","Endo","Rare",.5},
        {"Drekar Ballista",20,1,"Organ Shatter","Mod","Common",37.94},
        {"Drekar Ballista",20,1,"Toxic Flight","Mod","Rare",2.01},
        {"Drekar Ballista",20,15,"Endo","Endo","Common",37.94},
        {"Drekar Ballista",20,50,"Endo","Endo","Uncommon",22.11},
        {"Scorch",3,1,"Sure Shot","Mod","Rare",5.64},
        {"Scorch",3,1,"Bane of Grineer","Mod","Rare",5.64},
        {"Scorch",3,1,"Swift Deth","Mod","Common",38.72},
        {"Scorch",3,1,"Swirling Tiger","Mod","Rare",5.64},
        {"Scorch",3,15,"Endo","Endo","Common",38.72},
        {"Scorch",3,50,"Endo","Endo","Uncommon",5.64},
        {"Sensor Regulator",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Sensor Regulator",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Sensor Regulator",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Sensor Regulator",3,1,"Fury","Mod","Rare",7.37},
        {"Sensor Regulator",3,1,"Convulsion","Mod","Rare",7.37},
        {"Sensor Regulator",3,15,"Endo","Endo","Common",25.29},
        {"Sensor Regulator",3,50,"Endo","Endo","Uncommon",7.37},
        {"Sensor Regulator",3,80,"Endo","Endo","Rare",1.01},
        {"Guardsman",3,1,"Smite Grineer","Mod","Rare",3.69},
        {"Guardsman",3,1,"Point Strike","Mod","Uncommon",25.29},
        {"Guardsman",3,1,"Fast Hands","Mod","Uncommon",25.29},
        {"Guardsman",3,1,"Reflex Coil","Mod","Rare",3.69},
        {"Guardsman",3,1,"North Wind","Mod","Rare",3.69},
        {"Guardsman",3,1,"Pressure Point","Mod","Uncommon",25.29},
        {"Guardsman",3,1,"Enduring Affliction","Mod","Rare",3.69},
        {"Guardsman",3,1,"Atlantis Vulcan","Mod","Rare",3.69},
        {"Guardsman",3,50,"Endo","Endo","Uncommon",3.69},
        {"Guardsman",3,80,"Endo","Endo","Rare",2.01},
        {"Heavy Gunner",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Heavy Gunner",3,1,"Slip Magazine","Mod","Uncommon",18.97},
        {"Heavy Gunner",3,1,"Magazine Warp","Mod","Uncommon",18.97},
        {"Heavy Gunner",3,1,"Shell Compression","Mod","Uncommon",11.06},
        {"Heavy Gunner",3,1,"Decisive Judgement","Mod","Ultra Rare",1.01},
        {"Heavy Gunner",3,15,"Endo","Endo","Common",18.97},
        {"Heavy Gunner",3,50,"Endo","Endo","Uncommon",11.06},
        {"Heavy Gunner",3,80,"Endo","Endo","Rare",1.01},
        {"Heavy Gunner",1,1,"Gorgon Blueprint","Blueprint","Very Common",100},
        {"Commander",3,1,"Blunderbuss","Mod","Uncommon",25.81},
        {"Commander",3,1,"Slip Magazine","Mod","Uncommon",25.81},
        {"Commander",3,1,"Magazine Warp","Mod","Uncommon",25.81},
        {"Commander",3,1,"Shell Compression","Mod","Uncommon",22.56},
        {"Shock Draga",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Shock Draga",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Shock Draga",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Shock Draga",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Shock Draga",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Shock Draga",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Shock Draga",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Shock Draga",3,50,"Endo","Endo","Uncommon",11.06},
        {"Draga",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Draga",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Draga",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Draga",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Draga",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Draga",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Draga",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Draga",3,50,"Endo","Endo","Uncommon",11.06},
        {"Darek Draga",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Darek Draga",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Darek Draga",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Darek Draga",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Darek Draga",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Darek Draga",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Darek Draga",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Darek Draga",3,50,"Endo","Endo","Uncommon",11.06},
        {"Sikula",3,1,"Pressure Point","Mod","Common",37.94},
        {"Sikula",3,1,"Metal Auger","Mod","Legendary",0.67},
        {"Sikula",3,1,"Sinister Reach","Mod","Uncommon",11.06},
        {"Sikula",3,1,"Concealed Explosives","Mod","Legendary",0.67},
        {"Sikula",3,15,"Endo","Endo","Common",37.94},
        {"Sikula",3,50,"Endo","Endo","Uncommon",11.06},
        {"Sikula",3,80,"Endo","Endo","Rare",.67},
        {"Void Shade",3,1,"Serration","Mod","Uncommon",11.06,true},
        {"Void Shade",3,1,"Quickdraw","Mod","Common",37.94,true},
        {"Void Shade",3,1,"Homing Fang","Mod","Uncommon",11.06,true},
        {"Void Shade",3,15,"Endo","Endo","Common",37.94,true},
        {"Void Shade",3,80,"Endo","Endo","Rare",2.01,true},
        {"Void Shade (Nauseous)",3,1,"Serration","Mod","Uncommon",11.06,true},
        {"Void Shade (Nauseous)",3,1,"Quickdraw","Mod","Common",37.94,true},
        {"Void Shade (Nauseous)",3,1,"Homing Fang","Mod","Uncommon",11.06,true},
        {"Void Shade (Nauseous)",3,15,"Endo","Endo","Common",37.94,true},
        {"Void Shade (Nauseous)",3,80,"Endo","Endo","Rare",2.01,true},
        {"Misery",100,1,"Blood Rush","Mod","Rare",3.7},
        {"Misery",100,1,"Body Count","Mod","Rare",8.57},
        {"Misery",100,1,"Weeping Wounds","Mod","Rare",3.7},
        {"Misery",100,1,"Maiming Strike","Mod","Legendary",0.67},
        {"Misery",100,1,"Hydraulic Crosshairs","Mod","Rare",8.57},
        {"Misery",100,1,"Sharpened Bullets","Mod","Rare",3.7},
        {"Misery",100,1,"Pressurized Magazine","Mod","Legendary",0.67},
        {"Misery",100,1,"Embedded Catalyzer","Mod","Rare",3.7},
        {"Misery",100,1,"Argon Scope","Mod","Legendary",0.67},
        {"Misery",100,1,"Bladed Rounds","Mod","Rare",3.7},
        {"Misery",100,1,"Spring-Loaded Chamber","Mod","Rare",3.7},
        {"Misery",100,1,"Catalyzer Link","Mod","Rare",8.57},
        {"Misery",100,1,"Laser Sight","Mod","Rare",3.7},
        {"Misery",100,1,"Shrapnel Shot","Mod","Rare",8.57},
        {"Misery",100,1,"Repeater Clip","Mod","Rare",3.7},
        {"Misery",100,1,"Nano-Applicator","Mod","Legendary",0.67},
        {"Misery",100,1,"Targeting Subsystem","Mod","Rare",3.7},
        {"Misery",100,1,"Guided Ordnance","Mod","Rare",3.7},
        {"Misery",100,1,"Narrow Barrel","Mod","Legendary",0.67},
        {"Misery",100,1,"Focused Defense","Mod","Uncommon",25.38},
        {"Shadow Stalker",100,1,"Molten Impact","Mod","Uncommon",30.56},
        {"Shadow Stalker",100,1,"Energy Channel","Mod","Rare",2.78},
        {"Shadow Stalker",100,1,"Intensify","Mod","Rare",2.78},
        {"Shadow Stalker",100,1,"Heavy Impact","Mod","Uncommon",30.56},
        {"Shadow Stalker",100,1,"Blind Justice","Mod","Uncommon",30.56},
        {"Shadow Stalker",100,80,"Endo","Endo","Rare",2.78},
        {"Shadow Stalker",50,1,"Scimitar Engines Blueprint","Blueprint","Rare",2.01},
        {"Shadow Stalker",50,1,"Broken War Blueprint","Blueprint","Rare",5.53},
        {"Shadow Stalker",50,1,"Dread Blueprint","Blueprint","Very Common",75.88},
        {"Shadow Stalker",50,1,"Despair Blueprint","Blueprint","Rare",5.53},
        {"Shadow Stalker",50,1,"Hate Blueprint","Blueprint","Rare",5.53},
        {"Shadow Stalker",50,1,"War Blueprint","Blueprint","Rare",5.53},
        {"Crawler",3,1,"Eagle Eye","Mod","Rare",7.37},
        {"Crawler",3,1,"Steel Fiber","Mod","Common",37.94},
        {"Crawler",3,1,"Quickdraw","Mod","Common",37.94},
        {"Crawler",3,1,"Bane of Corpus","Mod","Rare",7.37},
        {"Crawler",3,1,"Healing Return","Mod","Ultra Rare",1.01},
        {"Crawler",3,50,"Endo","Endo","Uncommon",7.37},
        {"Crawler",3,80,"Endo","Endo","Rare",1.01},
        {"Lobber Crawler",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Lobber Crawler",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Lobber Crawler",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Lobber Crawler",3,1,"Heavy Impact","Mod","Uncommon",11.06},
        {"Lobber Crawler",3,15,"Endo","Endo","Common",18.97},
        {"Lobber Crawler",3,50,"Endo","Endo","Uncommon",11.06},
        {"Lobber Crawler",3,80,"Endo","Endo","Rare",2.01},
        {"Ancient Healer",3,1,"Lightning Rod","Mod","Uncommon",25.29},
        {"Ancient Healer",3,1,"Flame Repellent","Mod","Uncommon",25.29},
        {"Ancient Healer",3,1,"Seeker","Mod","Ultra Rare",1.01},
        {"Ancient Healer",3,15,"Endo","Endo","Common",25.29},
        {"Ancient Healer",3,50,"Endo","Endo","Uncommon",22.11},
        {"Ancient Healer",3,80,"Endo","Endo","Rare",1.01},
        {"Frontier Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Frontier Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Frontier Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Frontier Lancer",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Frontier Lancer",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Frontier Lancer",3,1,"Streamline","Mod","Legendary",0.5},
        {"Frontier Lancer",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Frontier Lancer",3,80,"Endo","Endo","Legendary",0.5},
        {"Frontier Butcher",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Frontier Butcher",3,1,"Reflex Coil","Mod","Rare",4.42},
        {"Frontier Butcher",3,1,"North Wind","Mod","Rare",4.42},
        {"Frontier Butcher",3,1,"Fever Strike","Mod","Rare",4.42},
        {"Frontier Butcher",3,1,"Perpetual Agony","Mod","Common",37.94},
        {"Frontier Butcher",3,1,"Rifle Aptitude","Mod","Rare",4.42},
        {"Frontier Butcher",3,1,"Blunderbuss","Mod","Common",37.94},
        {"Frontier Butcher",3,1,"Tranquil Cleave","Mod","Ultra Rare",1.01},
        {"Frontier Butcher",3,50,"Endo","Endo","Rare",4.42},
        {"Frontier Heavy Gunner",3,1,"Pressure Point","Mod","Common",37.94},
        {"Frontier Heavy Gunner",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Frontier Heavy Gunner",3,1,"Vitality","Mod","Common",37.94},
        {"Frontier Heavy Gunner",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Frontier Heavy Gunner",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Frontier Heavy Gunner",3,1,"Streamline","Mod","Legendary",0.5},
        {"Frontier Heavy Gunner",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Frontier Heavy Gunner",3,80,"Endo","Endo","Legendary",0.5},
        {"Ballista",3,1,"Organ Shatter","Mod","Common",37.94},
        {"Ballista",3,1,"Stormbringer","Mod","Uncommon",11.06},
        {"Ballista",3,15,"Endo","Endo","Common",37.94},
        {"Ballista",3,50,"Endo","Endo","Uncommon",11.06},
        {"Ballista",3,80,"Endo","Endo","Rare",2.01},
        {"Frontier Hellion",3,1,"Pressure Point","Mod","Common",37.94},
        {"Frontier Hellion",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Frontier Hellion",3,1,"Vitality","Mod","Common",37.94},
        {"Frontier Hellion",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Frontier Hellion",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Frontier Hellion",3,1,"Streamline","Mod","Legendary",0.5},
        {"Frontier Hellion",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Frontier Hellion",3,80,"Endo","Endo","Legendary",0.5},
        {"Frontier Regulator",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Frontier Regulator",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Frontier Regulator",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Frontier Regulator",3,1,"Fury","Mod","Rare",7.37},
        {"Frontier Regulator",3,1,"Convulsion","Mod","Rare",7.37},
        {"Frontier Regulator",3,15,"Endo","Endo","Common",25.29},
        {"Frontier Regulator",3,50,"Endo","Endo","Uncommon",7.37},
        {"Frontier Regulator",3,80,"Endo","Endo","Rare",1.01},
        {"Elite Frontier Lancer",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Elite Frontier Lancer",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Elite Frontier Lancer",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Elite Frontier Lancer",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Elite Frontier Lancer",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Elite Frontier Lancer",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Elite Frontier Lancer",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Elite Frontier Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Scorpion",3,1,"Master Thief","Mod","Ultra Rare",1.01},
        {"Scorpion",3,1,"Serration","Mod","Rare",7.37},
        {"Scorpion",3,1,"Lightning Rod","Mod","Common",37.94},
        {"Scorpion",3,1,"Heavy Impact","Mod","Rare",7.37},
        {"Scorpion",3,1,"Defiled Snapdragon","Mod","Ultra Rare",1.01},
        {"Scorpion",3,15,"Endo","Endo","Common",37.94},
        {"Scorpion",3,50,"Endo","Endo","Common",7.37},
        {"Frontier Eviscerator",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Frontier Eviscerator",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Frontier Eviscerator",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Frontier Eviscerator",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Frontier Eviscerator",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Frontier Eviscerator",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Frontier Eviscerator",3,80,"Endo","Endo","Rare",2.01},
        {"Nox",3,1,"Redirection","Mod","Uncommon",19.36},
        {"Nox",3,1,"Guardian","Mod","Uncommon",19.36},
        {"Nox",3,1,"Stretch","Mod","Rare",7.52},
        {"Nox",3,1,"Steel Fiber","Mod","Uncommon",19.36},
        {"Nox",3,1,"Toxin Resistance","Mod","Rare",7.52},
        {"Nox",3,1,"Aviator","Mod","Uncommon",19.36},
        {"Nox",3,50,"Endo","Endo","Rare",7.52},
        {"Drahk",3,1,"Hunt","Mod","Legendary",0.22},
        {"Drahk",3,1,"Stalk","Mod","Legendary",0.22},
        {"Drahk",3,1,"Dig","Mod","Legendary",0.22},
        {"Drahk",3,1,"Howl","Mod","Legendary",0.22},
        {"Drahk",3,1,"Protect","Mod","Legendary",0.22},
        {"Drahk",3,1,"Scavenge","Mod","Uncommon",25.29},
        {"Drahk",3,1,"Unleashed","Mod","Legendary",0.22},
        {"Drahk",3,1,"Ferocity","Mod","Legendary",0.22},
        {"Drahk",3,1,"Link Armor","Mod","Rare",3.69},
        {"Drahk",3,1,"Link Health","Mod","Rare",3.69},
        {"Drahk",3,1,"Link Shields","Mod","Rare",3.69},
        {"Drahk",3,1,"Loyal Companion","Mod","Uncommon",25.29},
        {"Drahk",3,1,"Hastened Deflection","Mod","Rare",3.69},
        {"Drahk",3,1,"Savagery","Mod","Legendary",0.22},
        {"Drahk",3,1,"Pack Leader","Mod","Uncommon",25.29},
        {"Drahk",3,1,"Maul","Mod","Rare",3.69},
        {"Drahk",3,1,"Bite","Mod","Legendary",0.22},
        {"Drahk",3,1,"Shelter","Mod","Rare",3.69},
        {"Elite Lancer",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Elite Lancer",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Elite Lancer",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Elite Lancer",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Elite Lancer",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Elite Lancer",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Elite Lancer",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Elite Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Trooper",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Trooper",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Trooper",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Trooper",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Trooper",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Trooper",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Trooper",3,80,"Endo","Endo","Rare",2.01},
        {"Powerfist",3,1,"Target Cracker","Mod","Rare",5.53},
        {"Powerfist",3,1,"Seeking Force","Mod","Ultra Rare",1.01},
        {"Powerfist",3,1,"Bane of Infested","Mod","Rare",5.53},
        {"Powerfist",3,1,"Calculated Redirection","Mod","Common",37.94},
        {"Powerfist",3,1,"Vaporize","Mod","Common",37.94},
        {"Powerfist",3,1,"Grim Fury","Mod","Rare",5.53},
        {"Powerfist",3,1,"Malicious Raptor","Mod","Ultra Rare",1.01},
        {"Powerfist",3,50,"Endo","Endo","Rare",5.53},
        {"Napalm",3,1,"Rage","Mod","Rare",2.01},
        {"Napalm",3,1,"Point Strike","Mod","Uncommon",25.29},
        {"Napalm",3,1,"Ammo Stock","Mod","Rare",5.53},
        {"Napalm",3,1,"Insulation","Mod","Uncommon",25.29},
        {"Napalm",3,1,"Gunslinger","Mod","Rare",5.53},
        {"Napalm",3,1,"Enhanced Vitality","Mod","Uncommon",25.29},
        {"Napalm",3,1,"Rending Crane","Mod","Rare",5.53},
        {"Napalm",3,50,"Endo","Endo","Rare",5.53},
        {"Flameblade",3,1,"Rifle Aptitude","Mod","Rare",7.37},
        {"Flameblade",3,1,"Trick Mag","Mod","Uncommon",25.29},
        {"Flameblade",3,1,"Enemy Sense","Mod","Ultra Rare",1.01},
        {"Flameblade",3,1,"Flame Repellent","Mod","Uncommon",25.29},
        {"Flameblade",3,1,"Cleanse Corpus","Mod","Rare",7.37},
        {"Flameblade",3,15,"Endo","Endo","Common",25.29},
        {"Flameblade",3,50,"Endo","Endo","Uncommon",7.37},
        {"Flameblade",3,80,"Endo","Endo","Rare",1.01},
        {"Corrupted Vor",100,1,"Pistol Pestilence","Mod","Uncommon",25},
        {"Corrupted Vor",100,1,"Virulent Scourge","Mod","Uncommon",25},
        {"Corrupted Vor",100,1,"Toxic Barrage","Mod","Uncommon",25},
        {"Corrupted Vor",100,1,"Malignant Force","Mod","Uncommon",25},
        {"Drekar Hellion",30,1,"Organ Shatter","Mod","Uncommon",25.29},
        {"Drekar Hellion",30,1,"Firewalker","Mod","Rare",2.01},
        {"Drekar Hellion",30,1,"Continuous Misery","Mod","Uncommon",25.29},
        {"Drekar Hellion",30,1,"Terminal Velocity","Mod","Uncommon",22.11},
        {"Drekar Hellion",30,15,"Endo","Endo","Uncommon",25.29},
        {"Drekar Eviscerator",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Drekar Eviscerator",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Drekar Eviscerator",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Drekar Eviscerator",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Drekar Eviscerator",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Drekar Eviscerator",3,1,"Rending Turn","Mod","Uncommon",11.06},
        {"Drekar Eviscerator",3,80,"Endo","Endo","Rare",2.01},
        {"Crewman",3,1,"Fury","Mod","Rare",7.37},
        {"Crewman",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Crewman",3,1,"No Return","Mod","Rare",7.37},
        {"Crewman",3,1,"Reach","Mod","Uncommon",25.29},
        {"Crewman",3,1,"Reaping Spiral","Mod","Rare",7.37},
        {"Crewman",3,15,"Endo","Endo","Common",25.29},
        {"Crewman",3,80,"Endo","Endo","Rare",2.01},
        {"Elite Crewman",3,1,"Fury","Mod","Rare",5.53},
        {"Elite Crewman",3,1,"No Return","Mod","Rare",5.53},
        {"Elite Crewman",3,1,"Infected Clip","Mod","Rare",5.53},
        {"Elite Crewman",3,1,"Jagged Edge","Mod","Legendary",0.67},
        {"Elite Crewman",3,1,"Gnashing Payara","Mod","Legendary",0.67},
        {"Elite Crewman",3,15,"Endo","Endo","Very Common",75.88},
        {"Elite Crewman",3,50,"Endo","Endo","Uncommon",5.53},
        {"Elite Crewman",3,80,"Endo","Endo","Rare",.67},
        {"Shockwave MOA",3,1,"Cryo Rounds","Mod","Uncommon",11.06},
        {"Shockwave MOA",3,1,"Stretch","Mod","Uncommon",11.06},
        {"Shockwave MOA",3,1,"Trick Mag","Mod","Uncommon",25.29},
        {"Shockwave MOA",3,1,"Piercing Hit","Mod","Uncommon",25.29},
        {"Shockwave MOA",3,1,"Pointed Wind","Mod","Ultra Rare",1.01},
        {"Shockwave MOA",3,15,"Endo","Endo","Common",25.29},
        {"Shockwave MOA",3,80,"Endo","Endo","Rare",1.01},
        {"Prod Crewman",3,1,"Pistol Gambit","Mod","Common",37.94},
        {"Prod Crewman",3,1,"Vital Sense","Mod","Legendary",0.5},
        {"Prod Crewman",3,1,"Chilling Grasp","Mod","Uncommon",11.06},
        {"Prod Crewman",3,1,"Shotgun Savvy","Mod","Uncommon",11.06},
        {"Prod Crewman",3,1,"Metal Fiber","Mod","Common",37.94},
        {"Prod Crewman",3,1,"Guardian Derision","Mod","Legendary",0.5},
        {"Prod Crewman",3,1,"Rapid Resilience","Mod","Legendary",0.5},
        {"Prod Crewman",3,80,"Endo","Endo","Legendary",0.5},
        {"Fusion MOA",3,1,"Rush","Mod","Rare",5.53},
        {"Fusion MOA",3,1,"Thief's Wit","Mod","Uncommon",18.97},
        {"Fusion MOA",3,1,"Antitoxin","Mod","Rare",5.53},
        {"Fusion MOA",3,1,"Smite Corpus","Mod","Rare",5.53},
        {"Fusion MOA",3,1,"Enhanced Vitality","Mod","Uncommon",18.97},
        {"Fusion MOA",3,1,"Vaporize","Mod","Uncommon",18.97},
        {"Fusion MOA",3,1,"Self Destruct","Mod","Ultra Rare",1.01},
        {"Fusion MOA",3,15,"Endo","Endo","Common",18.97},
        {"Fusion MOA",3,50,"Endo","Endo","Uncommon",5.53},
        {"Fusion MOA",3,80,"Endo","Endo","Rare",1.01},
        {"Corpus Tech",3,1,"Point Strike","Mod","Common",37.94},
        {"Corpus Tech",3,1,"Charged Shell","Mod","Rare",5.53},
        {"Corpus Tech",3,1,"Cleanse Grineer","Mod","Rare",5.53},
        {"Corpus Tech",3,1,"Handspring","Mod","Rare",2.01},
        {"Corpus Tech",3,1,"Swirling Tiger","Mod","Rare",5.53},
        {"Corpus Tech",3,15,"Endo","Endo","Common",37.94},
        {"Corpus Tech",3,50,"Endo","Endo","Uncommon",5.53},
        {"Oxium Osprey",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Oxium Osprey",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Oxium Osprey",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Oxium Osprey",3,1,"Fury","Mod","Rare",7.37},
        {"Oxium Osprey",3,1,"Convulsion","Mod","Rare",7.37},
        {"Oxium Osprey",3,15,"Endo","Endo","Common",25.29},
        {"Oxium Osprey",3,50,"Endo","Endo","Uncommon",7.37},
        {"Oxium Osprey",3,80,"Endo","Endo","Rare",1.01},
        {"Sapping Osprey",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Sapping Osprey",3,1,"Stretch","Mod","Uncommon",11.06},
        {"Sapping Osprey",3,1,"Magazine Warp","Mod","Uncommon",25.29},
        {"Sapping Osprey",3,1,"Split Chamber","Mod","Legendary",0.67},
        {"Sapping Osprey",3,1,"Crowd Dispersion","Mod","Uncommon",25.29},
        {"Sapping Osprey",3,1,"Gleaming Talon","Mod","Legendary",0.67},
        {"Sapping Osprey",3,15,"Endo","Endo","Common",25.29},
        {"Sapping Osprey",3,80,"Endo","Endo","Rare",.67},
        {"Isolator Bursa",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"Isolator Bursa",3,1,"Molten Impact","Mod","Uncommon",11.06},
        {"Isolator Bursa",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Isolator Bursa",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Isolator Bursa",3,1,"Tempo Royale","Mod","Rare",2.01},
        {"Isolator Bursa",3,15,"Endo","Endo","Uncommon",25.29},
        {"Drover Bursa",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"Drover Bursa",3,1,"North Wind","Mod","Uncommon",11.06},
        {"Drover Bursa",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Drover Bursa",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Drover Bursa",3,1,"Life Strike","Mod","Rare",2.01},
        {"Drover Bursa",3,15,"Endo","Endo","Uncommon",25.29},
        {"Power Carrier",3,1,"Fury","Mod","Rare",7.37},
        {"Power Carrier",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Power Carrier",3,1,"No Return","Mod","Rare",7.37},
        {"Power Carrier",3,1,"Reach","Mod","Uncommon",25.29},
        {"Power Carrier",3,1,"Reaping Spiral","Mod","Rare",7.37},
        {"Power Carrier",3,15,"Endo","Endo","Common",25.29},
        {"Power Carrier",3,80,"Endo","Endo","Rare",2.01},
        {"Nullifier Crewman",3,1,"Ravage","Mod","Legendary",0.5},
        {"Nullifier Crewman",3,1,"Incendiary Coat","Mod","Uncommon",11.06},
        {"Nullifier Crewman",3,1,"Warrior","Mod","Very Common",75.88},
        {"Nullifier Crewman",3,1,"Combustion Beam","Mod","Legendary",0.5},
        {"Nullifier Crewman",3,1,"Stalking Fan","Mod","Legendary",0.5},
        {"Nullifier Crewman",3,50,"Endo","Endo","Uncommon",11.06},
        {"Nullifier Crewman",3,80,"Endo","Endo","Rare",.5},
        {"Sniper Crewman",3,1,"Ravage","Mod","Legendary",0.5},
        {"Sniper Crewman",3,1,"Incendiary Coat","Mod","Uncommon",11.06},
        {"Sniper Crewman",3,1,"Warrior","Mod","Very Common",75.88},
        {"Sniper Crewman",3,1,"Combustion Beam","Mod","Legendary",0.5},
        {"Sniper Crewman",3,1,"Stalking Fan","Mod","Legendary",0.5},
        {"Sniper Crewman",3,50,"Endo","Endo","Uncommon",11.06},
        {"Sniper Crewman",3,80,"Endo","Endo","Rare",.5},
        {"Scavenger Drone",3,1,"Redirection","Mod","Common",38.72},
        {"Scavenger Drone",3,1,"True Steel","Mod","Common",38.72},
        {"Scavenger Drone",3,1,"Gunslinger","Mod","Uncommon",11.28},
        {"Scavenger Drone",3,1,"Contagious Spread","Mod","Uncommon",11.28},
        {"Battalyst",25,1,"Air Recon","Mod","Uncommon",30.56},
        {"Battalyst",25,1,"Overview","Mod","Uncommon",30.56},
        {"Battalyst",25,1,"Broad Eye","Mod","Uncommon",30.56},
        {"Battalyst",25,1,"Eject Magazine","Mod","Ultra Rare",1.67},
        {"Battalyst",25,1,"Tactical Reload","Mod","Ultra Rare",1.67},
        {"Battalyst",25,1,"Lock and Load","Mod","Ultra Rare",1.67},
        {"Battalyst",25,1,"Strafing Slide","Mod","Ultra Rare",1.67},
        {"Battalyst",25,1,"Gun Glide","Mod","Ultra Rare",1.67},
        {"Conculyst",15,1,"Vengeful Revenant","Mod","Rare",2.78},
        {"Conculyst",15,1,"Double-Barrel Drift","Mod","Rare",2.78},
        {"Conculyst",15,1,"Spring-Loaded Broadhead","Mod","Rare",2.78},
        {"Conculyst",15,1,"Reflex Draw","Mod","Uncommon",15.28},
        {"Conculyst",15,1,"Twitch","Mod","Uncommon",15.28},
        {"Conculyst",15,1,"Soft Hands","Mod","Uncommon",15.28},
        {"Conculyst",15,1,"Spry Sights","Mod","Uncommon",15.28},
        {"Conculyst",15,1,"Agile Aim","Mod","Uncommon",15.28},
        {"Conculyst",15,1,"Snap Shot","Mod","Uncommon",15.28},
        {"Executioner Harkonar",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Harkonar",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Harkonar",20,80,"Endo","Endo","Rare",2.01},
        {"Battalyst (Decaying)",25,1,"Air Recon","Mod","Uncommon",30.56,true},
        {"Battalyst (Decaying)",25,1,"Overview","Mod","Uncommon",30.56,true},
        {"Battalyst (Decaying)",25,1,"Broad Eye","Mod","Uncommon",30.56,true},
        {"Battalyst (Decaying)",25,1,"Eject Magazine","Mod","Ultra Rare",1.67,true},
        {"Battalyst (Decaying)",25,1,"Tactical Reload","Mod","Ultra Rare",1.67,true},
        {"Battalyst (Decaying)",25,1,"Lock and Load","Mod","Ultra Rare",1.67,true},
        {"Battalyst (Decaying)",25,1,"Strafing Slide","Mod","Ultra Rare",1.67,true},
        {"Battalyst (Decaying)",25,1,"Gun Glide","Mod","Ultra Rare",1.67,true},
        {"Conculyst (Decaying)",15,1,"Vengeful Revenant","Mod","Rare",2.78,true},
        {"Conculyst (Decaying)",15,1,"Double-Barrel Drift","Mod","Rare",2.78,true},
        {"Conculyst (Decaying)",15,1,"Spring-Loaded Broadhead","Mod","Rare",2.78,true},
        {"Conculyst (Decaying)",15,1,"Reflex Draw","Mod","Uncommon",15.28,true},
        {"Conculyst (Decaying)",15,1,"Twitch","Mod","Uncommon",15.28,true},
        {"Conculyst (Decaying)",15,1,"Soft Hands","Mod","Uncommon",15.28,true},
        {"Conculyst (Decaying)",15,1,"Spry Sights","Mod","Uncommon",15.28,true},
        {"Conculyst (Decaying)",15,1,"Agile Aim","Mod","Uncommon",15.28,true},
        {"Conculyst (Decaying)",15,1,"Snap Shot","Mod","Uncommon",15.28,true},
        {"Hunhow",100,1,"Molten Impact","Mod","Uncommon",30.56,true},
        {"Hunhow",100,1,"Energy Channel","Mod","Rare",2.78,true},
        {"Hunhow",100,1,"Intensify","Mod","Rare",2.78,true},
        {"Hunhow",100,1,"Heavy Impact","Mod","Uncommon",30.56,true},
        {"Hunhow",100,1,"Blind Justice","Mod","Uncommon",30.56,true},
        {"Hunhow",100,80,"Endo","Endo","Rare",2.78,true},
        {"Hunhow",50,1,"Scimitar Engines Blueprint","Blueprint","Rare",2.01},
        {"Hunhow",50,1,"Dread Blueprint","Blueprint","Very Common",75.88},
        {"Hunhow",50,1,"Despair Blueprint","Blueprint","Uncommon",11.06},
        {"Hunhow",50,1,"Hate Blueprint","Blueprint","Uncommon",11.06},
        {"Anti MOA",3,1,"Thief's Wit","Mod","Common",38.72},
        {"Anti MOA",3,1,"Shotgun Savvy","Mod","Rare",7.52},
        {"Anti MOA",3,1,"Enhanced Vitality","Mod","Common",38.72},
        {"Anti MOA",3,1,"Swirling Tiger","Mod","Rare",7.52},
        {"Anti MOA",3,1,"Pathogen Rounds","Mod","Rare",7.52},
        {"Corrupted Crewman",3,1,"Fired Up","Mod","Legendary",0.86},
        {"Corrupted Crewman",3,1,"Quick Return","Mod","Uncommon",32.47},
        {"Corrupted Crewman",3,1,"Suppress","Mod","Uncommon",32.47},
        {"Corrupted Crewman",3,1,"Steady Hands","Mod","Legendary",0.86},
        {"Corrupted Crewman",3,1,"Coiling Viper","Mod","Legendary",0.86},
        {"Corrupted Crewman",3,15,"Endo","Endo","Uncommon",32.47},
        {"Corrupted Ancient",3,1,"Berserker","Mod","Ultra Rare",1.01},
        {"Corrupted Ancient",3,1,"Reflection","Mod","Common",37.94},
        {"Corrupted Ancient",3,1,"Quick Thinking","Mod","Ultra Rare",1.01},
        {"Corrupted Ancient",3,1,"Maglev","Mod","Rare",7.37},
        {"Corrupted Ancient",3,1,"Clashing Forest","Mod","Rare",7.37},
        {"Corrupted Ancient",3,15,"Endo","Endo","Common",37.94},
        {"Corrupted Ancient",3,50,"Endo","Endo","Uncommon",7.37},
        {"Corrupted Heavy Gunner",3,1,"Spare Parts","Mod","Uncommon",11.06},
        {"Corrupted Heavy Gunner",3,1,"Intruder","Mod","Very Common",75.88},
        {"Corrupted Heavy Gunner",3,1,"Whirlwind","Mod","Legendary",0.67},
        {"Corrupted Heavy Gunner",3,1,"Flailing Branch","Mod","Legendary",0.67},
        {"Corrupted Heavy Gunner",3,50,"Endo","Endo","Uncommon",11.73},
        {"Corrupted Heavy Gunner",3,80,"Endo","Endo","Rare",.67},
        {"Orokin Drone",3,1,"Guardian","Mod","Uncommon",25.29},
        {"Orokin Drone",3,1,"Coolant Leak","Mod","Legendary",0.67},
        {"Orokin Drone",3,1,"Fired Up","Mod","Legendary",0.67},
        {"Orokin Drone",3,1,"Hush","Mod","Uncommon",25.29},
        {"Orokin Drone",3,15,"Endo","Endo","Common",25.29},
        {"Orokin Drone",3,50,"Endo","Endo","Uncommon",22.11},
        {"Orokin Drone",3,80,"Endo","Endo","Rare",.67},
        {"Corrupted MOA",3,1,"Fatal Attraction","Mod","Uncommon",25.29},
        {"Corrupted MOA",3,1,"Striker","Mod","Uncommon",25.29},
        {"Corrupted MOA",3,1,"Reflex Guard","Mod","Ultra Rare",1.01},
        {"Corrupted MOA",3,1,"Gemini Cross","Mod","Uncommon",22.11},
        {"Corrupted MOA",3,1,"Bleeding Willow","Mod","Ultra Rare",1.01},
        {"Corrupted MOA",3,15,"Endo","Endo","Uncommon",25.29},
        {"Corrupted Butcher",3,1,"Infected Clip","Mod","Rare",5.53},
        {"Corrupted Butcher",3,1,"Ammo Case","Mod","Common",37.94},
        {"Corrupted Butcher",3,1,"Power Throw","Mod","Rare",2.01},
        {"Corrupted Butcher",3,1,"Finishing Touch","Mod","Rare",5.53},
        {"Corrupted Butcher",3,1,"Burning Wasp","Mod","Rare",5.53},
        {"Corrupted Butcher",3,1,"Dispatch Overdrive","Mod","Rare",5.53},
        {"Corrupted Butcher",3,1,"Thumper","Mod","Common",37.94},
        {"Leech Osprey",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Leech Osprey",3,1,"Stretch","Mod","Uncommon",11.06},
        {"Leech Osprey",3,1,"Magazine Warp","Mod","Uncommon",25.29},
        {"Leech Osprey",3,1,"Split Chamber","Mod","Legendary",0.67},
        {"Leech Osprey",3,1,"Crowd Dispersion","Mod","Uncommon",25.29},
        {"Leech Osprey",3,1,"Gleaming Talon","Mod","Legendary",0.67},
        {"Leech Osprey",3,15,"Endo","Endo","Common",25.29},
        {"Leech Osprey",3,80,"Endo","Endo","Rare",.67},
        {"Mine Osprey",3,1,"Pressure Point","Mod","Common",37.94},
        {"Mine Osprey",3,1,"Metal Auger","Mod","Legendary",0.67},
        {"Mine Osprey",3,1,"Sinister Reach","Mod","Uncommon",11.06},
        {"Mine Osprey",3,1,"Concealed Explosives","Mod","Legendary",0.67},
        {"Mine Osprey",3,15,"Endo","Endo","Common",37.94},
        {"Mine Osprey",3,50,"Endo","Endo","Uncommon",11.06},
        {"Mine Osprey",3,80,"Endo","Endo","Rare",.67},
        {"Toxic Ancient",3,1,"Organ Shatter","Mod","Uncommon",15.18},
        {"Toxic Ancient",3,1,"Slip Magazine","Mod","Uncommon",15.18},
        {"Toxic Ancient",3,1,"Hornet Strike","Mod","Rare",7.37},
        {"Toxic Ancient",3,1,"Warm Coat","Mod","Uncommon",15.18},
        {"Toxic Ancient",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Toxic Ancient",3,1,"Shredder","Mod","Uncommon",15.18},
        {"Toxic Ancient",3,1,"Firestorm","Mod","Ultra Rare",1.01},
        {"Toxic Ancient",3,1,"Brutal Tide","Mod","Ultra Rare",1.01},
        {"Toxic Ancient",3,15,"Endo","Endo","Common",15.18},
        {"Toxic Ancient",3,50,"Endo","Endo","Uncommon",7.37},
        {"Ratel",3,1,"Smite Grineer","Mod","Uncommon",11.06},
        {"Ratel",3,1,"North Wind","Mod","Uncommon",11.06},
        {"Ratel",3,1,"Energy Channel","Mod","Ultra Rare",1.01},
        {"Ratel",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Ratel",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Ratel",3,15,"Endo","Endo","Common",25.29},
        {"Ratel",3,80,"Endo","Endo","Rare",1.01},
        {"Electric Crawler",3,1,"Serration","Mod","Rare",5.53},
        {"Electric Crawler",3,1,"Sure Shot","Mod","Rare",5.53},
        {"Electric Crawler",3,1,"Rupture","Mod","Very Common",75.88},
        {"Electric Crawler",3,1,"Contagious Spread","Mod","Rare",5.53},
        {"Electric Crawler",3,50,"Endo","Endo","Uncommon",5.53},
        {"Electric Crawler",3,80,"Endo","Endo","Rare",2.01},
        {"Nauseous Crawler",3,1,"Serration","Mod","Uncommon",11.06},
        {"Nauseous Crawler",3,1,"Quickdraw","Mod","Common",37.94},
        {"Nauseous Crawler",3,1,"Homing Fang","Mod","Uncommon",11.06},
        {"Nauseous Crawler",3,15,"Endo","Endo","Common",37.94},
        {"Nauseous Crawler",3,80,"Endo","Endo","Rare",2.01},
        {"Tar Mutalist MOA",3,1,"Flechette","Mod","Uncommon",25.29},
        {"Tar Mutalist MOA",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Tar Mutalist MOA",3,1,"Expel Infested","Mod","Uncommon",11.06},
        {"Tar Mutalist MOA",3,1,"Lasting Sting","Mod","Uncommon",25.29},
        {"Tar Mutalist MOA",3,1,"Cleaving Whirlwind","Mod","Ultra Rare",1.01},
        {"Tar Mutalist MOA",3,1,"Relentless Combination","Mod","Uncommon",11.06},
        {"Tar Mutalist MOA",3,1,"Adhesive Blast","Mod","Ultra Rare",1.01},
        {"Toxic Crawler",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Toxic Crawler",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Toxic Crawler",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Toxic Crawler",3,1,"Heavy Impact","Mod","Uncommon",11.06},
        {"Toxic Crawler",3,15,"Endo","Endo","Common",18.97},
        {"Toxic Crawler",3,50,"Endo","Endo","Uncommon",11.06},
        {"Toxic Crawler",3,80,"Endo","Endo","Rare",2.01},
        {"Mutalist Osprey",3,1,"Pressure Point","Mod","Common",37.94},
        {"Mutalist Osprey",3,1,"Metal Auger","Mod","Legendary",0.67},
        {"Mutalist Osprey",3,1,"Sinister Reach","Mod","Uncommon",11.06},
        {"Mutalist Osprey",3,1,"Concealed Explosives","Mod","Legendary",0.67},
        {"Mutalist Osprey",3,15,"Endo","Endo","Common",37.94},
        {"Mutalist Osprey",3,50,"Endo","Endo","Uncommon",11.06},
        {"Mutalist Osprey",3,80,"Endo","Endo","Rare",.67},
        {"Boiler",3,1,"Organ Shatter","Mod","Uncommon",15.18},
        {"Boiler",3,1,"Slip Magazine","Mod","Uncommon",15.18},
        {"Boiler",3,1,"Hornet Strike","Mod","Rare",7.37},
        {"Boiler",3,1,"Warm Coat","Mod","Uncommon",15.18},
        {"Boiler",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Boiler",3,1,"Shredder","Mod","Uncommon",15.18},
        {"Boiler",3,1,"Firestorm","Mod","Ultra Rare",1.01},
        {"Boiler",3,1,"Brutal Tide","Mod","Ultra Rare",1.01},
        {"Boiler",3,15,"Endo","Endo","Common",15.18},
        {"Boiler",3,50,"Endo","Endo","Uncommon",7.37},
        {"Jordas Golem",100,1,"Pressure Point","Mod","Common",37.94},
        {"Jordas Golem",100,1,"Streamline","Mod","Rare",2.01},
        {"Jordas Golem",100,1,"Magazine Warp","Mod","Common",37.94},
        {"Jordas Golem",100,1,"Incendiary Coat","Mod","Uncommon",11.06},
        {"Jordas Golem",100,1,"Bane of Infested","Mod","Uncommon",11.06},
        {"Hyena Pack (Pb)",60,1,"Master Thief","Mod","Rare",2.01, true},
        {"Hyena Pack (Pb)",60,1,"North Wind","Mod","Uncommon",22.11, true},
        {"Hyena Pack (Pb)",60,1,"True Steel","Mod","Common",37.94, true},
        {"Hyena Pack (Pb)",60,1,"Trick Mag","Mod","Common",37.94, true},
        {"Hyena Pack (Ng)",60,1,"Master Thief","Mod","Rare",2.01, true},
        {"Hyena Pack (Ng)",60,1,"North Wind","Mod","Uncommon",22.11, true},
        {"Hyena Pack (Ng)",60,1,"True Steel","Mod","Common",37.94, true},
        {"Hyena Pack (Ng)",60,1,"Trick Mag","Mod","Common",37.94, true},
        {"Hyena Pack (Ln2)",60,1,"Master Thief","Mod","Rare",2.01, true},
        {"Hyena Pack (Ln2)",60,1,"North Wind","Mod","Uncommon",22.11, true},
        {"Hyena Pack (Ln2)",60,1,"True Steel","Mod","Common",37.94, true},
        {"Hyena Pack (Ln2)",60,1,"Trick Mag","Mod","Common",37.94, true},
        {"Hyena Pack (Th)",60,1,"Master Thief","Mod","Rare",2.01, true},
        {"Hyena Pack (Th)",60,1,"North Wind","Mod","Uncommon",22.11, true},
        {"Hyena Pack (Th)",60,1,"True Steel","Mod","Common",37.94, true},
        {"Hyena Pack (Th)",60,1,"Trick Mag","Mod","Common",37.94, true},
        {"The Raptors",5,1,"Reflex Coil","Mod","Uncommon",11.06},
        {"The Raptors",5,1,"Stretch","Mod","Uncommon",11.06},
        {"The Raptors",5,1,"Organ Shatter","Mod","Common",37.94},
        {"The Raptors",5,1,"Reach","Mod","Common",37.94},
        {"The Raptors",5,1,"Split Chamber","Mod","Rare",2.01},
        {"Grineer Warden",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Grineer Warden",3,1,"Slip Magazine","Mod","Uncommon",18.97},
        {"Grineer Warden",3,1,"Magazine Warp","Mod","Uncommon",18.97},
        {"Grineer Warden",3,1,"Shell Compression","Mod","Uncommon",11.06},
        {"Grineer Warden",3,1,"Decisive Judgement","Mod","Ultra Rare",1.01},
        {"Grineer Warden",3,15,"Endo","Endo","Common",18.97},
        {"Grineer Warden",3,50,"Endo","Endo","Uncommon",11.06},
        {"Grineer Warden",3,80,"Endo","Endo","Rare",1.01},
        {"Grineer Warden",1,1,"Gorgon Blueprint","Blueprint","Very Common",100},
        {"Corpus Warden",3,1,"Point Strike","Mod","Common",37.94},
        {"Corpus Warden",3,1,"Charged Shell","Mod","Rare",5.53},
        {"Corpus Warden",3,1,"Cleanse Grineer","Mod","Rare",5.53},
        {"Corpus Warden",3,1,"Handspring","Mod","Rare",2.01},
        {"Corpus Warden",3,1,"Swirling Tiger","Mod","Rare",5.53},
        {"Corpus Warden",3,15,"Endo","Endo","Common",37.94},
        {"Corpus Warden",3,50,"Endo","Endo","Uncommon",5.53},
        {"Hyekka",20,1,"Sharpened Claws","Mod","Common",45.83},
        {"Hyekka",20,1,"Swipe","Mod","Common",45.83},
        {"Hyekka",20,1,"Charm","Mod","Rare",4.17},
        {"Hyekka",20,1,"Reflect","Mod","Rare",4.17},
        {"Eviscerator",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Eviscerator",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Eviscerator",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Eviscerator",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Eviscerator",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Eviscerator",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Eviscerator",3,80,"Endo","Endo","Rare",2.01},
        {"Arid Lancer",3,1,"Pressure Point","Mod","Common",37.94},
        {"Arid Lancer",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Arid Lancer",3,1,"Vitality","Mod","Common",37.94},
        {"Arid Lancer",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Arid Lancer",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Arid Lancer",3,1,"Streamline","Mod","Legendary",0.5},
        {"Arid Lancer",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Arid Lancer",3,80,"Endo","Endo","Legendary",0.5},
        {"Elite Arid Lancer",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Elite Arid Lancer",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Elite Arid Lancer",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Elite Arid Lancer",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Elite Arid Lancer",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Elite Arid Lancer",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Elite Arid Lancer",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Elite Arid Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Arid Butcher",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Arid Butcher",3,1,"Reflex Coil","Mod","Rare",4.42},
        {"Arid Butcher",3,1,"North Wind","Mod","Rare",4.42},
        {"Arid Butcher",3,1,"Fever Strike","Mod","Rare",4.42},
        {"Arid Butcher",3,1,"Perpetual Agony","Mod","Common",37.94},
        {"Arid Butcher",3,1,"Rifle Aptitude","Mod","Rare",4.42},
        {"Arid Butcher",3,1,"Blunderbuss","Mod","Common",37.94},
        {"Arid Butcher",3,1,"Tranquil Cleave","Mod","Ultra Rare",1.01},
        {"Arid Butcher",3,50,"Endo","Endo","Rare",4.42},
        {"Arid Trooper",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Arid Trooper",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Arid Trooper",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Arid Trooper",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Arid Trooper",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Arid Trooper",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Arid Trooper",3,80,"Endo","Endo","Rare",2.01},
        {"Arid Hellion",3,1,"Pressure Point","Mod","Common",37.94},
        {"Arid Hellion",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Arid Hellion",3,1,"Vitality","Mod","Common",37.94},
        {"Arid Hellion",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Arid Hellion",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Arid Hellion",3,1,"Streamline","Mod","Legendary",0.5},
        {"Arid Hellion",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Arid Hellion",3,80,"Endo","Endo","Legendary",0.5},
        {"Arid Eviscerator",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Arid Eviscerator",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Arid Eviscerator",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Arid Eviscerator",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Arid Eviscerator",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Arid Eviscerator",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Arid Eviscerator",3,80,"Endo","Endo","Rare",2.01},
        {"Arid Heavy Gunner",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Arid Heavy Gunner",3,1,"Slip Magazine","Mod","Uncommon",18.97},
        {"Arid Heavy Gunner",3,1,"Magazine Warp","Mod","Uncommon",18.97},
        {"Arid Heavy Gunner",3,1,"Shell Compression","Mod","Uncommon",11.06},
        {"Arid Heavy Gunner",3,1,"Decisive Judgement","Mod","Ultra Rare",1.01},
        {"Arid Heavy Gunner",3,15,"Endo","Endo","Common",18.97},
        {"Arid Heavy Gunner",3,50,"Endo","Endo","Uncommon",11.06},
        {"Arid Heavy Gunner",3,80,"Endo","Endo","Rare",1.01},
        {"Arid Heavy Gunner",1,1,"Gorgon Blueprint","Blueprint","Very Common",100},
        {"Hellion",3,1,"Pressure Point","Mod","Common",37.94},
        {"Hellion",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Hellion",3,1,"Vitality","Mod","Common",37.94},
        {"Hellion",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Hellion",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Hellion",3,1,"Streamline","Mod","Legendary",0.5},
        {"Hellion",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Hellion",3,80,"Endo","Endo","Legendary",0.5},
        {"Drekar Manic Bombard",40,1,"True Steel","Mod","Uncommon",25.29},
        {"Drekar Manic Bombard",40,1,"Tactical Pump","Mod","Uncommon",11.06},
        {"Drekar Manic Bombard",40,1,"Warm Coat","Mod","Uncommon",25.29},
        {"Drekar Manic Bombard",40,1,"Expel Grineer","Mod","Uncommon",11.06},
        {"Drekar Manic Bombard",40,1,"Vermilion Storm","Mod","Legendary",0.67},
        {"Drekar Manic Bombard",40,1,"Vulpine Mask","Mod","Legendary",0.67},
        {"Drekar Manic Bombard",40,15,"Endo","Endo","Common",25.29},
        {"Drekar Manic Bombard",40,80,"Endo","Endo","Rare",.67},
        {"Comba",4,1,"Combustion Beam","Mod","Uncommon",25},
        {"Comba",4,1,"Vulpine Mask","Mod","Uncommon",25},
        {"Comba",4,1,"Gaia's Tragedy","Mod","Uncommon",25},
        {"Comba",4,80,"Endo","Endo","Uncommon",25},
        {"Tyl Regor (2)",100,1,"Vitality","Mod","Uncommon",25.81,true},
        {"Tyl Regor (2)",100,1,"Cryo Rounds","Mod","Rare",7.52,true},
        {"Tyl Regor (2)",100,1,"True Steel","Mod","Uncommon",25.81,true},
        {"Tyl Regor (2)",100,1,"Shocking Touch","Mod","Rare",7.52,true},
        {"Tyl Regor (2)",100,1,"Steel Fiber","Mod","Uncommon",25.81,true},
        {"Tyl Regor (2)",100,1,"Lethal Momentum","Mod","Rare",7.52,true},
        {"Lynx",3,1,"Organ Shatter","Mod","Common",37.94},
        {"Lynx",3,1,"Stormbringer","Mod","Uncommon",22.11},
        {"Lynx",3,15,"Endo","Endo","Common",37.94},
        {"Lynx",3,80,"Endo","Endo","Rare",2.01},
        {"Dreg",3,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Dreg",3,1,"Argon Plating","Mod","Uncommon",18.97},
        {"Dreg",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Dreg",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Dreg",3,1,"Combustion Rounds","Mod","Uncommon",11.06},
        {"Dreg",3,15,"Endo","Endo","Common",18.97},
        {"Dreg",3,50,"Endo","Endo","Uncommon",11.06},
        {"Lancer Dreg",3,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Lancer Dreg",3,1,"Extend","Mod","Common",37.94},
        {"Lancer Dreg",3,1,"Energy Amplifier","Mod","Rare",5.53},
        {"Lancer Dreg",3,1,"Venomous Clip","Mod","Rare",5.53},
        {"Lancer Dreg",3,1,"Electrified Barrel","Mod","Rare",5.53},
        {"Lancer Dreg",3,15,"Endo","Endo","Common",37.94},
        {"Lancer Dreg",3,50,"Endo","Endo","Uncommon",5.53},
        {"Shield Dargyn",3,1,"Energy Inversion","Mod","Common",38.72},
        {"Shield Dargyn",3,1,"Furor","Mod","Rare",5.64},
        {"Shield Dargyn",3,1,"Galvanized Blade","Mod","Rare",5.64},
        {"Shield Dargyn",3,1,"Auxiliary Power","Mod","Rare",5.64},
        {"Shield Dargyn",3,15,"Endo","Endo","Common",38.72},
        {"Shield Dargyn",3,50,"Endo","Endo","Uncommon",5.64},
        {"Corrupted Bombard",3,1,"Spare Parts","Mod","Uncommon",11.06},
        {"Corrupted Bombard",3,1,"Intruder","Mod","Very Common",75.88},
        {"Corrupted Bombard",3,1,"Whirlwind","Mod","Legendary",0.67},
        {"Corrupted Bombard",3,1,"Flailing Branch","Mod","Legendary",0.67},
        {"Corrupted Bombard",3,50,"Endo","Endo","Uncommon",11.73},
        {"Corrupted Bombard",3,80,"Endo","Endo","Rare",.67},
        {"Feral Kavat",20,1,"Cat's Eye","Mod","Rare",4.17},
        {"Feral Kavat",20,1,"Mischief","Mod","Rare",4.17},
        {"Feral Kavat",20,1,"Territorial Aggression","Mod","Uncommon",30.56},
        {"Feral Kavat",20,1,"Pounce","Mod","Uncommon",30.56},
        {"Feral Kavat",20,1,"Sense Danger","Mod","Uncommon",30.56},
        {"Arcane Boiler",3,1,"Organ Shatter","Mod","Uncommon",15.18},
        {"Arcane Boiler",3,1,"Slip Magazine","Mod","Uncommon",15.18},
        {"Arcane Boiler",3,1,"Hornet Strike","Mod","Rare",7.37},
        {"Arcane Boiler",3,1,"Warm Coat","Mod","Uncommon",15.18},
        {"Arcane Boiler",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Arcane Boiler",3,1,"Shredder","Mod","Uncommon",15.18},
        {"Arcane Boiler",3,1,"Firestorm","Mod","Ultra Rare",1.01},
        {"Arcane Boiler",3,1,"Brutal Tide","Mod","Ultra Rare",1.01},
        {"Arcane Boiler",3,15,"Endo","Endo","Common",15.18},
        {"Arcane Boiler",3,50,"Endo","Endo","Uncommon",7.37},
        {"Sprag",3,1,"Organ Shatter","Mod","Uncommon",25.29},
        {"Sprag",3,1,"Stormbringer","Mod","Uncommon",11.06},
        {"Sprag",3,1,"Continuous Misery","Mod","Uncommon",25.29},
        {"Sprag",3,1,"Terminal Velocity","Mod","Uncommon",11.06},
        {"Sprag",3,15,"Endo","Endo","Common",25.29},
        {"Sprag",3,80,"Endo","Endo","Rare",2.01},
        {"Ven'kra Tel",3,1,"Organ Shatter","Mod","Uncommon",25.29},
        {"Ven'kra Tel",3,1,"Stormbringer","Mod","Uncommon",11.06},
        {"Ven'kra Tel",3,1,"Continuous Misery","Mod","Uncommon",25.29},
        {"Ven'kra Tel",3,1,"Terminal Velocity","Mod","Uncommon",11.06},
        {"Ven'kra Tel",3,15,"Endo","Endo","Common",25.29},
        {"Ven'kra Tel",3,80,"Endo","Endo","Rare",2.01},
        {"Infested Chroma",3,1,"Rage","Mod","Uncommon",20},
        {"Infested Chroma",3,1,"Berserker","Mod","Uncommon",20},
        {"Infested Chroma",3,1,"Flow","Mod","Uncommon",20},
        {"Infested Chroma",3,1,"Master Thief","Mod","Uncommon",20},
        {"Infested Chroma",3,1,"Decisive Judgement","Mod","Uncommon",20},
        {"Knave Specter",100,1,"Crimson Dervish","Mod","Rare",6.06},
        {"Knave Specter",100,1,"Blind Justice","Mod","Common",36.36},
        {"Knave Specter",100,1,"Pistol Amp","Mod","Common",51.52},
        {"Knave Specter",100,1,"Growing Power","Mod","Rare",6.06},
        {"Orphid Specter",100,1,"Atlantis Vulcan","Mod","Uncommon",21.05},
        {"Orphid Specter",100,1,"Crossing Snakes","Mod","Uncommon",10.53},
        {"Orphid Specter",100,1,"Stand United","Mod","Uncommon",29.82},
        {"Orphid Specter",100,1,"Brief Respite","Mod","Common",38.6},
        {"Orphid Specter (Husk)",3,1,"Sundering Strike","Mod","Ultra Rare",1.01},
        {"Orphid Specter (Husk)",3,1,"Reach","Mod","Uncommon",25.29},
        {"Orphid Specter (Husk)",3,1,"Point Blank","Mod","Uncommon",11.06},
        {"Orphid Specter (Husk)",3,1,"Ghost","Mod","Uncommon",25.29},
        {"Orphid Specter (Husk)",3,1,"Concussion Rounds","Mod","Uncommon",11.06},
        {"Orphid Specter (Husk)",3,15,"Endo","Endo","Common",25.29},
        {"Orphid Specter (Husk)",3,80,"Endo","Endo","Rare",1.01},
        {"Feyarch Specter",100,1,"High Noon","Mod","Rare",6.06},
        {"Feyarch Specter",100,1,"Final Harbinger","Mod","Common",36.36},
        {"Feyarch Specter",100,1,"Shotgun Amp","Mod","Common",51.52},
        {"Feyarch Specter",100,1,"Empowered Blades","Mod","Rare",6.06},
        {"Cannon Battery",3,1,"Hyperion Thrusters","Mod","Ultra Rare",1.01,true},
        {"Cannon Battery",3,1,"Electrified Barrel","Mod","Rare",7.37,true},
        {"Cannon Battery",3,1,"Furor","Mod","Rare",7.37,true},
        {"Cannon Battery",3,1,"Hollowed Bullets","Mod","Ultra Rare",1.01,true},
        {"Cannon Battery",3,15,"Endo","Endo","Common",75.88,true},
        {"Cannon Battery",3,50,"Endo","Endo","Uncommon",7.37,true},
        {"Kuva Elite Lancer",3,1,"Redirection","Mod","Uncommon",25.29},
        {"Kuva Elite Lancer",3,1,"Revenge","Mod","Uncommon",25.29},
        {"Kuva Elite Lancer",3,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Kuva Elite Lancer",3,1,"Thunderbolt","Mod","Legendary",0.67},
        {"Kuva Elite Lancer",3,1,"Razor Shot","Mod","Uncommon",11.06},
        {"Kuva Elite Lancer",3,1,"Crossing Snakes","Mod","Legendary",0.67},
        {"Kuva Elite Lancer",3,1,"Undying Will","Mod","Legendary",0.67},
        {"Kuva Elite Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Kuva Butcher",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Kuva Butcher",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Kuva Butcher",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Kuva Butcher",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Kuva Butcher",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Kuva Butcher",3,1,"North Wind","Mod","Rare",5.53},
        {"Kuva Butcher",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Kuva Butcher",3,15,"Endo","Endo","Common",18.97},
        {"Kuva Butcher",3,50,"Endo","Endo","Uncommon",5.53},
        {"Kuva Butcher",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Scorpion",3,1,"Master Thief","Mod","Ultra Rare",1.01},
        {"Kuva Scorpion",3,1,"Serration","Mod","Rare",7.37},
        {"Kuva Scorpion",3,1,"Lightning Rod","Mod","Common",37.94},
        {"Kuva Scorpion",3,1,"Heavy Impact","Mod","Rare",7.37},
        {"Kuva Scorpion",3,1,"Defiled Snapdragon","Mod","Ultra Rare",1.01},
        {"Kuva Scorpion",3,15,"Endo","Endo","Common",37.94},
        {"Kuva Scorpion",3,50,"Endo","Endo","Common",7.37},
        {"Kuva Trooper",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Kuva Trooper",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Kuva Trooper",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Kuva Trooper",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Kuva Trooper",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Kuva Trooper",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Kuva Trooper",3,80,"Endo","Endo","Rare",2.01},
        {"Kuva Powerclaw",3,1,"Target Cracker","Mod","Rare",5.53},
        {"Kuva Powerclaw",3,1,"Seeking Force","Mod","Ultra Rare",1.01},
        {"Kuva Powerclaw",3,1,"Bane of Infested","Mod","Rare",5.53},
        {"Kuva Powerclaw",3,1,"Calculated Redirection","Mod","Common",37.94},
        {"Kuva Powerclaw",3,1,"Vaporize","Mod","Common",37.94},
        {"Kuva Powerclaw",3,1,"Grim Fury","Mod","Rare",5.53},
        {"Kuva Powerclaw",3,1,"Malicious Raptor","Mod","Ultra Rare",1.01},
        {"Kuva Powerclaw",3,50,"Endo","Endo","Rare",5.53},
        {"Kuva Shield Lancer",3,1,"Flechette","Mod","Uncommon",25.29},
        {"Kuva Shield Lancer",3,1,"Thief's Wit","Mod","Uncommon",25.29},
        {"Kuva Shield Lancer",3,1,"Smite Infested","Mod","Uncommon",11.06},
        {"Kuva Shield Lancer",3,1,"Retribution","Mod","Ultra Rare",1.01},
        {"Kuva Shield Lancer",3,15,"Endo","Endo","Common",25.29},
        {"Kuva Shield Lancer",3,50,"Endo","Endo","Uncommon",11.06},
        {"Kuva Shield Lancer",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Napalm",3,1,"Rage","Mod","Rare",2.01},
        {"Kuva Napalm",3,1,"Point Strike","Mod","Uncommon",25.29},
        {"Kuva Napalm",3,1,"Ammo Stock","Mod","Rare",5.53},
        {"Kuva Napalm",3,1,"Insulation","Mod","Uncommon",25.29},
        {"Kuva Napalm",3,1,"Gunslinger","Mod","Rare",5.53},
        {"Kuva Napalm",3,1,"Enhanced Vitality","Mod","Uncommon",25.29},
        {"Kuva Napalm",3,1,"Rending Crane","Mod","Rare",5.53},
        {"Kuva Napalm",3,50,"Endo","Endo","Rare",5.53},
        {"Kuva Flameblade",3,1,"Rifle Aptitude","Mod","Rare",7.37},
        {"Kuva Flameblade",3,1,"Trick Mag","Mod","Uncommon",25.29},
        {"Kuva Flameblade",3,1,"Enemy Sense","Mod","Ultra Rare",1.01},
        {"Kuva Flameblade",3,1,"Flame Repellent","Mod","Uncommon",25.29},
        {"Kuva Flameblade",3,1,"Cleanse Corpus","Mod","Rare",7.37},
        {"Kuva Flameblade",3,15,"Endo","Endo","Common",25.29},
        {"Kuva Flameblade",3,50,"Endo","Endo","Uncommon",7.37},
        {"Kuva Flameblade",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Seeker",3,1,"Killing Blow","Mod","Rare",7.37},
        {"Kuva Seeker",3,1,"Barrel Diffusion","Mod","Legendary",0.67},
        {"Kuva Seeker",3,1,"Accelerated Deflection","Mod","Rare",7.37},
        {"Kuva Seeker",3,1,"Sawtooth Clip","Mod","Very Common",75.88},
        {"Kuva Seeker",3,1,"Crushing Ruin","Mod","Legendary",0.67},
        {"Kuva Seeker",3,1,"Shimmering Blight","Mod","Rare",7.37},
        {"Kuva Seeker",3,80,"Endo","Endo","Legendary",0.67},
        {"Kuva Scorch",3,1,"Sure Shot","Mod","Rare",5.64},
        {"Kuva Scorch",3,1,"Bane of Grineer","Mod","Rare",5.64},
        {"Kuva Scorch",3,1,"Swift Deth","Mod","Common",38.72},
        {"Kuva Scorch",3,1,"Swirling Tiger","Mod","Rare",5.64},
        {"Kuva Scorch",3,15,"Endo","Endo","Common",38.72},
        {"Kuva Scorch",3,50,"Endo","Endo","Uncommon",5.64},
        {"Kuva Drahk Master",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Kuva Drahk Master",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Kuva Drahk Master",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Kuva Drahk Master",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Kuva Drahk Master",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Kuva Drahk Master",3,1,"North Wind","Mod","Rare",5.53},
        {"Kuva Drahk Master",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Kuva Drahk Master",3,15,"Endo","Endo","Common",18.97},
        {"Kuva Drahk Master",3,50,"Endo","Endo","Uncommon",5.53},
        {"Kuva Drahk Master",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Drahk",3,1,"Hunt","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Stalk","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Dig","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Howl","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Protect","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Scavenge","Mod","Uncommon",25.29},
        {"Kuva Drahk",3,1,"Unleashed","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Ferocity","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Link Armor","Mod","Rare",3.69},
        {"Kuva Drahk",3,1,"Link Health","Mod","Rare",3.69},
        {"Kuva Drahk",3,1,"Link Shields","Mod","Rare",3.69},
        {"Kuva Drahk",3,1,"Loyal Companion","Mod","Uncommon",25.29},
        {"Kuva Drahk",3,1,"Hastened Deflection","Mod","Rare",3.69},
        {"Kuva Drahk",3,1,"Savagery","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Pack Leader","Mod","Uncommon",25.29},
        {"Kuva Drahk",3,1,"Maul","Mod","Rare",3.69},
        {"Kuva Drahk",3,1,"Bite","Mod","Legendary",0.22},
        {"Kuva Drahk",3,1,"Shelter","Mod","Rare",3.69},
        {"Ved Xol",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Ved Xol",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Malice",100,1,"Targeting Subsystem","Mod","Uncommon",22.22},
        {"Malice",100,1,"Guided Ordnance","Mod","Uncommon",22.22},
        {"Malice",100,1,"Narrow Barrel","Mod","Rare",4.04},
        {"Malice",100,1,"Focused Defense","Mod","Common",51.52},
        {"Nako Xol",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Nako Xol",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Pelna Cade",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Lockjaw & Sol",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Jad Teran",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Azoth",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Raptor RX",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Auditor",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Jen Dro",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"M-W.A.M.",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Derim Zahn",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Tia Mayn",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Armis Ulta",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Dru Pesfor",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"Rana Del",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Pain Threshold","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Kinetic Ricochet","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Thermagnetic Shells","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Static Discharge","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Medi-Pet Kit","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Shield Charger","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Tether Grenades","Mod","Uncommon",12.5},
        {"002-ER",10,1,"Flux Overdrive","Mod","Uncommon",12.5},
        {"Rathuum Broadcaster",3,1,"Vitality","Mod","Uncommon",25.29,true},
        {"Rathuum Broadcaster",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01,true},
        {"Rathuum Broadcaster",3,1,"Melee Prowess","Mod","Uncommon",25.29,true},
        {"Rathuum Broadcaster",3,1,"Fury","Mod","Rare",7.37,true},
        {"Rathuum Broadcaster",3,1,"Convulsion","Mod","Rare",7.37,true},
        {"Rathuum Broadcaster",3,15,"Endo","Endo","Common",25.29,true},
        {"Rathuum Broadcaster",3,50,"Endo","Endo","Uncommon",7.37,true},
        {"Rathuum Broadcaster",3,80,"Endo","Endo","Rare",1.01,true},
        {"Executioner Garesh",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Garesh",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Garesh",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Nok",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Nok",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Nok",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Gorth",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Gorth",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Gorth",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Reth",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Reth",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Reth",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Dok Thul",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Dok Thul",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Dok Thul",20,80,"Endo","Endo","Rare",2.01},
        {"Elite Lancer (2)",20,15,"Endo","Endo","Common",75.88,true},
        {"Elite Lancer (2)",20,50,"Endo","Endo","Uncommon",22.11,true},
        {"Elite Lancer (2)",20,80,"Endo","Endo","Rare",2.0,true},
        {"Executioner Zura",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Zura",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Zura",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Vay Molta",20,15,"Endo","Endo","Common",75.88},
        {"Executioner Vay Molta",20,50,"Endo","Endo","Uncommon",22.11},
        {"Executioner Vay Molta",20,80,"Endo","Endo","Rare",2.01},
        {"Executioner Dhurnam",20,1,"Silent Battery","Mod","Common",45.83},
        {"Executioner Dhurnam",20,50,"Endo","Endo","Uncommon",45.83},
        {"Executioner Dhurnam",20,80,"Endo","Endo","Rare",8.33},
        {"Corrupted Lancer",3,1,"Infected Clip","Mod","Rare",5.53},
        {"Corrupted Lancer",3,1,"Ammo Case","Mod","Common",37.94},
        {"Corrupted Lancer",3,1,"Power Throw","Mod","Rare",2.01},
        {"Corrupted Lancer",3,1,"Finishing Touch","Mod","Rare",5.53},
        {"Corrupted Lancer",3,1,"Burning Wasp","Mod","Rare",5.53},
        {"Corrupted Lancer",3,1,"Thumper","Mod","Common",37.94},
        {"Corrupted Lancer",3,50,"Endo","Endo","Rare",5.53},
        {"Torment",100,1,"Blood Rush","Mod","Uncommon",22.22},
        {"Torment",100,1,"Hydraulic Crosshairs","Mod","Common",51.52},
        {"Torment",100,1,"Argon Scope","Mod","Rare",4.04},
        {"Torment",100,1,"Laser Sight","Mod","Uncommon",22.22},
        {"Violence",100,1,"Maiming Strike","Mod","Rare",4.04},
        {"Violence",100,1,"Sharpened Bullets","Mod","Uncommon",22.22},
        {"Violence",100,1,"Bladed Rounds","Mod","Uncommon",22.22},
        {"Violence",100,1,"Shrapnel Shot","Mod","Common",51.52},
        {"Nemes",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Nemes",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Nemes",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Nemes",3,1,"Fury","Mod","Rare",7.37},
        {"Nemes",3,1,"Convulsion","Mod","Rare",7.37},
        {"Nemes",3,15,"Endo","Endo","Common",25.29},
        {"Nemes",3,50,"Endo","Endo","Uncommon",7.37},
        {"Nemes",3,80,"Endo","Endo","Rare",1.01},
        {"Mania",100,1,"Weeping Wounds","Mod","Uncommon",22.22},
        {"Mania",100,1,"Embedded Catalyzer","Mod","Uncommon",22.22},
        {"Mania",100,1,"Catalyzer Link","Mod","Common",51.52},
        {"Mania",100,1,"Nano-Applicator","Mod","Rare",4.04},
        {"Angst",100,1,"Body Count","Mod","Common",51.52},
        {"Angst",100,1,"Pressurized Magazine","Mod","Rare",4.04},
        {"Angst",100,1,"Spring-Loaded Chamber","Mod","Uncommon",22.22},
        {"Angst",100,1,"Repeater Clip","Mod","Uncommon",22.22},
        {"Juggernaut Behemoth",3,1,"Convulsion","Mod","Rare",7.37},
        {"Juggernaut Behemoth",3,1,"Speed Trigger","Mod","Rare",7.37},
        {"Juggernaut Behemoth",3,1,"Regen","Mod","Uncommon",18.97},
        {"Juggernaut Behemoth",3,1,"Calculated Redirection","Mod","Uncommon",18.97},
        {"Juggernaut Behemoth",3,1,"Rupture","Mod","Uncommon",18.97},
        {"Juggernaut Behemoth",3,1,"Fracturing Wind","Mod","Rare",7.37},
        {"Juggernaut Behemoth",3,15,"Endo","Endo","Common",18.97},
        {"Juggernaut Behemoth",3,80,"Endo","Endo","Rare",2.01},
        {"Juggernaut Behemoth",10,1,"Pherliac Pods Blueprint","Blueprint","Very Common",100},
        {"Mutalist Toxic Carrier",3,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Mutalist Toxic Carrier",3,1,"Argon Plating","Mod","Uncommon",18.97},
        {"Mutalist Toxic Carrier",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Mutalist Toxic Carrier",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Mutalist Toxic Carrier",3,1,"Combustion Rounds","Mod","Uncommon",11.06},
        {"Mutalist Toxic Carrier",3,15,"Endo","Endo","Common",18.97},
        {"Mutalist Toxic Carrier",3,50,"Endo","Endo","Uncommon",11.06},
        {"Attack Mutalist",3,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Attack Mutalist",3,1,"Argon Plating","Mod","Uncommon",18.97},
        {"Attack Mutalist",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Attack Mutalist",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Attack Mutalist",3,1,"Combustion Rounds","Mod","Uncommon",11.06},
        {"Attack Mutalist",3,15,"Endo","Endo","Common",18.97},
        {"Attack Mutalist",3,50,"Endo","Endo","Uncommon",11.06},
        {"Mutalist Lightning Carrier",3,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Mutalist Lightning Carrier",3,1,"Argon Plating","Mod","Uncommon",18.97},
        {"Mutalist Lightning Carrier",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Mutalist Lightning Carrier",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Mutalist Lightning Carrier",3,1,"Combustion Rounds","Mod","Uncommon",11.06},
        {"Mutalist Lightning Carrier",3,15,"Endo","Endo","Common",18.97},
        {"Mutalist Lightning Carrier",3,50,"Endo","Endo","Uncommon",11.06},
        {"Mutalist Cannon Battery",3,1,"Energy Inversion","Mod","Uncommon",25.81,true},
        {"Mutalist Cannon Battery",3,1,"Bleeding Edge","Mod","Uncommon",25.81,true},
        {"Mutalist Cannon Battery",3,1,"Modified Munitions","Mod","Uncommon",11.28,true},
        {"Mutalist Cannon Battery",3,15,"Endo","Endo","Common",25.81,true},
        {"Mutalist Cannon Battery",3,50,"Endo","Endo","Uncommon",11.28,true},
        {"Corrupted Nullifier",3,1,"Spare Parts","Mod","Uncommon",11.06},
        {"Corrupted Nullifier",3,1,"Intruder","Mod","Very Common",75.88},
        {"Corrupted Nullifier",3,1,"Whirlwind","Mod","Legendary",0.67},
        {"Corrupted Nullifier",3,1,"Flailing Branch","Mod","Legendary",0.67},
        {"Corrupted Nullifier",3,50,"Endo","Endo","Uncommon",11.06},
        {"Corrupted Nullifier",3,80,"Endo","Endo","Rare",.67},
        {"Kuva Hellion",3,1,"Pressure Point","Mod","Common",37.94},
        {"Kuva Hellion",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Kuva Hellion",3,1,"Vitality","Mod","Common",37.94},
        {"Kuva Hellion",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Kuva Hellion",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Kuva Hellion",3,1,"Streamline","Mod","Legendary",0.5},
        {"Kuva Hellion",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Kuva Hellion",3,80,"Endo","Endo","Legendary",0.5},
        {"Kuva Heavy Gunner",10,1,"True Steel","Mod","Uncommon",25.29},
        {"Kuva Heavy Gunner",10,1,"Tactical Pump","Mod","Uncommon",11.06},
        {"Kuva Heavy Gunner",10,1,"Warm Coat","Mod","Uncommon",25.29},
        {"Kuva Heavy Gunner",10,1,"Expel Grineer","Mod","Uncommon",11.06},
        {"Kuva Heavy Gunner",10,1,"Sovereign Outcast","Mod","Rare",2.01},
        {"Kuva Heavy Gunner",10,15,"Endo","Endo","Uncommon",25.29},
        {"Kuva Bombard",3,1,"True Steel","Mod","Uncommon",25.29},
        {"Kuva Bombard",3,1,"Tactical Pump","Mod","Uncommon",11.06},
        {"Kuva Bombard",3,1,"Warm Coat","Mod","Uncommon",25.29},
        {"Kuva Bombard",3,1,"Expel Grineer","Mod","Uncommon",11.06},
        {"Kuva Bombard",3,1,"Sanctuary","Mod","Legendary",0.5},
        {"Kuva Bombard",3,1,"Sure Footed","Mod","Legendary",0.5},
        {"Kuva Bombard",3,1,"Crimson Dervish","Mod","Legendary",0.5},
        {"Kuva Bombard",3,15,"Endo","Endo","Common",25.29},
        {"Kuva Bombard",3,80,"Endo","Endo","Rare",.5},
        {"Kuva Ballista",3,1,"Organ Shatter","Mod","Common",37.94},
        {"Kuva Ballista",3,1,"Stormbringer","Mod","Uncommon",11.06},
        {"Kuva Ballista",3,15,"Endo","Endo","Common",37.94},
        {"Kuva Ballista",3,50,"Endo","Endo","Uncommon",11.06},
        {"Kuva Ballista",3,80,"Endo","Endo","Rare",2.01},
        {"Kuva Eviscerator",3,1,"Melee Prowess","Mod","Uncommon",18.97},
        {"Kuva Eviscerator",3,1,"Shocking Touch","Mod","Uncommon",11.06},
        {"Kuva Eviscerator",3,1,"Pistol Gambit","Mod","Uncommon",18.97},
        {"Kuva Eviscerator",3,1,"Disruptor","Mod","Uncommon",18.97},
        {"Kuva Eviscerator",3,1,"Lingering Torment","Mod","Uncommon",18.97},
        {"Kuva Eviscerator",3,1,"Sundering Weave","Mod","Uncommon",11.06},
        {"Kuva Eviscerator",3,80,"Endo","Endo","Rare",2.01},
        {"Bailiff",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Bailiff",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Bailiff",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Bailiff",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Bailiff",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Bailiff",3,1,"North Wind","Mod","Rare",5.53},
        {"Bailiff",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Bailiff",3,15,"Endo","Endo","Common",18.97},
        {"Bailiff",3,50,"Endo","Endo","Uncommon",5.53},
        {"Bailiff",3,80,"Endo","Endo","Rare",1.01},
        {"Venin Mutalist",3,1,"Pressure Point","Mod","Common",37.94,true},
        {"Venin Mutalist",3,1,"Metal Auger","Mod","Legendary",0.67,true},
        {"Venin Mutalist",3,1,"Sinister Reach","Mod","Uncommon",11.06,true},
        {"Venin Mutalist",3,1,"Concealed Explosives","Mod","Legendary",0.67,true},
        {"Venin Mutalist",3,15,"Endo","Endo","Common",37.94,true},
        {"Venin Mutalist",3,50,"Endo","Endo","Uncommon",11.06,true},
        {"Venin Mutalist",3,80,"Endo","Endo","Rare",.67,true},
        {"Artificer",100,1,"Cryo Rounds","Mod","Rare",4.42,true},
        {"Artificer",100,1,"Stretch","Mod","Rare",4.42,true},
        {"Artificer",100,1,"Molten Impact","Mod","Rare",4.42,true},
        {"Artificer",100,1,"Killing Blow","Mod","Rare",4.42,true},
        {"Artificer",100,1,"Energy Channel","Mod","Ultra Rare",1.01,true},
        {"Artificer",100,15,"Endo","Endo","Common",75.88,true},
        {"Artificer",100,50,"Endo","Endo","Uncommon",4.42,true},
        {"Artificer",100,80,"Endo","Endo","Rare",1.01,true},
        {"Carabus",3,1,"Vitality","Mod","Uncommon",25.29},
        {"Carabus",3,1,"Hell's Chamber","Mod","Ultra Rare",1.01},
        {"Carabus",3,1,"Melee Prowess","Mod","Uncommon",25.29},
        {"Carabus",3,1,"Fury","Mod","Rare",7.37},
        {"Carabus",3,1,"Convulsion","Mod","Rare",7.37},
        {"Carabus",3,15,"Endo","Endo","Common",25.29},
        {"Carabus",3,50,"Endo","Endo","Uncommon",7.37},
        {"Carabus",3,80,"Endo","Endo","Rare",1.01},
        {"Datalyst",4,1,"Combustion Beam","Mod","Uncommon",25},
        {"Datalyst",4,1,"Vulpine Mask","Mod","Uncommon",25},
        {"Datalyst",4,1,"Gaia's Tragedy","Mod","Uncommon",25},
        {"Datalyst",4,80,"Endo","Endo","Uncommon",25},
        {"Attack Drone (Archwing)",3,1,"Extend","Mod","Uncommon",25.29},
        {"Attack Drone (Archwing)",3,1,"Magazine Extension","Mod","Uncommon",25.29},
        {"Attack Drone (Archwing)",3,1,"Efficient Transferral","Mod","Rare",2.01},
        {"Attack Drone (Archwing)",3,15,"Endo","Endo","Common",25.29},
        {"Attack Drone (Archwing)",3,50,"Endo","Endo","Uncommon",22.11},
        {"Corvette",3,1,"Furor","Mod","Rare",5.64},
        {"Corvette",3,1,"Enhanced Durability","Mod","Rare",5.64},
        {"Corvette",3,1,"Superior Defenses","Mod","Rare",5.64},
        {"Corvette",3,15,"Endo","Endo","Common",77.44},
        {"Corvette",3,50,"Endo","Endo","Uncommon",5.64},
        {"Frigate",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Frigate",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Frigate",3,1,"Hollowed Bullets","Mod","Rare",2.01},
        {"Frigate",3,1,"Tempered Blade","Mod","Uncommon",18.97},
        {"Frigate",3,15,"Endo","Endo","Common",18.97},
        {"Frigate",3,50,"Endo","Endo","Uncommon",22.11},
        {"Carrier",5,1,"Automatic Trigger","Mod","Rare",2.01},
        {"Carrier",5,1,"Argon Plating","Mod","Common",37.94},
        {"Carrier",5,1,"Venomous Clip","Mod","Rare",7.37},
        {"Carrier",5,1,"Furor","Mod","Rare",7.37},
        {"Carrier",5,15,"Endo","Endo","Common",37.94},
        {"Carrier",5,50,"Endo","Endo","Uncommon",7.37},
        {"Ranger",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Ranger",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Ranger",3,1,"Hollowed Bullets","Mod","Rare",2.01},
        {"Ranger",3,1,"Tempered Blade","Mod","Uncommon",18.97},
        {"Ranger",3,15,"Endo","Endo","Common",18.97},
        {"Ranger",3,50,"Endo","Endo","Uncommon",22.11},
        {"Penta Ranger",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Penta Ranger",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Penta Ranger",3,1,"Hollowed Bullets","Mod","Rare",2.01},
        {"Penta Ranger",3,1,"Tempered Blade","Mod","Uncommon",18.97},
        {"Penta Ranger",3,15,"Endo","Endo","Common",18.97},
        {"Penta Ranger",3,50,"Endo","Endo","Uncommon",22.11},
        {"Quanta Ranger",3,1,"Parallax Scope","Mod","Uncommon",18.97},
        {"Quanta Ranger",3,1,"Cutting Edge","Mod","Uncommon",18.97},
        {"Quanta Ranger",3,1,"Hollowed Bullets","Mod","Rare",2.01},
        {"Quanta Ranger",3,1,"Tempered Blade","Mod","Uncommon",18.97},
        {"Quanta Ranger",3,15,"Endo","Endo","Common",18.97},
        {"Quanta Ranger",3,50,"Endo","Endo","Uncommon",22.11},
        {"Gox",3,1,"Furor","Mod","Rare",5.64},
        {"Gox",3,1,"Enhanced Durability","Mod","Rare",5.64},
        {"Gox",3,1,"Superior Defenses","Mod","Rare",5.64},
        {"Gox",3,15,"Endo","Endo","Common",77.44},
        {"Gox",3,50,"Endo","Endo","Uncommon",5.64},
        {"Cannon Battery (2)",3,1,"Energy Inversion","Mod","Uncommon",25.81,true},
        {"Cannon Battery (2)",3,1,"Bleeding Edge","Mod","Uncommon",25.81,true},
        {"Cannon Battery (2)",3,1,"Modified Munitions","Mod","Uncommon",11.28,true},
        {"Cannon Battery (2)",3,15,"Endo","Endo","Common",25.81,true},
        {"Cannon Battery (2)",3,50,"Endo","Endo","Uncommon",11.28,true},
        {"Jack O'Naut",3,1,"Convulsion","Mod","Rare",7.37,true},
        {"Jack O'Naut",3,1,"Speed Trigger","Mod","Rare",7.37,true},
        {"Jack O'Naut",3,1,"Regen","Mod","Uncommon",18.97,true},
        {"Jack O'Naut",3,1,"Calculated Redirection","Mod","Uncommon",18.97,true},
        {"Jack O'Naut",3,1,"Rupture","Mod","Uncommon",18.97,true},
        {"Jack O'Naut",3,1,"Fracturing Wind","Mod","Rare",7.37,true},
        {"Jack O'Naut",3,15,"Endo","Endo","Common",18.97,true},
        {"Jack O'Naut",3,80,"Endo","Endo","Rare",2.01,true},
        {"Jack O'Naut",10,1,"Pherliac Pods Blueprint","Blueprint","Very Common",100,true},
        {"Grineer Manic (2)",3,1,"Killing Blow","Mod","Rare",7.37,true},
        {"Grineer Manic (2)",3,1,"Barrel Diffusion","Mod","Legendary",0.67,true},
        {"Grineer Manic (2)",3,1,"Accelerated Deflection","Mod","Rare",7.37,true},
        {"Grineer Manic (2)",3,1,"Sawtooth Clip","Mod","Very Common",75.88,true},
        {"Grineer Manic (2)",3,1,"Crushing Ruin","Mod","Legendary",0.67,true},
        {"Grineer Manic (2)",3,1,"Shimmering Blight","Mod","Rare",7.37,true},
        {"Grineer Manic (2)",3,80,"Endo","Endo","Legendary",0.67,true},
        {"Grineer Manic",33,1,"Ash Chassis Blueprint","Blueprint","Common",38.72},
        {"Grineer Manic",33,1,"Ash Neuroptics Blueprint","Blueprint","Common",38.72},
        {"Grineer Manic",33,1,"Ash Systems Blueprint","Blueprint","Uncommon",22.56},
        {"Scrambus",4,1,"Combustion Beam","Mod","Uncommon",25},
        {"Scrambus",4,1,"Vulpine Mask","Mod","Uncommon",25},
        {"Scrambus",4,1,"Gaia's Tragedy","Mod","Uncommon",25},
        {"Scrambus",4,80,"Endo","Endo","Uncommon",25},
        {"Tenno Specter",3,1,"Rage","Mod","Uncommon",20, true},
        {"Tenno Specter",3,1,"Berserker","Mod","Uncommon",20, true},
        {"Tenno Specter",3,1,"Flow","Mod","Uncommon",20, true},
        {"Tenno Specter",3,1,"Master Thief","Mod","Uncommon",20, true},
        {"Tenno Specter",3,1,"Decisive Judgement","Mod","Uncommon",20, true},
        {"Courier",30,1,"Argon Plating","Mod","Common",37.94},
        {"Courier",30,1,"Dual Rounds","Mod","Rare",2.01},
        {"Courier",30,15,"Endo","Endo","Common",37.94},
        {"Courier",30,50,"Endo","Endo","Uncommon",22.11},
        {"Kuva Dargyn",12.5,1,"Sudden Impact","Mod","Uncommon",25.29},
        {"Kuva Dargyn",12.5,1,"Rubedo-Lined Barrel","Mod","Uncommon",11.06},
        {"Kuva Dargyn",12.5,1,"Extend","Mod","Uncommon",25.29},
        {"Kuva Dargyn",12.5,1,"System Reroute","Mod","Rare",2.01},
        {"Kuva Dargyn",12.5,15,"Endo","Endo","Common",25.29},
        {"Kuva Dargyn",12.5,50,"Endo","Endo","Uncommon",11.06},
        {"Nightwatch Reaver",3,1,"Pressure Point","Mod","Common",37.94},
        {"Nightwatch Reaver",3,1,"Heavy Trauma","Mod","Legendary",0.5},
        {"Nightwatch Reaver",3,1,"Vitality","Mod","Common",37.94},
        {"Nightwatch Reaver",3,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Nightwatch Reaver",3,1,"Diamond Skin","Mod","Uncommon",11.06},
        {"Nightwatch Reaver",3,1,"Streamline","Mod","Legendary",0.5},
        {"Nightwatch Reaver",3,1,"Iron Phoenix","Mod","Legendary",0.5},
        {"Nightwatch Reaver",3,80,"Endo","Endo","Legendary",0.5},
        {"Roller Sentry",3,1,"True Steel","Mod","Uncommon",18.97},
        {"Roller Sentry",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Roller Sentry",3,1,"Hellfire","Mod","Rare",7.37},
        {"Roller Sentry",3,1,"Fast Deflection","Mod","Rare",7.37},
        {"Roller Sentry",3,1,"Enhanced Vitality","Mod","Uncommon",18.97},
        {"Roller Sentry",3,15,"Endo","Endo","Common",18.97},
        {"Roller Sentry",3,50,"Endo","Endo","Uncommon",7.37},
        {"Roller Sentry",3,80,"Endo","Endo","Rare",2.01},
        {"Corrupted Warden",3,1,"Blunderbuss","Mod","Uncommon",18.97},
        {"Corrupted Warden",3,1,"Slip Magazine","Mod","Uncommon",18.97},
        {"Corrupted Warden",3,1,"Magazine Warp","Mod","Uncommon",18.97},
        {"Corrupted Warden",3,1,"Shell Compression","Mod","Uncommon",11.06},
        {"Corrupted Warden",3,1,"Decisive Judgement","Mod","Ultra Rare",1.01},
        {"Corrupted Warden",3,15,"Endo","Endo","Common",18.97},
        {"Corrupted Warden",3,50,"Endo","Endo","Uncommon",11.06},
        {"Corrupted Warden",3,80,"Endo","Endo","Rare",1.01},
        {"Corrupted Warden",1,1,"Gorgon Blueprint","Blueprint","Very Common",100},
        {"Grineer Manic",50,1,"Flow","Mod","Legendary",0.67},
        {"Grineer Manic",50,1,"Point Strike","Mod","Uncommon",18.97},
        {"Grineer Manic",50,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Grineer Manic",50,1,"Reflex Coil","Mod","Rare",7.37},
        {"Grineer Manic",50,1,"North Wind","Mod","Rare",7.37},
        {"Grineer Manic",50,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Grineer Manic",50,1,"Four Riders","Mod","Legendary",0.67},
        {"Grineer Manic",50,15,"Endo","Endo","Common",18.97},
        {"Grineer Manic",50,50,"Endo","Endo","Uncommon",7.37},
        {"Grineer Manic",50,80,"Endo","Endo","Rare",.67},
        {"Raptor (2)",5,1,"Reflex Coil","Mod","Uncommon",11.06,true},
        {"Raptor (2)",5,1,"Stretch","Mod","Uncommon",11.06,true},
        {"Raptor (2)",5,1,"Organ Shatter","Mod","Common",37.94,true},
        {"Raptor (2)",5,1,"Reach","Mod","Common",37.94,true},
        {"Raptor (2)",5,1,"Split Chamber","Mod","Rare",2.01,true},
        {"Manic Bombard",40,1,"True Steel","Mod","Uncommon",25.29},
        {"Manic Bombard",40,1,"Tactical Pump","Mod","Uncommon",11.06},
        {"Manic Bombard",40,1,"Warm Coat","Mod","Uncommon",25.29},
        {"Manic Bombard",40,1,"Expel Grineer","Mod","Uncommon",11.06},
        {"Manic Bombard",40,1,"Vermilion Storm","Mod","Legendary",0.67},
        {"Manic Bombard",40,1,"Vulpine Mask","Mod","Legendary",0.67},
        {"Manic Bombard",40,15,"Endo","Endo","Common",25.29},
        {"Manic Bombard",40,80,"Endo","Endo","Rare",.67},
        {"Stalker",100,1,"Molten Impact","Mod","Uncommon",30.56},
        {"Stalker",100,1,"Energy Channel","Mod","Rare",2.78},
        {"Stalker",100,1,"Intensify","Mod","Rare",2.78},
        {"Stalker",100,1,"Heavy Impact","Mod","Uncommon",30.56},
        {"Stalker",100,1,"Blind Justice","Mod","Uncommon",30.56},
        {"Stalker",100,80,"Endo","Endo","Rare",2.78},
        {"Stalker",50,1,"Scimitar Engines Blueprint","Blueprint","Rare",2.01},
        {"Stalker",50,1,"Dread Blueprint","Blueprint","Very Common",75.88},
        {"Stalker",50,1,"Despair Blueprint","Blueprint","Uncommon",11.06},
        {"Stalker",50,1,"Hate Blueprint","Blueprint","Uncommon",11.06},
        {"Ogma",25,1,"Cutting Edge","Mod","Common",37.94},
        {"Ogma",25,1,"Poisonous Sting","Mod","Uncommon",11.06},
        {"Ogma",25,1,"Dual Rounds","Mod","Ultra Rare",1.01},
        {"Ogma",25,1,"System Reroute","Mod","Ultra Rare",1.01},
        {"Ogma",25,15,"Endo","Endo","Common",37.94},
        {"Ogma",25,50,"Endo","Endo","Uncommon",11.06},
        {"Nightwatch Lancer",3,1,"Fury","Mod","Rare",7.37},
        {"Nightwatch Lancer",3,1,"Ammo Drum","Mod","Uncommon",25.29},
        {"Nightwatch Lancer",3,1,"No Return","Mod","Rare",7.37},
        {"Nightwatch Lancer",3,1,"Reach","Mod","Uncommon",25.29},
        {"Nightwatch Lancer",3,1,"Reaping Spiral","Mod","Rare",7.37},
        {"Nightwatch Lancer",3,15,"Endo","Endo","Common",25.29},
        {"Nightwatch Lancer",3,80,"Endo","Endo","Rare",2.01},
        {"Temporal Dreg",10,1,"Morphic Transformer","Mod","Rare",2.01},
        {"Temporal Dreg",10,1,"Extend","Mod","Uncommon",25.29},
        {"Temporal Dreg",10,1,"Parallax Scope","Mod","Uncommon",25.29},
        {"Temporal Dreg",10,1,"Polar Magazine","Mod","Uncommon",11.06},
        {"Temporal Dreg",10,15,"Endo","Endo","Common",25.29},
        {"Temporal Dreg",10,50,"Endo","Endo","Uncommon",11.06},
        {"Frontier Bailiff",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Frontier Bailiff",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Frontier Bailiff",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Frontier Bailiff",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Frontier Bailiff",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Frontier Bailiff",3,1,"North Wind","Mod","Rare",5.53},
        {"Frontier Bailiff",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Frontier Bailiff",3,15,"Endo","Endo","Common",18.97},
        {"Frontier Bailiff",3,50,"Endo","Endo","Uncommon",5.53},
        {"Frontier Bailiff",3,80,"Endo","Endo","Rare",1.01},
        {"Dargyn",3,1,"Bleeding Edge","Mod","Uncommon",25.29},
        {"Dargyn",3,1,"Glacial Edge","Mod","Rare",7.37},
        {"Dargyn",3,1,"Magazine Extension","Mod","Uncommon",25.29},
        {"Dargyn",3,1,"Modified Munitions","Mod","Rare",7.37},
        {"Dargyn",3,1,"Efficient Transferral","Mod","Rare",2.01},
        {"Dargyn",3,15,"Endo","Endo","Common",25.29},
        {"Dargyn",3,50,"Endo","Endo","Uncommon",7.37},
        {"Drahk Master",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Drahk Master",3,1,"Smite Grineer","Mod","Rare",5.53},
        {"Drahk Master",3,1,"Point Strike","Mod","Uncommon",18.97},
        {"Drahk Master",3,1,"Fast Hands","Mod","Uncommon",18.97},
        {"Drahk Master",3,1,"Reflex Coil","Mod","Rare",5.53},
        {"Drahk Master",3,1,"North Wind","Mod","Rare",5.53},
        {"Drahk Master",3,1,"Pressure Point","Mod","Uncommon",18.97},
        {"Drahk Master",3,15,"Endo","Endo","Common",18.97},
        {"Drahk Master",3,50,"Endo","Endo","Uncommon",5.53},
        {"Drahk Master",3,80,"Endo","Endo","Rare",1.01},
        {"Shield-Hellion Dargyn",20,1,"Energy Amplifier","Mod","Rare",7.37},
        {"Shield-Hellion Dargyn",20,1,"Bleeding Edge","Mod","Common",37.94},
        {"Shield-Hellion Dargyn",20,1,"Blazing Steel","Mod","Rare",7.37},
        {"Shield-Hellion Dargyn",20,1,"Dual Rounds","Mod","Rare",2.01},
        {"Shield-Hellion Dargyn",20,15,"Endo","Endo","Common",37.94},
        {"Shield-Hellion Dargyn",20,50,"Endo","Endo","Uncommon",7.37},
        {"Heavy Gunner (2)",3,1,"Pressure Point","Mod","Common",37.94, true},
        {"Heavy Gunner (2)",3,1,"Heavy Trauma","Mod","Legendary",0.5, true},
        {"Heavy Gunner (2)",3,1,"Vitality","Mod","Common",37.94, true},
        {"Heavy Gunner (2)",3,1,"Heated Charge","Mod","Uncommon",11.06, true},
        {"Heavy Gunner (2)",3,1,"Diamond Skin","Mod","Uncommon",11.06, true},
        {"Heavy Gunner (2)",3,1,"Streamline","Mod","Legendary",0.5, true},
        {"Heavy Gunner (2)",3,1,"Iron Phoenix","Mod","Legendary",0.5, true},
        {"Heavy Gunner (2)",3,80,"Endo","Endo","Legendary",0.5, true},
        {"Leaper",3,1,"Cleanse Infested","Mod","Rare",7.37},
        {"Leaper",3,1,"Swift Deth","Mod","Common",37.94},
        {"Leaper",3,1,"Seismic Palm","Mod","Rare",2.01},
        {"Leaper",3,1,"Fatal Acceleration","Mod","Rare",7.37},
        {"Leaper",3,1,"Spinning Needle","Mod","Rare",7.37},
        {"Leaper",3,15,"Endo","Endo","Common",37.94},
        {"Zeplen",3,1,"Sudden Impact","Mod","Uncommon",25.81},
        {"Zeplen",3,1,"Magazine Extension","Mod","Uncommon",25.81},
        {"Zeplen",3,1,"Modified Munitions","Mod","Rare",7.52},
        {"Zeplen",3,1,"Enhanced Durability","Mod","Rare",7.52},
        {"Zeplen",3,15,"Endo","Endo","Common",25.81},
        {"Zeplen",3,50,"Endo","Endo","Uncommon",7.52},
        {"Hellion Dargyn",12.5,1,"Sudden Impact","Mod","Uncommon",25.29},
        {"Hellion Dargyn",12.5,1,"Rubedo-Lined Barrel","Mod","Uncommon",11.06},
        {"Hellion Dargyn",12.5,1,"Extend","Mod","Uncommon",25.29},
        {"Hellion Dargyn",12.5,1,"System Reroute","Mod","Rare",2.01},
        {"Hellion Dargyn",12.5,15,"Endo","Endo","Common",25.29},
        {"Hellion Dargyn",12.5,50,"Endo","Endo","Uncommon",11.06},
        {"Kuva Roller",3,1,"True Steel","Mod","Uncommon",18.97},
        {"Kuva Roller",3,1,"Trick Mag","Mod","Uncommon",18.97},
        {"Kuva Roller",3,1,"Hellfire","Mod","Rare",7.37},
        {"Kuva Roller",3,1,"Fast Deflection","Mod","Rare",7.37},
        {"Kuva Roller",3,1,"Enhanced Vitality","Mod","Uncommon",18.97},
        {"Kuva Roller",3,15,"Endo","Endo","Common",18.97},
        {"Kuva Roller",3,50,"Endo","Endo","Uncommon",7.37},
        {"Kuva Roller",3,80,"Endo","Endo","Rare",2.01},
        {"Lephantis (Body)",100,1,"Stabilizer","Mod","Rare",2.01},
        {"Lephantis (Body)",100,1,"Spare Parts","Mod","Uncommon",22.11},
        {"Lephantis (Body)",100,1,"Rebound","Mod","Common",37.94},
        {"Lephantis (Body)",100,1,"Quick Return","Mod","Common",37.94},
        {"Lephantis",100,1,"Stabilizer","Mod","Rare",2.01, true},
        {"Lephantis",100,1,"Spare Parts","Mod","Uncommon",22.11, true},
        {"Lephantis",100,1,"Rebound","Mod","Common",37.94, true},
        {"Lephantis",100,1,"Quick Return","Mod","Common",37.94, true},
        {"Captain Vor",100,1,"Vitality","Mod","Uncommon",25.29},
        {"Captain Vor",100,1,"Heated Charge","Mod","Uncommon",11.06},
        {"Captain Vor",100,1,"Slip Magazine","Mod","Uncommon",25.29},
        {"Captain Vor",100,1,"Gunslinger","Mod","Uncommon",11.06},
        {"Captain Vor",100,1,"Quickdraw","Mod","Uncommon",25.29},
        {"Captain Vor",100,1,"Intensify","Mod","Rare",2.01},
        {"Turret",3,1,"Energy Inversion","Mod","Uncommon",25.81},
        {"Turret",3,1,"Bleeding Edge","Mod","Uncommon",25.81},
        {"Turret",3,1,"Modified Munitions","Mod","Uncommon",11.28},
        {"Turret",3,15,"Endo","Endo","Common",25.81},
        {"Turret",3,50,"Endo","Endo","Uncommon",11.28},
        {"Kuva Hyekka Master",3,1,"Flow","Mod","Ultra Rare",1.01},
        {"Kuva Hyekka Master",3,1,"Fast Hands","Mod","Uncommon",25.29},
        {"Kuva Hyekka Master",3,1,"Pressure Point","Mod","Uncommon",25.29},
        {"Kuva Hyekka Master",3,15,"Endo","Endo","Common",25.29},
        {"Kuva Hyekka Master",3,50,"Endo","Endo","Uncommon",22.11},
        {"Kuva Hyekka Master",3,80,"Endo","Endo","Rare",1.01},
        {"Kuva Hyekka Master",1.5,1,"Kavat Incubator Upgrade Segment Blueprint","Blueprint","Very Common",100},
        {"Ogma Elite",25,1,"Cutting Edge","Mod","Common",37.94},
        {"Ogma Elite",25,1,"Poisonous Sting","Mod","Uncommon",11.06},
        {"Ogma Elite",25,1,"Dual Rounds","Mod","Ultra Rare",1.01},
        {"Ogma Elite",25,1,"System Reroute","Mod","Ultra Rare",1.01},
        {"Ogma Elite",25,15,"Endo","Endo","Common",37.94},
        {"Ogma Elite",25,50,"Endo","Endo","Uncommon",11.06},
        {"Zanuka Hunter",50,1,"Scimitar Avionics Blueprint","Blueprint","Common",50},
        {"Zanuka Hunter",50,1,"Detron Blueprint","Blueprint","Common",50},
        {"Fissure Corrupted Enemy",3,1,"Harrow Chassis Blueprint","Blueprint","Very Common",100}
    },
    ["MissionDetails"] = {
        ["Apollodorus"] = { Node = "Apollodorus", Planet = "Mercury", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Infested", MinLevel = 6, MaxLevel = 11, Tier = "Survival1"},
        ["Boethius"] = { Node = "Boethius", Planet = "Mercury", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 8, MaxLevel = 10},
        ["Caloris"] = { Node = "Caloris", Planet = "Mercury", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 6, MaxLevel = 8, Tier = "Rescue1"},
        ["Elion"] = { Node = "Elion", Planet = "Mercury", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 7, MaxLevel = 9, Tier = "Capture"},
        ["Lares"] = { Node = "Lares", Planet = "Mercury", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 6, MaxLevel = 11, Tier = "Defense1", Other = "B"},
        ["M Prime"] = { Node = "M Prime", Planet = "Mercury", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 7, MaxLevel = 9},
        ["Odin"] = { Node = "Odin", Planet = "Mercury", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 6, MaxLevel = 11, Tier = "Interception1"},
        ["Pantheon"] = { Node = "Pantheon", Planet = "Mercury", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 6, MaxLevel = 8},
        ["Suisei"] = { Node = "Suisei", Planet = "Mercury", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 8, MaxLevel = 10, Tier = "Spy1"},
        ["Terminus"] = { Node = "Terminus", Planet = "Mercury", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Infested", MinLevel = 8, MaxLevel = 10, Tier = "Reactor1"},
        ["Aphrodite"] = { Node = "Aphrodite", Planet = "Venus", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 6, MaxLevel = 8},
        ["Cytherean"] = { Node = "Cytherean", Planet = "Venus", Type = "Interception", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 3, MaxLevel = 8, Tier = "Interception1"},
        ["E Gate"] = { Node = "E Gate", Planet = "Venus", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 3, MaxLevel = 5},
        ["Ishtar"] = { Node = "Ishtar", Planet = "Venus", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 6, MaxLevel = 8, Tier = "Reactor1"},
        ["Kiliken"] = { Node = "Kiliken", Planet = "Venus", Type = "Excavation", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 3, MaxLevel = 8, Tier = "Excavation1"},
        ["Linea"] = { Node = "Linea", Planet = "Venus", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 5, MaxLevel = 7, Tier = "Rescue1"},
        ["Malva"] = { Node = "Malva", Planet = "Venus", Type = "Survival", IsDarkSector = 1,
            Tileset = "Corpus Ship", Enemy = "Infested", MinLevel = 8, MaxLevel = 18, Tier = "DSSurvival1"},
        ["Montes"] = { Node = "Montes", Planet = "Venus", Type = "Exterminate", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Corpus Ship (Archwing)", Enemy = "Corpus", MinLevel = 3, MaxLevel = 8, Tier = "AWExterminate"},
        ["Romula"] = { Node = "Romula", Planet = "Venus", Type = "Defense", IsDarkSector = 1,
            Tileset = "Corpus Outpost", Enemy = "Infested", MinLevel = 6, MaxLevel = 8, Tier = "DSDefense"},
        ["Tessera"] = { Node = "Tessera", Planet = "Venus", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 3, MaxLevel = 8, Tier = "Defense1", Other = "E"},
        ["Unda"] = { Node = "Unda", Planet = "Venus", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 4, MaxLevel = 6, Tier = "Spy1"},
        ["Venera"] = { Node = "Venera", Planet = "Venus", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 5, MaxLevel = 7, Tier = "Capture"},
        ["V Prime"] = { Node = "V Prime", Planet = "Venus", Type = "Survival", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 3, MaxLevel = 8, Tier = "Survival1"},
        ["Cambria"] = { Node = "Cambria", Planet = "Earth", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 2, MaxLevel = 4, Tier = "Spy1"},
        ["Cervantes"] = { Node = "Cervantes", Planet = "Earth", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 4, MaxLevel = 6, Tier = "EarthCaches"},
        ["E Prime"] = { Node = "E Prime", Planet = "Earth", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 1, MaxLevel = 3},
        ["Erpo"] = { Node = "Erpo", Planet = "Earth", Type = "Mobile Defense", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Free Space", Enemy = "Grineer", MinLevel = 1, MaxLevel = 6, Tier = "AWMobileDefense"},
        ["Eurasia"] = { Node = "Eurasia", Planet = "Earth", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 3, MaxLevel = 5},
        ["Everest"] = { Node = "Everest", Planet = "Earth", Type = "Excavation", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 1, MaxLevel = 6, Tier = "Excavation1"},
        ["Gaia"] = { Node = "Gaia", Planet = "Earth", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 1, MaxLevel = 6, Tier = "Interception1"},
        ["Lith"] = { Node = "Lith", Planet = "Earth", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 1, MaxLevel = 6, Tier = "Defense1", Other = "J"},
        ["Mantle"] = { Node = "Mantle", Planet = "Earth", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Forest", Enemy = "Grineer", MinLevel = 2, MaxLevel = 4, Tier = "Capture"},
        ["Mariana"] = { Node = "Mariana", Planet = "Earth", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 1, MaxLevel = 3},
        ["Pacific"] = { Node = "Pacific", Planet = "Earth", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 3, MaxLevel = 6, Tier = "Rescue1"},
        ["Coba"] = { Node = "Coba", Planet = "Earth", Type = "Defense", IsDarkSector = 1,
            Tileset = "Grineer Forest", Enemy = "Infested", MinLevel = 6, MaxLevel = 16, Tier = "DSDefense"},
        ["Tikal"] = { Node = "Tikal", Planet = "Earth", Type = "Excavation", IsDarkSector = 1,
            Tileset = "Grineer Forest", Enemy = "Infested", MinLevel = 6, MaxLevel = 16, Tier = "Excavation1"},
        ["Alator"] = { Node = "Alator", Planet = "Mars", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 8, MaxLevel = 13, Tier = "Interception1"},
        ["Ara"] = { Node = "Ara", Planet = "Mars", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 10, MaxLevel = 12, Tier = "Capture"},
        ["Ares"] = { Node = "Ares", Planet = "Mars", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 9, MaxLevel = 11},
        ["Arval"] = { Node = "Arval", Planet = "Mars", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 9, MaxLevel = 11, Tier = "Spy1"},
        ["Augustus"] = { Node = "Augustus", Planet = "Mars", Type = "Excavation", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 9, MaxLevel = 14, Tier = "Excavation1"},
        ["Gradivus"] = { Node = "Gradivus", Planet = "Mars", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 9, MaxLevel = 11, Tier = "Reactor1"},
        ["Hellas"] = { Node = "Hellas", Planet = "Mars", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 8, MaxLevel = 10},
        ["Kadesh"] = { Node = "Kadesh", Planet = "Mars", Type = "Defense", IsDarkSector = 1,
            Tileset = "Grineer Settlement", Enemy = "Infested", MinLevel = 10, MaxLevel = 20, Tier = "DSDefense"},
        ["Martialis"] = { Node = "Martialis", Planet = "Mars", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 10, MaxLevel = 12, Tier = "Rescue1"},
        ["Olympus"] = { Node = "Olympus", Planet = "Mars", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 11, MaxLevel = 13},
        ["Spear"] = { Node = "Spear", Planet = "Mars", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Settlement", Enemy = "Grineer", MinLevel = 8, MaxLevel = 13, Tier = "Defense1", Other = "B"},
        ["Syrtis"] = { Node = "Syrtis", Planet = "Mars", Type = "Exterminate", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Free Space", Enemy = "Grineer", MinLevel = 8, MaxLevel = 13, Tier = "AWExterminate"},
        ["Tharsis"] = { Node = "Tharsis", Planet = "Mars", Type = "Hijack", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 8, MaxLevel = 10},
        ["Ultor"] = { Node = "Ultor", Planet = "Mars", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Crossfire", MinLevel = 11, MaxLevel = 13},
        ["Vallis"] = { Node = "Vallis", Planet = "Mars", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 11, MaxLevel = 13},
        ["Wahiba"] = { Node = "Wahiba", Planet = "Mars", Type = "Survival", IsDarkSector = 1,
            Tileset = "Corpus Ship", Enemy = "Infested", MinLevel = 10, MaxLevel = 20, Tier = "DSSurvival2"},
        ["Roche"] = { Node = "Roche", Planet = "Phobos", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 10, MaxLevel = 12},
        ["Sharpless"] = { Node = "Sharpless", Planet = "Phobos", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 11, MaxLevel = 13},
        ["Gulliver"] = { Node = "Gulliver", Planet = "Phobos", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 10, MaxLevel = 15, Tier = "Defense1", Other = "C"},
        ["Kepler"] = { Node = "Kepler", Planet = "Phobos", Type = "Rush (Archwing)", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Corpus Ship (Archwing)", Enemy = "Corpus", MinLevel = 12, MaxLevel = 14, Tier = "AWRush"},
        ["Memphis"] = { Node = "Memphis", Planet = "Phobos", Type = "Defection", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 15, MaxLevel = 25, Tier = "Defection1"},
        ["Monolith"] = { Node = "Monolith", Planet = "Phobos", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 13, MaxLevel = 15, Tier = "Rescue1"},
        ["Shklovsky"] = { Node = "Shklovsky", Planet = "Phobos", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 11, MaxLevel = 13, Tier = "Spy1"},
        ["Skyresh"] = { Node = "Skyresh", Planet = "Phobos", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 12, MaxLevel = 14, Tier = "Capture"},
        ["Stickney"] = { Node = "Stickney", Planet = "Phobos", Type = "Survival", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 10, MaxLevel = 15, Tier = "Survival1"},
        ["Zeugma"] = { Node = "Zeugma", Planet = "Phobos", Type = "Survival", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 15, MaxLevel = 25, Tier = "DSSurvival2"},
        ["Bode"] = { Node = "Bode", Planet = "Ceres", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 12, MaxLevel = 14, Tier = "Spy2"},
        ["Casta"] = { Node = "Casta", Planet = "Ceres", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 12, MaxLevel = 17, Tier = "Defense1", Other = "I"},
        ["Cinxia"] = { Node = "Cinxia", Planet = "Ceres", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 12, MaxLevel = 17, Tier = "Interception1"},
        ["Draco"] = { Node = "Draco", Planet = "Ceres", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 12, MaxLevel = 17, Tier = "Survival2"},
        ["Gabii"] = { Node = "Gabii", Planet = "Ceres", Type = "Survival", IsDarkSector = 1,
            Tileset = "Grineer Galleon", Enemy = "Infested", MinLevel = 15, MaxLevel = 25, Tier = "DSSurvival1"},
        ["Ker"] = { Node = "Ker", Planet = "Ceres", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 14, MaxLevel = 16},
        ["Kiste"] = { Node = "Kiste", Planet = "Ceres", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 13, MaxLevel = 15},
        ["Lex"] = { Node = "Lex", Planet = "Ceres", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 14, MaxLevel = 16, Tier = "Capture"},
        ["Ludi"] = { Node = "Ludi", Planet = "Ceres", Type = "Hijack", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 15, MaxLevel = 17},
        ["Nuovo"] = { Node = "Nuovo", Planet = "Ceres", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 13, MaxLevel = 15, Tier = "Rescue1"},
        ["Pallas"] = { Node = "Pallas", Planet = "Ceres", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 12, MaxLevel = 14},
        ["Seimeni"] = { Node = "Seimeni", Planet = "Ceres", Type = "Defense", IsDarkSector = 1,
            Tileset = "Grineer Shipyard", Enemy = "Infested", MinLevel = 15, MaxLevel = 25, Tier = "DSDefense"},
        ["Thon"] = { Node = "Thon", Planet = "Ceres", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 15, MaxLevel = 17, Tier = "Reactor2"},
        ["Adrastea"] = { Node = "Adrastea", Planet = "Jupiter", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 18, MaxLevel = 20, Tier = "Reactor2"},
        ["Amalthea"] = { Node = "Amalthea", Planet = "Jupiter", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 17, MaxLevel = 19, Tier = "Spy2"},
        ["Ananke"] = { Node = "Ananke", Planet = "Jupiter", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 16, MaxLevel = 18, Tier = "Capture"},
        ["Callisto"] = { Node = "Callisto", Planet = "Jupiter", Type = "Interception", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 15, MaxLevel = 20, Tier = "Interception2"},
        ["Carme"] = { Node = "Carme", Planet = "Jupiter", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 16, MaxLevel = 18},
        ["Carpo"] = { Node = "Carpo", Planet = "Jupiter", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 17, MaxLevel = 19},
        ["Elara"] = { Node = "Elara", Planet = "Jupiter", Type = "Survival", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 15, MaxLevel = 20, Tier = "Survival2"},
        ["Galilea"] = { Node = "Galilea", Planet = "Jupiter", Type = "Sabotage", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Corpus Ship (Archwing)", Enemy = "Corpus", MinLevel = 15, MaxLevel = 20, Tier = "AWSabotage"},
        ["Io"] = { Node = "Io", Planet = "Jupiter", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 15, MaxLevel = 20, Tier = "Defense2", Other = "H"},
        ["Metis"] = { Node = "Metis", Planet = "Jupiter", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 20, MaxLevel = 22, Tier = "Rescue2"},
        ["Thebe"] = { Node = "Thebe", Planet = "Jupiter", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 18, MaxLevel = 20},
        ["Cameria"] = { Node = "Cameria", Planet = "Jupiter", Type = "Survival", IsDarkSector = 1,
            Tileset = "Corpus Gas City", Enemy = "Infested", MinLevel = 20, MaxLevel = 30, Tier = "DSSurvival2"},
        ["Sinai"] = { Node = "Sinai", Planet = "Jupiter", Type = "Defense", IsDarkSector = 1,
            Tileset = "Corpus Gas City", Enemy = "Infested", MinLevel = 20, MaxLevel = 30, Tier = "DSDefense"},
        ["Abaddon"] = { Node = "Abaddon", Planet = "Europa", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 21, MaxLevel = 23, Tier = "Capture"},
        ["Armaros"] = { Node = "Armaros", Planet = "Europa", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 18, MaxLevel = 20},
        ["Baal"] = { Node = "Baal", Planet = "Europa", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 21, MaxLevel = 23},
        ["Kokabiel"] = { Node = "Kokabiel", Planet = "Europa", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 20, MaxLevel = 22},
        ["Morax"] = { Node = "Morax", Planet = "Europa", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 18, MaxLevel = 20},
        ["Orias"] = { Node = "Orias", Planet = "Europa", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 20, MaxLevel = 22, Tier = "Rescue2"},
        ["Ose"] = { Node = "Ose", Planet = "Europa", Type = "Interception", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 18, MaxLevel = 23, Tier = "Interception2"},
        ["Paimon"] = { Node = "Paimon", Planet = "Europa", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 18, MaxLevel = 23, Tier = "Defense2", Other = "D/E/F"},
        ["Sorath"] = { Node = "Sorath", Planet = "Europa", Type = "Hijack", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 19, MaxLevel = 21},
        ["Valac"] = { Node = "Valac", Planet = "Europa", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 18, MaxLevel = 20, Tier = "Spy2"},
        ["Valefor"] = { Node = "Valefor", Planet = "Europa", Type = "Excavation", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 18, MaxLevel = 23, Tier = "Survival2"},
        ["Cholistan"] = { Node = "Cholistan", Planet = "Europa", Type = "Excavation", IsDarkSector = 1,
            Tileset = "Corpus Ice Planet", Enemy = "Infested", MinLevel = 23, MaxLevel = 33, Tier = "Survival3"},
        ["Larzac"] = { Node = "Larzac", Planet = "Europa", Type = "Defense", IsDarkSector = 1,
            Tileset = "Corpus Ice Planet", Enemy = "Infested", MinLevel = 23, MaxLevel = 33, Tier = "DSDefense"},
        ["Anthe"] = { Node = "Anthe", Planet = "Saturn", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 22, MaxLevel = 24, Tier = "Rescue3"},
        ["Calypso"] = { Node = "Calypso", Planet = "Saturn", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 24, MaxLevel = 26, Tier = "Reactor2"},
        ["Caracol"] = { Node = "Caracol", Planet = "Saturn", Type = "Defection", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 26, MaxLevel = 36, Tier = "Defection2"},
        ["Cassini"] = { Node = "Cassini", Planet = "Saturn", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 21, MaxLevel = 23, Tier = "Capture"},
        ["Dione"] = { Node = "Dione", Planet = "Saturn", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 21, MaxLevel = 23, Tier = "Spy2"},
        ["Enceladus"] = { Node = "Enceladus", Planet = "Saturn", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 23, MaxLevel = 25},
        ["Helene"] = { Node = "Helene", Planet = "Saturn", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 21, MaxLevel = 26, Tier = "Defense2", Other = "A"},
        ["Keeler"] = { Node = "Keeler", Planet = "Saturn", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 23, MaxLevel = 25},
        ["Numa"] = { Node = "Numa", Planet = "Saturn", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 22, MaxLevel = 24, Tier = "Rescue2"},
        ["Pandora"] = { Node = "Pandora", Planet = "Saturn", Type = "Pursuit", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Free Space", Enemy = "Grineer", MinLevel = 21, MaxLevel = 23, Tier = "AWPursuit"},
        ["Piscinas"] = { Node = "Piscinas", Planet = "Saturn", Type = "Survival", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 26, MaxLevel = 36, Tier = "DSSurvival2"},
        ["Rhea"] = { Node = "Rhea", Planet = "Saturn", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 21, MaxLevel = 26, Tier = "Interception2"},
        ["Telesto"] = { Node = "Telesto", Planet = "Saturn", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 22, MaxLevel = 24},
        ["Titan"] = { Node = "Titan", Planet = "Saturn", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 21, MaxLevel = 26, Tier = "Survival2"},
        ["Ariel"] = { Node = "Ariel", Planet = "Uranus", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 25, MaxLevel = 27, Tier = "Capture"},
        ["Assur"] = { Node = "Assur", Planet = "Uranus", Type = "Survival", IsDarkSector = 1,
            Tileset = "Grineer Galleon", Enemy = "Infested", MinLevel = 25, MaxLevel = 35, Tier = "DSSurvival3"},
        ["Caelus"] = { Node = "Caelus", Planet = "Uranus", Type = "Interception", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Free Space", Enemy = "Grineer", MinLevel = 24, MaxLevel = 29, Tier = "AWInterception"},
        ["Caliban"] = { Node = "Caliban", Planet = "Uranus", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 25, MaxLevel = 27, Tier = "Rescue3"},
        ["Cressida"] = { Node = "Cressida", Planet = "Uranus", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 25, MaxLevel = 27},
        ["Desdemona"] = { Node = "Desdemona", Planet = "Uranus", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 26, MaxLevel = 28, Tier = "SealabCaches"},
        ["Ophelia"] = { Node = "Ophelia", Planet = "Uranus", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 24, MaxLevel = 29, Tier = "Survival3"},
        ["Puck"] = { Node = "Puck", Planet = "Uranus", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 27, MaxLevel = 29},
        ["Rosalind"] = { Node = "Rosalind", Planet = "Uranus", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 27, MaxLevel = 29, Tier = "Spy3"},
        ["Stephano"] = { Node = "Stephano", Planet = "Uranus", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 25, MaxLevel = 27, Tier = "Defense3", Other = "O"},
        ["Sycorax"] = { Node = "Sycorax", Planet = "Uranus", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 24, MaxLevel = 26},
        ["Umbriel"] = { Node = "Umbriel", Planet = "Uranus", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 24, MaxLevel = 29, Tier = "Interception2"},
        ["Ur"] = { Node = "Ur", Planet = "Uranus", Type = "Defense", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 27, MaxLevel = 37, Tier = "DSDefense"},
        ["Despina"] = { Node = "Despina", Planet = "Neptune", Type = "Excavation", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 27, MaxLevel = 32, Tier = "Survival3"},
        ["Galatea"] = { Node = "Galatea", Planet = "Neptune", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Gas City", Enemy = "Corpus", MinLevel = 27, MaxLevel = 29, Tier = "Capture"},
        ["Kelashin"] = { Node = "Kelashin", Planet = "Neptune", Type = "Survival", IsDarkSector = 1,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 40, Tier = "DSSurvival3"},
        ["Laomedeia"] = { Node = "Laomedeia", Planet = "Neptune", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 30, MaxLevel = 32, Tier = "Spy3"},
        ["Larissa"] = { Node = "Larissa", Planet = "Neptune", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 29, MaxLevel = 31},
        ["Nereid"] = { Node = "Nereid", Planet = "Neptune", Type = "Hijack", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 30, MaxLevel = 32},
        ["Neso"] = { Node = "Neso", Planet = "Neptune", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Ice Planet", Enemy = "Corpus", MinLevel = 29, MaxLevel = 31},
        ["Proteus"] = { Node = "Proteus", Planet = "Neptune", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 30, MaxLevel = 32, Tier = "Defense3", Other = "D/E/F"},
        ["Salacia"] = { Node = "Salacia", Planet = "Neptune", Type = "Mobile Defense", IsDarkSector = 0, IsArchwing = 1,
            Tileset = "Corpus Ship (Archwing)", Enemy = "Corpus", MinLevel = 27, MaxLevel = 32, Tier = "AWMobileDefense"},
        ["Sao"] = { Node = "Sao", Planet = "Neptune", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 29, MaxLevel = 31},
        ["Triton"] = { Node = "Triton", Planet = "Neptune", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 28, MaxLevel = 30, Tier = "Rescue3"},
        ["Yursa"] = { Node = "Yursa", Planet = "Neptune", Type = "Defection", IsDarkSector = 1,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 40, Tier = "Defection3"},
        ["Acheron"] = { Node = "Acheron", Planet = "Pluto", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 34, MaxLevel = 38},
        ["Cerberus"] = { Node = "Cerberus", Planet = "Pluto", Type = "Interception", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 30, MaxLevel = 40, Tier = "Interception3"},
        ["Cypress"] = { Node = "Cypress", Planet = "Pluto", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 34, MaxLevel = 38, Tier = "Reactor3"},
        ["Hydra"] = { Node = "Hydra", Planet = "Pluto", Type = "Capture", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 30, MaxLevel = 34, Tier = "Capture"},
        ["Minthe"] = { Node = "Minthe", Planet = "Pluto", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 30, MaxLevel = 34},
        ["Narcissus"] = { Node = "Narcissus", Planet = "Pluto", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 32, MaxLevel = 36},
        ["Oceanum"] = { Node = "Oceanum", Planet = "Pluto", Type = "Spy", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 32, MaxLevel = 36, Tier = "Spy3"},
        ["Outer Terminus"] = { Node = "Outer Terminus", Planet = "Pluto", Type = "Defense", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 30, MaxLevel = 40, Tier = "Defense3", Other = "D/E/F"},
        ["Palus"] = { Node = "Palus", Planet = "Pluto", Type = "Survival", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Corpus", MinLevel = 30, MaxLevel = 40, Tier = "Survival3"},
        ["Regna"] = { Node = "Regna", Planet = "Pluto", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Corpus Outpost", Enemy = "Corpus", MinLevel = 34, MaxLevel = 38, Tier = "Rescue3"},
        ["Hieracon"] = { Node = "Hieracon", Planet = "Pluto", Type = "Excavation", IsDarkSector = 1,
            Tileset = "Corpus Outpost", Enemy = "Infested", MinLevel = 35, MaxLevel = 45, Tier = "Survival3"},
        ["Sechura"] = { Node = "Sechura", Planet = "Pluto", Type = "Defense", IsDarkSector = 1,
            Tileset = "Corpus Outpost", Enemy = "Infested", MinLevel = 32, MaxLevel = 36, Tier = "DSDefense"},
        ["Naga"] = { Node = "Naga", Planet = "Sedna", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 30, MaxLevel = 34, Tier = "Rescue3"},
        ["Berehynia"] = { Node = "Berehynia", Planet = "Sedna", Type = "Interception", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 30, MaxLevel = 40, Tier = "Interception3"},
        ["Hydron"] = { Node = "Hydron", Planet = "Sedna", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 30, MaxLevel = 40, Tier = "Defense3", Other = "A"},
        ["Selkie"] = { Node = "Selkie", Planet = "Sedna", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 30, MaxLevel = 40, Tier = "Survival3"},
        ["Adaro"] = { Node = "Adaro", Planet = "Sedna", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Asteroid", Enemy = "Grineer", MinLevel = 32, MaxLevel = 36},
        ["Rusalka"] = { Node = "Rusalka", Planet = "Sedna", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 32, MaxLevel = 36, Tier = "Capture"},
        ["Kappa"] = { Node = "Kappa", Planet = "Sedna", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 34, MaxLevel = 38, Tier = "Spy3"},
        ["Marid"] = { Node = "Marid", Planet = "Sedna", Type = "Hijack", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 34, MaxLevel = 38},
        ["Charybdis"] = { Node = "Charybdis", Planet = "Sedna", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 34, MaxLevel = 38},
        ["Amarna"] = { Node = "Amarna", Planet = "Sedna", Type = "Survival", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 35, MaxLevel = 45, Tier = "DSSurvival3"},
        ["Sangeru"] = { Node = "Sangeru", Planet = "Sedna", Type = "Defense", IsDarkSector = 1,
            Tileset = "Grineer Asteroid", Enemy = "Infested", MinLevel = 35, MaxLevel = 45, Tier = "DSDefense"},
        ["Kelpie"] = { Node = "Kelpie", Planet = "Sedna", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Grineer Galleon", Enemy = "Grineer", MinLevel = 36, MaxLevel = 40, Tier = "Reactor3"},
        ["Nakki"] = { Node = "Nakki", Planet = "Sedna", Type = "Rathuum", IsDarkSector = 0,
            Tileset = "Grineer Shipyard", Enemy = "Grineer", MinLevel = 40, MaxLevel = 40, Tier = "Rathuum1"},
        ["Yam"] = { Node = "Yam", Planet = "Sedna", Type = "Rathuum", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 60, MaxLevel = 60, Tier = "Rathuum2"},
        ["Vodyanoi"] = { Node = "Vodyanoi", Planet = "Sedna", Type = "Rathuum", IsDarkSector = 0,
            Tileset = "Grineer Sealab", Enemy = "Grineer", MinLevel = 85, MaxLevel = 85, Tier = "Rathuum2"},
        ["Brugia"] = { Node = "Brugia", Planet = "Eris", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 32, MaxLevel = 36, Tier = "Rescue3"},
        ["Isos"] = { Node = "Isos", Planet = "Eris", Type = "Capture", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 32, MaxLevel = 36, Tier = "Capture"},
        ["Kala-azar"] = { Node = "Kala-azar", Planet = "Eris", Type = "Defense", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 40, Tier = "Defense3", Other = "C"},
        ["Naeglar"] = { Node = "Naeglar", Planet = "Eris", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 34, Tier = "HiveCaches"},
        ["Nimus"] = { Node = "Nimus", Planet = "Eris", Type = "Survival", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 40, Tier = "Survival3"},
        ["Oestrus"] = { Node = "Oestrus", Planet = "Eris", Type = "Infested Salvage", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 34, MaxLevel = 38, Tier = "Salvage"},
        ["Saxis"] = { Node = "Saxis", Planet = "Eris", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 34, MaxLevel = 38},
        ["Solium"] = { Node = "Solium", Planet = "Eris", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 34, MaxLevel = 38},
        ["Xini"] = { Node = "Xini", Planet = "Eris", Type = "Interception", IsDarkSector = 0,
            Tileset = "Corpus Ship", Enemy = "Infested", MinLevel = 30, MaxLevel = 40, Tier = "Interception3"},
        ["Akkad"] = { Node = "Akkad", Planet = "Eris", Type = "Defense", IsDarkSector = 1,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 35, MaxLevel = 45, Tier = "DSDefense"},
        ["Zabala"] = { Node = "Zabala", Planet = "Eris", Type = "Survival", IsDarkSector = 1,
            Tileset = "Infested Ship", Enemy = "Infested", MinLevel = 35, MaxLevel = 45, Tier = "DSSurvival4"},
        ["Teshub"] = { Node = "Teshub", Planet = "Void", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 10, MaxLevel = 15},
        ["Hepit"] = { Node = "Hepit", Planet = "Void", Type = "Capture", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 10, MaxLevel = 15, Tier = "Capture"},
        ["Taranis"] = { Node = "Taranis", Planet = "Void", Type = "Defense", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 10, MaxLevel = 15, Tier = "Defense1", Other = "K"},
        ["Tiwaz"] = { Node = "Tiwaz", Planet = "Void", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 20, MaxLevel = 25},
        ["Stribog"] = { Node = "Stribog", Planet = "Void", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 20, MaxLevel = 25, Tier = "VoidCaches1"},
        ["Ani"] = { Node = "Ani", Planet = "Void", Type = "Survival", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 20, MaxLevel = 25, Tier = "Survival2"},
        ["Ukko"] = { Node = "Ukko", Planet = "Void", Type = "Capture", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 30, MaxLevel = 35, Tier = "Capture"},
        ["Oxomoco"] = { Node = "Oxomoco", Planet = "Void", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 30, MaxLevel = 35},
        ["Belenus"] = { Node = "Belenus", Planet = "Void", Type = "Defense", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 30, MaxLevel = 35, Tier = "Defense3", Other = "K"},
        ["Aten"] = { Node = "Aten", Planet = "Void", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 40, MaxLevel = 45},
        ["Marduk"] = { Node = "Marduk", Planet = "Void", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 40, MaxLevel = 45, Tier = "VoidCaches2"},
        ["Mithra"] = { Node = "Mithra", Planet = "Void", Type = "Interception", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 40, MaxLevel = 45, Tier = "Interception3"},
        ["Mot"] = { Node = "Mot", Planet = "Void", Type = "Survival", IsDarkSector = 0,
            Tileset = "Orokin Tower", Enemy = "Corrupted", MinLevel = 40, MaxLevel = 45, Tier = "Survival4"},
        ["Copernicus"] = { Node = "Copernicus", Planet = "Lua", Type = "Capture", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Corpus", MinLevel = 25, MaxLevel = 30, Tier = "Capture"},
        ["Grimaldi"] = { Node = "Grimaldi", Planet = "Lua", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Grineer", MinLevel = 25, MaxLevel = 30},
        ["Pavlov"] = { Node = "Pavlov", Planet = "Lua", Type = "Spy", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Crossfire", MinLevel = 25, MaxLevel = 30, Tier = "LuaSpy"},
        ["Plato"] = { Node = "Plato", Planet = "Lua", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Crossfire", MinLevel = 25, MaxLevel = 30, Tier = "LuaCaches"},
        ["Stöfler"] = { Node = "Stöfler", Planet = "Lua", Type = "Defense", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Grineer", MinLevel = 25, MaxLevel = 30, Tier = "Defense3", Other = "?"},
        ["Tycho"] = { Node = "Tycho", Planet = "Lua", Type = "Survival", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Corpus", MinLevel = 25, MaxLevel = 30, Tier = "Survival3"},
        ["Zeipel"] = { Node = "Zeipel", Planet = "Lua", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Orokin Moon", Enemy = "Corpus", MinLevel = 25, MaxLevel = 30, Tier = "Rescue3"},
        ["Dakata"] = { Node = "Dakata", Planet = "Kuva Fortress", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 28, MaxLevel = 30, Tier = "KuvaCaches"},
        ["Garus"] = { Node = "Garus", Planet = "Kuva Fortress", Type = "Rescue", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 31, MaxLevel = 33, Tier = "Rescue3"},
        ["Koro"] = { Node = "Koro", Planet = "Kuva Fortress", Type = "Assault", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 29, MaxLevel = 31},
        ["Nabuk"] = { Node = "Nabuk", Planet = "Kuva Fortress", Type = "Capture", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 30, MaxLevel = 32, Tier = "Capture"},
        ["Pago"] = { Node = "Pago", Planet = "Kuva Fortress", Type = "Spy", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 31, MaxLevel = 33, Tier = "KuvaSpy"},
        ["Rotuma"] = { Node = "Rotuma", Planet = "Kuva Fortress", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 30, MaxLevel = 32},
        ["Tamu"] = { Node = "Tamu", Planet = "Kuva Fortress", Type = "Defense", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 32, MaxLevel = 34, Tier = "Defense3", Other = "?"},
        ["Taveuni"] = { Node = "Taveuni", Planet = "Kuva Fortress", Type = "Survival", IsDarkSector = 0,
            Tileset = "Grineer Asteroid Fortress", Enemy = "Grineer", MinLevel = 32, MaxLevel = 34, Tier = "Survival3"},
        ["Derelict Defense"] = {Node = "Defense", Planet = "Orokin Derelict", Type = "Defense", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 30, Tier = "DerelictDefense"},
        ["Derelict Survival"] = {Node = "Survival", Planet = "Orokin Derelict", Type = "Survival", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 35, Tier = "DerelictSurvival"},
        ["Derelict Sabotage"] = {Node = "Sabotage", Planet = "Orokin Derelict", Type = "Sabotage", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 35, Tier = "DerelictCaches"},
        ["Derelict Exterminate"] = {Node = "Exterminate", Planet = "Orokin Derelict", Type = "Exterminate", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 35},
        ["Derelict Mobile Defense"] = {Node = "Mobile Defense", Planet = "Orokin Derelict", Type = "Mobile Defense", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 35},
        ["Derelict Capture"] = {Node = "Capture", Planet = "Orokin Derelict", Type = "Capture", IsDarkSector = 0,
            Tileset = "Orokin Derelict", Enemy = "Infested", MinLevel = 25, MaxLevel = 35, Tier = "Capture"}
    }
}

return DropData
Advertisement