ruby-lol 0.9.12 → 0.9.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/demo/demo.rb +132 -6
  4. data/lib/lol/champion.rb +1 -22
  5. data/lib/lol/champion_request.rb +18 -4
  6. data/lib/lol/client.rb +2 -0
  7. data/lib/lol/game.rb +5 -1
  8. data/lib/lol/{talent.rb → mastery.rb} +2 -6
  9. data/lib/lol/mastery_page.rb +5 -5
  10. data/lib/lol/request.rb +10 -2
  11. data/lib/lol/rune_slot.rb +9 -7
  12. data/lib/lol/stats_request.rb +1 -1
  13. data/lib/lol/summoner_request.rb +1 -1
  14. data/lib/lol/version.rb +1 -1
  15. data/spec/api_version_spec.rb +3 -3
  16. data/spec/fixtures/v1.2/get-champion-266.json +8 -0
  17. data/spec/fixtures/v1.2/get-champion.json +1 -0
  18. data/spec/fixtures/v1.3/get-ranked_stats.json +1 -0
  19. data/spec/fixtures/v1.3/get-stats.json +1 -0
  20. data/spec/fixtures/v1.3/get-summoner-masteries.json +1318 -1318
  21. data/spec/fixtures/v1.3/get-summoner-runes.json +4086 -4086
  22. data/spec/fixtures/v1.4/get-summoner-by-name.json +1 -0
  23. data/spec/fixtures/v1.4/get-summoner-masteries.json +898 -0
  24. data/spec/fixtures/v1.4/get-summoner-name.json +1 -0
  25. data/spec/fixtures/v1.4/get-summoner-runes.json +2547 -0
  26. data/spec/fixtures/v1.4/get-summoner.json +1 -0
  27. data/spec/lol/champion_request_spec.rb +28 -11
  28. data/spec/lol/champion_spec.rb +1 -1
  29. data/spec/lol/client_spec.rb +25 -24
  30. data/spec/lol/game_spec.rb +1 -1
  31. data/spec/lol/mastery_page_spec.rb +4 -4
  32. data/spec/lol/{talent_spec.rb → mastery_spec.rb} +2 -2
  33. data/spec/lol/model_spec.rb +1 -1
  34. data/spec/lol/request_spec.rb +6 -1
  35. data/spec/lol/rune_page_spec.rb +1 -1
  36. data/spec/lol/rune_slot_spec.rb +0 -10
  37. metadata +23 -8
  38. data/lib/lol/rune.rb +0 -23
  39. data/spec/lol/rune_spec.rb +0 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b41e63342b89011c396472e3fbb587e38330d193
4
- data.tar.gz: 7ae6f9ce17f6ca158dd64e5846f74754158db8a2
3
+ metadata.gz: 006de251c4e277db5f622c9a32b88bdf79f8d958
4
+ data.tar.gz: ec86dcb6c1b7dcd8f86f4bfbe0de26c229ca36f4
5
5
  SHA512:
6
- metadata.gz: ab7f044aa9d234d80b24dd53fdb0d59d4fe2fdc9aeb681034086b010364535084538ef95162d31c288028dbd7694da9d5f749bbf41e9ef15048996073ca817f1
7
- data.tar.gz: 181b8ecd33721fc0ed9b32621a185357d1fe6b7a5c2cc29b92002eec29f9772d8e8d84dc47550f636f1cb560287df637ee39e5fd1608fb6f23791e97b340748f
6
+ metadata.gz: ebf690e5492bb56291144b7b46af261e0ac916dc68f4645e69fa3b7cf911d0d64567eb07aec2b95f04493d35d9cf7e1d69ddb4a8bd1a55e4b19dbd3ac0bc3d01
7
+ data.tar.gz: 8a63a55a1d9b5793576718d8f5019a1071cf74da00cc14c81a71a5e8ea4c33258bcfb00cf293eb60dde86363d77d622f058394c377e9f0509b0cc7cf9ad3395c
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ /output.txt
data/demo/demo.rb CHANGED
@@ -4,11 +4,137 @@ require "rubygems"
4
4
  require "ap"
5
5
  require "lol"
6
6
 
7
- include Lol
7
+ module Lol
8
+ class Scraper
9
+ attr_accessor :req, :client, :redis, :seed_id
8
10
 
9
- client = Client.new ENV["RIOT_GAMES_API_KEY"], region: "euw", redis: "redis://localhost:6379"
10
- intinig = client.summoner.by_name("intinig").first
11
- leagues = client.league.get intinig.id
12
- leagues.map(&:entries).each do |league_entry|
13
- ap league_entry
11
+ def get_summoner_id summoner
12
+ self.req += 1
13
+ client.summoner.by_name(summoner).first.id
14
+ end
15
+
16
+ def get_leagues summoner_id
17
+ self.req +=1
18
+ client.league.get summoner_id
19
+ end
20
+
21
+ def get_league_players summoner_id
22
+ get_leagues(summoner_id).map do |l|
23
+ l.entries.map do |entry|
24
+ if entry.player_or_team_id.to_i == 0
25
+ nil
26
+ else
27
+ entry.player_or_team_id
28
+ end
29
+ end
30
+ end.flatten.compact
31
+ end
32
+
33
+ def scrape_solo_league_for_teams summoner_id
34
+ get_league_players(summoner_id).map do |player|
35
+ if req >= 500
36
+ puts "Dormo per un minuto..."
37
+ sleep(60)
38
+ self.req = 0
39
+ end
40
+
41
+ begin
42
+ puts "#{req}. #{player}"
43
+ if redis.sismember "losers", player
44
+ nil
45
+ else
46
+ redis.sadd "winners", player
47
+ self.req += 1
48
+ client.team.get player
49
+ end
50
+ rescue Lol::NotFound
51
+ puts "Hitting the API on 404 - No cache"
52
+ redis.sadd "losers", player
53
+ nil
54
+ rescue Lol::InvalidAPIResponse
55
+ puts "Hit Rate Limit on #{player}"
56
+ sleep(5)
57
+ nil
58
+ end
59
+ end.compact.flatten
60
+ end
61
+
62
+ def get_players_from_leagues summoner_id
63
+ begin
64
+ scrape_solo_league_for_teams(summoner_id).map do |t|
65
+ t.roster.member_list.map do |s|
66
+ s.player_id
67
+ end
68
+ end.flatten.uniq
69
+ rescue NoMethodError
70
+ []
71
+ rescue Lol::NotFound
72
+ []
73
+ end
74
+ end
75
+
76
+ def filter_captains
77
+ redis.smembers("winners").each do |winner|
78
+ ap winner
79
+ begin
80
+ team = client.team.get(winner)
81
+ rescue Lol::NotFound
82
+ next
83
+ rescue Lol::InvalidAPIResponse
84
+ puts "wait..."
85
+ sleep(5)
86
+ next
87
+ end
88
+ team.each do |t|
89
+ if t.roster.owner_id == winner.to_i
90
+ redis.sadd "captains", winner
91
+ end
92
+ end
93
+ end
94
+ end
95
+
96
+ def get_captains
97
+ puts redis.smembers("captains").sort
98
+ end
99
+
100
+ def initialize seed
101
+ @req = 0
102
+ @client = Client.new ENV["RIOT_GAMES_API_KEY"], region: "euw", redis: "redis://localhost:6379", ttl: 36000
103
+ @redis = Redis.new
104
+
105
+ @seed_id = get_summoner_id seed
106
+ end
107
+ end
14
108
  end
109
+
110
+
111
+ # lotsa = scrape_league(get_summoner("intinig")).map do |player|
112
+ # player.map do |team|
113
+ # team.roster.member_list.map(&:player_id)
114
+ # end.flatten
115
+ # end.flatten.uniq
116
+
117
+ # so_many = []
118
+
119
+ # lotsa.each do |summoner|
120
+ # next if @redis.sismember("winners", summoner)
121
+ # ap get_players(summoner)
122
+ # so_many << scrape_league(summoner).map do |player|
123
+ # player.map do |team|
124
+ # team.roster.member_list.map(&:player_id)
125
+ # end.flatten
126
+ # end.flatten
127
+ # end
128
+
129
+ # ap so_many
130
+
131
+ scraper = Lol::Scraper.new "intinig"
132
+ scraper.get_captains
133
+ # scraper.get_players_from_leagues(scraper.seed_id).map do |player|
134
+ # begin
135
+ # player = scraper.client.summoner.get(player).first.id
136
+ # scraper.get_players_from_leagues(player)
137
+ # rescue Lol::InvalidAPIResponse
138
+ # sleep(2)
139
+ # end
140
+ # end
data/lib/lol/champion.rb CHANGED
@@ -4,31 +4,11 @@ module Lol
4
4
  # @return [Fixnum] id of Champion
5
5
  attr_reader :id
6
6
 
7
- # @!attribute [r] name
8
- # @return [String] name of Champion
9
- attr_reader :name
10
-
11
7
  # @!attribute [r] active
12
8
  # @return [true] if the Champion is active
13
9
  # @return [false] if the Champion is disabled
14
10
  attr_reader :active
15
11
 
16
- # @!attribute [r] attack_rank
17
- # @return [Fixnum] attack rank of Champion
18
- attr_reader :attack_rank
19
-
20
- # @!attribute [r] defense_rank
21
- # @return [Fixnum] defense rank of Champion
22
- attr_reader :defense_rank
23
-
24
- # @!attribute [r] magic_rank
25
- # @return [Fixnum] magic rank of Champion
26
- attr_reader :magic_rank
27
-
28
- # @!attribute [r] difficulty_rank
29
- # @return [Fixnum] difficulty rank of Champion
30
- attr_reader :difficulty_rank
31
-
32
12
  # @!attribute [r] bot_enabled
33
13
  # @return [true] if the Champion is enabled in custom bot games
34
14
  # @return [false] if the Champion is disabled in custom bot games
@@ -51,8 +31,7 @@ module Lol
51
31
 
52
32
  private
53
33
 
54
- attr_writer :id, :name, :active, :attack_rank, :defense_rank, :magic_rank,
55
- :difficulty_rank, :bot_enabled, :free_to_play, :bot_mm_enabled,
34
+ attr_writer :id, :active, :bot_enabled, :free_to_play, :bot_mm_enabled,
56
35
  :ranked_play_enabled
57
36
  end
58
37
  end
@@ -3,13 +3,27 @@ module Lol
3
3
  # Returns the supported API Version
4
4
  # @return [String] the supported api version
5
5
  def self.api_version
6
- "v1.1"
6
+ "v1.2"
7
7
  end
8
8
 
9
- # Retrieve all champions, v1.1
9
+ # Retrieve all champions
10
+ # @param [Hash] options the options to pass to the call
11
+ # @option options [Fixnum] :id the champion to get. If nil gets all champions
12
+ # @option options [Boolean] :free_to_play filters for free to play champions
10
13
  # @return [Array] an array of champions
11
- def get
12
- perform_request(api_url("champion"))["champions"].map {|c| Champion.new(c)}
14
+ def get options = {}
15
+
16
+ champion_id = options.delete :id
17
+ free_to_play = options.delete(:free_to_play) ? true : false
18
+
19
+ url = champion_id ? "champion/#{champion_id}" : "champion"
20
+ result = perform_request(api_url(url, "freeToPlay" => free_to_play))
21
+
22
+ if champion_id
23
+ Champion.new(result)
24
+ else
25
+ result["champions"].map {|c| Champion.new(c)}
26
+ end
13
27
  end
14
28
 
15
29
  end
data/lib/lol/client.rb CHANGED
@@ -52,6 +52,8 @@ module Lol
52
52
  # @param api_key [String]
53
53
  # @param options [Hash]
54
54
  # @option options [String] :region ("EUW") The region on which the requests will be made
55
+ # @option options [String] :redis the redis url to use for caching
56
+ # @option options [Fixnum] :ttl (900) the cache ttl
55
57
  # @return [Lol::Client]
56
58
  def initialize api_key, options = {}
57
59
  @api_key = api_key
data/lib/lol/game.rb CHANGED
@@ -31,6 +31,10 @@ module Lol
31
31
  # @return [false] if the game is valid
32
32
  attr_reader :invalid
33
33
 
34
+ # @!attribute [r] ip_earned
35
+ # @return [Fixnum] IP Earned
36
+ attr_reader :ip_earned
37
+
34
38
  # @!attribute [r] level
35
39
  # @return [Fixnum] Level
36
40
  attr_reader :level
@@ -61,7 +65,7 @@ module Lol
61
65
 
62
66
  private
63
67
 
64
- attr_writer :champion_id, :game_id, :game_mode, :game_type, :invalid,
68
+ attr_writer :champion_id, :game_id, :game_mode, :game_type, :invalid, :ip_earned,
65
69
  :level, :map_id, :spell1, :spell2, :sub_type, :team_id
66
70
 
67
71
  def create_date= value
@@ -1,20 +1,16 @@
1
1
  module Lol
2
- class Talent < Model
2
+ class Mastery < Model
3
3
 
4
4
  # @!attribute [r] id
5
5
  # @return [Fixnum] id of talent
6
6
  attr_reader :id
7
7
 
8
- # @!attribute [r] name
9
- # @return [String] name of talent
10
- attr_reader :name
11
-
12
8
  # @!attribute [r] rank
13
9
  # @return [Fixnum] rank of talent
14
10
  attr_reader :rank
15
11
 
16
12
  private
17
13
 
18
- attr_writer :id, :name, :rank
14
+ attr_writer :id, :rank
19
15
  end
20
16
  end
@@ -5,9 +5,9 @@ module Lol
5
5
  # @return [Fixnum] mastery page id
6
6
  attr_reader :id
7
7
 
8
- # @!attribute [r] talents
9
- # @return [Array] array of Lol::Talent
10
- attr_reader :talents
8
+ # @!attribute [r] masteries
9
+ # @return [Array] array of Lol::Mastery
10
+ attr_reader :masteries
11
11
 
12
12
  # @!attribute [r] name
13
13
  # @return [String] name of mastery page
@@ -21,8 +21,8 @@ module Lol
21
21
 
22
22
  attr_writer :id, :name, :current
23
23
 
24
- def talents= new_talents
25
- @talents = new_talents.map {|t| Talent.new t}
24
+ def masteries= new_masteries
25
+ @masteries = new_masteries.map {|t| Mastery.new t}
26
26
  end
27
27
  end
28
28
  end
data/lib/lol/request.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require "uri"
2
+
1
3
  module Lol
2
4
  class InvalidAPIResponse < StandardError; end
3
5
  class NotFound < StandardError; end
@@ -35,11 +37,17 @@ module Lol
35
37
  File.join "http://prod.api.pvp.net/api/lol/#{region}/#{self.class.api_version}/", "#{path}?#{query_string}"
36
38
  end
37
39
 
40
+ # Returns just a path from a full api url
41
+ # @return [String]
42
+ def clean_url(url)
43
+ URI.parse(url).path
44
+ end
45
+
38
46
  # Calls the API via HTTParty and handles errors
39
47
  # @param url [String] the url to call
40
48
  # @return [String] raw response of the call
41
49
  def perform_request url
42
- if cached? && result = store.get(url)
50
+ if cached? && result = store.get(clean_url(url))
43
51
  return JSON.parse(result)
44
52
  end
45
53
 
@@ -48,7 +56,7 @@ module Lol
48
56
  raise InvalidAPIResponse.new(response["status"]["message"]) if response.is_a?(Hash) && response["status"]
49
57
 
50
58
  if cached?
51
- store.set url, response.to_json
59
+ store.set clean_url(url), response.to_json
52
60
  store.expire url, ttl
53
61
  end
54
62
 
data/lib/lol/rune_slot.rb CHANGED
@@ -6,20 +6,22 @@ module Lol
6
6
  @rune_slot_id
7
7
  end
8
8
 
9
- # @!attribute [r] rune
10
- # @return [Rune] rune placed in the slot
11
- attr_reader :rune
9
+ # @!attribute [r] rune_id
10
+ # @return [Fixnum] id of Rune
11
+ def rune_id
12
+ @rune_id
13
+ end
12
14
 
13
15
  private
14
16
 
15
- def rune= rune_data
16
- @rune = Rune.new rune_data
17
- end
18
-
19
17
  def id= new_id
20
18
  @rune_slot_id = new_id
21
19
  end
22
20
 
21
+ def rune_id= new_id
22
+ @rune_id = new_id
23
+ end
24
+
23
25
  def rune_slot_id= new_id
24
26
  @rune_slot_id = new_id
25
27
  end
@@ -3,7 +3,7 @@ module Lol
3
3
  # Returns the supported API Version
4
4
  # @return [String] the supported api version
5
5
  def self.api_version
6
- "v1.2"
6
+ "v1.3"
7
7
  end
8
8
 
9
9
  # Retrieves player statistics summaries for the given summoner
