1.8.0 • Published 6 years ago

overwatch-js v1.8.0

Weekly downloads
24
License
MIT
Repository
github
Last release
6 years ago

overwatch-js

NodeJS Overwatch library : Retrieve informations about heroes/players from Overwatch Official Website Overwatch

NPM

Functionalities

  • Search for a player
  • Global profile datas
  • Career profile datas with heroes statistics

Last activities

  • Issue : Fix mostplayed heroe in masteringHeroe property
  • Issue : Fix search method on updated JSON format
  • Issue : Return "PROFILE_NOT_FOUND" error handled promise object instead of stack error when profile doesn't exists
  • Enhancement : Manage new search format with #
  • Enhancement : Node > 4 compliant
  • Issue : Fix special characters in username
  • Issue : Fix the ranking interpretation (silver, gold, platinum etc.)
  • Issue : Fix global decimal rounding
  • Enhancement : Adding tiers information
  • Enchancement : Adding achievements informations
  • Enchancement : Selfhosting : owjs.ovh
  • Issue : @LanaCoyote : Fix date parsing
  • Issue : Managing XBL and PSN profile

Install

Requirements

  • Node v4.0+
npm install overwatch-js

Self-hosted

You can test this lib, through a self hosted web api endpoint. This web api is hosted on my servers, doesn't write logs, and is totally secure.

You can find the repo here : overwatch-api Repository You can enjoy here : owjs.ovh

How to

Extremely simple use case. See specs/mocktest.js All methods use Promise.

Search for a player :

var owjs = require('overwatch-js');

//// Search for a player 
owjs
    .search('Zeya#2303')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );

//// With custom locales
owjs
    .search('Zeya#2303', 'de-de')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );
[ { careerLink: '/career/pc/eu/Zeya-2303',
    platformDisplayName: 'Zeya#2303',
    level: 64,
    portrait: 'https://blzgdapipro-a.akamaihd.net/game/unlocks/0x02500000000009D9.png',
    platform: 'career',
    region: 'pc',
    tier: 2 } ]

Overall statistics :

var owjs = require('overwatch-js');
//// Retrive only overall stats
owjs
    .getOverall('pc', 'eu', 'Zeya-2303')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );

//// With custom locale
owjs
    .getOverall('pc', 'eu', 'Zeya-2303', 'de-de')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );

All statistics with heroes details :

var owjs = require('overwatch-js');

//// Retrieve all stats, including heroes details
owjs
    .getAll('pc', 'eu', 'Zeya-2303')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );

//// With custom locale
owjs
    .getAll('pc', 'eu', 'Zeya-2303', 'de-de')
    .then((data) => console.dir(data, {depth : 2, colors : true}) );

Where pc is the platform, eu is the region, Zeya-2303 the nickname, optionnaly : de-de a specific locale

Available informations :

