default_settings.json 70 KB

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