@@ -3,7 +3,7 @@ module Lol
3
3
  # Returns the supported API Version
4
4
  # @return [String] the supported api version
5
5
  def self.api_version
6
- "v1.3"
6
+ "v1.4"
7
7
  end
8
8
 
9
9
  # Looks for a summoner name and returns the associated summoner
data/lib/lol/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lol
2
- VERSION = "0.9.12"
2
+ VERSION = "0.9.13"
3
3
  end
@@ -13,11 +13,11 @@ def check_api_version(klass, version)
13
13
  end
14
14
 
15
15
  describe "API Versions" do
16
- check_api_version(ChampionRequest, "v1.1")
16
+ check_api_version(ChampionRequest, "v1.2")
17
17
  check_api_version(GameRequest, "v1.3")
18
18
  check_api_version(LeagueRequest, "v2.3")
19
- check_api_version(StatsRequest, "v1.2")
20
- check_api_version(SummonerRequest, "v1.3")
19
+ check_api_version(StatsRequest, "v1.3")
20
+ check_api_version(SummonerRequest, "v1.4")
21
21
  check_api_version(TeamRequest, "v2.2")
22
22
  check_api_version(StaticRequest, "v1")
23
23
  end
@@ -0,0 +1,8 @@
1
+ {
2
+ "botMmEnabled": false,
3
+ "id": 266,
4
+ "rankedPlayEnabled": true,
5
+ "botEnabled": false,
6
+ "active": true,
7
+ "freeToPlay": false
8
+ }
@@ -0,0 +1 @@
1
+ {"champions":[{"id":266,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":103,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":84,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":12,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":32,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":34,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":1,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":22,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":53,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":63,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":51,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":69,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":31,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":42,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":122,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":131,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":119,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":36,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":60,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":28,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":81,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":9,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":114,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":105,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":3,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":41,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":86,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":79,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":104,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":120,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":74,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":39,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":40,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":59,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":24,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":126,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":222,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":43,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":30,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":38,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":55,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":10,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":85,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":121,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":96,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":7,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":64,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":89,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":127,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":236,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":117,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":99,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":54,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":90,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":57,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":11,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":21,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":62,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":82,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":25,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":267,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":75,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":111,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":76,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":56,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":20,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":2,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":61,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":80,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":78,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":133,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":33,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":58,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":107,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":92,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":68,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":13,"active":true,"botEnabled":true,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":113,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":35,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":98,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":102,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":27,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":14,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":15,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":72,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":37,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":16,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":50,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":134,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":91,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":44,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":17,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":412,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":18,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":48,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":23,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":4,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":29,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":77,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":6,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":110,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":67,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":45,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":161,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":254,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":112,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":8,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":106,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":19,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":101,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":5,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":157,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":83,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":154,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":238,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":115,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":26,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":143,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true}]}
@@ -0,0 +1 @@
1
+ {"summonerId":30743211,"modifyDate":1395674770000,"champions":[{"id":75,"stats":{"totalSessionsPlayed":2,"totalSessionsLost":0,"totalSessionsWon":2,"totalChampionKills":16,"totalDamageDealt":262054,"totalDamageTaken":87268,"mostChampionKillsPerSession":15,"totalMinionKills":247,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":11,"totalGoldEarned":25119,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":143082,"totalMagicDamageDealt":108055,"totalFirstBlood":0,"totalAssists":17,"maxChampionsKilled":15,"maxNumDeaths":7}},{"id":8,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":1,"totalSessionsWon":0,"totalChampionKills":1,"totalDamageDealt":124705,"totalDamageTaken":28743,"mostChampionKillsPerSession":1,"totalMinionKills":197,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":6,"totalGoldEarned":9714,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":12779,"totalMagicDamageDealt":110732,"totalFirstBlood":0,"totalAssists":5,"maxChampionsKilled":1,"maxNumDeaths":6}},{"id":51,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":3,"totalSessionsWon":0,"totalChampionKills":0,"totalDamageDealt":207263,"totalDamageTaken":45737,"mostChampionKillsPerSession":0,"totalMinionKills":387,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":18,"totalGoldEarned":20656,"mostSpellsCast":0,"totalTurretsKilled":0,"totalPhysicalDamageDealt":202278,"totalMagicDamageDealt":4982,"totalFirstBlood":0,"totalAssists":18,"maxChampionsKilled":0,"maxNumDeaths":7}},{"id":12,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":3,"totalDamageDealt":36405,"totalDamageTaken":43304,"mostChampionKillsPerSession":3,"totalMinionKills":35,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":8,"totalGoldEarned":12509,"mostSpellsCast":0,"totalTurretsKilled":0,"totalPhysicalDamageDealt":9808,"totalMagicDamageDealt":25954,"totalFirstBlood":0,"totalAssists":14,"maxChampionsKilled":3,"maxNumDeaths":8}},{"id":17,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":5,"totalDamageDealt":110053,"totalDamageTaken":31142,"mostChampionKillsPerSession":5,"totalMinionKills":83,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":6,"totalGoldEarned":15741,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":18764,"totalMagicDamageDealt":90066,"totalFirstBlood":0,"totalAssists":18,"maxChampionsKilled":5,"maxNumDeaths":6}},{"id":44,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":3,"totalDamageDealt":87358,"totalDamageTaken":83478,"mostChampionKillsPerSession":3,"totalMinionKills":116,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":17,"totalGoldEarned":24134,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":22376,"totalMagicDamageDealt":56960,"totalFirstBlood":0,"totalAssists":30,"maxChampionsKilled":3,"maxNumDeaths":8}},{"id":18,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":153258,"totalDamageTaken":19584,"mostChampionKillsPerSession":8,"totalMinionKills":190,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":3,"totalGoldEarned":13873,"mostSpellsCast":0,"totalTurretsKilled":6,"totalPhysicalDamageDealt":119960,"totalMagicDamageDealt":32403,"totalFirstBlood":0,"totalAssists":7,"maxChampionsKilled":8,"maxNumDeaths":3}},{"id":80,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":2,"totalSessionsWon":2,"totalChampionKills":20,"totalDamageDealt":571984,"totalDamageTaken":89098,"mostChampionKillsPerSession":8,"totalMinionKills":265,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":19,"totalGoldEarned":41601,"mostSpellsCast":0,"totalTurretsKilled":3,"totalPhysicalDamageDealt":465440,"totalMagicDamageDealt":34004,"totalFirstBlood":0,"totalAssists":27,"maxChampionsKilled":8,"maxNumDeaths":6}},{"id":77,"stats":{"totalSessionsPlayed":5,"totalSessionsLost":1,"totalSessionsWon":4,"totalChampionKills":16,"totalDamageDealt":680797,"totalDamageTaken":115504,"mostChampionKillsPerSession":5,"totalMinionKills":208,"totalDoubleKills":1,"totalTripleKills":1,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":14,"totalGoldEarned":49853,"mostSpellsCast":0,"totalTurretsKilled":5,"totalPhysicalDamageDealt":243403,"totalMagicDamageDealt":382248,"totalFirstBlood":0,"totalAssists":32,"maxChampionsKilled":5,"maxNumDeaths":7}},{"id":16,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":3,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":161271,"totalDamageTaken":99190,"mostChampionKillsPerSession":4,"totalMinionKills":133,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":29,"totalGoldEarned":40330,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":22820,"totalMagicDamageDealt":137673,"totalFirstBlood":0,"totalAssists":50,"maxChampionsKilled":4,"maxNumDeaths":11}},{"id":236,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":7,"totalDamageDealt":171085,"totalDamageTaken":20598,"mostChampionKillsPerSession":7,"totalMinionKills":198,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":3,"totalGoldEarned":14511,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":152061,"totalMagicDamageDealt":17587,"totalFirstBlood":0,"totalAssists":10,"maxChampionsKilled":7,"maxNumDeaths":3}},{"id":56,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":12,"totalDamageDealt":472425,"totalDamageTaken":114239,"mostChampionKillsPerSession":5,"totalMinionKills":218,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":21,"totalGoldEarned":35797,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":375303,"totalMagicDamageDealt":49732,"totalFirstBlood":0,"totalAssists":36,"maxChampionsKilled":5,"maxNumDeaths":10}},{"id":89,"stats":{"totalSessionsPlayed":5,"totalSessionsLost":3,"totalSessionsWon":2,"totalChampionKills":7,"totalDamageDealt":187286,"totalDamageTaken":160701,"mostChampionKillsPerSession":4,"totalMinionKills":254,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":37,"totalGoldEarned":47666,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":63835,"totalMagicDamageDealt":100795,"totalFirstBlood":0,"totalAssists":48,"maxChampionsKilled":4,"maxNumDeaths":13}},{"id":58,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":1,"totalSessionsWon":3,"totalChampionKills":21,"totalDamageDealt":571827,"totalDamageTaken":170383,"mostChampionKillsPerSession":6,"totalMinionKills":860,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":26,"totalGoldEarned":52015,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":442380,"totalMagicDamageDealt":120905,"totalFirstBlood":0,"totalAssists":26,"maxChampionsKilled":6,"maxNumDeaths":11}},{"id":412,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":3,"totalSessionsWon":1,"totalChampionKills":12,"totalDamageDealt":112062,"totalDamageTaken":108974,"mostChampionKillsPerSession":6,"totalMinionKills":88,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":31,"totalGoldEarned":37044,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":29849,"totalMagicDamageDealt":79750,"totalFirstBlood":0,"totalAssists":47,"maxChampionsKilled":6,"maxNumDeaths":9}},{"id":24,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":10,"totalDamageDealt":95820,"totalDamageTaken":29948,"mostChampionKillsPerSession":10,"totalMinionKills":126,"totalDoubleKills":2,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":4,"totalGoldEarned":12851,"mostSpellsCast":0,"totalTurretsKilled":3,"totalPhysicalDamageDealt":83566,"totalMagicDamageDealt":12254,"totalFirstBlood":0,"totalAssists":10,"maxChampionsKilled":10,"maxNumDeaths":4}},{"id":54,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":309294,"totalDamageTaken":80384,"mostChampionKillsPerSession":6,"totalMinionKills":360,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":17,"totalGoldEarned":29313,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":94109,"totalMagicDamageDealt":199556,"totalFirstBlood":0,"totalAssists":16,"maxChampionsKilled":6,"maxNumDeaths":7}},{"id":28,"stats":{"totalSessionsPlayed":11,"totalSessionsLost":5,"totalSessionsWon":6,"totalChampionKills":89,"totalDamageDealt":1711729,"totalDamageTaken":320477,"mostChampionKillsPerSession":15,"totalMinionKills":692,"totalDoubleKills":6,"totalTripleKills":2,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":67,"totalGoldEarned":145570,"mostSpellsCast":0,"totalTurretsKilled":7,"totalPhysicalDamageDealt":879483,"totalMagicDamageDealt":690013,"totalFirstBlood":0,"totalAssists":104,"maxChampionsKilled":15,"maxNumDeaths":11}},{"id":121,"stats":{"totalSessionsPlayed":10,"totalSessionsLost":7,"totalSessionsWon":3,"totalChampionKills":61,"totalDamageDealt":1999756,"totalDamageTaken":362074,"mostChampionKillsPerSession":13,"totalMinionKills":682,"totalDoubleKills":3,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":66,"totalGoldEarned":133391,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":1778958,"totalMagicDamageDealt":25817,"totalFirstBlood":0,"totalAssists":69,"maxChampionsKilled":13,"maxNumDeaths":10}},{"id":32,"stats":{"totalSessionsPlayed":6,"totalSessionsLost":3,"totalSessionsWon":3,"totalChampionKills":33,"totalDamageDealt":1036468,"totalDamageTaken":219241,"mostChampionKillsPerSession":12,"totalMinionKills":330,"totalDoubleKills":3,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":35,"totalGoldEarned":79448,"mostSpellsCast":0,"totalTurretsKilled":4,"totalPhysicalDamageDealt":150932,"totalMagicDamageDealt":789852,"totalFirstBlood":0,"totalAssists":72,"maxChampionsKilled":12,"maxNumDeaths":12}},{"id":0,"stats":{"totalSessionsPlayed":73,"totalSessionsLost":38,"totalSessionsWon":35,"totalChampionKills":340,"killingSpree":166,"totalDamageDealt":9062900,"totalDamageTaken":2230067,"mostChampionKillsPerSession":15,"totalMinionKills":5669,"totalDoubleKills":21,"totalTripleKills":3,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":438,"totalGoldEarned":841136,"mostSpellsCast":0,"totalTurretsKilled":45,"totalPhysicalDamageDealt":5311186,"totalMagicDamageDealt":3069338,"totalNeutralMinionsKilled":3611,"totalFirstBlood":0,"totalAssists":656,"totalHeal":539154,"maxLargestKillingSpree":12,"maxLargestCriticalStrike":1348,"maxChampionsKilled":15,"maxNumDeaths":13,"maxTimePlayed":3529,"maxTimeSpentLiving":1968,"normalGamesPlayed":0,"rankedSoloGamesPlayed":0,"rankedPremadeGamesPlayed":0,"botGamesPlayed":0}}]}
@@ -0,0 +1 @@
1
+ {"summonerId":30743211,"playerStatSummaries":[{"playerStatSummaryType":"AramUnranked5x5","wins":30,"modifyDate":1394006312000,"aggregatedStats":{"totalChampionKills":493,"totalTurretsKilled":24,"totalAssists":1276}},{"playerStatSummaryType":"CAP5x5","wins":0,"modifyDate":1396112296000,"aggregatedStats":{"totalChampionKills":10,"totalMinionKills":591,"totalTurretsKilled":2,"totalNeutralMinionsKilled":9,"totalAssists":11}},{"playerStatSummaryType":"CoopVsAI","wins":91,"modifyDate":1389918948000,"aggregatedStats":{"totalChampionKills":857,"totalMinionKills":10338,"totalTurretsKilled":168,"totalNeutralMinionsKilled":3596,"totalAssists":1243}},{"playerStatSummaryType":"OdinUnranked","wins":3,"modifyDate":1392040383000,"aggregatedStats":{"totalChampionKills":53,"totalAssists":47,"maxChampionsKilled":13,"averageNodeCapture":4,"averageNodeNeutralize":3,"averageTeamObjective":1,"averageTotalPlayerScore":929,"averageCombatPlayerScore":359,"averageObjectivePlayerScore":572,"averageNodeCaptureAssist":1,"averageNodeNeutralizeAssist":1,"maxNodeCapture":10,"maxNodeNeutralize":6,"maxTeamObjective":2,"maxTotalPlayerScore":1299,"maxCombatPlayerScore":718,"maxObjectivePlayerScore":898,"maxNodeCaptureAssist":2,"maxNodeNeutralizeAssist":3,"totalNodeNeutralize":26,"totalNodeCapture":36,"averageChampionsKilled":7,"averageNumDeaths":8,"averageAssists":6,"maxAssists":10}},{"playerStatSummaryType":"RankedSolo5x5","wins":35,"losses":39,"modifyDate":1395674770000,"aggregatedStats":{"totalChampionKills":340,"totalMinionKills":5730,"totalTurretsKilled":45,"totalNeutralMinionsKilled":3675,"totalAssists":660}},{"playerStatSummaryType":"SummonersRift6x6","wins":2,"modifyDate":1396112296000,"aggregatedStats":{"totalChampionKills":28,"totalMinionKills":251,"totalTurretsKilled":1,"totalNeutralMinionsKilled":212,"totalAssists":66}},{"playerStatSummaryType":"Unranked","wins":745,"modifyDate":1396281595000,"aggregatedStats":{"totalChampionKills":7005,"totalMinionKills":120156,"totalTurretsKilled":1091,"totalNeutralMinionsKilled":63276,"totalAssists":12740}},{"playerStatSummaryType":"Unranked3x3","wins":5,"modifyDate":1389918948000,"aggregatedStats":{"totalChampionKills":66,"totalMinionKills":1093,"totalTurretsKilled":3,"totalNeutralMinionsKilled":186,"totalAssists":59}},{"playerStatSummaryType":"URF","wins":3,"modifyDate":1396368924000,"aggregatedStats":{"totalChampionKills":48,"totalMinionKills":527,"totalTurretsKilled":1,"totalNeutralMinionsKilled":245,"totalAssists":82}}]}
@@ -1,2316 +1,2316 @@
1
1
  {
2
- "30743211": {
3
- "summonerId": 30743211,
2
+ "33249714": {
4
3
  "pages": [
5
4
  {
6
- "id": 34170136,
7
- "name": "AD (more atk)",
8
- "current": false,
9
5
  "talents": [
10
6
  {
11
- "id": 4212,
12
- "name": "Recovery",
13
- "rank": 2
7
+ "rank": 3,
8
+ "name": "Hardiness",
9
+ "id": 4233
10
+ },
11
+ {
12
+ "rank": 1,
13
+ "name": "Swiftness",
14
+ "id": 4242
14
15
  },
15
16
  {
16
- "id": 4211,
17
+ "rank": 2,
17
18
  "name": "Block",
18
- "rank": 2
19
+ "id": 4211
19
20
  },
20
21
  {
21
- "id": 4134,
22
- "name": "Executioner",
23
- "rank": 3
22
+ "rank": 2,
23
+ "name": "Enchanted Armor",
24
+ "id": 4213
24
25
  },
25
26
  {
26
- "id": 4124,
27
+ "rank": 1,
27
28
  "name": "Feast",
28
- "rank": 1
29
+ "id": 4124
29
30
  },
30
31
  {
31
- "id": 4114,
32
+ "rank": 1,
32
33
  "name": "Butcher",
33
- "rank": 1
34
+ "id": 4114
34
35
  },
35
36
  {
36
- "id": 4151,
37
- "name": "Frenzy",
38
- "rank": 1
37
+ "rank": 1,
38
+ "name": "Second Wind",
39
+ "id": 4251
39
40
  },
40
41
  {
41
- "id": 4222,
42
+ "rank": 3,
42
43
  "name": "Veteran's Scars",
43
- "rank": 3
44
+ "id": 4222
44
45
  },
45
46
  {
46
- "id": 4221,
47
+ "rank": 1,
47
48
  "name": "Unyielding",
48
- "rank": 1
49
+ "id": 4221
49
50
  },
50
51
  {
51
- "id": 4152,
52
- "name": "Devastating Strikes",
53
- "rank": 3
52
+ "rank": 1,
53
+ "name": "Runic Blessing",
54
+ "id": 4253
54
55
  },
55
56
  {
56
- "id": 4122,
57
- "name": "Brute Force",
58
- "rank": 3
57
+ "rank": 1,
58
+ "name": "Tenacious",
59
+ "id": 4262
60
+ },
61
+ {
62
+ "rank": 1,
63
+ "name": "Oppression",
64
+ "id": 4231
59
65
  },
60
66
  {
61
- "id": 4111,
67
+ "rank": 1,
62
68
  "name": "Double-Edged Sword",
63
- "rank": 1
69
+ "id": 4111
64
70
  },
65
71
  {
66
- "id": 4132,
67
- "name": "Martial Mastery",
68
- "rank": 1
72
+ "rank": 3,
73
+ "name": "Perseverance",
74
+ "id": 4241
69
75
  },
70
76
  {
71
- "id": 4142,
72
- "name": "Warlord",
73
- "rank": 3
77
+ "rank": 1,
78
+ "name": "Resistance",
79
+ "id": 4234
74
80
  },
75
81
  {
76
- "id": 4232,
82
+ "rank": 1,
77
83
  "name": "Juggernaut",
78
- "rank": 1
84
+ "id": 4232
79
85
  },
80
86
  {
81
- "id": 4162,
82
- "name": "Havoc",
83
- "rank": 1
87
+ "rank": 2,
88
+ "name": "Brute Force",
89
+ "id": 4122
84
90
  },
85
91
  {
86
- "id": 4112,
92
+ "rank": 3,
87
93
  "name": "Fury",
88
- "rank": 3
94
+ "id": 4112
95
+ },
96
+ {
97
+ "rank": 1,
98
+ "name": "Spell Weaving",
99
+ "id": 4131
89
100
  }
90
- ]
101
+ ],
102
+ "current": true,
103
+ "name": "tank",
104
+ "id": 36928738
91
105
  },
92
106
  {
93
- "id": 34170137,
94
- "name": "AD (more def)",
95
- "current": false,
96
107
  "talents": [
97
108
  {
98
- "id": 4212,
99
- "name": "Recovery",
100
- "rank": 2
109
+ "rank": 3,
110
+ "name": "Hardiness",
111
+ "id": 4233
101
112
  },
102
113
  {
103
- "id": 4242,
104
- "name": "Swiftness",
105
- "rank": 1
114
+ "rank": 2,
115
+ "name": "Block",
116
+ "id": 4211
106
117
  },
107
118
  {
108
- "id": 4211,
109
- "name": "Block",
110
- "rank": 2
119
+ "rank": 1,
120
+ "name": "Reinforced Armor",
121
+ "id": 4243
111
122
  },
112
123
  {
113
- "id": 4213,
114
- "name": "Enchanted Armor",
115
- "rank": 2
124
+ "rank": 2,
125
+ "name": "Tough Skin",
126
+ "id": 4214
116
127
  },
117
128
  {
118
- "id": 4124,
119
- "name": "Feast",
120
- "rank": 1
129
+ "rank": 2,
130
+ "name": "Enchanted Armor",
131
+ "id": 4213
121
132
  },
122
133
  {
123
- "id": 4251,
124
- "name": "Second Wind",
125
- "rank": 1
134
+ "rank": 1,
135
+ "name": "Feast",
136
+ "id": 4124
126
137
  },
127
138
  {
128
- "id": 4114,
139
+ "rank": 1,
129
140
  "name": "Butcher",
130
- "rank": 1
141
+ "id": 4114
131
142
  },
132
143
  {
133
- "id": 4222,
144
+ "rank": 3,
134
145
  "name": "Veteran's Scars",
135
- "rank": 3
146
+ "id": 4222
136
147
  },
137
148
  {
138
- "id": 4113,
149
+ "rank": 4,
139
150
  "name": "Sorcery",
140
- "rank": 4
151
+ "id": 4113
141
152
  },
142
153
  {
143
- "id": 4221,
154
+ "rank": 1,
144
155
  "name": "Unyielding",
145
- "rank": 1
156
+ "id": 4221
146
157
  },
147
158
  {
148
- "id": 4252,
159
+ "rank": 4,
149
160
  "name": "Legendary Guardian",
150
- "rank": 4
161
+ "id": 4252
151
162
  },
152
163
  {
153
- "id": 4262,
164
+ "rank": 1,
154
165
  "name": "Tenacious",
155
- "rank": 1
156
- },
157
- {
158
- "id": 4231,
159
- "name": "Oppression",
160
- "rank": 1
166
+ "id": 4262
161
167
  },
162
168
  {
163
- "id": 4241,
164
- "name": "Perseverance",
165
- "rank": 3
166
- },
167
- {
168
- "id": 4234,
169
+ "rank": 1,
169
170
  "name": "Resistance",
170
- "rank": 1
171
+ "id": 4234
171
172
  },
172
173
  {
173
- "id": 4233,
174
- "name": "Hardiness",
175
- "rank": 1
174
+ "rank": 1,
175
+ "name": "Juggernaut",
176
+ "id": 4232
176
177
  },
177
178
  {
178
- "id": 4232,
179
- "name": "Juggernaut",
180
- "rank": 1
179
+ "rank": 2,
180
+ "name": "Brute Force",
181
+ "id": 4122
181
182
  }
182
- ]
183
+ ],
184
+ "current": false,
185
+ "name": "jungler",
186
+ "id": 36928739
183
187
  },
184
188
  {
185
- "id": 34170138,
186
- "name": "AD (more atk, cdr)",
187
- "current": false,
188
189
  "talents": [
189
190
  {
190
- "id": 4211,
191
- "name": "Block",
192
- "rank": 2
193
- },
194
- {
195
- "id": 4134,
196
- "name": "Executioner",
197
- "rank": 3
191
+ "rank": 3,
192
+ "name": "Hardiness",
193
+ "id": 4233
198
194
  },
199
195
  {
200
- "id": 4213,
201
- "name": "Enchanted Armor",
202
- "rank": 2
196
+ "rank": 1,
197
+ "name": "Swiftness",
198
+ "id": 4242
203
199
  },
204
200
  {
205
- "id": 4222,
206
- "name": "Veteran's Scars",
207
- "rank": 3
201
+ "rank": 1,
202
+ "name": "Mental Force",
203
+ "id": 4123
208
204
  },
209
205
  {
210
- "id": 4113,
211
- "name": "Sorcery",
212
- "rank": 4
206
+ "rank": 2,
207
+ "name": "Block",
208
+ "id": 4211
213
209
  },
214
210
  {
215
- "id": 4221,
216
- "name": "Unyielding",
217
- "rank": 1
211
+ "rank": 2,
212
+ "name": "Enchanted Armor",
213
+ "id": 4213
218
214
  },
219
215
  {
220
- "id": 4122,
221
- "name": "Brute Force",
222
- "rank": 3
216
+ "rank": 3,
217
+ "name": "Veteran's Scars",
218
+ "id": 4222
223
219
  },
224
220
  {
225
- "id": 4152,
226
- "name": "Devastating Strikes",
227
- "rank": 3
221
+ "rank": 4,
222
+ "name": "Fury",
223
+ "id": 4112
228
224
  },
229
225
  {
230
- "id": 4141,
231
- "name": "Blade Weaving",
232
- "rank": 1
226
+ "rank": 1,
227
+ "name": "Unyielding",
228
+ "id": 4221
233
229
  },
234
230
  {
235
- "id": 4111,
236
- "name": "Double-Edged Sword",
237
- "rank": 1
231
+ "rank": 4,
232
+ "name": "Legendary Guardian",
233
+ "id": 4252
238
234
  },
239
235
  {
240
- "id": 4132,
241
- "name": "Martial Mastery",
242
- "rank": 1
236
+ "rank": 3,
237
+ "name": "Brute Force",
238
+ "id": 4122
243
239
  },
244
240
  {
245
- "id": 4142,
246
- "name": "Warlord",
247
- "rank": 3
241
+ "rank": 1,
242
+ "name": "Tenacious",
243
+ "id": 4262
248
244
  },
249
245
  {
250
- "id": 4232,
251
- "name": "Juggernaut",
252
- "rank": 1
246
+ "rank": 3,
247
+ "name": "Perseverance",
248
+ "id": 4241
253
249
  },
254
250
  {
255
- "id": 4162,
256
- "name": "Havoc",
257
- "rank": 1
251
+ "rank": 1,
252
+ "name": "Executioner",
253
+ "id": 4134
258
254
  },
259
255
  {
260
- "id": 4131,
261
- "name": "Spell Weaving",
262
- "rank": 1
256
+ "rank": 1,
257
+ "name": "Juggernaut",
258
+ "id": 4232
263
259
  }
264
- ]
260
+ ],
261
+ "current": false,
262
+ "name": "AD",
263
+ "id": 36928740
265
264
  },
266
265
  {
267
- "id": 34170139,
268
- "name": "AD (more def, cdr)",
269
- "current": false,
270
266
  "talents": [
271
267
  {
272
- "id": 4212,
268
+ "rank": 2,
273
269
  "name": "Recovery",
274
- "rank": 2
270
+ "id": 4212
275
271
  },
276
272
  {
277
- "id": 4242,
278
- "name": "Swiftness",
279
- "rank": 1
273
+ "rank": 2,
274
+ "name": "Tough Skin",
275
+ "id": 4214
280
276
  },
281
277
  {
282
- "id": 4211,
278
+ "rank": 1,
283
279
  "name": "Block",
284
- "rank": 2
280
+ "id": 4211
285
281
  },
286
282
  {
287
- "id": 4214,
288
- "name": "Tough Skin",
289
- "rank": 2
290
- },
291
- {
292
- "id": 4213,
293
- "name": "Enchanted Armor",
294
- "rank": 2
283
+ "rank": 3,
284
+ "name": "Executioner",
285
+ "id": 4134
295
286
  },
296
287
  {
297
- "id": 4234,
298
- "name": "Resistance",
299
- "rank": 3
288
+ "rank": 1,
289
+ "name": "Feast",
290
+ "id": 4124
300
291
  },
301
292
  {
302
- "id": 4114,
293
+ "rank": 1,
303
294
  "name": "Butcher",
304
- "rank": 1
295
+ "id": 4114
305
296
  },
306
297
  {
307
- "id": 4112,
308
- "name": "Fury",
309
- "rank": 4
298
+ "rank": 3,
299
+ "name": "Veteran's Scars",
300
+ "id": 4222
310
301
  },
311
302
  {
312
- "id": 4113,
303
+ "rank": 4,
313
304
  "name": "Sorcery",
314
- "rank": 4
305
+ "id": 4113
315
306
  },
316
307
  {
317
- "id": 4221,
318
- "name": "Unyielding",
319
- "rank": 1
308
+ "rank": 1,
309
+ "name": "Dangerous Game",
310
+ "id": 4144
320
311
  },
321
312
  {
322
- "id": 4252,
323
- "name": "Legendary Guardian",
324
- "rank": 4
313
+ "rank": 3,
314
+ "name": "Devastating Strikes",
315
+ "id": 4152
325
316
  },
326
317
  {
327
- "id": 4262,
328
- "name": "Tenacious",
329
- "rank": 1
318
+ "rank": 3,
319
+ "name": "Mental Force",
320
+ "id": 4123
330
321
  },
331
322
  {
332
- "id": 4241,
333
- "name": "Perseverance",
334
- "rank": 3
323
+ "rank": 1,
324
+ "name": "Arcane Mastery",
325
+ "id": 4133
326
+ },
327
+ {
328
+ "rank": 3,
329
+ "name": "Archmage",
330
+ "id": 4143
331
+ },
332
+ {
333
+ "rank": 1,
334
+ "name": "Havoc",
335
+ "id": 4162
335
336
  }
336
- ]
337
+ ],
338
+ "current": false,
339
+ "name": "AP",
340
+ "id": 36928741
337
341
  },