{
   "profile":{
      "nick":"Zeya",
      "level":94,
      "avatar":"https://d1u1mce87gyfbn.cloudfront.net/game/unlocks/0x02500000000010BE.png",
      "rank":1597,
      "tier":0,
      "rankPicture":"https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/season-2/rank-2.png",
      "season":{
         "id":2,
         "rank":2
      },
      "ranking":"Silver",
      "platform":"",
      "url":"https://playoverwatch.com/en-us/career/pc/eu/Zeya-2303"
   },
   "competitive":{
      "global":{
         "all_damage_done_avg_per_10_min":17,
         "masteringHeroe":"junkrat",
         "time_spent_on_fire":1259000,
         "solo_kills":109,
         "environmental_kills":2,
         "multikills":6,
         "barrier_damage_done":229499,
         "deaths":519,
         "hero_damage_done":409039,
         "objective_time":2643000,
         "objective_kills":316,
         "final_blows":435,
         "eliminations":869,
         "all_damage_done":646234,
         "teleporter_pad_destroyed":1,
         "defensive_assists":35,
         "healing_done":36463,
         "offensive_assists":26,
         "eliminations_most_in_game":32,
         "final_blows_most_in_game":22,
         "all_damage_done_most_in_game":31970,
         "healing_done_most_in_game":8485,
         "defensive_assists_most_in_game":12,
         "offensive_assists_most_in_game":3,
         "objective_kills_most_in_game":18,
         "objective_time_most_in_game":237000,
         "multikill_best":3,
         "solo_kills_most_in_game":22,
         "time_spent_on_fire_most_in_game":170000,
         "turrets_destroyed_most_in_game":7,
         "environmental_kill_most_in_game":1,
         "teleporter_pad_destroyed_most_in_game":1,
         "kill_streak_best":32,
         "hero_damage_done_most_in_game":20209,
         "barrier_damage_done_most_in_game":15226,
         "barrier_damage_done_avg_per_10_min":6,
         "deaths_avg_per_10_min":0,
         "hero_damage_done_avg_per_10_min":11,
         "time_spent_on_fire_avg_per_10_min":0,
         "solo_kills_avg_per_10_min":0,
         "objective_time_avg_per_10_min":0,
         "objective_kills_avg_per_10_min":0,
         "healing_done_avg_per_10_min":1,
         "final_blows_avg_per_10_min":0,
         "eliminations_avg_per_10_min":0,
         "cards":6,
         "medals_silver":33,
         "medals_bronze":29,
         "medals":97,
         "medals_gold":35,
         "games_tied":3,
         "time_played":36000000,
         "games_played":61,
         "games_won":22,
         "games_lost":36,
         "turrets_destroyed":23,
         "damage_done":409039
      },
      "heroes":{
         "reaper":{
            "death_blossom_kills":7,
            "death_blossom_kills_most_in_game":5,
            "self_healing":2693,
            "self_healing_most_in_game":1277,
            "death_blossom_kills_avg_per_10_min":0,
            "self_healing_avg_per_10_min":1,
            "eliminations":66,
            "deaths":33,
            "final_blows":31,
            "solo_kills":5,
            "all_damage_done":41907,
            "objective_kills":33,
            "objective_time":322000,
            "time_spent_on_fire":172000,
            "critical_hits":382,
            "hero_damage_done":28401,
            "barrier_damage_done":13359,
            "critical_hit_accuracy":8,
            "weapon_accuracy":19,
            "eliminations_most_in_life":7,
            "all_damage_done_most_in_life":4708,
            "weapon_accuracy_best_in_game":23,
            "kill_streak_best":7,
            "all_damage_done_most_in_game":19374,
            "eliminations_most_in_game":27,
            "final_blows_most_in_game":17,
            "objective_kills_most_in_game":17,
            "objective_time_most_in_game":202000,
            "solo_kills_most_in_game":3,
            "critical_hits_most_in_game":194,
            "critical_hits_most_in_life":64,
            "time_spent_on_fire_most_in_game":105,
            "hero_damage_done_most_in_game":15067,
            "hero_damage_done_most_in_life":3415,
            "barrier_damage_done_most_in_game":4180,
            "barrier_damage_done_avg_per_10_min":5,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":11,
            "eliminations_per_life":2,
            "all_damage_done_avg_per_10_min":16.43,
            "medals_bronze":2,
            "medals_silver":3,
            "medals_gold":1,
            "medals":6,
            "time_played":2520000,
            "games_played":4,
            "games_lost":4
         },
         "mercy":{
            "self_healing":257,
            "self_healing_most_in_game":257,
            "self_healing_avg_per_10_min":2,
            "deaths":2,
            "defensive_assist":1,
            "defensive_assist_most_in_game":1,
            "healing_done":845,
            "healing_done_most_in_game":845,
            "healing_done_avg_per_10_min":8,
            "defensive_assists_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "medals_silver":0,
            "medals":0,
            "time_played":60000,
            "games_played":0,
            "games_tied":0,
            "games_lost":0
         },
         "hanzo":{
            "dragonstrike_kill":1,
            "dragonstrike_kill_most_in_game":1,
            "dragonstrike_kills_avg_per_10_min":0,
            "eliminations":14,
            "deaths":8,
            "final_blows":10,
            "solo_kills":3,
            "all_damage_done":10618,
            "objective_kills":3,
            "objective_time":9000,
            "critical_hits":7,
            "hero_damage_done":6680,
            "barrier_damage_done":3937,
            "critical_hit_accuracy":12,
            "weapon_accuracy":20,
            "eliminations_most_in_life":8,
            "all_damage_done_most_in_life":2459,
            "weapon_accuracy_best_in_game":24,
            "kill_streak_best":8,
            "all_damage_done_most_in_game":8662,
            "eliminations_most_in_game":14,
            "final_blows_most_in_game":10,
            "objective_kills_most_in_game":3,
            "objective_time_most_in_game":9000,
            "solo_kills_most_in_game":3,
            "critical_hits_most_in_game":7,
            "critical_hits_most_in_life":3,
            "hero_damage_done_most_in_game":5809,
            "hero_damage_done_most_in_life":2278,
            "barrier_damage_done_most_in_game":2852,
            "barrier_damage_done_avg_per_10_min":5,
            "critical_hits_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":9,
            "eliminations_per_life":1.75,
            "all_damage_done_avg_per_10_min":14.05,
            "medals_bronze":1,
            "medals_silver":1,
            "medals":2,
            "time_played":720000,
            "games_played":1,
            "games_lost":1,
            "storm_arrow_kills":3,
            "storm_arrow_kills_most_in_game":3,
            "storm_arrow_kills_avg_per_10_min":0
         },
         "torbjörn":{
            "armor_packs_created":22,
            "torbjörn_kills":11,
            "turret_kills":19,
            "torbjörn_kills_most_in_game":5,
            "armor_packs_created_most_in_game":12,
            "turret_kills_most_in_game":8,
            "molten_core_kills":8,
            "molten_core_kills_most_in_game":6,
            "turret_kills_avg_per_10_min":0,
            "torbjörn_kills_avg_per_10_min":0,
            "molten_core_kills_avg_per_10_min":0,
            "armor_packs_created_avg_per_10_min":0,
            "eliminations":24,
            "deaths":6,
            "final_blows":9,
            "solo_kills":3,
            "all_damage_done":17278,
            "objective_kills":10,
            "objective_time":6000,
            "time_spent_on_fire":38000,
            "critical_hits":3,
            "hero_damage_done":8853,
            "barrier_damage_done":8304,
            "critical_hit_accuracy":2,
            "weapon_accuracy":20,
            "eliminations_most_in_life":8,
            "all_damage_done_most_in_life":4748,
            "weapon_accuracy_best_in_game":24,
            "kill_streak_best":8,
            "all_damage_done_most_in_game":6943,
            "eliminations_most_in_game":11,
            "final_blows_most_in_game":5,
            "objective_kills_most_in_game":7,
            "objective_time_most_in_game":6000,
            "solo_kills_most_in_game":2,
            "critical_hits_most_in_game":3,
            "critical_hits_most_in_life":3,
            "time_spent_on_fire_most_in_game":38,
            "hero_damage_done_most_in_game":3590,
            "hero_damage_done_most_in_life":2683,
            "barrier_damage_done_most_in_game":3252,
            "barrier_damage_done_avg_per_10_min":10,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":11,
            "eliminations_per_life":4,
            "all_damage_done_avg_per_10_min":21.66,
            "medals_bronze":1,
            "medals_gold":2,
            "medals":3,
            "time_played":780000,
            "games_played":2,
            "games_won":1,
            "games_lost":1,
            "win_percentage":64
         },
         "reinhardt":{
            "damage_blocked":23682,
            "damage_blocked_most_in_game":8778,
            "charge_kills":3,
            "charge_kills_most_in_game":2,
            "fire_strike_kills":4,
            "fire_strike_kills_most_in_game":3,
            "earthshatter_kill":1,
            "earthshatter_kill_most_in_game":1,
            "rocket_hammer_melee_accuracy":0,
            "fire_strike_kills_avg_per_10_min":0,
            "earthshatter_kills_avg_per_10_min":0,
            "damage_blocked_avg_per_10_min":23,
            "charge_kills_avg_per_10_min":0,
            "eliminations":11,
            "deaths":13,
            "final_blows":4,
            "solo_kill":1,
            "all_damage_done":6071,
            "objective_kills":2,
            "objective_time":229000,
            "time_spent_on_fire":33000,
            "hero_damage_done":5040,
            "barrier_damage_done":980,
            "offensive_assist":1,
            "offensive_assist_most_in_game":1,
            "offensive_assists_avg_per_10_min":0,
            "eliminations_most_in_life":8,
            "all_damage_done_most_in_life":3756,
            "kill_streak_best":8,
            "all_damage_done_most_in_game":3756,
            "eliminations_most_in_game":8,
            "final_blows_most_in_game":3,
            "objective_kill_most_in_game":1,
            "objective_time_most_in_game":205000,
            "solo_kill_most_in_game":1,
            "time_spent_on_fire_most_in_game":33,
            "hero_damage_done_most_in_game":3056,
            "hero_damage_done_most_in_life":3056,
            "barrier_damage_done_most_in_game":650,
            "barrier_damage_done_avg_per_10_min":1,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":5,
            "eliminations_per_life":0.84,
            "all_damage_done_avg_per_10_min":5.82,
            "medals_bronze":0,
            "medals_silver":1,
            "medals_gold":0,
            "medals":1,
            "card":1,
            "time_played":1020000,
            "games_played":2,
            "games_won":0,
            "games_lost":1,
            "win_percentage":19
         },
         "pharah":{
            "rocket_direct_hits":33,
            "barrage_kill":1,
            "rocket_direct_hits_most_in_game":17,
            "barrage_kill_most_in_game":1,
            "rocket_direct_hits_avg_per_10_min":0,
            "barrage_kills_avg_per_10_min":0,
            "eliminations":3,
            "deaths":5,
            "final_blow":1,
            "all_damage_done":8390,
            "objective_kill":1,
            "hero_damage_done":4869,
            "barrier_damage_done":3471,
            "weapon_accuracy":51,
            "elimination_most_in_life":1,
            "all_damage_done_most_in_life":2681,
            "weapon_accuracy_best_in_game":57,
            "kill_streak_best":1,
            "all_damage_done_most_in_game":4528,
            "eliminations_most_in_game":2,
            "final_blow_most_in_game":1,
            "objective_kill_most_in_game":1,
            "hero_damage_done_most_in_game":2744,
            "hero_damage_done_most_in_life":1573,
            "barrier_damage_done_most_in_game":2403,
            "barrier_damage_done_avg_per_10_min":10,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":13,
            "eliminations_per_life":0.6,
            "all_damage_done_avg_per_10_min":23.11,
            "medals_silver":0,
            "medals_gold":1,
            "medals":1,
            "time_played":360000,
            "games_played":1,
            "games_won":0,
            "games_lost":0,
            "win_percentage":24
         },
         "winston":{
            "players_knocked_back":400,
            "damage_blocked":73539,
            "damage_blocked_most_in_game":9276,
            "players_knocked_back_most_in_game":67,
            "melee_kills":19,
            "melee_kills_most_in_game":5,
            "jump_pack_kills":25,
            "jump_pack_kills_most_in_game":4,
            "primal_rage_kills":19,
            "primal_rage_kills_most_in_game":6,
            "primal_rage_melee_accuracy":1,
            "tesla_cannon_accuracy":1,
            "primal_rage_kills__avg_per_10_min":0,
            "players_knocked_back_avg_per_10_min":0,
            "melee_kills_avg_per_10_min":0,
            "jump_pack_kills_avg_per_10_min":0,
            "damage_blocked_avg_per_10_min":11,
            "eliminations":164,
            "deaths":85,
            "final_blows":53,
            "solo_kills":3,
            "all_damage_done":65123,
            "objective_kills":79,
            "objective_time":869000,
            "time_spent_on_fire":75000,
            "hero_damage_done":51035,
            "barrier_damage_done":12514,
            "turrets_destroyed":15,
            "eliminations_most_in_life":12,
            "all_damage_done_most_in_life":3762,
            "kill_streak_best":12,
            "all_damage_done_most_in_game":10345,
            "eliminations_most_in_game":24,
            "final_blows_most_in_game":10,
            "objective_kills_most_in_game":16,
            "objective_time_most_in_game":126000,
            "solo_kill_most_in_game":1,
            "time_spent_on_fire_most_in_game":38,
            "hero_damage_done_most_in_game":7910,
            "hero_damage_done_most_in_life":2729,
            "barrier_damage_done_most_in_game":2285,
            "barrier_damage_done_avg_per_10_min":2,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":8,
            "eliminations_per_life":1.92,
            "all_damage_done_avg_per_10_min":10.04,
            "medals_bronze":6,
            "medals_silver":8,
            "medals_gold":9,
            "medals":23,
            "time_played":3600000,
            "games_played":11,
            "games_won":3,
            "games_lost":8,
            "win_percentage":25,
            "jump_kills":25,
            "weapon_kills":152
         },
         "widowmaker":{
            "scoped_accuracy_best_in_game":55,
            "scoped_accuracy":55,
            "elimination":1,
            "death":1,
            "final_blow":1,
            "all_damage_done":1245,
            "hero_damage_done":558,
            "barrier_damage_done":687,
            "weapon_accuracy":35,
            "elimination_most_in_life":1,
            "all_damage_done_most_in_life":1245,
            "weapon_accuracy_best_in_game":20,
            "kill_streak_best":1,
            "all_damage_done_most_in_game":1245,
            "elimination_most_in_game":1,
            "final_blow_most_in_game":1,
            "hero_damage_done_most_in_game":558,
            "hero_damage_done_most_in_life":558,
            "barrier_damage_done_most_in_game":687,
            "barrier_damage_done_avg_per_10_min":9,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":7,
            "elimination_per_life":1,
            "all_damage_done_avg_per_10_min":16.54,
            "medals_bronze":0,
            "medals":0,
            "time_played":60000,
            "games_played":0,
            "games_lost":0
         },
         "genji":{
            "damage_reflected":191,
            "damage_reflected_most_in_game":98,
            "damage_reflected_avg_per_10_min":0,
            "eliminations":8,
            "deaths":8,
            "final_blow":1,
            "all_damage_done":4822,
            "objective_kills":3,
            "objective_time":5000,
            "critical_hits":3,
            "hero_damage_done":3650,
            "barrier_damage_done":1172,
            "critical_hit_accuracy":2,
            "weapon_accuracy":25,
            "eliminations_most_in_life":6,
            "all_damage_done_most_in_life":1545,
            "weapon_accuracy_best_in_game":30,
            "kill_streak_best":6,
            "all_damage_done_most_in_game":2748,
            "eliminations_most_in_game":6,
            "final_blow_most_in_game":1,
            "objective_kills_most_in_game":3,
            "objective_time_most_in_game":4000,
            "critical_hits_most_in_game":2,
            "critical_hit_most_in_life":1,
            "hero_damage_done_most_in_game":1886,
            "hero_damage_done_most_in_life":1114,
            "barrier_damage_done_most_in_game":862,
            "barrier_damage_done_avg_per_10_min":2,
            "critical_hits_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":8,
            "elimination_per_life":1,
            "all_damage_done_avg_per_10_min":10.14,
            "medals_bronze":3,
            "medals":3,
            "time_played":420000,
            "games_played":1,
            "games_lost":1
         },
         "mccree":{
            "eliminations":6,
            "deaths":9,
            "final_blows":4,
            "solo_kill":1,
            "all_damage_done":4472,
            "objective_kills":2,
            "objective_time":21000,
            "critical_hits":4,
            "hero_damage_done":2941,
            "barrier_damage_done":1531,
            "critical_hit_accuracy":7,
            "weapon_accuracy":34,
            "eliminations_most_in_life":2,
            "all_damage_done_most_in_life":932,
            "weapon_accuracy_best_in_game":37,
            "kill_streak_best":2,
            "all_damage_done_most_in_game":2094,
            "eliminations_most_in_game":4,
            "final_blows_most_in_game":3,
            "objective_kill_most_in_game":1,
            "objective_time_most_in_game":20000,
            "solo_kill_most_in_game":1,
            "critical_hits_most_in_game":3,
            "critical_hits_most_in_life":2,
            "hero_damage_done_most_in_game":2025,
            "hero_damage_done_most_in_life":863,
            "barrier_damage_done_most_in_game":619,
            "barrier_damage_done_avg_per_10_min":3,
            "critical_hits_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":6,
            "eliminations_per_life":0.66,
            "all_damage_done_avg_per_10_min":8.4,
            "medals_bronze":0,
            "medals_gold":0,
            "medals":0,
            "time_played":480000,
            "games_played":1,
            "games_lost":1
         },
         "junkrat":{
            "enemies_trapped_most_in_game":16,
            "enemies_trapped":104,
            "rip-tire_kills_most_in_game":11,
            "rip-tire_kills":110,
            "concussion_mine_kills":94,
            "concussion_mine_kills_most_in_game":10,
            "concussion_mine_kills_avg_per_10_min":0,
            "rip-tire_kills_avg_per_10_min":0,
            "enemies_trapped_avg_per_10_min":0,
            "eliminations":513,
            "deaths":288,
            "final_blows":304,
            "solo_kills":89,
            "all_damage_done":441334,
            "objective_kills":157,
            "objective_time":938000,
            "multikills":6,
            "environmental_kill":1,
            "time_spent_on_fire":808000,
            "hero_damage_done":268075,
            "barrier_damage_done":167696,
            "weapon_accuracy":23,
            "teleporter_pad_destroyed":1,
            "turrets_destroyed":6,
            "offensive_assists":23,
            "offensive_assists_most_in_game":3,
            "offensive_assists_avg_per_10_min":0,
            "eliminations_most_in_life":14,
            "all_damage_done_most_in_life":7774,
            "weapon_accuracy_best_in_game":33,
            "kill_streak_best":14,
            "all_damage_done_most_in_game":31970,
            "eliminations_most_in_game":32,
            "final_blows_most_in_game":22,
            "objective_kills_most_in_game":12,
            "objective_time_most_in_game":69000,
            "multikill_best":3,
            "solo_kills_most_in_game":12,
            "time_spent_on_fire_most_in_game":170,
            "hero_damage_done_most_in_game":20209,
            "hero_damage_done_most_in_life":5465,
            "barrier_damage_done_most_in_game":15226,
            "barrier_damage_done_avg_per_10_min":8,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":12,
            "eliminations_per_life":1.78,
            "all_damage_done_avg_per_10_min":20.38,
            "medals_bronze":15,
            "medals_silver":16,
            "medals_gold":20,
            "medals":51,
            "cards":5,
            "time_played":21600000,
            "games_played":32,
            "games_won":17,
            "games_tied":2,
            "games_lost":13,
            "win_percentage":56
         },
         "soldier:_76":{
            "helix_rockets_kills_most_in_game":3,
            "helix_rockets_kills":9,
            "tactical_visor_kills":6,
            "tactical_visor_kills_most_in_game":4,
            "biotic_fields_deployed":26,
            "biotic_field_healing_done":1920,
            "self_healing":1841,
            "self_healing_most_in_game":583,
            "tactical_visor_kills_avg_per_10_min":0,
            "helix_rockets_kills_avg_per_10_min":0,
            "self_healing_avg_per_10_min":1,
            "eliminations":29,
            "deaths":24,
            "final_blows":15,
            "solo_kills":4,
            "all_damage_done":24408,
            "objective_kills":7,
            "objective_time":47000,
            "time_spent_on_fire":18000,
            "critical_hits":66,
            "hero_damage_done":15403,
            "barrier_damage_done":8985,
            "critical_hit_accuracy":9,
            "weapon_accuracy":23,
            "defensive_assists":3,
            "defensive_assist_most_in_game":1,
            "healing_done":1920,
            "healing_done_most_in_game":592,
            "healing_done_avg_per_10_min":1,
            "defensive_assists_avg_per_10_min":0,
            "eliminations_most_in_life":11,
            "all_damage_done_most_in_life":3550,
            "weapon_accuracy_best_in_game":40,
            "kill_streak_best":11,
            "all_damage_done_most_in_game":7792,
            "eliminations_most_in_game":11,
            "final_blows_most_in_game":7,
            "objective_kills_most_in_game":4,
            "objective_time_most_in_game":20000,
            "solo_kills_most_in_game":2,
            "critical_hits_most_in_game":18,
            "critical_hits_most_in_life":13,
            "time_spent_on_fire_most_in_game":19,
            "hero_damage_done_most_in_game":4463,
            "hero_damage_done_most_in_life":3445,
            "barrier_damage_done_most_in_game":3328,
            "barrier_damage_done_avg_per_10_min":6,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":11,
            "eliminations_per_life":1.2,
            "all_damage_done_avg_per_10_min":16.7,
            "medals_bronze":1,
            "medals_silver":1,
            "medals_gold":0,
            "medals":2,
            "time_played":1440000,
            "games_played":3,
            "games_won":1,
            "games_lost":2,
            "win_percentage":31
         },
         "lúcio":{
            "sound_barriers_provided":45,
            "sound_barriers_provided_most_in_game":14,
            "self_healing":6863,
            "self_healing_most_in_game":2373,
            "self_healing_avg_per_10_min":4,
            "sound_barriers_provided_avg_per_10_min":0,
            "eliminations":27,
            "deaths":26,
            "final_blows":2,
            "all_damage_done":16773,
            "objective_kills":17,
            "objective_time":167000,
            "environmental_kill":1,
            "time_spent_on_fire":113000,
            "critical_hits":41,
            "hero_damage_done":11340,
            "barrier_damage_done":5415,
            "critical_hit_accuracy":7,
            "weapon_accuracy":24,
            "turrets_destroyed":2,
            "offensive_assist":1,
            "offensive_assist_most_in_game":1,
            "defensive_assists":28,
            "defensive_assists_most_in_game":12,
            "healing_done":28257,
            "healing_done_most_in_game":8485,
            "offensive_assists_avg_per_10_min":0,
            "healing_done_avg_per_10_min":15,
            "defensive_assists_avg_per_10_min":0,
            "eliminations_most_in_life":7,
            "all_damage_done_most_in_life":2450,
            "weapon_accuracy_best_in_game":26,
            "kill_streak_best":7,
            "all_damage_done_most_in_game":5397,
            "eliminations_most_in_game":13,
            "final_blows_most_in_game":2,
            "objective_kills_most_in_game":8,
            "objective_time_most_in_game":86000,
            "critical_hits_most_in_game":15,
            "critical_hits_most_in_life":5,
            "time_spent_on_fire_most_in_game":113,
            "hero_damage_done_most_in_game":4427,
            "hero_damage_done_most_in_life":1925,
            "barrier_damage_done_most_in_game":1600,
            "barrier_damage_done_avg_per_10_min":3,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":6,
            "eliminations_per_life":1.03,
            "all_damage_done_avg_per_10_min":8.78,
            "medals_bronze":1,
            "medals_silver":2,
            "medals_gold":1,
            "medals":4,
            "time_played":1860000,
            "games_played":3,
            "games_tied":1,
            "games_lost":2
         },
         "mei":{
            "enemies_frozen":3,
            "enemies_frozen_most_in_game":3,
            "enemies_frozen_avg_per_10_min":0,
            "eliminations":2,
            "death":1,
            "all_damage_done":461,
            "objective_kills":2,
            "objective_time":9000,
            "hero_damage_done":398,
            "barrier_damage_done":63,
            "offensive_assist":1,
            "offensive_assist_most_in_game":1,
            "offensive_assists_avg_per_10_min":0,
            "eliminations_most_in_life":2,
            "all_damage_done_most_in_life":457,
            "kill_streak_best":2,
            "all_damage_done_most_in_game":461,
            "eliminations_most_in_game":2,
            "objective_kills_most_in_game":2,
            "objective_time_most_in_game":9000,
            "hero_damage_done_most_in_game":398,
            "hero_damage_done_most_in_life":398,
            "barrier_damage_done_most_in_game":63,
            "barrier_damage_done_avg_per_10_min":1,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":4,
            "eliminations_per_life":2,
            "all_damage_done_avg_per_10_min":4.57,
            "medals_bronze":0,
            "medals_gold":0,
            "medals":0,
            "time_played":60000,
            "games_played":0,
            "games_lost":0
         },
         "doomfist":{
            "ability_damage_done":313.89,
            "ability_damage_done_most_in_game":175,
            "shields_created":120,
            "shields_created_most_in_game":60,
            "shields_created_avg_per_10_min":0,
            "ability_damage_done_avg_per_10_min":1,
            "elimination":1,
            "deaths":6,
            "all_damage_done":1683,
            "objective_time":0,
            "hero_damage_done":697,
            "barrier_damage_done":986,
            "weapon_accuracy":13,
            "elimination_most_in_life":1,
            "all_damage_done_most_in_life":520,
            "weapon_accuracy_best_in_game":11,
            "kill_streak_best":1,
            "all_damage_done_most_in_game":1523,
            "elimination_most_in_game":1,
            "objective_time_most_in_game":0,
            "hero_damage_done_most_in_game":537,
            "hero_damage_done_most_in_life":226,
            "barrier_damage_done_most_in_game":986,
            "barrier_damage_done_avg_per_10_min":4,
            "objective_time_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":3,
            "eliminations_per_life":0.16,
            "all_damage_done_avg_per_10_min":6.28,
            "medals_gold":0,
            "medals":0,
            "time_played":240000,
            "games_played":1,
            "games_lost":1
         },
         "ana":{
            "scoped_accuracy_best_in_game":50,
            "self_healing":281,
            "self_healing_most_in_game":281,
            "enemy_slept":1,
            "nano_boosts_applied":2,
            "unscoped_accuracy_best_in_game":0,
            "enemy_slept_most_in_game":1,
            "nano_boosts_applied_most_in_game":2,
            "self_healing_avg_per_10_min":1,
            "nano_boosts_applied_avg_per_10_min":0,
            "enemies_slept_avg_per_10_min":0,
            "unscoped_accuracy":0,
            "scoped_accuracy":50,
            "deaths":3,
            "all_damage_done":1577,
            "objective_time":15000,
            "hero_damage_done":1028,
            "barrier_damage_done":400,
            "weapon_accuracy":27,
            "defensive_assists":2,
            "defensive_assists_most_in_game":2,
            "healing_done":2504,
            "healing_done_most_in_game":2504,
            "healing_done_avg_per_10_min":9,
            "defensive_assists_avg_per_10_min":0,
            "all_damage_done_most_in_life":679,
            "weapon_accuracy_best_in_game":16,
            "all_damage_done_most_in_game":1577,
            "objective_time_most_in_game":15000,
            "hero_damage_done_most_in_game":1028,
            "hero_damage_done_most_in_life":539,
            "barrier_damage_done_most_in_game":400,
            "barrier_damage_done_avg_per_10_min":1,
            "objective_time_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":4,
            "all_damage_done_avg_per_10_min":5.54,
            "medals_silver":0,
            "medals":0,
            "time_played":240000,
            "games_played":0,
            "games_lost":0
         },
         "brigitte":{
            "death":1,
            "all_damage_done":70,
            "hero_damage_done":70,
            "defensive_assist":1,
            "healing_done":244,
            "healing_done_avg_per_10_min":6,
            "defensive_assists_avg_per_10_min":0,
            "all_damage_done_most_in_life":70,
            "all_damage_done_most_in_game":70,
            "hero_damage_done_most_in_game":70,
            "hero_damage_done_most_in_life":70,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":2,
            "all_damage_done_avg_per_10_min":1.7,
            "time_played":41.0617693066597,
            "games_played":0,
            "games_lost":0,
            "damage_blocked":25,
            "damage_blocked_most_in_game":25,
            "damage_blocked_avg_per_10_min":1
         }
      }
   },
   "quickplay":{
      "global":{
         "all_damage_done_avg_per_10_min":11,
         "masteringHeroe":"reaper",
         "environmental_kills":8,
         "time_spent_on_fire":12508000,
         "solo_kills":846,
         "multikills":27,
         "barrier_damage_done":9313,
         "deaths":1815,
         "hero_damage_done":25689,
         "objective_time":6997000,
         "objective_kills":1264,
         "final_blows":2148,
         "eliminations":3702,
         "all_damage_done":1532434,
         "defensive_assists":72,
         "healing_done":187013,
         "recon_assists":17,
         "offensive_assists":13,
         "eliminations_most_in_game":36,
         "final_blows_most_in_game":24,
         "all_damage_done_most_in_game":27803,
         "healing_done_most_in_game":13510,
         "defensive_assists_most_in_game":13,
         "offensive_assists_most_in_game":5,
         "objective_kills_most_in_game":20,
         "objective_time_most_in_game":150000,
         "multikill_best":4,
         "solo_kills_most_in_game":24,
         "time_spent_on_fire_most_in_game":455000,
         "turrets_destroyed_most_in_game":2,
         "kill_streak_best":17,
         "hero_damage_done_most_in_game":5329,
         "barrier_damage_done_most_in_game":5226,
         "recon_assists_most_in_game":11,
         "barrier_damage_done_avg_per_10_min":0,
         "deaths_avg_per_10_min":0,
         "hero_damage_done_avg_per_10_min":8,
         "time_spent_on_fire_avg_per_10_min":0,
         "solo_kills_avg_per_10_min":0,
         "objective_time_avg_per_10_min":0,
         "objective_kills_avg_per_10_min":0,
         "healing_done_avg_per_10_min":1,
         "final_blows_avg_per_10_min":0,
         "eliminations_avg_per_10_min":0,
         "cards":94,
         "medals_silver":281,
         "medals_bronze":275,
         "medals":834,
         "medals_gold":278,
         "time_played":136800000,
         "games_won":149,
         "turrets_destroyed":153,
         "damage_done":25689
      },
      "heroes":{
         "quickplay":{

         },
         "reaper":{
            "death_blossom_kills":125,
            "death_blossom_kills_most_in_game":7,
            "self_healing":25950,
            "self_healing_most_in_game":1005,
            "death_blossom_kills_avg_per_10_min":0,
            "self_healing_avg_per_10_min":1,
            "eliminations":840,
            "deaths":403,
            "final_blows":533,
            "solo_kills":246,
            "all_damage_done":273816,
            "objective_kills":263,
            "objective_time":1517000,
            "multikills":8,
            "time_spent_on_fire":3323000,
            "critical_hits":4061,
            "hero_damage_done":2286,
            "critical_hit_accuracy":10,
            "weapon_accuracy":21,
            "turrets_destroyed":24,
            "eliminations_most_in_life":22,
            "all_damage_done_most_in_life":7885,
            "weapon_accuracy_best_in_game":54,
            "kill_streak_best":22,
            "all_damage_done_most_in_game":11863,
            "eliminations_most_in_game":29,
            "final_blows_most_in_game":19,
            "objective_kills_most_in_game":20,
            "objective_time_most_in_game":85000,
            "multikill_best":4,
            "solo_kills_most_in_game":10,
            "critical_hits_most_in_game":143,
            "critical_hits_most_in_life":74,
            "hero_damage_done_most_in_game":2286,
            "hero_damage_done_most_in_life":1826,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":10,
            "eliminations_per_life":2.08,
            "all_damage_done_avg_per_10_min":9.63,
            "medals_bronze":69,
            "medals_silver":71,
            "medals_gold":54,
            "medals":193,
            "cards":15,
            "time_played":25200000,
            "games_won":25
         },
         "tracer":{
            "self_healing":23,
            "self_healing_most_in_game":23,
            "self_healing_avg_per_10_min":0,
            "deaths":2,
            "all_damage_done":200,
            "critical_hits":3,
            "critical_hit_accuracy":7,
            "weapon_accuracy":26,
            "all_damage_done_most_in_life":200,
            "all_damage_done_most_in_game":200,
            "critical_hits_most_in_game":3,
            "critical_hits_most_in_life":3,
            "critical_hits_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "all_damage_done_avg_per_10_min":2.8,
            "medals_bronze":0,
            "medals_silver":0,
            "medals":1,
            "time_played":60000,
            "games_won":0
         },
         "mercy":{
            "players_resurrected":4,
            "players_resurrected_most_in_game":2,
            "self_healing":2026,
            "self_healing_most_in_game":1089,
            "self_healing_avg_per_10_min":1,
            "players_resurrected_avg_per_10_min":0,
            "deaths":21,
            "all_damage_done":210,
            "objective_time":65000,
            "time_spent_on_fire":42000,
            "critical_hits":2,
            "critical_hit_accuracy":18,
            "weapon_accuracy":16,
            "offensive_assists":8,
            "offensive_assists_most_in_game":5,
            "defensive_assists":23,
            "defensive_assists_most_in_game":13,
            "healing_done":12118,
            "healing_done_most_in_game":135,
            "offensive_assists_avg_per_10_min":0,
            "healing_done_avg_per_10_min":8,
            "defensive_assists_avg_per_10_min":0,
            "all_damage_done_most_in_life":190,
            "weapon_accuracy_best_in_game":2,
            "all_damage_done_most_in_game":190,
            "objective_time_most_in_game":30000,
            "critical_hits_most_in_game":2,
            "critical_hits_most_in_life":2,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "all_damage_done_avg_per_10_min":0.13,
            "medals_bronze":0,
            "medals_silver":1,
            "medals_gold":2,
            "medals":4,
            "card":1,
            "time_played":1560000,
            "games_won":0
         },
         "hanzo":{
            "dragonstrike_kills":22,
            "dragonstrike_kills_most_in_game":3,
            "scatter_arrow_kills":30,
            "scatter_arrow_kills_most_in_game":4,
            "scatter_arrow_kills_avg_per_10_min":0,
            "dragonstrike_kills_avg_per_10_min":0,
            "eliminations":193,
            "deaths":110,
            "final_blows":121,
            "solo_kills":36,
            "all_damage_done":83223,
            "objective_kills":74,
            "objective_time":311000,
            "multikill":1,
            "time_spent_on_fire":372000,
            "critical_hits":52,
            "critical_hit_accuracy":6,
            "weapon_accuracy":18,
            "recon_assists_most_in_game":6,
            "turrets_destroyed":14,
            "eliminations_most_in_life":12,
            "all_damage_done_most_in_life":3184,
            "weapon_accuracy_best_in_game":46,
            "kill_streak_best":12,
            "all_damage_done_most_in_game":5718,
            "eliminations_most_in_game":18,
            "final_blows_most_in_game":10,
            "objective_kills_most_in_game":15,
            "objective_time_most_in_game":43000,
            "multikill_best":3,
            "solo_kills_most_in_game":6,
            "critical_hits_most_in_game":5,
            "critical_hits_most_in_life":4,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "eliminations_per_life":1.75,
            "all_damage_done_avg_per_10_min":8.97,
            "medals_bronze":17,
            "medals_silver":17,
            "medals_gold":9,
            "medals":44,
            "card":1,
            "time_played":7200000,
            "games_won":7
         },
         "torbjörn":{
            "armor_packs_created":189,
            "torbjörn_kills":124,
            "turret_kills":323,
            "torbjörn_kills_most_in_game":10,
            "armor_packs_created_most_in_game":13,
            "turret_kills_most_in_game":5,
            "molten_core_kills":62,
            "molten_core_kills_most_in_game":8,
            "turret_kills_avg_per_10_min":0,
            "torbjörn_kills_avg_per_10_min":0,
            "molten_core_kills_avg_per_10_min":0,
            "armor_packs_created_avg_per_10_min":0,
            "eliminations":371,
            "deaths":151,
            "final_blows":172,
            "solo_kills":65,
            "all_damage_done":153789,
            "objective_kills":124,
            "objective_time":240000,
            "multikills":3,
            "time_spent_on_fire":725000,
            "critical_hits":129,
            "hero_damage_done":3043,
            "critical_hit_accuracy":6,
            "weapon_accuracy":24,
            "turrets_destroyed":9,
            "eliminations_most_in_life":21,
            "all_damage_done_most_in_life":5338,
            "weapon_accuracy_best_in_game":43,
            "kill_streak_best":21,
            "all_damage_done_most_in_game":14023,
            "eliminations_most_in_game":36,
            "final_blows_most_in_game":18,
            "objective_kills_most_in_game":17,
            "objective_time_most_in_game":51000,
            "multikill_best":3,
            "solo_kills_most_in_game":9,
            "critical_hits_most_in_game":19,
            "critical_hits_most_in_life":9,
            "hero_damage_done_most_in_game":3043,
            "hero_damage_done_most_in_life":2243,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":7,
            "eliminations_per_life":2.45,
            "all_damage_done_avg_per_10_min":11.78,
            "medals_bronze":23,
            "medals_silver":22,
            "medals_gold":34,
            "medals":79,
            "cards":16,
            "time_played":10800000,
            "games_won":15
         },
         "reinhardt":{
            "damage_blocked":80851,
            "damage_blocked_most_in_game":12812,
            "charge_kills":13,
            "charge_kills_most_in_game":2,
            "fire_strike_kills":6,
            "fire_strike_kills_most_in_game":3,
            "earthshatter_kills":2,
            "earthshatter_kills_most_in_game":2,
            "rocket_hammer_melee_accuracy":1,
            "fire_strike_kills_avg_per_10_min":0,
            "earthshatter_kills_avg_per_10_min":0,
            "damage_blocked_avg_per_10_min":25,
            "charge_kills_avg_per_10_min":0,
            "eliminations":27,
            "deaths":50,
            "final_blows":19,
            "solo_kills":7,
            "all_damage_done":12427,
            "objective_kills":8,
            "objective_time":262000,
            "time_spent_on_fire":70000,
            "hero_damage_done":3428,
            "barrier_damage_done":475,
            "eliminations_most_in_life":2,
            "all_damage_done_most_in_life":1286,
            "kill_streak_best":2,
            "all_damage_done_most_in_game":3903,
            "eliminations_most_in_game":5,
            "final_blows_most_in_game":4,
            "objective_kills_most_in_game":3,
            "objective_time_most_in_game":74000,
            "solo_kills_most_in_game":2,
            "hero_damage_done_most_in_game":3428,
            "hero_damage_done_most_in_life":1211,
            "barrier_damage_done_most_in_game":475,
            "barrier_damage_done_avg_per_10_min":1,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":6,
            "eliminations_per_life":0.54,
            "all_damage_done_avg_per_10_min":3.77,
            "medals_bronze":3,
            "medals_silver":2,
            "medals_gold":4,
            "medals":9,
            "cards":3,
            "time_played":3240000,
            "games_won":3
         },
         "pharah":{
            "rocket_direct_hits":626,
            "barrage_kills":32,
            "rocket_direct_hits_most_in_game":48,
            "barrage_kills_most_in_game":3,
            "rocket_direct_hits_avg_per_10_min":0,
            "barrage_kills_avg_per_10_min":0,
            "eliminations":206,
            "deaths":107,
            "final_blows":118,
            "solo_kills":44,
            "all_damage_done":113807,
            "objective_kills":67,
            "objective_time":322000,
            "multikill":1,
            "environmental_kill":1,
            "time_spent_on_fire":223000,
            "hero_damage_done":2364,
            "barrier_damage_done":4001,
            "weapon_accuracy":38,
            "turrets_destroyed":24,
            "eliminations_most_in_life":16,
            "all_damage_done_most_in_life":9767,
            "weapon_accuracy_best_in_game":68,
            "kill_streak_best":16,
            "all_damage_done_most_in_game":9767,
            "eliminations_most_in_game":19,
            "final_blows_most_in_game":12,
            "objective_kills_most_in_game":10,
            "objective_time_most_in_game":72000,
            "multikill_best":3,
            "solo_kills_most_in_game":5,
            "hero_damage_done_most_in_game":1422,
            "hero_damage_done_most_in_life":1141,
            "barrier_damage_done_most_in_game":3761,
            "barrier_damage_done_avg_per_10_min":14,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":8,
            "eliminations_per_life":1.92,
            "all_damage_done_avg_per_10_min":14.08,
            "medals_bronze":18,
            "medals_silver":14,
            "medals_gold":11,
            "medals":42,
            "cards":6,
            "time_played":7200000,
            "games_won":8
         },
         "winston":{
            "players_knocked_back":87,
            "damage_blocked":15708,
            "damage_blocked_most_in_game":5686,
            "players_knocked_back_most_in_game":60,
            "melee_kills":7,
            "melee_kills_most_in_game":7,
            "jump_pack_kills":9,
            "jump_pack_kills_most_in_game":7,
            "primal_rage_kills":4,
            "primal_rage_kills_most_in_game":3,
            "primal_rage_melee_accuracy":1,
            "tesla_cannon_accuracy":0,
            "primal_rage_kills__avg_per_10_min":0,
            "players_knocked_back_avg_per_10_min":0,
            "melee_kills_avg_per_10_min":0,
            "jump_pack_kills_avg_per_10_min":0,
            "damage_blocked_avg_per_10_min":14,
            "eliminations":23,
            "deaths":19,
            "final_blows":8,
            "solo_kills":2,
            "all_damage_done":10230,
            "objective_kills":14,
            "objective_time":95000,
            "environmental_kills":2,
            "time_spent_on_fire":44000,
            "hero_damage_done":4297,
            "barrier_damage_done":610,
            "turrets_destroyed":8,
            "eliminations_most_in_life":8,
            "all_damage_done_most_in_life":1559,
            "kill_streak_best":8,
            "all_damage_done_most_in_game":5036,
            "eliminations_most_in_game":17,
            "final_blows_most_in_game":5,
            "objective_kills_most_in_game":12,
            "objective_time_most_in_game":71000,
            "solo_kills_most_in_game":2,
            "time_spent_on_fire_most_in_game":45,
            "hero_damage_done_most_in_game":4297,
            "hero_damage_done_most_in_life":1323,
            "barrier_damage_done_most_in_game":610,
            "barrier_damage_done_avg_per_10_min":1,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":9,
            "eliminations_per_life":1.21,
            "all_damage_done_avg_per_10_min":8.82,
            "medals_bronze":3,
            "medals_silver":3,
            "medals_gold":2,
            "medals":8,
            "time_played":1140000,
            "games_won":1,
            "jump_kills":7,
            "weapon_kills":14
         },
         "widowmaker":{
            "venom_mine_kills":8,
            "scoped_critical_hits":94,
            "scoped_critical_hits_most_in_game":7,
            "venom_mine_kills_most_in_game":3,
            "scoped_accuracy_best_in_game":100,
            "venom_mine_kills_avg_per_10_min":0,
            "scoped_critical_hits_avg_per_10_min":0,
            "scoped_accuracy":52,
            "eliminations":222,
            "deaths":100,
            "final_blows":147,
            "solo_kills":80,
            "all_damage_done":83009,
            "objective_kills":54,
            "objective_time":131000,
            "time_spent_on_fire":453000,
            "critical_hits":204,
            "hero_damage_done":2103,
            "critical_hit_accuracy":13,
            "weapon_accuracy":34,
            "recon_assists":6,
            "recon_assists_most_in_game":11,
            "turrets_destroyed":13,
            "recon_assists_avg_per_10_min":0,
            "eliminations_most_in_life":9,
            "all_damage_done_most_in_life":3145,
            "weapon_accuracy_best_in_game":100,
            "kill_streak_best":9,
            "all_damage_done_most_in_game":6784,
            "eliminations_most_in_game":21,
            "final_blows_most_in_game":16,
            "objective_kills_most_in_game":8,
            "objective_time_most_in_game":36000,
            "solo_kills_most_in_game":11,
            "critical_hits_most_in_game":20,
            "critical_hits_most_in_life":14,
            "hero_damage_done_most_in_game":2103,
            "hero_damage_done_most_in_life":916,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "hero_damage_done_avg_per_10_min":6,
            "eliminations_per_life":2.22,
            "all_damage_done_avg_per_10_min":8.88,
            "medals_bronze":18,
            "medals_silver":12,
            "medals_gold":10,
            "medals":39,
            "cards":3,
            "time_played":7200000,
            "games_won":11
         },
         "bastion":{
            "recon_kills":94,
            "sentry_kills":349,
            "tank_kills":74,
            "sentry_kills_most_in_game":23,
            "recon_kills_most_in_game":7,
            "tank_kills_most_in_game":9,
            "self_healing":19140,
            "self_healing_most_in_game":1199,
            "self_healing_avg_per_10_min":1,
            "tank_kills_avg_per_10_min":0,
            "sentry_kills_avg_per_10_min":0,
            "recon_kills_avg_per_10_min":0,
            "eliminations":517,
            "deaths":214,
            "final_blows":334,
            "solo_kills":130,
            "all_damage_done":253381,
            "objective_kills":185,
            "objective_time":390000,
            "multikills":6,
            "time_spent_on_fire":1489000,
            "critical_hits":1268,
            "critical_hit_accuracy":7,
            "weapon_accuracy":22,
            "turrets_destroyed":7,
            "eliminations_most_in_life":12,
            "all_damage_done_most_in_life":11811,
            "weapon_accuracy_best_in_game":46,
            "kill_streak_best":12,
            "all_damage_done_most_in_game":13132,
            "eliminations_most_in_game":29,
            "final_blows_most_in_game":20,
            "objective_kills_most_in_game":19,
            "objective_time_most_in_game":87000,
            "multikill_best":4,
            "solo_kills_most_in_game":10,
            "critical_hits_most_in_game":106,
            "critical_hits_most_in_life":51,
            "critical_hits_avg_per_10_min":0,
            "time_spent_on_fire_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "eliminations_per_life":2.41,
            "all_damage_done_avg_per_10_min":15.96,
            "medals_bronze":31,
            "medals_silver":35,
            "medals_gold":46,
            "medals":113,
            "cards":12,
            "time_played":14400000,
            "games_won":18
         },
         "symmetra":{
            "sentry_turret_kills":4,
            "sentry_turret_kills_most_in_game":3,
            "teleporter_uptime":1,
            "teleporter_uptime_best_in_game":0,
            "damage_blocked":60,
            "damage_blocked_most_in_game":60,
            "sentry_turret_kills_avg_per_10_min":0,
            "damage_blocked_avg_per_10_min":0,
            "teleporter_uptime_average":0,
            "eliminations":6,
            "deaths":5,
            "final_blows":5,
            "solo_kills":2,
            "all_damage_done":2383,
            "objective_kill":1,
            "objective_time":17000,
            "eliminations_most_in_life":4,
            "all_damage_done_most_in_life":1230,
            "kill_streak_best":4,
            "all_damage_done_most_in_game":1484,
            "eliminations_most_in_game":5,
            "final_blows_most_in_game":5,
            "objective_kill_most_in_game":1,
            "objective_time_most_in_game":14000,
            "solo_kills_most_in_game":2,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "eliminations_per_life":1.2,
            "all_damage_done_avg_per_10_min":8.01,
            "medals_bronze":1,
            "medals_silver":1,
            "medals":2,
            "time_played":240000
         },
         "genji":{
            "dragonblade_kills":14,
            "dragonblade_kills_most_in_game":3,
            "damage_reflected":2818,
            "damage_reflected_most_in_game":481,
            "dragonblade_kills_avg_per_10_min":0,
            "damage_reflected_avg_per_10_min":1,
            "eliminations":75,
            "deaths":61,
            "final_blows":49,
            "solo_kills":20,
            "all_damage_done":25032,
            "objective_kills":12,
            "objective_time":139000,
            "critical_hits":64,
            "critical_hit_accuracy":9,
            "weapon_accuracy":21,
            "turret_destroyed":1,
            "eliminations_most_in_life":6,
            "all_damage_done_most_in_life":1356,
            "weapon_accuracy_best_in_game":31,
            "kill_streak_best":6,
            "all_damage_done_most_in_game":3930,
            "eliminations_most_in_game":15,
            "final_blows_most_in_game":10,
            "objective_kills_most_in_game":4,
            "objective_time_most_in_game":33000,
            "solo_kills_most_in_game":5,
            "critical_hits_most_in_game":13,
            "critical_hits_most_in_life":6,
            "critical_hits_avg_per_10_min":0,
            "solo_kills_avg_per_10_min":0,
            "objective_time_avg_per_10_min":0,
            "objective_kills_avg_per_10_min":0,
            "final_blows_avg_per_10_min":0,
            "eliminations_avg_per_10_min":0,
            "deaths_avg_per_10_min":0,
            "eliminations_per_life":1.22,
            "all_damage_done_avg_per_10_min":6.53,
            "medals_bronze":8,
            "medals_silver":6,
            "medals_gold":0,
            "medals":15,
            "time_played":3600000,
            "games_won":1
         },
         "roadhog":{
            "enemies_hooked_most_in_game":13,
            "enemies_hooked":54,
            "hooks_attempted":117,
            "whole_hog_kills_most_in_game":3,
            "whole_hog_kills":7,
            "hook_accuracy_best_in_game":85,
            "self_healing":14973,
            "self_healing_most_in_game":4458,
            "whole_hog_kills_avg_per_10_min":0,
            "enemies_hooked_avg_per_10_min":0,
            "self_healing_avg_per_10_min":5,
            "hook_accuracy":46,
            "eliminations":68,
            "deaths":33,
            "final_blows":37,
            "solo_kills":11,
            "all_damage_done":28097,
            "objective_kills":33,
            "objective_time":226000,
            "critical_hits":338,
            "critical_h
1.8.0

6 years ago

1.7.0

6 years ago

1.6.5

6 years ago

1.6.4

6 years ago

1.6.2

6 years ago

1.6.1

6 years ago

1.6.0

7 years ago

1.5.4

7 years ago

1.5.3

7 years ago

1.5.2

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago