riot_lol_api 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +5 -0
  4. data/.travis.yml +6 -0
  5. data/README.md +11 -6
  6. data/Rakefile +6 -1
  7. data/curl_import.rb +142 -123
  8. data/lib/core_ext/hash/riot_lol_api.rb +49 -0
  9. data/lib/core_ext/string/riot_lol_api.rb +9 -0
  10. data/lib/riot_lol_api.rb +15 -12
  11. data/lib/riot_lol_api/clients.rb +58 -325
  12. data/lib/riot_lol_api/{model/players.rb → concerns/inits.rb} +2 -3
  13. data/lib/riot_lol_api/helper_classes.rb +2 -5
  14. data/lib/riot_lol_api/models.rb +5 -3
  15. data/lib/riot_lol_api/models/aggregated_stats.rb +7 -0
  16. data/lib/riot_lol_api/models/altimages.rb +7 -0
  17. data/lib/riot_lol_api/models/banned_champions.rb +7 -0
  18. data/lib/riot_lol_api/models/bans.rb +7 -0
  19. data/lib/riot_lol_api/models/blocks.rb +9 -0
  20. data/lib/riot_lol_api/models/champion_masteries.rb +7 -0
  21. data/lib/riot_lol_api/models/champions.rb +16 -0
  22. data/lib/riot_lol_api/models/class_base.rb +7 -0
  23. data/lib/riot_lol_api/models/creepspermindeltas.rb +7 -0
  24. data/lib/riot_lol_api/models/csdiffpermindeltas.rb +7 -0
  25. data/lib/riot_lol_api/models/damagetakendiffpermindeltas.rb +7 -0
  26. data/lib/riot_lol_api/models/damagetakenpermindeltas.rb +7 -0
  27. data/lib/riot_lol_api/models/data.rb +7 -0
  28. data/lib/riot_lol_api/models/effects.rb +7 -0
  29. data/lib/riot_lol_api/models/entries.rb +7 -0
  30. data/lib/riot_lol_api/models/fellow_players.rb +7 -0
  31. data/lib/riot_lol_api/models/game_lists.rb +7 -0
  32. data/lib/riot_lol_api/models/games.rb +12 -0
  33. data/lib/riot_lol_api/models/goldpermindeltas.rb +7 -0
  34. data/lib/riot_lol_api/models/golds.rb +7 -0
  35. data/lib/riot_lol_api/models/images.rb +17 -0
  36. data/lib/riot_lol_api/models/infos.rb +7 -0
  37. data/lib/riot_lol_api/models/items.rb +11 -0
  38. data/lib/riot_lol_api/models/leagues.rb +10 -0
  39. data/lib/riot_lol_api/models/leveltips.rb +7 -0
  40. data/lib/riot_lol_api/{model → models}/maps.rb +4 -7
  41. data/lib/riot_lol_api/models/masteries.rb +14 -0
  42. data/lib/riot_lol_api/models/matches.rb +11 -0
  43. data/lib/riot_lol_api/models/mini_series.rb +7 -0
  44. data/lib/riot_lol_api/models/observers.rb +7 -0
  45. data/lib/riot_lol_api/models/pages.rb +11 -0
  46. data/lib/riot_lol_api/models/participantidentities.rb +7 -0
  47. data/lib/riot_lol_api/models/participants.rb +7 -0
  48. data/lib/riot_lol_api/models/passives.rb +9 -0
  49. data/lib/riot_lol_api/models/player_stat_ranks.rb +9 -0
  50. data/lib/riot_lol_api/models/player_stat_summaries.rb +9 -0
  51. data/lib/riot_lol_api/models/players.rb +7 -0
  52. data/lib/riot_lol_api/models/recommendeds.rb +9 -0
  53. data/lib/riot_lol_api/models/runes.rb +7 -0
  54. data/lib/riot_lol_api/models/skins.rb +7 -0
  55. data/lib/riot_lol_api/models/slots.rb +9 -0
  56. data/lib/riot_lol_api/models/spells.rb +12 -0
  57. data/lib/riot_lol_api/{model → models}/stats.rb +3 -10
  58. data/lib/riot_lol_api/models/summoners.rb +110 -0
  59. data/lib/riot_lol_api/models/teams.rb +11 -0
  60. data/lib/riot_lol_api/models/timelines.rb +9 -0
  61. data/lib/riot_lol_api/models/vars.rb +7 -0
  62. data/lib/riot_lol_api/models/xpdiffpermindeltas.rb +7 -0
  63. data/lib/riot_lol_api/models/xppermindeltas.rb +7 -0
  64. data/lib/riot_lol_api/requests/champion_masteries.rb +11 -0
  65. data/lib/riot_lol_api/requests/champions.rb +23 -0
  66. data/lib/riot_lol_api/requests/games.rb +23 -0
  67. data/lib/riot_lol_api/requests/items.rb +23 -0
  68. data/lib/riot_lol_api/requests/masteries.rb +23 -0
  69. data/lib/riot_lol_api/requests/runes.rb +23 -0
  70. data/lib/riot_lol_api/requests/spells.rb +23 -0
  71. data/lib/riot_lol_api/requests/summoners.rb +29 -0
  72. data/lib/riot_lol_api/supports/regions.rb +33 -0
  73. data/lib/riot_lol_api/version.rb +1 -1
  74. data/riot_lol_api.gemspec +19 -16
  75. data/spec/factories/champion.rb +8 -8
  76. data/spec/factories/client.rb +7 -5
  77. data/spec/factories/game.rb +18 -18
  78. data/spec/factories/page.rb +8 -8
  79. data/spec/factories/summoner.rb +10 -9
  80. data/spec/mock_response/championmastery_by_summoner.json +7 -0
  81. data/spec/mock_response/championmastery_by_summoner_by_champion.json +7 -0
  82. data/spec/mock_response/championmastery_score.json +7 -0
  83. data/spec/mock_response/championmastery_top.json +7 -0
  84. data/spec/mock_response/get_all_champions_by_ids.json +4 -5
  85. data/spec/mock_response/get_all_champions_by_ids_all_data.json +4 -5
  86. data/spec/mock_response/get_all_item.json +4 -5
  87. data/spec/mock_response/get_all_masteries.json +5 -6
  88. data/spec/mock_response/get_all_runes.json +4 -5
  89. data/spec/mock_response/get_all_summoner_spells.json +5 -6
  90. data/spec/mock_response/get_all_summoner_spells_by_ids.json +4 -5
  91. data/spec/mock_response/get_champion_by_id.json +3 -4
  92. data/spec/mock_response/get_champion_by_id_all_data.json +4 -5
  93. data/spec/mock_response/get_featured_games.json +7 -7
  94. data/spec/mock_response/get_item_by_id.json +5 -6
  95. data/spec/mock_response/get_mastery_by_id.json +5 -6
  96. data/spec/mock_response/get_match_by_id.json +4 -5
  97. data/spec/mock_response/get_player_league.json +5 -6
  98. data/spec/mock_response/get_player_stat_ranked.json +5 -6
  99. data/spec/mock_response/get_player_stat_summaries.json +5 -6
  100. data/spec/mock_response/get_realm.json +5 -5
  101. data/spec/mock_response/get_rune_by_id.json +4 -5
  102. data/spec/mock_response/get_summoner_by_id.json +5 -6
  103. data/spec/mock_response/get_summoner_by_name.json +5 -6
  104. data/spec/mock_response/get_summoner_games_by_id.json +5 -6
  105. data/spec/mock_response/get_summoner_masteries_by_id.json +5 -6
  106. data/spec/mock_response/get_summoner_runes_by_id.json +5 -6
  107. data/spec/mock_response/get_summoner_spell_by_id.json +5 -6
  108. data/spec/mock_response/get_version.json +5 -6
  109. data/spec/mock_response/match_list.json +12 -0
  110. data/spec/mock_response/realm.json +12 -0
  111. data/spec/mock_response/summoner.json +5 -6
  112. data/spec/{riot_lol_api_spec.rb → riot_lol_api/riot_lol_api_spec.rb} +135 -164
  113. data/spec/riot_lol_api/riot_lol_api_supports_spec.rb +8 -0
  114. data/spec/spec_helper.rb +7 -2
  115. metadata +144 -77
  116. data/lib/core_ext/hash.rb +0 -29
  117. data/lib/core_ext/string.rb +0 -5
  118. data/lib/riot_lol_api/model/aggregated_stats.rb +0 -14
  119. data/lib/riot_lol_api/model/altimages.rb +0 -14
  120. data/lib/riot_lol_api/model/banned_champions.rb +0 -14
  121. data/lib/riot_lol_api/model/bans.rb +0 -14
  122. data/lib/riot_lol_api/model/blocks.rb +0 -16
  123. data/lib/riot_lol_api/model/champions.rb +0 -23
  124. data/lib/riot_lol_api/model/class_base.rb +0 -14
  125. data/lib/riot_lol_api/model/creepspermindeltas.rb +0 -14
  126. data/lib/riot_lol_api/model/csdiffpermindeltas.rb +0 -14
  127. data/lib/riot_lol_api/model/damagetakendiffpermindeltas.rb +0 -13
  128. data/lib/riot_lol_api/model/damagetakenpermindeltas.rb +0 -14
  129. data/lib/riot_lol_api/model/data.rb +0 -14
  130. data/lib/riot_lol_api/model/effects.rb +0 -14
  131. data/lib/riot_lol_api/model/entries.rb +0 -14
  132. data/lib/riot_lol_api/model/fellow_players.rb +0 -14
  133. data/lib/riot_lol_api/model/game_lists.rb +0 -14
  134. data/lib/riot_lol_api/model/games.rb +0 -19
  135. data/lib/riot_lol_api/model/goldpermindeltas.rb +0 -14
  136. data/lib/riot_lol_api/model/golds.rb +0 -14
  137. data/lib/riot_lol_api/model/images.rb +0 -24
  138. data/lib/riot_lol_api/model/infos.rb +0 -14
  139. data/lib/riot_lol_api/model/items.rb +0 -18
  140. data/lib/riot_lol_api/model/leagues.rb +0 -17
  141. data/lib/riot_lol_api/model/leveltips.rb +0 -14
  142. data/lib/riot_lol_api/model/masteries.rb +0 -30
  143. data/lib/riot_lol_api/model/matches.rb +0 -18
  144. data/lib/riot_lol_api/model/mini_series.rb +0 -14
  145. data/lib/riot_lol_api/model/observers.rb +0 -14
  146. data/lib/riot_lol_api/model/pages.rb +0 -18
  147. data/lib/riot_lol_api/model/participantidentities.rb +0 -13
  148. data/lib/riot_lol_api/model/participants.rb +0 -14
  149. data/lib/riot_lol_api/model/passives.rb +0 -16
  150. data/lib/riot_lol_api/model/player_stat_ranks.rb +0 -16
  151. data/lib/riot_lol_api/model/player_stat_summaries.rb +0 -16
  152. data/lib/riot_lol_api/model/recommendeds.rb +0 -16
  153. data/lib/riot_lol_api/model/runes.rb +0 -14
  154. data/lib/riot_lol_api/model/skins.rb +0 -14
  155. data/lib/riot_lol_api/model/slots.rb +0 -16
  156. data/lib/riot_lol_api/model/spells.rb +0 -19
  157. data/lib/riot_lol_api/model/summoners.rb +0 -160
  158. data/lib/riot_lol_api/model/teams.rb +0 -18
  159. data/lib/riot_lol_api/model/timelines.rb +0 -16
  160. data/lib/riot_lol_api/model/vars.rb +0 -14
  161. data/lib/riot_lol_api/model/xpdiffpermindeltas.rb +0 -14
  162. data/lib/riot_lol_api/model/xppermindeltas.rb +0 -14
  163. data/spec/mock_response/get_match_history.json +0 -13
@@ -1,14 +0,0 @@
1
- module RiotLolApi
2
- module Model
3
- class XpDiffPerMinDelta
4
-
5
- def initialize(options = {})
6
- options.each do |key, value|
7
- self.class.send(:attr_accessor, key.to_sym)
8
- instance_variable_set("@#{key}", value)
9
- end
10
- end
11
-
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- module RiotLolApi
2
- module Model
3
- class XpPerMinDelta
4
-
5
- def initialize(options = {})
6
- options.each do |key, value|
7
- self.class.send(:attr_accessor, key.to_sym)
8
- instance_variable_set("@#{key}", value)
9
- end
10
- end
11
-
12
- end
13
- end
14
- end
@@ -1,13 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Access-Control-Allow-Headers: Content-Type
3
- Access-Control-Allow-Methods: GET, POST, DELETE, PUT
4
- Access-Control-Allow-Origin: *
5
- Content-Type: application/json; charset=UTF-8
6
- Date: Fri, 20 Feb 2015 21:53:42 GMT
7
- Server: Jetty(9.1.2.v20140210)
8
- Vary: Accept-Encoding, User-Agent
9
- X-NewRelic-App-Data: PxQFWFFSDwQTUVVSBQYBUEYdFGQHBDcQUQxLA1tMXV1dORYzVBBGBxdCdhUSEVFRRRAEPhhQRw84HlpcDjpMB0UVZE1OChoAb0pUAEUCWwoNRUMOFBpkHEMRDA9YX1IULVUUH1JIU04ATApXDQoGAwtJFFAdQwpaAgRTWFNRCgAIAVZVURNq
10
- transfer-encoding: chunked
11
- Connection: keep-alive
12
-
13
- {"matches":[{"matchId":1936953776,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1422182050766,"matchDuration":2057,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.1.0.427","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":0.8,"tenToTwenty":1.0,"twentyToThirty":0.6},"xpPerMinDeltas":{"zeroToTen":287.0,"tenToTwenty":353.1,"twentyToThirty":439.6},"goldPerMinDeltas":{"zeroToTen":148.8,"tenToTwenty":290.70000000000005,"twentyToThirty":316.7},"csDiffPerMinDeltas":{"zeroToTen":0.6499999999999999,"tenToTwenty":1.3499999999999996,"twentyToThirty":-0.8500000000000001},"xpDiffPerMinDeltas":{"zeroToTen":15.199999999999989,"tenToTwenty":-6.000000000000028,"twentyToThirty":31.850000000000023},"damageTakenPerMinDeltas":{"zeroToTen":147.29999999999998,"tenToTwenty":780.5,"twentyToThirty":762.0999999999999},"damageTakenDiffPerMinDeltas":{"zeroToTen":62.59999999999999,"tenToTwenty":69.60000000000002,"twentyToThirty":47.599999999999994},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":true,"champLevel":15,"item0":3401,"item1":2049,"item2":3068,"item3":3270,"item4":3211,"item5":1028,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":6,"assists":21,"totalDamageDealt":30614,"totalDamageDealtToChampions":9237,"totalDamageTaken":22516,"largestCriticalStrike":0,"totalHeal":5549,"minionsKilled":31,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":10348,"goldSpent":8760,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":7858,"physicalDamageDealtToChampions":1378,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":2,"magicDamageDealt":16890,"physicalDamageDealt":8937,"trueDamageDealt":4786,"magicDamageTaken":4778,"physicalDamageTaken":17072,"trueDamageTaken":665,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":11,"wardsKilled":1,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":5,"totalTimeCrowdControlDealt":694},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1937984129,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1422210224699,"matchDuration":3018,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.1.0.427","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":0.9,"tenToTwenty":1.2,"twentyToThirty":2.7,"thirtyToEnd":1.5},"xpPerMinDeltas":{"zeroToTen":236.10000000000002,"tenToTwenty":360.5,"twentyToThirty":468.9,"thirtyToEnd":580.35},"goldPerMinDeltas":{"zeroToTen":158.7,"tenToTwenty":293.8,"twentyToThirty":250.1,"thirtyToEnd":325.25},"csDiffPerMinDeltas":{"zeroToTen":-0.34999999999999987,"tenToTwenty":-1.9499999999999997,"twentyToThirty":0.5499999999999998,"thirtyToEnd":-3.1750000000000003},"xpDiffPerMinDeltas":{"zeroToTen":-51.400000000000006,"tenToTwenty":7.549999999999997,"twentyToThirty":18.799999999999955,"thirtyToEnd":-15.075000000000045},"damageTakenPerMinDeltas":{"zeroToTen":264.2,"tenToTwenty":500.79999999999995,"twentyToThirty":618.0,"thirtyToEnd":1190.25},"damageTakenDiffPerMinDeltas":{"zeroToTen":14.849999999999966,"tenToTwenty":-23.24999999999997,"twentyToThirty":136.6500000000001,"thirtyToEnd":33.12499999999994},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":true,"champLevel":18,"item0":3401,"item1":2049,"item2":3117,"item3":3068,"item4":3102,"item5":1031,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":3,"assists":26,"totalDamageDealt":67675,"totalDamageDealtToChampions":14423,"totalDamageTaken":37647,"largestCriticalStrike":0,"totalHeal":5894,"minionsKilled":78,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":14341,"goldSpent":11110,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":10472,"physicalDamageDealtToChampions":3950,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":1,"magicDamageDealt":34191,"physicalDamageDealt":27374,"trueDamageDealt":6110,"magicDamageTaken":10124,"physicalDamageTaken":24029,"trueDamageTaken":3492,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"inhibitorKills":0,"towerKills":1,"wardsPlaced":28,"wardsKilled":8,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":4,"totalTimeCrowdControlDealt":1026},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1939713837,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1422301444826,"matchDuration":2281,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.1.0.427","participants":[{"teamId":100,"spell1Id":4,"spell2Id":12,"championId":2,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":4.6000000000000005,"tenToTwenty":4.300000000000001,"twentyToThirty":2.9000000000000004,"thirtyToEnd":3.0},"xpPerMinDeltas":{"zeroToTen":389.70000000000005,"tenToTwenty":366.6,"twentyToThirty":431.1,"thirtyToEnd":352.0},"goldPerMinDeltas":{"zeroToTen":228.0,"tenToTwenty":254.5,"twentyToThirty":305.6,"thirtyToEnd":352.6},"csDiffPerMinDeltas":{"zeroToTen":-1.2999999999999998,"tenToTwenty":-3.899999999999999,"twentyToThirty":-1.5999999999999999,"thirtyToEnd":-2.4000000000000004},"xpDiffPerMinDeltas":{"zeroToTen":-0.6999999999999744,"tenToTwenty":-160.59999999999997,"twentyToThirty":19.99999999999997,"thirtyToEnd":-343.79999999999995},"damageTakenPerMinDeltas":{"zeroToTen":208.2,"tenToTwenty":421.5,"twentyToThirty":952.4000000000001,"thirtyToEnd":1403.4},"damageTakenDiffPerMinDeltas":{"zeroToTen":-24.700000000000003,"tenToTwenty":72.30000000000001,"twentyToThirty":140.8,"thirtyToEnd":350.0},"role":"SOLO","lane":"TOP"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":true,"champLevel":16,"item0":1054,"item1":3074,"item2":3047,"item3":3134,"item4":3110,"item5":3065,"item6":3340,"kills":5,"doubleKills":1,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":2,"deaths":7,"assists":8,"totalDamageDealt":112173,"totalDamageDealtToChampions":12693,"totalDamageTaken":24928,"largestCriticalStrike":0,"totalHeal":2107,"minionsKilled":154,"neutralMinionsKilled":1,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":1,"goldEarned":11938,"goldSpent":11482,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":249,"physicalDamageDealtToChampions":8807,"trueDamageDealtToChampions":3637,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"magicDamageDealt":249,"physicalDamageDealt":107525,"trueDamageDealt":4398,"magicDamageTaken":5734,"physicalDamageTaken":17631,"trueDamageTaken":1562,"firstBloodKill":true,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":1,"towerKills":2,"wardsPlaced":10,"wardsKilled":1,"largestMultiKill":2,"killingSprees":1,"totalUnitsHealed":1,"totalTimeCrowdControlDealt":626},"participantId":0,"runes":[{"runeId":5253,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1951422319,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1422911515980,"matchDuration":1804,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.2.0.200","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":1.2,"tenToTwenty":2.4,"twentyToThirty":1.4},"xpPerMinDeltas":{"zeroToTen":261.6,"tenToTwenty":352.2,"twentyToThirty":274.5},"goldPerMinDeltas":{"zeroToTen":143.2,"tenToTwenty":218.8,"twentyToThirty":264.2},"csDiffPerMinDeltas":{"zeroToTen":-1.1999999999999995,"tenToTwenty":-1.2499999999999998,"twentyToThirty":2.1},"xpDiffPerMinDeltas":{"zeroToTen":-30.5,"tenToTwenty":-42.400000000000006,"twentyToThirty":-35.79999999999998},"damageTakenPerMinDeltas":{"zeroToTen":185.0,"tenToTwenty":666.1,"twentyToThirty":1394.3},"damageTakenDiffPerMinDeltas":{"zeroToTen":-15.649999999999984,"tenToTwenty":119.1,"twentyToThirty":644.95},"role":"DUO","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":false,"champLevel":12,"item0":3401,"item1":2049,"item2":1031,"item3":3117,"item4":1028,"item5":1033,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":7,"assists":8,"totalDamageDealt":21214,"totalDamageDealtToChampions":4961,"totalDamageTaken":22454,"largestCriticalStrike":0,"totalHeal":3242,"minionsKilled":50,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":6744,"goldSpent":5910,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":3551,"physicalDamageDealtToChampions":1410,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":2,"sightWardsBoughtInGame":3,"magicDamageDealt":7823,"physicalDamageDealt":10190,"trueDamageDealt":3200,"magicDamageTaken":7300,"physicalDamageTaken":13277,"trueDamageTaken":1877,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":17,"wardsKilled":4,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":4,"totalTimeCrowdControlDealt":596},"participantId":0,"runes":[{"runeId":5253,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1951481678,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1422914003141,"matchDuration":1995,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.2.0.200","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":412,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":0.1,"tenToTwenty":0.30000000000000004,"twentyToThirty":1.2000000000000002},"xpPerMinDeltas":{"zeroToTen":242.4,"tenToTwenty":294.1,"twentyToThirty":611.3},"goldPerMinDeltas":{"zeroToTen":137.6,"tenToTwenty":207.1,"twentyToThirty":380.4},"csDiffPerMinDeltas":{"zeroToTen":-1.0999999999999996,"tenToTwenty":-0.6500000000000001,"twentyToThirty":-0.24999999999999978},"xpDiffPerMinDeltas":{"zeroToTen":-15.000000000000014,"tenToTwenty":3.1500000000000057,"twentyToThirty":141.64999999999992},"damageTakenPerMinDeltas":{"zeroToTen":188.5,"tenToTwenty":202.7,"twentyToThirty":560.4000000000001},"damageTakenDiffPerMinDeltas":{"zeroToTen":-37.75,"tenToTwenty":-43.54999999999998,"twentyToThirty":-355.1499999999999},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":2},{"masteryId":4212,"rank":2},{"masteryId":4221,"rank":1},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4314,"rank":1},{"masteryId":4322,"rank":3},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":3},{"masteryId":4334,"rank":1},{"masteryId":4341,"rank":1},{"masteryId":4342,"rank":1},{"masteryId":4353,"rank":3},{"masteryId":4362,"rank":1}],"stats":{"winner":true,"champLevel":15,"item0":3301,"item1":3270,"item2":2049,"item3":3068,"item4":3222,"item5":3801,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":2,"assists":14,"totalDamageDealt":23887,"totalDamageDealtToChampions":5143,"totalDamageTaken":12452,"largestCriticalStrike":0,"totalHeal":983,"minionsKilled":17,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":9120,"goldSpent":8410,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":3977,"physicalDamageDealtToChampions":1165,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":2,"magicDamageDealt":15317,"physicalDamageDealt":8570,"trueDamageDealt":0,"magicDamageTaken":4640,"physicalDamageTaken":7659,"trueDamageTaken":152,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"inhibitorKills":0,"towerKills":0,"wardsPlaced":17,"wardsKilled":3,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":1,"totalTimeCrowdControlDealt":71},"participantId":0,"runes":[{"runeId":5253,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1969229137,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1423922276828,"matchDuration":1658,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.3.0.291","participants":[{"teamId":200,"spell1Id":4,"spell2Id":3,"championId":53,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":1.0,"tenToTwenty":0.8999999999999999},"xpPerMinDeltas":{"zeroToTen":214.2,"tenToTwenty":315.5},"goldPerMinDeltas":{"zeroToTen":131.2,"tenToTwenty":220.6},"csDiffPerMinDeltas":{"zeroToTen":-1.1,"tenToTwenty":-3.0000000000000004},"xpDiffPerMinDeltas":{"zeroToTen":-39.60000000000002,"tenToTwenty":-186.1},"damageTakenPerMinDeltas":{"zeroToTen":241.6,"tenToTwenty":791.0999999999999},"damageTakenDiffPerMinDeltas":{"zeroToTen":-79.05000000000003,"tenToTwenty":-20.750000000000114},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":false,"champLevel":11,"item0":3401,"item1":2049,"item2":3117,"item3":1029,"item4":1029,"item5":0,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":8,"assists":4,"totalDamageDealt":23574,"totalDamageDealtToChampions":6187,"totalDamageTaken":21977,"largestCriticalStrike":0,"totalHeal":2402,"minionsKilled":33,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":5536,"goldSpent":4510,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":3973,"physicalDamageDealtToChampions":2214,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":0,"sightWardsBoughtInGame":1,"magicDamageDealt":15768,"physicalDamageDealt":4441,"trueDamageDealt":3364,"magicDamageTaken":3552,"physicalDamageTaken":17359,"trueDamageTaken":1065,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":15,"wardsKilled":2,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":4,"totalTimeCrowdControlDealt":49},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1969305504,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1423924391193,"matchDuration":1632,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.3.0.291","participants":[{"teamId":100,"spell1Id":4,"spell2Id":12,"championId":2,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":2.5999999999999996,"tenToTwenty":5.199999999999999},"xpPerMinDeltas":{"zeroToTen":422.5,"tenToTwenty":440.9},"goldPerMinDeltas":{"zeroToTen":164.8,"tenToTwenty":254.9},"csDiffPerMinDeltas":{"zeroToTen":-5.4,"tenToTwenty":-4.700000000000001},"xpDiffPerMinDeltas":{"zeroToTen":-61.10000000000002,"tenToTwenty":-126.49999999999997},"damageTakenPerMinDeltas":{"zeroToTen":326.5,"tenToTwenty":733.9000000000001},"damageTakenDiffPerMinDeltas":{"zeroToTen":131.79999999999998,"tenToTwenty":337.20000000000005},"role":"SOLO","lane":"TOP"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":false,"champLevel":14,"item0":1054,"item1":3047,"item2":1053,"item3":3065,"item4":1029,"item5":1029,"item6":3340,"kills":3,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":2,"deaths":4,"assists":4,"totalDamageDealt":65226,"totalDamageDealtToChampions":8935,"totalDamageTaken":16606,"largestCriticalStrike":0,"totalHeal":1815,"minionsKilled":85,"neutralMinionsKilled":1,"neutralMinionsKilledTeamJungle":1,"neutralMinionsKilledEnemyJungle":0,"goldEarned":6860,"goldSpent":5725,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":0,"physicalDamageDealtToChampions":5768,"trueDamageDealtToChampions":3166,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"magicDamageDealt":0,"physicalDamageDealt":59816,"trueDamageDealt":5409,"magicDamageTaken":10745,"physicalDamageTaken":5451,"trueDamageTaken":409,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":4,"wardsKilled":0,"largestMultiKill":1,"killingSprees":1,"totalUnitsHealed":1,"totalTimeCrowdControlDealt":3064},"participantId":0,"runes":[{"runeId":5253,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1969363073,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1423926595935,"matchDuration":2183,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.3.0.291","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":1.1,"tenToTwenty":1.1,"twentyToThirty":1.0,"thirtyToEnd":1.8},"xpPerMinDeltas":{"zeroToTen":271.0,"tenToTwenty":266.79999999999995,"twentyToThirty":304.0,"thirtyToEnd":451.6},"goldPerMinDeltas":{"zeroToTen":174.3,"tenToTwenty":208.2,"twentyToThirty":246.6,"thirtyToEnd":352.0},"csDiffPerMinDeltas":{"zeroToTen":0.6499999999999995,"tenToTwenty":0.19999999999999996,"twentyToThirty":-0.7000000000000001,"thirtyToEnd":-4.440892098500626E-16},"xpDiffPerMinDeltas":{"zeroToTen":17.299999999999983,"tenToTwenty":8.849999999999966,"twentyToThirty":-120.09999999999997,"thirtyToEnd":289.09999999999997},"damageTakenPerMinDeltas":{"zeroToTen":305.4,"tenToTwenty":449.20000000000005,"twentyToThirty":1020.3000000000001,"thirtyToEnd":1275.8},"damageTakenDiffPerMinDeltas":{"zeroToTen":20.40000000000002,"tenToTwenty":234.1,"twentyToThirty":59.149999999999864,"thirtyToEnd":430.89999999999986},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":false,"champLevel":13,"item0":3401,"item1":2049,"item2":3068,"item3":3117,"item4":3211,"item5":0,"item6":3341,"kills":2,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":7,"assists":16,"totalDamageDealt":21922,"totalDamageDealtToChampions":8203,"totalDamageTaken":27972,"largestCriticalStrike":0,"totalHeal":3505,"minionsKilled":44,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":8755,"goldSpent":7910,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":6409,"physicalDamageDealtToChampions":1793,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":2,"sightWardsBoughtInGame":1,"magicDamageDealt":9724,"physicalDamageDealt":7326,"trueDamageDealt":4871,"magicDamageTaken":17946,"physicalDamageTaken":9673,"trueDamageTaken":352,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":27,"wardsKilled":5,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":4,"totalTimeCrowdControlDealt":489},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1973712993,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1424118960402,"matchDuration":1287,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.3.0.291","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":1.0,"tenToTwenty":0.6},"xpPerMinDeltas":{"zeroToTen":242.4,"tenToTwenty":244.0},"goldPerMinDeltas":{"zeroToTen":128.7,"tenToTwenty":199.6},"csDiffPerMinDeltas":{"zeroToTen":0.34999999999999987,"tenToTwenty":-0.6500000000000002},"xpDiffPerMinDeltas":{"zeroToTen":-64.34999999999997,"tenToTwenty":-82.69999999999999},"damageTakenPerMinDeltas":{"zeroToTen":390.8,"tenToTwenty":764.2},"damageTakenDiffPerMinDeltas":{"zeroToTen":69.85000000000002,"tenToTwenty":60.84999999999991},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":false,"champLevel":9,"item0":3302,"item1":2049,"item2":3117,"item3":1031,"item4":1011,"item5":0,"item6":3341,"kills":0,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":7,"assists":6,"totalDamageDealt":7382,"totalDamageDealtToChampions":2698,"totalDamageTaken":13201,"largestCriticalStrike":0,"totalHeal":1103,"minionsKilled":16,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"goldEarned":4053,"goldSpent":4025,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":1968,"physicalDamageDealtToChampions":729,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":2,"sightWardsBoughtInGame":1,"magicDamageDealt":3386,"physicalDamageDealt":3065,"trueDamageDealt":931,"magicDamageTaken":4934,"physicalDamageTaken":7420,"trueDamageTaken":846,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":0,"wardsPlaced":8,"wardsKilled":4,"largestMultiKill":0,"killingSprees":0,"totalUnitsHealed":3,"totalTimeCrowdControlDealt":220},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]},{"matchId":1973826334,"region":"EUW","platformId":"EUW1","matchMode":"CLASSIC","matchType":"MATCHED_GAME","matchCreation":1424120780478,"matchDuration":1654,"queueType":"RANKED_SOLO_5x5","mapId":11,"season":"SEASON2015","matchVersion":"5.3.0.291","participants":[{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":201,"highestAchievedSeasonTier":"SILVER","timeline":{"creepsPerMinDeltas":{"zeroToTen":0.8999999999999999,"tenToTwenty":0.4},"xpPerMinDeltas":{"zeroToTen":252.2,"tenToTwenty":422.0},"goldPerMinDeltas":{"zeroToTen":130.8,"tenToTwenty":307.9},"csDiffPerMinDeltas":{"zeroToTen":-0.7499999999999998,"tenToTwenty":0.9499999999999997},"xpDiffPerMinDeltas":{"zeroToTen":-15.149999999999977,"tenToTwenty":85.94999999999999},"damageTakenPerMinDeltas":{"zeroToTen":300.0,"tenToTwenty":536.6},"damageTakenDiffPerMinDeltas":{"zeroToTen":-46.000000000000014,"tenToTwenty":-326.04999999999995},"role":"DUO_SUPPORT","lane":"BOTTOM"},"masteries":[{"masteryId":4211,"rank":1},{"masteryId":4212,"rank":2},{"masteryId":4213,"rank":2},{"masteryId":4222,"rank":3},{"masteryId":4232,"rank":1},{"masteryId":4233,"rank":3},{"masteryId":4241,"rank":3},{"masteryId":4242,"rank":1},{"masteryId":4243,"rank":1},{"masteryId":4252,"rank":3},{"masteryId":4262,"rank":1},{"masteryId":4312,"rank":3},{"masteryId":4313,"rank":3},{"masteryId":4323,"rank":1},{"masteryId":4324,"rank":1},{"masteryId":4331,"rank":1}],"stats":{"winner":true,"champLevel":14,"item0":3302,"item1":2049,"item2":3117,"item3":3068,"item4":3211,"item5":1028,"item6":3340,"kills":1,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"largestKillingSpree":0,"deaths":5,"assists":16,"totalDamageDealt":23601,"totalDamageDealtToChampions":8058,"totalDamageTaken":16013,"largestCriticalStrike":0,"totalHeal":2111,"minionsKilled":22,"neutralMinionsKilled":1,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":1,"goldEarned":8082,"goldSpent":6450,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0,"magicDamageDealtToChampions":6370,"physicalDamageDealtToChampions":1687,"trueDamageDealtToChampions":0,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":2,"magicDamageDealt":13514,"physicalDamageDealt":8069,"trueDamageDealt":2016,"magicDamageTaken":4301,"physicalDamageTaken":11240,"trueDamageTaken":471,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"inhibitorKills":0,"towerKills":2,"wardsPlaced":15,"wardsKilled":0,"largestMultiKill":1,"killingSprees":0,"totalUnitsHealed":3,"totalTimeCrowdControlDealt":478},"participantId":0,"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":9},{"runeId":5327,"rank":9},{"runeId":5357,"rank":3}]}],"participantIdentities":[{"participantId":0,"player":{"summonerId":20639710,"summonerName":"PacoLoco","matchHistoryUri":"/v1/stats/player_history/EUW1/23876059","profileIcon":709}}]}]}