338
342
  {
339
- "id": 34170140,
340
- "name": "Jungle AD (more atk)",
341
- "current": false,
342
343
  "talents": [
343
344
  {
344
- "id": 4211,
345
- "name": "Block",
346
- "rank": 2
345
+ "rank": 2,
346
+ "name": "Recovery",
347
+ "id": 4212
347
348
  },
348
349
  {
349
- "id": 4214,
350
- "name": "Tough Skin",
351
- "rank": 2
350
+ "rank": 2,
351
+ "name": "Block",
352
+ "id": 4211
352
353
  },
353
354
  {
354
- "id": 4134,
355
+ "rank": 3,
355
356
  "name": "Executioner",
356
- "rank": 3
357
- },
358
- {
359
- "id": 4212,
360
- "name": "Recovery",
361
- "rank": 1
357
+ "id": 4134
362
358
  },
363
359
  {
364
- "id": 4124,
360
+ "rank": 1,
365
361
  "name": "Feast",
366
- "rank": 1
362
+ "id": 4124
367
363
  },
368
364
  {
369
- "id": 4114,
365
+ "rank": 1,
370
366
  "name": "Butcher",
371
- "rank": 1
367
+ "id": 4114
368
+ },
369
+ {
370
+ "rank": 1,
371
+ "name": "Frenzy",
372
+ "id": 4151
372
373
  },
373
374
  {
374
- "id": 4222,
375
+ "rank": 3,
375
376
  "name": "Veteran's Scars",
376
- "rank": 3
377
+ "id": 4222
377
378
  },
378
379
  {
379
- "id": 4221,
380
+ "rank": 1,
380
381
  "name": "Unyielding",
381
- "rank": 1
382
+ "id": 4221
382
383
  },
383
384
  {
384
- "id": 4152,
385
- "name": "Devastating Strikes",
386
- "rank": 3
385
+ "rank": 1,
386
+ "name": "Dangerous Game",
387
+ "id": 4144
387
388
  },
388
389
  {
389
- "id": 4122,
390
+ "rank": 3,
390
391
  "name": "Brute Force",
391
- "rank": 3
392
+ "id": 4122
392
393
  },
393
394
  {
394
- "id": 4111,
395
- "name": "Double-Edged Sword",
396
- "rank": 1
395
+ "rank": 3,
396
+ "name": "Devastating Strikes",
397
+ "id": 4152
398
+ },
399
+ {
400
+ "rank": 1,
401
+ "name": "Oppression",
402
+ "id": 4231
397
403
  },
398
404
  {
399
- "id": 4132,
405
+ "rank": 1,
400
406
  "name": "Martial Mastery",
401
- "rank": 1
407
+ "id": 4132
402
408
  },
403
409
  {
404
- "id": 4142,
410
+ "rank": 3,
405
411
  "name": "Warlord",
406
- "rank": 3
412
+ "id": 4142
407
413
  },
408
414
  {
409
- "id": 4162,
415
+ "rank": 1,
410
416
  "name": "Havoc",
411
- "rank": 1
417
+ "id": 4162
412
418
  },
413
419
  {
414
- "id": 4112,
420
+ "rank": 3,
415
421
  "name": "Fury",
416
- "rank": 3
417
- },
418
- {
419
- "id": 4131,
420
- "name": "Spell Weaving",
421
- "rank": 1
422
+ "id": 4112
422
423
  }
423
- ]
424
+ ],
425
+ "current": false,
426
+ "name": "ADC",
427
+ "id": 36928742
424
428
  },
