default_settings.json 69 KB

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