ice_and_fire_api 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f77fb7efd2311b54522eb2b3b6068e980ad0a840
4
- data.tar.gz: e5dd492666eb7d2c024af3cf1ed1d9950d5fa676
3
+ metadata.gz: d85a77dea089e384038f5186340e0995b1976620
4
+ data.tar.gz: 7dc1ef316259d891fdc0636360879298506d57de
5
5
  SHA512:
6
- metadata.gz: 55926bdf3919d6155fcecb8dc164edebe7619d973d6b99917e57b089f715af5fa3d6168a710fa4812b6becbebd952673ac5c7f2cdd829aedc751260744d59dc7
7
- data.tar.gz: 3fd67214fcacb66db082277ae3258f04712f8775eecff5e2e44bad966d21ea4b2089b1b3ab11e4f26dc13e67a0f40db3cfb8ffe13e920095b55ada501d74fdf6
6
+ metadata.gz: 899d9d3a0954e5ea9114545fb7317012cfd05eb7d772c179c56ea947a46ca3782ed6958c64fe366ceaa86198733437e8af5784281ce8237aaf7e1f9bd601e777
7
+ data.tar.gz: f6d2815c1e064201f8f18d8f37d40ef0d22a7b8893ce8ded87bf5c33fd5aa90e05e484c44f6a104fee3e9410165696ef68a4155b8faedc4709ad27137e880f19
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # IceAndFireApi
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/ice_and_fire_api.svg)](https://badge.fury.io/rb/ice_and_fire_api)
4
+ [![Downloads](https://img.shields.io/gem/dt/ice_and_fire_api.svg)](https://rubygems.org/gems/ice_and_fire_api)
5
+ [![Build Status](https://travis-ci.org/dbelling/ice_and_fire_api.png?branch=master)](https://travis-ci.org/dbelling/ice_and_fire_api)
6
+
7
+ ![Game of Thrones](http://www.cheatsheet.com/wp-content/uploads/2016/01/GoT-1024x512.jpg)
8
+
3
9
  This gem provides an interface for the [Ice And Fire API](https://anapioficeandfire.com/). It was motivated by the current [lack of support](https://anapioficeandfire.com/Documentation#library-elixir) for a ruby library. More response fields and schema information for `House`, `Character`, and `Book` resources is available through the [documentation](https://anapioficeandfire.com/Documentation#root).
4
10
 
5
11
  ## Installation
@@ -40,10 +46,10 @@ The [Ice and Fire API](https://anapioficeandfire.com/) contains endpoints for th
40
46
 
41
47
  or
42
48
 
43
- **Find a book resource through a name filter.**
49
+ **Find a book resource through a [filter](https://github.com/joakimskoog/AnApiOfIceAndFire/blob/master/AnApiOfIceAndFire/Content/Documentation/Books.md#filtering-books).**
44
50
 
45
51
  ```ruby
46
- IceAndFireApi::Book.find_by_name('A Game of Thrones')
52
+ IceAndFireApi::Book.find_by({toReleaseDate: '2010-09-22T00:00:00', pageSize: 5})
47
53
  ```
48
54
  * [`Characters`](https://anapioficeandfire.com/Documentation#characters)
49
55
 
@@ -55,10 +61,10 @@ The [Ice and Fire API](https://anapioficeandfire.com/) contains endpoints for th
55
61
 
56
62
  or
57
63
 
58
- **Find a character resource through a name filter.**
64
+ **Find a character resource through a [filter](https://github.com/joakimskoog/AnApiOfIceAndFire/blob/master/AnApiOfIceAndFire/Content/Documentation/Characters.md#filtering-characters).**
59
65
 
60
66
  ```ruby
61
- IceAndFireApi::Character.find('Eddard Stark')
67
+ IceAndFireApi::Character.find_by(name: 'Eddard Stark')
62
68
  ```
63
69
 
64
70
  * [`Houses`](https://anapioficeandfire.com/Documentation#houses)
@@ -71,10 +77,10 @@ The [Ice and Fire API](https://anapioficeandfire.com/) contains endpoints for th
71
77
 
72
78
  or
73
79
 
74
- **Find a house resource through its associated ID.**
80
+ **Find a house resource through a [filter](https://github.com/joakimskoog/AnApiOfIceAndFire/blob/master/AnApiOfIceAndFire/Content/Documentation/Houses.md#filtering-houses).**
75
81
 
76
82
  ```ruby
77
- IceAndFireApi::House.find('House Algood')
83
+ IceAndFireApi::House.find_by({region: 'The North', pageSize: 15})
78
84
  ```
79
85
 
80
86
  ## Contributing
@@ -24,9 +24,9 @@ module IceAndFireApi
24
24
  new(attributes)
25
25
  end
26
26
 
27
- def self.find_by_name(name)
28
- name_query = URI.encode_www_form_component(name.to_s)
29
- response = Faraday.get("#{IceAndFireApi::API_URL}/books?name=#{name_query}")
27
+ def self.find_by(query_parameters)
28
+ book_query = URI.encode_www_form(query_parameters)
29
+ response = Faraday.get("#{IceAndFireApi::API_URL}/books?#{book_query}")
30
30
  attributes_response = JSON.parse(response.body)
31
31
  attributes_array = []
32
32
  attributes_response.each do |attributes|
@@ -30,9 +30,9 @@ module IceAndFireApi
30
30
  new(attributes)
31
31
  end
32
32
 
33
- def self.find_by_name(name)
34
- name_query = URI.encode_www_form_component(name.to_s)
35
- response = Faraday.get("#{IceAndFireApi::API_URL}/characters?name=#{name_query}")
33
+ def self.find_by(query_parameters)
34
+ character_query = URI.encode_www_form(query_parameters)
35
+ response = Faraday.get("#{IceAndFireApi::API_URL}/characters?#{character_query}")
36
36
  attributes_response = JSON.parse(response.body)
37
37
  attributes_array = []
38
38
  attributes_response.each do |attributes|
@@ -31,9 +31,9 @@ module IceAndFireApi
31
31
  new(attributes)
32
32
  end
33
33
 
34
- def self.find_by_name(name)
35
- name_query = URI.encode_www_form_component(name.to_s)
36
- response = Faraday.get("#{IceAndFireApi::API_URL}/houses?name=#{name_query}")
34
+ def self.find_by(query_parameters)
35
+ house_query = URI.encode_www_form(query_parameters)
36
+ response = Faraday.get("#{IceAndFireApi::API_URL}/houses?#{house_query}")
37
37
  attributes_response = JSON.parse(response.body)
38
38
  attributes_array = []
39
39
  attributes_response.each do |attributes|
@@ -1,3 +1,3 @@
1
1
  module IceAndFireApi
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.1.0'.freeze
3
3
  end
@@ -15,7 +15,7 @@ http_interactions:
15
15
  message:
16
16
  headers:
17
17
  date:
18
- - Mon, 26 Dec 2016 15:23:37 GMT
18
+ - Thu, 29 Dec 2016 17:31:39 GMT
19
19
  content-type:
20
20
  - application/json; charset=utf-8
21
21
  content-length:
@@ -23,8 +23,8 @@ http_interactions:
23
23
  connection:
24
24
  - close
25
25
  set-cookie:
26
- - __cfduid=d38db8d128d8493c6da9268dfa90e25ef1482765816; expires=Tue, 26-Dec-17
27
- 15:23:36 GMT; path=/; domain=.anapioficeandfire.com; HttpOnly, ARRAffinity=bb02697a828a67d629cd8387c3e7fa89b5a5514b4c02be02a81f93ed19b16cab;Path=/;Domain=www.anapioficeandfire.com
26
+ - __cfduid=dfb294b013f2513716ca47b55721d3e481483032699; expires=Fri, 29-Dec-17
27
+ 17:31:39 GMT; path=/; domain=.anapioficeandfire.com; HttpOnly, ARRAffinity=bb02697a828a67d629cd8387c3e7fa89b5a5514b4c02be02a81f93ed19b16cab;Path=/;Domain=www.anapioficeandfire.com
28
28
  cache-control:
29
29
  - no-transform, must-revalidate, max-age=0, private
30
30
  last-modified:
@@ -44,7 +44,7 @@ http_interactions:
44
44
  server:
45
45
  - cloudflare-nginx
46
46
  cf-ray:
47
- - 317588f411252525-ORD
47
+ - 318efca3d6cf55ee-ORD
48
48
  body:
49
49
  encoding: ASCII-8BIT
50
50
  string: "[\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/3\",\r\n
@@ -571,5 +571,5 @@ http_interactions:
571
571
  \ \"http://www.anapioficeandfire.com/api/characters/1303\",\r\n \"http://www.anapioficeandfire.com/api/characters/1319\"\r\n
572
572
  \ ]\r\n }\r\n]"
573
573
  http_version:
574
- recorded_at: Mon, 26 Dec 2016 15:23:36 GMT
574
+ recorded_at: Thu, 29 Dec 2016 17:31:39 GMT
575
575
  recorded_with: VCR 3.0.3
@@ -0,0 +1,753 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.anapioficeandfire.com/api/books?fromReleaseDate=2010-09-22T00%3A00%3A00
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.10.0
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ date:
18
+ - Thu, 29 Dec 2016 17:48:23 GMT
19
+ content-type:
20
+ - application/json; charset=utf-8
21
+ content-length:
22
+ - '6780'
23
+ connection:
24
+ - close
25
+ set-cookie:
26
+ - __cfduid=df3c2009ca6e956a74d5b39ccdc4bce591483033702; expires=Fri, 29-Dec-17
27
+ 17:48:22 GMT; path=/; domain=.anapioficeandfire.com; HttpOnly, ARRAffinity=bb02697a828a67d629cd8387c3e7fa89b5a5514b4c02be02a81f93ed19b16cab;Path=/;Domain=www.anapioficeandfire.com
28
+ cache-control:
29
+ - no-transform, must-revalidate, max-age=0, private
30
+ last-modified:
31
+ - Thu, 29 Dec 2016 17:48:23 GMT
32
+ etag:
33
+ - '"b4ed718244e24ddeaaed6c2c5234290f"'
34
+ vary:
35
+ - Accept-Encoding
36
+ link:
37
+ - <http://www.anapioficeandfire.com/api/books?fromReleaseDate=09%2F22%2F2010%2000%3A00%3A00&page=1&pageSize=10>;
38
+ rel="first", <http://www.anapioficeandfire.com/api/books?fromReleaseDate=09%2F22%2F2010%2000%3A00%3A00&page=1&pageSize=10>;
39
+ rel="last"
40
+ x-aspnet-version:
41
+ - 4.0.30319
42
+ x-powered-by:
43
+ - ASP.NET
44
+ server:
45
+ - cloudflare-nginx
46
+ cf-ray:
47
+ - 318f152097145546-ORD
48
+ body:
49
+ encoding: ASCII-8BIT
50
+ string: "[\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/7\",\r\n
51
+ \ \"name\": \"The Mystery Knight\",\r\n \"isbn\": \"978-0765360267\",\r\n
52
+ \ \"authors\": [\r\n \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\":
53
+ 416,\r\n \"publisher\": \"Tor Fantasy\",\r\n \"country\": \"United States\",\r\n
54
+ \ \"mediaType\": \"Hardcover\",\r\n \"released\": \"2011-03-29T00:00:00\",\r\n
55
+ \ \"characters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/30\",\r\n
56
+ \ \"http://www.anapioficeandfire.com/api/characters/35\",\r\n \"http://www.anapioficeandfire.com/api/characters/38\",\r\n
57
+ \ \"http://www.anapioficeandfire.com/api/characters/41\",\r\n \"http://www.anapioficeandfire.com/api/characters/46\",\r\n
58
+ \ \"http://www.anapioficeandfire.com/api/characters/47\",\r\n \"http://www.anapioficeandfire.com/api/characters/50\",\r\n
59
+ \ \"http://www.anapioficeandfire.com/api/characters/54\",\r\n \"http://www.anapioficeandfire.com/api/characters/58\",\r\n
60
+ \ \"http://www.anapioficeandfire.com/api/characters/61\",\r\n \"http://www.anapioficeandfire.com/api/characters/83\",\r\n
61
+ \ \"http://www.anapioficeandfire.com/api/characters/113\",\r\n \"http://www.anapioficeandfire.com/api/characters/132\",\r\n
62
+ \ \"http://www.anapioficeandfire.com/api/characters/133\",\r\n \"http://www.anapioficeandfire.com/api/characters/161\",\r\n
63
+ \ \"http://www.anapioficeandfire.com/api/characters/192\",\r\n \"http://www.anapioficeandfire.com/api/characters/224\",\r\n
64
+ \ \"http://www.anapioficeandfire.com/api/characters/240\",\r\n \"http://www.anapioficeandfire.com/api/characters/267\",\r\n
65
+ \ \"http://www.anapioficeandfire.com/api/characters/268\",\r\n \"http://www.anapioficeandfire.com/api/characters/274\",\r\n
66
+ \ \"http://www.anapioficeandfire.com/api/characters/276\",\r\n \"http://www.anapioficeandfire.com/api/characters/278\",\r\n
67
+ \ \"http://www.anapioficeandfire.com/api/characters/283\",\r\n \"http://www.anapioficeandfire.com/api/characters/289\",\r\n
68
+ \ \"http://www.anapioficeandfire.com/api/characters/342\",\r\n \"http://www.anapioficeandfire.com/api/characters/399\",\r\n
69
+ \ \"http://www.anapioficeandfire.com/api/characters/428\",\r\n \"http://www.anapioficeandfire.com/api/characters/431\",\r\n
70
+ \ \"http://www.anapioficeandfire.com/api/characters/464\",\r\n \"http://www.anapioficeandfire.com/api/characters/566\",\r\n
71
+ \ \"http://www.anapioficeandfire.com/api/characters/623\",\r\n \"http://www.anapioficeandfire.com/api/characters/655\",\r\n
72
+ \ \"http://www.anapioficeandfire.com/api/characters/695\",\r\n \"http://www.anapioficeandfire.com/api/characters/729\",\r\n
73
+ \ \"http://www.anapioficeandfire.com/api/characters/732\",\r\n \"http://www.anapioficeandfire.com/api/characters/807\",\r\n
74
+ \ \"http://www.anapioficeandfire.com/api/characters/842\",\r\n \"http://www.anapioficeandfire.com/api/characters/868\",\r\n
75
+ \ \"http://www.anapioficeandfire.com/api/characters/921\",\r\n \"http://www.anapioficeandfire.com/api/characters/1048\",\r\n
76
+ \ \"http://www.anapioficeandfire.com/api/characters/1065\",\r\n \"http://www.anapioficeandfire.com/api/characters/1067\",\r\n
77
+ \ \"http://www.anapioficeandfire.com/api/characters/1078\",\r\n \"http://www.anapioficeandfire.com/api/characters/1093\",\r\n
78
+ \ \"http://www.anapioficeandfire.com/api/characters/1117\",\r\n \"http://www.anapioficeandfire.com/api/characters/1138\",\r\n
79
+ \ \"http://www.anapioficeandfire.com/api/characters/1167\",\r\n \"http://www.anapioficeandfire.com/api/characters/1242\",\r\n
80
+ \ \"http://www.anapioficeandfire.com/api/characters/1287\",\r\n \"http://www.anapioficeandfire.com/api/characters/1387\",\r\n
81
+ \ \"http://www.anapioficeandfire.com/api/characters/1392\",\r\n \"http://www.anapioficeandfire.com/api/characters/1462\",\r\n
82
+ \ \"http://www.anapioficeandfire.com/api/characters/1538\",\r\n \"http://www.anapioficeandfire.com/api/characters/1589\",\r\n
83
+ \ \"http://www.anapioficeandfire.com/api/characters/1591\",\r\n \"http://www.anapioficeandfire.com/api/characters/1598\",\r\n
84
+ \ \"http://www.anapioficeandfire.com/api/characters/1636\",\r\n \"http://www.anapioficeandfire.com/api/characters/1641\",\r\n
85
+ \ \"http://www.anapioficeandfire.com/api/characters/1664\",\r\n \"http://www.anapioficeandfire.com/api/characters/1694\",\r\n
86
+ \ \"http://www.anapioficeandfire.com/api/characters/1726\",\r\n \"http://www.anapioficeandfire.com/api/characters/1752\",\r\n
87
+ \ \"http://www.anapioficeandfire.com/api/characters/1823\",\r\n \"http://www.anapioficeandfire.com/api/characters/1851\",\r\n
88
+ \ \"http://www.anapioficeandfire.com/api/characters/1889\",\r\n \"http://www.anapioficeandfire.com/api/characters/1966\",\r\n
89
+ \ \"http://www.anapioficeandfire.com/api/characters/1983\",\r\n \"http://www.anapioficeandfire.com/api/characters/2021\",\r\n
90
+ \ \"http://www.anapioficeandfire.com/api/characters/2054\",\r\n \"http://www.anapioficeandfire.com/api/characters/2102\"\r\n
91
+ \ ],\r\n \"povCharacters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/329\"\r\n
92
+ \ ]\r\n },\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/8\",\r\n
93
+ \ \"name\": \"A Dance with Dragons\",\r\n \"isbn\": \"978-0553801477\",\r\n
94
+ \ \"authors\": [\r\n \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\":
95
+ 1040,\r\n \"publisher\": \"Bantam Books\",\r\n \"country\": \"United
96
+ States\",\r\n \"mediaType\": \"Hardcover\",\r\n \"released\": \"2011-07-12T00:00:00\",\r\n
97
+ \ \"characters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/2\",\r\n
98
+ \ \"http://www.anapioficeandfire.com/api/characters/4\",\r\n \"http://www.anapioficeandfire.com/api/characters/11\",\r\n
99
+ \ \"http://www.anapioficeandfire.com/api/characters/12\",\r\n \"http://www.anapioficeandfire.com/api/characters/15\",\r\n
100
+ \ \"http://www.anapioficeandfire.com/api/characters/16\",\r\n \"http://www.anapioficeandfire.com/api/characters/19\",\r\n
101
+ \ \"http://www.anapioficeandfire.com/api/characters/21\",\r\n \"http://www.anapioficeandfire.com/api/characters/22\",\r\n
102
+ \ \"http://www.anapioficeandfire.com/api/characters/24\",\r\n \"http://www.anapioficeandfire.com/api/characters/25\",\r\n
103
+ \ \"http://www.anapioficeandfire.com/api/characters/26\",\r\n \"http://www.anapioficeandfire.com/api/characters/27\",\r\n
104
+ \ \"http://www.anapioficeandfire.com/api/characters/28\",\r\n \"http://www.anapioficeandfire.com/api/characters/31\",\r\n
105
+ \ \"http://www.anapioficeandfire.com/api/characters/37\",\r\n \"http://www.anapioficeandfire.com/api/characters/38\",\r\n
106
+ \ \"http://www.anapioficeandfire.com/api/characters/42\",\r\n \"http://www.anapioficeandfire.com/api/characters/46\",\r\n
107
+ \ \"http://www.anapioficeandfire.com/api/characters/47\",\r\n \"http://www.anapioficeandfire.com/api/characters/52\",\r\n
108
+ \ \"http://www.anapioficeandfire.com/api/characters/54\",\r\n \"http://www.anapioficeandfire.com/api/characters/55\",\r\n
109
+ \ \"http://www.anapioficeandfire.com/api/characters/56\",\r\n \"http://www.anapioficeandfire.com/api/characters/58\",\r\n
110
+ \ \"http://www.anapioficeandfire.com/api/characters/60\",\r\n \"http://www.anapioficeandfire.com/api/characters/62\",\r\n
111
+ \ \"http://www.anapioficeandfire.com/api/characters/63\",\r\n \"http://www.anapioficeandfire.com/api/characters/66\",\r\n
112
+ \ \"http://www.anapioficeandfire.com/api/characters/67\",\r\n \"http://www.anapioficeandfire.com/api/characters/69\",\r\n
113
+ \ \"http://www.anapioficeandfire.com/api/characters/72\",\r\n \"http://www.anapioficeandfire.com/api/characters/77\",\r\n
114
+ \ \"http://www.anapioficeandfire.com/api/characters/79\",\r\n \"http://www.anapioficeandfire.com/api/characters/81\",\r\n
115
+ \ \"http://www.anapioficeandfire.com/api/characters/82\",\r\n \"http://www.anapioficeandfire.com/api/characters/85\",\r\n
116
+ \ \"http://www.anapioficeandfire.com/api/characters/89\",\r\n \"http://www.anapioficeandfire.com/api/characters/91\",\r\n
117
+ \ \"http://www.anapioficeandfire.com/api/characters/96\",\r\n \"http://www.anapioficeandfire.com/api/characters/99\",\r\n
118
+ \ \"http://www.anapioficeandfire.com/api/characters/100\",\r\n \"http://www.anapioficeandfire.com/api/characters/103\",\r\n
119
+ \ \"http://www.anapioficeandfire.com/api/characters/108\",\r\n \"http://www.anapioficeandfire.com/api/characters/112\",\r\n
120
+ \ \"http://www.anapioficeandfire.com/api/characters/115\",\r\n \"http://www.anapioficeandfire.com/api/characters/116\",\r\n
121
+ \ \"http://www.anapioficeandfire.com/api/characters/117\",\r\n \"http://www.anapioficeandfire.com/api/characters/118\",\r\n
122
+ \ \"http://www.anapioficeandfire.com/api/characters/123\",\r\n \"http://www.anapioficeandfire.com/api/characters/124\",\r\n
123
+ \ \"http://www.anapioficeandfire.com/api/characters/125\",\r\n \"http://www.anapioficeandfire.com/api/characters/126\",\r\n
124
+ \ \"http://www.anapioficeandfire.com/api/characters/130\",\r\n \"http://www.anapioficeandfire.com/api/characters/134\",\r\n
125
+ \ \"http://www.anapioficeandfire.com/api/characters/139\",\r\n \"http://www.anapioficeandfire.com/api/characters/140\",\r\n
126
+ \ \"http://www.anapioficeandfire.com/api/characters/141\",\r\n \"http://www.anapioficeandfire.com/api/characters/142\",\r\n
127
+ \ \"http://www.anapioficeandfire.com/api/characters/143\",\r\n \"http://www.anapioficeandfire.com/api/characters/146\",\r\n
128
+ \ \"http://www.anapioficeandfire.com/api/characters/147\",\r\n \"http://www.anapioficeandfire.com/api/characters/149\",\r\n
129
+ \ \"http://www.anapioficeandfire.com/api/characters/151\",\r\n \"http://www.anapioficeandfire.com/api/characters/153\",\r\n
130
+ \ \"http://www.anapioficeandfire.com/api/characters/160\",\r\n \"http://www.anapioficeandfire.com/api/characters/162\",\r\n
131
+ \ \"http://www.anapioficeandfire.com/api/characters/164\",\r\n \"http://www.anapioficeandfire.com/api/characters/165\",\r\n
132
+ \ \"http://www.anapioficeandfire.com/api/characters/166\",\r\n \"http://www.anapioficeandfire.com/api/characters/169\",\r\n
133
+ \ \"http://www.anapioficeandfire.com/api/characters/172\",\r\n \"http://www.anapioficeandfire.com/api/characters/175\",\r\n
134
+ \ \"http://www.anapioficeandfire.com/api/characters/176\",\r\n \"http://www.anapioficeandfire.com/api/characters/177\",\r\n
135
+ \ \"http://www.anapioficeandfire.com/api/characters/179\",\r\n \"http://www.anapioficeandfire.com/api/characters/180\",\r\n
136
+ \ \"http://www.anapioficeandfire.com/api/characters/181\",\r\n \"http://www.anapioficeandfire.com/api/characters/188\",\r\n
137
+ \ \"http://www.anapioficeandfire.com/api/characters/189\",\r\n \"http://www.anapioficeandfire.com/api/characters/190\",\r\n
138
+ \ \"http://www.anapioficeandfire.com/api/characters/191\",\r\n \"http://www.anapioficeandfire.com/api/characters/194\",\r\n
139
+ \ \"http://www.anapioficeandfire.com/api/characters/196\",\r\n \"http://www.anapioficeandfire.com/api/characters/199\",\r\n
140
+ \ \"http://www.anapioficeandfire.com/api/characters/200\",\r\n \"http://www.anapioficeandfire.com/api/characters/201\",\r\n
141
+ \ \"http://www.anapioficeandfire.com/api/characters/202\",\r\n \"http://www.anapioficeandfire.com/api/characters/203\",\r\n
142
+ \ \"http://www.anapioficeandfire.com/api/characters/205\",\r\n \"http://www.anapioficeandfire.com/api/characters/206\",\r\n
143
+ \ \"http://www.anapioficeandfire.com/api/characters/209\",\r\n \"http://www.anapioficeandfire.com/api/characters/214\",\r\n
144
+ \ \"http://www.anapioficeandfire.com/api/characters/216\",\r\n \"http://www.anapioficeandfire.com/api/characters/217\",\r\n
145
+ \ \"http://www.anapioficeandfire.com/api/characters/220\",\r\n \"http://www.anapioficeandfire.com/api/characters/222\",\r\n
146
+ \ \"http://www.anapioficeandfire.com/api/characters/223\",\r\n \"http://www.anapioficeandfire.com/api/characters/229\",\r\n
147
+ \ \"http://www.anapioficeandfire.com/api/characters/230\",\r\n \"http://www.anapioficeandfire.com/api/characters/232\",\r\n
148
+ \ \"http://www.anapioficeandfire.com/api/characters/235\",\r\n \"http://www.anapioficeandfire.com/api/characters/243\",\r\n
149
+ \ \"http://www.anapioficeandfire.com/api/characters/245\",\r\n \"http://www.anapioficeandfire.com/api/characters/246\",\r\n
150
+ \ \"http://www.anapioficeandfire.com/api/characters/247\",\r\n \"http://www.anapioficeandfire.com/api/characters/251\",\r\n
151
+ \ \"http://www.anapioficeandfire.com/api/characters/258\",\r\n \"http://www.anapioficeandfire.com/api/characters/261\",\r\n
152
+ \ \"http://www.anapioficeandfire.com/api/characters/263\",\r\n \"http://www.anapioficeandfire.com/api/characters/264\",\r\n
153
+ \ \"http://www.anapioficeandfire.com/api/characters/267\",\r\n \"http://www.anapioficeandfire.com/api/characters/271\",\r\n
154
+ \ \"http://www.anapioficeandfire.com/api/characters/273\",\r\n \"http://www.anapioficeandfire.com/api/characters/274\",\r\n
155
+ \ \"http://www.anapioficeandfire.com/api/characters/277\",\r\n \"http://www.anapioficeandfire.com/api/characters/278\",\r\n
156
+ \ \"http://www.anapioficeandfire.com/api/characters/279\",\r\n \"http://www.anapioficeandfire.com/api/characters/280\",\r\n
157
+ \ \"http://www.anapioficeandfire.com/api/characters/282\",\r\n \"http://www.anapioficeandfire.com/api/characters/285\",\r\n
158
+ \ \"http://www.anapioficeandfire.com/api/characters/291\",\r\n \"http://www.anapioficeandfire.com/api/characters/292\",\r\n
159
+ \ \"http://www.anapioficeandfire.com/api/characters/293\",\r\n \"http://www.anapioficeandfire.com/api/characters/294\",\r\n
160
+ \ \"http://www.anapioficeandfire.com/api/characters/298\",\r\n \"http://www.anapioficeandfire.com/api/characters/303\",\r\n
161
+ \ \"http://www.anapioficeandfire.com/api/characters/308\",\r\n \"http://www.anapioficeandfire.com/api/characters/309\",\r\n
162
+ \ \"http://www.anapioficeandfire.com/api/characters/313\",\r\n \"http://www.anapioficeandfire.com/api/characters/314\",\r\n
163
+ \ \"http://www.anapioficeandfire.com/api/characters/315\",\r\n \"http://www.anapioficeandfire.com/api/characters/317\",\r\n
164
+ \ \"http://www.anapioficeandfire.com/api/characters/323\",\r\n \"http://www.anapioficeandfire.com/api/characters/326\",\r\n
165
+ \ \"http://www.anapioficeandfire.com/api/characters/327\",\r\n \"http://www.anapioficeandfire.com/api/characters/329\",\r\n
166
+ \ \"http://www.anapioficeandfire.com/api/characters/330\",\r\n \"http://www.anapioficeandfire.com/api/characters/331\",\r\n
167
+ \ \"http://www.anapioficeandfire.com/api/characters/336\",\r\n \"http://www.anapioficeandfire.com/api/characters/337\",\r\n
168
+ \ \"http://www.anapioficeandfire.com/api/characters/338\",\r\n \"http://www.anapioficeandfire.com/api/characters/339\",\r\n
169
+ \ \"http://www.anapioficeandfire.com/api/characters/341\",\r\n \"http://www.anapioficeandfire.com/api/characters/345\",\r\n
170
+ \ \"http://www.anapioficeandfire.com/api/characters/346\",\r\n \"http://www.anapioficeandfire.com/api/characters/349\",\r\n
171
+ \ \"http://www.anapioficeandfire.com/api/characters/357\",\r\n \"http://www.anapioficeandfire.com/api/characters/359\",\r\n
172
+ \ \"http://www.anapioficeandfire.com/api/characters/361\",\r\n \"http://www.anapioficeandfire.com/api/characters/362\",\r\n
173
+ \ \"http://www.anapioficeandfire.com/api/characters/364\",\r\n \"http://www.anapioficeandfire.com/api/characters/368\",\r\n
174
+ \ \"http://www.anapioficeandfire.com/api/characters/369\",\r\n \"http://www.anapioficeandfire.com/api/characters/377\",\r\n
175
+ \ \"http://www.anapioficeandfire.com/api/characters/380\",\r\n \"http://www.anapioficeandfire.com/api/characters/382\",\r\n
176
+ \ \"http://www.anapioficeandfire.com/api/characters/385\",\r\n \"http://www.anapioficeandfire.com/api/characters/387\",\r\n
177
+ \ \"http://www.anapioficeandfire.com/api/characters/392\",\r\n \"http://www.anapioficeandfire.com/api/characters/393\",\r\n
178
+ \ \"http://www.anapioficeandfire.com/api/characters/396\",\r\n \"http://www.anapioficeandfire.com/api/characters/397\",\r\n
179
+ \ \"http://www.anapioficeandfire.com/api/characters/401\",\r\n \"http://www.anapioficeandfire.com/api/characters/402\",\r\n
180
+ \ \"http://www.anapioficeandfire.com/api/characters/403\",\r\n \"http://www.anapioficeandfire.com/api/characters/405\",\r\n
181
+ \ \"http://www.anapioficeandfire.com/api/characters/406\",\r\n \"http://www.anapioficeandfire.com/api/characters/408\",\r\n
182
+ \ \"http://www.anapioficeandfire.com/api/characters/413\",\r\n \"http://www.anapioficeandfire.com/api/characters/415\",\r\n
183
+ \ \"http://www.anapioficeandfire.com/api/characters/416\",\r\n \"http://www.anapioficeandfire.com/api/characters/417\",\r\n
184
+ \ \"http://www.anapioficeandfire.com/api/characters/418\",\r\n \"http://www.anapioficeandfire.com/api/characters/419\",\r\n
185
+ \ \"http://www.anapioficeandfire.com/api/characters/420\",\r\n \"http://www.anapioficeandfire.com/api/characters/424\",\r\n
186
+ \ \"http://www.anapioficeandfire.com/api/characters/426\",\r\n \"http://www.anapioficeandfire.com/api/characters/429\",\r\n
187
+ \ \"http://www.anapioficeandfire.com/api/characters/430\",\r\n \"http://www.anapioficeandfire.com/api/characters/434\",\r\n
188
+ \ \"http://www.anapioficeandfire.com/api/characters/438\",\r\n \"http://www.anapioficeandfire.com/api/characters/439\",\r\n
189
+ \ \"http://www.anapioficeandfire.com/api/characters/445\",\r\n \"http://www.anapioficeandfire.com/api/characters/446\",\r\n
190
+ \ \"http://www.anapioficeandfire.com/api/characters/452\",\r\n \"http://www.anapioficeandfire.com/api/characters/453\",\r\n
191
+ \ \"http://www.anapioficeandfire.com/api/characters/458\",\r\n \"http://www.anapioficeandfire.com/api/characters/462\",\r\n
192
+ \ \"http://www.anapioficeandfire.com/api/characters/466\",\r\n \"http://www.anapioficeandfire.com/api/characters/470\",\r\n
193
+ \ \"http://www.anapioficeandfire.com/api/characters/471\",\r\n \"http://www.anapioficeandfire.com/api/characters/473\",\r\n
194
+ \ \"http://www.anapioficeandfire.com/api/characters/476\",\r\n \"http://www.anapioficeandfire.com/api/characters/477\",\r\n
195
+ \ \"http://www.anapioficeandfire.com/api/characters/480\",\r\n \"http://www.anapioficeandfire.com/api/characters/482\",\r\n
196
+ \ \"http://www.anapioficeandfire.com/api/characters/483\",\r\n \"http://www.anapioficeandfire.com/api/characters/487\",\r\n
197
+ \ \"http://www.anapioficeandfire.com/api/characters/490\",\r\n \"http://www.anapioficeandfire.com/api/characters/495\",\r\n
198
+ \ \"http://www.anapioficeandfire.com/api/characters/496\",\r\n \"http://www.anapioficeandfire.com/api/characters/498\",\r\n
199
+ \ \"http://www.anapioficeandfire.com/api/characters/499\",\r\n \"http://www.anapioficeandfire.com/api/characters/501\",\r\n
200
+ \ \"http://www.anapioficeandfire.com/api/characters/503\",\r\n \"http://www.anapioficeandfire.com/api/characters/504\",\r\n
201
+ \ \"http://www.anapioficeandfire.com/api/characters/505\",\r\n \"http://www.anapioficeandfire.com/api/characters/506\",\r\n
202
+ \ \"http://www.anapioficeandfire.com/api/characters/510\",\r\n \"http://www.anapioficeandfire.com/api/characters/512\",\r\n
203
+ \ \"http://www.anapioficeandfire.com/api/characters/515\",\r\n \"http://www.anapioficeandfire.com/api/characters/516\",\r\n
204
+ \ \"http://www.anapioficeandfire.com/api/characters/519\",\r\n \"http://www.anapioficeandfire.com/api/characters/521\",\r\n
205
+ \ \"http://www.anapioficeandfire.com/api/characters/524\",\r\n \"http://www.anapioficeandfire.com/api/characters/525\",\r\n
206
+ \ \"http://www.anapioficeandfire.com/api/characters/526\",\r\n \"http://www.anapioficeandfire.com/api/characters/527\",\r\n
207
+ \ \"http://www.anapioficeandfire.com/api/characters/530\",\r\n \"http://www.anapioficeandfire.com/api/characters/531\",\r\n
208
+ \ \"http://www.anapioficeandfire.com/api/characters/532\",\r\n \"http://www.anapioficeandfire.com/api/characters/533\",\r\n
209
+ \ \"http://www.anapioficeandfire.com/api/characters/535\",\r\n \"http://www.anapioficeandfire.com/api/characters/536\",\r\n
210
+ \ \"http://www.anapioficeandfire.com/api/characters/537\",\r\n \"http://www.anapioficeandfire.com/api/characters/539\",\r\n
211
+ \ \"http://www.anapioficeandfire.com/api/characters/541\",\r\n \"http://www.anapioficeandfire.com/api/characters/547\",\r\n
212
+ \ \"http://www.anapioficeandfire.com/api/characters/557\",\r\n \"http://www.anapioficeandfire.com/api/characters/562\",\r\n
213
+ \ \"http://www.anapioficeandfire.com/api/characters/564\",\r\n \"http://www.anapioficeandfire.com/api/characters/565\",\r\n
214
+ \ \"http://www.anapioficeandfire.com/api/characters/571\",\r\n \"http://www.anapioficeandfire.com/api/characters/572\",\r\n
215
+ \ \"http://www.anapioficeandfire.com/api/characters/573\",\r\n \"http://www.anapioficeandfire.com/api/characters/579\",\r\n
216
+ \ \"http://www.anapioficeandfire.com/api/characters/580\",\r\n \"http://www.anapioficeandfire.com/api/characters/582\",\r\n
217
+ \ \"http://www.anapioficeandfire.com/api/characters/585\",\r\n \"http://www.anapioficeandfire.com/api/characters/586\",\r\n
218
+ \ \"http://www.anapioficeandfire.com/api/characters/588\",\r\n \"http://www.anapioficeandfire.com/api/characters/594\",\r\n
219
+ \ \"http://www.anapioficeandfire.com/api/characters/595\",\r\n \"http://www.anapioficeandfire.com/api/characters/597\",\r\n
220
+ \ \"http://www.anapioficeandfire.com/api/characters/600\",\r\n \"http://www.anapioficeandfire.com/api/characters/601\",\r\n
221
+ \ \"http://www.anapioficeandfire.com/api/characters/604\",\r\n \"http://www.anapioficeandfire.com/api/characters/612\",\r\n
222
+ \ \"http://www.anapioficeandfire.com/api/characters/613\",\r\n \"http://www.anapioficeandfire.com/api/characters/616\",\r\n
223
+ \ \"http://www.anapioficeandfire.com/api/characters/622\",\r\n \"http://www.anapioficeandfire.com/api/characters/625\",\r\n
224
+ \ \"http://www.anapioficeandfire.com/api/characters/627\",\r\n \"http://www.anapioficeandfire.com/api/characters/629\",\r\n
225
+ \ \"http://www.anapioficeandfire.com/api/characters/630\",\r\n \"http://www.anapioficeandfire.com/api/characters/631\",\r\n
226
+ \ \"http://www.anapioficeandfire.com/api/characters/632\",\r\n \"http://www.anapioficeandfire.com/api/characters/633\",\r\n
227
+ \ \"http://www.anapioficeandfire.com/api/characters/635\",\r\n \"http://www.anapioficeandfire.com/api/characters/638\",\r\n
228
+ \ \"http://www.anapioficeandfire.com/api/characters/639\",\r\n \"http://www.anapioficeandfire.com/api/characters/640\",\r\n
229
+ \ \"http://www.anapioficeandfire.com/api/characters/642\",\r\n \"http://www.anapioficeandfire.com/api/characters/644\",\r\n
230
+ \ \"http://www.anapioficeandfire.com/api/characters/645\",\r\n \"http://www.anapioficeandfire.com/api/characters/649\",\r\n
231
+ \ \"http://www.anapioficeandfire.com/api/characters/651\",\r\n \"http://www.anapioficeandfire.com/api/characters/653\",\r\n
232
+ \ \"http://www.anapioficeandfire.com/api/characters/654\",\r\n \"http://www.anapioficeandfire.com/api/characters/659\",\r\n
233
+ \ \"http://www.anapioficeandfire.com/api/characters/660\",\r\n \"http://www.anapioficeandfire.com/api/characters/662\",\r\n
234
+ \ \"http://www.anapioficeandfire.com/api/characters/667\",\r\n \"http://www.anapioficeandfire.com/api/characters/669\",\r\n
235
+ \ \"http://www.anapioficeandfire.com/api/characters/670\",\r\n \"http://www.anapioficeandfire.com/api/characters/673\",\r\n
236
+ \ \"http://www.anapioficeandfire.com/api/characters/676\",\r\n \"http://www.anapioficeandfire.com/api/characters/677\",\r\n
237
+ \ \"http://www.anapioficeandfire.com/api/characters/678\",\r\n \"http://www.anapioficeandfire.com/api/characters/681\",\r\n
238
+ \ \"http://www.anapioficeandfire.com/api/characters/682\",\r\n \"http://www.anapioficeandfire.com/api/characters/687\",\r\n
239
+ \ \"http://www.anapioficeandfire.com/api/characters/688\",\r\n \"http://www.anapioficeandfire.com/api/characters/690\",\r\n
240
+ \ \"http://www.anapioficeandfire.com/api/characters/691\",\r\n \"http://www.anapioficeandfire.com/api/characters/692\",\r\n
241
+ \ \"http://www.anapioficeandfire.com/api/characters/697\",\r\n \"http://www.anapioficeandfire.com/api/characters/705\",\r\n
242
+ \ \"http://www.anapioficeandfire.com/api/characters/707\",\r\n \"http://www.anapioficeandfire.com/api/characters/708\",\r\n
243
+ \ \"http://www.anapioficeandfire.com/api/characters/710\",\r\n \"http://www.anapioficeandfire.com/api/characters/713\",\r\n
244
+ \ \"http://www.anapioficeandfire.com/api/characters/715\",\r\n \"http://www.anapioficeandfire.com/api/characters/718\",\r\n
245
+ \ \"http://www.anapioficeandfire.com/api/characters/719\",\r\n \"http://www.anapioficeandfire.com/api/characters/720\",\r\n
246
+ \ \"http://www.anapioficeandfire.com/api/characters/721\",\r\n \"http://www.anapioficeandfire.com/api/characters/725\",\r\n
247
+ \ \"http://www.anapioficeandfire.com/api/characters/728\",\r\n \"http://www.anapioficeandfire.com/api/characters/731\",\r\n
248
+ \ \"http://www.anapioficeandfire.com/api/characters/735\",\r\n \"http://www.anapioficeandfire.com/api/characters/736\",\r\n
249
+ \ \"http://www.anapioficeandfire.com/api/characters/739\",\r\n \"http://www.anapioficeandfire.com/api/characters/740\",\r\n
250
+ \ \"http://www.anapioficeandfire.com/api/characters/744\",\r\n \"http://www.anapioficeandfire.com/api/characters/746\",\r\n
251
+ \ \"http://www.anapioficeandfire.com/api/characters/751\",\r\n \"http://www.anapioficeandfire.com/api/characters/752\",\r\n
252
+ \ \"http://www.anapioficeandfire.com/api/characters/754\",\r\n \"http://www.anapioficeandfire.com/api/characters/758\",\r\n
253
+ \ \"http://www.anapioficeandfire.com/api/characters/760\",\r\n \"http://www.anapioficeandfire.com/api/characters/764\",\r\n
254
+ \ \"http://www.anapioficeandfire.com/api/characters/765\",\r\n \"http://www.anapioficeandfire.com/api/characters/766\",\r\n
255
+ \ \"http://www.anapioficeandfire.com/api/characters/768\",\r\n \"http://www.anapioficeandfire.com/api/characters/774\",\r\n
256
+ \ \"http://www.anapioficeandfire.com/api/characters/775\",\r\n \"http://www.anapioficeandfire.com/api/characters/776\",\r\n
257
+ \ \"http://www.anapioficeandfire.com/api/characters/778\",\r\n \"http://www.anapioficeandfire.com/api/characters/780\",\r\n
258
+ \ \"http://www.anapioficeandfire.com/api/characters/781\",\r\n \"http://www.anapioficeandfire.com/api/characters/782\",\r\n
259
+ \ \"http://www.anapioficeandfire.com/api/characters/784\",\r\n \"http://www.anapioficeandfire.com/api/characters/786\",\r\n
260
+ \ \"http://www.anapioficeandfire.com/api/characters/788\",\r\n \"http://www.anapioficeandfire.com/api/characters/793\",\r\n
261
+ \ \"http://www.anapioficeandfire.com/api/characters/795\",\r\n \"http://www.anapioficeandfire.com/api/characters/796\",\r\n
262
+ \ \"http://www.anapioficeandfire.com/api/characters/798\",\r\n \"http://www.anapioficeandfire.com/api/characters/799\",\r\n
263
+ \ \"http://www.anapioficeandfire.com/api/characters/801\",\r\n \"http://www.anapioficeandfire.com/api/characters/802\",\r\n
264
+ \ \"http://www.anapioficeandfire.com/api/characters/803\",\r\n \"http://www.anapioficeandfire.com/api/characters/804\",\r\n
265
+ \ \"http://www.anapioficeandfire.com/api/characters/805\",\r\n \"http://www.anapioficeandfire.com/api/characters/806\",\r\n
266
+ \ \"http://www.anapioficeandfire.com/api/characters/814\",\r\n \"http://www.anapioficeandfire.com/api/characters/815\",\r\n
267
+ \ \"http://www.anapioficeandfire.com/api/characters/818\",\r\n \"http://www.anapioficeandfire.com/api/characters/819\",\r\n
268
+ \ \"http://www.anapioficeandfire.com/api/characters/820\",\r\n \"http://www.anapioficeandfire.com/api/characters/823\",\r\n
269
+ \ \"http://www.anapioficeandfire.com/api/characters/825\",\r\n \"http://www.anapioficeandfire.com/api/characters/826\",\r\n
270
+ \ \"http://www.anapioficeandfire.com/api/characters/827\",\r\n \"http://www.anapioficeandfire.com/api/characters/829\",\r\n
271
+ \ \"http://www.anapioficeandfire.com/api/characters/830\",\r\n \"http://www.anapioficeandfire.com/api/characters/832\",\r\n
272
+ \ \"http://www.anapioficeandfire.com/api/characters/837\",\r\n \"http://www.anapioficeandfire.com/api/characters/845\",\r\n
273
+ \ \"http://www.anapioficeandfire.com/api/characters/846\",\r\n \"http://www.anapioficeandfire.com/api/characters/847\",\r\n
274
+ \ \"http://www.anapioficeandfire.com/api/characters/848\",\r\n \"http://www.anapioficeandfire.com/api/characters/849\",\r\n
275
+ \ \"http://www.anapioficeandfire.com/api/characters/850\",\r\n \"http://www.anapioficeandfire.com/api/characters/854\",\r\n
276
+ \ \"http://www.anapioficeandfire.com/api/characters/857\",\r\n \"http://www.anapioficeandfire.com/api/characters/858\",\r\n
277
+ \ \"http://www.anapioficeandfire.com/api/characters/860\",\r\n \"http://www.anapioficeandfire.com/api/characters/861\",\r\n
278
+ \ \"http://www.anapioficeandfire.com/api/characters/862\",\r\n \"http://www.anapioficeandfire.com/api/characters/866\",\r\n
279
+ \ \"http://www.anapioficeandfire.com/api/characters/867\",\r\n \"http://www.anapioficeandfire.com/api/characters/869\",\r\n
280
+ \ \"http://www.anapioficeandfire.com/api/characters/870\",\r\n \"http://www.anapioficeandfire.com/api/characters/874\",\r\n
281
+ \ \"http://www.anapioficeandfire.com/api/characters/876\",\r\n \"http://www.anapioficeandfire.com/api/characters/881\",\r\n
282
+ \ \"http://www.anapioficeandfire.com/api/characters/883\",\r\n \"http://www.anapioficeandfire.com/api/characters/884\",\r\n
283
+ \ \"http://www.anapioficeandfire.com/api/characters/885\",\r\n \"http://www.anapioficeandfire.com/api/characters/887\",\r\n
284
+ \ \"http://www.anapioficeandfire.com/api/characters/891\",\r\n \"http://www.anapioficeandfire.com/api/characters/894\",\r\n
285
+ \ \"http://www.anapioficeandfire.com/api/characters/901\",\r\n \"http://www.anapioficeandfire.com/api/characters/903\",\r\n
286
+ \ \"http://www.anapioficeandfire.com/api/characters/907\",\r\n \"http://www.anapioficeandfire.com/api/characters/908\",\r\n
287
+ \ \"http://www.anapioficeandfire.com/api/characters/909\",\r\n \"http://www.anapioficeandfire.com/api/characters/912\",\r\n
288
+ \ \"http://www.anapioficeandfire.com/api/characters/913\",\r\n \"http://www.anapioficeandfire.com/api/characters/914\",\r\n
289
+ \ \"http://www.anapioficeandfire.com/api/characters/915\",\r\n \"http://www.anapioficeandfire.com/api/characters/917\",\r\n
290
+ \ \"http://www.anapioficeandfire.com/api/characters/922\",\r\n \"http://www.anapioficeandfire.com/api/characters/925\",\r\n
291
+ \ \"http://www.anapioficeandfire.com/api/characters/928\",\r\n \"http://www.anapioficeandfire.com/api/characters/932\",\r\n
292
+ \ \"http://www.anapioficeandfire.com/api/characters/933\",\r\n \"http://www.anapioficeandfire.com/api/characters/934\",\r\n
293
+ \ \"http://www.anapioficeandfire.com/api/characters/936\",\r\n \"http://www.anapioficeandfire.com/api/characters/937\",\r\n
294
+ \ \"http://www.anapioficeandfire.com/api/characters/943\",\r\n \"http://www.anapioficeandfire.com/api/characters/950\",\r\n
295
+ \ \"http://www.anapioficeandfire.com/api/characters/955\",\r\n \"http://www.anapioficeandfire.com/api/characters/957\",\r\n
296
+ \ \"http://www.anapioficeandfire.com/api/characters/960\",\r\n \"http://www.anapioficeandfire.com/api/characters/962\",\r\n
297
+ \ \"http://www.anapioficeandfire.com/api/characters/963\",\r\n \"http://www.anapioficeandfire.com/api/characters/965\",\r\n
298
+ \ \"http://www.anapioficeandfire.com/api/characters/966\",\r\n \"http://www.anapioficeandfire.com/api/characters/969\",\r\n
299
+ \ \"http://www.anapioficeandfire.com/api/characters/970\",\r\n \"http://www.anapioficeandfire.com/api/characters/972\",\r\n
300
+ \ \"http://www.anapioficeandfire.com/api/characters/973\",\r\n \"http://www.anapioficeandfire.com/api/characters/975\",\r\n
301
+ \ \"http://www.anapioficeandfire.com/api/characters/976\",\r\n \"http://www.anapioficeandfire.com/api/characters/979\",\r\n
302
+ \ \"http://www.anapioficeandfire.com/api/characters/980\",\r\n \"http://www.anapioficeandfire.com/api/characters/984\",\r\n
303
+ \ \"http://www.anapioficeandfire.com/api/characters/986\",\r\n \"http://www.anapioficeandfire.com/api/characters/992\",\r\n
304
+ \ \"http://www.anapioficeandfire.com/api/characters/994\",\r\n \"http://www.anapioficeandfire.com/api/characters/995\",\r\n
305
+ \ \"http://www.anapioficeandfire.com/api/characters/998\",\r\n \"http://www.anapioficeandfire.com/api/characters/1002\",\r\n
306
+ \ \"http://www.anapioficeandfire.com/api/characters/1004\",\r\n \"http://www.anapioficeandfire.com/api/characters/1005\",\r\n
307
+ \ \"http://www.anapioficeandfire.com/api/characters/1006\",\r\n \"http://www.anapioficeandfire.com/api/characters/1009\",\r\n
308
+ \ \"http://www.anapioficeandfire.com/api/characters/1010\",\r\n \"http://www.anapioficeandfire.com/api/characters/1011\",\r\n
309
+ \ \"http://www.anapioficeandfire.com/api/characters/1013\",\r\n \"http://www.anapioficeandfire.com/api/characters/1014\",\r\n
310
+ \ \"http://www.anapioficeandfire.com/api/characters/1018\",\r\n \"http://www.anapioficeandfire.com/api/characters/1020\",\r\n
311
+ \ \"http://www.anapioficeandfire.com/api/characters/1023\",\r\n \"http://www.anapioficeandfire.com/api/characters/1025\",\r\n
312
+ \ \"http://www.anapioficeandfire.com/api/characters/1027\",\r\n \"http://www.anapioficeandfire.com/api/characters/1029\",\r\n
313
+ \ \"http://www.anapioficeandfire.com/api/characters/1031\",\r\n \"http://www.anapioficeandfire.com/api/characters/1033\",\r\n
314
+ \ \"http://www.anapioficeandfire.com/api/characters/1035\",\r\n \"http://www.anapioficeandfire.com/api/characters/1036\",\r\n
315
+ \ \"http://www.anapioficeandfire.com/api/characters/1039\",\r\n \"http://www.anapioficeandfire.com/api/characters/1042\",\r\n
316
+ \ \"http://www.anapioficeandfire.com/api/characters/1043\",\r\n \"http://www.anapioficeandfire.com/api/characters/1047\",\r\n
317
+ \ \"http://www.anapioficeandfire.com/api/characters/1049\",\r\n \"http://www.anapioficeandfire.com/api/characters/1051\",\r\n
318
+ \ \"http://www.anapioficeandfire.com/api/characters/1054\",\r\n \"http://www.anapioficeandfire.com/api/characters/1055\",\r\n
319
+ \ \"http://www.anapioficeandfire.com/api/characters/1057\",\r\n \"http://www.anapioficeandfire.com/api/characters/1058\",\r\n
320
+ \ \"http://www.anapioficeandfire.com/api/characters/1061\",\r\n \"http://www.anapioficeandfire.com/api/characters/1063\",\r\n
321
+ \ \"http://www.anapioficeandfire.com/api/characters/1078\",\r\n \"http://www.anapioficeandfire.com/api/characters/1079\",\r\n
322
+ \ \"http://www.anapioficeandfire.com/api/characters/1080\",\r\n \"http://www.anapioficeandfire.com/api/characters/1084\",\r\n
323
+ \ \"http://www.anapioficeandfire.com/api/characters/1089\",\r\n \"http://www.anapioficeandfire.com/api/characters/1091\",\r\n
324
+ \ \"http://www.anapioficeandfire.com/api/characters/1092\",\r\n \"http://www.anapioficeandfire.com/api/characters/1093\",\r\n
325
+ \ \"http://www.anapioficeandfire.com/api/characters/1096\",\r\n \"http://www.anapioficeandfire.com/api/characters/1097\",\r\n
326
+ \ \"http://www.anapioficeandfire.com/api/characters/1098\",\r\n \"http://www.anapioficeandfire.com/api/characters/1099\",\r\n
327
+ \ \"http://www.anapioficeandfire.com/api/characters/1102\",\r\n \"http://www.anapioficeandfire.com/api/characters/1105\",\r\n
328
+ \ \"http://www.anapioficeandfire.com/api/characters/1106\",\r\n \"http://www.anapioficeandfire.com/api/characters/1107\",\r\n
329
+ \ \"http://www.anapioficeandfire.com/api/characters/1110\",\r\n \"http://www.anapioficeandfire.com/api/characters/1113\",\r\n
330
+ \ \"http://www.anapioficeandfire.com/api/characters/1114\",\r\n \"http://www.anapioficeandfire.com/api/characters/1115\",\r\n
331
+ \ \"http://www.anapioficeandfire.com/api/characters/1116\",\r\n \"http://www.anapioficeandfire.com/api/characters/1118\",\r\n
332
+ \ \"http://www.anapioficeandfire.com/api/characters/1122\",\r\n \"http://www.anapioficeandfire.com/api/characters/1123\",\r\n
333
+ \ \"http://www.anapioficeandfire.com/api/characters/1124\",\r\n \"http://www.anapioficeandfire.com/api/characters/1126\",\r\n
334
+ \ \"http://www.anapioficeandfire.com/api/characters/1129\",\r\n \"http://www.anapioficeandfire.com/api/characters/1131\",\r\n
335
+ \ \"http://www.anapioficeandfire.com/api/characters/1133\",\r\n \"http://www.anapioficeandfire.com/api/characters/1137\",\r\n
336
+ \ \"http://www.anapioficeandfire.com/api/characters/1141\",\r\n \"http://www.anapioficeandfire.com/api/characters/1142\",\r\n
337
+ \ \"http://www.anapioficeandfire.com/api/characters/1144\",\r\n \"http://www.anapioficeandfire.com/api/characters/1146\",\r\n
338
+ \ \"http://www.anapioficeandfire.com/api/characters/1147\",\r\n \"http://www.anapioficeandfire.com/api/characters/1150\",\r\n
339
+ \ \"http://www.anapioficeandfire.com/api/characters/1151\",\r\n \"http://www.anapioficeandfire.com/api/characters/1155\",\r\n
340
+ \ \"http://www.anapioficeandfire.com/api/characters/1158\",\r\n \"http://www.anapioficeandfire.com/api/characters/1159\",\r\n
341
+ \ \"http://www.anapioficeandfire.com/api/characters/1160\",\r\n \"http://www.anapioficeandfire.com/api/characters/1164\",\r\n
342
+ \ \"http://www.anapioficeandfire.com/api/characters/1172\",\r\n \"http://www.anapioficeandfire.com/api/characters/1177\",\r\n
343
+ \ \"http://www.anapioficeandfire.com/api/characters/1179\",\r\n \"http://www.anapioficeandfire.com/api/characters/1180\",\r\n
344
+ \ \"http://www.anapioficeandfire.com/api/characters/1183\",\r\n \"http://www.anapioficeandfire.com/api/characters/1184\",\r\n
345
+ \ \"http://www.anapioficeandfire.com/api/characters/1187\",\r\n \"http://www.anapioficeandfire.com/api/characters/1188\",\r\n
346
+ \ \"http://www.anapioficeandfire.com/api/characters/1189\",\r\n \"http://www.anapioficeandfire.com/api/characters/1191\",\r\n
347
+ \ \"http://www.anapioficeandfire.com/api/characters/1196\",\r\n \"http://www.anapioficeandfire.com/api/characters/1198\",\r\n
348
+ \ \"http://www.anapioficeandfire.com/api/characters/1205\",\r\n \"http://www.anapioficeandfire.com/api/characters/1208\",\r\n
349
+ \ \"http://www.anapioficeandfire.com/api/characters/1212\",\r\n \"http://www.anapioficeandfire.com/api/characters/1218\",\r\n
350
+ \ \"http://www.anapioficeandfire.com/api/characters/1223\",\r\n \"http://www.anapioficeandfire.com/api/characters/1225\",\r\n
351
+ \ \"http://www.anapioficeandfire.com/api/characters/1229\",\r\n \"http://www.anapioficeandfire.com/api/characters/1235\",\r\n
352
+ \ \"http://www.anapioficeandfire.com/api/characters/1236\",\r\n \"http://www.anapioficeandfire.com/api/characters/1238\",\r\n
353
+ \ \"http://www.anapioficeandfire.com/api/characters/1241\",\r\n \"http://www.anapioficeandfire.com/api/characters/1242\",\r\n
354
+ \ \"http://www.anapioficeandfire.com/api/characters/1243\",\r\n \"http://www.anapioficeandfire.com/api/characters/1244\",\r\n
355
+ \ \"http://www.anapioficeandfire.com/api/characters/1249\",\r\n \"http://www.anapioficeandfire.com/api/characters/1253\",\r\n
356
+ \ \"http://www.anapioficeandfire.com/api/characters/1255\",\r\n \"http://www.anapioficeandfire.com/api/characters/1259\",\r\n
357
+ \ \"http://www.anapioficeandfire.com/api/characters/1262\",\r\n \"http://www.anapioficeandfire.com/api/characters/1268\",\r\n
358
+ \ \"http://www.anapioficeandfire.com/api/characters/1274\",\r\n \"http://www.anapioficeandfire.com/api/characters/1275\",\r\n
359
+ \ \"http://www.anapioficeandfire.com/api/characters/1277\",\r\n \"http://www.anapioficeandfire.com/api/characters/1279\",\r\n
360
+ \ \"http://www.anapioficeandfire.com/api/characters/1280\",\r\n \"http://www.anapioficeandfire.com/api/characters/1283\",\r\n
361
+ \ \"http://www.anapioficeandfire.com/api/characters/1285\",\r\n \"http://www.anapioficeandfire.com/api/characters/1289\",\r\n
362
+ \ \"http://www.anapioficeandfire.com/api/characters/1292\",\r\n \"http://www.anapioficeandfire.com/api/characters/1293\",\r\n
363
+ \ \"http://www.anapioficeandfire.com/api/characters/1296\",\r\n \"http://www.anapioficeandfire.com/api/characters/1298\",\r\n
364
+ \ \"http://www.anapioficeandfire.com/api/characters/1301\",\r\n \"http://www.anapioficeandfire.com/api/characters/1306\",\r\n
365
+ \ \"http://www.anapioficeandfire.com/api/characters/1310\",\r\n \"http://www.anapioficeandfire.com/api/characters/1311\",\r\n
366
+ \ \"http://www.anapioficeandfire.com/api/characters/1313\",\r\n \"http://www.anapioficeandfire.com/api/characters/1315\",\r\n
367
+ \ \"http://www.anapioficeandfire.com/api/characters/1316\",\r\n \"http://www.anapioficeandfire.com/api/characters/1317\",\r\n
368
+ \ \"http://www.anapioficeandfire.com/api/characters/1321\",\r\n \"http://www.anapioficeandfire.com/api/characters/1326\",\r\n
369
+ \ \"http://www.anapioficeandfire.com/api/characters/1327\",\r\n \"http://www.anapioficeandfire.com/api/characters/1328\",\r\n
370
+ \ \"http://www.anapioficeandfire.com/api/characters/1329\",\r\n \"http://www.anapioficeandfire.com/api/characters/1331\",\r\n
371
+ \ \"http://www.anapioficeandfire.com/api/characters/1333\",\r\n \"http://www.anapioficeandfire.com/api/characters/1334\",\r\n
372
+ \ \"http://www.anapioficeandfire.com/api/characters/1335\",\r\n \"http://www.anapioficeandfire.com/api/characters/1339\",\r\n
373
+ \ \"http://www.anapioficeandfire.com/api/characters/1340\",\r\n \"http://www.anapioficeandfire.com/api/characters/1341\",\r\n
374
+ \ \"http://www.anapioficeandfire.com/api/characters/1343\",\r\n \"http://www.anapioficeandfire.com/api/characters/1344\",\r\n
375
+ \ \"http://www.anapioficeandfire.com/api/characters/1346\",\r\n \"http://www.anapioficeandfire.com/api/characters/1347\",\r\n
376
+ \ \"http://www.anapioficeandfire.com/api/characters/1350\",\r\n \"http://www.anapioficeandfire.com/api/characters/1352\",\r\n
377
+ \ \"http://www.anapioficeandfire.com/api/characters/1355\",\r\n \"http://www.anapioficeandfire.com/api/characters/1357\",\r\n
378
+ \ \"http://www.anapioficeandfire.com/api/characters/1358\",\r\n \"http://www.anapioficeandfire.com/api/characters/1362\",\r\n
379
+ \ \"http://www.anapioficeandfire.com/api/characters/1363\",\r\n \"http://www.anapioficeandfire.com/api/characters/1364\",\r\n
380
+ \ \"http://www.anapioficeandfire.com/api/characters/1365\",\r\n \"http://www.anapioficeandfire.com/api/characters/1367\",\r\n
381
+ \ \"http://www.anapioficeandfire.com/api/characters/1369\",\r\n \"http://www.anapioficeandfire.com/api/characters/1372\",\r\n
382
+ \ \"http://www.anapioficeandfire.com/api/characters/1373\",\r\n \"http://www.anapioficeandfire.com/api/characters/1381\",\r\n
383
+ \ \"http://www.anapioficeandfire.com/api/characters/1382\",\r\n \"http://www.anapioficeandfire.com/api/characters/1383\",\r\n
384
+ \ \"http://www.anapioficeandfire.com/api/characters/1386\",\r\n \"http://www.anapioficeandfire.com/api/characters/1393\",\r\n
385
+ \ \"http://www.anapioficeandfire.com/api/characters/1394\",\r\n \"http://www.anapioficeandfire.com/api/characters/1397\",\r\n
386
+ \ \"http://www.anapioficeandfire.com/api/characters/1406\",\r\n \"http://www.anapioficeandfire.com/api/characters/1409\",\r\n
387
+ \ \"http://www.anapioficeandfire.com/api/characters/1410\",\r\n \"http://www.anapioficeandfire.com/api/characters/1412\",\r\n
388
+ \ \"http://www.anapioficeandfire.com/api/characters/1414\",\r\n \"http://www.anapioficeandfire.com/api/characters/1415\",\r\n
389
+ \ \"http://www.anapioficeandfire.com/api/characters/1416\",\r\n \"http://www.anapioficeandfire.com/api/characters/1421\",\r\n
390
+ \ \"http://www.anapioficeandfire.com/api/characters/1423\",\r\n \"http://www.anapioficeandfire.com/api/characters/1424\",\r\n
391
+ \ \"http://www.anapioficeandfire.com/api/characters/1425\",\r\n \"http://www.anapioficeandfire.com/api/characters/1426\",\r\n
392
+ \ \"http://www.anapioficeandfire.com/api/characters/1427\",\r\n \"http://www.anapioficeandfire.com/api/characters/1428\",\r\n
393
+ \ \"http://www.anapioficeandfire.com/api/characters/1429\",\r\n \"http://www.anapioficeandfire.com/api/characters/1431\",\r\n
394
+ \ \"http://www.anapioficeandfire.com/api/characters/1434\",\r\n \"http://www.anapioficeandfire.com/api/characters/1439\",\r\n
395
+ \ \"http://www.anapioficeandfire.com/api/characters/1440\",\r\n \"http://www.anapioficeandfire.com/api/characters/1441\",\r\n
396
+ \ \"http://www.anapioficeandfire.com/api/characters/1442\",\r\n \"http://www.anapioficeandfire.com/api/characters/1443\",\r\n
397
+ \ \"http://www.anapioficeandfire.com/api/characters/1444\",\r\n \"http://www.anapioficeandfire.com/api/characters/1445\",\r\n
398
+ \ \"http://www.anapioficeandfire.com/api/characters/1449\",\r\n \"http://www.anapioficeandfire.com/api/characters/1450\",\r\n
399
+ \ \"http://www.anapioficeandfire.com/api/characters/1451\",\r\n \"http://www.anapioficeandfire.com/api/characters/1452\",\r\n
400
+ \ \"http://www.anapioficeandfire.com/api/characters/1461\",\r\n \"http://www.anapioficeandfire.com/api/characters/1464\",\r\n
401
+ \ \"http://www.anapioficeandfire.com/api/characters/1465\",\r\n \"http://www.anapioficeandfire.com/api/characters/1468\",\r\n
402
+ \ \"http://www.anapioficeandfire.com/api/characters/1469\",\r\n \"http://www.anapioficeandfire.com/api/characters/1472\",\r\n
403
+ \ \"http://www.anapioficeandfire.com/api/characters/1475\",\r\n \"http://www.anapioficeandfire.com/api/characters/1476\",\r\n
404
+ \ \"http://www.anapioficeandfire.com/api/characters/1477\",\r\n \"http://www.anapioficeandfire.com/api/characters/1478\",\r\n
405
+ \ \"http://www.anapioficeandfire.com/api/characters/1479\",\r\n \"http://www.anapioficeandfire.com/api/characters/1481\",\r\n
406
+ \ \"http://www.anapioficeandfire.com/api/characters/1485\",\r\n \"http://www.anapioficeandfire.com/api/characters/1487\",\r\n
407
+ \ \"http://www.anapioficeandfire.com/api/characters/1488\",\r\n \"http://www.anapioficeandfire.com/api/characters/1490\",\r\n
408
+ \ \"http://www.anapioficeandfire.com/api/characters/1491\",\r\n \"http://www.anapioficeandfire.com/api/characters/1492\",\r\n
409
+ \ \"http://www.anapioficeandfire.com/api/characters/1498\",\r\n \"http://www.anapioficeandfire.com/api/characters/1501\",\r\n
410
+ \ \"http://www.anapioficeandfire.com/api/characters/1502\",\r\n \"http://www.anapioficeandfire.com/api/characters/1506\",\r\n
411
+ \ \"http://www.anapioficeandfire.com/api/characters/1507\",\r\n \"http://www.anapioficeandfire.com/api/characters/1512\",\r\n
412
+ \ \"http://www.anapioficeandfire.com/api/characters/1514\",\r\n \"http://www.anapioficeandfire.com/api/characters/1515\",\r\n
413
+ \ \"http://www.anapioficeandfire.com/api/characters/1516\",\r\n \"http://www.anapioficeandfire.com/api/characters/1520\",\r\n
414
+ \ \"http://www.anapioficeandfire.com/api/characters/1521\",\r\n \"http://www.anapioficeandfire.com/api/characters/1523\",\r\n
415
+ \ \"http://www.anapioficeandfire.com/api/characters/1524\",\r\n \"http://www.anapioficeandfire.com/api/characters/1531\",\r\n
416
+ \ \"http://www.anapioficeandfire.com/api/characters/1532\",\r\n \"http://www.anapioficeandfire.com/api/characters/1533\",\r\n
417
+ \ \"http://www.anapioficeandfire.com/api/characters/1537\",\r\n \"http://www.anapioficeandfire.com/api/characters/1539\",\r\n
418
+ \ \"http://www.anapioficeandfire.com/api/characters/1540\",\r\n \"http://www.anapioficeandfire.com/api/characters/1544\",\r\n
419
+ \ \"http://www.anapioficeandfire.com/api/characters/1546\",\r\n \"http://www.anapioficeandfire.com/api/characters/1547\",\r\n
420
+ \ \"http://www.anapioficeandfire.com/api/characters/1548\",\r\n \"http://www.anapioficeandfire.com/api/characters/1549\",\r\n
421
+ \ \"http://www.anapioficeandfire.com/api/characters/1559\",\r\n \"http://www.anapioficeandfire.com/api/characters/1560\",\r\n
422
+ \ \"http://www.anapioficeandfire.com/api/characters/1570\",\r\n \"http://www.anapioficeandfire.com/api/characters/1572\",\r\n
423
+ \ \"http://www.anapioficeandfire.com/api/characters/1577\",\r\n \"http://www.anapioficeandfire.com/api/characters/1578\",\r\n
424
+ \ \"http://www.anapioficeandfire.com/api/characters/1579\",\r\n \"http://www.anapioficeandfire.com/api/characters/1580\",\r\n
425
+ \ \"http://www.anapioficeandfire.com/api/characters/1582\",\r\n \"http://www.anapioficeandfire.com/api/characters/1584\",\r\n
426
+ \ \"http://www.anapioficeandfire.com/api/characters/1586\",\r\n \"http://www.anapioficeandfire.com/api/characters/1588\",\r\n
427
+ \ \"http://www.anapioficeandfire.com/api/characters/1590\",\r\n \"http://www.anapioficeandfire.com/api/characters/1594\",\r\n
428
+ \ \"http://www.anapioficeandfire.com/api/characters/1600\",\r\n \"http://www.anapioficeandfire.com/api/characters/1602\",\r\n
429
+ \ \"http://www.anapioficeandfire.com/api/characters/1607\",\r\n \"http://www.anapioficeandfire.com/api/characters/1609\",\r\n
430
+ \ \"http://www.anapioficeandfire.com/api/characters/1611\",\r\n \"http://www.anapioficeandfire.com/api/characters/1612\",\r\n
431
+ \ \"http://www.anapioficeandfire.com/api/characters/1617\",\r\n \"http://www.anapioficeandfire.com/api/characters/1618\",\r\n
432
+ \ \"http://www.anapioficeandfire.com/api/characters/1621\",\r\n \"http://www.anapioficeandfire.com/api/characters/1622\",\r\n
433
+ \ \"http://www.anapioficeandfire.com/api/characters/1623\",\r\n \"http://www.anapioficeandfire.com/api/characters/1627\",\r\n
434
+ \ \"http://www.anapioficeandfire.com/api/characters/1630\",\r\n \"http://www.anapioficeandfire.com/api/characters/1632\",\r\n
435
+ \ \"http://www.anapioficeandfire.com/api/characters/1640\",\r\n \"http://www.anapioficeandfire.com/api/characters/1646\",\r\n
436
+ \ \"http://www.anapioficeandfire.com/api/characters/1648\",\r\n \"http://www.anapioficeandfire.com/api/characters/1649\",\r\n
437
+ \ \"http://www.anapioficeandfire.com/api/characters/1650\",\r\n \"http://www.anapioficeandfire.com/api/characters/1653\",\r\n
438
+ \ \"http://www.anapioficeandfire.com/api/characters/1655\",\r\n \"http://www.anapioficeandfire.com/api/characters/1658\",\r\n
439
+ \ \"http://www.anapioficeandfire.com/api/characters/1660\",\r\n \"http://www.anapioficeandfire.com/api/characters/1666\",\r\n
440
+ \ \"http://www.anapioficeandfire.com/api/characters/1667\",\r\n \"http://www.anapioficeandfire.com/api/characters/1668\",\r\n
441
+ \ \"http://www.anapioficeandfire.com/api/characters/1671\",\r\n \"http://www.anapioficeandfire.com/api/characters/1673\",\r\n
442
+ \ \"http://www.anapioficeandfire.com/api/characters/1674\",\r\n \"http://www.anapioficeandfire.com/api/characters/1676\",\r\n
443
+ \ \"http://www.anapioficeandfire.com/api/characters/1682\",\r\n \"http://www.anapioficeandfire.com/api/characters/1683\",\r\n
444
+ \ \"http://www.anapioficeandfire.com/api/characters/1684\",\r\n \"http://www.anapioficeandfire.com/api/characters/1686\",\r\n
445
+ \ \"http://www.anapioficeandfire.com/api/characters/1691\",\r\n \"http://www.anapioficeandfire.com/api/characters/1693\",\r\n
446
+ \ \"http://www.anapioficeandfire.com/api/characters/1696\",\r\n \"http://www.anapioficeandfire.com/api/characters/1697\",\r\n
447
+ \ \"http://www.anapioficeandfire.com/api/characters/1701\",\r\n \"http://www.anapioficeandfire.com/api/characters/1703\",\r\n
448
+ \ \"http://www.anapioficeandfire.com/api/characters/1705\",\r\n \"http://www.anapioficeandfire.com/api/characters/1706\",\r\n
449
+ \ \"http://www.anapioficeandfire.com/api/characters/1707\",\r\n \"http://www.anapioficeandfire.com/api/characters/1708\",\r\n
450
+ \ \"http://www.anapioficeandfire.com/api/characters/1709\",\r\n \"http://www.anapioficeandfire.com/api/characters/1713\",\r\n
451
+ \ \"http://www.anapioficeandfire.com/api/characters/1715\",\r\n \"http://www.anapioficeandfire.com/api/characters/1719\",\r\n
452
+ \ \"http://www.anapioficeandfire.com/api/characters/1720\",\r\n \"http://www.anapioficeandfire.com/api/characters/1727\",\r\n
453
+ \ \"http://www.anapioficeandfire.com/api/characters/1728\",\r\n \"http://www.anapioficeandfire.com/api/characters/1732\",\r\n
454
+ \ \"http://www.anapioficeandfire.com/api/characters/1733\",\r\n \"http://www.anapioficeandfire.com/api/characters/1735\",\r\n
455
+ \ \"http://www.anapioficeandfire.com/api/characters/1740\",\r\n \"http://www.anapioficeandfire.com/api/characters/1741\",\r\n
456
+ \ \"http://www.anapioficeandfire.com/api/characters/1743\",\r\n \"http://www.anapioficeandfire.com/api/characters/1745\",\r\n
457
+ \ \"http://www.anapioficeandfire.com/api/characters/1748\",\r\n \"http://www.anapioficeandfire.com/api/characters/1749\",\r\n
458
+ \ \"http://www.anapioficeandfire.com/api/characters/1753\",\r\n \"http://www.anapioficeandfire.com/api/characters/1755\",\r\n
459
+ \ \"http://www.anapioficeandfire.com/api/characters/1758\",\r\n \"http://www.anapioficeandfire.com/api/characters/1762\",\r\n
460
+ \ \"http://www.anapioficeandfire.com/api/characters/1765\",\r\n \"http://www.anapioficeandfire.com/api/characters/1766\",\r\n
461
+ \ \"http://www.anapioficeandfire.com/api/characters/1768\",\r\n \"http://www.anapioficeandfire.com/api/characters/1769\",\r\n
462
+ \ \"http://www.anapioficeandfire.com/api/characters/1770\",\r\n \"http://www.anapioficeandfire.com/api/characters/1773\",\r\n
463
+ \ \"http://www.anapioficeandfire.com/api/characters/1775\",\r\n \"http://www.anapioficeandfire.com/api/characters/1776\",\r\n
464
+ \ \"http://www.anapioficeandfire.com/api/characters/1777\",\r\n \"http://www.anapioficeandfire.com/api/characters/1780\",\r\n
465
+ \ \"http://www.anapioficeandfire.com/api/characters/1781\",\r\n \"http://www.anapioficeandfire.com/api/characters/1782\",\r\n
466
+ \ \"http://www.anapioficeandfire.com/api/characters/1783\",\r\n \"http://www.anapioficeandfire.com/api/characters/1785\",\r\n
467
+ \ \"http://www.anapioficeandfire.com/api/characters/1787\",\r\n \"http://www.anapioficeandfire.com/api/characters/1794\",\r\n
468
+ \ \"http://www.anapioficeandfire.com/api/characters/1795\",\r\n \"http://www.anapioficeandfire.com/api/characters/1797\",\r\n
469
+ \ \"http://www.anapioficeandfire.com/api/characters/1798\",\r\n \"http://www.anapioficeandfire.com/api/characters/1809\",\r\n
470
+ \ \"http://www.anapioficeandfire.com/api/characters/1815\",\r\n \"http://www.anapioficeandfire.com/api/characters/1825\",\r\n
471
+ \ \"http://www.anapioficeandfire.com/api/characters/1826\",\r\n \"http://www.anapioficeandfire.com/api/characters/1828\",\r\n
472
+ \ \"http://www.anapioficeandfire.com/api/characters/1830\",\r\n \"http://www.anapioficeandfire.com/api/characters/1831\",\r\n
473
+ \ \"http://www.anapioficeandfire.com/api/characters/1832\",\r\n \"http://www.anapioficeandfire.com/api/characters/1834\",\r\n
474
+ \ \"http://www.anapioficeandfire.com/api/characters/1836\",\r\n \"http://www.anapioficeandfire.com/api/characters/1839\",\r\n
475
+ \ \"http://www.anapioficeandfire.com/api/characters/1840\",\r\n \"http://www.anapioficeandfire.com/api/characters/1841\",\r\n
476
+ \ \"http://www.anapioficeandfire.com/api/characters/1848\",\r\n \"http://www.anapioficeandfire.com/api/characters/1852\",\r\n
477
+ \ \"http://www.anapioficeandfire.com/api/characters/1854\",\r\n \"http://www.anapioficeandfire.com/api/characters/1856\",\r\n
478
+ \ \"http://www.anapioficeandfire.com/api/characters/1857\",\r\n \"http://www.anapioficeandfire.com/api/characters/1858\",\r\n
479
+ \ \"http://www.anapioficeandfire.com/api/characters/1859\",\r\n \"http://www.anapioficeandfire.com/api/characters/1862\",\r\n
480
+ \ \"http://www.anapioficeandfire.com/api/characters/1866\",\r\n \"http://www.anapioficeandfire.com/api/characters/1867\",\r\n
481
+ \ \"http://www.anapioficeandfire.com/api/characters/1868\",\r\n \"http://www.anapioficeandfire.com/api/characters/1870\",\r\n
482
+ \ \"http://www.anapioficeandfire.com/api/characters/1872\",\r\n \"http://www.anapioficeandfire.com/api/characters/1876\",\r\n
483
+ \ \"http://www.anapioficeandfire.com/api/characters/1880\",\r\n \"http://www.anapioficeandfire.com/api/characters/1886\",\r\n
484
+ \ \"http://www.anapioficeandfire.com/api/characters/1888\",\r\n \"http://www.anapioficeandfire.com/api/characters/1895\",\r\n
485
+ \ \"http://www.anapioficeandfire.com/api/characters/1897\",\r\n \"http://www.anapioficeandfire.com/api/characters/1899\",\r\n
486
+ \ \"http://www.anapioficeandfire.com/api/characters/1900\",\r\n \"http://www.anapioficeandfire.com/api/characters/1904\",\r\n
487
+ \ \"http://www.anapioficeandfire.com/api/characters/1907\",\r\n \"http://www.anapioficeandfire.com/api/characters/1910\",\r\n
488
+ \ \"http://www.anapioficeandfire.com/api/characters/1914\",\r\n \"http://www.anapioficeandfire.com/api/characters/1916\",\r\n
489
+ \ \"http://www.anapioficeandfire.com/api/characters/1917\",\r\n \"http://www.anapioficeandfire.com/api/characters/1922\",\r\n
490
+ \ \"http://www.anapioficeandfire.com/api/characters/1923\",\r\n \"http://www.anapioficeandfire.com/api/characters/1925\",\r\n
491
+ \ \"http://www.anapioficeandfire.com/api/characters/1930\",\r\n \"http://www.anapioficeandfire.com/api/characters/1931\",\r\n
492
+ \ \"http://www.anapioficeandfire.com/api/characters/1935\",\r\n \"http://www.anapioficeandfire.com/api/characters/1937\",\r\n
493
+ \ \"http://www.anapioficeandfire.com/api/characters/1938\",\r\n \"http://www.anapioficeandfire.com/api/characters/1939\",\r\n
494
+ \ \"http://www.anapioficeandfire.com/api/characters/1944\",\r\n \"http://www.anapioficeandfire.com/api/characters/1948\",\r\n
495
+ \ \"http://www.anapioficeandfire.com/api/characters/1949\",\r\n \"http://www.anapioficeandfire.com/api/characters/1954\",\r\n
496
+ \ \"http://www.anapioficeandfire.com/api/characters/1956\",\r\n \"http://www.anapioficeandfire.com/api/characters/1957\",\r\n
497
+ \ \"http://www.anapioficeandfire.com/api/characters/1958\",\r\n \"http://www.anapioficeandfire.com/api/characters/1961\",\r\n
498
+ \ \"http://www.anapioficeandfire.com/api/characters/1962\",\r\n \"http://www.anapioficeandfire.com/api/characters/1963\",\r\n
499
+ \ \"http://www.anapioficeandfire.com/api/characters/1964\",\r\n \"http://www.anapioficeandfire.com/api/characters/1965\",\r\n
500
+ \ \"http://www.anapioficeandfire.com/api/characters/1967\",\r\n \"http://www.anapioficeandfire.com/api/characters/1970\",\r\n
501
+ \ \"http://www.anapioficeandfire.com/api/characters/1972\",\r\n \"http://www.anapioficeandfire.com/api/characters/1976\",\r\n
502
+ \ \"http://www.anapioficeandfire.com/api/characters/1977\",\r\n \"http://www.anapioficeandfire.com/api/characters/1978\",\r\n
503
+ \ \"http://www.anapioficeandfire.com/api/characters/1979\",\r\n \"http://www.anapioficeandfire.com/api/characters/1981\",\r\n
504
+ \ \"http://www.anapioficeandfire.com/api/characters/1994\",\r\n \"http://www.anapioficeandfire.com/api/characters/1996\",\r\n
505
+ \ \"http://www.anapioficeandfire.com/api/characters/1999\",\r\n \"http://www.anapioficeandfire.com/api/characters/2000\",\r\n
506
+ \ \"http://www.anapioficeandfire.com/api/characters/2002\",\r\n \"http://www.anapioficeandfire.com/api/characters/2005\",\r\n
507
+ \ \"http://www.anapioficeandfire.com/api/characters/2006\",\r\n \"http://www.anapioficeandfire.com/api/characters/2008\",\r\n
508
+ \ \"http://www.anapioficeandfire.com/api/characters/2009\",\r\n \"http://www.anapioficeandfire.com/api/characters/2013\",\r\n
509
+ \ \"http://www.anapioficeandfire.com/api/characters/2014\",\r\n \"http://www.anapioficeandfire.com/api/characters/2020\",\r\n
510
+ \ \"http://www.anapioficeandfire.com/api/characters/2022\",\r\n \"http://www.anapioficeandfire.com/api/characters/2023\",\r\n
511
+ \ \"http://www.anapioficeandfire.com/api/characters/2024\",\r\n \"http://www.anapioficeandfire.com/api/characters/2026\",\r\n
512
+ \ \"http://www.anapioficeandfire.com/api/characters/2027\",\r\n \"http://www.anapioficeandfire.com/api/characters/2032\",\r\n
513
+ \ \"http://www.anapioficeandfire.com/api/characters/2033\",\r\n \"http://www.anapioficeandfire.com/api/characters/2036\",\r\n
514
+ \ \"http://www.anapioficeandfire.com/api/characters/2039\",\r\n \"http://www.anapioficeandfire.com/api/characters/2040\",\r\n
515
+ \ \"http://www.anapioficeandfire.com/api/characters/2041\",\r\n \"http://www.anapioficeandfire.com/api/characters/2043\",\r\n
516
+ \ \"http://www.anapioficeandfire.com/api/characters/2044\",\r\n \"http://www.anapioficeandfire.com/api/characters/2045\",\r\n
517
+ \ \"http://www.anapioficeandfire.com/api/characters/2050\",\r\n \"http://www.anapioficeandfire.com/api/characters/2065\",\r\n
518
+ \ \"http://www.anapioficeandfire.com/api/characters/2069\",\r\n \"http://www.anapioficeandfire.com/api/characters/2071\",\r\n
519
+ \ \"http://www.anapioficeandfire.com/api/characters/2072\",\r\n \"http://www.anapioficeandfire.com/api/characters/2073\",\r\n
520
+ \ \"http://www.anapioficeandfire.com/api/characters/2077\",\r\n \"http://www.anapioficeandfire.com/api/characters/2078\",\r\n
521
+ \ \"http://www.anapioficeandfire.com/api/characters/2080\",\r\n \"http://www.anapioficeandfire.com/api/characters/2085\",\r\n
522
+ \ \"http://www.anapioficeandfire.com/api/characters/2097\",\r\n \"http://www.anapioficeandfire.com/api/characters/2108\",\r\n
523
+ \ \"http://www.anapioficeandfire.com/api/characters/2109\",\r\n \"http://www.anapioficeandfire.com/api/characters/2112\",\r\n
524
+ \ \"http://www.anapioficeandfire.com/api/characters/2117\",\r\n \"http://www.anapioficeandfire.com/api/characters/2118\",\r\n
525
+ \ \"http://www.anapioficeandfire.com/api/characters/2122\",\r\n \"http://www.anapioficeandfire.com/api/characters/2124\",\r\n
526
+ \ \"http://www.anapioficeandfire.com/api/characters/2125\",\r\n \"http://www.anapioficeandfire.com/api/characters/2126\",\r\n
527
+ \ \"http://www.anapioficeandfire.com/api/characters/2132\",\r\n \"http://www.anapioficeandfire.com/api/characters/2135\",\r\n
528
+ \ \"http://www.anapioficeandfire.com/api/characters/2136\"\r\n ],\r\n
529
+ \ \"povCharacters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/148\",\r\n
530
+ \ \"http://www.anapioficeandfire.com/api/characters/150\",\r\n \"http://www.anapioficeandfire.com/api/characters/168\",\r\n
531
+ \ \"http://www.anapioficeandfire.com/api/characters/208\",\r\n \"http://www.anapioficeandfire.com/api/characters/238\",\r\n
532
+ \ \"http://www.anapioficeandfire.com/api/characters/529\",\r\n \"http://www.anapioficeandfire.com/api/characters/576\",\r\n
533
+ \ \"http://www.anapioficeandfire.com/api/characters/583\",\r\n \"http://www.anapioficeandfire.com/api/characters/605\",\r\n
534
+ \ \"http://www.anapioficeandfire.com/api/characters/743\",\r\n \"http://www.anapioficeandfire.com/api/characters/844\",\r\n
535
+ \ \"http://www.anapioficeandfire.com/api/characters/1022\",\r\n \"http://www.anapioficeandfire.com/api/characters/1052\",\r\n
536
+ \ \"http://www.anapioficeandfire.com/api/characters/1074\",\r\n \"http://www.anapioficeandfire.com/api/characters/1166\",\r\n
537
+ \ \"http://www.anapioficeandfire.com/api/characters/1303\",\r\n \"http://www.anapioficeandfire.com/api/characters/1319\",\r\n
538
+ \ \"http://www.anapioficeandfire.com/api/characters/2066\"\r\n ]\r\n
539
+ \ },\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/9\",\r\n
540
+ \ \"name\": \"The Princess and the Queen\",\r\n \"isbn\": \"978-0765332066\",\r\n
541
+ \ \"authors\": [\r\n \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\":
542
+ 784,\r\n \"publisher\": \"Tor Books\",\r\n \"country\": \"United States\",\r\n
543
+ \ \"mediaType\": \"Hardcover\",\r\n \"released\": \"2013-12-03T00:00:00\",\r\n
544
+ \ \"characters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/33\",\r\n
545
+ \ \"http://www.anapioficeandfire.com/api/characters/38\",\r\n \"http://www.anapioficeandfire.com/api/characters/39\",\r\n
546
+ \ \"http://www.anapioficeandfire.com/api/characters/40\",\r\n \"http://www.anapioficeandfire.com/api/characters/49\",\r\n
547
+ \ \"http://www.anapioficeandfire.com/api/characters/55\",\r\n \"http://www.anapioficeandfire.com/api/characters/76\",\r\n
548
+ \ \"http://www.anapioficeandfire.com/api/characters/91\",\r\n \"http://www.anapioficeandfire.com/api/characters/154\",\r\n
549
+ \ \"http://www.anapioficeandfire.com/api/characters/157\",\r\n \"http://www.anapioficeandfire.com/api/characters/242\",\r\n
550
+ \ \"http://www.anapioficeandfire.com/api/characters/253\",\r\n \"http://www.anapioficeandfire.com/api/characters/259\",\r\n
551
+ \ \"http://www.anapioficeandfire.com/api/characters/269\",\r\n \"http://www.anapioficeandfire.com/api/characters/275\",\r\n
552
+ \ \"http://www.anapioficeandfire.com/api/characters/386\",\r\n \"http://www.anapioficeandfire.com/api/characters/449\",\r\n
553
+ \ \"http://www.anapioficeandfire.com/api/characters/481\",\r\n \"http://www.anapioficeandfire.com/api/characters/488\",\r\n
554
+ \ \"http://www.anapioficeandfire.com/api/characters/526\",\r\n \"http://www.anapioficeandfire.com/api/characters/538\",\r\n
555
+ \ \"http://www.anapioficeandfire.com/api/characters/543\",\r\n \"http://www.anapioficeandfire.com/api/characters/548\",\r\n
556
+ \ \"http://www.anapioficeandfire.com/api/characters/610\",\r\n \"http://www.anapioficeandfire.com/api/characters/611\",\r\n
557
+ \ \"http://www.anapioficeandfire.com/api/characters/618\",\r\n \"http://www.anapioficeandfire.com/api/characters/643\",\r\n
558
+ \ \"http://www.anapioficeandfire.com/api/characters/646\",\r\n \"http://www.anapioficeandfire.com/api/characters/671\",\r\n
559
+ \ \"http://www.anapioficeandfire.com/api/characters/680\",\r\n \"http://www.anapioficeandfire.com/api/characters/685\",\r\n
560
+ \ \"http://www.anapioficeandfire.com/api/characters/694\",\r\n \"http://www.anapioficeandfire.com/api/characters/696\",\r\n
561
+ \ \"http://www.anapioficeandfire.com/api/characters/808\",\r\n \"http://www.anapioficeandfire.com/api/characters/871\",\r\n
562
+ \ \"http://www.anapioficeandfire.com/api/characters/873\",\r\n \"http://www.anapioficeandfire.com/api/characters/874\",\r\n
563
+ \ \"http://www.anapioficeandfire.com/api/characters/875\",\r\n \"http://www.anapioficeandfire.com/api/characters/888\",\r\n
564
+ \ \"http://www.anapioficeandfire.com/api/characters/987\",\r\n \"http://www.anapioficeandfire.com/api/characters/1050\",\r\n
565
+ \ \"http://www.anapioficeandfire.com/api/characters/1076\",\r\n \"http://www.anapioficeandfire.com/api/characters/1077\",\r\n
566
+ \ \"http://www.anapioficeandfire.com/api/characters/1119\",\r\n \"http://www.anapioficeandfire.com/api/characters/1318\",\r\n
567
+ \ \"http://www.anapioficeandfire.com/api/characters/1458\",\r\n \"http://www.anapioficeandfire.com/api/characters/1513\",\r\n
568
+ \ \"http://www.anapioficeandfire.com/api/characters/1517\",\r\n \"http://www.anapioficeandfire.com/api/characters/1527\",\r\n
569
+ \ \"http://www.anapioficeandfire.com/api/characters/1528\",\r\n \"http://www.anapioficeandfire.com/api/characters/1739\",\r\n
570
+ \ \"http://www.anapioficeandfire.com/api/characters/1746\",\r\n \"http://www.anapioficeandfire.com/api/characters/1756\",\r\n
571
+ \ \"http://www.anapioficeandfire.com/api/characters/1786\",\r\n \"http://www.anapioficeandfire.com/api/characters/1884\",\r\n
572
+ \ \"http://www.anapioficeandfire.com/api/characters/2048\",\r\n \"http://www.anapioficeandfire.com/api/characters/2138\"\r\n
573
+ \ ],\r\n \"povCharacters\": []\r\n },\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/10\",\r\n
574
+ \ \"name\": \"The Rogue Prince\",\r\n \"isbn\": \"978-0345537263\",\r\n
575
+ \ \"authors\": [\r\n \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\":
576
+ 832,\r\n \"publisher\": \"Bantam Books\",\r\n \"country\": \"United
577
+ States\",\r\n \"mediaType\": \"Hardcover\",\r\n \"released\": \"2014-06-17T00:00:00\",\r\n
578
+ \ \"characters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/39\",\r\n
579
+ \ \"http://www.anapioficeandfire.com/api/characters/40\",\r\n \"http://www.anapioficeandfire.com/api/characters/49\",\r\n
580
+ \ \"http://www.anapioficeandfire.com/api/characters/55\",\r\n \"http://www.anapioficeandfire.com/api/characters/76\",\r\n
581
+ \ \"http://www.anapioficeandfire.com/api/characters/105\",\r\n \"http://www.anapioficeandfire.com/api/characters/154\",\r\n
582
+ \ \"http://www.anapioficeandfire.com/api/characters/156\",\r\n \"http://www.anapioficeandfire.com/api/characters/157\",\r\n
583
+ \ \"http://www.anapioficeandfire.com/api/characters/169\",\r\n \"http://www.anapioficeandfire.com/api/characters/253\",\r\n
584
+ \ \"http://www.anapioficeandfire.com/api/characters/265\",\r\n \"http://www.anapioficeandfire.com/api/characters/269\",\r\n
585
+ \ \"http://www.anapioficeandfire.com/api/characters/275\",\r\n \"http://www.anapioficeandfire.com/api/characters/386\",\r\n
586
+ \ \"http://www.anapioficeandfire.com/api/characters/479\",\r\n \"http://www.anapioficeandfire.com/api/characters/481\",\r\n
587
+ \ \"http://www.anapioficeandfire.com/api/characters/488\",\r\n \"http://www.anapioficeandfire.com/api/characters/526\",\r\n
588
+ \ \"http://www.anapioficeandfire.com/api/characters/538\",\r\n \"http://www.anapioficeandfire.com/api/characters/548\",\r\n
589
+ \ \"http://www.anapioficeandfire.com/api/characters/567\",\r\n \"http://www.anapioficeandfire.com/api/characters/569\",\r\n
590
+ \ \"http://www.anapioficeandfire.com/api/characters/610\",\r\n \"http://www.anapioficeandfire.com/api/characters/611\",\r\n
591
+ \ \"http://www.anapioficeandfire.com/api/characters/618\",\r\n \"http://www.anapioficeandfire.com/api/characters/675\",\r\n
592
+ \ \"http://www.anapioficeandfire.com/api/characters/684\",\r\n \"http://www.anapioficeandfire.com/api/characters/694\",\r\n
593
+ \ \"http://www.anapioficeandfire.com/api/characters/696\",\r\n \"http://www.anapioficeandfire.com/api/characters/808\",\r\n
594
+ \ \"http://www.anapioficeandfire.com/api/characters/871\",\r\n \"http://www.anapioficeandfire.com/api/characters/873\",\r\n
595
+ \ \"http://www.anapioficeandfire.com/api/characters/874\",\r\n \"http://www.anapioficeandfire.com/api/characters/875\",\r\n
596
+ \ \"http://www.anapioficeandfire.com/api/characters/878\",\r\n \"http://www.anapioficeandfire.com/api/characters/945\",\r\n
597
+ \ \"http://www.anapioficeandfire.com/api/characters/951\",\r\n \"http://www.anapioficeandfire.com/api/characters/1050\",\r\n
598
+ \ \"http://www.anapioficeandfire.com/api/characters/1066\",\r\n \"http://www.anapioficeandfire.com/api/characters/1076\",\r\n
599
+ \ \"http://www.anapioficeandfire.com/api/characters/1077\",\r\n \"http://www.anapioficeandfire.com/api/characters/1291\",\r\n
600
+ \ \"http://www.anapioficeandfire.com/api/characters/1419\",\r\n \"http://www.anapioficeandfire.com/api/characters/1458\",\r\n
601
+ \ \"http://www.anapioficeandfire.com/api/characters/1527\",\r\n \"http://www.anapioficeandfire.com/api/characters/1528\",\r\n
602
+ \ \"http://www.anapioficeandfire.com/api/characters/1699\",\r\n \"http://www.anapioficeandfire.com/api/characters/1739\",\r\n
603
+ \ \"http://www.anapioficeandfire.com/api/characters/1746\",\r\n \"http://www.anapioficeandfire.com/api/characters/1833\",\r\n
604
+ \ \"http://www.anapioficeandfire.com/api/characters/1850\",\r\n \"http://www.anapioficeandfire.com/api/characters/1884\",\r\n
605
+ \ \"http://www.anapioficeandfire.com/api/characters/1912\",\r\n \"http://www.anapioficeandfire.com/api/characters/2138\"\r\n
606
+ \ ],\r\n \"povCharacters\": []\r\n },\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/11\",\r\n
607
+ \ \"name\": \"The World of Ice and Fire\",\r\n \"isbn\": \"978-0553805444\",\r\n
608
+ \ \"authors\": [\r\n \"Elio Garcia\",\r\n \"Linda Antonsson\",\r\n
609
+ \ \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\": 336,\r\n
610
+ \ \"publisher\": \"Bantam Books\",\r\n \"country\": \"United States\",\r\n
611
+ \ \"mediaType\": \"Hardcover\",\r\n \"released\": \"2014-10-28T00:00:00\",\r\n
612
+ \ \"characters\": [\r\n \"http://www.anapioficeandfire.com/api/characters/27\",\r\n
613
+ \ \"http://www.anapioficeandfire.com/api/characters/33\",\r\n \"http://www.anapioficeandfire.com/api/characters/34\",\r\n
614
+ \ \"http://www.anapioficeandfire.com/api/characters/38\",\r\n \"http://www.anapioficeandfire.com/api/characters/39\",\r\n
615
+ \ \"http://www.anapioficeandfire.com/api/characters/40\",\r\n \"http://www.anapioficeandfire.com/api/characters/41\",\r\n
616
+ \ \"http://www.anapioficeandfire.com/api/characters/42\",\r\n \"http://www.anapioficeandfire.com/api/characters/43\",\r\n
617
+ \ \"http://www.anapioficeandfire.com/api/characters/44\",\r\n \"http://www.anapioficeandfire.com/api/characters/45\",\r\n
618
+ \ \"http://www.anapioficeandfire.com/api/characters/46\",\r\n \"http://www.anapioficeandfire.com/api/characters/47\",\r\n
619
+ \ \"http://www.anapioficeandfire.com/api/characters/48\",\r\n \"http://www.anapioficeandfire.com/api/characters/49\",\r\n
620
+ \ \"http://www.anapioficeandfire.com/api/characters/55\",\r\n \"http://www.anapioficeandfire.com/api/characters/57\",\r\n
621
+ \ \"http://www.anapioficeandfire.com/api/characters/58\",\r\n \"http://www.anapioficeandfire.com/api/characters/59\",\r\n
622
+ \ \"http://www.anapioficeandfire.com/api/characters/61\",\r\n \"http://www.anapioficeandfire.com/api/characters/62\",\r\n
623
+ \ \"http://www.anapioficeandfire.com/api/characters/65\",\r\n \"http://www.anapioficeandfire.com/api/characters/75\",\r\n
624
+ \ \"http://www.anapioficeandfire.com/api/characters/76\",\r\n \"http://www.anapioficeandfire.com/api/characters/83\",\r\n
625
+ \ \"http://www.anapioficeandfire.com/api/characters/90\",\r\n \"http://www.anapioficeandfire.com/api/characters/91\",\r\n
626
+ \ \"http://www.anapioficeandfire.com/api/characters/93\",\r\n \"http://www.anapioficeandfire.com/api/characters/97\",\r\n
627
+ \ \"http://www.anapioficeandfire.com/api/characters/98\",\r\n \"http://www.anapioficeandfire.com/api/characters/101\",\r\n
628
+ \ \"http://www.anapioficeandfire.com/api/characters/105\",\r\n \"http://www.anapioficeandfire.com/api/characters/109\",\r\n
629
+ \ \"http://www.anapioficeandfire.com/api/characters/110\",\r\n \"http://www.anapioficeandfire.com/api/characters/128\",\r\n
630
+ \ \"http://www.anapioficeandfire.com/api/characters/129\",\r\n \"http://www.anapioficeandfire.com/api/characters/136\",\r\n
631
+ \ \"http://www.anapioficeandfire.com/api/characters/137\",\r\n \"http://www.anapioficeandfire.com/api/characters/142\",\r\n
632
+ \ \"http://www.anapioficeandfire.com/api/characters/143\",\r\n \"http://www.anapioficeandfire.com/api/characters/144\",\r\n
633
+ \ \"http://www.anapioficeandfire.com/api/characters/154\",\r\n \"http://www.anapioficeandfire.com/api/characters/155\",\r\n
634
+ \ \"http://www.anapioficeandfire.com/api/characters/157\",\r\n \"http://www.anapioficeandfire.com/api/characters/160\",\r\n
635
+ \ \"http://www.anapioficeandfire.com/api/characters/161\",\r\n \"http://www.anapioficeandfire.com/api/characters/165\",\r\n
636
+ \ \"http://www.anapioficeandfire.com/api/characters/168\",\r\n \"http://www.anapioficeandfire.com/api/characters/169\",\r\n
637
+ \ \"http://www.anapioficeandfire.com/api/characters/170\",\r\n \"http://www.anapioficeandfire.com/api/characters/178\",\r\n
638
+ \ \"http://www.anapioficeandfire.com/api/characters/192\",\r\n \"http://www.anapioficeandfire.com/api/characters/195\",\r\n
639
+ \ \"http://www.anapioficeandfire.com/api/characters/197\",\r\n \"http://www.anapioficeandfire.com/api/characters/207\",\r\n
640
+ \ \"http://www.anapioficeandfire.com/api/characters/209\",\r\n \"http://www.anapioficeandfire.com/api/characters/226\",\r\n
641
+ \ \"http://www.anapioficeandfire.com/api/characters/231\",\r\n \"http://www.anapioficeandfire.com/api/characters/235\",\r\n
642
+ \ \"http://www.anapioficeandfire.com/api/characters/236\",\r\n \"http://www.anapioficeandfire.com/api/characters/239\",\r\n
643
+ \ \"http://www.anapioficeandfire.com/api/characters/244\",\r\n \"http://www.anapioficeandfire.com/api/characters/253\",\r\n
644
+ \ \"http://www.anapioficeandfire.com/api/characters/255\",\r\n \"http://www.anapioficeandfire.com/api/characters/256\",\r\n
645
+ \ \"http://www.anapioficeandfire.com/api/characters/257\",\r\n \"http://www.anapioficeandfire.com/api/characters/259\",\r\n
646
+ \ \"http://www.anapioficeandfire.com/api/characters/265\",\r\n \"http://www.anapioficeandfire.com/api/characters/266\",\r\n
647
+ \ \"http://www.anapioficeandfire.com/api/characters/267\",\r\n \"http://www.anapioficeandfire.com/api/characters/268\",\r\n
648
+ \ \"http://www.anapioficeandfire.com/api/characters/269\",\r\n \"http://www.anapioficeandfire.com/api/characters/270\",\r\n
649
+ \ \"http://www.anapioficeandfire.com/api/characters/271\",\r\n \"http://www.anapioficeandfire.com/api/characters/272\",\r\n
650
+ \ \"http://www.anapioficeandfire.com/api/characters/273\",\r\n \"http://www.anapioficeandfire.com/api/characters/274\",\r\n
651
+ \ \"http://www.anapioficeandfire.com/api/characters/275\",\r\n \"http://www.anapioficeandfire.com/api/characters/276\",\r\n
652
+ \ \"http://www.anapioficeandfire.com/api/characters/282\",\r\n \"http://www.anapioficeandfire.com/api/characters/284\",\r\n
653
+ \ \"http://www.anapioficeandfire.com/api/characters/289\",\r\n \"http://www.anapioficeandfire.com/api/characters/324\",\r\n
654
+ \ \"http://www.anapioficeandfire.com/api/characters/329\",\r\n \"http://www.anapioficeandfire.com/api/characters/330\",\r\n
655
+ \ \"http://www.anapioficeandfire.com/api/characters/333\",\r\n \"http://www.anapioficeandfire.com/api/characters/334\",\r\n
656
+ \ \"http://www.anapioficeandfire.com/api/characters/339\",\r\n \"http://www.anapioficeandfire.com/api/characters/347\",\r\n
657
+ \ \"http://www.anapioficeandfire.com/api/characters/349\",\r\n \"http://www.anapioficeandfire.com/api/characters/351\",\r\n
658
+ \ \"http://www.anapioficeandfire.com/api/characters/363\",\r\n \"http://www.anapioficeandfire.com/api/characters/366\",\r\n
659
+ \ \"http://www.anapioficeandfire.com/api/characters/367\",\r\n \"http://www.anapioficeandfire.com/api/characters/391\",\r\n
660
+ \ \"http://www.anapioficeandfire.com/api/characters/395\",\r\n \"http://www.anapioficeandfire.com/api/characters/410\",\r\n
661
+ \ \"http://www.anapioficeandfire.com/api/characters/418\",\r\n \"http://www.anapioficeandfire.com/api/characters/422\",\r\n
662
+ \ \"http://www.anapioficeandfire.com/api/characters/425\",\r\n \"http://www.anapioficeandfire.com/api/characters/431\",\r\n
663
+ \ \"http://www.anapioficeandfire.com/api/characters/457\",\r\n \"http://www.anapioficeandfire.com/api/characters/460\",\r\n
664
+ \ \"http://www.anapioficeandfire.com/api/characters/467\",\r\n \"http://www.anapioficeandfire.com/api/characters/471\",\r\n
665
+ \ \"http://www.anapioficeandfire.com/api/characters/472\",\r\n \"http://www.anapioficeandfire.com/api/characters/475\",\r\n
666
+ \ \"http://www.anapioficeandfire.com/api/characters/481\",\r\n \"http://www.anapioficeandfire.com/api/characters/484\",\r\n
667
+ \ \"http://www.anapioficeandfire.com/api/characters/487\",\r\n \"http://www.anapioficeandfire.com/api/characters/488\",\r\n
668
+ \ \"http://www.anapioficeandfire.com/api/characters/492\",\r\n \"http://www.anapioficeandfire.com/api/characters/497\",\r\n
669
+ \ \"http://www.anapioficeandfire.com/api/characters/525\",\r\n \"http://www.anapioficeandfire.com/api/characters/526\",\r\n
670
+ \ \"http://www.anapioficeandfire.com/api/characters/527\",\r\n \"http://www.anapioficeandfire.com/api/characters/538\",\r\n
671
+ \ \"http://www.anapioficeandfire.com/api/characters/546\",\r\n \"http://www.anapioficeandfire.com/api/characters/548\",\r\n
672
+ \ \"http://www.anapioficeandfire.com/api/characters/554\",\r\n \"http://www.anapioficeandfire.com/api/characters/556\",\r\n
673
+ \ \"http://www.anapioficeandfire.com/api/characters/560\",\r\n \"http://www.anapioficeandfire.com/api/characters/570\",\r\n
674
+ \ \"http://www.anapioficeandfire.com/api/characters/572\",\r\n \"http://www.anapioficeandfire.com/api/characters/576\",\r\n
675
+ \ \"http://www.anapioficeandfire.com/api/characters/584\",\r\n \"http://www.anapioficeandfire.com/api/characters/589\",\r\n
676
+ \ \"http://www.anapioficeandfire.com/api/characters/610\",\r\n \"http://www.anapioficeandfire.com/api/characters/611\",\r\n
677
+ \ \"http://www.anapioficeandfire.com/api/characters/615\",\r\n \"http://www.anapioficeandfire.com/api/characters/616\",\r\n
678
+ \ \"http://www.anapioficeandfire.com/api/characters/623\",\r\n \"http://www.anapioficeandfire.com/api/characters/648\",\r\n
679
+ \ \"http://www.anapioficeandfire.com/api/characters/656\",\r\n \"http://www.anapioficeandfire.com/api/characters/662\",\r\n
680
+ \ \"http://www.anapioficeandfire.com/api/characters/668\",\r\n \"http://www.anapioficeandfire.com/api/characters/679\",\r\n
681
+ \ \"http://www.anapioficeandfire.com/api/characters/685\",\r\n \"http://www.anapioficeandfire.com/api/characters/694\",\r\n
682
+ \ \"http://www.anapioficeandfire.com/api/characters/695\",\r\n \"http://www.anapioficeandfire.com/api/characters/696\",\r\n
683
+ \ \"http://www.anapioficeandfire.com/api/characters/697\",\r\n \"http://www.anapioficeandfire.com/api/characters/698\",\r\n
684
+ \ \"http://www.anapioficeandfire.com/api/characters/709\",\r\n \"http://www.anapioficeandfire.com/api/characters/716\",\r\n
685
+ \ \"http://www.anapioficeandfire.com/api/characters/719\",\r\n \"http://www.anapioficeandfire.com/api/characters/729\",\r\n
686
+ \ \"http://www.anapioficeandfire.com/api/characters/737\",\r\n \"http://www.anapioficeandfire.com/api/characters/744\",\r\n
687
+ \ \"http://www.anapioficeandfire.com/api/characters/749\",\r\n \"http://www.anapioficeandfire.com/api/characters/759\",\r\n
688
+ \ \"http://www.anapioficeandfire.com/api/characters/767\",\r\n \"http://www.anapioficeandfire.com/api/characters/773\",\r\n
689
+ \ \"http://www.anapioficeandfire.com/api/characters/777\",\r\n \"http://www.anapioficeandfire.com/api/characters/778\",\r\n
690
+ \ \"http://www.anapioficeandfire.com/api/characters/779\",\r\n \"http://www.anapioficeandfire.com/api/characters/782\",\r\n
691
+ \ \"http://www.anapioficeandfire.com/api/characters/794\",\r\n \"http://www.anapioficeandfire.com/api/characters/797\",\r\n
692
+ \ \"http://www.anapioficeandfire.com/api/characters/803\",\r\n \"http://www.anapioficeandfire.com/api/characters/805\",\r\n
693
+ \ \"http://www.anapioficeandfire.com/api/characters/808\",\r\n \"http://www.anapioficeandfire.com/api/characters/813\",\r\n
694
+ \ \"http://www.anapioficeandfire.com/api/characters/833\",\r\n \"http://www.anapioficeandfire.com/api/characters/836\",\r\n
695
+ \ \"http://www.anapioficeandfire.com/api/characters/841\",\r\n \"http://www.anapioficeandfire.com/api/characters/859\",\r\n
696
+ \ \"http://www.anapioficeandfire.com/api/characters/865\",\r\n \"http://www.anapioficeandfire.com/api/characters/868\",\r\n
697
+ \ \"http://www.anapioficeandfire.com/api/characters/869\",\r\n \"http://www.anapioficeandfire.com/api/characters/870\",\r\n
698
+ \ \"http://www.anapioficeandfire.com/api/characters/871\",\r\n \"http://www.anapioficeandfire.com/api/characters/872\",\r\n
699
+ \ \"http://www.anapioficeandfire.com/api/characters/873\",\r\n \"http://www.anapioficeandfire.com/api/characters/874\",\r\n
700
+ \ \"http://www.anapioficeandfire.com/api/characters/875\",\r\n \"http://www.anapioficeandfire.com/api/characters/878\",\r\n
701
+ \ \"http://www.anapioficeandfire.com/api/characters/886\",\r\n \"http://www.anapioficeandfire.com/api/characters/887\",\r\n
702
+ \ \"http://www.anapioficeandfire.com/api/characters/888\",\r\n \"http://www.anapioficeandfire.com/api/characters/901\",\r\n
703
+ \ \"http://www.anapioficeandfire.com/api/characters/911\",\r\n \"http://www.anapioficeandfire.com/api/characters/916\",\r\n
704
+ \ \"http://www.anapioficeandfire.com/api/characters/917\",\r\n \"http://www.anapioficeandfire.com/api/characters/918\",\r\n
705
+ \ \"http://www.anapioficeandfire.com/api/characters/920\",\r\n \"http://www.anapioficeandfire.com/api/characters/945\",\r\n
706
+ \ \"http://www.anapioficeandfire.com/api/characters/951\",\r\n \"http://www.anapioficeandfire.com/api/characters/969\",\r\n
707
+ \ \"http://www.anapioficeandfire.com/api/characters/971\",\r\n \"http://www.anapioficeandfire.com/api/characters/986\",\r\n
708
+ \ \"http://www.anapioficeandfire.com/api/characters/1014\",\r\n \"http://www.anapioficeandfire.com/api/characters/1023\",\r\n
709
+ \ \"http://www.anapioficeandfire.com/api/characters/1026\",\r\n \"http://www.anapioficeandfire.com/api/characters/1032\",\r\n
710
+ \ \"http://www.anapioficeandfire.com/api/characters/1034\",\r\n \"http://www.anapioficeandfire.com/api/characters/1040\",\r\n
711
+ \ \"http://www.anapioficeandfire.com/api/characters/1048\",\r\n \"http://www.anapioficeandfire.com/api/characters/1050\",\r\n
712
+ \ \"http://www.anapioficeandfire.com/api/characters/1052\",\r\n \"http://www.anapioficeandfire.com/api/characters/1057\",\r\n
713
+ \ \"http://www.anapioficeandfire.com/api/characters/1070\",\r\n \"http://www.anapioficeandfire.com/api/characters/1072\",\r\n
714
+ \ \"http://www.anapioficeandfire.com/api/characters/1076\",\r\n \"http://www.anapioficeandfire.com/api/characters/1077\",\r\n
715
+ \ \"http://www.anapioficeandfire.com/api/characters/1078\",\r\n \"http://www.anapioficeandfire.com/api/characters/1079\",\r\n
716
+ \ \"http://www.anapioficeandfire.com/api/characters/1099\",\r\n \"http://www.anapioficeandfire.com/api/characters/1111\",\r\n
717
+ \ \"http://www.anapioficeandfire.com/api/characters/1149\",\r\n \"http://www.anapioficeandfire.com/api/characters/1169\",\r\n
718
+ \ \"http://www.anapioficeandfire.com/api/characters/1175\",\r\n \"http://www.anapioficeandfire.com/api/characters/1181\",\r\n
719
+ \ \"http://www.anapioficeandfire.com/api/characters/1202\",\r\n \"http://www.anapioficeandfire.com/api/characters/1239\",\r\n
720
+ \ \"http://www.anapioficeandfire.com/api/characters/1242\",\r\n \"http://www.anapioficeandfire.com/api/characters/1286\",\r\n
721
+ \ \"http://www.anapioficeandfire.com/api/characters/1354\",\r\n \"http://www.anapioficeandfire.com/api/characters/1358\",\r\n
722
+ \ \"http://www.anapioficeandfire.com/api/characters/1375\",\r\n \"http://www.anapioficeandfire.com/api/characters/1388\",\r\n
723
+ \ \"http://www.anapioficeandfire.com/api/characters/1398\",\r\n \"http://www.anapioficeandfire.com/api/characters/1399\",\r\n
724
+ \ \"http://www.anapioficeandfire.com/api/characters/1406\",\r\n \"http://www.anapioficeandfire.com/api/characters/1411\",\r\n
725
+ \ \"http://www.anapioficeandfire.com/api/characters/1417\",\r\n \"http://www.anapioficeandfire.com/api/characters/1435\",\r\n
726
+ \ \"http://www.anapioficeandfire.com/api/characters/1444\",\r\n \"http://www.anapioficeandfire.com/api/characters/1458\",\r\n
727
+ \ \"http://www.anapioficeandfire.com/api/characters/1462\",\r\n \"http://www.anapioficeandfire.com/api/characters/1513\",\r\n
728
+ \ \"http://www.anapioficeandfire.com/api/characters/1514\",\r\n \"http://www.anapioficeandfire.com/api/characters/1527\",\r\n
729
+ \ \"http://www.anapioficeandfire.com/api/characters/1539\",\r\n \"http://www.anapioficeandfire.com/api/characters/1545\",\r\n
730
+ \ \"http://www.anapioficeandfire.com/api/characters/1558\",\r\n \"http://www.anapioficeandfire.com/api/characters/1561\",\r\n
731
+ \ \"http://www.anapioficeandfire.com/api/characters/1589\",\r\n \"http://www.anapioficeandfire.com/api/characters/1608\",\r\n
732
+ \ \"http://www.anapioficeandfire.com/api/characters/1631\",\r\n \"http://www.anapioficeandfire.com/api/characters/1650\",\r\n
733
+ \ \"http://www.anapioficeandfire.com/api/characters/1672\",\r\n \"http://www.anapioficeandfire.com/api/characters/1690\",\r\n
734
+ \ \"http://www.anapioficeandfire.com/api/characters/1718\",\r\n \"http://www.anapioficeandfire.com/api/characters/1725\",\r\n
735
+ \ \"http://www.anapioficeandfire.com/api/characters/1739\",\r\n \"http://www.anapioficeandfire.com/api/characters/1746\",\r\n
736
+ \ \"http://www.anapioficeandfire.com/api/characters/1756\",\r\n \"http://www.anapioficeandfire.com/api/characters/1786\",\r\n
737
+ \ \"http://www.anapioficeandfire.com/api/characters/1862\",\r\n \"http://www.anapioficeandfire.com/api/characters/1866\",\r\n
738
+ \ \"http://www.anapioficeandfire.com/api/characters/1874\",\r\n \"http://www.anapioficeandfire.com/api/characters/1884\",\r\n
739
+ \ \"http://www.anapioficeandfire.com/api/characters/1891\",\r\n \"http://www.anapioficeandfire.com/api/characters/1905\",\r\n
740
+ \ \"http://www.anapioficeandfire.com/api/characters/1908\",\r\n \"http://www.anapioficeandfire.com/api/characters/1944\",\r\n
741
+ \ \"http://www.anapioficeandfire.com/api/characters/1976\",\r\n \"http://www.anapioficeandfire.com/api/characters/1989\",\r\n
742
+ \ \"http://www.anapioficeandfire.com/api/characters/2048\",\r\n \"http://www.anapioficeandfire.com/api/characters/2056\",\r\n
743
+ \ \"http://www.anapioficeandfire.com/api/characters/2059\",\r\n \"http://www.anapioficeandfire.com/api/characters/2071\",\r\n
744
+ \ \"http://www.anapioficeandfire.com/api/characters/2075\",\r\n \"http://www.anapioficeandfire.com/api/characters/2138\"\r\n
745
+ \ ],\r\n \"povCharacters\": []\r\n },\r\n {\r\n \"url\": \"http://www.anapioficeandfire.com/api/books/12\",\r\n
746
+ \ \"name\": \"A Knight of the Seven Kingdoms\",\r\n \"isbn\": \"978-0345533487\",\r\n
747
+ \ \"authors\": [\r\n \"George R. R. Martin\"\r\n ],\r\n \"numberOfPages\":
748
+ 368,\r\n \"publisher\": \"Bantam Books\",\r\n \"country\": \"United
749
+ States\",\r\n \"mediaType\": \"Hardcover\",\r\n \"released\": \"2015-10-06T00:00:00\",\r\n
750
+ \ \"characters\": [],\r\n \"povCharacters\": []\r\n }\r\n]"
751
+ http_version:
752
+ recorded_at: Thu, 29 Dec 2016 17:48:23 GMT
753
+ recorded_with: VCR 3.0.3