425
429
  {
426
- "id": 34170141,
427
- "name": "Jungle AD (more def)",
428
- "current": false,
429
430
  "talents": [
430
431
  {
431
- "id": 4242,
432
- "name": "Swiftness",
433
- "rank": 1
432
+ "rank": 2,
433
+ "name": "Recovery",
434
+ "id": 4212
434
435
  },
435
436
  {
436
- "id": 4211,
437
+ "rank": 2,
437
438
  "name": "Block",
438
- "rank": 2
439
- },
440
- {
441
- "id": 4214,
442
- "name": "Tough Skin",
443
- "rank": 2
439
+ "id": 4211
444
440
  },
445
441
  {
446
- "id": 4213,
447
- "name": "Enchanted Armor",
448
- "rank": 2
442
+ "rank": 3,
443
+ "name": "Executioner",
444
+ "id": 4134
449
445
  },
450
446
  {
451
- "id": 4124,
452
- "name": "Feast",
453
- "rank": 1
447
+ "rank": 1,
448
+ "name": "Frenzy",
449
+ "id": 4151
454
450
  },
455
451
  {
456
- "id": 4114,
457
- "name": "Butcher",
458
- "rank": 1
452
+ "rank": 3,
453
+ "name": "Veteran's Scars",
454
+ "id": 4222
459
455
  },
460
456
  {
461
- "id": 4251,
462
- "name": "Second Wind",
463
- "rank": 1
457
+ "rank": 4,
458
+ "name": "Fury",
459
+ "id": 4112
464
460
  },
465
461
  {
466
- "id": 4222,
467
- "name": "Veteran's Scars",
468
- "rank": 3
462
+ "rank": 1,
463
+ "name": "Dangerous Game",
464
+ "id": 4144
469
465
  },
470
466
  {
471
- "id": 4221,
467
+ "rank": 1,
472
468
  "name": "Unyielding",
473
- "rank": 1
469
+ "id": 4221
474
470
  },
475
471
  {
476
- "id": 4122,
472
+ "rank": 3,
477
473
  "name": "Brute Force",
478
- "rank": 3
479
- },
480
- {
481
- "id": 4262,
482
- "name": "Tenacious",
483
- "rank": 1
474
+ "id": 4122
484
475
  },
485
476
  {
486
- "id": 4231,
487
- "name": "Oppression",
488
- "rank": 1
477
+ "rank": 3,
478
+ "name": "Devastating Strikes",
479
+ "id": 4152
489
480
  },
490
481
  {
491
- "id": 4252,
492
- "name": "Legendary Guardian",
493
- "rank": 3
482
+ "rank": 1,
483
+ "name": "Double-Edged Sword",
484
+ "id": 4111
494
485
  },
495
486
  {
496
- "id": 4132,
487
+ "rank": 1,
497
488
  "name": "Martial Mastery",
498
- "rank": 1
489
+ "id": 4132
499
490
  },
500
491
  {
501
- "id": 4241,
502
- "name": "Perseverance",
503
- "rank": 3
492
+ "rank": 3,
493
+ "name": "Warlord",
494
+ "id": 4142
504
495
  },
505
496
  {
506
- "id": 4232,
497
+ "rank": 1,
507
498
  "name": "Juggernaut",
508
- "rank": 1
499
+ "id": 4232
509
500
  },
510
501
  {
511
- "id": 4112,
512
- "name": "Fury",
513
- "rank": 3
502
+ "rank": 1,
503
+ "name": "Havoc",
504
+ "id": 4162
514
505
  }
515
- ]
506
+ ],
507
+ "current": false,
508
+ "name": "Sivir",
509
+ "id": 36928743
516
510
  },
517
511
  {
518
- "id": 34170142,
519
- "name": "Jungle AD (more atk, cdr)",
520
- "current": false,
521
512
  "talents": [
522
513
  {
523
- "id": 4212,
524
- "name": "Recovery",
525
- "rank": 2
526
- },
527
- {
528
- "id": 4211,
514
+ "rank": 2,
529
515
  "name": "Block",
530
- "rank": 2
516
+ "id": 4211
531
517
  },
532
518
  {
533
- "id": 4214,
519
+ "rank": 2,
534
520
  "name": "Tough Skin",
535
- "rank": 2
521
+ "id": 4214
536
522
  },
537
523
  {
538
- "id": 4134,
524
+ "rank": 3,
539
525
  "name": "Executioner",
540
- "rank": 3
526
+ "id": 4134
541
527
  },
542
528
  {
543
- "id": 4124,
529
+ "rank": 1,
530
+ "name": "Arcane Blade",
531
+ "id": 4154
532
+ },
533
+ {
534
+ "rank": 1,
544
535
  "name": "Feast",
545
- "rank": 1
536
+ "id": 4124
546
537
  },
547
538
  {
548
- "id": 4114,
539
+ "rank": 1,
549
540
  "name": "Butcher",
550
- "rank": 1
541
+ "id": 4114
551
542
  },
552
543
  {
553
- "id": 4222,
544
+ "rank": 3,
554
545
  "name": "Veteran's Scars",
555
- "rank": 3
546
+ "id": 4222
556
547
  },
557
548
  {
558
- "id": 4113,
549
+ "rank": 4,
559
550
  "name": "Sorcery",
560
- "rank": 4
551
+ "id": 4113
561
552
  },
562
553
  {
563
- "id": 4144,
564
- "name": "Dangerous Game",
565
- "rank": 1
554
+ "rank": 1,
555
+ "name": "Unyielding",
556
+ "id": 4221
566
557
  },
567
558
  {
568
- "id": 4122,
569
- "name": "Brute Force",
570
- "rank": 3
559
+ "rank": 3,
560
+ "name": "Devastating Strikes",
561
+ "id": 4152
571
562
  },
572
563
  {
573
- "id": 4152,
574
- "name": "Devastating Strikes",
575
- "rank": 3
564
+ "rank": 3,
565
+ "name": "Mental Force",
566
+ "id": 4123
576
567
  },
577
568
  {
578
- "id": 4132,
579
- "name": "Martial Mastery",
580
- "rank": 1
569
+ "rank": 1,
570
+ "name": "Arcane Mastery",
571
+ "id": 4133
581
572
  },
582
573
  {
583
- "id": 4142,
584
- "name": "Warlord",
585
- "rank": 3
574
+ "rank": 3,
575
+ "name": "Archmage",
576
+ "id": 4143
577
+ },
578
+ {
579
+ "rank": 1,
580
+ "name": "Juggernaut",
581
+ "id": 4232
586
582
  },
587
583
  {
588
- "id": 4162,
584
+ "rank": 1,
589
585
  "name": "Havoc",
590
- "rank": 1
586
+ "id": 4162
591
587
  }
592
- ]
588
+ ],
589
+ "current": false,
590
+ "name": "Eve",
591
+ "id": 36928744
593
592
  },
594
593
  {
595
- "id": 34170143,
596
- "name": "Jungle AD (more def, cdr)",
597
594
  "current": false,
595
+ "name": "@@!PaG3!@@36928745",
596
+ "id": 36928745
597
+ }
598
+ ],
599
+ "summonerId": 33249714
600
+ },
601
+ "30743211": {
602
+ "pages": [
603
+ {
598
604
  "talents": [
599
605
  {
600
- "id": 4212,
606
+ "rank": 2,
601
607
  "name": "Recovery",
602
- "rank": 2
603
- },
604
- {
605
- "id": 4242,
606
- "name": "Swiftness",
607
- "rank": 1
608
+ "id": 4212
608
609
  },
609
610
  {
610
- "id": 4211,
611
+ "rank": 2,
611
612
  "name": "Block",
612
- "rank": 2
613
+ "id": 4211
613
614
  },
614
615
  {
615
- "id": 4214,
616
- "name": "Tough Skin",
617
- "rank": 2
616
+ "rank": 3,
617
+ "name": "Executioner",
618
+ "id": 4134
618
619
  },
619
620
  {
620
- "id": 4124,
621
+ "rank": 1,
621
622
  "name": "Feast",
622
- "rank": 1
623
- },
624
- {
625
- "id": 4251,
626
- "name": "Second Wind",
627
- "rank": 1
623
+ "id": 4124
628
624
  },
629
625
  {
630
- "id": 4114,
626
+ "rank": 1,
631
627
  "name": "Butcher",
632
- "rank": 1
628
+ "id": 4114
633
629
  },
634
630
  {
635
- "id": 4112,
636
- "name": "Fury",
637
- "rank": 4
631
+ "rank": 1,
632
+ "name": "Frenzy",
633
+ "id": 4151
638
634
  },
639
635
  {
640
- "id": 4222,
636
+ "rank": 3,
641
637
  "name": "Veteran's Scars",
642
- "rank": 3
638
+ "id": 4222
643
639
  },
644
640
  {
645
- "id": 4221,
641
+ "rank": 1,
646
642
  "name": "Unyielding",
647
- "rank": 1
643
+ "id": 4221
648
644
  },
649
645
  {
650
- "id": 4262,
651
- "name": "Tenacious",
652
- "rank": 1
646
+ "rank": 3,
647
+ "name": "Devastating Strikes",
648
+ "id": 4152
653
649
  },
654
650
  {
655
- "id": 4252,
656
- "name": "Legendary Guardian",
657
- "rank": 3
651
+ "rank": 3,
652
+ "name": "Brute Force",
653
+ "id": 4122
658
654
  },
659
655
  {
660
- "id": 4231,
661
- "name": "Oppression",
662
- "rank": 1
656
+ "rank": 1,
657
+ "name": "Double-Edged Sword",
658
+ "id": 4111
663
659
  },
664
660
  {
665
- "id": 4241,
666
- "name": "Perseverance",
667
- "rank": 3
661
+ "rank": 1,
662
+ "name": "Martial Mastery",
663
+ "id": 4132
664
+ },
665
+ {
666
+ "rank": 3,
667
+ "name": "Warlord",
668
+ "id": 4142
668
669
  },
669
670
  {
670
- "id": 4232,
671
+ "rank": 1,
671
672
  "name": "Juggernaut",
672
- "rank": 1
673
+ "id": 4232
673
674
  },
674
675
  {
675
- "id": 4113,
676
- "name": "Sorcery",
677
- "rank": 3
676
+ "rank": 1,
677
+ "name": "Havoc",
678
+ "id": 4162
679
+ },
680
+ {
681
+ "rank": 3,
682
+ "name": "Fury",
683
+ "id": 4112
678
684
  }
679
- ]
685
+ ],
686
+ "current": false,
687
+ "name": "AD (more atk)",
688
+ "id": 34170136
680
689
  },
681
690
  {
682
- "id": 34170144,
683
- "name": "Support",
684
- "current": false,
685
691
  "talents": [
686
692
  {
687
- "id": 4212,
693
+ "rank": 2,
688
694
  "name": "Recovery",
689
- "rank": 2
690
- },
691
- {
692
- "id": 4211,
693
- "name": "Block",
694
- "rank": 2
695
+ "id": 4212
695
696
  },
696
697
  {
697
- "id": 4311,
698
- "name": "Phasewalker",
699
- "rank": 1
698
+ "rank": 1,
699
+ "name": "Swiftness",
700
+ "id": 4242
700
701
  },
701
702
  {
702
- "id": 4353,
703
- "name": "Intelligence",
704
- "rank": 3
703
+ "rank": 2,
704
+ "name": "Block",
705
+ "id": 4211
705
706
  },
706
707
  {
707
- "id": 4362,
708
- "name": "Wanderer",
709
- "rank": 1
708
+ "rank": 2,
709
+ "name": "Enchanted Armor",
710
+ "id": 4213
710
711
  },
711
712
  {
712
- "id": 4344,
713
- "name": "Inspiration",
714
- "rank": 2
713
+ "rank": 1,
714
+ "name": "Feast",
715
+ "id": 4124
715
716
  },
716
717
  {
717
- "id": 4352,
718
- "name": "Bandit",
719
- "rank": 1
718
+ "rank": 1,
719
+ "name": "Second Wind",
720
+ "id": 4251
720
721
  },
721
722
  {
722
- "id": 4323,
723
- "name": "Strength of Spirit",
724
- "rank": 1
723
+ "rank": 1,
724
+ "name": "Butcher",
725
+ "id": 4114
725
726
  },
726
727
  {
727
- "id": 4222,
728
+ "rank": 3,
728
729
  "name": "Veteran's Scars",
729
- "rank": 3
730
+ "id": 4222
730
731
  },
731
732
  {
732
- "id": 4314,
733
- "name": "Scout",
734
- "rank": 1
733
+ "rank": 4,
734
+ "name": "Sorcery",
735
+ "id": 4113
735
736
  },
736
737
  {
737
- "id": 4221,
738
+ "rank": 1,
738
739
  "name": "Unyielding",
739
- "rank": 1
740
+ "id": 4221
740
741
  },
741
742
  {
742
- "id": 4331,
743
- "name": "Greed",
744
- "rank": 3
743
+ "rank": 4,
744
+ "name": "Legendary Guardian",
745
+ "id": 4252
745
746
  },
746
747
  {
747
- "id": 4312,
748
- "name": "Fleet of Foot",
749
- "rank": 3
748
+ "rank": 1,
749
+ "name": "Tenacious",
750
+ "id": 4262
750
751
  },
751
752
  {
752
- "id": 4313,
753
- "name": "Meditation",
754
- "rank": 3
753
+ "rank": 1,
754
+ "name": "Oppression",
755
+ "id": 4231
755
756
  },
756
757
  {
757
- "id": 4232,
758
- "name": "Juggernaut",
759
- "rank": 1
758
+ "rank": 3,
759
+ "name": "Perseverance",
760
+ "id": 4241
760
761
  },
761
762
  {
762
- "id": 4342,
763
- "name": "Wealth",
764
- "rank": 1
763
+ "rank": 1,
764
+ "name": "Resistance",
765
+ "id": 4234
765
766
  },
766
767
  {
767
- "id": 4341,
768
- "name": "Scavenger",
769
- "rank": 1
768
+ "rank": 1,
769
+ "name": "Hardiness",
770
+ "id": 4233
771
+ },
772
+ {
773
+ "rank": 1,
774
+ "name": "Juggernaut",
775
+ "id": 4232
770
776
  }
771
- ]
777
+ ],
778
+ "current": false,
779
+ "name": "AD (more def)",
780
+ "id": 34170137
772
781
  },
773
782
  {
774
- "id": 34170145,
775
- "name": "Tank Sup",
776
- "current": false,
777
783
  "talents": [
778
784
  {
779
- "id": 4233,
780
- "name": "Hardiness",
781
- "rank": 3
782
- },
783
- {
784
- "id": 4211,
785
+ "rank": 2,
785
786
  "name": "Block",
786
- "rank": 2
787
+ "id": 4211
787
788
  },
788
789
  {
789
- "id": 4243,
790
- "name": "Reinforced Armor",
791
- "rank": 1
790
+ "rank": 3,
791
+ "name": "Executioner",
792
+ "id": 4134
792
793
  },
793
794
  {
794
- "id": 4213,
795
+ "rank": 2,
795
796
  "name": "Enchanted Armor",
796
- "rank": 2
797
+ "id": 4213
797
798
  },
798
799
  {
799
- "id": 4334,
800
- "name": "Culinary Master",
801
- "rank": 1
802
- },
803
- {
804
- "id": 4323,
805
- "name": "Strength of Spirit",
806
- "rank": 1
800
+ "rank": 3,
801
+ "name": "Veteran's Scars",
802
+ "id": 4222
807
803
  },
808
804
  {
809
- "id": 4222,
810
- "name": "Veteran's Scars",
811
- "rank": 3
805
+ "rank": 4,
806
+ "name": "Sorcery",
807
+ "id": 4113
812
808
  },
813
809
  {
814
- "id": 4221,
810
+ "rank": 1,
815
811
  "name": "Unyielding",
816
- "rank": 1
812
+ "id": 4221
817
813
  },
818
814
  {
819
- "id": 4324,
820
- "name": "Alchemist",
821
- "rank": 1
815
+ "rank": 3,
816
+ "name": "Brute Force",
817
+ "id": 4122
822
818
  },
823
819
  {
824
- "id": 4252,
825
- "name": "Legendary Guardian",
826
- "rank": 4
820
+ "rank": 3,
821
+ "name": "Devastating Strikes",
822
+ "id": 4152
827
823
  },
828
824
  {
829
- "id": 4262,
830
- "name": "Tenacious",
831
- "rank": 1
825
+ "rank": 1,
826
+ "name": "Blade Weaving",
827
+ "id": 4141
832
828
  },
833
829
  {
834
- "id": 4312,
835
- "name": "Fleet of Foot",
836
- "rank": 3
830
+ "rank": 1,
831
+ "name": "Double-Edged Sword",
832
+ "id": 4111
837
833
  },
838
834
  {
839
- "id": 4313,
840
- "name": "Meditation",
841
- "rank": 3
835
+ "rank": 1,
836
+ "name": "Martial Mastery",
837
+ "id": 4132
842
838
  },
843
839
  {
844
- "id": 4241,
845
- "name": "Perseverance",
846
- "rank": 3
840
+ "rank": 3,
841
+ "name": "Warlord",
842
+ "id": 4142
847
843
  },
848
844
  {
849
- "id": 4232,
845
+ "rank": 1,
850
846
  "name": "Juggernaut",
851
- "rank": 1
847
+ "id": 4232
848
+ },
849
+ {
850
+ "rank": 1,
851
+ "name": "Havoc",
852
+ "id": 4162
853
+ },
854
+ {
855
+ "rank": 1,
856
+ "name": "Spell Weaving",
857
+ "id": 4131
852
858
  }
853
- ]
859
+ ],
860
+ "current": false,
861
+ "name": "AD (more atk, cdr)",
862
+ "id": 34170138
854
863
  },
