default_settings.json 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. {
  2. "version": 16,
  3. "core": {
  4. "logging": {
  5. "debugger_sink": true,
  6. "file_sink": false,
  7. "levels": {
  8. "core": "warn",
  9. "client": "warn",
  10. "state": "warn",
  11. "server": "warn",
  12. "middleware": "warn"
  13. }
  14. },
  15. "activity_sdk_generation": {
  16. "lua_declarations": true
  17. }
  18. },
  19. "steam": {
  20. "language": "english",
  21. "user": {
  22. "persona_name": "Player"
  23. }
  24. },
  25. "client": {
  26. "ui": {
  27. "enabled": true,
  28. "toggle_key": "insert"
  29. },
  30. "external_server": {
  31. "enabled": false,
  32. "host": "127.0.0.1",
  33. "config_url": "https://127.0.0.1/config/",
  34. "config_guid": "d2legacy-0000-0000-0000-000000000001"
  35. },
  36. "custom_bootflow_textures": true,
  37. "socket_menu_routing": false,
  38. "reveal_lore_books": true,
  39. "region_private": false,
  40. "pin_replicated_record": true
  41. },
  42. "server": {
  43. "bap_port": 30974,
  44. "gameplay": {
  45. "topology": "embedded",
  46. "bind_address": "127.0.0.1",
  47. "advertised_address": "127.0.0.1",
  48. "transport_address": "127.0.0.1",
  49. "port": 30976,
  50. "server_reserve_count": 256,
  51. "client_join_grant_count": 8192
  52. },
  53. "activation": {
  54. "default_client_activation": true,
  55. "activity_public_membership": true,
  56. "prevent_ownerless_channel_close": false,
  57. "mission_scripting": true
  58. },
  59. "entitlements": [
  60. { "name": "1085660", "owned": "handle" },
  61. { "name": "STEAM_PAID_TIER", "owned": "handle" },
  62. { "name": "STEAM_UGC_BLOCKED", "owned": "none" },
  63. { "name": "1090090", "owned": "application" },
  64. { "name": "1090091", "owned": "application" },
  65. { "name": "1090092", "owned": "application" },
  66. { "name": "1090093", "owned": "application" },
  67. { "name": "1090094", "owned": "application" },
  68. { "name": "1090095", "owned": "application" },
  69. { "name": "1090096", "owned": "application" },
  70. { "name": "1090150", "owned": "application" },
  71. { "name": "1090151", "owned": "application" },
  72. { "name": "1090152", "owned": "application" },
  73. { "name": "1090170", "owned": "application" },
  74. { "name": "1090171", "owned": "application" },
  75. { "name": "1090200", "owned": "application" },
  76. { "name": "1090201", "owned": "application" },
  77. { "name": "1090202", "owned": "application" },
  78. { "name": "1330040", "owned": "application" }
  79. ]
  80. },
  81. "state": {
  82. "investment": {
  83. "complete_exotic_catalysts": true,
  84. "family5_flag_overrides": [[2003,2], [2260,2], [3698,2], [4661,2], [5901,2], [7188,2], [9144,2], [9150,2], [9162,2], [9164,2], [9169,2], [9171,2], [9176,2], [9178,2], [9180,2], [9183,2], [9186,2], [9279,2], [9355,2], [9567,2], [11554,2], [11558,2], [15034,2], [16840,2], [16843,2], [16846,2], [16849,2], [16852,2], [16854,2], [16856,2], [16857,2], [16860,2], [16862,2], [16865,2], [16868,2], [16871,2], [16873,2], [16875,2], [16878,2], [16884,2], [16887,2], [16889,2], [16892,2]],
  85. "family5_value_overrides": [[3510,5], [462,1010], [477,1010], [12913,42], [470,1], [465,20], [12823,1000], [5159,3], [5549,50]]
  86. },
  87. "unlocks": {
  88. "character_flag_runs": [[61,1], [120,1], [130,1], [135,1], [138,2], [141,1], [200,1], [223,1], [273,1], [275,2], [312,1], [360,1], [409,4], [416,1], [418,4], [423,6], [446,2], [458,2], [470,1], [524,1], [581,4], [659,1], [661,1], [699,1], [707,1], [731,1], [744,1], [791,1], [794,1], [817,1], [821,1], [828,1], [833,1], [838,1], [849,2], [852,1], [859,1], [865,1], [924,1], [938,1], [946,1], [957,1], [959,1], [964,1], [966,1], [971,1], [980,1], [994,1], [1013,1], [1055,1], [1058,1], [1065,4], [1131,1], [1134,1], [1136,2], [1139,1], [1143,1], [1145,2], [1171,1], [1178,1], [1182,2], [1195,1], [1197,1], [1212,3], [1232,1], [1234,3], [1247,1], [1252,2], [1256,1], [1259,1], [1264,1], [1326,1], [1422,1], [1428,2], [1514,1], [1516,1], [1518,1], [1520,1], [1524,1], [1542,1], [1544,1], [1662,6], [1678,3], [1685,1], [1783,1], [1790,2], [1837,6], [1848,2], [1853,3], [1858,4], [1880,6], [2253,6], [2269,1]],
  89. "character_objective_values": [[443,-1], [502,-1]],
  90. "account_flag_runs": [[26,21], [52,1], [78,1], [81,1], [83,3], [89,2], [95,1], [97,3], [101,1], [111,1], [141,1], [207,1], [241,1], [295,7], [303,14], [320,21], [342,10], [355,20], [376,11], [390,95], [487,72], [561,72], [635,32], [681,1], [683,5], [717,2], [728,8], [745,6], [754,1], [758,32], [796,13], [810,20], [831,19], [860,26], [935,18], [954,25], [986,1], [1034,1], [1039,1], [1058,1], [1063,1], [1095,1], [1100,1], [1202,1], [1217,1], [1585,1], [1599,3], [1606,1], [1614,22], [1638,1], [1641,1], [1644,1], [1647,1], [1650,1], [1653,1], [1656,1], [1659,1], [1662,1], [1669,17], [1688,1], [1691,1], [1694,1], [1697,78], [1791,35], [1827,4], [1832,172], [2005,20], [2026,4], [2031,4], [2036,4], [2041,4], [2046,4], [2051,4], [2056,4], [2061,1], [2065,33], [2099,15], [2121,88], [2211,1], [2213,45], [2259,91], [2351,48], [2400,48], [2449,10], [2464,28], [2507,19], [2554,11], [2569,62], [2642,87], [2735,28], [2764,5], [2772,1], [2775,6], [2784,13], [2808,11], [2821,7], [2830,12], [2843,1], [2845,2], [2848,6], [2855,11], [2867,40], [2908,36], [2945,41], [3001,46], [3051,35], [3089,12], [3107,4], [3133,15], [3153,15], [3173,15], [3193,26], [3220,14], [3240,2], [3245,1], [3248,12], [3265,2], [3303,52], [3370,62], [3447,62], [3524,15], [3540,27], [3568,10], [3581,11], [3593,2], [3596,2], [3599,2], [3602,2], [3641,2], [3644,1], [3646,62], [3713,2], [3720,2], [3727,66], [3854,3], [3930,2], [3960,21], [3984,61], [4046,14], [4061,3], [4068,2], [4071,4], [4076,1], [4081,1], [4083,38], [4122,9], [4144,30], [4183,22], [4206,26], [4245,81], [4330,4], [4347,11], [4362,9], [4376,27], [4404,3], [4410,12], [4424,2], [4428,22], [4451,2], [4454,1], [4474,1], [4478,1], [4490,14], [4505,1], [4508,24], [4533,4], [4538,96], [4641,244], [4903,30], [4934,6], [4946,6], [4954,4], [4961,6], [4969,4], [4977,2], [4981,2], [4985,2], [4989,1], [4991,1], [4995,1], [4997,1], [4999,1], [5005,1], [5009,1], [5031,33], [5065,26], [5096,1], [5098,14], [5114,6], [5126,16], [5144,6], [5156,1], [5158,17], [5235,2], [5238,1], [5241,15], [5261,5], [5271,41], [5317,5], [5327,41], [5373,5], [5383,26], [5410,1], [5436,1], [5439,40], [5480,16], [5497,2], [5601,23], [5632,2], [5635,1], [5652,4], [5657,5], [5669,19], [5689,2], [5693,26], [5720,12], [5733,3], [5738,1], [5759,1], [5761,1], [5775,2], [5818,3], [5840,2], [5844,6], [5855,36], [5892,1], [5894,20], [5931,1], [5965,13], [5979,7], [5987,7], [6000,17], [6018,16], [6040,16], [6057,5], [6064,5], [6071,8], [6080,1], [6084,15], [6102,6], [6113,15], [6129,16], [6151,26], [6187,4], [6192,8], [6201,1], [6208,24], [6234,1], [6236,54], [6291,1], [6304,42], [6348,2], [6353,21], [6401,50], [6452,8], [6461,8], [6471,11], [6483,17], [6503,1], [6505,1], [6507,34], [6564,18], [6586,32], [6619,1], [6621,1], [6623,17], [6646,45], [6695,17], [6715,4], [6722,38], [6784,63], [6848,1], [6873,2], [6876,36], [6959,57], [7019,1], [7021,1], [7025,61], [7090,28], [7121,104], [7242,1], [7245,4], [7251,66], [7336,54], [7391,1], [7395,72], [7468,15], [7488,5], [7498,10], [7509,15], [7529,5], [7539,10], [7550,15], [7570,5], [7580,10], [7663,1], [7717,1], [7735,14], [7761,4], [7767,5], [7774,2], [7777,1], [7780,3], [7952,2], [8184,1], [8251,5], [8284,3], [8291,1], [8420,1], [10308,1], [10420,1], [10579,3], [10699,1], [11145,11]],
  91. "profile_flag_runs": [[1,1], [4,1], [6,2], [9,3], [130,5], [137,1], [139,29], [169,3], [173,1], [177,33], [211,1], [217,1], [219,8], [235,2], [238,2], [243,17], [261,13], [275,19]],
  92. "character_flags": [16,17,18,19,82,90],
  93. "objective_values": [[58,5000], [59,5000], [60,5000], [61,500], [62,300], [63,300], [64,300], [65,1000], [68,60], [75,75], [78,5], [79,1], [80,5], [81,1], [82,500], [83,1000], [84,30], [85,100], [86,250], [87,10], [88,25], [89,200], [92,50], [93,75], [94,4000], [96,800], [104,5], [105,7], [106,250], [108,50], [158,400], [159,100], [160,20], [161,75], [162,25], [163,5], [165,100], [167,150000], [168,150000], [169,150000], [170,900000], [171,10], [172,3], [173,3], [175,100], [176,10], [177,30], [179,1000], [180,25], [181,30], [182,3], [183,10], [185,300], [186,10], [191,7], [192,1], [193,3], [195,25], [196,3], [396,5], [397,1], [398,2], [400,10], [401,1], [402,1], [403,1], [404,1], [405,1], [406,1], [407,50], [408,9], [409,1], [410,5], [411,1], [412,1], [413,1], [414,1], [415,1], [416,29], [417,1], [418,1], [419,1], [420,1], [421,1], [422,1], [423,1], [424,1], [425,1], [426,1], [427,1], [432,1], [433,13], [434,16], [435,3], [436,1], [437,3], [438,1], [439,2], [440,3], [441,3], [442,10], [443,1], [444,1], [445,1], [446,1], [447,1], [448,1], [449,1], [450,1], [451,1], [452,1], [453,1], [454,1], [455,1], [456,1], [457,50], [458,21], [459,1], [460,1], [461,1], [462,1], [463,1], [464,1], [465,36], [466,1], [467,1], [468,1], [469,1], [470,1], [471,1], [472,1], [473,1], [474,1], [475,1], [476,1], [483,1], [484,4], [485,3], [486,1], [487,2], [488,10], [489,1], [490,1], [491,1], [492,1], [493,50], [494,6], [495,1], [496,1], [497,1], [498,1], [499,1], [500,1], [501,17], [502,1], [503,1], [504,1], [505,1], [506,1], [507,1], [508,1], [509,1], [510,1], [511,1], [512,1], [517,1], [518,50], [519,100], [520,25], [521,100], [522,200], [523,50], [524,300], [525,50], [526,150], [527,9], [528,1], [529,1], [530,1], [531,1], [532,1], [533,1], [534,1], [535,1], [536,1], [537,1], [538,300], [539,50], [540,75], [541,25], [542,50], [543,100], [544,75], [545,75], [546,100], [549,9], [550,1], [551,1], [552,1], [553,1], [554,1], [555,1], [556,1], [557,1], [558,1], [559,1], [560,300], [561,100], [562,100], [563,9], [564,1], [565,1], [566,1], [567,1], [568,75], [569,50], [570,150], [571,50], [572,100], [573,50], [574,50], [575,100], [576,1], [577,1], [578,1], [579,1], [580,1], [581,1], [582,1], [583,1], [585,25], [586,100], [587,50], [588,25], [595,20], [596,20], [597,20], [598,30], [599,20], [600,7], [601,18], [602,30], [603,10], [604,7], [605,45], [607,1], [608,1], [609,1], [610,1], [611,1], [612,1], [613,1], [614,1], [615,1], [616,1], [617,1], [618,1], [619,7], [620,5], [622,1], [624,1], [625,1], [626,1], [627,1], [628,10], [629,1], [630,1], [631,1], [632,1], [633,1], [634,1], [635,1], [636,1], [637,1], [638,1], [639,1], [640,1], [641,1], [642,1], [643,50], [644,21], [645,1], [646,1], [647,1], [648,1], [649,1], [650,1], [651,32], [652,1], [653,1], [654,1], [655,1], [656,1], [657,1], [658,1], [659,1], [660,1], [661,1], [662,1], [669,1], [670,1], [671,1], [672,1], [673,100], [674,1], [675,1], [676,1], [677,1], [678,5], [679,1], [680,1], [681,1], [682,1], [683,1], [684,1], [685,1], [686,1], [687,1], [688,1], [689,1], [690,25], [691,25], [692,7], [694,3], [695,100], [696,2], [697,1], [698,1], [699,1], [700,1], [701,1], [702,100], [706,3], [707,25], [708,1], [709,1], [710,1], [711,1], [712,1], [713,1], [714,1], [715,1], [716,1], [717,1], [718,1], [719,1], [720,1], [721,1], [722,30], [723,500], [724,20], [725,72], [726,50], [728,1], [729,1], [730,1], [731,1], [732,1], [733,1], [734,1], [735,1], [736,1], [737,1], [738,1], [739,1], [740,1], [741,1], [742,1200000], [743,250], [744,1], [745,50], [746,1], [747,1], [748,1], [749,1], [750,1], [751,1], [752,1200000], [753,1], [754,1], [755,10], [756,10], [757,1], [758,1], [759,1], [760,1], [761,1], [762,1200000], [763,1], [764,1], [765,50], [766,50], [767,1], [768,1], [769,1], [770,1], [771,1], [772,1200000], [773,1], [774,1], [775,50], [776,15], [777,1], [778,1], [779,1], [780,1], [781,1], [782,1200000], [783,1], [784,25], [785,1], [786,50], [787,1], [788,1], [789,1], [790,1], [791,1], [792,1200000], [793,1], [794,1], [795,25], [796,25], [797,1], [798,1], [799,1], [800,1], [801,1], [802,300], [803,200], [804,150], [805,100], [806,25], [807,250], [808,150], [809,100], [810,1], [811,9], [812,1], [813,1], [814,1], [815,1], [816,1], [817,1], [818,1], [819,1], [820,1], [821,1], [822,50], [823,50], [824,200], [825,100], [826,50], [827,50], [828,300], [829,50], [830,100], [831,9], [832,1], [833,1], [834,1], [835,1], [836,1], [837,1], [838,1], [839,1], [840,1], [841,1], [842,200], [843,75], [844,100], [845,9], [846,100], [847,300], [848,50], [849,75], [850,25], [851,200], [852,1], [853,1], [854,1], [855,1], [856,1], [857,1], [858,1], [859,1], [860,1], [861,1], [862,1], [863,3], [864,3], [865,100], [866,10], [868,21], [869,3], [870,150], [872,1], [873,1], [874,1], [875,1], [876,1], [877,10], [878,5], [879,1], [880,1], [881,1], [882,1], [883,1], [884,1], [885,1], [886,1], [887,1], [888,1], [889,100], [890,50], [891,100], [892,50], [893,50], [894,250], [895,50], [896,300], [897,9], [898,50], [899,1], [900,1], [901,1], [902,1], [903,1], [904,1], [905,1], [906,1], [907,1], [908,1], [909,75], [910,200], [911,50], [912,50], [913,75], [914,100], [915,300], [916,50], [917,100], [918,9], [919,1], [920,1], [921,1], [922,1], [923,1], [924,1], [925,1], [926,1], [927,1], [928,1], [929,75], [930,50], [931,100], [932,50], [933,50], [934,150], [935,200], [936,300], [937,50], [938,9], [939,1], [940,1], [941,1], [942,1], [943,1], [944,1], [945,1], [946,1], [947,1], [948,1], [949,16], [950,1], [951,1], [952,1], [953,1], [954,1], [955,1], [956,1], [957,500], [958,5], [960,10], [961,1], [962,50], [963,500], [964,13], [965,23], [966,1], [967,1], [968,1], [969,1], [970,1], [971,1], [972,1], [973,1], [974,1], [975,1], [976,1], [977,1], [978,1], [979,1], [980,1], [981,1], [982,1], [983,10], [984,1], [985,8], [986,1], [987,5], [988,4000], [989,1], [990,1], [991,1], [992,1], [993,1], [994,1], [995,1], [996,1], [997,1], [998,1], [999,1], [1000,1], [1001,1], [1002,1], [1003,1], [1004,1], [1005,1], [1006,1], [1007,1], [1008,1], [1009,1], [1010,1], [1011,1], [1012,1], [1013,1], [1014,1], [1015,1], [1016,1], [1017,1], [1018,1], [1019,1], [1020,1], [1021,1], [1022,1], [1023,1], [1024,1], [1025,1], [1026,1], [1027,1], [1028,1], [1029,1], [1030,1], [1031,1], [1032,1], [1033,1], [1034,1], [1035,1], [1036,1], [1037,1], [1038,1], [1039,1], [1040,1], [1041,1], [1042,1], [1043,1], [1044,1], [1045,1], [1046,1], [1047,1], [1048,1], [1049,1], [1050,1], [1051,1], [1052,1], [1053,1], [1054,4], [1055,10], [1056,10], [1057,10], [1058,100], [1059,1], [1060,1], [1061,1], [1062,1], [1063,1], [1210,1], [1211,1], [1212,1], [1213,1], [1214,1], [1215,1], [1216,1], [1217,1], [1218,1], [1219,1], [1220,25], [1221,5], [1222,5], [1223,25], [1224,250], [1230,15], [1231,255], [1232,5], [1233,1], [1234,150], [1240,15], [1241,165], [1242,5], [1243,1], [1244,150], [1250,5], [1251,165], [1252,5], [1253,25], [1254,250], [1260,15], [1261,210], [1262,5], [1263,1], [1264,200], [1270,1], [1271,1], [1272,1], [1273,1], [1274,1], [1280,7], [1281,10], [1282,10], [1283,5], [1284,7], [1285,7], [1286,250], [1297,25], [1298,10], [1299,5], [1300,25], [1301,1000], [1336,1], [1337,1], [1340,2], [1342,2], [1344,2], [1346,1], [1349,1], [1351,2], [1353,1], [1356,1], [1358,2], [1360,1], [1363,3], [1365,1], [1368,2], [1370,2], [1372,1], [1375,1], [1377,1], [1379,1], [1381,1], [1383,1], [1386,2], [1388,2], [1390,2], [1392,1], [1395,3], [1397,1], [1399,1], [1402,2], [1404,1], [1406,1], [1409,2], [1411,2], [1413,1], [1416,3], [1437,1], [1438,1], [1448,600], [1449,250], [1450,15], [1451,1], [1452,100], [1458,65], [1459,85], [1460,1], [1461,50], [1462,30], [1468,55], [1469,25], [1470,1], [1471,50], [1472,30], [1478,130], [1479,30], [1480,1], [1481,50], [1482,30], [1488,70], [1489,165], [1490,1], [1491,50], [1492,30], [1498,70], [1499,90], [1500,1], [1501,50], [1502,30], [1508,65], [1509,135], [1510,1], [1511,50], [1512,30], [1518,21], [1519,100], [1520,5], [1521,25], [1522,100], [1528,65], [1529,30], [1530,1], [1531,50], [1532,30], [1538,80], [1539,50], [1540,1], [1541,50], [1542,30], [1548,110], [1549,25], [1550,1], [1551,50], [1552,30], [1558,1], [1559,1], [1560,1], [1561,1], [1562,1], [1568,35], [1569,15], [1570,366], [1571,40], [1572,1500], [1611,500], [1613,250], [1615,500], [1617,1000], [1619,2500], [1620,500], [1622,500], [1623,500], [1625,500], [1627,1000], [1628,250], [1630,5], [1631,500], [1633,1000], [1634,500], [1636,1000], [1638,300], [1640,500], [1642,1000], [1644,150], [1646,150], [1647,150], [1648,300], [1650,500], [1652,50], [1653,1000], [1655,200], [1657,500], [1659,500], [1661,500], [1664,1], [1665,1], [1667,250], [1669,500], [1671,50], [1672,500], [1674,5], [1676,300], [1678,500], [1680,1], [1681,1000], [1682,2000], [1683,1000], [1684,50], [1927,19], [2219,1], [2220,1], [2221,1], [2222,10], [2223,10], [2224,10], [2225,10], [2226,10], [2227,10], [2228,10], [2229,10], [2230,10], [2231,10], [2232,10], [2233,10], [2290,1], [2291,1], [2292,1], [2293,1], [2294,1], [2295,1], [2313,500], [2318,500], [2319,500], [2320,500], [2321,500], [2322,400], [2323,350], [2324,500], [2325,350], [2326,350], [2327,500], [2328,500], [2329,500], [2330,500], [2331,500], [2332,500], [2333,350], [2334,500], [2335,500], [2336,500], [2337,350], [2338,500], [2350,1], [2351,1], [2352,1], [2384,250], [2385,700], [2386,700], [2387,300], [2401,5], [2402,1], [2403,10], [2404,1], [2405,1], [2411,5], [2412,1], [2413,10], [2414,1], [2415,1], [2421,5], [2422,1], [2423,10], [2424,1], [2425,1], [2466,700], [2467,700], [2468,400], [2469,400], [2470,700], [2471,700], [2472,400], [2549,400], [2550,700], [2551,700], [2576,700], [2577,700], [2578,400], [2608,400], [2609,700], [2610,5000], [2632,1], [2633,1], [2634,3], [2635,1], [2636,7], [2642,1], [2643,1], [2644,3], [2645,1], [2646,7], [2652,1], [2653,1], [2654,3], [2655,1], [2656,7], [2666,20], [2667,3], [2668,10], [2669,1000], [2670,5], [4719,1], [4991,1], [5662,-1]]
  94. },
  95. "activity": {
  96. "roster_key_from_identity": false,
  97. "default_destination": {
  98. "reason": -1,
  99. "source_activity_index": -1,
  100. "activity_index": 20,
  101. "package_name": "city_tower_social_d2",
  102. "bubble_count": 8,
  103. "stateful_bubble_mask": "0xCF",
  104. "initial_slice_set": 48,
  105. "spawn_set_hash": "0x811C9DC5"
  106. },
  107. "arrival_overrides": [
  108. {
  109. "package_name": "mission_ember",
  110. "bubble": 6,
  111. "slice_set": 49
  112. },
  113. {
  114. "package_name": "raid_envy_v310",
  115. "bubble": 7
  116. },
  117. {
  118. "package_name": "raid_gluttony_0",
  119. "bubble": 2,
  120. "slice_set": 17,
  121. "spawn_set_hash": "0x8029E4B4"
  122. },
  123. {
  124. "package_name": "raid_gluttony_1",
  125. "bubble": 2,
  126. "spawn_set_hash": "0x8029E4B4"
  127. },
  128. {
  129. "package_name": "raid_gluttony_2",
  130. "bubble": 2,
  131. "spawn_set_hash": "0x8029E4B4"
  132. },
  133. {
  134. "package_name": "raid_gluttony_3",
  135. "bubble": 2,
  136. "spawn_set_hash": "0x8029E4B4"
  137. },
  138. {
  139. "package_name": "raid_gluttony_4",
  140. "bubble": 2,
  141. "spawn_set_hash": "0x8029E4B4"
  142. },
  143. {
  144. "package_name": "raid_gluttony_5",
  145. "bubble": 2,
  146. "spawn_set_hash": "0x8029E4B4"
  147. },
  148. {
  149. "package_name": "raid_sunset",
  150. "bubble": 1,
  151. "spawn_set_hash": "0xBC6A3A37"
  152. }
  153. ]
  154. },
  155. "account": {
  156. "primary_soid": "0x9EAA300100100100",
  157. "profile_setup_completed": true,
  158. "dismantle_rewards": [
  159. { "definition_hash": "0xBC53E66E", "quantity": 25, "rarity": "common" },
  160. { "definition_hash": "0xBC53E66E", "quantity": 50, "rarity": "uncommon" },
  161. { "definition_hash": "0xBC53E66E", "quantity": 100, "rarity": "rare" },
  162. { "definition_hash": "0xBC53E66E", "quantity": 250, "rarity": "legendary" },
  163. { "definition_hash": "0xBC53E66E", "quantity": 500, "rarity": "exotic" },
  164. { "definition_hash": "0x3CF2E8E2", "quantity": 3, "rarity": "legendary" },
  165. { "definition_hash": "0x3CF2E8E2", "quantity": 5, "rarity": "exotic" },
  166. { "definition_hash": "0x28D6AC07", "quantity": 1, "rarity": "rare", "class": "weapon" },
  167. { "definition_hash": "0x28D6AC07", "quantity": 3, "rarity": ["legendary", "exotic"], "class": "weapon" },
  168. { "definition_hash": "0xE5B38AD2", "quantity": 3, "rarity": ["legendary", "exotic"], "masterworked": true }
  169. ],
  170. "profile_items": [
  171. {
  172. "definition_hash": "0xBC53E66E",
  173. "quantity": 100000
  174. },
  175. {
  176. "definition_hash": "0x3CF2E8E2",
  177. "quantity": 50000
  178. },
  179. {
  180. "definition_hash": "0xA7EE4765",
  181. "quantity": 50000
  182. },
  183. {
  184. "definition_hash": "0xB19439E5",
  185. "quantity": 25
  186. },
  187. {
  188. "definition_hash": "0x28D6AC07",
  189. "quantity": 500
  190. },
  191. {
  192. "definition_hash": "0xE5B38AD2",
  193. "quantity": 999
  194. },
  195. {
  196. "definition_hash": "0xFDC50EA0",
  197. "quantity": 50
  198. },
  199. {
  200. "definition_hash": "0xFDC50EA1",
  201. "quantity": 10
  202. },
  203. {
  204. "definition_hash": "0x54CCDFF2",
  205. "quantity": 1000
  206. },
  207. {
  208. "definition_hash": "0xDAAB73B4",
  209. "quantity": 1000
  210. },
  211. {
  212. "definition_hash": "0xCD8DA6F2",
  213. "quantity": 1000
  214. }
  215. ],
  216. "settings": {
  217. "controls": {
  218. "button_layout": 0,
  219. "movement_mode": 0,
  220. "controller_look_sensitivity": 2,
  221. "controller_invert_vertical": false,
  222. "controller_auto_look_centering": false,
  223. "controller_vibration": true,
  224. "controller_swap_shoulders": false,
  225. "controller_invert_horizontal": false,
  226. "mouse_look_sensitivity": 15,
  227. "mouse_invert_vertical": false,
  228. "mouse_invert_horizontal": false,
  229. "unidentified_toggle": false,
  230. "mouse_aim_smoothing": false,
  231. "ads_sensitivity_modifier": 1.0,
  232. "double_press_delay": 0
  233. },
  234. "audio": {
  235. "voice_output_mode": 1,
  236. "team_voice_channel": 0,
  237. "reserved_mode": 0,
  238. "migration_version": 8,
  239. "chat_volume": 2,
  240. "mute_when_unfocused": false,
  241. "sound_effects_volume": 3,
  242. "dialogue_volume": 2,
  243. "music_volume": 2
  244. },
  245. "display": {
  246. "brightness": 3,
  247. "show_fps": false,
  248. "hdr_mode": 0,
  249. "vertical_sync_interval": 0,
  250. "field_of_view": 85,
  251. "calibration_primary": 10000.0,
  252. "calibration_alpha": 0.0
  253. },
  254. "interface": {
  255. "subtitles_mode": 0,
  256. "colorblind_mode": 0,
  257. "helmet_mode": 1,
  258. "hud_opacity": 3,
  259. "display_hints": true,
  260. "background_opacity": 2,
  261. "reticle_location": 0,
  262. "reticle_color": 0,
  263. "text_size": 0,
  264. "text_color": 0,
  265. "text_background_style": 0,
  266. "text_background_opacity": 0,
  267. "reserved_text_mode": 0,
  268. "subtitle_options_entry": 0
  269. },
  270. "social": {
  271. "prefer_good_connection": false,
  272. "text_chat_mode": 3,
  273. "show_real_names": true,
  274. "clan_invite_notifications": true,
  275. "profanity_filter": false,
  276. "voice_chat_enabled": true,
  277. "whisper_chat_mode": 0,
  278. "team_chat_join_mode": 0,
  279. "local_chat_join_mode": 0,
  280. "clan_chat_join_mode": 1,
  281. "chat_auto_hide_mode": 1
  282. },
  283. "key_binding_source": "computer",
  284. "key_bindings": {
  285. "fire": { "primary": "left mouse button", "secondary": null },
  286. "toggle_zoom": { "primary": null, "secondary": null },
  287. "hold_zoom": { "primary": "right mouse button", "secondary": null },
  288. "melee": { "primary": "c", "secondary": null },
  289. "grenade": { "primary": "q", "secondary": null },
  290. "super": { "primary": "f", "secondary": null },
  291. "reload": { "primary": "r", "secondary": null },
  292. "light_attack": { "primary": "left mouse button", "secondary": null },
  293. "heavy_attack": { "primary": "right mouse button", "secondary": null },
  294. "block": { "primary": "c", "secondary": null },
  295. "switch_weapons": { "primary": "`", "secondary": null },
  296. "next_weapon": { "primary": "mouse wheel up", "secondary": null },
  297. "previous_weapon": { "primary": "mouse wheel down", "secondary": null },
  298. "primary_weapon": { "primary": "1", "secondary": null },
  299. "special_weapon": { "primary": "2", "secondary": null },
  300. "heavy_weapon": { "primary": "3", "secondary": null },
  301. "move_forward": { "primary": "w", "secondary": null },
  302. "move_backward": { "primary": "s", "secondary": null },
  303. "move_left": { "primary": "a", "secondary": null },
  304. "move_right": { "primary": "d", "secondary": null },
  305. "jump": { "primary": "space", "secondary": null },
  306. "toggle_crouch": { "primary": "control", "secondary": null },
  307. "hold_crouch": { "primary": null, "secondary": null },
  308. "toggle_sprint": { "primary": "shift", "secondary": null },
  309. "hold_sprint": { "primary": null, "secondary": null },
  310. "vehicle_boost": { "primary": "right mouse button", "secondary": null },
  311. "vehicle_brake": { "primary": "shift", "secondary": null },
  312. "vehicle_zoom": { "primary": "right mouse button", "secondary": null },
  313. "vehicle_fire_primary": { "primary": "left mouse button", "secondary": null },
  314. "vehicle_fire_secondary": { "primary": "e", "secondary": null },
  315. "vehicle_exit": { "primary": "space", "secondary": null },
  316. "interact": { "primary": "e", "secondary": null },
  317. "highlight_player": { "primary": "g", "secondary": null },
  318. "emote_1": { "primary": "up", "secondary": null },
  319. "emote_2": { "primary": "down", "secondary": null },
  320. "emote_3": { "primary": "left", "secondary": null },
  321. "emote_4": { "primary": "right", "secondary": null },
  322. "air_move": { "primary": "x", "secondary": null },
  323. "class_ability": { "primary": "v", "secondary": null },
  324. "death_cam_zoom_in": { "primary": "mouse wheel up", "secondary": null },
  325. "death_cam_zoom_out": { "primary": "mouse wheel down", "secondary": null },
  326. "push_to_talk": { "primary": "t", "secondary": null },
  327. "ui_gamepad_button_back": { "primary": "tab", "secondary": null },
  328. "ui_open_director": { "primary": "m", "secondary": null },
  329. "ui_open_director_store_tab": { "primary": null, "secondary": null },
  330. "ui_open_director_pursuits_tab": { "primary": null, "secondary": null },
  331. "ui_open_director_map_tab": { "primary": null, "secondary": null },
  332. "ui_open_director_destinations_tab": { "primary": null, "secondary": null },
  333. "ui_open_director_roster_tab": { "primary": "u", "secondary": null },
  334. "ui_open_director_seasons_tab": { "primary": null, "secondary": null },
  335. "ui_open_start_menu_alternative": { "primary": "i", "secondary": null },
  336. "ui_open_start_menu_records_tab": { "primary": null, "secondary": null },
  337. "ui_open_start_menu_collections_tab": { "primary": null, "secondary": null },
  338. "ui_open_start_menu_clan_tab": { "primary": null, "secondary": null },
  339. "ui_open_start_menu_inventory_tab": { "primary": null, "secondary": null },
  340. "ui_open_start_menu_settings_tab": { "primary": null, "secondary": null },
  341. "ui_open_exit_dialog_confirm": { "primary": "shift+escape", "secondary": null },
  342. "ui_abort_activity": { "primary": "o", "secondary": null },
  343. "ui_text_chat_toggle_state": { "primary": "l", "secondary": null },
  344. "screenshot": { "primary": "print screen", "secondary": null }
  345. }
  346. }
  347. },
  348. "characters": [
  349. {
  350. "soid": "0x9EAA300100100101",
  351. "race": 0,
  352. "gender": 0,
  353. "class": 1,
  354. "movement_ability": 6,
  355. "grenade_ability": 7,
  356. "super_ability": 10,
  357. "melee_ability": 11,
  358. "class_ability": 2,
  359. "level": 50,
  360. "preview_available": true,
  361. "appearance_value": 1.0,
  362. "last_orbited_destination": "0x125CF0E7",
  363. "content_bypass": true,
  364. "equipment": {
  365. "kinetic": {
  366. "instance_soid": "0x4000000000000001",
  367. "definition_hash": "0xE516CF40",
  368. "level": 106,
  369. "quantity": 1,
  370. "plugs": [
  371. "0xAB5218B6",
  372. "0xCCA5773B",
  373. "0x065F4ED0",
  374. "0x45A0BDD7",
  375. "0x1B6B4DB8",
  376. "0xFD368D30",
  377. "0x8A8536B5",
  378. "0x8C84EA53",
  379. null,
  380. "0x8838B9DA",
  381. null,
  382. "0xE713379A"
  383. ]
  384. },
  385. "energy": {
  386. "instance_soid": "0x4000000000000002",
  387. "definition_hash": "0x4156C94D",
  388. "level": 106,
  389. "quantity": 1,
  390. "plugs": [
  391. "0x3B667F9C",
  392. "0x4F68703D",
  393. "0x065F4ED0",
  394. "0xF2A907DF",
  395. "0x8CB6409D",
  396. "0xFD368D30",
  397. "0x8A8536B5",
  398. null,
  399. null,
  400. "0x8838B9DA"
  401. ]
  402. },
  403. "heavy": {
  404. "instance_soid": "0x4000000000000003",
  405. "definition_hash": "0x6F22FCEC",
  406. "level": 106,
  407. "quantity": 1,
  408. "plugs": [
  409. "0xD91C01C9",
  410. "0x37F1078F",
  411. "0x8CE3FE36",
  412. "0x151FBDCC",
  413. "0x9A6B194D",
  414. null,
  415. "0xAEBAE371",
  416. "0x9B283E92"
  417. ]
  418. },
  419. "helmet": {
  420. "instance_soid": "0x4000000000000004",
  421. "definition_hash": "0xF2994B80",
  422. "level": 106,
  423. "quantity": 1,
  424. "plugs": [
  425. "0xEC2137DA",
  426. "0x301CB225",
  427. "0x301CB225",
  428. null,
  429. "0x54CCDFF2",
  430. "0xA4D6D964",
  431. "0x39CBE5E4",
  432. "0x85480BD0",
  433. "0xA81461CE",
  434. "0x01E90FE0",
  435. "0x29E6A60B"
  436. ]
  437. },
  438. "gauntlets": {
  439. "instance_soid": "0x4000000000000005",
  440. "definition_hash": "0x61868551",
  441. "level": 106,
  442. "quantity": 1,
  443. "plugs": [
  444. "0xEC2137DA",
  445. "0x6DE9E6FF",
  446. "0x6DE9E6FF",
  447. null,
  448. "0x54CCDFF2",
  449. "0xA4D6D964",
  450. "0x39CBE5E4",
  451. "0x85480BD0",
  452. "0xA81461CE",
  453. "0x01E90FE0",
  454. "0x29E6A60B"
  455. ]
  456. },
  457. "chest": {
  458. "instance_soid": "0x4000000000000006",
  459. "definition_hash": "0x6F0DBB07",
  460. "level": 106,
  461. "quantity": 1,
  462. "plugs": [
  463. "0xEC2137DA",
  464. "0x62E854BB",
  465. "0x62E854BB",
  466. null,
  467. "0x54CCDFF2",
  468. "0xA4D6D964",
  469. "0x39CBE5E4",
  470. "0x85480BD0",
  471. "0xA81461CE",
  472. "0x01E90FE0",
  473. "0x29E6A60B"
  474. ]
  475. },
  476. "legs": {
  477. "instance_soid": "0x4000000000000007",
  478. "definition_hash": "0x0B8E36D0",
  479. "level": 106,
  480. "quantity": 1,
  481. "plugs": [
  482. "0xEC2137DA",
  483. "0x22299393",
  484. "0x22299393",
  485. "0x64FC1692",
  486. "0x54CCDFF2",
  487. "0x13EFAFB3",
  488. "0x85480BD0",
  489. "0xE92D2525",
  490. "0x056CABAD",
  491. "0x37661C63",
  492. "0x29E6A60B"
  493. ]
  494. },
  495. "class_item": {
  496. "instance_soid": "0x4000000000000008",
  497. "definition_hash": "0xB578E716",
  498. "level": 106,
  499. "quantity": 1,
  500. "plugs": [
  501. "0x1CB5C883",
  502. "0x43C9A775",
  503. "0x43C9A775",
  504. null,
  505. "0x54CCDFF2",
  506. "0xA4D6D964",
  507. "0x29E6A60B"
  508. ]
  509. },
  510. "ghost": {
  511. "instance_soid": "0x4000000000000009",
  512. "definition_hash": "0xF6856969",
  513. "level": 0,
  514. "quantity": 1,
  515. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  516. },
  517. "vehicle": {
  518. "instance_soid": "0x400000000000000A",
  519. "definition_hash": "0xC5C22F78",
  520. "level": 0,
  521. "quantity": 1,
  522. "plugs": [
  523. "0xFD368D30",
  524. "0xB185D1D6",
  525. "0x8A78C491",
  526. "0x41219514",
  527. "0x5084C54E"
  528. ]
  529. },
  530. "ship": {
  531. "instance_soid": "0x400000000000000B",
  532. "definition_hash": "0x1174E2EA",
  533. "level": 0,
  534. "quantity": 1,
  535. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  536. },
  537. "subclass": {
  538. "instance_soid": "0x400000000000000C",
  539. "definition_hash": "0xD8B8D1FC",
  540. "level": 0,
  541. "quantity": 1,
  542. "plugs": []
  543. },
  544. "clan_banner": {
  545. "instance_soid": "0x400000000000000D",
  546. "definition_hash": "0x570EAA71",
  547. "level": 0,
  548. "quantity": 1,
  549. "plugs": [
  550. "0x36BF5F04",
  551. "0x2249F5C8",
  552. "0xE01AE367",
  553. "0x63A3BA12",
  554. "0x5CE104E5",
  555. "0x7CCC4828"
  556. ]
  557. },
  558. "emblem": {
  559. "instance_soid": "0x400000000000000E",
  560. "definition_hash": "0x71B4CC1A",
  561. "level": 0,
  562. "quantity": 1,
  563. "plugs": []
  564. },
  565. "emote": {
  566. "instance_soid": "0x400000000000000F",
  567. "definition_hash": "0x7979AE7D",
  568. "level": 0,
  569. "quantity": 1,
  570. "plugs": []
  571. },
  572. "finisher": {
  573. "instance_soid": "0x4000000000000100",
  574. "definition_hash": "0x09183EEF",
  575. "level": 0,
  576. "quantity": 1,
  577. "plugs": []
  578. },
  579. "artifact": {
  580. "instance_soid": "0x4000000000000103",
  581. "definition_hash": "0x613A3DA6",
  582. "level": 0,
  583. "quantity": 1,
  584. "plugs": null
  585. }
  586. },
  587. "inventory": [
  588. {
  589. "instance_soid": "0x4000000000000011",
  590. "definition_hash": "0x3E7B47F8",
  591. "level": 106,
  592. "quantity": 1,
  593. "plugs": null
  594. },
  595. {
  596. "instance_soid": "0x4000000000000012",
  597. "definition_hash": "0x26275FBA",
  598. "level": 106,
  599. "quantity": 1,
  600. "plugs": null
  601. },
  602. {
  603. "instance_soid": "0x4000000000000013",
  604. "definition_hash": "0xE9E6B958",
  605. "level": 106,
  606. "quantity": 1,
  607. "plugs": null
  608. },
  609. {
  610. "instance_soid": "0x4000000000000014",
  611. "definition_hash": "0xCA3F1095",
  612. "level": 106,
  613. "quantity": 1,
  614. "plugs": null
  615. },
  616. {
  617. "instance_soid": "0x4000000000000015",
  618. "definition_hash": "0xC4916786",
  619. "level": 106,
  620. "quantity": 1,
  621. "plugs": null
  622. },
  623. {
  624. "instance_soid": "0x4000000000000016",
  625. "definition_hash": "0xA25B8F8F",
  626. "level": 106,
  627. "quantity": 1,
  628. "plugs": null
  629. },
  630. {
  631. "instance_soid": "0x4000000000000017",
  632. "definition_hash": "0xDC0DA337",
  633. "level": 106,
  634. "quantity": 1,
  635. "plugs": null
  636. },
  637. {
  638. "instance_soid": "0x4000000000000018",
  639. "definition_hash": "0xDEF8BAA5",
  640. "level": 106,
  641. "quantity": 1,
  642. "plugs": null
  643. },
  644. {
  645. "instance_soid": "0x4000000000000019",
  646. "definition_hash": "0xDBF8EB6E",
  647. "level": 106,
  648. "quantity": 1,
  649. "plugs": null
  650. },
  651. {
  652. "instance_soid": "0x400000000000001A",
  653. "definition_hash": "0xA1D55C26",
  654. "level": 106,
  655. "quantity": 1,
  656. "plugs": null
  657. },
  658. {
  659. "instance_soid": "0x400000000000001B",
  660. "definition_hash": "0x670F94F7",
  661. "level": 106,
  662. "quantity": 1,
  663. "plugs": null
  664. },
  665. {
  666. "instance_soid": "0x400000000000001C",
  667. "definition_hash": "0x40B7F441",
  668. "level": 106,
  669. "quantity": 1,
  670. "plugs": null
  671. },
  672. {
  673. "instance_soid": "0x400000000000001D",
  674. "definition_hash": "0xD2DBA199",
  675. "level": 106,
  676. "quantity": 1,
  677. "plugs": null
  678. },
  679. {
  680. "instance_soid": "0x400000000000001E",
  681. "definition_hash": "0x6F5C089C",
  682. "level": 106,
  683. "quantity": 1,
  684. "plugs": null
  685. },
  686. {
  687. "instance_soid": "0x400000000000001F",
  688. "definition_hash": "0xA859BCA8",
  689. "level": 106,
  690. "quantity": 1,
  691. "plugs": null
  692. },
  693. {
  694. "instance_soid": "0x4000000000000020",
  695. "definition_hash": "0x65AD4E39",
  696. "level": 106,
  697. "quantity": 1,
  698. "plugs": null
  699. },
  700. {
  701. "instance_soid": "0x4000000000000021",
  702. "definition_hash": "0x5EFA7F9F",
  703. "level": 106,
  704. "quantity": 1,
  705. "plugs": null
  706. },
  707. {
  708. "instance_soid": "0x4000000000000022",
  709. "definition_hash": "0x1489642B",
  710. "level": 106,
  711. "quantity": 1,
  712. "plugs": null
  713. },
  714. {
  715. "instance_soid": "0x4000000000000023",
  716. "definition_hash": "0xC5162C2E",
  717. "level": 106,
  718. "quantity": 1,
  719. "plugs": null
  720. },
  721. {
  722. "instance_soid": "0x4000000000000024",
  723. "definition_hash": "0x27559F11",
  724. "level": 106,
  725. "quantity": 1,
  726. "plugs": null
  727. },
  728. {
  729. "instance_soid": "0x4000000000000025",
  730. "definition_hash": "0xD4DFDFE8",
  731. "level": 106,
  732. "quantity": 1,
  733. "plugs": null
  734. },
  735. {
  736. "instance_soid": "0x4000000000000026",
  737. "definition_hash": "0x34AD4160",
  738. "level": 106,
  739. "quantity": 1,
  740. "plugs": null
  741. },
  742. {
  743. "instance_soid": "0x4000000000000027",
  744. "definition_hash": "0x1684FA42",
  745. "level": 106,
  746. "quantity": 1,
  747. "plugs": null
  748. },
  749. {
  750. "instance_soid": "0x4000000000000028",
  751. "definition_hash": "0x0B8D3D9D",
  752. "level": 106,
  753. "quantity": 1,
  754. "plugs": null
  755. },
  756. {
  757. "instance_soid": "0x4000000000000029",
  758. "definition_hash": "0xF685696A",
  759. "level": 0,
  760. "quantity": 1,
  761. "plugs": null
  762. },
  763. {
  764. "instance_soid": "0x400000000000002A",
  765. "definition_hash": "0x3083B063",
  766. "level": 0,
  767. "quantity": 1,
  768. "plugs": null
  769. },
  770. {
  771. "instance_soid": "0x400000000000002B",
  772. "definition_hash": "0x35EE8905",
  773. "level": 0,
  774. "quantity": 1,
  775. "plugs": null
  776. },
  777. {
  778. "instance_soid": "0x400000000000002C",
  779. "definition_hash": "0x4E86F9EC",
  780. "level": 0,
  781. "quantity": 1,
  782. "plugs": null
  783. },
  784. {
  785. "instance_soid": "0x400000000000002D",
  786. "definition_hash": "0x71A87B55",
  787. "level": 0,
  788. "quantity": 1,
  789. "plugs": null
  790. },
  791. {
  792. "instance_soid": "0x400000000000002E",
  793. "definition_hash": "0xA984374D",
  794. "level": 0,
  795. "quantity": 1,
  796. "plugs": null
  797. },
  798. {
  799. "instance_soid": "0x400000000000002F",
  800. "definition_hash": "0xD8ACA0CE",
  801. "level": 0,
  802. "quantity": 1,
  803. "plugs": null
  804. },
  805. {
  806. "instance_soid": "0x4000000000000030",
  807. "definition_hash": "0xC7CBC15C",
  808. "level": 0,
  809. "quantity": 1,
  810. "plugs": null
  811. },
  812. {
  813. "instance_soid": "0x4000000000000031",
  814. "definition_hash": "0x11C83768",
  815. "level": 0,
  816. "quantity": 1,
  817. "plugs": null
  818. },
  819. {
  820. "instance_soid": "0x4000000000000032",
  821. "definition_hash": "0x5A6603AD",
  822. "level": 0,
  823. "quantity": 1,
  824. "plugs": null,
  825. "flags": 0
  826. },
  827. {
  828. "instance_soid": "0x4000000000000033",
  829. "definition_hash": "0x4D24AB5D",
  830. "level": 0,
  831. "quantity": 1,
  832. "plugs": null,
  833. "flags": 0
  834. },
  835. {
  836. "instance_soid": "0x4000000000000034",
  837. "definition_hash": "0x564C7E4C",
  838. "level": 0,
  839. "quantity": 1,
  840. "plugs": null,
  841. "flags": 0
  842. },
  843. {
  844. "instance_soid": "0x4000000000000010",
  845. "definition_hash": "0xEF255BFB",
  846. "level": 0,
  847. "quantity": 1,
  848. "plugs": null,
  849. "flags": 0
  850. },
  851. {
  852. "instance_soid": "0x4000000000000035",
  853. "definition_hash": "0x05B1C785",
  854. "level": 0,
  855. "quantity": 1,
  856. "plugs": null
  857. },
  858. {
  859. "instance_soid": "0x4000000000000036",
  860. "definition_hash": "0xA3CE6FD4",
  861. "level": 0,
  862. "quantity": 1,
  863. "plugs": null
  864. },
  865. {
  866. "instance_soid": "0x4000000000000037",
  867. "definition_hash": "0xE0B2E67F",
  868. "level": 0,
  869. "quantity": 1,
  870. "plugs": null
  871. }
  872. ]
  873. },
  874. {
  875. "soid": "0x9EAA300100100102",
  876. "race": 0,
  877. "gender": 0,
  878. "class": 0,
  879. "movement_ability": 6,
  880. "grenade_ability": 7,
  881. "super_ability": 10,
  882. "melee_ability": 11,
  883. "class_ability": 2,
  884. "level": 50,
  885. "preview_available": true,
  886. "appearance_value": 1.0,
  887. "last_orbited_destination": "0x125CF0E7",
  888. "content_bypass": true,
  889. "equipment": {
  890. "kinetic": {
  891. "instance_soid": "0x4000000000000065",
  892. "definition_hash": "0xE516CF40",
  893. "level": 106,
  894. "quantity": 1,
  895. "plugs": [
  896. "0xAB5218B6",
  897. "0xCCA5773B",
  898. "0x065F4ED0",
  899. "0x45A0BDD7",
  900. "0x1B6B4DB8",
  901. "0xFD368D30",
  902. "0x8A8536B5",
  903. "0x8C84EA53",
  904. null,
  905. "0x8838B9DA",
  906. null,
  907. "0xE713379A"
  908. ]
  909. },
  910. "energy": {
  911. "instance_soid": "0x4000000000000066",
  912. "definition_hash": "0x4156C94D",
  913. "level": 106,
  914. "quantity": 1,
  915. "plugs": [
  916. "0x3B667F9C",
  917. "0x4F68703D",
  918. "0x065F4ED0",
  919. "0xF2A907DF",
  920. "0x8CB6409D",
  921. "0xFD368D30",
  922. "0x8A8536B5",
  923. null,
  924. null,
  925. "0x8838B9DA"
  926. ]
  927. },
  928. "heavy": {
  929. "instance_soid": "0x4000000000000067",
  930. "definition_hash": "0x6F22FCEC",
  931. "level": 106,
  932. "quantity": 1,
  933. "plugs": [
  934. "0xD91C01C9",
  935. "0x37F1078F",
  936. "0x8CE3FE36",
  937. "0x151FBDCC",
  938. "0x9A6B194D",
  939. null,
  940. "0xAEBAE371",
  941. "0x9B283E92"
  942. ]
  943. },
  944. "helmet": {
  945. "instance_soid": "0x4000000000000068",
  946. "definition_hash": "0xECB479E4",
  947. "level": 106,
  948. "quantity": 1,
  949. "plugs": [
  950. "0xEC2137DA",
  951. "0x301CB225",
  952. "0x301CB225",
  953. null,
  954. "0x54CCDFF2",
  955. "0xA4D6D964",
  956. "0x39CBE5E4",
  957. "0x85480BD0",
  958. "0xA81461CE",
  959. "0x01E90FE0",
  960. "0x29E6A60B"
  961. ]
  962. },
  963. "gauntlets": {
  964. "instance_soid": "0x4000000000000069",
  965. "definition_hash": "0xE98EBABD",
  966. "level": 106,
  967. "quantity": 1,
  968. "plugs": [
  969. "0xEC2137DA",
  970. "0x6DE9E6FF",
  971. "0x6DE9E6FF",
  972. null,
  973. "0x54CCDFF2",
  974. "0xA4D6D964",
  975. "0x39CBE5E4",
  976. "0x85480BD0",
  977. "0xA81461CE",
  978. "0x01E90FE0",
  979. "0x29E6A60B"
  980. ]
  981. },
  982. "chest": {
  983. "instance_soid": "0x400000000000006A",
  984. "definition_hash": "0x542FC543",
  985. "level": 106,
  986. "quantity": 1,
  987. "plugs": [
  988. "0xEC2137DA",
  989. "0x62E854BB",
  990. "0x62E854BB",
  991. null,
  992. "0x54CCDFF2",
  993. "0xA4D6D964",
  994. "0x39CBE5E4",
  995. "0x85480BD0",
  996. "0xA81461CE",
  997. "0x01E90FE0",
  998. "0x29E6A60B"
  999. ]
  1000. },
  1001. "legs": {
  1002. "instance_soid": "0x400000000000006B",
  1003. "definition_hash": "0xD2F64E86",
  1004. "level": 106,
  1005. "quantity": 1,
  1006. "plugs": [
  1007. "0xEC2137DA",
  1008. "0x22299393",
  1009. "0x22299393",
  1010. "0xC130B5BC",
  1011. "0x54CCDFF2",
  1012. "0x13EFAFB3",
  1013. "0x85480BD0",
  1014. "0xE92D2525",
  1015. "0x01E90FE0",
  1016. "0x37661C63",
  1017. "0x29E6A60B"
  1018. ]
  1019. },
  1020. "class_item": {
  1021. "instance_soid": "0x400000000000006C",
  1022. "definition_hash": "0x295F70BA",
  1023. "level": 106,
  1024. "quantity": 1,
  1025. "plugs": [
  1026. "0xEC2137DA",
  1027. "0x43C9A775",
  1028. "0x43C9A775",
  1029. null,
  1030. "0x54CCDFF2",
  1031. "0xA4D6D964",
  1032. "0x29E6A60B"
  1033. ]
  1034. },
  1035. "ghost": {
  1036. "instance_soid": "0x400000000000006D",
  1037. "definition_hash": "0xF6856969",
  1038. "level": 0,
  1039. "quantity": 1,
  1040. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1041. },
  1042. "vehicle": {
  1043. "instance_soid": "0x400000000000006E",
  1044. "definition_hash": "0xC5C22F78",
  1045. "level": 0,
  1046. "quantity": 1,
  1047. "plugs": [
  1048. "0xFD368D30",
  1049. "0xB185D1D6",
  1050. "0x8A78C491",
  1051. "0x41219514",
  1052. "0x5084C54E"
  1053. ]
  1054. },
  1055. "ship": {
  1056. "instance_soid": "0x400000000000006F",
  1057. "definition_hash": "0x1174E2EA",
  1058. "level": 0,
  1059. "quantity": 1,
  1060. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1061. },
  1062. "subclass": {
  1063. "instance_soid": "0x4000000000000070",
  1064. "definition_hash": "0xB920CE9A",
  1065. "level": 0,
  1066. "quantity": 1,
  1067. "plugs": []
  1068. },
  1069. "clan_banner": {
  1070. "instance_soid": "0x4000000000000071",
  1071. "definition_hash": "0x570EAA71",
  1072. "level": 0,
  1073. "quantity": 1,
  1074. "plugs": [
  1075. "0x36BF5F04",
  1076. "0x2249F5C8",
  1077. "0xE01AE367",
  1078. "0x63A3BA12",
  1079. "0x5CE104E5",
  1080. "0x7CCC4828"
  1081. ]
  1082. },
  1083. "emblem": {
  1084. "instance_soid": "0x4000000000000072",
  1085. "definition_hash": "0x71B4CC1B",
  1086. "level": 0,
  1087. "quantity": 1,
  1088. "plugs": []
  1089. },
  1090. "emote": {
  1091. "instance_soid": "0x4000000000000073",
  1092. "definition_hash": "0x7979AE7D",
  1093. "level": 0,
  1094. "quantity": 1,
  1095. "plugs": []
  1096. },
  1097. "finisher": {
  1098. "instance_soid": "0x4000000000000101",
  1099. "definition_hash": "0x09183EEF",
  1100. "level": 0,
  1101. "quantity": 1,
  1102. "plugs": []
  1103. },
  1104. "artifact": {
  1105. "instance_soid": "0x4000000000000104",
  1106. "definition_hash": "0x613A3DA6",
  1107. "level": 0,
  1108. "quantity": 1,
  1109. "plugs": null
  1110. }
  1111. },
  1112. "inventory": [
  1113. {
  1114. "instance_soid": "0x4000000000000075",
  1115. "definition_hash": "0x3E7B47F8",
  1116. "level": 106,
  1117. "quantity": 1,
  1118. "plugs": null
  1119. },
  1120. {
  1121. "instance_soid": "0x4000000000000076",
  1122. "definition_hash": "0x26275FBA",
  1123. "level": 106,
  1124. "quantity": 1,
  1125. "plugs": null
  1126. },
  1127. {
  1128. "instance_soid": "0x4000000000000077",
  1129. "definition_hash": "0xE9E6B958",
  1130. "level": 106,
  1131. "quantity": 1,
  1132. "plugs": null
  1133. },
  1134. {
  1135. "instance_soid": "0x4000000000000078",
  1136. "definition_hash": "0xCA3F1095",
  1137. "level": 106,
  1138. "quantity": 1,
  1139. "plugs": null
  1140. },
  1141. {
  1142. "instance_soid": "0x4000000000000079",
  1143. "definition_hash": "0xC4916786",
  1144. "level": 106,
  1145. "quantity": 1,
  1146. "plugs": null
  1147. },
  1148. {
  1149. "instance_soid": "0x400000000000007A",
  1150. "definition_hash": "0xA25B8F8F",
  1151. "level": 106,
  1152. "quantity": 1,
  1153. "plugs": null
  1154. },
  1155. {
  1156. "instance_soid": "0x400000000000007B",
  1157. "definition_hash": "0xDC0DA337",
  1158. "level": 106,
  1159. "quantity": 1,
  1160. "plugs": null
  1161. },
  1162. {
  1163. "instance_soid": "0x400000000000007C",
  1164. "definition_hash": "0xDEF8BAA5",
  1165. "level": 106,
  1166. "quantity": 1,
  1167. "plugs": null
  1168. },
  1169. {
  1170. "instance_soid": "0x400000000000007D",
  1171. "definition_hash": "0xDBF8EB6E",
  1172. "level": 106,
  1173. "quantity": 1,
  1174. "plugs": null
  1175. },
  1176. {
  1177. "instance_soid": "0x400000000000007E",
  1178. "definition_hash": "0x51ADBEB4",
  1179. "level": 106,
  1180. "quantity": 1,
  1181. "plugs": null
  1182. },
  1183. {
  1184. "instance_soid": "0x400000000000007F",
  1185. "definition_hash": "0xF2AF51CD",
  1186. "level": 106,
  1187. "quantity": 1,
  1188. "plugs": null
  1189. },
  1190. {
  1191. "instance_soid": "0x4000000000000080",
  1192. "definition_hash": "0x966B9873",
  1193. "level": 106,
  1194. "quantity": 1,
  1195. "plugs": null
  1196. },
  1197. {
  1198. "instance_soid": "0x4000000000000081",
  1199. "definition_hash": "0x1AAAE68F",
  1200. "level": 106,
  1201. "quantity": 1,
  1202. "plugs": null
  1203. },
  1204. {
  1205. "instance_soid": "0x4000000000000082",
  1206. "definition_hash": "0x19DFB9AA",
  1207. "level": 106,
  1208. "quantity": 1,
  1209. "plugs": null
  1210. },
  1211. {
  1212. "instance_soid": "0x4000000000000083",
  1213. "definition_hash": "0xF435CE34",
  1214. "level": 106,
  1215. "quantity": 1,
  1216. "plugs": null
  1217. },
  1218. {
  1219. "instance_soid": "0x4000000000000084",
  1220. "definition_hash": "0x9537614D",
  1221. "level": 106,
  1222. "quantity": 1,
  1223. "plugs": null
  1224. },
  1225. {
  1226. "instance_soid": "0x4000000000000085",
  1227. "definition_hash": "0xF29BFEF3",
  1228. "level": 106,
  1229. "quantity": 1,
  1230. "plugs": null
  1231. },
  1232. {
  1233. "instance_soid": "0x4000000000000086",
  1234. "definition_hash": "0xBD32F60F",
  1235. "level": 106,
  1236. "quantity": 1,
  1237. "plugs": null
  1238. },
  1239. {
  1240. "instance_soid": "0x4000000000000087",
  1241. "definition_hash": "0x7610202A",
  1242. "level": 106,
  1243. "quantity": 1,
  1244. "plugs": null
  1245. },
  1246. {
  1247. "instance_soid": "0x4000000000000088",
  1248. "definition_hash": "0x103CB34D",
  1249. "level": 106,
  1250. "quantity": 1,
  1251. "plugs": null
  1252. },
  1253. {
  1254. "instance_soid": "0x4000000000000089",
  1255. "definition_hash": "0x3723973C",
  1256. "level": 106,
  1257. "quantity": 1,
  1258. "plugs": null
  1259. },
  1260. {
  1261. "instance_soid": "0x400000000000008A",
  1262. "definition_hash": "0x9918CAA4",
  1263. "level": 106,
  1264. "quantity": 1,
  1265. "plugs": null
  1266. },
  1267. {
  1268. "instance_soid": "0x400000000000008B",
  1269. "definition_hash": "0x1287C646",
  1270. "level": 106,
  1271. "quantity": 1,
  1272. "plugs": null
  1273. },
  1274. {
  1275. "instance_soid": "0x400000000000008C",
  1276. "definition_hash": "0xC56EBCF9",
  1277. "level": 106,
  1278. "quantity": 1,
  1279. "plugs": null
  1280. },
  1281. {
  1282. "instance_soid": "0x400000000000008D",
  1283. "definition_hash": "0xF6856968",
  1284. "level": 0,
  1285. "quantity": 1,
  1286. "plugs": null
  1287. },
  1288. {
  1289. "instance_soid": "0x400000000000008E",
  1290. "definition_hash": "0xAA583AC8",
  1291. "level": 0,
  1292. "quantity": 1,
  1293. "plugs": null
  1294. },
  1295. {
  1296. "instance_soid": "0x400000000000008F",
  1297. "definition_hash": "0x45F41F39",
  1298. "level": 0,
  1299. "quantity": 1,
  1300. "plugs": null
  1301. },
  1302. {
  1303. "instance_soid": "0x4000000000000090",
  1304. "definition_hash": "0x7B387201",
  1305. "level": 0,
  1306. "quantity": 1,
  1307. "plugs": null
  1308. },
  1309. {
  1310. "instance_soid": "0x4000000000000091",
  1311. "definition_hash": "0xCAE2C4B0",
  1312. "level": 0,
  1313. "quantity": 1,
  1314. "plugs": null
  1315. },
  1316. {
  1317. "instance_soid": "0x4000000000000092",
  1318. "definition_hash": "0xF322966C",
  1319. "level": 0,
  1320. "quantity": 1,
  1321. "plugs": null
  1322. },
  1323. {
  1324. "instance_soid": "0x4000000000000093",
  1325. "definition_hash": "0xEAE9FA4A",
  1326. "level": 0,
  1327. "quantity": 1,
  1328. "plugs": null
  1329. },
  1330. {
  1331. "instance_soid": "0x4000000000000094",
  1332. "definition_hash": "0xC7CBC15C",
  1333. "level": 0,
  1334. "quantity": 1,
  1335. "plugs": null
  1336. },
  1337. {
  1338. "instance_soid": "0x4000000000000095",
  1339. "definition_hash": "0x11C83768",
  1340. "level": 0,
  1341. "quantity": 1,
  1342. "plugs": null
  1343. },
  1344. {
  1345. "instance_soid": "0x4000000000000096",
  1346. "definition_hash": "0xBB3CAA51",
  1347. "level": 0,
  1348. "quantity": 1,
  1349. "plugs": null,
  1350. "flags": 0
  1351. },
  1352. {
  1353. "instance_soid": "0x4000000000000097",
  1354. "definition_hash": "0xCF1C4EF3",
  1355. "level": 0,
  1356. "quantity": 1,
  1357. "plugs": null,
  1358. "flags": 0
  1359. },
  1360. {
  1361. "instance_soid": "0x4000000000000098",
  1362. "definition_hash": "0x29905E7A",
  1363. "level": 0,
  1364. "quantity": 1,
  1365. "plugs": null,
  1366. "flags": 0
  1367. },
  1368. {
  1369. "instance_soid": "0x4000000000000074",
  1370. "definition_hash": "0xAA223B79",
  1371. "level": 0,
  1372. "quantity": 1,
  1373. "plugs": null,
  1374. "flags": 0
  1375. },
  1376. {
  1377. "instance_soid": "0x4000000000000099",
  1378. "definition_hash": "0x1FA2AD3E",
  1379. "level": 0,
  1380. "quantity": 1,
  1381. "plugs": null
  1382. },
  1383. {
  1384. "instance_soid": "0x400000000000009A",
  1385. "definition_hash": "0x30A14DDC",
  1386. "level": 0,
  1387. "quantity": 1,
  1388. "plugs": null
  1389. },
  1390. {
  1391. "instance_soid": "0x400000000000009B",
  1392. "definition_hash": "0x46D82092",
  1393. "level": 0,
  1394. "quantity": 1,
  1395. "plugs": null
  1396. }
  1397. ]
  1398. },
  1399. {
  1400. "soid": "0x9EAA300100100103",
  1401. "race": 0,
  1402. "gender": 0,
  1403. "class": 2,
  1404. "movement_ability": 5,
  1405. "grenade_ability": 7,
  1406. "super_ability": 10,
  1407. "melee_ability": 11,
  1408. "class_ability": 2,
  1409. "level": 50,
  1410. "preview_available": true,
  1411. "appearance_value": 1.0,
  1412. "last_orbited_destination": "0x125CF0E7",
  1413. "content_bypass": true,
  1414. "equipment": {
  1415. "kinetic": {
  1416. "instance_soid": "0x40000000000000C9",
  1417. "definition_hash": "0xE516CF40",
  1418. "level": 106,
  1419. "quantity": 1,
  1420. "plugs": [
  1421. "0xAB5218B6",
  1422. "0xCCA5773B",
  1423. "0x065F4ED0",
  1424. "0x45A0BDD7",
  1425. "0x1B6B4DB8",
  1426. "0xFD368D30",
  1427. "0x8A8536B5",
  1428. "0x8C84EA53",
  1429. null,
  1430. "0x8838B9DA",
  1431. null,
  1432. "0xE713379A"
  1433. ]
  1434. },
  1435. "energy": {
  1436. "instance_soid": "0x40000000000000CA",
  1437. "definition_hash": "0x4156C94D",
  1438. "level": 106,
  1439. "quantity": 1,
  1440. "plugs": [
  1441. "0x3B667F9C",
  1442. "0x4F68703D",
  1443. "0x065F4ED0",
  1444. "0xF2A907DF",
  1445. "0x8CB6409D",
  1446. "0xFD368D30",
  1447. "0x8A8536B5",
  1448. null,
  1449. null,
  1450. "0x8838B9DA"
  1451. ]
  1452. },
  1453. "heavy": {
  1454. "instance_soid": "0x40000000000000CB",
  1455. "definition_hash": "0x6F22FCEC",
  1456. "level": 106,
  1457. "quantity": 1,
  1458. "plugs": [
  1459. "0xD91C01C9",
  1460. "0x37F1078F",
  1461. "0x8CE3FE36",
  1462. "0x151FBDCC",
  1463. "0x9A6B194D",
  1464. null,
  1465. "0xAEBAE371",
  1466. "0x9B283E92"
  1467. ]
  1468. },
  1469. "helmet": {
  1470. "instance_soid": "0x40000000000000CC",
  1471. "definition_hash": "0xEA042965",
  1472. "level": 106,
  1473. "quantity": 1,
  1474. "plugs": [
  1475. "0xEC2137DA",
  1476. "0x301CB225",
  1477. "0x301CB225",
  1478. null,
  1479. "0x54CCDFF2",
  1480. "0xA4D6D964",
  1481. "0x39CBE5E4",
  1482. "0x85480BD0",
  1483. "0xA81461CE",
  1484. "0x01E90FE0",
  1485. "0x29E6A60B"
  1486. ]
  1487. },
  1488. "gauntlets": {
  1489. "instance_soid": "0x40000000000000CD",
  1490. "definition_hash": "0x188C5834",
  1491. "level": 106,
  1492. "quantity": 1,
  1493. "plugs": [
  1494. "0xEC2137DA",
  1495. "0x6DE9E6FF",
  1496. "0x6DE9E6FF",
  1497. null,
  1498. "0x54CCDFF2",
  1499. "0xA4D6D964",
  1500. "0x39CBE5E4",
  1501. "0x85480BD0",
  1502. "0xA81461CE",
  1503. "0x01E90FE0",
  1504. "0x29E6A60B"
  1505. ]
  1506. },
  1507. "chest": {
  1508. "instance_soid": "0x40000000000000CE",
  1509. "definition_hash": "0xF8689C4C",
  1510. "level": 106,
  1511. "quantity": 1,
  1512. "plugs": [
  1513. "0xEC2137DA",
  1514. "0x62E854BB",
  1515. "0x62E854BB",
  1516. null,
  1517. "0x54CCDFF2",
  1518. "0xA4D6D964",
  1519. "0x39CBE5E4",
  1520. "0x85480BD0",
  1521. "0xA81461CE",
  1522. "0x01E90FE0",
  1523. "0x29E6A60B"
  1524. ]
  1525. },
  1526. "legs": {
  1527. "instance_soid": "0x40000000000000CF",
  1528. "definition_hash": "0x083E04B6",
  1529. "level": 106,
  1530. "quantity": 1,
  1531. "plugs": [
  1532. "0xEC2137DA",
  1533. "0x22299393",
  1534. "0x22299393",
  1535. "0xC78E19B1",
  1536. "0x54CCDFF2",
  1537. "0x13EFAFB3",
  1538. "0x85480BD0",
  1539. "0xBAE01BEB",
  1540. "0x056CABAD",
  1541. "0xF37F6509",
  1542. "0x29E6A60B"
  1543. ]
  1544. },
  1545. "class_item": {
  1546. "instance_soid": "0x40000000000000D0",
  1547. "definition_hash": "0x99446581",
  1548. "level": 106,
  1549. "quantity": 1,
  1550. "plugs": [
  1551. "0x1CB5C883",
  1552. "0x43C9A775",
  1553. "0x43C9A775",
  1554. null,
  1555. "0x54CCDFF2",
  1556. "0xA4D6D964",
  1557. "0x29E6A60B"
  1558. ]
  1559. },
  1560. "ghost": {
  1561. "instance_soid": "0x40000000000000D1",
  1562. "definition_hash": "0xF6856969",
  1563. "level": 0,
  1564. "quantity": 1,
  1565. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1566. },
  1567. "vehicle": {
  1568. "instance_soid": "0x40000000000000D2",
  1569. "definition_hash": "0xC5C22F78",
  1570. "level": 0,
  1571. "quantity": 1,
  1572. "plugs": [
  1573. "0xFD368D30",
  1574. "0xB185D1D6",
  1575. "0x8A78C491",
  1576. "0x41219514",
  1577. "0x5084C54E"
  1578. ]
  1579. },
  1580. "ship": {
  1581. "instance_soid": "0x40000000000000D3",
  1582. "definition_hash": "0x1174E2EA",
  1583. "level": 0,
  1584. "quantity": 1,
  1585. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1586. },
  1587. "subclass": {
  1588. "instance_soid": "0x40000000000000D4",
  1589. "definition_hash": "0xCF88FEA5",
  1590. "level": 0,
  1591. "quantity": 1,
  1592. "plugs": []
  1593. },
  1594. "clan_banner": {
  1595. "instance_soid": "0x40000000000000D5",
  1596. "definition_hash": "0x570EAA71",
  1597. "level": 0,
  1598. "quantity": 1,
  1599. "plugs": [
  1600. "0x36BF5F04",
  1601. "0x2249F5C8",
  1602. "0xE01AE367",
  1603. "0x63A3BA12",
  1604. "0x5CE104E5",
  1605. "0x7CCC4828"
  1606. ]
  1607. },
  1608. "emblem": {
  1609. "instance_soid": "0x40000000000000D6",
  1610. "definition_hash": "0x71B4CC19",
  1611. "level": 0,
  1612. "quantity": 1,
  1613. "plugs": []
  1614. },
  1615. "emote": {
  1616. "instance_soid": "0x40000000000000D7",
  1617. "definition_hash": "0x7979AE7D",
  1618. "level": 0,
  1619. "quantity": 1,
  1620. "plugs": []
  1621. },
  1622. "finisher": {
  1623. "instance_soid": "0x4000000000000102",
  1624. "definition_hash": "0x09183EEF",
  1625. "level": 0,
  1626. "quantity": 1,
  1627. "plugs": []
  1628. },
  1629. "artifact": {
  1630. "instance_soid": "0x4000000000000105",
  1631. "definition_hash": "0x613A3DA6",
  1632. "level": 0,
  1633. "quantity": 1,
  1634. "plugs": null
  1635. }
  1636. },
  1637. "inventory": [
  1638. {
  1639. "instance_soid": "0x40000000000000D9",
  1640. "definition_hash": "0x3E7B47F8",
  1641. "level": 106,
  1642. "quantity": 1,
  1643. "plugs": null
  1644. },
  1645. {
  1646. "instance_soid": "0x40000000000000DA",
  1647. "definition_hash": "0x26275FBA",
  1648. "level": 106,
  1649. "quantity": 1,
  1650. "plugs": null
  1651. },
  1652. {
  1653. "instance_soid": "0x40000000000000DB",
  1654. "definition_hash": "0xE9E6B958",
  1655. "level": 106,
  1656. "quantity": 1,
  1657. "plugs": null
  1658. },
  1659. {
  1660. "instance_soid": "0x40000000000000DC",
  1661. "definition_hash": "0xCA3F1095",
  1662. "level": 106,
  1663. "quantity": 1,
  1664. "plugs": null
  1665. },
  1666. {
  1667. "instance_soid": "0x40000000000000DD",
  1668. "definition_hash": "0xC4916786",
  1669. "level": 106,
  1670. "quantity": 1,
  1671. "plugs": null
  1672. },
  1673. {
  1674. "instance_soid": "0x40000000000000DE",
  1675. "definition_hash": "0xA25B8F8F",
  1676. "level": 106,
  1677. "quantity": 1,
  1678. "plugs": null
  1679. },
  1680. {
  1681. "instance_soid": "0x40000000000000DF",
  1682. "definition_hash": "0xDC0DA337",
  1683. "level": 106,
  1684. "quantity": 1,
  1685. "plugs": null
  1686. },
  1687. {
  1688. "instance_soid": "0x40000000000000E0",
  1689. "definition_hash": "0xDEF8BAA5",
  1690. "level": 106,
  1691. "quantity": 1,
  1692. "plugs": null
  1693. },
  1694. {
  1695. "instance_soid": "0x40000000000000E1",
  1696. "definition_hash": "0xDBF8EB6E",
  1697. "level": 106,
  1698. "quantity": 1,
  1699. "plugs": null
  1700. },
  1701. {
  1702. "instance_soid": "0x40000000000000E2",
  1703. "definition_hash": "0x5CA160F5",
  1704. "level": 106,
  1705. "quantity": 1,
  1706. "plugs": null
  1707. },
  1708. {
  1709. "instance_soid": "0x40000000000000E3",
  1710. "definition_hash": "0x0DB45944",
  1711. "level": 106,
  1712. "quantity": 1,
  1713. "plugs": null
  1714. },
  1715. {
  1716. "instance_soid": "0x40000000000000E4",
  1717. "definition_hash": "0xC9F7B53C",
  1718. "level": 106,
  1719. "quantity": 1,
  1720. "plugs": null
  1721. },
  1722. {
  1723. "instance_soid": "0x40000000000000E5",
  1724. "definition_hash": "0x80C7AB6E",
  1725. "level": 106,
  1726. "quantity": 1,
  1727. "plugs": null
  1728. },
  1729. {
  1730. "instance_soid": "0x40000000000000E6",
  1731. "definition_hash": "0x326316B1",
  1732. "level": 106,
  1733. "quantity": 1,
  1734. "plugs": null
  1735. },
  1736. {
  1737. "instance_soid": "0x40000000000000E7",
  1738. "definition_hash": "0x0B117DAB",
  1739. "level": 106,
  1740. "quantity": 1,
  1741. "plugs": null
  1742. },
  1743. {
  1744. "instance_soid": "0x40000000000000E8",
  1745. "definition_hash": "0xA496C19A",
  1746. "level": 106,
  1747. "quantity": 1,
  1748. "plugs": null
  1749. },
  1750. {
  1751. "instance_soid": "0x40000000000000E9",
  1752. "definition_hash": "0xAA71C8EE",
  1753. "level": 106,
  1754. "quantity": 1,
  1755. "plugs": null
  1756. },
  1757. {
  1758. "instance_soid": "0x40000000000000EA",
  1759. "definition_hash": "0x0B4089D4",
  1760. "level": 106,
  1761. "quantity": 1,
  1762. "plugs": null
  1763. },
  1764. {
  1765. "instance_soid": "0x40000000000000EB",
  1766. "definition_hash": "0xD6B2A7B7",
  1767. "level": 106,
  1768. "quantity": 1,
  1769. "plugs": null
  1770. },
  1771. {
  1772. "instance_soid": "0x40000000000000EC",
  1773. "definition_hash": "0x5B1ACD6C",
  1774. "level": 106,
  1775. "quantity": 1,
  1776. "plugs": null
  1777. },
  1778. {
  1779. "instance_soid": "0x40000000000000ED",
  1780. "definition_hash": "0x28B26925",
  1781. "level": 106,
  1782. "quantity": 1,
  1783. "plugs": null
  1784. },
  1785. {
  1786. "instance_soid": "0x40000000000000EE",
  1787. "definition_hash": "0xDC124D7B",
  1788. "level": 106,
  1789. "quantity": 1,
  1790. "plugs": null
  1791. },
  1792. {
  1793. "instance_soid": "0x40000000000000EF",
  1794. "definition_hash": "0x3D663DA7",
  1795. "level": 106,
  1796. "quantity": 1,
  1797. "plugs": null
  1798. },
  1799. {
  1800. "instance_soid": "0x40000000000000F0",
  1801. "definition_hash": "0x7A1FC812",
  1802. "level": 106,
  1803. "quantity": 1,
  1804. "plugs": null
  1805. },
  1806. {
  1807. "instance_soid": "0x40000000000000F1",
  1808. "definition_hash": "0x3083B063",
  1809. "level": 0,
  1810. "quantity": 1,
  1811. "plugs": null
  1812. },
  1813. {
  1814. "instance_soid": "0x40000000000000F2",
  1815. "definition_hash": "0x2E71E54E",
  1816. "level": 0,
  1817. "quantity": 1,
  1818. "plugs": null
  1819. },
  1820. {
  1821. "instance_soid": "0x40000000000000F3",
  1822. "definition_hash": "0x4E86F9EC",
  1823. "level": 0,
  1824. "quantity": 1,
  1825. "plugs": null
  1826. },
  1827. {
  1828. "instance_soid": "0x40000000000000F4",
  1829. "definition_hash": "0xC9993382",
  1830. "level": 0,
  1831. "quantity": 1,
  1832. "plugs": null
  1833. },
  1834. {
  1835. "instance_soid": "0x40000000000000F5",
  1836. "definition_hash": "0xA984374D",
  1837. "level": 0,
  1838. "quantity": 1,
  1839. "plugs": null
  1840. },
  1841. {
  1842. "instance_soid": "0x40000000000000F6",
  1843. "definition_hash": "0x28155DF4",
  1844. "level": 0,
  1845. "quantity": 1,
  1846. "plugs": null
  1847. },
  1848. {
  1849. "instance_soid": "0x40000000000000F7",
  1850. "definition_hash": "0xD4753C25",
  1851. "level": 0,
  1852. "quantity": 1,
  1853. "plugs": null
  1854. },
  1855. {
  1856. "instance_soid": "0x40000000000000F8",
  1857. "definition_hash": "0xC7CBC15C",
  1858. "level": 0,
  1859. "quantity": 1,
  1860. "plugs": null
  1861. },
  1862. {
  1863. "instance_soid": "0x40000000000000F9",
  1864. "definition_hash": "0x11C83768",
  1865. "level": 0,
  1866. "quantity": 1,
  1867. "plugs": null
  1868. },
  1869. {
  1870. "instance_soid": "0x40000000000000FA",
  1871. "definition_hash": "0x58E8183A",
  1872. "level": 0,
  1873. "quantity": 1,
  1874. "plugs": null,
  1875. "flags": 0
  1876. },
  1877. {
  1878. "instance_soid": "0x40000000000000FB",
  1879. "definition_hash": "0x58F778E0",
  1880. "level": 0,
  1881. "quantity": 1,
  1882. "plugs": null,
  1883. "flags": 0
  1884. },
  1885. {
  1886. "instance_soid": "0x40000000000000FC",
  1887. "definition_hash": "0xCABFBE57",
  1888. "level": 0,
  1889. "quantity": 1,
  1890. "plugs": null,
  1891. "flags": 0
  1892. },
  1893. {
  1894. "instance_soid": "0x40000000000000D8",
  1895. "definition_hash": "0x0F2B9504",
  1896. "level": 0,
  1897. "quantity": 1,
  1898. "plugs": null,
  1899. "flags": 0
  1900. },
  1901. {
  1902. "instance_soid": "0x40000000000000FD",
  1903. "definition_hash": "0xF5095792",
  1904. "level": 0,
  1905. "quantity": 1,
  1906. "plugs": null
  1907. },
  1908. {
  1909. "instance_soid": "0x40000000000000FE",
  1910. "definition_hash": "0xEEF8905A",
  1911. "level": 0,
  1912. "quantity": 1,
  1913. "plugs": null
  1914. },
  1915. {
  1916. "instance_soid": "0x40000000000000FF",
  1917. "definition_hash": "0x6846D9F9",
  1918. "level": 0,
  1919. "quantity": 1,
  1920. "plugs": null
  1921. }
  1922. ]
  1923. }
  1924. ]
  1925. }
  1926. }