default_settings.json 69 KB

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