855
864
  {
856
- "id": 34170146,
857
- "name": "Cho Gath",
858
- "current": false,
859
865
  "talents": [
860
866
  {
861
- "id": 4212,
867
+ "rank": 2,
862
868
  "name": "Recovery",
863
- "rank": 2
864
- },
865
- {
866
- "id": 4233,
867
- "name": "Hardiness",
868
- "rank": 3
869
+ "id": 4212
869
870
  },
870
871
  {
871
- "id": 4242,
872
+ "rank": 1,
872
873
  "name": "Swiftness",
873
- "rank": 1
874
+ "id": 4242
874
875
  },
875
876
  {
876
- "id": 4243,
877
- "name": "Reinforced Armor",
878
- "rank": 1
877
+ "rank": 2,
878
+ "name": "Block",
879
+ "id": 4211
879
880
  },
880
881
  {
881
- "id": 4214,
882
+ "rank": 2,
882
883
  "name": "Tough Skin",
883
- "rank": 2
884
+ "id": 4214
884
885
  },
885
886
  {
886
- "id": 4124,
887
- "name": "Feast",
888
- "rank": 1
887
+ "rank": 2,
888
+ "name": "Enchanted Armor",
889
+ "id": 4213
889
890
  },
890
891
  {
891
- "id": 4251,
892
- "name": "Second Wind",
893
- "rank": 1
892
+ "rank": 3,
893
+ "name": "Resistance",
894
+ "id": 4234
894
895
  },
895
896
  {
896
- "id": 4114,
897
+ "rank": 1,
897
898
  "name": "Butcher",
898
- "rank": 1
899
+ "id": 4114
899
900
  },
900
901
  {
901
- "id": 4252,
902
- "name": "Legendary Guardian",
903
- "rank": 2
904
- },
905
- {
906
- "id": 4222,
907
- "name": "Veteran's Scars",
908
- "rank": 3
902
+ "rank": 4,
903
+ "name": "Fury",
904
+ "id": 4112
909
905
  },
910
906
  {
911
- "id": 4123,
912
- "name": "Mental Force",
913
- "rank": 3
907
+ "rank": 4,
908
+ "name": "Sorcery",
909
+ "id": 4113
914
910
  },
915
911
  {
916
- "id": 4262,
917
- "name": "Tenacious",
918
- "rank": 1
912
+ "rank": 1,
913
+ "name": "Unyielding",
914
+ "id": 4221
919
915
  },
920
916
  {
921
- "id": 4224,
922
- "name": "Bladed Armor",
923
- "rank": 1
917
+ "rank": 4,
918
+ "name": "Legendary Guardian",
919
+ "id": 4252
924
920
  },
925
921
  {
926
- "id": 4133,
927
- "name": "Arcane Mastery",
928
- "rank": 1
922
+ "rank": 1,
923
+ "name": "Tenacious",
924
+ "id": 4262
929
925
  },
930
926
  {
931
- "id": 4241,
927
+ "rank": 3,
932
928
  "name": "Perseverance",
933
- "rank": 3
934
- },
935
- {
936
- "id": 4232,
937
- "name": "Juggernaut",
938
- "rank": 1
939
- },
940
- {
941
- "id": 4112,
942
- "name": "Fury",
943
- "rank": 3
929
+ "id": 4241
944
930
  }
945
- ]
931
+ ],
932
+ "current": false,
933
+ "name": "AD (more def, cdr)",
934
+ "id": 34170139
946
935
  },
947
936
  {
948
- "id": 34170147,
949
- "name": "Jungle AP Gragas",
950
- "current": true,
951
937
  "talents": [
952
938
  {
953
- "id": 4212,
954
- "name": "Recovery",
955
- "rank": 2
956
- },
957
- {
958
- "id": 4211,
939
+ "rank": 2,
959
940
  "name": "Block",
960
- "rank": 2
941
+ "id": 4211
961
942
  },
962
943
  {
963
- "id": 4214,
944
+ "rank": 2,
964
945
  "name": "Tough Skin",
965
- "rank": 2
946
+ "id": 4214
966
947
  },
967
948
  {
968
- "id": 4121,
969
- "name": "Expose Weakness",
970
- "rank": 1
971
- },
972
- {
973
- "id": 4213,
974
- "name": "Enchanted Armor",
975
- "rank": 2
949
+ "rank": 3,
950
+ "name": "Executioner",
951
+ "id": 4134
976
952
  },
977
953
  {
978
- "id": 4134,
979
- "name": "Executioner",
980
- "rank": 3
954
+ "rank": 1,
955
+ "name": "Recovery",
956
+ "id": 4212
981
957
  },
982
958
  {
983
- "id": 4124,
959
+ "rank": 1,
984
960
  "name": "Feast",
985
- "rank": 1
961
+ "id": 4124
986
962
  },
987
963
  {
988
- "id": 4114,
964
+ "rank": 1,
989
965
  "name": "Butcher",
990
- "rank": 1
966
+ "id": 4114
991
967
  },
992
968
  {
993
- "id": 4221,
994
- "name": "Unyielding",
995
- "rank": 1
969
+ "rank": 3,
970
+ "name": "Veteran's Scars",
971
+ "id": 4222
996
972
  },
997
973
  {
998
- "id": 4144,
999
- "name": "Dangerous Game",
1000
- "rank": 1
974
+ "rank": 1,
975
+ "name": "Unyielding",
976
+ "id": 4221
1001
977
  },
1002
978
  {
1003
- "id": 4152,
979
+ "rank": 3,
1004
980
  "name": "Devastating Strikes",
1005
- "rank": 3
981
+ "id": 4152
1006
982
  },
1007
983
  {
1008
- "id": 4123,
1009
- "name": "Mental Force",
1010
- "rank": 3
984
+ "rank": 3,
985
+ "name": "Brute Force",
986
+ "id": 4122
1011
987
  },
1012
988
  {
1013
- "id": 4133,
1014
- "name": "Arcane Mastery",
1015
- "rank": 1
989
+ "rank": 1,
990
+ "name": "Double-Edged Sword",
991
+ "id": 4111
1016
992
  },
1017
993
  {
1018
- "id": 4143,
1019
- "name": "Archmage",
1020
- "rank": 3
994
+ "rank": 1,
995
+ "name": "Martial Mastery",
996
+ "id": 4132
997
+ },
998
+ {
999
+ "rank": 3,
1000
+ "name": "Warlord",
1001
+ "id": 4142
1021
1002
  },
1022
1003
  {
1023
- "id": 4162,
1004
+ "rank": 1,
1024
1005
  "name": "Havoc",
1025
- "rank": 1
1006
+ "id": 4162
1026
1007
  },
1027
1008
  {
1028
- "id": 4113,
1029
- "name": "Sorcery",
1030
- "rank": 3
1009
+ "rank": 3,
1010
+ "name": "Fury",
1011
+ "id": 4112
1012
+ },
1013
+ {
1014
+ "rank": 1,
1015
+ "name": "Spell Weaving",
1016
+ "id": 4131
1031
1017
  }
1032
- ]
1018
+ ],
1019
+ "current": false,
1020
+ "name": "Jungle AD (more atk)",
1021
+ "id": 34170140
1033
1022
  },
1034
1023
  {
1035
- "id": 34170148,
1036
- "name": "AP Jungle 21/6/3",
1037
- "current": false,
1038
1024
  "talents": [
1039
1025
  {
1040
- "id": 4211,
1026
+ "rank": 1,
1027
+ "name": "Swiftness",
1028
+ "id": 4242
1029
+ },
1030
+ {
1031
+ "rank": 2,
1041
1032
  "name": "Block",
1042
- "rank": 2
1033
+ "id": 4211
1043
1034
  },
1044
1035
  {
1045
- "id": 4214,
1036
+ "rank": 2,
1046
1037
  "name": "Tough Skin",
1047
- "rank": 2
1038
+ "id": 4214
1048
1039
  },
1049
1040
  {
1050
- "id": 4134,
1051
- "name": "Executioner",
1052
- "rank": 3
1041
+ "rank": 2,
1042
+ "name": "Enchanted Armor",
1043
+ "id": 4213
1053
1044
  },
1054
1045
  {
1055
- "id": 4124,
1046
+ "rank": 1,
1056
1047
  "name": "Feast",
1057
- "rank": 1
1048
+ "id": 4124
1058
1049
  },
1059
1050
  {
1060
- "id": 4154,
1061
- "name": "Arcane Blade",
1062
- "rank": 1
1051
+ "rank": 1,
1052
+ "name": "Butcher",
1053
+ "id": 4114
1063
1054
  },
1064
1055
  {
1065
- "id": 4114,
1066
- "name": "Butcher",
1067
- "rank": 1
1056
+ "rank": 1,
1057
+ "name": "Second Wind",
1058
+ "id": 4251
1068
1059
  },
1069
1060
  {
1070
- "id": 4221,
1071
- "name": "Unyielding",
1072
- "rank": 1
1061
+ "rank": 3,
1062
+ "name": "Veteran's Scars",
1063
+ "id": 4222
1073
1064
  },
1074
1065
  {
1075
- "id": 4152,
1076
- "name": "Devastating Strikes",
1077
- "rank": 3
1066
+ "rank": 1,
1067
+ "name": "Unyielding",
1068
+ "id": 4221
1078
1069
  },
1079
1070
  {
1080
- "id": 4123,
1081
- "name": "Mental Force",
1082
- "rank": 3
1071
+ "rank": 3,
1072
+ "name": "Brute Force",
1073
+ "id": 4122
1083
1074
  },
1084
1075
  {
1085
- "id": 4224,
1086
- "name": "Bladed Armor",
1087
- "rank": 1
1076
+ "rank": 1,
1077
+ "name": "Tenacious",
1078
+ "id": 4262
1088
1079
  },
1089
1080
  {
1090
- "id": 4312,
1091
- "name": "Fleet of Foot",
1092
- "rank": 3
1081
+ "rank": 1,
1082
+ "name": "Oppression",
1083
+ "id": 4231
1093
1084
  },
1094
1085
  {
1095
- "id": 4111,
1096
- "name": "Double-Edged Sword",
1097
- "rank": 1
1086
+ "rank": 3,
1087
+ "name": "Legendary Guardian",
1088
+ "id": 4252
1098
1089
  },
1099
1090
  {
1100
- "id": 4133,
1101
- "name": "Arcane Mastery",
1102
- "rank": 1
1091
+ "rank": 1,
1092
+ "name": "Martial Mastery",
1093
+ "id": 4132
1103
1094
  },
1104
1095
  {
1105
- "id": 4143,
1106
- "name": "Archmage",
1107
- "rank": 3
1096
+ "rank": 3,
1097
+ "name": "Perseverance",
1098
+ "id": 4241
1108
1099
  },
1109
1100
  {
1110
- "id": 4162,
1111
- "name": "Havoc",
1112
- "rank": 1
1101
+ "rank": 1,
1102
+ "name": "Juggernaut",
1103
+ "id": 4232
1113
1104
  },
1114
1105
  {
1115
- "id": 4113,
1116
- "name": "Sorcery",
1117
- "rank": 3
1106
+ "rank": 3,
1107
+ "name": "Fury",
1108
+ "id": 4112
1118
1109
  }
1119
- ]
1110
+ ],
1111
+ "current": false,
1112
+ "name": "Jungle AD (more def)",
1113
+ "id": 34170141
1120
1114
  },
1121
1115
  {
1122
- "id": 34170149,
1123
- "name": "ADC",
1124
- "current": false,
1125
1116
  "talents": [
1126
1117
  {
1127
- "id": 4212,
1118
+ "rank": 2,
1128
1119
  "name": "Recovery",
1129
- "rank": 2
1120
+ "id": 4212
1130
1121
  },
1131
1122
  {
1132
- "id": 4211,
1123
+ "rank": 2,
1133
1124
  "name": "Block",
1134
- "rank": 2
1125
+ "id": 4211
1126
+ },
1127
+ {
1128
+ "rank": 2,
1129
+ "name": "Tough Skin",
1130
+ "id": 4214
1135
1131
  },
1136
1132
  {
1137
- "id": 4134,
1133
+ "rank": 3,
1138
1134
  "name": "Executioner",
1139
- "rank": 3
1135
+ "id": 4134
1140
1136
  },
1141
1137
  {
1142
- "id": 4124,
1138
+ "rank": 1,
1143
1139
  "name": "Feast",
1144
- "rank": 1
1140
+ "id": 4124
1145
1141
  },
1146
1142
  {
1147
- "id": 4114,
1143
+ "rank": 1,
1148
1144
  "name": "Butcher",
1149
- "rank": 1
1145
+ "id": 4114
1150
1146
  },
1151
1147
  {
1152
- "id": 4222,
1148
+ "rank": 3,
1153
1149
  "name": "Veteran's Scars",
1154
- "rank": 3
1150
+ "id": 4222
1155
1151
  },
1156
1152
  {
1157
- "id": 4221,
1158
- "name": "Unyielding",
1159
- "rank": 1
1160
- },
1161
- {
1162
- "id": 4122,
1163
- "name": "Brute Force",
1164
- "rank": 3
1165
- },
1166
- {
1167
- "id": 4152,
1168
- "name": "Devastating Strikes",
1169
- "rank": 3
1153
+ "rank": 4,
1154
+ "name": "Sorcery",
1155
+ "id": 4113
1170
1156
  },
1171
1157
  {
1172
- "id": 4112,
1173
- "name": "Fury",
1174
- "rank": 2
1158
+ "rank": 1,
1159
+ "name": "Dangerous Game",
1160
+ "id": 4144
1175
1161
  },
1176
1162
  {
1177
- "id": 4141,
1178
- "name": "Blade Weaving",
1179
- "rank": 1
1163
+ "rank": 3,
1164
+ "name": "Brute Force",
1165
+ "id": 4122
1180
1166
  },
1181
1167
  {
1182
- "id": 4111,
1183
- "name": "Double-Edged Sword",
1184
- "rank": 1
1168
+ "rank": 3,
1169
+ "name": "Devastating Strikes",
1170
+ "id": 4152
1185
1171
  },
1186
1172
  {
1187
- "id": 4132,
1173
+ "rank": 1,
1188
1174
  "name": "Martial Mastery",
1189
- "rank": 1
1175
+ "id": 4132
1190
1176
  },
1191
1177
  {
1192
- "id": 4142,
1178
+ "rank": 3,
1193
1179
  "name": "Warlord",
1194
- "rank": 3
1180
+ "id": 4142
1195
1181
  },
1196
1182
  {
1197
- "id": 4232,
1198
- "name": "Juggernaut",
1199
- "rank": 1
1200
- },
1201
- {
1202
- "id": 4162,
1183
+ "rank": 1,
1203
1184
  "name": "Havoc",
1204
- "rank": 1
1205
- },
1206
- {
1207
- "id": 4131,
1208
- "name": "Spell Weaving",
1209
- "rank": 1
1185
+ "id": 4162
1210
1186
  }
1211
- ]
1187
+ ],
1188
+ "current": false,
1189
+ "name": "Jungle AD (more atk, cdr)",
1190
+ "id": 34170142
1212
1191
  },
1213
1192
  {
1214
- "id": 34170150,
1215
- "name": "Random",
1216
- "current": false,
1217
1193
  "talents": [
1218
1194
  {
1219
- "id": 4242,
1220
- "name": "Swiftness",
1221
- "rank": 1
1195
+ "rank": 2,
1196
+ "name": "Recovery",
1197
+ "id": 4212
1222
1198
  },
1223
1199
  {
1224
- "id": 4212,
1225
- "name": "Recovery",
1226
- "rank": 2
1200
+ "rank": 1,
1201
+ "name": "Swiftness",
1202
+ "id": 4242
1227
1203
  },
1228
1204
  {
1229
- "id": 4211,
1205
+ "rank": 2,
1230
1206
  "name": "Block",
1231
- "rank": 2
1207
+ "id": 4211
1232
1208
  },
1233
1209
  {
1234
- "id": 4214,
1210
+ "rank": 2,
1235
1211
  "name": "Tough Skin",
1236
- "rank": 2
1212
+ "id": 4214
1237
1213
  },
1238
1214
  {
1239
- "id": 4332,
1240
- "name": "Runic Affinity",
1241
- "rank": 1
1215
+ "rank": 1,
1216
+ "name": "Feast",
1217
+ "id": 4124
1242
1218
  },
1243
1219
  {
1244
- "id": 4323,
1245
- "name": "Strength of Spirit",
1246
- "rank": 1
1220
+ "rank": 1,
1221
+ "name": "Second Wind",
1222
+ "id": 4251
1247
1223
  },
1248
1224
  {
1249
- "id": 4222,
1250
- "name": "Veteran's Scars",
1251
- "rank": 3
1225
+ "rank": 1,
1226
+ "name": "Butcher",
1227
+ "id": 4114
1252
1228
  },
1253
1229
  {
1254
- "id": 4221,
1255
- "name": "Unyielding",
1256
- "rank": 1
1230
+ "rank": 4,
1231
+ "name": "Fury",
1232
+ "id": 4112
1257
1233
  },
1258
1234
  {
1259
- "id": 4252,
1260
- "name": "Legendary Guardian",
1261
- "rank": 4
1235
+ "rank": 3,
1236
+ "name": "Veteran's Scars",
1237
+ "id": 4222
1262
1238
  },
1263
1239
  {
1264
- "id": 4324,
1265
- "name": "Alchemist",
1266
- "rank": 1
1240
+ "rank": 1,
1241
+ "name": "Unyielding",
1242
+ "id": 4221
1267
1243
  },
1268
1244
  {
1269
- "id": 4262,
1245
+ "rank": 1,
1270
1246
  "name": "Tenacious",
1271
- "rank": 1
1247
+ "id": 4262
1272
1248
  },
1273
1249
  {
1274
- "id": 4312,
1275
- "name": "Fleet of Foot",
1276
- "rank": 3
1250
+ "rank": 3,
1251
+ "name": "Legendary Guardian",
1252
+ "id": 4252
1277
1253
  },
1278
1254
  {
1279
- "id": 4231,
1255
+ "rank": 1,
1280
1256
  "name": "Oppression",
1281
- "rank": 1
1257
+ "id": 4231
1282
1258
  },
1283
1259
  {
1284
- "id": 4313,
1285
- "name": "Meditation",
1286
- "rank": 3
1287
- },
1288
- {
1289
- "id": 4241,
1260
+ "rank": 3,
1290
1261
  "name": "Perseverance",
1291
- "rank": 3
1262
+ "id": 4241
1292
1263
  },
1293
1264
  {
1294
- "id": 4232,
1265
+ "rank": 1,
1295
1266
  "name": "Juggernaut",
1296
- "rank": 1
1267
+ "id": 4232
1268
+ },
1269
+ {
1270
+ "rank": 3,
1271
+ "name": "Sorcery",
1272
+ "id": 4113
1297
1273
  }
1298
- ]
1274
+ ],
1275
+ "current": false,
1276
+ "name": "Jungle AD (more def, cdr)",
1277
+ "id": 34170143
1299
1278
  },
1300
1279
  {
1301
- "id": 34170151,
1302
- "name": "Vlad",
1303
- "current": false,
1304
1280
  "talents": [
1305
1281
  {
1306
- "id": 4212,
1282
+ "rank": 2,
1307
1283
  "name": "Recovery",
1308
- "rank": 2
1284
+ "id": 4212
1309
1285
  },
1310
1286
  {
1311
- "id": 4211,
1287
+ "rank": 2,
1312
1288
  "name": "Block",
1313
- "rank": 2
1289
+ "id": 4211
1314
1290
  },
1315
1291
  {
1316
- "id": 4134,
1317
- "name": "Executioner",
1318
- "rank": 3
1292
+ "rank": 1,
1293
+ "name": "Phasewalker",
1294
+ "id": 4311
1319
1295
  },
1320
1296
  {
1321
- "id": 4154,
1322
- "name": "Arcane Blade",
1323
- "rank": 1
1297
+ "rank": 3,
1298
+ "name": "Intelligence",
1299
+ "id": 4353
1324
1300
  },
1325
1301
  {
1326
- "id": 4124,
1327
- "name": "Feast",
1328
- "rank": 1
1302
+ "rank": 1,
1303
+ "name": "Wanderer",
1304
+ "id": 4362
1329
1305
  },
1330
1306
  {
1331
- "id": 4114,
1332
- "name": "Butcher",
1333
- "rank": 1
1307
+ "rank": 2,
1308
+ "name": "Inspiration",
1309
+ "id": 4344
1310
+ },
1311
+ {
1312
+ "rank": 1,
1313
+ "name": "Bandit",
1314
+ "id": 4352
1334
1315
  },
1335
1316
  {
1336
- "id": 4222,
1317
+ "rank": 1,
1318
+ "name": "Strength of Spirit",
1319
+ "id": 4323
1320
+ },
1321
+ {
1322
+ "rank": 3,
1337
1323
  "name": "Veteran's Scars",
1338
- "rank": 3
1324
+ "id": 4222
1339
1325
  },
1340
1326
  {
1341
- "id": 4113,
1342
- "name": "Sorcery",
1343
- "rank": 4
1327
+ "rank": 1,
1328
+ "name": "Scout",
1329
+ "id": 4314
1344
1330
  },
1345
1331
  {
1346
- "id": 4221,
1332
+ "rank": 1,
1347
1333
  "name": "Unyielding",
1348
- "rank": 1
1334
+ "id": 4221
1349
1335
  },
1350
1336
  {
1351
- "id": 4152,
1352
- "name": "Devastating Strikes",
1353
- "rank": 3
1337
+ "rank": 3,
1338
+ "name": "Greed",
1339
+ "id": 4331
1354
1340
  },
1355
1341
  {
1356
- "id": 4123,
1357
- "name": "Mental Force",
1358
- "rank": 3
1342
+ "rank": 3,
1343
+ "name": "Fleet of Foot",
1344
+ "id": 4312
1359
1345
  },
1360
1346
  {
1361
- "id": 4133,
1362
- "name": "Arcane Mastery",
1363
- "rank": 1
1347
+ "rank": 3,
1348
+ "name": "Meditation",
1349
+ "id": 4313
1364
1350
  },
1365
1351
  {
1366
- "id": 4232,
1352
+ "rank": 1,
1367
1353
  "name": "Juggernaut",
1368
- "rank": 1
1354
+ "id": 4232
1369
1355
  },
1370
1356
  {
1371
- "id": 4143,
1372
- "name": "Archmage",
1373
- "rank": 3
1357
+ "rank": 1,
1358
+ "name": "Wealth",
1359
+ "id": 4342
1374
1360
  },
1375
1361
  {
1376
- "id": 4162,
1377
- "name": "Havoc",
1378
- "rank": 1
1362
+ "rank": 1,
1363
+ "name": "Scavenger",
1364
+ "id": 4341
1379
1365
  }
1380
- ]
1366
+ ],
1367
+ "current": false,
1368
+ "name": "Support",
1369
+ "id": 34170144
1381
1370
  },
1382
1371
  {
1383
- "id": 34170152,
1384
- "name": "Eve Jungle",
1385
- "current": false,
1386
1372
  "talents": [
1387
1373
  {
1388
- "id": 4214,
1389
- "name": "Tough Skin",
1390
- "rank": 2
1374
+ "rank": 3,
1375
+ "name": "Hardiness",
1376
+ "id": 4233
1391
1377
  },
1392
1378
  {
1393
- "id": 4312,
1394
- "name": "Fleet of Foot",
1395
- "rank": 2
1379
+ "rank": 2,
1380
+ "name": "Block",
1381
+ "id": 4211
1396
1382
  },
1397
1383
  {
1398
- "id": 4134,
1399
- "name": "Executioner",
1400
- "rank": 3
1384
+ "rank": 1,
1385
+ "name": "Reinforced Armor",
1386
+ "id": 4243
1401
1387
  },
1402
1388
  {
1403
- "id": 4154,
1404
- "name": "Arcane Blade",
1405
- "rank": 1
1389
+ "rank": 2,
1390
+ "name": "Enchanted Armor",
1391
+ "id": 4213
1406
1392
  },
1407
1393
  {
1408
- "id": 4113,
1409
- "name": "Sorcery",
1410
- "rank": 4
1394
+ "rank": 1,
1395
+ "name": "Culinary Master",
1396
+ "id": 4334
1411
1397
  },
1412
1398
  {
1413
- "id": 4144,
1414
- "name": "Dangerous Game",
1415
- "rank": 1
1399
+ "rank": 1,
1400
+ "name": "Strength of Spirit",
1401
+ "id": 4323
1416
1402
  },
1417
1403
  {
1418
- "id": 4122,
1419
- "name": "Brute Force",
1420
- "rank": 3
1404
+ "rank": 3,
1405
+ "name": "Veteran's Scars",
1406
+ "id": 4222
1421
1407
  },
1422
1408
  {
1423
- "id": 4152,
1424
- "name": "Devastating Strikes",
1425
- "rank": 3
1409
+ "rank": 1,
1410
+ "name": "Unyielding",
1411
+ "id": 4221
1426
1412
  },
1427
1413
  {
1428
- "id": 4123,
1429
- "name": "Mental Force",
1430
- "rank": 3
1414
+ "rank": 1,
1415
+ "name": "Alchemist",
1416
+ "id": 4324
1431
1417
  },
1432
1418
  {
1433
- "id": 4111,
1434
- "name": "Double-Edged Sword",
1435
- "rank": 1
1419
+ "rank": 4,
1420
+ "name": "Legendary Guardian",
1421
+ "id": 4252
1436
1422
  },
1437
1423
  {
1438
- "id": 4132,
1439
- "name": "Martial Mastery",
1440
- "rank": 1
1424
+ "rank": 1,
1425
+ "name": "Tenacious",
1426
+ "id": 4262
1441
1427
  },
1442
1428
  {
1443
- "id": 4133,
1444
- "name": "Arcane Mastery",
1445
- "rank": 1
1429
+ "rank": 3,
1430
+ "name": "Fleet of Foot",
1431
+ "id": 4312
1446
1432
  },
1447
1433
  {
1448
- "id": 4143,
1449
- "name": "Archmage",
1450
- "rank": 3
1434
+ "rank": 3,
1435
+ "name": "Meditation",
1436
+ "id": 4313
1451
1437
  },
1452
1438
  {
1453
- "id": 4162,
1454
- "name": "Havoc",
1455
- "rank": 1
1439
+ "rank": 3,
1440
+ "name": "Perseverance",
1441
+ "id": 4241
1456
1442
  },
1457
1443
  {
1458
- "id": 4131,
1459
- "name": "Spell Weaving",
1460
- "rank": 1
1444
+ "rank": 1,
1445
+ "name": "Juggernaut",
1446
+ "id": 4232
1461
1447
  }
1462
- ]
1448
+ ],
1449
+ "current": false,
1450
+ "name": "Tank Sup",
1451
+ "id": 34170145
1463
1452
  },
1464
1453
  {
1465
- "id": 34170153,
1466
- "name": "Mundo Giungla",
1467
- "current": false,
1468
1454
  "talents": [
1469
1455
  {
1470
- "id": 4212,
1456
+ "rank": 2,
1471
1457
  "name": "Recovery",
1472
- "rank": 2
1458
+ "id": 4212
1473
1459
  },
1474
1460
  {
1475
- "id": 4242,
1476
- "name": "Swiftness",
1477
- "rank": 1
1478
- },
1479
- {
1480
- "id": 4233,
1461
+ "rank": 3,
1481
1462
  "name": "Hardiness",
1482
- "rank": 3
1463
+ "id": 4233
1483
1464
  },
1484
1465
  {
1485
- "id": 4243,
1486
- "name": "Reinforced Armor",
1487
- "rank": 1
1466
+ "rank": 1,
1467
+ "name": "Swiftness",
1468
+ "id": 4242
1488
1469
  },
1489
1470
  {
1490
- "id": 4211,
1491
- "name": "Block",
1492
- "rank": 2
1471
+ "rank": 1,
1472
+ "name": "Reinforced Armor",
1473
+ "id": 4243
1493
1474
  },
1494
1475
  {
1495
- "id": 4214,
1476
+ "rank": 2,
1496
1477
  "name": "Tough Skin",
1497
- "rank": 2
1478
+ "id": 4214
1498
1479
  },
1499
1480
  {
1500
- "id": 4114,
1501
- "name": "Butcher",
1502
- "rank": 1
1481
+ "rank": 1,
1482
+ "name": "Feast",
1483
+ "id": 4124
1503
1484
  },
1504
1485
  {
1505
- "id": 4251,
1486
+ "rank": 1,
1506
1487
  "name": "Second Wind",
1507
- "rank": 1
1488
+ "id": 4251
1508
1489
  },
1509
1490
  {
1510
- "id": 4222,
1511
- "name": "Veteran's Scars",
1512
- "rank": 3
1491
+ "rank": 1,
1492
+ "name": "Butcher",
1493
+ "id": 4114
1513
1494
  },
1514
1495
  {
1515
- "id": 4221,
1516
- "name": "Unyielding",
1517
- "rank": 1
1496
+ "rank": 2,
1497
+ "name": "Legendary Guardian",
1498
+ "id": 4252
1518
1499
  },
1519
1500
  {
1520
- "id": 4252,
1521
- "name": "Legendary Guardian",
1522
- "rank": 4
1501
+ "rank": 3,
1502
+ "name": "Veteran's Scars",
1503
+ "id": 4222
1523
1504
  },
1524
1505
  {
1525
- "id": 4224,
1526
- "name": "Bladed Armor",
1527
- "rank": 1
1506
+ "rank": 3,
1507
+ "name": "Mental Force",
1508
+ "id": 4123
1528
1509
  },
1529
1510
  {
1530
- "id": 4262,
1511
+ "rank": 1,
1531
1512
  "name": "Tenacious",
1532
- "rank": 1
1513
+ "id": 4262
1533
1514
  },
1534
1515
  {
1535
- "id": 4312,
1536
- "name": "Fleet of Foot",
1537
- "rank": 3
1516
+ "rank": 1,
1517
+ "name": "Bladed Armor",
1518
+ "id": 4224
1519
+ },
1520
+ {
1521
+ "rank": 1,
1522
+ "name": "Arcane Mastery",
1523
+ "id": 4133
1538
1524
  },
1539
1525
  {
1540
- "id": 4241,
1526
+ "rank": 3,
1541
1527
  "name": "Perseverance",
1542
- "rank": 3
1528
+ "id": 4241
1543
1529
  },
1544
1530
  {
1545
- "id": 4232,
1531
+ "rank": 1,
1546
1532
  "name": "Juggernaut",
1547
- "rank": 1
1533
+ "id": 4232
1534
+ },
1535
+ {
1536
+ "rank": 3,
1537
+ "name": "Fury",
1538
+ "id": 4112
1548
1539
  }
1549
- ]
1540
+ ],
1541
+ "current": false,
1542
+ "name": "Cho Gath",
1543
+ "id": 34170146
1550
1544
  },
1551
1545
  {
1552
- "id": 34170154,
1553
- "name": "9/21 AP Jungle",
1554
- "current": false,
1555
1546
  "talents": [
1556
1547
  {
1557
- "id": 4212,
1548
+ "rank": 2,
1558
1549
  "name": "Recovery",
1559
- "rank": 2
1550
+ "id": 4212
1560
1551
  },
1561
1552
  {
1562
- "id": 4242,
1563
- "name": "Swiftness",
1564
- "rank": 1
1565
- },
1566
- {
1567
- "id": 4211,
1553
+ "rank": 2,
1568
1554
  "name": "Block",
1569
- "rank": 2
1555
+ "id": 4211
1570
1556
  },
1571
1557
  {
1572
- "id": 4214,
1558
+ "rank": 2,
1573
1559
  "name": "Tough Skin",
1574
- "rank": 2
1560
+ "id": 4214
1575
1561
  },
1576
1562
  {
1577
- "id": 4124,
1578
- "name": "Feast",
1579
- "rank": 1
1563
+ "rank": 1,
1564
+ "name": "Expose Weakness",
1565
+ "id": 4121
1580
1566
  },
1581
1567
  {
1582
- "id": 4114,
1583
- "name": "Butcher",
1584
- "rank": 1
1568
+ "rank": 2,
1569
+ "name": "Enchanted Armor",
1570
+ "id": 4213
1585
1571
  },
1586
1572
  {
1587
- "id": 4222,
1588
- "name": "Veteran's Scars",
1589
- "rank": 3
1573
+ "rank": 3,
1574
+ "name": "Executioner",
1575
+ "id": 4134
1590
1576
  },
1591
1577
  {
1592
- "id": 4113,
1593
- "name": "Sorcery",
1594
- "rank": 4
1578
+ "rank": 1,
1579
+ "name": "Feast",
1580
+ "id": 4124
1595
1581
  },
1596
1582
  {
1597
- "id": 4221,
1583
+ "rank": 1,
1584
+ "name": "Butcher",
1585
+ "id": 4114
1586
+ },
1587
+ {
1588
+ "rank": 1,
1598
1589
  "name": "Unyielding",
1599
- "rank": 1
1590
+ "id": 4221
1600
1591
  },
1601
1592
  {
1602
- "id": 4252,
1603
- "name": "Legendary Guardian",
1604
- "rank": 4
1593
+ "rank": 1,
1594
+ "name": "Dangerous Game",
1595
+ "id": 4144
1605
1596
  },
1606
1597
  {
1607
- "id": 4123,
1598
+ "rank": 3,
1599
+ "name": "Devastating Strikes",
1600
+ "id": 4152
1601
+ },
1602
+ {
1603
+ "rank": 3,
1608
1604
  "name": "Mental Force",
1609
- "rank": 3
1605
+ "id": 4123
1610
1606
  },
1611
1607
  {
1612
- "id": 4262,
1613
- "name": "Tenacious",
1614
- "rank": 1
1608
+ "rank": 1,
1609
+ "name": "Arcane Mastery",
1610
+ "id": 4133
1615
1611
  },
1616
1612
  {
1617
- "id": 4231,
1618
- "name": "Oppression",
1619
- "rank": 1
1613
+ "rank": 3,
1614
+ "name": "Archmage",
1615
+ "id": 4143
1620
1616
  },
1621
1617
  {
1622
- "id": 4241,
1623
- "name": "Perseverance",
1624
- "rank": 3
1618
+ "rank": 1,
1619
+ "name": "Havoc",
1620
+ "id": 4162
1625
1621
  },
1626
1622
  {
1627
- "id": 4232,
1628
- "name": "Juggernaut",
1629
- "rank": 1
1623
+ "rank": 3,
1624
+ "name": "Sorcery",
1625
+ "id": 4113
1630
1626
  }
1631
- ]
1627
+ ],
1628
+ "current": true,
1629
+ "name": "Jungle AP Gragas",
1630
+ "id": 34170147
1632
1631
  },
1633
1632
  {
1634
- "id": 34170155,
1635
- "name": "AP Support",
1636
- "current": false,
1637
1633
  "talents": [
1638
1634
  {
1639
- "id": 4212,
1640
- "name": "Recovery",
1641
- "rank": 2
1642
- },
1643
- {
1644
- "id": 4211,
1635
+ "rank": 2,
1645
1636
  "name": "Block",
1646
- "rank": 2
1637
+ "id": 4211
1647
1638
  },
1648
1639
  {
1649
- "id": 4134,
1650
- "name": "Executioner",
1651
- "rank": 3
1640
+ "rank": 2,
1641
+ "name": "Tough Skin",
1642
+ "id": 4214
1652
1643
  },
1653
1644
  {
1654
- "id": 4154,
1655
- "name": "Arcane Blade",
1656
- "rank": 1
1645
+ "rank": 3,
1646
+ "name": "Executioner",
1647
+ "id": 4134
1657
1648
  },
1658
1649
  {
1659
- "id": 4222,
1660
- "name": "Veteran's Scars",
1661
- "rank": 3
1650
+ "rank": 1,
1651
+ "name": "Feast",
1652
+ "id": 4124
1662
1653
  },
1663
1654
  {
1664
- "id": 4113,
1665
- "name": "Sorcery",
1666
- "rank": 4
1655
+ "rank": 1,
1656
+ "name": "Arcane Blade",
1657
+ "id": 4154
1667
1658
  },
1668
1659
  {
1669
- "id": 4144,
1670
- "name": "Dangerous Game",
1671
- "rank": 1
1660
+ "rank": 1,
1661
+ "name": "Butcher",
1662
+ "id": 4114
1672
1663
  },
1673
1664
  {
1674
- "id": 4221,
1665
+ "rank": 1,
1675
1666
  "name": "Unyielding",
1676
- "rank": 1
1667
+ "id": 4221
1677
1668
  },
1678
1669
  {
1679
- "id": 4152,
1670
+ "rank": 3,
1680
1671
  "name": "Devastating Strikes",
1681
- "rank": 3
1672
+ "id": 4152
1682
1673
  },
1683
1674
  {
1684
- "id": 4123,
1675
+ "rank": 3,
1685
1676
  "name": "Mental Force",
1686
- "rank": 3
1677
+ "id": 4123
1687
1678
  },
1688
1679
  {
1689
- "id": 4231,
1690
- "name": "Oppression",
1691
- "rank": 1
1680
+ "rank": 1,
1681
+ "name": "Bladed Armor",
1682
+ "id": 4224
1683
+ },
1684
+ {
1685
+ "rank": 3,
1686
+ "name": "Fleet of Foot",
1687
+ "id": 4312
1692
1688
  },
1693
1689
  {
1694
- "id": 4111,
1690
+ "rank": 1,
1695
1691
  "name": "Double-Edged Sword",
1696
- "rank": 1
1692
+ "id": 4111
1697
1693
  },
1698
1694
  {
1699
- "id": 4133,
1695
+ "rank": 1,
1700
1696
  "name": "Arcane Mastery",
1701
- "rank": 1
1697
+ "id": 4133
1702
1698
  },
1703
1699
  {
1704
- "id": 4143,
1700
+ "rank": 3,
1705
1701
  "name": "Archmage",
1706
- "rank": 3
1702
+ "id": 4143
1707
1703
  },
1708
1704
  {
1709
- "id": 4162,
1705
+ "rank": 1,
1710
1706
  "name": "Havoc",
1711
- "rank": 1
1707
+ "id": 4162
1708
+ },
1709
+ {
1710
+ "rank": 3,
1711
+ "name": "Sorcery",
1712
+ "id": 4113
1712
1713
  }
1713
- ]
1714
- }
1715
- ]
1716
- },
1717
- "33249714": {
1718
- "summonerId": 33249714,
1719
- "pages": [
1714
+ ],
1715
+ "current": false,
1716
+ "name": "AP Jungle 21\/6\/3",
1717
+ "id": 34170148
1718
+ },
1720
1719
  {
1721
- "id": 36928738,
1722
- "name": "tank",
1723
- "current": true,
1724
1720
  "talents": [
1725
1721
  {
1726
- "id": 4233,
1727
- "name": "Hardiness",
1728
- "rank": 3
1729
- },
1730
- {
1731
- "id": 4242,
1732
- "name": "Swiftness",
1733
- "rank": 1
1722
+ "rank": 2,
1723
+ "name": "Recovery",
1724
+ "id": 4212
1734
1725
  },
1735
1726
  {
1736
- "id": 4211,
1727
+ "rank": 2,
1737
1728
  "name": "Block",
1738
- "rank": 2
1729
+ "id": 4211
1739
1730
  },
1740
1731
  {
1741
- "id": 4213,
1742
- "name": "Enchanted Armor",
1743
- "rank": 2
1732
+ "rank": 3,
1733
+ "name": "Executioner",
1734
+ "id": 4134
1744
1735
  },
1745
1736
  {
1746
- "id": 4124,
1737
+ "rank": 1,
1747
1738
  "name": "Feast",
1748
- "rank": 1
1739
+ "id": 4124
1749
1740
  },
1750
1741
  {
1751
- "id": 4114,
1742
+ "rank": 1,
1752
1743
  "name": "Butcher",
1753
- "rank": 1
1754
- },
1755
- {
1756
- "id": 4251,
1757
- "name": "Second Wind",
1758
- "rank": 1
1744
+ "id": 4114
1759
1745
  },
1760
1746
  {
1761
- "id": 4222,
1747
+ "rank": 3,
1762
1748
  "name": "Veteran's Scars",
1763
- "rank": 3
1749
+ "id": 4222
1764
1750
  },
1765
1751
  {
1766
- "id": 4221,
1752
+ "rank": 1,
1767
1753
  "name": "Unyielding",
1768
- "rank": 1
1754
+ "id": 4221
1769
1755
  },
1770
1756
  {
1771
- "id": 4253,
1772
- "name": "Runic Blessing",
1773
- "rank": 1
1757
+ "rank": 3,
1758
+ "name": "Brute Force",
1759
+ "id": 4122
1774
1760
  },
1775
1761
  {
1776
- "id": 4262,
1777
- "name": "Tenacious",
1778
- "rank": 1
1762
+ "rank": 3,
1763
+ "name": "Devastating Strikes",
1764
+ "id": 4152
1779
1765
  },
1780
1766
  {
1781
- "id": 4231,
1782
- "name": "Oppression",
1783
- "rank": 1
1767
+ "rank": 2,
1768
+ "name": "Fury",
1769
+ "id": 4112
1784
1770
  },
1785
1771
  {
1786
- "id": 4111,
1787
- "name": "Double-Edged Sword",
1788
- "rank": 1
1772
+ "rank": 1,
1773
+ "name": "Blade Weaving",
1774
+ "id": 4141
1789
1775
  },
1790
1776
  {
1791
- "id": 4241,
1792
- "name": "Perseverance",
1793
- "rank": 3
1777
+ "rank": 1,
1778
+ "name": "Double-Edged Sword",
1779
+ "id": 4111
1794
1780
  },
1795
1781
  {
1796
- "id": 4234,
1797
- "name": "Resistance",
1798
- "rank": 1
1782
+ "rank": 1,
1783
+ "name": "Martial Mastery",
1784
+ "id": 4132
1799
1785
  },
1800
1786
  {
1801
- "id": 4232,
1802
- "name": "Juggernaut",
1803
- "rank": 1
1787
+ "rank": 3,
1788
+ "name": "Warlord",
1789
+ "id": 4142
1804
1790
  },
1805
1791
  {
1806
- "id": 4122,
1807
- "name": "Brute Force",
1808
- "rank": 2
1792
+ "rank": 1,
1793
+ "name": "Juggernaut",
1794
+ "id": 4232
1809
1795
  },
1810
1796
  {
1811
- "id": 4112,
1812
- "name": "Fury",
1813
- "rank": 3
1797
+ "rank": 1,
1798
+ "name": "Havoc",
1799
+ "id": 4162
1814
1800
  },
1815
1801
  {
1816
- "id": 4131,
1802
+ "rank": 1,
1817
1803
  "name": "Spell Weaving",
1818
- "rank": 1
1804
+ "id": 4131
1819
1805
  }
1820
- ]
1806
+ ],
1807
+ "current": false,
1808
+ "name": "ADC",
1809
+ "id": 34170149
1821
1810
  },
1822
1811
  {
1823
- "id": 36928739,
1824
- "name": "jungler",
1825
- "current": false,
1826
1812
  "talents": [
1827
1813
  {
1828
- "id": 4233,
1829
- "name": "Hardiness",
1830
- "rank": 3
1814
+ "rank": 1,
1815
+ "name": "Swiftness",
1816
+ "id": 4242
1831
1817
  },
1832
1818
  {
1833
- "id": 4211,
1834
- "name": "Block",
1835
- "rank": 2
1819
+ "rank": 2,
1820
+ "name": "Recovery",
1821
+ "id": 4212
1836
1822
  },
1837
1823
  {
1838
- "id": 4243,
1839
- "name": "Reinforced Armor",
1840
- "rank": 1
1824
+ "rank": 2,
1825
+ "name": "Block",
1826
+ "id": 4211
1841
1827
  },
1842
1828
  {
1843
- "id": 4214,
1829
+ "rank": 2,
1844
1830
  "name": "Tough Skin",
1845
- "rank": 2
1846
- },
1847
- {
1848
- "id": 4213,
1849
- "name": "Enchanted Armor",
1850
- "rank": 2
1831
+ "id": 4214
1851
1832
  },
1852
1833
  {
1853
- "id": 4124,
1854
- "name": "Feast",
1855
- "rank": 1
1834
+ "rank": 1,
1835
+ "name": "Runic Affinity",
1836
+ "id": 4332
1856
1837
  },
1857
1838
  {
1858
- "id": 4114,
1859
- "name": "Butcher",
1860
- "rank": 1
1839
+ "rank": 1,
1840
+ "name": "Strength of Spirit",
1841
+ "id": 4323
1861
1842
  },
1862
1843
  {
1863
- "id": 4222,
1844
+ "rank": 3,
1864
1845
  "name": "Veteran's Scars",
1865
- "rank": 3
1846
+ "id": 4222
1866
1847
  },
1867
1848
  {
1868
- "id": 4113,
1869
- "name": "Sorcery",
1870
- "rank": 4
1871
- },
1872
- {
1873
- "id": 4221,
1849
+ "rank": 1,
1874
1850
  "name": "Unyielding",
1875
- "rank": 1
1851
+ "id": 4221
1876
1852
  },
1877
1853
  {
1878
- "id": 4252,
1854
+ "rank": 4,
1879
1855
  "name": "Legendary Guardian",
1880
- "rank": 4
1856
+ "id": 4252
1857
+ },
1858
+ {
1859
+ "rank": 1,
1860
+ "name": "Alchemist",
1861
+ "id": 4324
1881
1862
  },
1882
1863
  {
1883
- "id": 4262,
1864
+ "rank": 1,
1884
1865
  "name": "Tenacious",
1885
- "rank": 1
1866
+ "id": 4262
1886
1867
  },
1887
1868
  {
1888
- "id": 4234,
1889
- "name": "Resistance",
1890
- "rank": 1
1869
+ "rank": 3,
1870
+ "name": "Fleet of Foot",
1871
+ "id": 4312
1891
1872
  },
1892
1873
  {
1893
- "id": 4232,
1894
- "name": "Juggernaut",
1895
- "rank": 1
1874
+ "rank": 1,
1875
+ "name": "Oppression",
1876
+ "id": 4231
1896
1877
  },
1897
1878
  {
1898
- "id": 4122,
1899
- "name": "Brute Force",
1900
- "rank": 2
1879
+ "rank": 3,
1880
+ "name": "Meditation",
1881
+ "id": 4313
1882
+ },
1883
+ {
1884
+ "rank": 3,
1885
+ "name": "Perseverance",
1886
+ "id": 4241
1887
+ },
1888
+ {
1889
+ "rank": 1,
1890
+ "name": "Juggernaut",
1891
+ "id": 4232
1901
1892
  }
1902
- ]
1893
+ ],
1894
+ "current": false,
1895
+ "name": "Random",
1896
+ "id": 34170150
1903
1897
  },
1904
1898
  {
1905
- "id": 36928740,
1906
- "name": "AD",
1907
- "current": false,
1908
1899
  "talents": [
1909
1900
  {
1910
- "id": 4233,
1911
- "name": "Hardiness",
1912
- "rank": 3
1901
+ "rank": 2,
1902
+ "name": "Recovery",
1903
+ "id": 4212
1913
1904
  },
1914
1905
  {
1915
- "id": 4242,
1916
- "name": "Swiftness",
1917
- "rank": 1
1906
+ "rank": 2,
1907
+ "name": "Block",
1908
+ "id": 4211
1918
1909
  },
1919
1910
  {
1920
- "id": 4123,
1921
- "name": "Mental Force",
1922
- "rank": 1
1911
+ "rank": 3,
1912
+ "name": "Executioner",
1913
+ "id": 4134
1923
1914
  },
1924
1915
  {
1925
- "id": 4211,
1926
- "name": "Block",
1927
- "rank": 2
1916
+ "rank": 1,
1917
+ "name": "Arcane Blade",
1918
+ "id": 4154
1928
1919
  },
1929
1920
  {
1930
- "id": 4213,
1931
- "name": "Enchanted Armor",
1932
- "rank": 2
1921
+ "rank": 1,
1922
+ "name": "Feast",
1923
+ "id": 4124
1933
1924
  },
1934
1925
  {
1935
- "id": 4222,
1926
+ "rank": 1,
1927
+ "name": "Butcher",
1928
+ "id": 4114
1929
+ },
1930
+ {
1931
+ "rank": 3,
1936
1932
  "name": "Veteran's Scars",
1937
- "rank": 3
1933
+ "id": 4222
1938
1934
  },
1939
1935
  {
1940
- "id": 4112,
1941
- "name": "Fury",
1942
- "rank": 4
1936
+ "rank": 4,
1937
+ "name": "Sorcery",
1938
+ "id": 4113
1943
1939
  },
1944
1940
  {
1945
- "id": 4221,
1941
+ "rank": 1,
1946
1942
  "name": "Unyielding",
1947
- "rank": 1
1943
+ "id": 4221
1948
1944
  },
1949
1945
  {
1950
- "id": 4252,
1951
- "name": "Legendary Guardian",
1952
- "rank": 4
1946
+ "rank": 3,
1947
+ "name": "Devastating Strikes",
1948
+ "id": 4152
1953
1949
  },
1954
1950
  {
1955
- "id": 4122,
1956
- "name": "Brute Force",
1957
- "rank": 3
1951
+ "rank": 3,
1952
+ "name": "Mental Force",
1953
+ "id": 4123
1958
1954
  },
1959
1955
  {
1960
- "id": 4262,
1961
- "name": "Tenacious",
1962
- "rank": 1
1956
+ "rank": 1,
1957
+ "name": "Arcane Mastery",
1958
+ "id": 4133
1963
1959
  },
1964
1960
  {
1965
- "id": 4241,
1966
- "name": "Perseverance",
1967
- "rank": 3
1961
+ "rank": 1,
1962
+ "name": "Juggernaut",
1963
+ "id": 4232
1968
1964
  },
1969
1965
  {
1970
- "id": 4134,
1971
- "name": "Executioner",
1972
- "rank": 1
1966
+ "rank": 3,
1967
+ "name": "Archmage",
1968
+ "id": 4143
1973
1969
  },
1974
1970
  {
1975
- "id": 4232,
1976
- "name": "Juggernaut",
1977
- "rank": 1
1971
+ "rank": 1,
1972
+ "name": "Havoc",
1973
+ "id": 4162
1978
1974
  }
1979
- ]
1975
+ ],
1976
+ "current": false,
1977
+ "name": "Vlad",
1978
+ "id": 34170151
1980
1979
  },
1981
1980
  {
1982
- "id": 36928741,
1983
- "name": "AP",
1984
- "current": false,
1985
1981
  "talents": [
1986
1982
  {
1987
- "id": 4212,
1988
- "name": "Recovery",
1989
- "rank": 2
1990
- },
1991
- {
1992
- "id": 4214,
1983
+ "rank": 2,
1993
1984
  "name": "Tough Skin",
1994
- "rank": 2
1985
+ "id": 4214
1995
1986
  },
1996
1987
  {
1997
- "id": 4211,
1998
- "name": "Block",
1999
- "rank": 1
1988
+ "rank": 2,
1989
+ "name": "Fleet of Foot",
1990
+ "id": 4312
2000
1991
  },
2001
1992
  {
2002
- "id": 4134,
1993
+ "rank": 3,
2003
1994
  "name": "Executioner",
2004
- "rank": 3
2005
- },
2006
- {
2007
- "id": 4124,
2008
- "name": "Feast",
2009
- "rank": 1
2010
- },
2011
- {
2012
- "id": 4114,
2013
- "name": "Butcher",
2014
- "rank": 1
1995
+ "id": 4134
2015
1996
  },
2016
1997
  {
2017
- "id": 4222,
2018
- "name": "Veteran's Scars",
2019
- "rank": 3
1998
+ "rank": 1,
1999
+ "name": "Arcane Blade",
2000
+ "id": 4154
2020
2001
  },
2021
2002
  {
2022
- "id": 4113,
2003
+ "rank": 4,
2023
2004
  "name": "Sorcery",
2024
- "rank": 4
2005
+ "id": 4113
2025
2006
  },
2026
2007
  {
2027
- "id": 4144,
2008
+ "rank": 1,
2028
2009
  "name": "Dangerous Game",
2029
- "rank": 1
2010
+ "id": 4144
2011
+ },
2012
+ {
2013
+ "rank": 3,
2014
+ "name": "Brute Force",
2015
+ "id": 4122
2030
2016
  },
2031
2017
  {
2032
- "id": 4152,
2018
+ "rank": 3,
2033
2019
  "name": "Devastating Strikes",
2034
- "rank": 3
2020
+ "id": 4152
2035
2021
  },
2036
2022
  {
2037
- "id": 4123,
2023
+ "rank": 3,
2038
2024
  "name": "Mental Force",
2039
- "rank": 3
2025
+ "id": 4123
2026
+ },
2027
+ {
2028
+ "rank": 1,
2029
+ "name": "Double-Edged Sword",
2030
+ "id": 4111
2040
2031
  },
2041
2032
  {
2042
- "id": 4133,
2033
+ "rank": 1,
2034
+ "name": "Martial Mastery",
2035
+ "id": 4132
2036
+ },
2037
+ {
2038
+ "rank": 1,
2043
2039
  "name": "Arcane Mastery",
2044
- "rank": 1
2040
+ "id": 4133
2045
2041
  },
2046
2042
  {
2047
- "id": 4143,
2043
+ "rank": 3,
2048
2044
  "name": "Archmage",
2049
- "rank": 3
2045
+ "id": 4143
2050
2046
  },
2051
2047
  {
2052
- "id": 4162,
2048
+ "rank": 1,
2053
2049
  "name": "Havoc",
2054
- "rank": 1
2050
+ "id": 4162
2051
+ },
2052
+ {
2053
+ "rank": 1,
2054
+ "name": "Spell Weaving",
2055
+ "id": 4131
2055
2056
  }
2056
- ]
2057
+ ],
2058
+ "current": false,
2059
+ "name": "Eve Jungle",
2060
+ "id": 34170152
2057
2061
  },
2058
2062
  {
2059
- "id": 36928742,
2060
- "name": "ADC",
2061
- "current": false,
2062
2063
  "talents": [
2063
2064
  {
2064
- "id": 4212,
2065
+ "rank": 2,
2065
2066
  "name": "Recovery",
2066
- "rank": 2
2067
+ "id": 4212
2067
2068
  },
2068
2069
  {
2069
- "id": 4211,
2070
- "name": "Block",
2071
- "rank": 2
2070
+ "rank": 1,
2071
+ "name": "Swiftness",
2072
+ "id": 4242
2072
2073
  },
2073
2074
  {
2074
- "id": 4134,
2075
- "name": "Executioner",
2076
- "rank": 3
2075
+ "rank": 3,
2076
+ "name": "Hardiness",
2077
+ "id": 4233
2077
2078
  },
2078
2079
  {
2079
- "id": 4124,
2080
- "name": "Feast",
2081
- "rank": 1
2080
+ "rank": 1,
2081
+ "name": "Reinforced Armor",
2082
+ "id": 4243
2082
2083
  },
2083
2084
  {
2084
- "id": 4114,
2085
- "name": "Butcher",
2086
- "rank": 1
2085
+ "rank": 2,
2086
+ "name": "Block",
2087
+ "id": 4211
2087
2088
  },
2088
2089
  {
2089
- "id": 4151,
2090
- "name": "Frenzy",
2091
- "rank": 1
2090
+ "rank": 2,
2091
+ "name": "Tough Skin",
2092
+ "id": 4214
2092
2093
  },
2093
2094
  {
2094
- "id": 4222,
2095
- "name": "Veteran's Scars",
2096
- "rank": 3
2095
+ "rank": 1,
2096
+ "name": "Butcher",
2097
+ "id": 4114
2097
2098
  },
2098
2099
  {
2099
- "id": 4221,
2100
- "name": "Unyielding",
2101
- "rank": 1
2100
+ "rank": 1,
2101
+ "name": "Second Wind",
2102
+ "id": 4251
2102
2103
  },
2103
2104
  {
2104
- "id": 4144,
2105
- "name": "Dangerous Game",
2106
- "rank": 1
2105
+ "rank": 3,
2106
+ "name": "Veteran's Scars",
2107
+ "id": 4222
2107
2108
  },
2108
2109
  {
2109
- "id": 4122,
2110
- "name": "Brute Force",
2111
- "rank": 3
2110
+ "rank": 1,
2111
+ "name": "Unyielding",
2112
+ "id": 4221
2112
2113
  },
2113
2114
  {
2114
- "id": 4152,
2115
- "name": "Devastating Strikes",
2116
- "rank": 3
2115
+ "rank": 4,
2116
+ "name": "Legendary Guardian",
2117
+ "id": 4252
2117
2118
  },
2118
2119
  {
2119
- "id": 4231,
2120
- "name": "Oppression",
2121
- "rank": 1
2120
+ "rank": 1,
2121
+ "name": "Bladed Armor",
2122
+ "id": 4224
2122
2123
  },
2123
2124
  {
2124
- "id": 4132,
2125
- "name": "Martial Mastery",
2126
- "rank": 1
2125
+ "rank": 1,
2126
+ "name": "Tenacious",
2127
+ "id": 4262
2127
2128
  },
2128
2129
  {
2129
- "id": 4142,
2130
- "name": "Warlord",
2131
- "rank": 3
2130
+ "rank": 3,
2131
+ "name": "Fleet of Foot",
2132
+ "id": 4312
2132
2133
  },
2133
2134
  {
2134
- "id": 4162,
2135
- "name": "Havoc",
2136
- "rank": 1
2135
+ "rank": 3,
2136
+ "name": "Perseverance",
2137
+ "id": 4241
2137
2138
  },
2138
2139
  {
2139
- "id": 4112,
2140
- "name": "Fury",
2141
- "rank": 3
2140
+ "rank": 1,
2141
+ "name": "Juggernaut",
2142
+ "id": 4232
2142
2143
  }
2143
- ]
2144
+ ],
2145
+ "current": false,
2146
+ "name": "Mundo Giungla",
2147
+ "id": 34170153
2144
2148
  },
2145
2149
  {
2146
- "id": 36928743,
2147
- "name": "Sivir",
2148
- "current": false,
2149
2150
  "talents": [
2150
2151
  {
2151
- "id": 4212,
2152
+ "rank": 2,
2152
2153
  "name": "Recovery",
2153
- "rank": 2
2154
+ "id": 4212
2154
2155
  },
2155
2156
  {
2156
- "id": 4211,
2157
+ "rank": 1,
2158
+ "name": "Swiftness",
2159
+ "id": 4242
2160
+ },
2161
+ {
2162
+ "rank": 2,
2157
2163
  "name": "Block",
2158
- "rank": 2
2164
+ "id": 4211
2159
2165
  },
2160
2166
  {
2161
- "id": 4134,
2162
- "name": "Executioner",
2163
- "rank": 3
2167
+ "rank": 2,
2168
+ "name": "Tough Skin",
2169
+ "id": 4214
2164
2170
  },
2165
2171
  {
2166
- "id": 4151,
2167
- "name": "Frenzy",
2168
- "rank": 1
2172
+ "rank": 1,
2173
+ "name": "Feast",
2174
+ "id": 4124
2169
2175
  },
2170
2176
  {
2171
- "id": 4222,
2172
- "name": "Veteran's Scars",
2173
- "rank": 3
2177
+ "rank": 1,
2178
+ "name": "Butcher",
2179
+ "id": 4114
2174
2180
  },
2175
2181
  {
2176
- "id": 4112,
2177
- "name": "Fury",
2178
- "rank": 4
2182
+ "rank": 3,
2183
+ "name": "Veteran's Scars",
2184
+ "id": 4222
2179
2185
  },
2180
2186
  {
2181
- "id": 4144,
2182
- "name": "Dangerous Game",
2183
- "rank": 1
2187
+ "rank": 4,
2188
+ "name": "Sorcery",
2189
+ "id": 4113
2184
2190
  },
2185
2191
  {
2186
- "id": 4221,
2192
+ "rank": 1,
2187
2193
  "name": "Unyielding",
2188
- "rank": 1
2194
+ "id": 4221
2189
2195
  },
2190
2196
  {
2191
- "id": 4122,
2192
- "name": "Brute Force",
2193
- "rank": 3
2197
+ "rank": 4,
2198
+ "name": "Legendary Guardian",
2199
+ "id": 4252
2194
2200
  },
2195
2201
  {
2196
- "id": 4152,
2197
- "name": "Devastating Strikes",
2198
- "rank": 3
2202
+ "rank": 3,
2203
+ "name": "Mental Force",
2204
+ "id": 4123
2199
2205
  },
2200
2206
  {
2201
- "id": 4111,
2202
- "name": "Double-Edged Sword",
2203
- "rank": 1
2207
+ "rank": 1,
2208
+ "name": "Tenacious",
2209
+ "id": 4262
2204
2210
  },
2205
2211
  {
2206
- "id": 4132,
2207
- "name": "Martial Mastery",
2208
- "rank": 1
2212
+ "rank": 1,
2213
+ "name": "Oppression",
2214
+ "id": 4231
2209
2215
  },
2210
2216
  {
2211
- "id": 4142,
2212
- "name": "Warlord",
2213
- "rank": 3
2217
+ "rank": 3,
2218
+ "name": "Perseverance",
2219
+ "id": 4241
2214
2220
  },
2215
2221
  {
2216
- "id": 4232,
2222
+ "rank": 1,
2217
2223
  "name": "Juggernaut",
2218
- "rank": 1
2219
- },
2220
- {
2221
- "id": 4162,
2222
- "name": "Havoc",
2223
- "rank": 1
2224
+ "id": 4232
2224
2225
  }
2225
- ]
2226
+ ],
2227
+ "current": false,
2228
+ "name": "9\/21 AP Jungle",
2229
+ "id": 34170154
2226
2230
  },
2227
2231
  {
2228
- "id": 36928744,
2229
- "name": "Eve",
2230
- "current": false,
2231
2232
  "talents": [
2232
2233
  {
2233
- "id": 4211,
2234
- "name": "Block",
2235
- "rank": 2
2234
+ "rank": 2,
2235
+ "name": "Recovery",
2236
+ "id": 4212
2236
2237
  },
2237
2238
  {
2238
- "id": 4214,
2239
- "name": "Tough Skin",
2240
- "rank": 2
2239
+ "rank": 2,
2240
+ "name": "Block",
2241
+ "id": 4211
2241
2242
  },
2242
2243
  {
2243
- "id": 4134,
2244
+ "rank": 3,
2244
2245
  "name": "Executioner",
2245
- "rank": 3
2246
+ "id": 4134
2246
2247
  },
2247
2248
  {
2248
- "id": 4154,
2249
+ "rank": 1,
2249
2250
  "name": "Arcane Blade",
2250
- "rank": 1
2251
- },
2252
- {
2253
- "id": 4124,
2254
- "name": "Feast",
2255
- "rank": 1
2251
+ "id": 4154
2256
2252
  },
2257
2253
  {
2258
- "id": 4114,
2259
- "name": "Butcher",
2260
- "rank": 1
2261
- },
2262
- {
2263
- "id": 4222,
2254
+ "rank": 3,
2264
2255
  "name": "Veteran's Scars",
2265
- "rank": 3
2256
+ "id": 4222
2266
2257
  },
2267
2258
  {
2268
- "id": 4113,
2259
+ "rank": 4,
2269
2260
  "name": "Sorcery",
2270
- "rank": 4
2261
+ "id": 4113
2262
+ },
2263
+ {
2264
+ "rank": 1,
2265
+ "name": "Dangerous Game",
2266
+ "id": 4144
2271
2267
  },
2272
2268
  {
2273
- "id": 4221,
2269
+ "rank": 1,
2274
2270
  "name": "Unyielding",
2275
- "rank": 1
2271
+ "id": 4221
2276
2272
  },
2277
2273
  {
2278
- "id": 4152,
2274
+ "rank": 3,
2279
2275
  "name": "Devastating Strikes",
2280
- "rank": 3
2276
+ "id": 4152
2281
2277
  },
2282
2278
  {
2283
- "id": 4123,
2279
+ "rank": 3,
2284
2280
  "name": "Mental Force",
2285
- "rank": 3
2281
+ "id": 4123
2286
2282
  },
2287
2283
  {
2288
- "id": 4133,
2289
- "name": "Arcane Mastery",
2290
- "rank": 1
2284
+ "rank": 1,
2285
+ "name": "Oppression",
2286
+ "id": 4231
2291
2287
  },
2292
2288
  {
2293
- "id": 4143,
2294
- "name": "Archmage",
2295
- "rank": 3
2289
+ "rank": 1,
2290
+ "name": "Double-Edged Sword",
2291
+ "id": 4111
2296
2292
  },
2297
2293
  {
2298
- "id": 4232,
2299
- "name": "Juggernaut",
2300
- "rank": 1
2294
+ "rank": 1,
2295
+ "name": "Arcane Mastery",
2296
+ "id": 4133
2301
2297
  },
2302
2298
  {
2303
- "id": 4162,
2299
+ "rank": 3,
2300
+ "name": "Archmage",
2301
+ "id": 4143
2302
+ },
2303
+ {
2304
+ "rank": 1,
2304
2305
  "name": "Havoc",
2305
- "rank": 1
2306
+ "id": 4162
2306
2307
  }
2307
- ]
2308
- },
2309
- {
2310
- "id": 36928745,
2311
- "name": "@@!PaG3!@@36928745",
2312
- "current": false
2308
+ ],
2309
+ "current": false,
2310
+ "name": "AP Support",
2311
+ "id": 34170155
2313
2312
  }
2314
- ]
2313
+ ],
2314
+ "summonerId": 30743211
2315
2315
  }
2316
2316
  }