usa_today_books 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in usa_today_books.gemspec
4
+ gemspec
@@ -0,0 +1,38 @@
1
+ # USA Today Books API
2
+
3
+ Ruby wrapper for the [USA Today Books API](http://developer.usatoday.com/docs/read/bestselling_books).
4
+
5
+ ## Installation
6
+
7
+ Inside your Gemfile:
8
+ gem 'usa_today_books'
9
+
10
+ ## Get an API key
11
+
12
+ Go here: [http://developer.usatoday.com/apps](http://developer.usatoday.com/apps)
13
+
14
+ ## Usage
15
+
16
+ ### Instantiate a client
17
+
18
+ >> @client = UsaTodayBooks::BestSellers.new(:api_key => 'your_api_key')
19
+
20
+ ## Examples
21
+
22
+ #### Get booklists by date
23
+
24
+ >> @books = @client.booklists(:year => 2011, :month => 5, :date => 12)
25
+ >> @books["BookLists"].first["BookListEntries"].first["Author"]
26
+ => "Charlaine Harris"
27
+
28
+ #### Get titles by ISBN
29
+
30
+ >> @books = @client.titles(:isbn => "9780545010221")
31
+ >> @books["Title"]["BookListAppearances"]
32
+ => 78
33
+
34
+ ## Copyright
35
+
36
+ Contact me if you have any suggestions and feel free to fork it!
37
+
38
+ Copyright (c) 2011 Johnny Khai Nguyen, released under the MIT license
@@ -0,0 +1,7 @@
1
+ require 'bundler'
2
+ require 'rspec/core/rake_task'
3
+
4
+ Bundler::GemHelper.install_tasks
5
+ RSpec::Core::RakeTask.new('spec')
6
+
7
+ task :default => :spec
@@ -0,0 +1,22 @@
1
+ require 'rubygems'
2
+ require 'httparty'
3
+ require 'hashie'
4
+ require 'json'
5
+ require 'uri'
6
+
7
+ directory = File.expand_path(File.dirname(__FILE__))
8
+
9
+ Hash.send :include, Hashie::HashExtensions
10
+
11
+ module UsaTodayBooks
12
+ def self.configure
13
+ yield self
14
+ true
15
+ end
16
+
17
+ class << self
18
+ attr_accessor :api_key
19
+ end
20
+ end
21
+
22
+ require File.join(directory, 'usa_today_books', 'best_sellers')
@@ -0,0 +1,94 @@
1
+ module UsaTodayBooks
2
+
3
+ class BestSellers
4
+ include HTTParty
5
+ base_uri "http://api.usatoday.com/open/bestsellers/books"
6
+
7
+ attr_reader :api_key
8
+
9
+ def initialize(options={})
10
+ @api_key = options[:api_key] || UsaTodayBooks.api_key
11
+ end
12
+
13
+ def dates(options={})
14
+ year = options.delete(:year)
15
+ month = options.delete(:month)
16
+ minyear = options.delete(:minyear)
17
+ maxyear = options.delete(:maxyear)
18
+
19
+ options = {:minyear => minyear, :maxyear => maxyear}
20
+
21
+ if year && month
22
+ endpoint = "/dates/#{year}/#{month}"
23
+ elsif year && month.nil?
24
+ endpoint = "/dates/#{year}"
25
+ else
26
+ endpoint = "/dates"
27
+ end
28
+
29
+ mashup(self.class.get(endpoint, :query => options.merge(self.default_options)))
30
+ end
31
+
32
+ def booklists(options={})
33
+ year = options.delete(:year)
34
+ month = options.delete(:month)
35
+ date = options.delete(:date)
36
+
37
+ if year && month && date
38
+ endpoint = "/booklists/#{year}/#{month}/#{date}"
39
+ elsif year && month.nil? && date.nil?
40
+ endpoint = "/booklists/#{year}"
41
+ elsif month && year && date.nil?
42
+ endpoint = "/booklists/#{year}/#{month}"
43
+ else
44
+ endpoint = "/booklists"
45
+ end
46
+
47
+ mashup(self.class.get(endpoint, :query => options.merge(self.default_options)))
48
+ end
49
+
50
+ def categories(options={})
51
+ mashup(self.class.get("/categories", :query => options.merge(self.default_options)))
52
+ end
53
+
54
+ def classes(options={})
55
+ mashup(self.class.get("/classes", :query => options.merge(self.default_options)))
56
+ end
57
+
58
+ def titles(options={})
59
+ title = options.delete(:title)
60
+ isbn = options.delete(:isbn)
61
+
62
+ if title
63
+ endpoint = "/titles/#{title}"
64
+ elsif isbn
65
+ endpoint = "/titles/#{isbn}"
66
+ else
67
+ endpoint = "/titles"
68
+ end
69
+
70
+ mashup(self.class.get(endpoint, :query => options.merge(self.default_options)))
71
+ end
72
+
73
+ protected
74
+
75
+ def default_options
76
+ { :api_key => @api_key, :encoding => "json" }
77
+ end
78
+
79
+ def mashup(response)
80
+ case response.code
81
+ when 200
82
+ if response.is_a?(Hash)
83
+ Hashie::Mash.new(response)
84
+ else
85
+ if response.first.is_a?(Hash)
86
+ response.map{|item| Hashie::Mash.new(item)}
87
+ else
88
+ response
89
+ end
90
+ end
91
+ end
92
+ end
93
+ end
94
+ end
@@ -0,0 +1,3 @@
1
+ module UsaTodayBooks
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+ require 'rspec'
4
+ require 'vcr_setup'
5
+ require 'usa_today_books'
6
+
7
+ RSpec.configure do |config|
8
+ config.extend VCR::RSpec::Macros
9
+ end
@@ -0,0 +1,70 @@
1
+ require 'spec_helper'
2
+
3
+ describe UsaTodayBooks::BestSellers do
4
+
5
+ context '#dates' do
6
+ use_vcr_cassette 'dates'
7
+
8
+ it 'should initialize with an api_key' do
9
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
10
+ @client.api_key.should == "foobar"
11
+ end
12
+
13
+ it 'should request dates' do
14
+
15
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
16
+ @books = @client.dates()
17
+ @books["BookListDates"].first["BookListAPIUrl"].should == "BookLists/2011/7/28"
18
+ end
19
+
20
+ it 'should request dates with params' do
21
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
22
+ @books = @client.dates(:minyear => 2009, :maxyear => 2010)
23
+ @books["BookListDates"].first["BookListAPIUrl"].should == "BookLists/2010/12/30"
24
+ end
25
+
26
+ it 'should request dates with params' do
27
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
28
+ @books = @client.dates(:year => 2008)
29
+ @books["BookListDates"].first["BookListAPIUrl"].should == "BookLists/2008/12/25"
30
+ end
31
+ end
32
+
33
+ context '#booklists' do
34
+ use_vcr_cassette 'booklists'
35
+ it 'should request booklists' do
36
+
37
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
38
+ @books = @client.booklists(:year => 2011, :month => 5, :date => 12)
39
+ @books["BookLists"].first["BookListEntries"].first["Author"].should == "Charlaine Harris"
40
+ end
41
+ end
42
+
43
+ context '#categories' do
44
+ use_vcr_cassette 'categories'
45
+ it 'should request categories' do
46
+
47
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
48
+ @books = @client.categories(:title => "Harry Potter")
49
+ @books["Categories"].first["CategoryName"].should == "Youth"
50
+ end
51
+ end
52
+
53
+ context '#titles' do
54
+ use_vcr_cassette 'titles'
55
+ it 'should request titles' do
56
+
57
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
58
+ @books = @client.titles(:author => "J.K. Rowling")
59
+ @books["Titles"].first["Title"].should == "Fantastic Beasts & Where to Find Them"
60
+ end
61
+
62
+ use_vcr_cassette 'titles_with_isbn'
63
+ it 'should request titles by isbn' do
64
+
65
+ @client = UsaTodayBooks::BestSellers.new(:api_key => "foobar")
66
+ @books = @client.titles(:isbn => "9780545010221")
67
+ @books["Title"]["BookListAppearances"].should == 78
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,59 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://api.usatoday.com:80/open/bestsellers/books/booklists/2011/5/12?api_key=foobar&encoding=json
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ p3p:
14
+ - CP="CAO CUR ADM DEVa TAIi PSAa PSDa CONi OUR OTRi IND PHY ONL UNI COM NAV DEM", POLICYREF="URI"
15
+ x-aspnet-version:
16
+ - 2.0.50727
17
+ content-type:
18
+ - application/json; charset=utf-8
19
+ date:
20
+ - Tue, 02 Aug 2011 19:12:05 GMT
21
+ server:
22
+ - Microsoft-IIS/7.5
23
+ x-mashery-responder:
24
+ - proxyworker-i-4e75c627.mashery.com
25
+ content-length:
26
+ - "66142"
27
+ accept-ranges:
28
+ - bytes
29
+ cache-control:
30
+ - private
31
+ body: "{\"APIParameters\":{\"ISBN\":\"\",\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"12\",\"MinYear\":\"\",\"MaxYear\":\"\",\"Title\":\"\",\"Author\":\"\",\"Category\":\"\",\"Class\":\"\",\"ExcludeCurrentWeek\":\"true\",\"RecentWeekAllowance\":\"24\",\"Count\":0},\"BookLists\":[{\"BookListEntries\":[{\"Rank\":1,\"Title\":\"Dead Reckoning\",\"TitleAPIUrl\":\"/Titles/9780441020317\",\"ISBN\":\"9780441020317\",\"ASIN\":\"0441020313\",\"Author\":\"Charlaine Harris\",\"BriefDescription\":\"Sookie Stackhouse witnesses the firebombing of Merlotte\\u0027s but family drama keeps her from investigating; 11th in series (F) (H)\",\"RankLastWeek\":124,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780441020317\",\"Name\":\"Hardcover\",\"Publisher\":\"Ace\"},\"Class\":\"Fiction\"},{\"Rank\":2,\"Title\":\"The Throne of Fire\",\"TitleAPIUrl\":\"/Titles/9781423140566\",\"ISBN\":\"9781423140566\",\"ASIN\":\"1423140567\",\"Author\":\"Rick Riordan\",\"BriefDescription\":\"Youth: Carter Kane and his sister Sadie continue their quest to save the world; second in series (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9781423140566\",\"Name\":\"Hardcover\",\"Publisher\":\"Disney-Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":3,\"Title\":\"10th Anniversary\",\"TitleAPIUrl\":\"/Titles/9780316036269\",\"ISBN\":\"9780316036269\",\"ASIN\":\"0316036269\",\"Author\":\"James Patterson, Maxine Paetro\",\"BriefDescription\":\"Members of the Women\\u0027s Murder Club juggle criminal investigation, murder prosecution and family drama (F) (H)\",\"RankLastWeek\":83,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780316036269\",\"Name\":\"Hardcover\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":4,\"Title\":\"Water for Elephants\",\"TitleAPIUrl\":\"/Titles/9781616200817\",\"ISBN\":\"9781616200817\",\"ASIN\":\"1565125606\",\"Author\":\"Sara Gruen\",\"BriefDescription\":\"Love, drama in a circus in the 1930s (F) (E)\",\"RankLastWeek\":1,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781616200817\",\"Name\":\"E-book\",\"Publisher\":\"Algonquin\"},\"Class\":\"Fiction\"},{\"Rank\":5,\"Title\":\"Heaven Is for Real\",\"TitleAPIUrl\":\"/Titles/9780849946158\",\"ISBN\":\"9780849946158\",\"ASIN\":\"0849946158\",\"Author\":\"Todd Burpo with Lynn Vincent\",\"BriefDescription\":\"Subtitle: \\\"A Little Boy\\u0027s Astounding Story of His Trip to Heaven and Back\\\" (NF) (P)\",\"RankLastWeek\":2,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9780849946158\",\"Name\":\"Paperback\",\"Publisher\":\"Thomas Nelson\"},\"Class\":\"NonFiction\"},{\"Rank\":6,\"Title\":\"Something Borrowed\",\"TitleAPIUrl\":\"/Titles/9781429904605\",\"ISBN\":\"9781429904605\",\"ASIN\":\"0312321198\",\"Author\":\"Emily Giffin\",\"BriefDescription\":\"Young attorney falls for her best friend\\u0027s fianc\xC3\xA9 (F) (E)\",\"RankLastWeek\":3,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781429904605\",\"Name\":\"E-book\",\"Publisher\":\"St. Martin\\u0027s Press\"},\"Class\":\"Fiction\"},{\"Rank\":7,\"Title\":\"Does the Noise in My Head Bother You?\",\"TitleAPIUrl\":\"/Titles/9780061767890\",\"ISBN\":\"9780061767890\",\"ASIN\":\"0061767891\",\"Author\":\"Steven Tyler\",\"BriefDescription\":\"Memoir from the lead singer of Aerosmith and current judge on American Idol (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780061767890\",\"Name\":\"Hardcover\",\"Publisher\":\"Ecco\"},\"Class\":\"NonFiction\"},{\"Rank\":8,\"Title\":\"Bossypants\",\"TitleAPIUrl\":\"/Titles/9780316056861\",\"ISBN\":\"9780316056861\",\"ASIN\":\"0316056863\",\"Author\":\"Tina Fey\",\"BriefDescription\":\"The comedy writer and star of 30 Rock riffs on her life and career (NF) (H)\",\"RankLastWeek\":4,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780316056861\",\"Name\":\"Hardcover\",\"Publisher\":\"Reagan Arthur\"},\"Class\":\"NonFiction\"},{\"Rank\":9,\"Title\":\"The Help\",\"TitleAPIUrl\":\"/Titles/9780425232200\",\"ISBN\":\"9780425232200\",\"ASIN\":\"0425232204\",\"Author\":\"Kathryn Stockett\",\"BriefDescription\":\"A young white woman tells the story of black maids in 1960s Mississippi (F) (P)\",\"RankLastWeek\":5,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780425232200\",\"Name\":\"Paperback\",\"Publisher\":\"Penguin Group\"},\"Class\":\"Fiction\"},{\"Rank\":10,\"Title\":\"The Dukan Diet\",\"TitleAPIUrl\":\"/Titles/9780307887962\",\"ISBN\":\"9780307887962\",\"ASIN\":\"0307887960\",\"Author\":\"Pierre Dukan\",\"BriefDescription\":\"Subtitle: \\\"2 Steps to Lose the Weight, 2 Steps to Keep It Off Forever\\\" (NF) (H)\",\"RankLastWeek\":15,\"Category\":{\"CategoryID\":242,\"CategoryName\":\"Diet/Health\"},\"Format\":{\"ISBN\":\"9780307887962\",\"Name\":\"Hardcover\",\"Publisher\":\"Crown Archetype\"},\"Class\":\"NonFiction\"},{\"Rank\":11,\"Title\":\"The Search\",\"TitleAPIUrl\":\"/Titles/9780515149487\",\"ISBN\":\"9780515149487\",\"ASIN\":\"0515149489\",\"Author\":\"Nora Roberts\",\"BriefDescription\":\"The past comes back to haunt dog trainer Fiona Bristow, the lone survivor of a serial killer (F) (P)\",\"RankLastWeek\":9,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780515149487\",\"Name\":\"Paperback\",\"Publisher\":\"Jove\"},\"Class\":\"Fiction\"},{\"Rank\":12,\"Title\":\"Stories I Only Tell My Friends: An Autobiography\",\"TitleAPIUrl\":\"/Titles/9780805093292\",\"ISBN\":\"9780805093292\",\"ASIN\":\"080509329X\",\"Author\":\"Rob Lowe\",\"BriefDescription\":\"TV actor and heartthrob writes his autobiography (NF) (H)\",\"RankLastWeek\":18,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780805093292\",\"Name\":\"Hardcover\",\"Publisher\":\"Henry Holt\"},\"Class\":\"NonFiction\"},{\"Rank\":13,\"Title\":\"The Sixth Man\",\"TitleAPIUrl\":\"/Titles/9780446573078\",\"ISBN\":\"9780446573078\",\"ASIN\":\"0446573108\",\"Author\":\"David Baldacci\",\"BriefDescription\":\"Private investigators Sean King and Michelle Maxwell must prove whether an alleged serial killer is responsible for a series of deaths (F) (E)\",\"RankLastWeek\":6,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780446573078\",\"Name\":\"E-book\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"Fiction\"},{\"Rank\":14,\"Title\":\"Moonlight Cove\",\"TitleAPIUrl\":\"/Titles/9780778329794\",\"ISBN\":\"9780778329794\",\"ASIN\":\"0778329798\",\"Author\":\"Sherryl Woods\",\"BriefDescription\":\"A young woman with ADD tries to focus on possible love with a childhood friend (F) (P)\",\"RankLastWeek\":8,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780778329794\",\"Name\":\"Paperback\",\"Publisher\":\"MIRA\"},\"Class\":\"Fiction\"},{\"Rank\":15,\"Title\":\"Hannah\\u0027s List\",\"TitleAPIUrl\":\"/Titles/9780778329299\",\"ISBN\":\"9780778329299\",\"ASIN\":\"0778329291\",\"Author\":\"Debbie Macomber\",\"BriefDescription\":\"A widower receives a letter from his late wife one year after her death asking him to remarry (F) (P)\",\"RankLastWeek\":20,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780778329299\",\"Name\":\"Paperback\",\"Publisher\":\"MIRA\"},\"Class\":\"Fiction\"},{\"Rank\":16,\"Title\":\"From This Moment On\",\"TitleAPIUrl\":\"/Titles/9781451620740\",\"ISBN\":\"9781451620740\",\"ASIN\":\"1451620748\",\"Author\":\"Shania Twain\",\"BriefDescription\":\"Memoir: The singer writes about pivotal events in her life (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9781451620740\",\"Name\":\"Hardcover\",\"Publisher\":\"Atria\"},\"Class\":\"NonFiction\"},{\"Rank\":17,\"Title\":\"The Hunger Games\",\"TitleAPIUrl\":\"/Titles/9780439023528\",\"ISBN\":\"9780439023528\",\"ASIN\":\"0439023521\",\"Author\":\"Suzanne Collins\",\"BriefDescription\":\"Youth: Girl takes sister\\u0027s place in a real-world survivor game in a post-apocalyptic USA (F) (P)\",\"RankLastWeek\":14,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780439023528\",\"Name\":\"Paperback\",\"Publisher\":\"Scholastic Press\"},\"Class\":\"Fiction\"},{\"Rank\":18,\"Title\":\"A Game of Thrones\",\"TitleAPIUrl\":\"/Titles/9780553897845\",\"ISBN\":\"9780553897845\",\"ASIN\":\"0553573403\",\"Author\":\"George R.R. Martin\",\"BriefDescription\":\"Trouble and coldness descend on a kingdom where the seasons are out of balance; book one in series (F) (E)\",\"RankLastWeek\":12,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780553897845\",\"Name\":\"E-book\",\"Publisher\":\"Spectra\"},\"Class\":\"Fiction\"},{\"Rank\":19,\"Title\":\"The Lincoln Lawyer\",\"TitleAPIUrl\":\"/Titles/9780759514713\",\"ISBN\":\"9780759514713\",\"ASIN\":\"1455500232\",\"Author\":\"Michael Connelly\",\"BriefDescription\":\"Attorney gets his first high-paying client, trouble starts; movie (F) (E)\",\"RankLastWeek\":13,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780759514713\",\"Name\":\"E-book\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":20,\"Title\":\"No Time Left\",\"TitleAPIUrl\":\"/Titles/9781455504398\",\"ISBN\":\"9781455504398\",\"ASIN\":\"B004LB4FBE\",\"Author\":\"David Baldacci\",\"BriefDescription\":\"A short story about an expert assassin taking on a mysterious assignment (F) (E)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781455504398\",\"Name\":\"E-book\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"Fiction\"},{\"Rank\":21,\"Title\":\"Worth Dying For\",\"TitleAPIUrl\":\"/Titles/9780440246299\",\"ISBN\":\"9780440246299\",\"ASIN\":\"0440246296\",\"Author\":\"Lee Child\",\"BriefDescription\":\"Jack Reacher gets involved in a decades-old missing-child case (F) (P)\",\"RankLastWeek\":19,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780440246299\",\"Name\":\"Paperback\",\"Publisher\":\"Dell\"},\"Class\":\"Fiction\"},{\"Rank\":22,\"Title\":\"If You Ask Me (and of Course You Won\\u0027t)\",\"TitleAPIUrl\":\"/Titles/9780399157530\",\"ISBN\":\"9780399157530\",\"ASIN\":\"0399157530\",\"Author\":\"Betty White\",\"BriefDescription\":\"The popular actress shares advice on friendship, love, aging and more (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780399157530\",\"Name\":\"Hardcover\",\"Publisher\":\"Putnam Adult\"},\"Class\":\"NonFiction\"},{\"Rank\":23,\"Title\":\"Something Blue\",\"TitleAPIUrl\":\"/Titles/9781429904629\",\"ISBN\":\"9781429904629\",\"ASIN\":\"0312323867\",\"Author\":\"Emily Giffin\",\"BriefDescription\":\"Darcy\\u0027s perfect world turns upside down (F) (E)\",\"RankLastWeek\":37,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781429904629\",\"Name\":\"E-book\",\"Publisher\":\"St. Martin\\u0027s Press\"},\"Class\":\"Fiction\"},{\"Rank\":24,\"Title\":\"Storm Prey\",\"TitleAPIUrl\":\"/Titles/9780425241448\",\"ISBN\":\"9780425241448\",\"ASIN\":\"0425241440\",\"Author\":\"John Sandford\",\"BriefDescription\":\"Lucas Davenport\\u0027s surgeon wife is key witness in pharmacy robbery/murder; 20th in series (F) (P)\",\"RankLastWeek\":33,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780425241448\",\"Name\":\"Paperback\",\"Publisher\":\"Berkley\"},\"Class\":\"Fiction\"},{\"Rank\":25,\"Title\":\"The 17 Day Diet\",\"TitleAPIUrl\":\"/Titles/9781451648652\",\"ISBN\":\"9781451648652\",\"ASIN\":\"1451648650\",\"Author\":\"Mike Moreno\",\"BriefDescription\":\"Subtitle: \\\"A Doctor\\u0027s Plan Designed for Rapid Results\\\" (NF) (H)\",\"RankLastWeek\":17,\"Category\":{\"CategoryID\":242,\"CategoryName\":\"Diet/Health\"},\"Format\":{\"ISBN\":\"9781451648652\",\"Name\":\"Hardcover\",\"Publisher\":\"Free Press\"},\"Class\":\"NonFiction\"},{\"Rank\":26,\"Title\":\"Savage Nature\",\"TitleAPIUrl\":\"/Titles/9780515149333\",\"ISBN\":\"9780515149333\",\"ASIN\":\"0515149330\",\"Author\":\"Christine Feehan\",\"BriefDescription\":\"Paranormal romance: Leopard shifter Drake Donavan investigates a murder in the Louisiana bayou (F) (P)\",\"RankLastWeek\":7,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780515149333\",\"Name\":\"Paperback\",\"Publisher\":\"Jove\"},\"Class\":\"Fiction\"},{\"Rank\":27,\"Title\":\"Ragged Rainbows\",\"TitleAPIUrl\":\"/Titles/9780373184897\",\"ISBN\":\"9780373184897\",\"ASIN\":\"1551664674\",\"Author\":\"Linda Lael Miller\",\"BriefDescription\":\"Contains the stories \\\"Ragged Rainbows\\\" and \\\"The Miracle Baby\\\" (F) (P)\",\"RankLastWeek\":31,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373184897\",\"Name\":\"Paperback\",\"Publisher\":\"Harlequin Special Releases\"},\"Class\":\"Fiction\"},{\"Rank\":28,\"Title\":\"Catching Fire\",\"TitleAPIUrl\":\"/Titles/9780545227247\",\"ISBN\":\"9780545227247\",\"ASIN\":\"0439023491\",\"Author\":\"Suzanne Collins\",\"BriefDescription\":\"Youth: Katniss and Peeta are targeted as rebels after winning the Hunger Games; second in series (F) (E)\",\"RankLastWeek\":24,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780545227247\",\"Name\":\"E-book\",\"Publisher\":\"Scholastic\"},\"Class\":\"Fiction\"},{\"Rank\":29,\"Title\":\"Chasing Fire\",\"TitleAPIUrl\":\"/Titles/9780399157448\",\"ISBN\":\"9780399157448\",\"ASIN\":\"0399157441\",\"Author\":\"Nora Roberts\",\"BriefDescription\":\"A second-generation firefighter and smoke jumper meets her match (F) (H)\",\"RankLastWeek\":28,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780399157448\",\"Name\":\"Hardcover\",\"Publisher\":\"Putnam Adult\"},\"Class\":\"Fiction\"},{\"Rank\":30,\"Title\":\"A Turn in the Road\",\"TitleAPIUrl\":\"/Titles/9780778329831\",\"ISBN\":\"9780778329831\",\"ASIN\":\"0778329836\",\"Author\":\"Debbie Macomber\",\"BriefDescription\":\"Three generations of women take a road trip across America in search of something new (F) (H)\",\"RankLastWeek\":22,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780778329831\",\"Name\":\"Hardcover\",\"Publisher\":\"MIRA\"},\"Class\":\"Fiction\"},{\"Rank\":31,\"Title\":\"Mockingjay\",\"TitleAPIUrl\":\"/Titles/9780545317801\",\"ISBN\":\"9780545317801\",\"ASIN\":\"0439023513\",\"Author\":\"Suzanne Collins\",\"BriefDescription\":\"Youth: Katniss must give herself completely to the rebellion in order for it to succeed; final in series (F) (E)\",\"RankLastWeek\":29,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780545317801\",\"Name\":\"E-book\",\"Publisher\":\"Scholastic\"},\"Class\":\"Fiction\"},{\"Rank\":32,\"Title\":\"Sixkill\",\"TitleAPIUrl\":\"/Titles/9780399157264\",\"ISBN\":\"9780399157264\",\"ASIN\":\"0399157263\",\"Author\":\"Robert B. Parker\",\"BriefDescription\":\"PI Spenser investigates the rape and murder of a young woman (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780399157264\",\"Name\":\"Hardcover\",\"Publisher\":\"Putnam Adult\"},\"Class\":\"Fiction\"},{\"Rank\":33,\"Title\":\"Unbroken\",\"TitleAPIUrl\":\"/Titles/9781400064168\",\"ISBN\":\"9781400064168\",\"ASIN\":\"1400064163\",\"Author\":\"Laura Hillenbrand\",\"BriefDescription\":\"Subtitle: \\\"A World War II Story of Survival, Resilience, and Redemption\\\" (NF) (H)\",\"RankLastWeek\":34,\"Category\":{\"CategoryID\":252,\"CategoryName\":\"History\"},\"Format\":{\"ISBN\":\"9781400064168\",\"Name\":\"Hardcover\",\"Publisher\":\"Random House\"},\"Class\":\"NonFiction\"},{\"Rank\":34,\"Title\":\"I\\u0027ll Walk Alone\",\"TitleAPIUrl\":\"/Titles/9781439180969\",\"ISBN\":\"9781439180969\",\"ASIN\":\"1439180962\",\"Author\":\"Mary Higgins Clark\",\"BriefDescription\":\"An interior designer, the victim of identity theft, is accused of kidnapping her missing son (F) (H)\",\"RankLastWeek\":32,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781439180969\",\"Name\":\"Hardcover\",\"Publisher\":\"Simon & Schuster\"},\"Class\":\"Fiction\"},{\"Rank\":35,\"Title\":\"The Fifth Witness\",\"TitleAPIUrl\":\"/Titles/9780316069380\",\"ISBN\":\"9780316069380\",\"ASIN\":\"0316069353\",\"Author\":\"Michael Connelly\",\"BriefDescription\":\"Defense attorney Mickey Haller represents a woman in foreclosure accused of killing her banker (F) (E)\",\"RankLastWeek\":23,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780316069380\",\"Name\":\"E-book\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":36,\"Title\":\"The 9th Judgment\",\"TitleAPIUrl\":\"/Titles/9780446565509\",\"ISBN\":\"9780446565509\",\"ASIN\":\"0446565504\",\"Author\":\"James Patterson\",\"BriefDescription\":\"The Women\\u0027s Murder Club investigates two murders; ninth in series (F) (P)\",\"RankLastWeek\":40,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780446565509\",\"Name\":\"Paperback\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"Fiction\"},{\"Rank\":37,\"Title\":\"Chasing the Night\",\"TitleAPIUrl\":\"/Titles/9780312651251\",\"ISBN\":\"9780312651251\",\"ASIN\":\"0312651198\",\"Author\":\"Iris Johansen\",\"BriefDescription\":\"Eve Duncan uses her talents as a forensic sculptor to unite a mother and child (F) (P)\",\"RankLastWeek\":21,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780312651251\",\"Name\":\"Paperback\",\"Publisher\":\"St. Martin\\u0027s Press\"},\"Class\":\"Fiction\"},{\"Rank\":38,\"Title\":\"City of Fallen Angels\",\"TitleAPIUrl\":\"/Titles/9781442403543\",\"ISBN\":\"9781442403543\",\"ASIN\":\"1442403543\",\"Author\":\"Cassandra Clare\",\"BriefDescription\":\"Paranormal: Shadowhunter-in-training Clary Fray unknowingly sets in motion a chain of events that could lead to war (F) (H)\",\"RankLastWeek\":27,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781442403543\",\"Name\":\"Hardcover\",\"Publisher\":\"Margaret K. McElderry\"},\"Class\":\"Fiction\"},{\"Rank\":39,\"Title\":\"The Land of Painted Caves\",\"TitleAPIUrl\":\"/Titles/9780517580516\",\"ISBN\":\"9780517580516\",\"ASIN\":\"0517580519\",\"Author\":\"Jean M. Auel\",\"BriefDescription\":\"The Ice Age-era story of Ayla as she struggles to balance her duties as a mother with her training to become a spiritual leader and healer; final in series (F) (H)\",\"RankLastWeek\":38,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780517580516\",\"Name\":\"Hardcover\",\"Publisher\":\"Crown\"},\"Class\":\"Fiction\"},{\"Rank\":40,\"Title\":\"20 Years Younger\",\"TitleAPIUrl\":\"/Titles/9780316133784\",\"ISBN\":\"9780316133784\",\"ASIN\":\"0316133787\",\"Author\":\"Bob Greene, Harold A. Lancer, Ronald L. Kotler, Diane L. McKay\",\"BriefDescription\":\"Subtitle: \\\"Look Younger, Feel Younger, Be Younger!\\\" (NF) (H)\",\"RankLastWeek\":11,\"Category\":{\"CategoryID\":242,\"CategoryName\":\"Diet/Health\"},\"Format\":{\"ISBN\":\"9780316133784\",\"Name\":\"Hardcover\",\"Publisher\":\"Little, Brown\"},\"Class\":\"NonFiction\"},{\"Rank\":41,\"Title\":\"When You Dare\",\"TitleAPIUrl\":\"/Titles/9780373775712\",\"ISBN\":\"9780373775712\",\"ASIN\":\"0373775717\",\"Author\":\"Lori Foster\",\"BriefDescription\":\"A woman hires a professional mercenary to track down the men who kidnapped her (F) (P)\",\"RankLastWeek\":36,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373775712\",\"Name\":\"Paperback\",\"Publisher\":\"HQN\"},\"Class\":\"Fiction\"},{\"Rank\":42,\"Title\":\"The Girl Who Kicked the Hornet\\u0027s Nest\",\"TitleAPIUrl\":\"/Titles/9780307593672\",\"ISBN\":\"9780307593672\",\"ASIN\":\"030726999X\",\"Author\":\"Stieg Larsson\",\"BriefDescription\":\"Lisbeth Salander is accused of murder and turns to friend and journalist Mikael Blomkvist to help prove her innocence; final in series (F) (E)\",\"RankLastWeek\":10,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780307593672\",\"Name\":\"E-book\",\"Publisher\":\"Knopf\"},\"Class\":\"Fiction\"},{\"Rank\":43,\"Title\":\"44 Charles Street\",\"TitleAPIUrl\":\"/Titles/9780385343145\",\"ISBN\":\"9780385343145\",\"ASIN\":\"0385343140\",\"Author\":\"Danielle Steel\",\"BriefDescription\":\"Strangers go from roommates to friends and then family in a New York brownstone (F) (H)\",\"RankLastWeek\":47,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780385343145\",\"Name\":\"Hardcover\",\"Publisher\":\"Delacorte\"},\"Class\":\"Fiction\"},{\"Rank\":44,\"Title\":\"The Girl With the Dragon Tattoo\",\"TitleAPIUrl\":\"/Titles/9780307272119\",\"ISBN\":\"9780307272119\",\"ASIN\":\"0307454541\",\"Author\":\"Stieg Larsson\",\"BriefDescription\":\"Journalist is hired to investigate the disappearance of an heir to a wealthy family (F) (E)\",\"RankLastWeek\":46,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780307272119\",\"Name\":\"E-book\",\"Publisher\":\"Vintage\"},\"Class\":\"Fiction\"},{\"Rank\":45,\"Title\":\"The Girl Who Played With Fire\",\"TitleAPIUrl\":\"/Titles/9780307272300\",\"ISBN\":\"9780307272300\",\"ASIN\":\"030745455X\",\"Author\":\"Stieg Larsson\",\"BriefDescription\":\"An Eastern European sex-trafficking ring involving prominent Swedes propels this sequel to The Girl With the Dragon Tattoo (F) (E)\",\"RankLastWeek\":44,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780307272300\",\"Name\":\"E-book\",\"Publisher\":\"Knopf Doubleday\"},\"Class\":\"Fiction\"},{\"Rank\":46,\"Title\":\"Oh, the Places You\\u0027ll Go!\",\"TitleAPIUrl\":\"/Titles/9780679805274\",\"ISBN\":\"9780679805274\",\"ASIN\":\"0679805273\",\"Author\":\"Dr. Seuss\",\"BriefDescription\":\"Dr. Seuss\\u0027 advice on life is a favorite for graduations (F) (H)\",\"RankLastWeek\":66,\"Category\":{\"CategoryID\":150,\"CategoryName\":\"Children\"},\"Format\":{\"ISBN\":\"9780679805274\",\"Name\":\"Hardcover\",\"Publisher\":\"Random House\"},\"Class\":\"Fiction\"},{\"Rank\":47,\"Title\":\"The Shadow of Your Smile\",\"TitleAPIUrl\":\"/Titles/9781439180983\",\"ISBN\":\"9781439180983\",\"ASIN\":\"1439180989\",\"Author\":\"Mary Higgins Clark\",\"BriefDescription\":\"A family secret threatens to emerge and affect the life of an unsuspecting heiress (F) (P)\",\"RankLastWeek\":39,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781439180983\",\"Name\":\"Paperback\",\"Publisher\":\"Pocket\"},\"Class\":\"Fiction\"},{\"Rank\":48,\"Title\":\"She Walks in Beauty\",\"TitleAPIUrl\":\"/Titles/9781401341459\",\"ISBN\":\"9781401341459\",\"ASIN\":\"1401341454\",\"Author\":\"Caroline Kennedy\",\"BriefDescription\":\"Subtitle: \\\"A Woman\\u0027s Journey Through Poems\\\" (F) (H)\",\"RankLastWeek\":214,\"Category\":{\"CategoryID\":221,\"CategoryName\":\"Literature/Poetry/Drama/Art\"},\"Format\":{\"ISBN\":\"9781401341459\",\"Name\":\"Hardcover\",\"Publisher\":\"Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":49,\"Title\":\"The Paris Wife: A Novel\",\"TitleAPIUrl\":\"/Titles/9780345521323\",\"ISBN\":\"9780345521323\",\"ASIN\":\"0345521307\",\"Author\":\"Paula McLain\",\"BriefDescription\":\"Hadley Richardson, Ernest Hemingway\\u0027s first wife, tells her story (F) (E)\",\"RankLastWeek\":42,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780345521323\",\"Name\":\"E-book\",\"Publisher\":\"Ballantine\"},\"Class\":\"Fiction\"},{\"Rank\":50,\"Title\":\"The Immortal Life of Henrietta Lacks\",\"TitleAPIUrl\":\"/Titles/9781400052189\",\"ISBN\":\"9781400052189\",\"ASIN\":\"1400052181\",\"Author\":\"Rebecca Skloot\",\"BriefDescription\":\"The story of a Virginia tobacco farmer whose tissue cells became essential in creating the polio vaccine (NF) (P)\",\"RankLastWeek\":53,\"Category\":{\"CategoryID\":252,\"CategoryName\":\"History\"},\"Format\":{\"ISBN\":\"9781400052189\",\"Name\":\"Paperback\",\"Publisher\":\"Broadway\"},\"Class\":\"Fiction\"},{\"Rank\":51,\"Title\":\"A Clash of Kings\",\"TitleAPIUrl\":\"/Titles/9780553897852\",\"ISBN\":\"9780553897852\",\"ASIN\":\"0553381695\",\"Author\":\"George R.R. Martin\",\"BriefDescription\":\"Factions struggle to gain control of a divided land; book two in \\\"A Song of Ice and Fire\\\" series (F) (E)\",\"RankLastWeek\":50,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780553897852\",\"Name\":\"E-book\",\"Publisher\":\"Bantam\"},\"Class\":\"Fiction\"},{\"Rank\":52,\"Title\":\"Any Man of Mine\",\"TitleAPIUrl\":\"/Titles/9780061579110\",\"ISBN\":\"9780061579110\",\"ASIN\":\"0061579114\",\"Author\":\"Rachel Gibson\",\"BriefDescription\":\"On vacation in Las Vegas, Autumn Haven wakes up to find she is a married woman (F) (P)\",\"RankLastWeek\":26,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780061579110\",\"Name\":\"Paperback\",\"Publisher\":\"Avon\"},\"Class\":\"Fiction\"},{\"Rank\":53,\"Title\":\"Cutting for Stone: A Novel\",\"TitleAPIUrl\":\"/Titles/9780375714368\",\"ISBN\":\"9780375714368\",\"ASIN\":\"0375414495\",\"Author\":\"Abraham Verghese\",\"BriefDescription\":\"A 50-year epic that begins with the birth of conjoined twins to an Indian nun in 1950s Ethiopia (F) (P)\",\"RankLastWeek\":54,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780375714368\",\"Name\":\"Paperback\",\"Publisher\":\"Vintage\"},\"Class\":\"Fiction\"},{\"Rank\":54,\"Title\":\"Fly Away Home\",\"TitleAPIUrl\":\"/Titles/9780743294287\",\"ISBN\":\"9780743294287\",\"ASIN\":\"0743294289\",\"Author\":\"Jennifer Weiner\",\"BriefDescription\":\"A politician\\u0027s wife, stung by a scandal, retreats to her grandmother\\u0027s seaside home in search of solace (F) (P)\",\"RankLastWeek\":85,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780743294287\",\"Name\":\"Paperback\",\"Publisher\":\"Washington Square Press\"},\"Class\":\"Fiction\"},{\"Rank\":55,\"Title\":\"Bel-Air Dead\",\"TitleAPIUrl\":\"/Titles/9780399157363\",\"ISBN\":\"9780399157363\",\"ASIN\":\"0399157360\",\"Author\":\"Stuart Woods\",\"BriefDescription\":\"Stone Barrington represents his ex after her husband dies and she inherits his estate (F) (H)\",\"RankLastWeek\":30,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780399157363\",\"Name\":\"Hardcover\",\"Publisher\":\"Putnam Adult\"},\"Class\":\"Fiction\"},{\"Rank\":56,\"Title\":\"Get Rich Click\",\"TitleAPIUrl\":\"/Titles/9780982769607\",\"ISBN\":\"9780982769607\",\"ASIN\":\"0982769601\",\"Author\":\"Marc Ostrofsky\",\"BriefDescription\":\"Subtitle: \\\"The Ultimate Guide to Making Money on the Internet\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":298,\"CategoryName\":\"Business\"},\"Format\":{\"ISBN\":\"9780982769607\",\"Name\":\"Hardcover\",\"Publisher\":\"Razor Media Group\"},\"Class\":\"NonFiction\"},{\"Rank\":57,\"Title\":\"George R.R. Martin\\u0027s A Game of Thrones\",\"TitleAPIUrl\":\"/Titles/9780345529053\",\"ISBN\":\"9780345529053\",\"ASIN\":\"0345529057\",\"Author\":\"George R.R. Martin\",\"BriefDescription\":\"Boxed set includes the first four volumes in the Game of Thrones series (F) (P)\",\"RankLastWeek\":80,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780345529053\",\"Name\":\"Paperback\",\"Publisher\":\"Bantam\"},\"Class\":\"Fiction\"},{\"Rank\":58,\"Title\":\"Ice Cold: A Rizzoli & Isles Novel\",\"TitleAPIUrl\":\"/Titles/9780345515490\",\"ISBN\":\"9780345515490\",\"ASIN\":\"0345515498\",\"Author\":\"Tess Gerritsen\",\"BriefDescription\":\"A Boston homicide detective investigates what appears to be the murder of her close friend (F) (P)\",\"RankLastWeek\":71,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780345515490\",\"Name\":\"Paperback\",\"Publisher\":\"Ballantine\"},\"Class\":\"Fiction\"},{\"Rank\":59,\"Title\":\"Nowhere Near Respectable: Lost Lords\",\"TitleAPIUrl\":\"/Titles/9781420117226\",\"ISBN\":\"9781420117226\",\"ASIN\":\"142011722X\",\"Author\":\"Mary Jo Putney\",\"BriefDescription\":\"Historical romance: A lady falls for the rogue who saved her from smugglers (F) (P)\",\"RankLastWeek\":48,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781420117226\",\"Name\":\"Paperback\",\"Publisher\":\"Zebra\"},\"Class\":\"Fiction\"},{\"Rank\":60,\"Title\":\"Lacy\",\"TitleAPIUrl\":\"/Titles/9780373776337\",\"ISBN\":\"9780373776337\",\"ASIN\":\"0373776330\",\"Author\":\"Diana Palmer\",\"BriefDescription\":\"A woman waits for her man who was sent to war only to find a stranger has returned (F) (P)\",\"RankLastWeek\":78,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373776337\",\"Name\":\"Paperback\",\"Publisher\":\"HQN\"},\"Class\":\"Fiction\"},{\"Rank\":61,\"Title\":\"That Perfect Someone\",\"TitleAPIUrl\":\"/Titles/9781439101087\",\"ISBN\":\"9781439101087\",\"ASIN\":\"B0048ELEWM\",\"Author\":\"Johanna Lindsey\",\"BriefDescription\":\"Historical romance: A gentleman in hiding and a lady looking for love find each other at a masquerade ball (F) (P)\",\"RankLastWeek\":43,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781439101087\",\"Name\":\"Paperback\",\"Publisher\":\"Pocket\"},\"Class\":\"Fiction\"},{\"Rank\":62,\"Title\":\"Dangerous in Diamonds\",\"TitleAPIUrl\":\"/Titles/9780515149340\",\"ISBN\":\"9780515149340\",\"ASIN\":\"0515149349\",\"Author\":\"Madeline Hunter\",\"BriefDescription\":\"Historical romance: A duke inherits a flower shop and falls for its mysterious owner (F) (P)\",\"RankLastWeek\":41,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780515149340\",\"Name\":\"Paperback\",\"Publisher\":\"Jove\"},\"Class\":\"Fiction\"},{\"Rank\":63,\"Title\":\"Bite Club\",\"TitleAPIUrl\":\"/Titles/9780451233189\",\"ISBN\":\"9780451233189\",\"ASIN\":\"0451233182\",\"Author\":\"Rachel Caine\",\"BriefDescription\":\"Youth: Claire Danvers investigates the latest craze in Morganville, vampires fighting each other online; 10th in Morganville Vampires series (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780451233189\",\"Name\":\"Hardcover\",\"Publisher\":\"NAL\"},\"Class\":\"Fiction\"},{\"Rank\":64,\"Title\":\"Diary of a Wimpy Kid: The Ugly Truth\",\"TitleAPIUrl\":\"/Titles/9780810984912\",\"ISBN\":\"9780810984912\",\"ASIN\":\"0810984911\",\"Author\":\"Jeff Kinney\",\"BriefDescription\":\"Youth: Greg learns to deal with boy-girl parties; fifth in series (F) (H)\",\"RankLastWeek\":52,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780810984912\",\"Name\":\"Hardcover\",\"Publisher\":\"Amulet Books\"},\"Class\":\"Fiction\"},{\"Rank\":65,\"Title\":\"The Family Jensen: Helltown Massacre\",\"TitleAPIUrl\":\"/Titles/9780786023516\",\"ISBN\":\"9780786023516\",\"ASIN\":\"0786023511\",\"Author\":\"William W. Johnstone with J.A. Johnstone\",\"BriefDescription\":\"Three generations of Jensens fight for each other\\u0027s survival (F) (P)\",\"RankLastWeek\":109,\"Category\":{\"CategoryID\":133,\"CategoryName\":\"Western\"},\"Format\":{\"ISBN\":\"9780786023516\",\"Name\":\"Paperback\",\"Publisher\":\"Pinnacle\"},\"Class\":\"Fiction\"},{\"Rank\":66,\"Title\":\"Hard Bitten: A Chicagoland Vampires Novel\",\"TitleAPIUrl\":\"/Titles/9781101514443\",\"ISBN\":\"9781101514443\",\"ASIN\":\"0451233328\",\"Author\":\"Chloe Neill\",\"BriefDescription\":\"Paranormal romance: Merit, a vampire protector, must calm tension in the supernatural community (F) (E)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781101514443\",\"Name\":\"E-book\",\"Publisher\":\"NAL\"},\"Class\":\"Fiction\"},{\"Rank\":67,\"Title\":\"Comanche Magic\",\"TitleAPIUrl\":\"/Titles/9780451233455\",\"ISBN\":\"9780451233455\",\"ASIN\":\"045123345X\",\"Author\":\"Catherine Anderson\",\"BriefDescription\":\"Paranormal romance: Comanche Chase Wolf falls for the seemingly innocent Franny (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780451233455\",\"Name\":\"Paperback\",\"Publisher\":\"Signet\"},\"Class\":\"Fiction\"},{\"Rank\":68,\"Title\":\"The Twilight Saga: The Official Illustrated Guide\",\"TitleAPIUrl\":\"/Titles/9780316043120\",\"ISBN\":\"9780316043120\",\"ASIN\":\"0316043125\",\"Author\":\"Stephenie Meyer\",\"BriefDescription\":\"Definitive encyclopedic reference to the Twilight Saga by the author (F) (H)\",\"RankLastWeek\":55,\"Category\":{\"CategoryID\":295,\"CategoryName\":\"Reference\"},\"Format\":{\"ISBN\":\"9780316043120\",\"Name\":\"Hardcover\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":69,\"Title\":\"Eve\",\"TitleAPIUrl\":\"/Titles/9781429920162\",\"ISBN\":\"9781429920162\",\"ASIN\":\"0312651201\",\"Author\":\"Iris Johansen\",\"BriefDescription\":\"A new case has forensic sculptor Eve Duncan dealing with her past and her own missing child (F) (E)\",\"RankLastWeek\":45,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781429920162\",\"Name\":\"E-book\",\"Publisher\":\"St. Martin\\u0027s Press\"},\"Class\":\"Fiction\"},{\"Rank\":70,\"Title\":\"Run for Your Life\",\"TitleAPIUrl\":\"/Titles/9781455501328\",\"ISBN\":\"9781455501328\",\"ASIN\":\"1455501328\",\"Author\":\"James Patterson, Michael Ledwidge\",\"BriefDescription\":\"Detective Michael Bennett tracks down a killer targeting New York\\u0027s arrogant elite (F) (P)\",\"RankLastWeek\":101,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781455501328\",\"Name\":\"Paperback\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"Fiction\"},{\"Rank\":71,\"Title\":\"Lone Survivor\",\"TitleAPIUrl\":\"/Titles/9780316007542\",\"ISBN\":\"9780316007542\",\"ASIN\":\"0316044695\",\"Author\":\"Marcus Luttrell, Patrick Robinson\",\"BriefDescription\":\"Subtitle: \\\"The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10\\\" (NF) (E)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":252,\"CategoryName\":\"History\"},\"Format\":{\"ISBN\":\"9780316007542\",\"Name\":\"E-book\",\"Publisher\":\"Little, Brown\"},\"Class\":\"NonFiction\"},{\"Rank\":72,\"Title\":\"Caleb\\u0027s Crossing\",\"TitleAPIUrl\":\"/Titles/9780670021048\",\"ISBN\":\"9780670021048\",\"ASIN\":\"0670021040\",\"Author\":\"Geraldine Brooks\",\"BriefDescription\":\"The story of Caleb, a Native American who graduated Harvard in 1665, as told by a young woman who knew him (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780670021048\",\"Name\":\"Hardcover\",\"Publisher\":\"Viking\"},\"Class\":\"Fiction\"},{\"Rank\":73,\"Title\":\"Dead By Morning\",\"TitleAPIUrl\":\"/Titles/9781420110357\",\"ISBN\":\"9781420110357\",\"ASIN\":\"1420110357\",\"Author\":\"Beverly Barton\",\"BriefDescription\":\"A security agent works and a profiler search for a serial killer (F) (P)\",\"RankLastWeek\":58,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781420110357\",\"Name\":\"Paperback\",\"Publisher\":\"Zebra\"},\"Class\":\"Fiction\"},{\"Rank\":74,\"Title\":\"A Visit From the Goon Squad\",\"TitleAPIUrl\":\"/Titles/9780307477477\",\"ISBN\":\"9780307477477\",\"ASIN\":\"0307477479\",\"Author\":\"Jennifer Egan\",\"BriefDescription\":\"A story of the intersecting lives of a record executive and his assistant (F) (E)\",\"RankLastWeek\":65,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780307477477\",\"Name\":\"Paperback\",\"Publisher\":\"Anchor\"},\"Class\":\"Fiction\"},{\"Rank\":75,\"Title\":\"My Lucky Life in and Out of Show Business\",\"TitleAPIUrl\":\"/Titles/9780307592231\",\"ISBN\":\"9780307592231\",\"ASIN\":\"0307592235\",\"Author\":\"Dick Van Dyke\",\"BriefDescription\":\"Memoir: The actor reflects on his life in show business (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780307592231\",\"Name\":\"Hardcover\",\"Publisher\":\"Crown Archetype\"},\"Class\":\"NonFiction\"},{\"Rank\":76,\"Title\":\"The Kane Chronicles, Book 1: The Red Pyramid\",\"TitleAPIUrl\":\"/Titles/9781423113386\",\"ISBN\":\"9781423113386\",\"ASIN\":\"1423113381\",\"Author\":\"Rick Riordan\",\"BriefDescription\":\"Youth: Modern-day siblings discover that the gods of ancient Egypt are back and not happy; first in series (F) (H)\",\"RankLastWeek\":152,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9781423113386\",\"Name\":\"Hardcover\",\"Publisher\":\"Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":77,\"Title\":\"Guy Fieri Food\",\"TitleAPIUrl\":\"/Titles/9780061894558\",\"ISBN\":\"9780061894558\",\"ASIN\":\"0061894559\",\"Author\":\"Guy Fieri\",\"BriefDescription\":\"Subtitle: \\\"Cookin\\u0027 It, Livin\\u0027 It, Lovin\\u0027 It\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":212,\"CategoryName\":\"Cookbooks\"},\"Format\":{\"ISBN\":\"9780061894558\",\"Name\":\"Hardcover\",\"Publisher\":\"William Morrow\"},\"Class\":\"NonFiction\"},{\"Rank\":78,\"Title\":\"Dead in the Family\",\"TitleAPIUrl\":\"/Titles/9780441020157\",\"ISBN\":\"9780441020157\",\"ASIN\":\"0441018645\",\"Author\":\"Charlaine Harris\",\"BriefDescription\":\"Sookie is healing from wounds suffered during the brutal Faery War; 10th in the Southern Vampire series (F) (P)\",\"RankLastWeek\":105,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780441020157\",\"Name\":\"Paperback\",\"Publisher\":\"Ace\"},\"Class\":\"Fiction\"},{\"Rank\":79,\"Title\":\"Heart of the Matter\",\"TitleAPIUrl\":\"/Titles/9780312554170\",\"ISBN\":\"9780312554170\",\"ASIN\":\"0312554176\",\"Author\":\"Emily Giffin\",\"BriefDescription\":\"The lives of two young mothers converge after a tragic accident (F) (P)\",\"RankLastWeek\":84,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780312554170\",\"Name\":\"Paperback\",\"Publisher\":\"St. Martin\\u0027s Griffin\"},\"Class\":\"Fiction\"},{\"Rank\":80,\"Title\":\"Robert Ludlum\\u0027s The Bourne Objective\",\"TitleAPIUrl\":\"/Titles/9780446539791\",\"ISBN\":\"9780446539791\",\"ASIN\":\"0446539791\",\"Author\":\"Eric Van Lustbader\",\"BriefDescription\":\"Jason Bourne hunts down the killers of a young woman from his past (F) (P)\",\"RankLastWeek\":102,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780446539791\",\"Name\":\"Paperback\",\"Publisher\":\"Vision\"},\"Class\":\"Fiction\"},{\"Rank\":81,\"Title\":\"The Unbearable Lightness of Dragons: A Novel of the Light Dragons\",\"TitleAPIUrl\":\"/Titles/9780451233448\",\"ISBN\":\"9780451233448\",\"ASIN\":\"0451233441\",\"Author\":\"Katie MacAlister\",\"BriefDescription\":\"Paranormal romance: Part-dragon Ysolde Bouchier is having trouble juggling her work and personal life (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780451233448\",\"Name\":\"Paperback\",\"Publisher\":\"Signet\"},\"Class\":\"Fiction\"},{\"Rank\":82,\"Title\":\"Love Wins\",\"TitleAPIUrl\":\"/Titles/9780062049643\",\"ISBN\":\"9780062049643\",\"ASIN\":\"006204964X\",\"Author\":\"Rob Bell\",\"BriefDescription\":\"Subtitle: \\\"A Book About Heaven, Hell, and the Fate of Every Person Who Ever Lived\\\" (NF) (H)\",\"RankLastWeek\":59,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9780062049643\",\"Name\":\"Hardcover\",\"Publisher\":\"HarperOne\"},\"Class\":\"NonFiction\"},{\"Rank\":83,\"Title\":\"Sing You Home\",\"TitleAPIUrl\":\"/Titles/9781439102725\",\"ISBN\":\"9781439102725\",\"ASIN\":\"1439102724\",\"Author\":\"Jodi Picoult\",\"BriefDescription\":\"Zoe, a music therapist, faces prejudice when she finds love with another woman (F) (H)\",\"RankLastWeek\":74,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781439102725\",\"Name\":\"Hardcover\",\"Publisher\":\"Atria\"},\"Class\":\"Fiction\"},{\"Rank\":84,\"Title\":\"Lost in Shangri-La\",\"TitleAPIUrl\":\"/Titles/9780062087140\",\"ISBN\":\"9780062087140\",\"ASIN\":\"0061988340\",\"Author\":\"Mitchell Zuckoff\",\"BriefDescription\":\"Subtitle: \\\"A True Story of Survival, Adventure, and the Most Incredible Rescue Mission of World War II\\\" (NF) (E)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":252,\"CategoryName\":\"History\"},\"Format\":{\"ISBN\":\"9780062087140\",\"Name\":\"E-book\",\"Publisher\":\"HarperCollins\"},\"Class\":\"NonFiction\"},{\"Rank\":85,\"Title\":\"Eleven Scandals to Start to Win a Duke\\u0027s Heart\",\"TitleAPIUrl\":\"/Titles/9780061852077\",\"ISBN\":\"9780061852077\",\"ASIN\":\"0061852074\",\"Author\":\"Sarah Maclean\",\"BriefDescription\":\"Historical romance: An English duke attempts to teach a reckless beauty to be proper (F) (P)\",\"RankLastWeek\":51,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780061852077\",\"Name\":\"Paperback\",\"Publisher\":\"Avon\"},\"Class\":\"Fiction\"},{\"Rank\":86,\"Title\":\"The Art of Racing in the Rain: A Novel\",\"TitleAPIUrl\":\"/Titles/9780061537967\",\"ISBN\":\"9780061537967\",\"ASIN\":\"0061537969\",\"Author\":\"Garth Stein\",\"BriefDescription\":\"A novel that reflects on what it is to be human, told from the family dog\\u0027s point of view (F) (P)\",\"RankLastWeek\":87,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780061537967\",\"Name\":\"Paperback\",\"Publisher\":\"Harper Paperback\"},\"Class\":\"Fiction\"},{\"Rank\":87,\"Title\":\"StrengthsFinder 2.0\",\"TitleAPIUrl\":\"/Titles/9781595620156\",\"ISBN\":\"9781595620156\",\"ASIN\":\"159562015X\",\"Author\":\"Tom Rath\",\"BriefDescription\":\"Lifetime strategies for using your talents (NF) (H)\",\"RankLastWeek\":70,\"Category\":{\"CategoryID\":298,\"CategoryName\":\"Business\"},\"Format\":{\"ISBN\":\"9781595620156\",\"Name\":\"Hardcover\",\"Publisher\":\"Gallup Press\"},\"Class\":\"NonFiction\"},{\"Rank\":88,\"Title\":\"Summer and the City: A Carrie Diaries Novel\",\"TitleAPIUrl\":\"/Titles/9780061728938\",\"ISBN\":\"9780061728938\",\"ASIN\":\"0061728934\",\"Author\":\"Candace Bushnell\",\"BriefDescription\":\"Youth: Carrie begins her first writing class as she learns to navigate New York City (F)\",\"RankLastWeek\":25,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780061728938\",\"Name\":\"Hardcover\",\"Publisher\":\"Balzer + Bray\"},\"Class\":\"Fiction\"},{\"Rank\":89,\"Title\":\"Save Me\",\"TitleAPIUrl\":\"/Titles/9780312380786\",\"ISBN\":\"9780312380786\",\"ASIN\":\"031238078X\",\"Author\":\"Lisa Scottoline\",\"BriefDescription\":\"A mom is wrongly accused of endangering the life of the girl who is bullying her daughter (F) (H)\",\"RankLastWeek\":63,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780312380786\",\"Name\":\"Hardcover\",\"Publisher\":\"St. Martin\\u0027s Press\"},\"Class\":\"Fiction\"},{\"Rank\":90,\"Title\":\"All That Is Bitter and Sweet: A Memoir\",\"TitleAPIUrl\":\"/Titles/9780345523617\",\"ISBN\":\"9780345523617\",\"ASIN\":\"034552361X\",\"Author\":\"Ashley Judd, with Maryanne Vollers\",\"BriefDescription\":\"Memoir: The actress writes about her work in the Third World and its connection to her own childhood and struggles with depression (NF) (H)\",\"RankLastWeek\":86,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9780345523617\",\"Name\":\"Hardcover\",\"Publisher\":\"Ballantine\"},\"Class\":\"NonFiction\"},{\"Rank\":91,\"Title\":\"Mystery\",\"TitleAPIUrl\":\"/Titles/9780345524386\",\"ISBN\":\"9780345524386\",\"ASIN\":\"0345505697\",\"Author\":\"Jonathan Kellerman\",\"BriefDescription\":\"Psychologist Alex Delaware and detective Milo Sturgis investigate the murder of a beautiful young woman (F) (E)\",\"RankLastWeek\":16,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780345524386\",\"Name\":\"E-book\",\"Publisher\":\"Ballantine\"},\"Class\":\"Fiction\"},{\"Rank\":92,\"Title\":\"If You Were Here\",\"TitleAPIUrl\":\"/Titles/9780451234384\",\"ISBN\":\"9780451234384\",\"ASIN\":\"0451234383\",\"Author\":\"Jen Lancaster\",\"BriefDescription\":\"A Chicago couple questions whether their marriage will survive their first home renovation (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780451234384\",\"Name\":\"Hardcover\",\"Publisher\":\"NAL\"},\"Class\":\"Fiction\"},{\"Rank\":93,\"Title\":\"A Singular Woman\",\"TitleAPIUrl\":\"/Titles/9781594487972\",\"ISBN\":\"9781594487972\",\"ASIN\":\"1594487979\",\"Author\":\"Janny Scott\",\"BriefDescription\":\"Subtitle: \\\"The Untold Story of Barack Obama\\u0027s Mother\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":251,\"CategoryName\":\"Biography\"},\"Format\":{\"ISBN\":\"9781594487972\",\"Name\":\"Hardcover\",\"Publisher\":\"Riverhead\"},\"Class\":\"NonFiction\"},{\"Rank\":94,\"Title\":\"A Storm of Swords\",\"TitleAPIUrl\":\"/Titles/9780553897876\",\"ISBN\":\"9780553897876\",\"ASIN\":\"055357342X\",\"Author\":\"George R.R. Martin\",\"BriefDescription\":\"Tensions build as the Seven Kingdoms remain at war; third in series (F) (E)\",\"RankLastWeek\":99,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780553897876\",\"Name\":\"E-book\",\"Publisher\":\"Bantam\"},\"Class\":\"Fiction\"},{\"Rank\":95,\"Title\":\"Big Girl\",\"TitleAPIUrl\":\"/Titles/9780440245216\",\"ISBN\":\"9780440245216\",\"ASIN\":\"0440245214\",\"Author\":\"Danielle Steel\",\"BriefDescription\":\"Victoria struggles with her weight and self-esteem from childhood through her 20s (F) (P)\",\"RankLastWeek\":77,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780440245216\",\"Name\":\"Paperback\",\"Publisher\":\"Dell\"},\"Class\":\"Fiction\"},{\"Rank\":96,\"Title\":\"The Ranger\\u0027s Apprentice: The Emperor of Nihon-Ja\",\"TitleAPIUrl\":\"/Titles/9780399255007\",\"ISBN\":\"9780399255007\",\"ASIN\":\"0399255001\",\"Author\":\"John Flanagan\",\"BriefDescription\":\"Youth: Alyss, Evanlyn and Will search for their missing friend; 10th in series (F) (H)\",\"RankLastWeek\":62,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780399255007\",\"Name\":\"Hardcover\",\"Publisher\":\"Philomel\"},\"Class\":\"Fiction\"},{\"Rank\":97,\"Title\":\"Until Tuesday\",\"TitleAPIUrl\":\"/Titles/9781401324292\",\"ISBN\":\"9781401324292\",\"ASIN\":\"1401324290\",\"Author\":\"Luis Carlos Montalvan, Bret Witter\",\"BriefDescription\":\"Subtitle: \\\" A Wounded Warrior and the Golden Retriever Who Saved Him\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":211,\"CategoryName\":\"Pets\"},\"Format\":{\"ISBN\":\"9781401324292\",\"Name\":\"Hardcover\",\"Publisher\":\"Hyperion\"},\"Class\":\"NonFiction\"},{\"Rank\":98,\"Title\":\"The Happiness Project\",\"TitleAPIUrl\":\"/Titles/9780061583261\",\"ISBN\":\"9780061583261\",\"ASIN\":\"006158326X\",\"Author\":\"Gretchen Rubin\",\"BriefDescription\":\"Subtitle: \\\"Why I Spent a Year Trying to Sing in the Morning, Clean My Closets, Fight Right, Read Aristotle, and Generally Have More Fun\\\" (NF) (P)\",\"RankLastWeek\":110,\"Category\":{\"CategoryID\":241,\"CategoryName\":\"Psychology/Self-help\"},\"Format\":{\"ISBN\":\"9780061583261\",\"Name\":\"Paperback\",\"Publisher\":\"Harper\"},\"Class\":\"NonFiction\"},{\"Rank\":99,\"Title\":\"Atlas Shrugged\",\"TitleAPIUrl\":\"/Titles/9780452011878\",\"ISBN\":\"9780452011878\",\"ASIN\":\"0452011876\",\"Author\":\"Ayn Rand\",\"BriefDescription\":\"In Rand\\u0027s classic, the author explores a dystopian United States where the government asserts control over business (F) (P)\",\"RankLastWeek\":61,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780452011878\",\"Name\":\"Paperback\",\"Publisher\":\"Plume\"},\"Class\":\"Fiction\"},{\"Rank\":100,\"Title\":\"Home Free\",\"TitleAPIUrl\":\"/Titles/9781420111941\",\"ISBN\":\"9781420111941\",\"ASIN\":\"1420111949\",\"Author\":\"Fern Michaels\",\"BriefDescription\":\"The Sisterhood trades in its vigilante reputation for top-secret government work (F) (P)\",\"RankLastWeek\":67,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781420111941\",\"Name\":\"Paperback\",\"Publisher\":\"Zebra\"},\"Class\":\"Fiction\"},{\"Rank\":101,\"Title\":\"Caught\",\"TitleAPIUrl\":\"/Titles/9780451232700\",\"ISBN\":\"9780451232700\",\"ASIN\":\"0451232704\",\"Author\":\"Harlan Coben\",\"BriefDescription\":\"Thriller featuring a TV reporter who exposes sexual predators but begins to wonder if she\\u0027s caught an innocent man (F) (P)\",\"RankLastWeek\":76,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780451232700\",\"Name\":\"Paperback\",\"Publisher\":\"Signet\"},\"Class\":\"Fiction\"},{\"Rank\":102,\"Title\":\"Driftwood Cottage\",\"TitleAPIUrl\":\"/Titles/9780778329473\",\"ISBN\":\"9780778329473\",\"ASIN\":\"077832947X\",\"Author\":\"Sherryl Woods\",\"BriefDescription\":\"Single mom Heather Donovan moves to Chesapeake Shores to start over (F) (P)\",\"RankLastWeek\":69,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780778329473\",\"Name\":\"Paperback\",\"Publisher\":\"MIRA\"},\"Class\":\"Fiction\"},{\"Rank\":103,\"Title\":\"One Magic Moment\",\"TitleAPIUrl\":\"/Titles/9780515149517\",\"ISBN\":\"9780515149517\",\"ASIN\":\"0515149519\",\"Author\":\"Lynn Kurland\",\"BriefDescription\":\" \\r\\n\\r\\nMedieval studies scholar Tess Alexander\\u0027s stay at a castle has unexpected consequences (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780515149517\",\"Name\":\"Paperback\",\"Publisher\":\"Jove\"},\"Class\":\"Fiction\"},{\"Rank\":104,\"Title\":\"Love You Forever\",\"TitleAPIUrl\":\"/Titles/9780920668375\",\"ISBN\":\"9780920668375\",\"ASIN\":\"0920668372\",\"Author\":\"Robert Munsch, art by Sheila McGraw\",\"BriefDescription\":\"Children\\u0027s: A mother NEVER stops loving her child; popular Mother\\u0027s Day book (F) (P)\",\"RankLastWeek\":156,\"Category\":{\"CategoryID\":150,\"CategoryName\":\"Children\"},\"Format\":{\"ISBN\":\"9780920668375\",\"Name\":\"Paperback\",\"Publisher\":\"Firefly\"},\"Class\":\"Fiction\"},{\"Rank\":105,\"Title\":\"No Fear of Failure\",\"TitleAPIUrl\":\"/Titles/9781118000786\",\"ISBN\":\"9781118000786\",\"ASIN\":\"1118000781\",\"Author\":\"Gary Burnison\",\"BriefDescription\":\"Subtitle: \\\"Real Stories of How Leaders Deal With Risk and Change\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":298,\"CategoryName\":\"Business\"},\"Format\":{\"ISBN\":\"9781118000786\",\"Name\":\"Hardcover\",\"Publisher\":\"Wiley\"},\"Class\":\"Fiction\"},{\"Rank\":106,\"Title\":\"The Lost Hero: The Heroes of Olympus, Book One\",\"TitleAPIUrl\":\"/Titles/9781423113393\",\"ISBN\":\"9781423113393\",\"ASIN\":\"142311339X\",\"Author\":\"Rick Riordan\",\"BriefDescription\":\"Youth: After saving Olympus, Percy Jackson and friends have rebuilt Camp Half-Blood for the next generation of demigods; first in Heroes of Olympus series (F) (H)\",\"RankLastWeek\":113,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9781423113393\",\"Name\":\"Hardcover\",\"Publisher\":\"Disney-Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":107,\"Title\":\"Toys\",\"TitleAPIUrl\":\"/Titles/9780316097369\",\"ISBN\":\"9780316097369\",\"ASIN\":\"0316097365\",\"Author\":\"James Patterson, Neil McMahon\",\"BriefDescription\":\"Agent Hays Baker, who possesses super-human strength and intelligence, uses his powers to benefit mankind (F) (H)\",\"RankLastWeek\":90,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780316097369\",\"Name\":\"Hardcover\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":108,\"Title\":\"The Heart and the Fist\",\"TitleAPIUrl\":\"/Titles/9780547424859\",\"ISBN\":\"9780547424859\",\"ASIN\":\"054742485X\",\"Author\":\"Eric Greitens\",\"BriefDescription\":\"Subtitle: \\\"The education of a humanitarian, the making of a Navy SEAL\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":252,\"CategoryName\":\"History\"},\"Format\":{\"ISBN\":\"9780547424859\",\"Name\":\"Hardcover\",\"Publisher\":\"Houghton Mifflin Harcourt\"},\"Class\":\"NonFiction\"},{\"Rank\":109,\"Title\":\"Big Nate Out Loud\",\"TitleAPIUrl\":\"/Titles/9781449407186\",\"ISBN\":\"9781449407186\",\"ASIN\":\"1449407188\",\"Author\":\"Lincoln Peirce\",\"BriefDescription\":\"Youth: Middle schooler Nate Wright takes on the sixth grade (F) (P)\",\"RankLastWeek\":92,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9781449407186\",\"Name\":\"Paperback\",\"Publisher\":\"Andrews McMeel\"},\"Class\":\"Fiction\"},{\"Rank\":110,\"Title\":\"Southern Comfort\",\"TitleAPIUrl\":\"/Titles/9780758227171\",\"ISBN\":\"9780758227171\",\"ASIN\":\"0758227175\",\"Author\":\"Fern Michaels\",\"BriefDescription\":\"A detective-turned-author finds himself drawn to a DEA agent (F) (H)\",\"RankLastWeek\":56,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780758227171\",\"Name\":\"Hardcover\",\"Publisher\":\"Kensington\"},\"Class\":\"Fiction\"},{\"Rank\":111,\"Title\":\"The Burning Wire\",\"TitleAPIUrl\":\"/Titles/9781439156346\",\"ISBN\":\"9781439156346\",\"ASIN\":\"1439156344\",\"Author\":\"Jeffery Deaver\",\"BriefDescription\":\"Quadriplegic and forensic criminologist Lincoln Rhyme and his team investigate a series of terrorist attacks while they hunt down a killer (F) (P)\",\"RankLastWeek\":64,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781439156346\",\"Name\":\"Paperback\",\"Publisher\":\"Pocket\"},\"Class\":\"Fiction\"},{\"Rank\":112,\"Title\":\"Hotel on the Corner of Bitter and Sweet\",\"TitleAPIUrl\":\"/Titles/9780345505347\",\"ISBN\":\"9780345505347\",\"ASIN\":\"0345505344\",\"Author\":\"Jamie Ford\",\"BriefDescription\":\"Henry Lee searches for Keiko, his long-lost love during World War II (F) (P)\",\"RankLastWeek\":126,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780345505347\",\"Name\":\"Paperback\",\"Publisher\":\"Ballantine Books\"},\"Class\":\"Fiction\"},{\"Rank\":113,\"Title\":\"Room\",\"TitleAPIUrl\":\"/Titles/9780316129114\",\"ISBN\":\"9780316129114\",\"ASIN\":\"0316098329\",\"Author\":\"Emma Donoghue\",\"BriefDescription\":\"Story of a 5-year-old boy held captive with his mother in a single room, the only world he knows (F) (E)\",\"RankLastWeek\":133,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780316129114\",\"Name\":\"E-book\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":114,\"Title\":\"Diary of a Wimpy Kid: Rodrick Rules\",\"TitleAPIUrl\":\"/Titles/9780810994737\",\"ISBN\":\"9780810994737\",\"ASIN\":\"0810994739\",\"Author\":\"Jeff Kinney\",\"BriefDescription\":\"Youth: Greg Heffley\\u0027s older brother knows secret; sequel (F) (H)\",\"RankLastWeek\":73,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780810994737\",\"Name\":\"Hardcover\",\"Publisher\":\"Amulet\"},\"Class\":\"Fiction\"},{\"Rank\":115,\"Title\":\"The Unclaimed Baby\",\"TitleAPIUrl\":\"/Titles/9780373129904\",\"ISBN\":\"9780373129904\",\"ASIN\":\"0373129904\",\"Author\":\"Melanie Milburne\",\"BriefDescription\":\"A billionaire wants to woo back a ballerina he left broken-hearted (F) (P)\",\"RankLastWeek\":75,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373129904\",\"Name\":\"Paperback\",\"Publisher\":\"Harlequin Presents\"},\"Class\":\"Fiction\"},{\"Rank\":116,\"Title\":\"The Rule of Nine\",\"TitleAPIUrl\":\"/Titles/9780061930225\",\"ISBN\":\"9780061930225\",\"ASIN\":\"0061930229\",\"Author\":\"Steve Martini\",\"BriefDescription\":\"A defense attorney and a weapons control expert are drawn into international intrigue (F) (P)\",\"RankLastWeek\":168,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780061930225\",\"Name\":\"Paperback\",\"Publisher\":\"Harper\"},\"Class\":\"Fiction\"},{\"Rank\":117,\"Title\":\"Jess\\u0027s Promise\",\"TitleAPIUrl\":\"/Titles/9780373129874\",\"ISBN\":\"9780373129874\",\"ASIN\":\"0373129874\",\"Author\":\"Lynne Graham\",\"BriefDescription\":\"A charismatic European playboy attempts to woo and win over a reluctant vet (F) (P)\",\"RankLastWeek\":72,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373129874\",\"Name\":\"Paperback\",\"Publisher\":\"Harlequin Presents\"},\"Class\":\"Fiction\"},{\"Rank\":118,\"Title\":\"Night Road\",\"TitleAPIUrl\":\"/Titles/9781429965026\",\"ISBN\":\"9781429965026\",\"ASIN\":\"0312364423\",\"Author\":\"Kristin Hannah\",\"BriefDescription\":\"On a summer evening a tragedy befalls three teenagers, and a family is torn apart (F) (E)\",\"RankLastWeek\":103,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9781429965026\",\"Name\":\"E-book\",\"Publisher\":\"St. Martin\\u0027s\"},\"Class\":\"Fiction\"},{\"Rank\":119,\"Title\":\"90 Minutes in Heaven: A True Story of Death and Life\",\"TitleAPIUrl\":\"/Titles/9780800759490\",\"ISBN\":\"9780800759490\",\"ASIN\":\"0800759494\",\"Author\":\"Don Piper, Cecil Murphey\",\"BriefDescription\":\"Piper, who was pronounced dead for 90 minutes after a car accident, writes about going to heaven, coming back to life, and his recovery (NF) (P)\",\"RankLastWeek\":118,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9780800759490\",\"Name\":\"Paperback\",\"Publisher\":\"Revell\"},\"Class\":\"NonFiction\"},{\"Rank\":120,\"Title\":\"Onward\",\"TitleAPIUrl\":\"/Titles/9781605292885\",\"ISBN\":\"9781605292885\",\"ASIN\":\"1605292885\",\"Author\":\"Howard Schultz, Joanne Gordon\",\"BriefDescription\":\"Subtitle: \\\"How Starbucks Fought for Its Life without Losing Its Soul\\\" (NF) (H)\",\"RankLastWeek\":96,\"Category\":{\"CategoryID\":298,\"CategoryName\":\"Business\"},\"Format\":{\"ISBN\":\"9781605292885\",\"Name\":\"Hardcover\",\"Publisher\":\"Rodale Press\"},\"Class\":\"NonFiction\"},{\"Rank\":121,\"Title\":\"Illusions\",\"TitleAPIUrl\":\"/Titles/9780061668098\",\"ISBN\":\"9780061668098\",\"ASIN\":\"0061668095\",\"Author\":\"Aprilynne Pike\",\"BriefDescription\":\"Youth: Paranormal romance: Laurel turns to Tamani for protection (F) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780061668098\",\"Name\":\"Hardcover\",\"Publisher\":\"HarperTeen\"},\"Class\":\"Fiction\"},{\"Rank\":122,\"Title\":\"The Postmistress\",\"TitleAPIUrl\":\"/Titles/9780425238691\",\"ISBN\":\"9780425238691\",\"ASIN\":\"0425238695\",\"Author\":\"Sarah Blake\",\"BriefDescription\":\"The World War II-era postmistress of Franklin, Mass., delivers mail and keeps secrets (F) (P)\",\"RankLastWeek\":161,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780425238691\",\"Name\":\"Paperback\",\"Publisher\":\"Berkley\"},\"Class\":\"Fiction\"},{\"Rank\":123,\"Title\":\"The Shack\",\"TitleAPIUrl\":\"/Titles/9780964729230\",\"ISBN\":\"9780964729230\",\"ASIN\":\"160941411X\",\"Author\":\"William P. Young\",\"BriefDescription\":\"Man reconnects with God after death of child (F) (P)\",\"RankLastWeek\":139,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9780964729230\",\"Name\":\"Paperback\",\"Publisher\":\"Windblown Media\"},\"Class\":\"Fiction\"},{\"Rank\":124,\"Title\":\"The Vampire Diaries: Stefan\\u0027s Diaries #3: The Craving\",\"TitleAPIUrl\":\"/Titles/9780062003959\",\"ISBN\":\"9780062003959\",\"ASIN\":\"006200395X\",\"Author\":\"L.J. Smith, Kevin Williamson & Julie Plec\",\"BriefDescription\":\"Youth: Stefan starts over in Manhattan but finds he can\\u0027t escape his past (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780062003959\",\"Name\":\"Paperback\",\"Publisher\":\"HarperTeen\"},\"Class\":\"Fiction\"},{\"Rank\":125,\"Title\":\"Born of Shadows\",\"TitleAPIUrl\":\"/Titles/9780446573252\",\"ISBN\":\"9780446573252\",\"ASIN\":\"0446573256\",\"Author\":\"Sherrilyn Kenyon\",\"BriefDescription\":\"Paranormal romance: Caillen and Desideria must fight together to save their country (F) (H)\",\"RankLastWeek\":35,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780446573252\",\"Name\":\"Hardcover\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"Fiction\"},{\"Rank\":126,\"Title\":\"Inseparable\",\"TitleAPIUrl\":\"/Titles/9781459201705\",\"ISBN\":\"9781459201705\",\"ASIN\":\"0373534434\",\"Author\":\"Brenda Jackson\",\"BriefDescription\":\"An eligible bachelor falls for the platonic friend he puts up in his home (F) (E)\",\"RankLastWeek\":68,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781459201705\",\"Name\":\"E-book\",\"Publisher\":\"Kimani Press\"},\"Class\":\"Fiction\"},{\"Rank\":127,\"Title\":\"The 5 Love Languages\",\"TitleAPIUrl\":\"/Titles/9780802473158\",\"ISBN\":\"9780802473158\",\"ASIN\":\"0802473156\",\"Author\":\"Gary Chapman\",\"BriefDescription\":\"Subtitle: \\\"The Secret to Love That Lasts\\\" (NF) (P)\",\"RankLastWeek\":135,\"Category\":{\"CategoryID\":241,\"CategoryName\":\"Psychology/Self-help\"},\"Format\":{\"ISBN\":\"9780802473158\",\"Name\":\"Paperback\",\"Publisher\":\"Moody Publishers\"},\"Class\":\"NonFiction\"},{\"Rank\":128,\"Title\":\"Hungry Girl 300 under 300\",\"TitleAPIUrl\":\"/Titles/9780312676810\",\"ISBN\":\"9780312676810\",\"ASIN\":\"0312676816\",\"Author\":\"Lisa Lillien\",\"BriefDescription\":\"Subtitle: \\\"300 Easy Breakfasts, Lunches and Dinners under 300 Calories\\\" (NF) (P)\",\"RankLastWeek\":120,\"Category\":{\"CategoryID\":212,\"CategoryName\":\"Cookbooks\"},\"Format\":{\"ISBN\":\"9780312676810\",\"Name\":\"Paperback\",\"Publisher\":\"St. Martin\\u0027s Griffin\"},\"Class\":\"NonFiction\"},{\"Rank\":129,\"Title\":\"The 4-Hour Body\",\"TitleAPIUrl\":\"/Titles/9780307463630\",\"ISBN\":\"9780307463630\",\"ASIN\":\"030746363X\",\"Author\":\"Timothy Ferriss\",\"BriefDescription\":\"Subtitle: \\\"The Secrets and Science of Rapid Body Transformation\\\" (NF) (H)\",\"RankLastWeek\":115,\"Category\":{\"CategoryID\":242,\"CategoryName\":\"Diet/Health\"},\"Format\":{\"ISBN\":\"9780307463630\",\"Name\":\"Hardcover\",\"Publisher\":\"Crown Archetype\"},\"Class\":\"NonFiction\"},{\"Rank\":130,\"Title\":\"A Feast for Crows\",\"TitleAPIUrl\":\"/Titles/9780553900323\",\"ISBN\":\"9780553900323\",\"ASIN\":\"0553582038\",\"Author\":\"George R.R. Martin\",\"BriefDescription\":\"Power struggle continues in the Seven Kingdoms; fourth in series (F) (P)\",\"RankLastWeek\":141,\"Category\":{\"CategoryID\":122,\"CategoryName\":\"Fantasy/Sci-fi\"},\"Format\":{\"ISBN\":\"9780553900323\",\"Name\":\"Paperback\",\"Publisher\":\"Bantam\"},\"Class\":\"Fiction\"},{\"Rank\":131,\"Title\":\"Hangman\",\"TitleAPIUrl\":\"/Titles/9780061702617\",\"ISBN\":\"9780061702617\",\"ASIN\":\"0061702617\",\"Author\":\"Faye Kellerman\",\"BriefDescription\":\"Homicide detective Peter Decker and wife, Rina Lazarus, are confronted with a murder case while searching for a missing friend (F) (P)\",\"RankLastWeek\":182,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780061702617\",\"Name\":\"Paperback\",\"Publisher\":\"Harper\"},\"Class\":\"Fiction\"},{\"Rank\":132,\"Title\":\"The Judgment\",\"TitleAPIUrl\":\"/Titles/9780764206009\",\"ISBN\":\"9780764206009\",\"ASIN\":\"0764206001\",\"Author\":\"Beverly Lewis\",\"BriefDescription\":\"A young Amish woman is torn between two men while another\\u0027s marriage is in trouble (F) (P)\",\"RankLastWeek\":116,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780764206009\",\"Name\":\"Paperback\",\"Publisher\":\"Bethany House\"},\"Class\":\"Fiction\"},{\"Rank\":133,\"Title\":\"Four Blind Mice\",\"TitleAPIUrl\":\"/Titles/9780446613262\",\"ISBN\":\"9780446613262\",\"ASIN\":\"0446613266\",\"Author\":\"James Patterson\",\"BriefDescription\":\"Detective Alex Cross works with a friend to save a man from execution (F) (P)\",\"RankLastWeek\":111,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780446613262\",\"Name\":\"Paperback\",\"Publisher\":\"Warner Vision\"},\"Class\":\"Fiction\"},{\"Rank\":134,\"Title\":\"Stolen Ecstasy\",\"TitleAPIUrl\":\"/Titles/9781420104660\",\"ISBN\":\"9781420104660\",\"ASIN\":\"1420104667\",\"Author\":\"Hannah Howell\",\"BriefDescription\":\"A woman who loses everything throws all caution to the wind (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9781420104660\",\"Name\":\"Paperback\",\"Publisher\":\"Zebra\"},\"Class\":\"Fiction\"},{\"Rank\":135,\"Title\":\"Naked Heat\",\"TitleAPIUrl\":\"/Titles/9780786891368\",\"ISBN\":\"9780786891368\",\"ASIN\":\"B004X8W4A4\",\"Author\":\"Richard Castle\",\"BriefDescription\":\"NYPD detective Nikki Heat and reporter James Rook are on the trail of a murderer; sequel to Heat Wave (F) (P)\",\"RankLastWeek\":187,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780786891368\",\"Name\":\"Paperback\",\"Publisher\":\"Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":136,\"Title\":\"Diary of a Wimpy Kid: Dog Days\",\"TitleAPIUrl\":\"/Titles/9780810983915\",\"ISBN\":\"9780810983915\",\"ASIN\":\"0810983915\",\"Author\":\"Jeff Kinney\",\"BriefDescription\":\"Youth: Greg\\u0027s summer plans include video games and no responsibility; fourth in series (F) (H)\",\"RankLastWeek\":93,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780810983915\",\"Name\":\"Hardcover\",\"Publisher\":\"Amulet Books\"},\"Class\":\"Fiction\"},{\"Rank\":137,\"Title\":\"The Beach Trees\",\"TitleAPIUrl\":\"/Titles/9780451233073\",\"ISBN\":\"9780451233073\",\"ASIN\":\"0451233077\",\"Author\":\"Karen White\",\"BriefDescription\":\"A woman befriends another who reminds her of the sister who disappeared many years ago (F) (P)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780451233073\",\"Name\":\"Paperback\",\"Publisher\":\"NAL\"},\"Class\":\"Fiction\"},{\"Rank\":138,\"Title\":\"The Reluctant Duke\",\"TitleAPIUrl\":\"/Titles/9780373129881\",\"ISBN\":\"9780373129881\",\"ASIN\":\"0373129882\",\"Author\":\"Carole Mortimer\",\"BriefDescription\":\"An heir to a large estate and family title reluctantly returns home (F) (P)\",\"RankLastWeek\":89,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373129881\",\"Name\":\"Paperback\",\"Publisher\":\"Harlequin Presents\"},\"Class\":\"Fiction\"},{\"Rank\":139,\"Title\":\"Diary of a Wimpy Kid: The Last Straw\",\"TitleAPIUrl\":\"/Titles/9780810970687\",\"ISBN\":\"9780810970687\",\"ASIN\":\"0810970686\",\"Author\":\"Jeff Kinney\",\"BriefDescription\":\"Youth: Greg tries to toughen up to avoid military school; third in series (F) (H)\",\"RankLastWeek\":94,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780810970687\",\"Name\":\"Hardcover\",\"Publisher\":\"Amulet\"},\"Class\":\"Fiction\"},{\"Rank\":140,\"Title\":\"Saving Rachel\",\"TitleAPIUrl\":\"/Titles/2940012373526\",\"ISBN\":\"2940012373526\",\"ASIN\":\"1935670018\",\"Author\":\"John Locke\",\"BriefDescription\":\"Sam Case must choose between the lives of his wife and his mistress (F) (E)\",\"RankLastWeek\":123,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"2940012373526\",\"Name\":\"E-book\",\"Publisher\":\"Amazon Digital Services\"},\"Class\":\"Fiction\"},{\"Rank\":141,\"Title\":\"Diary of a Wimpy Kid\",\"TitleAPIUrl\":\"/Titles/9780810993136\",\"ISBN\":\"9780810993136\",\"ASIN\":\"0810993139\",\"Author\":\"Jeff Kinney\",\"BriefDescription\":\"Youth: Diary from a middle-schooler, Greg Heffley (F) (H)\",\"RankLastWeek\":95,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9780810993136\",\"Name\":\"Hardcover\",\"Publisher\":\"Amulet\"},\"Class\":\"Fiction\"},{\"Rank\":142,\"Title\":\"Play Like You Mean It\",\"TitleAPIUrl\":\"/Titles/9780385534444\",\"ISBN\":\"9780385534444\",\"ASIN\":\"0385534442\",\"Author\":\"Rex Ryan\",\"BriefDescription\":\"Subtitle: \\\"Passion, Laughs, and Leadership in the World\\u0027s Most Beautiful Game\\\" (NF) (H)\",\"RankLastWeek\":0,\"Category\":{\"CategoryID\":273,\"CategoryName\":\"Sports/Games\"},\"Format\":{\"ISBN\":\"9780385534444\",\"Name\":\"Hardcover\",\"Publisher\":\"Doubleday\"},\"Class\":\"NonFiction\"},{\"Rank\":143,\"Title\":\"The Brass Verdict\",\"TitleAPIUrl\":\"/Titles/9780316040167\",\"ISBN\":\"9780316040167\",\"ASIN\":\"B002ZNJVZU\",\"Author\":\"Michael Connelly\",\"BriefDescription\":\"A lawyer and a detective join forces to capture a killer (F) (E)\",\"RankLastWeek\":122,\"Category\":{\"CategoryID\":151,\"CategoryName\":\"General fiction\"},\"Format\":{\"ISBN\":\"9780316040167\",\"Name\":\"E-book\",\"Publisher\":\"Little, Brown\"},\"Class\":\"Fiction\"},{\"Rank\":144,\"Title\":\"Percy Jackson and the Olympians, Book 5: The Last Olympian\",\"TitleAPIUrl\":\"/Titles/9781423101505\",\"ISBN\":\"9781423101505\",\"ASIN\":\"1423101502\",\"Author\":\"Rick Riordan\",\"BriefDescription\":\"Youth: Percy Jackson attempts to stop the Lord of Time (F) (P)\",\"RankLastWeek\":145,\"Category\":{\"CategoryID\":140,\"CategoryName\":\"Youth\"},\"Format\":{\"ISBN\":\"9781423101505\",\"Name\":\"Paperback\",\"Publisher\":\"Disney-Hyperion\"},\"Class\":\"Fiction\"},{\"Rank\":145,\"Title\":\"Not a Marrying Man\",\"TitleAPIUrl\":\"/Titles/9780373129898\",\"ISBN\":\"9780373129898\",\"ASIN\":\"0373129890\",\"Author\":\"Miranda Lee\",\"BriefDescription\":\"A British billionaire moves in with his receptionist only to get cold feet, again (F) (P)\",\"RankLastWeek\":88,\"Category\":{\"CategoryID\":132,\"CategoryName\":\"Romance\"},\"Format\":{\"ISBN\":\"9780373129898\",\"Name\":\"Paperback\",\"Publisher\":\"Harlequin Presents\"},\"Class\":\"Fiction\"},{\"Rank\":146,\"Title\":\"Crazy Love\",\"TitleAPIUrl\":\"/Titles/9781434768513\",\"ISBN\":\"9781434768513\",\"ASIN\":\"1434768511\",\"Author\":\"Francis Chan\",\"BriefDescription\":\"Pastor Chan writes about how immense God\\u0027s love for us is (NF) (P)\",\"RankLastWeek\":183,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9781434768513\",\"Name\":\"Paperback\",\"Publisher\":\"David C. Cook\"},\"Class\":\"NonFiction\"},{\"Rank\":147,\"Title\":\"The Best Advice I Ever Got\",\"TitleAPIUrl\":\"/Titles/9780812992779\",\"ISBN\":\"9780812992779\",\"ASIN\":\"0812992776\",\"Author\":\"Katie Couric\",\"BriefDescription\":\"Subtitle: \\\"Lessons from Extraordinary Lives\\\" (NF) (H)\",\"RankLastWeek\":159,\"Category\":{\"CategoryID\":241,\"CategoryName\":\"Psychology/Self-help\"},\"Format\":{\"ISBN\":\"9780812992779\",\"Name\":\"Hardcover\",\"Publisher\":\"Random House\"},\"Class\":\"NonFiction\"},{\"Rank\":148,\"Title\":\"My Father\\u0027s Daughter\",\"TitleAPIUrl\":\"/Titles/9780446557313\",\"ISBN\":\"9780446557313\",\"ASIN\":\"0446557315\",\"Author\":\"Gwyneth Paltrow\",\"BriefDescription\":\"Subtitle: \\\" Delicious, Easy Recipes Celebrating Family & Togetherness\\\" (NF) (H)\",\"RankLastWeek\":131,\"Category\":{\"CategoryID\":212,\"CategoryName\":\"Cookbooks\"},\"Format\":{\"ISBN\":\"9780446557313\",\"Name\":\"Hardcover\",\"Publisher\":\"Grand Central Publishing\"},\"Class\":\"NonFiction\"},{\"Rank\":149,\"Title\":\"Indulgence in Death\",\"TitleAPIUrl\":\"/Titles/9780425240465\",\"ISBN\":\"9780425240465\",\"ASIN\":\"0425240460\",\"Author\":\"J.D. Robb\",\"BriefDescription\":\"NYPD Lieutenant Eve Dallas investigates a series of random murders (F) (P)\",\"RankLastWeek\":108,\"Category\":{\"CategoryID\":131,\"CategoryName\":\"Mystery\"},\"Format\":{\"ISBN\":\"9780425240465\",\"Name\":\"Paperback\",\"Publisher\":\"Berkley\"},\"Class\":\"Fiction\"},{\"Rank\":150,\"Title\":\"Battlefield of the Mind\",\"TitleAPIUrl\":\"/Titles/9780446691093\",\"ISBN\":\"9780446691093\",\"ASIN\":\"0446691097\",\"Author\":\"Joyce Meyer\",\"BriefDescription\":\"Subtitle: \\\"Winning the Battle in Your Mind\\\" (NF) (P)\",\"RankLastWeek\":143,\"Category\":{\"CategoryID\":261,\"CategoryName\":\"Religion/Inspiration\"},\"Format\":{\"ISBN\":\"9780446691093\",\"Name\":\"Paperback\",\"Publisher\":\"FaithWords\"},\"Class\":\"NonFiction\"}],\"BookListDate\":{\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2011/5/12\"},\"Name\":\"Top 150\"}]}"
32
+ http_version: "1.1"
33
+ - !ruby/struct:VCR::HTTPInteraction
34
+ request: !ruby/struct:VCR::Request
35
+ method: :get
36
+ uri: http://api.usatoday.com:80/open/bestsellers/books/booklists/2011/5/12?api_key=foobar&encoding=json
37
+ body:
38
+ headers:
39
+ response: !ruby/struct:VCR::Response
40
+ status: !ruby/struct:VCR::ResponseStatus
41
+ code: 403
42
+ message: Forbidden
43
+ headers:
44
+ content-type:
45
+ - text/xml
46
+ x-mashery-responder:
47
+ - proxyworker-i-292fa140.mashery.com
48
+ server:
49
+ - Mashery Proxy
50
+ date:
51
+ - Tue, 02 Aug 2011 19:14:52 GMT
52
+ content-length:
53
+ - "31"
54
+ accept-ranges:
55
+ - bytes
56
+ x-mashery-error-code:
57
+ - ERR_403_DEVELOPER_INACTIVE
58
+ body: <h1>403 Developer Inactive</h1>
59
+ http_version: "1.1"
@@ -0,0 +1,32 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://api.usatoday.com:80/open/bestsellers/books/categories?api_key=foobar&encoding=json&title=Harry%20Potter
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ x-aspnet-version:
14
+ - 2.0.50727
15
+ p3p:
16
+ - CP="CAO CUR ADM DEVa TAIi PSAa PSDa CONi OUR OTRi IND PHY ONL UNI COM NAV DEM", POLICYREF="URI"
17
+ content-type:
18
+ - application/json; charset=utf-8
19
+ x-mashery-responder:
20
+ - proxyworker-i-f6699e9b.mashery.com
21
+ server:
22
+ - Microsoft-IIS/7.5
23
+ date:
24
+ - Tue, 02 Aug 2011 18:53:58 GMT
25
+ content-length:
26
+ - "314"
27
+ cache-control:
28
+ - private
29
+ accept-ranges:
30
+ - bytes
31
+ body: "{\"APIParameters\":{\"ISBN\":\"\",\"Year\":\"\",\"Month\":\"\",\"Date\":\"\",\"MinYear\":\"\",\"MaxYear\":\"\",\"Title\":\"Harry Potter\",\"Author\":\"\",\"Category\":\"\",\"Class\":\"\",\"ExcludeCurrentWeek\":\"true\",\"RecentWeekAllowance\":\"24\",\"Count\":0},\"Categories\":[{\"CategoryID\":140,\"CategoryName\":\"Youth\"},{\"CategoryID\":274,\"CategoryName\":\"Movies/TV\"}]}"
32
+ http_version: "1.1"
@@ -0,0 +1,94 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://api.usatoday.com:80/open/bestsellers/books/dates?api_key=foobar&encoding=json&maxyear=&minyear=
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ x-aspnet-version:
14
+ - 2.0.50727
15
+ p3p:
16
+ - CP="CAO CUR ADM DEVa TAIi PSAa PSDa CONi OUR OTRi IND PHY ONL UNI COM NAV DEM", POLICYREF="URI"
17
+ content-type:
18
+ - application/json; charset=utf-8
19
+ x-mashery-responder:
20
+ - proxyworker-i-3966f350.mashery.com
21
+ server:
22
+ - Microsoft-IIS/7.5
23
+ date:
24
+ - Tue, 02 Aug 2011 19:11:58 GMT
25
+ content-length:
26
+ - "73368"
27
+ cache-control:
28
+ - private
29
+ accept-ranges:
30
+ - bytes
31
+ body: "{\"APIParameters\":{\"ISBN\":\"\",\"Year\":\"\",\"Month\":\"\",\"Date\":\"\",\"MinYear\":\"\",\"MaxYear\":\"\",\"Title\":\"\",\"Author\":\"\",\"Category\":\"\",\"Class\":\"\",\"ExcludeCurrentWeek\":\"true\",\"RecentWeekAllowance\":\"24\",\"Count\":0},\"BookListDates\":[{\"Year\":\"2011\",\"Month\":\"7\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2011/7/28\"},{\"Year\":\"2011\",\"Month\":\"7\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2011/7/21\"},{\"Year\":\"2011\",\"Month\":\"7\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2011/7/14\"},{\"Year\":\"2011\",\"Month\":\"7\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2011/7/7\"},{\"Year\":\"2011\",\"Month\":\"6\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2011/6/30\"},{\"Year\":\"2011\",\"Month\":\"6\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2011/6/23\"},{\"Year\":\"2011\",\"Month\":\"6\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2011/6/16\"},{\"Year\":\"2011\",\"Month\":\"6\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2011/6/9\"},{\"Year\":\"2011\",\"Month\":\"6\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2011/6/2\"},{\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2011/5/26\"},{\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2011/5/19\"},{\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2011/5/12\"},{\"Year\":\"2011\",\"Month\":\"5\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2011/5/5\"},{\"Year\":\"2011\",\"Month\":\"4\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2011/4/28\"},{\"Year\":\"2011\",\"Month\":\"4\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2011/4/21\"},{\"Year\":\"2011\",\"Month\":\"4\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2011/4/14\"},{\"Year\":\"2011\",\"Month\":\"4\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2011/4/7\"},{\"Year\":\"2011\",\"Month\":\"3\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2011/3/31\"},{\"Year\":\"2011\",\"Month\":\"3\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2011/3/24\"},{\"Year\":\"2011\",\"Month\":\"3\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2011/3/17\"},{\"Year\":\"2011\",\"Month\":\"3\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2011/3/10\"},{\"Year\":\"2011\",\"Month\":\"3\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2011/3/3\"},{\"Year\":\"2011\",\"Month\":\"2\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2011/2/24\"},{\"Year\":\"2011\",\"Month\":\"2\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2011/2/17\"},{\"Year\":\"2011\",\"Month\":\"2\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2011/2/10\"},{\"Year\":\"2011\",\"Month\":\"2\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2011/2/3\"},{\"Year\":\"2011\",\"Month\":\"1\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2011/1/27\"},{\"Year\":\"2011\",\"Month\":\"1\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2011/1/20\"},{\"Year\":\"2011\",\"Month\":\"1\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2011/1/13\"},{\"Year\":\"2011\",\"Month\":\"1\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2011/1/6\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2010/12/30\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2010/12/23\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2010/12/16\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2010/12/9\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2010/12/2\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/11/25\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/11/18\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/11/11\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/11/4\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2010/10/28\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2010/10/21\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2010/10/14\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2010/10/7\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2010/9/30\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2010/9/23\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2010/9/16\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2010/9/9\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2010/9/2\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2010/8/26\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2010/8/19\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2010/8/12\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2010/8/5\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2010/7/29\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2010/7/22\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2010/7/15\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2010/7/8\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2010/7/1\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2010/6/24\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2010/6/17\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2010/6/10\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2010/6/3\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2010/5/27\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2010/5/20\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2010/5/13\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2010/5/6\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2010/4/29\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2010/4/22\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2010/4/15\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2010/4/8\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2010/4/1\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/3/25\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/3/18\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/3/11\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/3/4\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/2/25\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/2/18\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/2/11\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/2/4\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2010/1/28\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2010/1/21\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2010/1/14\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2010/1/7\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2009/12/31\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2009/12/24\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2009/12/17\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2009/12/10\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2009/12/3\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/11/26\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/11/19\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/11/12\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/11/5\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2009/10/29\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2009/10/22\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2009/10/15\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2009/10/8\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2009/10/1\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2009/9/24\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2009/9/17\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2009/9/10\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2009/9/3\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2009/8/27\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2009/8/20\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2009/8/13\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2009/8/6\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2009/7/30\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2009/7/23\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2009/7/16\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2009/7/9\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2009/7/2\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2009/6/25\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2009/6/18\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2009/6/11\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2009/6/4\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2009/5/28\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2009/5/21\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2009/5/14\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2009/5/7\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2009/4/30\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2009/4/23\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2009/4/16\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2009/4/9\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2009/4/2\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/3/26\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/3/19\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/3/12\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/3/5\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/2/26\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/2/19\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/2/12\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/2/5\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2009/1/29\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2009/1/22\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2009/1/15\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2009/1/8\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2009/1/1\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2008/12/25\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2008/12/18\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2008/12/11\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2008/12/4\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2008/11/27\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2008/11/20\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2008/11/13\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2008/11/6\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2008/10/30\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2008/10/23\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2008/10/16\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2008/10/9\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2008/10/2\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2008/9/25\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2008/9/18\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2008/9/11\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2008/9/4\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2008/8/28\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2008/8/21\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2008/8/14\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2008/8/7\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2008/7/31\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/7/24\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/7/17\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/7/10\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/7/3\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2008/6/26\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2008/6/19\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2008/6/12\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2008/6/5\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2008/5/29\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2008/5/22\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2008/5/15\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2008/5/8\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2008/5/1\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/4/24\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/4/17\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/4/10\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/4/3\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2008/3/27\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2008/3/20\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2008/3/13\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2008/3/6\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2008/2/28\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2008/2/21\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2008/2/14\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2008/2/7\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2008/1/31\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/1/24\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/1/17\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/1/10\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/1/3\"},{\"Year\":\"2007\",\"Month\":\"12\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2007/12/27\"},{\"Year\":\"2007\",\"Month\":\"12\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2007/12/20\"},{\"Year\":\"2007\",\"Month\":\"12\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2007/12/13\"},{\"Year\":\"2007\",\"Month\":\"12\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2007/12/6\"},{\"Year\":\"2007\",\"Month\":\"11\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2007/11/29\"},{\"Year\":\"2007\",\"Month\":\"11\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2007/11/22\"},{\"Year\":\"2007\",\"Month\":\"11\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2007/11/15\"},{\"Year\":\"2007\",\"Month\":\"11\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2007/11/8\"},{\"Year\":\"2007\",\"Month\":\"11\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2007/11/1\"},{\"Year\":\"2007\",\"Month\":\"10\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2007/10/25\"},{\"Year\":\"2007\",\"Month\":\"10\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2007/10/18\"},{\"Year\":\"2007\",\"Month\":\"10\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2007/10/11\"},{\"Year\":\"2007\",\"Month\":\"10\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2007/10/4\"},{\"Year\":\"2007\",\"Month\":\"9\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2007/9/27\"},{\"Year\":\"2007\",\"Month\":\"9\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2007/9/20\"},{\"Year\":\"2007\",\"Month\":\"9\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2007/9/13\"},{\"Year\":\"2007\",\"Month\":\"9\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2007/9/6\"},{\"Year\":\"2007\",\"Month\":\"8\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2007/8/30\"},{\"Year\":\"2007\",\"Month\":\"8\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2007/8/23\"},{\"Year\":\"2007\",\"Month\":\"8\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2007/8/16\"},{\"Year\":\"2007\",\"Month\":\"8\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2007/8/9\"},{\"Year\":\"2007\",\"Month\":\"8\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2007/8/2\"},{\"Year\":\"2007\",\"Month\":\"7\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2007/7/26\"},{\"Year\":\"2007\",\"Month\":\"7\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2007/7/19\"},{\"Year\":\"2007\",\"Month\":\"7\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2007/7/12\"},{\"Year\":\"2007\",\"Month\":\"7\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2007/7/5\"},{\"Year\":\"2007\",\"Month\":\"6\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2007/6/28\"},{\"Year\":\"2007\",\"Month\":\"6\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2007/6/21\"},{\"Year\":\"2007\",\"Month\":\"6\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2007/6/14\"},{\"Year\":\"2007\",\"Month\":\"6\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2007/6/7\"},{\"Year\":\"2007\",\"Month\":\"5\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2007/5/31\"},{\"Year\":\"2007\",\"Month\":\"5\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2007/5/24\"},{\"Year\":\"2007\",\"Month\":\"5\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2007/5/17\"},{\"Year\":\"2007\",\"Month\":\"5\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2007/5/10\"},{\"Year\":\"2007\",\"Month\":\"5\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2007/5/3\"},{\"Year\":\"2007\",\"Month\":\"4\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2007/4/26\"},{\"Year\":\"2007\",\"Month\":\"4\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2007/4/19\"},{\"Year\":\"2007\",\"Month\":\"4\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2007/4/12\"},{\"Year\":\"2007\",\"Month\":\"4\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2007/4/5\"},{\"Year\":\"2007\",\"Month\":\"3\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2007/3/29\"},{\"Year\":\"2007\",\"Month\":\"3\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2007/3/22\"},{\"Year\":\"2007\",\"Month\":\"3\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2007/3/15\"},{\"Year\":\"2007\",\"Month\":\"3\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2007/3/8\"},{\"Year\":\"2007\",\"Month\":\"3\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2007/3/1\"},{\"Year\":\"2007\",\"Month\":\"2\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2007/2/22\"},{\"Year\":\"2007\",\"Month\":\"2\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2007/2/15\"},{\"Year\":\"2007\",\"Month\":\"2\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2007/2/8\"},{\"Year\":\"2007\",\"Month\":\"2\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2007/2/1\"},{\"Year\":\"2007\",\"Month\":\"1\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2007/1/25\"},{\"Year\":\"2007\",\"Month\":\"1\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2007/1/18\"},{\"Year\":\"2007\",\"Month\":\"1\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2007/1/11\"},{\"Year\":\"2007\",\"Month\":\"1\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2007/1/4\"},{\"Year\":\"2006\",\"Month\":\"12\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2006/12/28\"},{\"Year\":\"2006\",\"Month\":\"12\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2006/12/21\"},{\"Year\":\"2006\",\"Month\":\"12\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2006/12/14\"},{\"Year\":\"2006\",\"Month\":\"12\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2006/12/7\"},{\"Year\":\"2006\",\"Month\":\"11\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2006/11/30\"},{\"Year\":\"2006\",\"Month\":\"11\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2006/11/23\"},{\"Year\":\"2006\",\"Month\":\"11\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2006/11/16\"},{\"Year\":\"2006\",\"Month\":\"11\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2006/11/9\"},{\"Year\":\"2006\",\"Month\":\"11\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2006/11/2\"},{\"Year\":\"2006\",\"Month\":\"10\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2006/10/26\"},{\"Year\":\"2006\",\"Month\":\"10\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2006/10/19\"},{\"Year\":\"2006\",\"Month\":\"10\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2006/10/12\"},{\"Year\":\"2006\",\"Month\":\"10\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2006/10/5\"},{\"Year\":\"2006\",\"Month\":\"9\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2006/9/28\"},{\"Year\":\"2006\",\"Month\":\"9\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2006/9/21\"},{\"Year\":\"2006\",\"Month\":\"9\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2006/9/14\"},{\"Year\":\"2006\",\"Month\":\"9\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2006/9/7\"},{\"Year\":\"2006\",\"Month\":\"8\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2006/8/31\"},{\"Year\":\"2006\",\"Month\":\"8\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2006/8/24\"},{\"Year\":\"2006\",\"Month\":\"8\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2006/8/17\"},{\"Year\":\"2006\",\"Month\":\"8\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2006/8/10\"},{\"Year\":\"2006\",\"Month\":\"8\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2006/8/3\"},{\"Year\":\"2006\",\"Month\":\"7\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2006/7/27\"},{\"Year\":\"2006\",\"Month\":\"7\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2006/7/20\"},{\"Year\":\"2006\",\"Month\":\"7\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2006/7/13\"},{\"Year\":\"2006\",\"Month\":\"7\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2006/7/6\"},{\"Year\":\"2006\",\"Month\":\"6\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2006/6/29\"},{\"Year\":\"2006\",\"Month\":\"6\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2006/6/22\"},{\"Year\":\"2006\",\"Month\":\"6\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2006/6/15\"},{\"Year\":\"2006\",\"Month\":\"6\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2006/6/8\"},{\"Year\":\"2006\",\"Month\":\"6\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2006/6/1\"},{\"Year\":\"2006\",\"Month\":\"5\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2006/5/25\"},{\"Year\":\"2006\",\"Month\":\"5\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2006/5/18\"},{\"Year\":\"2006\",\"Month\":\"5\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2006/5/11\"},{\"Year\":\"2006\",\"Month\":\"5\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2006/5/4\"},{\"Year\":\"2006\",\"Month\":\"4\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2006/4/27\"},{\"Year\":\"2006\",\"Month\":\"4\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2006/4/20\"},{\"Year\":\"2006\",\"Month\":\"4\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2006/4/13\"},{\"Year\":\"2006\",\"Month\":\"4\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2006/4/6\"},{\"Year\":\"2006\",\"Month\":\"3\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2006/3/30\"},{\"Year\":\"2006\",\"Month\":\"3\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2006/3/23\"},{\"Year\":\"2006\",\"Month\":\"3\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2006/3/16\"},{\"Year\":\"2006\",\"Month\":\"3\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2006/3/9\"},{\"Year\":\"2006\",\"Month\":\"3\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2006/3/2\"},{\"Year\":\"2006\",\"Month\":\"2\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2006/2/23\"},{\"Year\":\"2006\",\"Month\":\"2\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2006/2/16\"},{\"Year\":\"2006\",\"Month\":\"2\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2006/2/9\"},{\"Year\":\"2006\",\"Month\":\"2\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2006/2/2\"},{\"Year\":\"2006\",\"Month\":\"1\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2006/1/26\"},{\"Year\":\"2006\",\"Month\":\"1\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2006/1/19\"},{\"Year\":\"2006\",\"Month\":\"1\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2006/1/12\"},{\"Year\":\"2006\",\"Month\":\"1\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2006/1/5\"},{\"Year\":\"2005\",\"Month\":\"12\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2005/12/29\"},{\"Year\":\"2005\",\"Month\":\"12\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2005/12/22\"},{\"Year\":\"2005\",\"Month\":\"12\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2005/12/15\"},{\"Year\":\"2005\",\"Month\":\"12\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2005/12/8\"},{\"Year\":\"2005\",\"Month\":\"12\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2005/12/1\"},{\"Year\":\"2005\",\"Month\":\"11\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2005/11/24\"},{\"Year\":\"2005\",\"Month\":\"11\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2005/11/17\"},{\"Year\":\"2005\",\"Month\":\"11\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2005/11/10\"},{\"Year\":\"2005\",\"Month\":\"11\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2005/11/3\"},{\"Year\":\"2005\",\"Month\":\"10\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2005/10/27\"},{\"Year\":\"2005\",\"Month\":\"10\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2005/10/20\"},{\"Year\":\"2005\",\"Month\":\"10\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2005/10/13\"},{\"Year\":\"2005\",\"Month\":\"10\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2005/10/6\"},{\"Year\":\"2005\",\"Month\":\"9\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2005/9/29\"},{\"Year\":\"2005\",\"Month\":\"9\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2005/9/22\"},{\"Year\":\"2005\",\"Month\":\"9\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2005/9/15\"},{\"Year\":\"2005\",\"Month\":\"9\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2005/9/8\"},{\"Year\":\"2005\",\"Month\":\"9\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2005/9/1\"},{\"Year\":\"2005\",\"Month\":\"8\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2005/8/25\"},{\"Year\":\"2005\",\"Month\":\"8\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2005/8/18\"},{\"Year\":\"2005\",\"Month\":\"8\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2005/8/11\"},{\"Year\":\"2005\",\"Month\":\"8\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2005/8/4\"},{\"Year\":\"2005\",\"Month\":\"7\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2005/7/28\"},{\"Year\":\"2005\",\"Month\":\"7\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2005/7/21\"},{\"Year\":\"2005\",\"Month\":\"7\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2005/7/14\"},{\"Year\":\"2005\",\"Month\":\"7\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2005/7/7\"},{\"Year\":\"2005\",\"Month\":\"6\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2005/6/30\"},{\"Year\":\"2005\",\"Month\":\"6\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2005/6/23\"},{\"Year\":\"2005\",\"Month\":\"6\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2005/6/16\"},{\"Year\":\"2005\",\"Month\":\"6\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2005/6/9\"},{\"Year\":\"2005\",\"Month\":\"6\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2005/6/2\"},{\"Year\":\"2005\",\"Month\":\"5\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2005/5/26\"},{\"Year\":\"2005\",\"Month\":\"5\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2005/5/19\"},{\"Year\":\"2005\",\"Month\":\"5\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2005/5/12\"},{\"Year\":\"2005\",\"Month\":\"5\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2005/5/5\"},{\"Year\":\"2005\",\"Month\":\"4\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2005/4/28\"},{\"Year\":\"2005\",\"Month\":\"4\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2005/4/21\"},{\"Year\":\"2005\",\"Month\":\"4\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2005/4/14\"},{\"Year\":\"2005\",\"Month\":\"4\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2005/4/7\"},{\"Year\":\"2005\",\"Month\":\"3\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2005/3/31\"},{\"Year\":\"2005\",\"Month\":\"3\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2005/3/24\"},{\"Year\":\"2005\",\"Month\":\"3\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2005/3/17\"},{\"Year\":\"2005\",\"Month\":\"3\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2005/3/10\"},{\"Year\":\"2005\",\"Month\":\"3\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2005/3/3\"},{\"Year\":\"2005\",\"Month\":\"2\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2005/2/24\"},{\"Year\":\"2005\",\"Month\":\"2\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2005/2/17\"},{\"Year\":\"2005\",\"Month\":\"2\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2005/2/10\"},{\"Year\":\"2005\",\"Month\":\"2\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2005/2/3\"},{\"Year\":\"2005\",\"Month\":\"1\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2005/1/27\"},{\"Year\":\"2005\",\"Month\":\"1\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2005/1/20\"},{\"Year\":\"2005\",\"Month\":\"1\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2005/1/13\"},{\"Year\":\"2005\",\"Month\":\"1\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2005/1/6\"},{\"Year\":\"2004\",\"Month\":\"12\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2004/12/30\"},{\"Year\":\"2004\",\"Month\":\"12\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2004/12/23\"},{\"Year\":\"2004\",\"Month\":\"12\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2004/12/16\"},{\"Year\":\"2004\",\"Month\":\"12\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2004/12/9\"},{\"Year\":\"2004\",\"Month\":\"12\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2004/12/2\"},{\"Year\":\"2004\",\"Month\":\"11\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2004/11/25\"},{\"Year\":\"2004\",\"Month\":\"11\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2004/11/18\"},{\"Year\":\"2004\",\"Month\":\"11\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2004/11/11\"},{\"Year\":\"2004\",\"Month\":\"11\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2004/11/4\"},{\"Year\":\"2004\",\"Month\":\"10\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2004/10/28\"},{\"Year\":\"2004\",\"Month\":\"10\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2004/10/21\"},{\"Year\":\"2004\",\"Month\":\"10\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2004/10/14\"},{\"Year\":\"2004\",\"Month\":\"10\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2004/10/7\"},{\"Year\":\"2004\",\"Month\":\"9\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2004/9/30\"},{\"Year\":\"2004\",\"Month\":\"9\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2004/9/23\"},{\"Year\":\"2004\",\"Month\":\"9\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2004/9/16\"},{\"Year\":\"2004\",\"Month\":\"9\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2004/9/9\"},{\"Year\":\"2004\",\"Month\":\"9\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2004/9/2\"},{\"Year\":\"2004\",\"Month\":\"8\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2004/8/26\"},{\"Year\":\"2004\",\"Month\":\"8\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2004/8/19\"},{\"Year\":\"2004\",\"Month\":\"8\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2004/8/12\"},{\"Year\":\"2004\",\"Month\":\"8\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2004/8/5\"},{\"Year\":\"2004\",\"Month\":\"7\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2004/7/29\"},{\"Year\":\"2004\",\"Month\":\"7\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2004/7/22\"},{\"Year\":\"2004\",\"Month\":\"7\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2004/7/15\"},{\"Year\":\"2004\",\"Month\":\"7\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2004/7/8\"},{\"Year\":\"2004\",\"Month\":\"7\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2004/7/1\"},{\"Year\":\"2004\",\"Month\":\"6\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2004/6/24\"},{\"Year\":\"2004\",\"Month\":\"6\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2004/6/17\"},{\"Year\":\"2004\",\"Month\":\"6\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2004/6/10\"},{\"Year\":\"2004\",\"Month\":\"6\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2004/6/3\"},{\"Year\":\"2004\",\"Month\":\"5\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2004/5/27\"},{\"Year\":\"2004\",\"Month\":\"5\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2004/5/20\"},{\"Year\":\"2004\",\"Month\":\"5\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2004/5/13\"},{\"Year\":\"2004\",\"Month\":\"5\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2004/5/6\"},{\"Year\":\"2004\",\"Month\":\"4\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2004/4/29\"},{\"Year\":\"2004\",\"Month\":\"4\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2004/4/22\"},{\"Year\":\"2004\",\"Month\":\"4\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2004/4/15\"},{\"Year\":\"2004\",\"Month\":\"4\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2004/4/8\"},{\"Year\":\"2004\",\"Month\":\"4\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2004/4/1\"},{\"Year\":\"2004\",\"Month\":\"3\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2004/3/25\"},{\"Year\":\"2004\",\"Month\":\"3\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2004/3/18\"},{\"Year\":\"2004\",\"Month\":\"3\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2004/3/11\"},{\"Year\":\"2004\",\"Month\":\"3\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2004/3/4\"},{\"Year\":\"2004\",\"Month\":\"2\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2004/2/26\"},{\"Year\":\"2004\",\"Month\":\"2\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2004/2/19\"},{\"Year\":\"2004\",\"Month\":\"2\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2004/2/12\"},{\"Year\":\"2004\",\"Month\":\"2\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2004/2/5\"},{\"Year\":\"2004\",\"Month\":\"1\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2004/1/29\"},{\"Year\":\"2004\",\"Month\":\"1\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2004/1/22\"},{\"Year\":\"2004\",\"Month\":\"1\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2004/1/15\"},{\"Year\":\"2004\",\"Month\":\"1\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2004/1/8\"},{\"Year\":\"2004\",\"Month\":\"1\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2004/1/1\"},{\"Year\":\"2003\",\"Month\":\"12\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2003/12/25\"},{\"Year\":\"2003\",\"Month\":\"12\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2003/12/18\"},{\"Year\":\"2003\",\"Month\":\"12\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2003/12/11\"},{\"Year\":\"2003\",\"Month\":\"12\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2003/12/4\"},{\"Year\":\"2003\",\"Month\":\"11\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2003/11/27\"},{\"Year\":\"2003\",\"Month\":\"11\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2003/11/20\"},{\"Year\":\"2003\",\"Month\":\"11\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2003/11/13\"},{\"Year\":\"2003\",\"Month\":\"11\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2003/11/6\"},{\"Year\":\"2003\",\"Month\":\"10\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2003/10/30\"},{\"Year\":\"2003\",\"Month\":\"10\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2003/10/23\"},{\"Year\":\"2003\",\"Month\":\"10\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2003/10/16\"},{\"Year\":\"2003\",\"Month\":\"10\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2003/10/9\"},{\"Year\":\"2003\",\"Month\":\"10\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2003/10/2\"},{\"Year\":\"2003\",\"Month\":\"9\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2003/9/25\"},{\"Year\":\"2003\",\"Month\":\"9\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2003/9/18\"},{\"Year\":\"2003\",\"Month\":\"9\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2003/9/11\"},{\"Year\":\"2003\",\"Month\":\"9\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2003/9/4\"},{\"Year\":\"2003\",\"Month\":\"8\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2003/8/28\"},{\"Year\":\"2003\",\"Month\":\"8\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2003/8/21\"},{\"Year\":\"2003\",\"Month\":\"8\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2003/8/14\"},{\"Year\":\"2003\",\"Month\":\"8\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2003/8/7\"},{\"Year\":\"2003\",\"Month\":\"7\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2003/7/31\"},{\"Year\":\"2003\",\"Month\":\"7\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2003/7/24\"},{\"Year\":\"2003\",\"Month\":\"7\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2003/7/17\"},{\"Year\":\"2003\",\"Month\":\"7\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2003/7/10\"},{\"Year\":\"2003\",\"Month\":\"7\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2003/7/3\"},{\"Year\":\"2003\",\"Month\":\"6\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2003/6/26\"},{\"Year\":\"2003\",\"Month\":\"6\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2003/6/19\"},{\"Year\":\"2003\",\"Month\":\"6\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2003/6/12\"},{\"Year\":\"2003\",\"Month\":\"6\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2003/6/5\"},{\"Year\":\"2003\",\"Month\":\"5\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2003/5/29\"},{\"Year\":\"2003\",\"Month\":\"5\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2003/5/22\"},{\"Year\":\"2003\",\"Month\":\"5\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2003/5/15\"},{\"Year\":\"2003\",\"Month\":\"5\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2003/5/8\"},{\"Year\":\"2003\",\"Month\":\"5\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2003/5/1\"},{\"Year\":\"2003\",\"Month\":\"4\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2003/4/24\"},{\"Year\":\"2003\",\"Month\":\"4\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2003/4/17\"},{\"Year\":\"2003\",\"Month\":\"4\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2003/4/10\"},{\"Year\":\"2003\",\"Month\":\"4\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2003/4/3\"},{\"Year\":\"2003\",\"Month\":\"3\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2003/3/27\"},{\"Year\":\"2003\",\"Month\":\"3\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2003/3/20\"},{\"Year\":\"2003\",\"Month\":\"3\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2003/3/13\"},{\"Year\":\"2003\",\"Month\":\"3\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2003/3/6\"},{\"Year\":\"2003\",\"Month\":\"2\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2003/2/27\"},{\"Year\":\"2003\",\"Month\":\"2\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2003/2/20\"},{\"Year\":\"2003\",\"Month\":\"2\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2003/2/13\"},{\"Year\":\"2003\",\"Month\":\"2\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2003/2/6\"},{\"Year\":\"2003\",\"Month\":\"1\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2003/1/30\"},{\"Year\":\"2003\",\"Month\":\"1\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2003/1/23\"},{\"Year\":\"2003\",\"Month\":\"1\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2003/1/16\"},{\"Year\":\"2003\",\"Month\":\"1\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2003/1/9\"},{\"Year\":\"2003\",\"Month\":\"1\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2003/1/2\"},{\"Year\":\"2002\",\"Month\":\"12\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2002/12/26\"},{\"Year\":\"2002\",\"Month\":\"12\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2002/12/19\"},{\"Year\":\"2002\",\"Month\":\"12\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2002/12/12\"},{\"Year\":\"2002\",\"Month\":\"12\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2002/12/5\"},{\"Year\":\"2002\",\"Month\":\"11\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2002/11/28\"},{\"Year\":\"2002\",\"Month\":\"11\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2002/11/21\"},{\"Year\":\"2002\",\"Month\":\"11\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2002/11/14\"},{\"Year\":\"2002\",\"Month\":\"11\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2002/11/7\"},{\"Year\":\"2002\",\"Month\":\"10\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2002/10/31\"},{\"Year\":\"2002\",\"Month\":\"10\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2002/10/24\"},{\"Year\":\"2002\",\"Month\":\"10\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2002/10/17\"},{\"Year\":\"2002\",\"Month\":\"10\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2002/10/10\"},{\"Year\":\"2002\",\"Month\":\"10\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2002/10/3\"},{\"Year\":\"2002\",\"Month\":\"9\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2002/9/26\"},{\"Year\":\"2002\",\"Month\":\"9\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2002/9/19\"},{\"Year\":\"2002\",\"Month\":\"9\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2002/9/12\"},{\"Year\":\"2002\",\"Month\":\"9\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2002/9/5\"},{\"Year\":\"2002\",\"Month\":\"8\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2002/8/29\"},{\"Year\":\"2002\",\"Month\":\"8\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2002/8/22\"},{\"Year\":\"2002\",\"Month\":\"8\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2002/8/15\"},{\"Year\":\"2002\",\"Month\":\"8\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2002/8/8\"},{\"Year\":\"2002\",\"Month\":\"8\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2002/8/1\"},{\"Year\":\"2002\",\"Month\":\"7\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2002/7/25\"},{\"Year\":\"2002\",\"Month\":\"7\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2002/7/18\"},{\"Year\":\"2002\",\"Month\":\"7\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2002/7/11\"},{\"Year\":\"2002\",\"Month\":\"7\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2002/7/4\"},{\"Year\":\"2002\",\"Month\":\"6\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2002/6/27\"},{\"Year\":\"2002\",\"Month\":\"6\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2002/6/20\"},{\"Year\":\"2002\",\"Month\":\"6\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2002/6/13\"},{\"Year\":\"2002\",\"Month\":\"6\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2002/6/6\"},{\"Year\":\"2002\",\"Month\":\"5\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2002/5/30\"},{\"Year\":\"2002\",\"Month\":\"5\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2002/5/23\"},{\"Year\":\"2002\",\"Month\":\"5\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2002/5/16\"},{\"Year\":\"2002\",\"Month\":\"5\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2002/5/9\"},{\"Year\":\"2002\",\"Month\":\"5\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2002/5/2\"},{\"Year\":\"2002\",\"Month\":\"4\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2002/4/25\"},{\"Year\":\"2002\",\"Month\":\"4\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2002/4/18\"},{\"Year\":\"2002\",\"Month\":\"4\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2002/4/11\"},{\"Year\":\"2002\",\"Month\":\"4\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2002/4/4\"},{\"Year\":\"2002\",\"Month\":\"3\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2002/3/28\"},{\"Year\":\"2002\",\"Month\":\"3\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2002/3/21\"},{\"Year\":\"2002\",\"Month\":\"3\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2002/3/14\"},{\"Year\":\"2002\",\"Month\":\"3\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2002/3/7\"},{\"Year\":\"2002\",\"Month\":\"2\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2002/2/28\"},{\"Year\":\"2002\",\"Month\":\"2\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2002/2/21\"},{\"Year\":\"2002\",\"Month\":\"2\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2002/2/14\"},{\"Year\":\"2002\",\"Month\":\"2\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2002/2/7\"},{\"Year\":\"2002\",\"Month\":\"1\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2002/1/31\"},{\"Year\":\"2002\",\"Month\":\"1\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2002/1/24\"},{\"Year\":\"2002\",\"Month\":\"1\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2002/1/17\"},{\"Year\":\"2002\",\"Month\":\"1\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2002/1/10\"},{\"Year\":\"2002\",\"Month\":\"1\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2002/1/3\"},{\"Year\":\"2001\",\"Month\":\"12\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2001/12/27\"},{\"Year\":\"2001\",\"Month\":\"12\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2001/12/20\"},{\"Year\":\"2001\",\"Month\":\"12\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2001/12/13\"},{\"Year\":\"2001\",\"Month\":\"12\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2001/12/6\"},{\"Year\":\"2001\",\"Month\":\"11\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2001/11/29\"},{\"Year\":\"2001\",\"Month\":\"11\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2001/11/22\"},{\"Year\":\"2001\",\"Month\":\"11\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2001/11/15\"},{\"Year\":\"2001\",\"Month\":\"11\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2001/11/8\"},{\"Year\":\"2001\",\"Month\":\"11\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2001/11/1\"},{\"Year\":\"2001\",\"Month\":\"10\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2001/10/25\"},{\"Year\":\"2001\",\"Month\":\"10\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2001/10/18\"},{\"Year\":\"2001\",\"Month\":\"10\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2001/10/11\"},{\"Year\":\"2001\",\"Month\":\"10\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2001/10/4\"},{\"Year\":\"2001\",\"Month\":\"9\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2001/9/27\"},{\"Year\":\"2001\",\"Month\":\"9\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2001/9/20\"},{\"Year\":\"2001\",\"Month\":\"9\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2001/9/13\"},{\"Year\":\"2001\",\"Month\":\"9\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2001/9/6\"},{\"Year\":\"2001\",\"Month\":\"8\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2001/8/30\"},{\"Year\":\"2001\",\"Month\":\"8\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2001/8/23\"},{\"Year\":\"2001\",\"Month\":\"8\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2001/8/16\"},{\"Year\":\"2001\",\"Month\":\"8\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2001/8/9\"},{\"Year\":\"2001\",\"Month\":\"8\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2001/8/2\"},{\"Year\":\"2001\",\"Month\":\"7\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2001/7/26\"},{\"Year\":\"2001\",\"Month\":\"7\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2001/7/19\"},{\"Year\":\"2001\",\"Month\":\"7\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2001/7/12\"},{\"Year\":\"2001\",\"Month\":\"7\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2001/7/5\"},{\"Year\":\"2001\",\"Month\":\"6\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2001/6/28\"},{\"Year\":\"2001\",\"Month\":\"6\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2001/6/21\"},{\"Year\":\"2001\",\"Month\":\"6\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2001/6/14\"},{\"Year\":\"2001\",\"Month\":\"6\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2001/6/7\"},{\"Year\":\"2001\",\"Month\":\"5\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2001/5/31\"},{\"Year\":\"2001\",\"Month\":\"5\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2001/5/24\"},{\"Year\":\"2001\",\"Month\":\"5\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2001/5/17\"},{\"Year\":\"2001\",\"Month\":\"5\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2001/5/10\"},{\"Year\":\"2001\",\"Month\":\"5\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2001/5/3\"},{\"Year\":\"2001\",\"Month\":\"4\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2001/4/26\"},{\"Year\":\"2001\",\"Month\":\"4\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2001/4/19\"},{\"Year\":\"2001\",\"Month\":\"4\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2001/4/12\"},{\"Year\":\"2001\",\"Month\":\"4\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2001/4/5\"},{\"Year\":\"2001\",\"Month\":\"3\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2001/3/29\"},{\"Year\":\"2001\",\"Month\":\"3\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2001/3/22\"},{\"Year\":\"2001\",\"Month\":\"3\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2001/3/15\"},{\"Year\":\"2001\",\"Month\":\"3\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2001/3/8\"},{\"Year\":\"2001\",\"Month\":\"3\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2001/3/1\"},{\"Year\":\"2001\",\"Month\":\"2\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2001/2/22\"},{\"Year\":\"2001\",\"Month\":\"2\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2001/2/15\"},{\"Year\":\"2001\",\"Month\":\"2\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2001/2/8\"},{\"Year\":\"2001\",\"Month\":\"2\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2001/2/1\"},{\"Year\":\"2001\",\"Month\":\"1\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2001/1/25\"},{\"Year\":\"2001\",\"Month\":\"1\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2001/1/18\"},{\"Year\":\"2001\",\"Month\":\"1\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2001/1/11\"},{\"Year\":\"2001\",\"Month\":\"1\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2001/1/4\"},{\"Year\":\"2000\",\"Month\":\"12\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2000/12/28\"},{\"Year\":\"2000\",\"Month\":\"12\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2000/12/21\"},{\"Year\":\"2000\",\"Month\":\"12\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2000/12/14\"},{\"Year\":\"2000\",\"Month\":\"12\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2000/12/7\"},{\"Year\":\"2000\",\"Month\":\"11\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2000/11/30\"},{\"Year\":\"2000\",\"Month\":\"11\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2000/11/23\"},{\"Year\":\"2000\",\"Month\":\"11\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2000/11/16\"},{\"Year\":\"2000\",\"Month\":\"11\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2000/11/9\"},{\"Year\":\"2000\",\"Month\":\"11\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2000/11/2\"},{\"Year\":\"2000\",\"Month\":\"10\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2000/10/26\"},{\"Year\":\"2000\",\"Month\":\"10\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2000/10/19\"},{\"Year\":\"2000\",\"Month\":\"10\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2000/10/12\"},{\"Year\":\"2000\",\"Month\":\"10\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2000/10/5\"},{\"Year\":\"2000\",\"Month\":\"9\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2000/9/28\"},{\"Year\":\"2000\",\"Month\":\"9\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2000/9/21\"},{\"Year\":\"2000\",\"Month\":\"9\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2000/9/14\"},{\"Year\":\"2000\",\"Month\":\"9\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2000/9/7\"},{\"Year\":\"2000\",\"Month\":\"8\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2000/8/31\"},{\"Year\":\"2000\",\"Month\":\"8\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2000/8/24\"},{\"Year\":\"2000\",\"Month\":\"8\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2000/8/17\"},{\"Year\":\"2000\",\"Month\":\"8\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2000/8/10\"},{\"Year\":\"2000\",\"Month\":\"8\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2000/8/3\"},{\"Year\":\"2000\",\"Month\":\"7\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2000/7/27\"},{\"Year\":\"2000\",\"Month\":\"7\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2000/7/20\"},{\"Year\":\"2000\",\"Month\":\"7\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2000/7/13\"},{\"Year\":\"2000\",\"Month\":\"7\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2000/7/6\"},{\"Year\":\"2000\",\"Month\":\"6\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2000/6/29\"},{\"Year\":\"2000\",\"Month\":\"6\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2000/6/22\"},{\"Year\":\"2000\",\"Month\":\"6\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2000/6/15\"},{\"Year\":\"2000\",\"Month\":\"6\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2000/6/8\"},{\"Year\":\"2000\",\"Month\":\"6\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2000/6/1\"},{\"Year\":\"2000\",\"Month\":\"5\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2000/5/25\"},{\"Year\":\"2000\",\"Month\":\"5\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2000/5/18\"},{\"Year\":\"2000\",\"Month\":\"5\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2000/5/11\"},{\"Year\":\"2000\",\"Month\":\"5\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2000/5/4\"},{\"Year\":\"2000\",\"Month\":\"4\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2000/4/27\"},{\"Year\":\"2000\",\"Month\":\"4\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2000/4/20\"},{\"Year\":\"2000\",\"Month\":\"4\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2000/4/13\"},{\"Year\":\"2000\",\"Month\":\"4\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2000/4/6\"},{\"Year\":\"2000\",\"Month\":\"3\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2000/3/30\"},{\"Year\":\"2000\",\"Month\":\"3\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2000/3/23\"},{\"Year\":\"2000\",\"Month\":\"3\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2000/3/16\"},{\"Year\":\"2000\",\"Month\":\"3\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2000/3/9\"},{\"Year\":\"2000\",\"Month\":\"3\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2000/3/2\"},{\"Year\":\"2000\",\"Month\":\"2\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2000/2/24\"},{\"Year\":\"2000\",\"Month\":\"2\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2000/2/17\"},{\"Year\":\"2000\",\"Month\":\"2\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2000/2/10\"},{\"Year\":\"2000\",\"Month\":\"2\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2000/2/3\"},{\"Year\":\"2000\",\"Month\":\"1\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2000/1/27\"},{\"Year\":\"2000\",\"Month\":\"1\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2000/1/20\"},{\"Year\":\"2000\",\"Month\":\"1\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2000/1/13\"},{\"Year\":\"2000\",\"Month\":\"1\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2000/1/6\"},{\"Year\":\"1999\",\"Month\":\"12\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1999/12/30\"},{\"Year\":\"1999\",\"Month\":\"12\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1999/12/23\"},{\"Year\":\"1999\",\"Month\":\"12\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1999/12/16\"},{\"Year\":\"1999\",\"Month\":\"12\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1999/12/9\"},{\"Year\":\"1999\",\"Month\":\"12\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1999/12/2\"},{\"Year\":\"1999\",\"Month\":\"11\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1999/11/25\"},{\"Year\":\"1999\",\"Month\":\"11\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1999/11/18\"},{\"Year\":\"1999\",\"Month\":\"11\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1999/11/11\"},{\"Year\":\"1999\",\"Month\":\"11\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1999/11/4\"},{\"Year\":\"1999\",\"Month\":\"10\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1999/10/28\"},{\"Year\":\"1999\",\"Month\":\"10\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1999/10/21\"},{\"Year\":\"1999\",\"Month\":\"10\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1999/10/14\"},{\"Year\":\"1999\",\"Month\":\"10\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1999/10/7\"},{\"Year\":\"1999\",\"Month\":\"9\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1999/9/30\"},{\"Year\":\"1999\",\"Month\":\"9\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1999/9/23\"},{\"Year\":\"1999\",\"Month\":\"9\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1999/9/16\"},{\"Year\":\"1999\",\"Month\":\"9\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1999/9/9\"},{\"Year\":\"1999\",\"Month\":\"9\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1999/9/2\"},{\"Year\":\"1999\",\"Month\":\"8\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1999/8/26\"},{\"Year\":\"1999\",\"Month\":\"8\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1999/8/19\"},{\"Year\":\"1999\",\"Month\":\"8\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1999/8/12\"},{\"Year\":\"1999\",\"Month\":\"8\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1999/8/5\"},{\"Year\":\"1999\",\"Month\":\"7\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1999/7/29\"},{\"Year\":\"1999\",\"Month\":\"7\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1999/7/22\"},{\"Year\":\"1999\",\"Month\":\"7\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1999/7/15\"},{\"Year\":\"1999\",\"Month\":\"7\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1999/7/8\"},{\"Year\":\"1999\",\"Month\":\"7\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1999/7/1\"},{\"Year\":\"1999\",\"Month\":\"6\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1999/6/24\"},{\"Year\":\"1999\",\"Month\":\"6\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1999/6/17\"},{\"Year\":\"1999\",\"Month\":\"6\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1999/6/10\"},{\"Year\":\"1999\",\"Month\":\"6\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1999/6/3\"},{\"Year\":\"1999\",\"Month\":\"5\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1999/5/27\"},{\"Year\":\"1999\",\"Month\":\"5\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1999/5/20\"},{\"Year\":\"1999\",\"Month\":\"5\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1999/5/13\"},{\"Year\":\"1999\",\"Month\":\"5\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1999/5/6\"},{\"Year\":\"1999\",\"Month\":\"4\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1999/4/29\"},{\"Year\":\"1999\",\"Month\":\"4\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1999/4/22\"},{\"Year\":\"1999\",\"Month\":\"4\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1999/4/15\"},{\"Year\":\"1999\",\"Month\":\"4\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1999/4/8\"},{\"Year\":\"1999\",\"Month\":\"4\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1999/4/1\"},{\"Year\":\"1999\",\"Month\":\"3\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1999/3/25\"},{\"Year\":\"1999\",\"Month\":\"3\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1999/3/18\"},{\"Year\":\"1999\",\"Month\":\"3\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1999/3/11\"},{\"Year\":\"1999\",\"Month\":\"3\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1999/3/4\"},{\"Year\":\"1999\",\"Month\":\"2\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1999/2/25\"},{\"Year\":\"1999\",\"Month\":\"2\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1999/2/18\"},{\"Year\":\"1999\",\"Month\":\"2\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1999/2/11\"},{\"Year\":\"1999\",\"Month\":\"2\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1999/2/4\"},{\"Year\":\"1999\",\"Month\":\"1\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1999/1/28\"},{\"Year\":\"1999\",\"Month\":\"1\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1999/1/21\"},{\"Year\":\"1999\",\"Month\":\"1\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1999/1/14\"},{\"Year\":\"1999\",\"Month\":\"1\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1999/1/7\"},{\"Year\":\"1998\",\"Month\":\"12\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/1998/12/31\"},{\"Year\":\"1998\",\"Month\":\"12\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1998/12/24\"},{\"Year\":\"1998\",\"Month\":\"12\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1998/12/17\"},{\"Year\":\"1998\",\"Month\":\"12\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1998/12/10\"},{\"Year\":\"1998\",\"Month\":\"12\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1998/12/3\"},{\"Year\":\"1998\",\"Month\":\"11\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1998/11/26\"},{\"Year\":\"1998\",\"Month\":\"11\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1998/11/19\"},{\"Year\":\"1998\",\"Month\":\"11\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1998/11/12\"},{\"Year\":\"1998\",\"Month\":\"11\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1998/11/5\"},{\"Year\":\"1998\",\"Month\":\"10\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1998/10/29\"},{\"Year\":\"1998\",\"Month\":\"10\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1998/10/22\"},{\"Year\":\"1998\",\"Month\":\"10\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1998/10/15\"},{\"Year\":\"1998\",\"Month\":\"10\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1998/10/8\"},{\"Year\":\"1998\",\"Month\":\"10\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1998/10/1\"},{\"Year\":\"1998\",\"Month\":\"9\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1998/9/24\"},{\"Year\":\"1998\",\"Month\":\"9\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1998/9/17\"},{\"Year\":\"1998\",\"Month\":\"9\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1998/9/10\"},{\"Year\":\"1998\",\"Month\":\"9\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1998/9/3\"},{\"Year\":\"1998\",\"Month\":\"8\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1998/8/27\"},{\"Year\":\"1998\",\"Month\":\"8\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1998/8/20\"},{\"Year\":\"1998\",\"Month\":\"8\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1998/8/13\"},{\"Year\":\"1998\",\"Month\":\"8\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1998/8/6\"},{\"Year\":\"1998\",\"Month\":\"7\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1998/7/30\"},{\"Year\":\"1998\",\"Month\":\"7\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1998/7/23\"},{\"Year\":\"1998\",\"Month\":\"7\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1998/7/16\"},{\"Year\":\"1998\",\"Month\":\"7\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1998/7/9\"},{\"Year\":\"1998\",\"Month\":\"7\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1998/7/2\"},{\"Year\":\"1998\",\"Month\":\"6\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1998/6/25\"},{\"Year\":\"1998\",\"Month\":\"6\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1998/6/18\"},{\"Year\":\"1998\",\"Month\":\"6\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1998/6/11\"},{\"Year\":\"1998\",\"Month\":\"6\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1998/6/4\"},{\"Year\":\"1998\",\"Month\":\"5\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1998/5/28\"},{\"Year\":\"1998\",\"Month\":\"5\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1998/5/21\"},{\"Year\":\"1998\",\"Month\":\"5\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1998/5/14\"},{\"Year\":\"1998\",\"Month\":\"5\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1998/5/7\"},{\"Year\":\"1998\",\"Month\":\"4\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1998/4/30\"},{\"Year\":\"1998\",\"Month\":\"4\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1998/4/23\"},{\"Year\":\"1998\",\"Month\":\"4\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1998/4/16\"},{\"Year\":\"1998\",\"Month\":\"4\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1998/4/9\"},{\"Year\":\"1998\",\"Month\":\"4\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1998/4/2\"},{\"Year\":\"1998\",\"Month\":\"3\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1998/3/26\"},{\"Year\":\"1998\",\"Month\":\"3\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1998/3/19\"},{\"Year\":\"1998\",\"Month\":\"3\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1998/3/12\"},{\"Year\":\"1998\",\"Month\":\"3\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1998/3/5\"},{\"Year\":\"1998\",\"Month\":\"2\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1998/2/26\"},{\"Year\":\"1998\",\"Month\":\"2\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1998/2/19\"},{\"Year\":\"1998\",\"Month\":\"2\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1998/2/12\"},{\"Year\":\"1998\",\"Month\":\"2\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1998/2/5\"},{\"Year\":\"1998\",\"Month\":\"1\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1998/1/29\"},{\"Year\":\"1998\",\"Month\":\"1\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1998/1/22\"},{\"Year\":\"1998\",\"Month\":\"1\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1998/1/15\"},{\"Year\":\"1998\",\"Month\":\"1\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1998/1/8\"},{\"Year\":\"1998\",\"Month\":\"1\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1998/1/1\"},{\"Year\":\"1997\",\"Month\":\"12\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1997/12/25\"},{\"Year\":\"1997\",\"Month\":\"12\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1997/12/18\"},{\"Year\":\"1997\",\"Month\":\"12\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1997/12/11\"},{\"Year\":\"1997\",\"Month\":\"12\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1997/12/4\"},{\"Year\":\"1997\",\"Month\":\"11\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1997/11/27\"},{\"Year\":\"1997\",\"Month\":\"11\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1997/11/20\"},{\"Year\":\"1997\",\"Month\":\"11\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1997/11/13\"},{\"Year\":\"1997\",\"Month\":\"11\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1997/11/6\"},{\"Year\":\"1997\",\"Month\":\"10\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1997/10/30\"},{\"Year\":\"1997\",\"Month\":\"10\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1997/10/23\"},{\"Year\":\"1997\",\"Month\":\"10\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1997/10/16\"},{\"Year\":\"1997\",\"Month\":\"10\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1997/10/9\"},{\"Year\":\"1997\",\"Month\":\"10\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1997/10/2\"},{\"Year\":\"1997\",\"Month\":\"9\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1997/9/25\"},{\"Year\":\"1997\",\"Month\":\"9\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1997/9/18\"},{\"Year\":\"1997\",\"Month\":\"9\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1997/9/11\"},{\"Year\":\"1997\",\"Month\":\"9\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1997/9/4\"},{\"Year\":\"1997\",\"Month\":\"8\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1997/8/28\"},{\"Year\":\"1997\",\"Month\":\"8\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1997/8/21\"},{\"Year\":\"1997\",\"Month\":\"8\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1997/8/14\"},{\"Year\":\"1997\",\"Month\":\"8\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1997/8/7\"},{\"Year\":\"1997\",\"Month\":\"7\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/1997/7/31\"},{\"Year\":\"1997\",\"Month\":\"7\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1997/7/24\"},{\"Year\":\"1997\",\"Month\":\"7\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1997/7/17\"},{\"Year\":\"1997\",\"Month\":\"7\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1997/7/10\"},{\"Year\":\"1997\",\"Month\":\"7\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1997/7/3\"},{\"Year\":\"1997\",\"Month\":\"6\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1997/6/26\"},{\"Year\":\"1997\",\"Month\":\"6\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1997/6/19\"},{\"Year\":\"1997\",\"Month\":\"6\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1997/6/12\"},{\"Year\":\"1997\",\"Month\":\"6\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1997/6/5\"},{\"Year\":\"1997\",\"Month\":\"5\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1997/5/29\"},{\"Year\":\"1997\",\"Month\":\"5\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1997/5/22\"},{\"Year\":\"1997\",\"Month\":\"5\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1997/5/15\"},{\"Year\":\"1997\",\"Month\":\"5\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1997/5/8\"},{\"Year\":\"1997\",\"Month\":\"5\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1997/5/1\"},{\"Year\":\"1997\",\"Month\":\"4\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1997/4/24\"},{\"Year\":\"1997\",\"Month\":\"4\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1997/4/17\"},{\"Year\":\"1997\",\"Month\":\"4\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1997/4/10\"},{\"Year\":\"1997\",\"Month\":\"4\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1997/4/3\"},{\"Year\":\"1997\",\"Month\":\"3\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1997/3/27\"},{\"Year\":\"1997\",\"Month\":\"3\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1997/3/20\"},{\"Year\":\"1997\",\"Month\":\"3\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1997/3/13\"},{\"Year\":\"1997\",\"Month\":\"3\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1997/3/6\"},{\"Year\":\"1997\",\"Month\":\"2\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1997/2/27\"},{\"Year\":\"1997\",\"Month\":\"2\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1997/2/20\"},{\"Year\":\"1997\",\"Month\":\"2\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1997/2/13\"},{\"Year\":\"1997\",\"Month\":\"2\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1997/2/6\"},{\"Year\":\"1997\",\"Month\":\"1\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1997/1/30\"},{\"Year\":\"1997\",\"Month\":\"1\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1997/1/23\"},{\"Year\":\"1997\",\"Month\":\"1\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1997/1/16\"},{\"Year\":\"1997\",\"Month\":\"1\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1997/1/9\"},{\"Year\":\"1997\",\"Month\":\"1\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1997/1/2\"},{\"Year\":\"1996\",\"Month\":\"12\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1996/12/26\"},{\"Year\":\"1996\",\"Month\":\"12\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1996/12/19\"},{\"Year\":\"1996\",\"Month\":\"12\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1996/12/12\"},{\"Year\":\"1996\",\"Month\":\"12\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1996/12/5\"},{\"Year\":\"1996\",\"Month\":\"11\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1996/11/28\"},{\"Year\":\"1996\",\"Month\":\"11\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1996/11/21\"},{\"Year\":\"1996\",\"Month\":\"11\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1996/11/14\"},{\"Year\":\"1996\",\"Month\":\"11\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1996/11/7\"},{\"Year\":\"1996\",\"Month\":\"10\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/1996/10/31\"},{\"Year\":\"1996\",\"Month\":\"10\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1996/10/24\"},{\"Year\":\"1996\",\"Month\":\"10\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1996/10/17\"},{\"Year\":\"1996\",\"Month\":\"10\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1996/10/10\"},{\"Year\":\"1996\",\"Month\":\"10\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1996/10/3\"},{\"Year\":\"1996\",\"Month\":\"9\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1996/9/26\"},{\"Year\":\"1996\",\"Month\":\"9\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1996/9/19\"},{\"Year\":\"1996\",\"Month\":\"9\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1996/9/12\"},{\"Year\":\"1996\",\"Month\":\"9\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1996/9/5\"},{\"Year\":\"1996\",\"Month\":\"8\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1996/8/29\"},{\"Year\":\"1996\",\"Month\":\"8\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1996/8/22\"},{\"Year\":\"1996\",\"Month\":\"8\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1996/8/15\"},{\"Year\":\"1996\",\"Month\":\"8\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1996/8/8\"},{\"Year\":\"1996\",\"Month\":\"8\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1996/8/1\"},{\"Year\":\"1996\",\"Month\":\"7\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1996/7/25\"},{\"Year\":\"1996\",\"Month\":\"7\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1996/7/18\"},{\"Year\":\"1996\",\"Month\":\"7\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1996/7/11\"},{\"Year\":\"1996\",\"Month\":\"7\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1996/7/4\"},{\"Year\":\"1996\",\"Month\":\"6\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1996/6/27\"},{\"Year\":\"1996\",\"Month\":\"6\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1996/6/20\"},{\"Year\":\"1996\",\"Month\":\"6\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1996/6/13\"},{\"Year\":\"1996\",\"Month\":\"6\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1996/6/6\"},{\"Year\":\"1996\",\"Month\":\"5\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1996/5/30\"},{\"Year\":\"1996\",\"Month\":\"5\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1996/5/23\"},{\"Year\":\"1996\",\"Month\":\"5\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1996/5/16\"},{\"Year\":\"1996\",\"Month\":\"5\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1996/5/9\"},{\"Year\":\"1996\",\"Month\":\"5\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1996/5/2\"},{\"Year\":\"1996\",\"Month\":\"4\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1996/4/25\"},{\"Year\":\"1996\",\"Month\":\"4\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1996/4/18\"},{\"Year\":\"1996\",\"Month\":\"4\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1996/4/11\"},{\"Year\":\"1996\",\"Month\":\"4\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1996/4/4\"},{\"Year\":\"1996\",\"Month\":\"3\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1996/3/28\"},{\"Year\":\"1996\",\"Month\":\"3\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1996/3/21\"},{\"Year\":\"1996\",\"Month\":\"3\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1996/3/14\"},{\"Year\":\"1996\",\"Month\":\"3\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1996/3/7\"},{\"Year\":\"1996\",\"Month\":\"2\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1996/2/29\"},{\"Year\":\"1996\",\"Month\":\"2\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1996/2/22\"},{\"Year\":\"1996\",\"Month\":\"2\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1996/2/15\"},{\"Year\":\"1996\",\"Month\":\"2\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1996/2/8\"},{\"Year\":\"1996\",\"Month\":\"2\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1996/2/1\"},{\"Year\":\"1996\",\"Month\":\"1\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1996/1/25\"},{\"Year\":\"1996\",\"Month\":\"1\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1996/1/18\"},{\"Year\":\"1996\",\"Month\":\"1\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1996/1/11\"},{\"Year\":\"1996\",\"Month\":\"1\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1996/1/4\"},{\"Year\":\"1995\",\"Month\":\"12\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1995/12/28\"},{\"Year\":\"1995\",\"Month\":\"12\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1995/12/21\"},{\"Year\":\"1995\",\"Month\":\"12\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1995/12/14\"},{\"Year\":\"1995\",\"Month\":\"12\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1995/12/7\"},{\"Year\":\"1995\",\"Month\":\"11\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1995/11/30\"},{\"Year\":\"1995\",\"Month\":\"11\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1995/11/23\"},{\"Year\":\"1995\",\"Month\":\"11\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1995/11/16\"},{\"Year\":\"1995\",\"Month\":\"11\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1995/11/9\"},{\"Year\":\"1995\",\"Month\":\"11\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1995/11/2\"},{\"Year\":\"1995\",\"Month\":\"10\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1995/10/26\"},{\"Year\":\"1995\",\"Month\":\"10\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1995/10/19\"},{\"Year\":\"1995\",\"Month\":\"10\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1995/10/12\"},{\"Year\":\"1995\",\"Month\":\"10\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1995/10/5\"},{\"Year\":\"1995\",\"Month\":\"9\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1995/9/28\"},{\"Year\":\"1995\",\"Month\":\"9\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1995/9/21\"},{\"Year\":\"1995\",\"Month\":\"9\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1995/9/14\"},{\"Year\":\"1995\",\"Month\":\"9\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1995/9/7\"},{\"Year\":\"1995\",\"Month\":\"8\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/1995/8/31\"},{\"Year\":\"1995\",\"Month\":\"8\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1995/8/24\"},{\"Year\":\"1995\",\"Month\":\"8\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1995/8/17\"},{\"Year\":\"1995\",\"Month\":\"8\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1995/8/10\"},{\"Year\":\"1995\",\"Month\":\"8\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1995/8/3\"},{\"Year\":\"1995\",\"Month\":\"7\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1995/7/27\"},{\"Year\":\"1995\",\"Month\":\"7\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1995/7/20\"},{\"Year\":\"1995\",\"Month\":\"7\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1995/7/13\"},{\"Year\":\"1995\",\"Month\":\"7\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1995/7/6\"},{\"Year\":\"1995\",\"Month\":\"6\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1995/6/29\"},{\"Year\":\"1995\",\"Month\":\"6\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1995/6/22\"},{\"Year\":\"1995\",\"Month\":\"6\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1995/6/15\"},{\"Year\":\"1995\",\"Month\":\"6\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1995/6/8\"},{\"Year\":\"1995\",\"Month\":\"6\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1995/6/1\"},{\"Year\":\"1995\",\"Month\":\"5\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1995/5/25\"},{\"Year\":\"1995\",\"Month\":\"5\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1995/5/18\"},{\"Year\":\"1995\",\"Month\":\"5\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1995/5/11\"},{\"Year\":\"1995\",\"Month\":\"5\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1995/5/4\"},{\"Year\":\"1995\",\"Month\":\"4\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1995/4/27\"},{\"Year\":\"1995\",\"Month\":\"4\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1995/4/20\"},{\"Year\":\"1995\",\"Month\":\"4\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1995/4/13\"},{\"Year\":\"1995\",\"Month\":\"4\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1995/4/6\"},{\"Year\":\"1995\",\"Month\":\"3\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1995/3/30\"},{\"Year\":\"1995\",\"Month\":\"3\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1995/3/23\"},{\"Year\":\"1995\",\"Month\":\"3\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1995/3/16\"},{\"Year\":\"1995\",\"Month\":\"3\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1995/3/9\"},{\"Year\":\"1995\",\"Month\":\"3\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1995/3/2\"},{\"Year\":\"1995\",\"Month\":\"2\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1995/2/23\"},{\"Year\":\"1995\",\"Month\":\"2\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1995/2/16\"},{\"Year\":\"1995\",\"Month\":\"2\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1995/2/9\"},{\"Year\":\"1995\",\"Month\":\"2\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1995/2/2\"},{\"Year\":\"1995\",\"Month\":\"1\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1995/1/26\"},{\"Year\":\"1995\",\"Month\":\"1\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1995/1/19\"},{\"Year\":\"1995\",\"Month\":\"1\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1995/1/12\"},{\"Year\":\"1995\",\"Month\":\"1\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1995/1/5\"},{\"Year\":\"1994\",\"Month\":\"12\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1994/12/29\"},{\"Year\":\"1994\",\"Month\":\"12\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1994/12/22\"},{\"Year\":\"1994\",\"Month\":\"12\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1994/12/15\"},{\"Year\":\"1994\",\"Month\":\"12\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1994/12/8\"},{\"Year\":\"1994\",\"Month\":\"12\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1994/12/1\"},{\"Year\":\"1994\",\"Month\":\"11\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1994/11/24\"},{\"Year\":\"1994\",\"Month\":\"11\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1994/11/17\"},{\"Year\":\"1994\",\"Month\":\"11\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1994/11/10\"},{\"Year\":\"1994\",\"Month\":\"11\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1994/11/3\"},{\"Year\":\"1994\",\"Month\":\"10\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1994/10/27\"},{\"Year\":\"1994\",\"Month\":\"10\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1994/10/20\"},{\"Year\":\"1994\",\"Month\":\"10\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1994/10/13\"},{\"Year\":\"1994\",\"Month\":\"10\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1994/10/6\"},{\"Year\":\"1994\",\"Month\":\"9\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/1994/9/29\"},{\"Year\":\"1994\",\"Month\":\"9\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/1994/9/22\"},{\"Year\":\"1994\",\"Month\":\"9\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/1994/9/15\"},{\"Year\":\"1994\",\"Month\":\"9\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/1994/9/8\"},{\"Year\":\"1994\",\"Month\":\"9\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/1994/9/1\"},{\"Year\":\"1994\",\"Month\":\"8\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1994/8/25\"},{\"Year\":\"1994\",\"Month\":\"8\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1994/8/18\"},{\"Year\":\"1994\",\"Month\":\"8\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1994/8/11\"},{\"Year\":\"1994\",\"Month\":\"8\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1994/8/4\"},{\"Year\":\"1994\",\"Month\":\"7\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1994/7/28\"},{\"Year\":\"1994\",\"Month\":\"7\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1994/7/21\"},{\"Year\":\"1994\",\"Month\":\"7\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1994/7/14\"},{\"Year\":\"1994\",\"Month\":\"7\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1994/7/7\"},{\"Year\":\"1994\",\"Month\":\"6\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1994/6/30\"},{\"Year\":\"1994\",\"Month\":\"6\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1994/6/23\"},{\"Year\":\"1994\",\"Month\":\"6\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1994/6/16\"},{\"Year\":\"1994\",\"Month\":\"6\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1994/6/9\"},{\"Year\":\"1994\",\"Month\":\"6\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1994/6/2\"},{\"Year\":\"1994\",\"Month\":\"5\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/1994/5/26\"},{\"Year\":\"1994\",\"Month\":\"5\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/1994/5/19\"},{\"Year\":\"1994\",\"Month\":\"5\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/1994/5/12\"},{\"Year\":\"1994\",\"Month\":\"5\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/1994/5/5\"},{\"Year\":\"1994\",\"Month\":\"4\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1994/4/28\"},{\"Year\":\"1994\",\"Month\":\"4\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/1994/4/21\"},{\"Year\":\"1994\",\"Month\":\"4\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/1994/4/14\"},{\"Year\":\"1994\",\"Month\":\"4\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/1994/4/7\"},{\"Year\":\"1994\",\"Month\":\"3\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/1994/3/31\"},{\"Year\":\"1994\",\"Month\":\"3\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1994/3/24\"},{\"Year\":\"1994\",\"Month\":\"3\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1994/3/17\"},{\"Year\":\"1994\",\"Month\":\"3\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1994/3/10\"},{\"Year\":\"1994\",\"Month\":\"3\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1994/3/3\"},{\"Year\":\"1994\",\"Month\":\"2\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/1994/2/24\"},{\"Year\":\"1994\",\"Month\":\"2\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/1994/2/17\"},{\"Year\":\"1994\",\"Month\":\"2\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/1994/2/10\"},{\"Year\":\"1994\",\"Month\":\"2\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/1994/2/3\"},{\"Year\":\"1994\",\"Month\":\"1\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/1994/1/27\"},{\"Year\":\"1994\",\"Month\":\"1\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/1994/1/20\"},{\"Year\":\"1994\",\"Month\":\"1\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/1994/1/13\"},{\"Year\":\"1994\",\"Month\":\"1\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/1994/1/6\"},{\"Year\":\"1993\",\"Month\":\"12\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/1993/12/30\"},{\"Year\":\"1993\",\"Month\":\"12\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/1993/12/23\"},{\"Year\":\"1993\",\"Month\":\"12\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/1993/12/16\"},{\"Year\":\"1993\",\"Month\":\"12\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/1993/12/9\"},{\"Year\":\"1993\",\"Month\":\"12\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/1993/12/2\"},{\"Year\":\"1993\",\"Month\":\"11\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/1993/11/25\"},{\"Year\":\"1993\",\"Month\":\"11\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/1993/11/18\"},{\"Year\":\"1993\",\"Month\":\"11\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/1993/11/11\"},{\"Year\":\"1993\",\"Month\":\"11\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/1993/11/4\"},{\"Year\":\"1993\",\"Month\":\"10\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/1993/10/28\"}]}"
32
+ http_version: "1.1"
33
+ - !ruby/struct:VCR::HTTPInteraction
34
+ request: !ruby/struct:VCR::Request
35
+ method: :get
36
+ uri: http://api.usatoday.com:80/open/bestsellers/books/dates?api_key=foobar&encoding=json&maxyear=2010&minyear=2009
37
+ body:
38
+ headers:
39
+ response: !ruby/struct:VCR::Response
40
+ status: !ruby/struct:VCR::ResponseStatus
41
+ code: 200
42
+ message: OK
43
+ headers:
44
+ p3p:
45
+ - CP="CAO CUR ADM DEVa TAIi PSAa PSDa CONi OUR OTRi IND PHY ONL UNI COM NAV DEM", POLICYREF="URI"
46
+ x-aspnet-version:
47
+ - 2.0.50727
48
+ content-type:
49
+ - application/json; charset=utf-8
50
+ date:
51
+ - Tue, 02 Aug 2011 19:11:59 GMT
52
+ server:
53
+ - Microsoft-IIS/7.5
54
+ x-mashery-responder:
55
+ - proxyworker-i-2566f34c.mashery.com
56
+ content-length:
57
+ - "8510"
58
+ accept-ranges:
59
+ - bytes
60
+ cache-control:
61
+ - private
62
+ body: "{\"APIParameters\":{\"ISBN\":\"\",\"Year\":\"\",\"Month\":\"\",\"Date\":\"\",\"MinYear\":\"2009\",\"MaxYear\":\"2010\",\"Title\":\"\",\"Author\":\"\",\"Category\":\"\",\"Class\":\"\",\"ExcludeCurrentWeek\":\"true\",\"RecentWeekAllowance\":\"24\",\"Count\":0},\"BookListDates\":[{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2010/12/30\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2010/12/23\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2010/12/16\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2010/12/9\"},{\"Year\":\"2010\",\"Month\":\"12\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2010/12/2\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/11/25\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/11/18\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/11/11\"},{\"Year\":\"2010\",\"Month\":\"11\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/11/4\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2010/10/28\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2010/10/21\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2010/10/14\"},{\"Year\":\"2010\",\"Month\":\"10\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2010/10/7\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2010/9/30\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2010/9/23\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2010/9/16\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2010/9/9\"},{\"Year\":\"2010\",\"Month\":\"9\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2010/9/2\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2010/8/26\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2010/8/19\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2010/8/12\"},{\"Year\":\"2010\",\"Month\":\"8\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2010/8/5\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2010/7/29\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2010/7/22\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2010/7/15\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2010/7/8\"},{\"Year\":\"2010\",\"Month\":\"7\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2010/7/1\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2010/6/24\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2010/6/17\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2010/6/10\"},{\"Year\":\"2010\",\"Month\":\"6\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2010/6/3\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2010/5/27\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2010/5/20\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2010/5/13\"},{\"Year\":\"2010\",\"Month\":\"5\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2010/5/6\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2010/4/29\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2010/4/22\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2010/4/15\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2010/4/8\"},{\"Year\":\"2010\",\"Month\":\"4\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2010/4/1\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/3/25\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/3/18\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/3/11\"},{\"Year\":\"2010\",\"Month\":\"3\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/3/4\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2010/2/25\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2010/2/18\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2010/2/11\"},{\"Year\":\"2010\",\"Month\":\"2\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2010/2/4\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2010/1/28\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2010/1/21\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2010/1/14\"},{\"Year\":\"2010\",\"Month\":\"1\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2010/1/7\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2009/12/31\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2009/12/24\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2009/12/17\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2009/12/10\"},{\"Year\":\"2009\",\"Month\":\"12\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2009/12/3\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/11/26\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/11/19\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/11/12\"},{\"Year\":\"2009\",\"Month\":\"11\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/11/5\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2009/10/29\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2009/10/22\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2009/10/15\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2009/10/8\"},{\"Year\":\"2009\",\"Month\":\"10\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2009/10/1\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2009/9/24\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2009/9/17\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2009/9/10\"},{\"Year\":\"2009\",\"Month\":\"9\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2009/9/3\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2009/8/27\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2009/8/20\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2009/8/13\"},{\"Year\":\"2009\",\"Month\":\"8\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2009/8/6\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2009/7/30\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2009/7/23\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2009/7/16\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2009/7/9\"},{\"Year\":\"2009\",\"Month\":\"7\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2009/7/2\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2009/6/25\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2009/6/18\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2009/6/11\"},{\"Year\":\"2009\",\"Month\":\"6\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2009/6/4\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2009/5/28\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2009/5/21\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2009/5/14\"},{\"Year\":\"2009\",\"Month\":\"5\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2009/5/7\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2009/4/30\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2009/4/23\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2009/4/16\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2009/4/9\"},{\"Year\":\"2009\",\"Month\":\"4\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2009/4/2\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/3/26\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/3/19\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/3/12\"},{\"Year\":\"2009\",\"Month\":\"3\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/3/5\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2009/2/26\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2009/2/19\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2009/2/12\"},{\"Year\":\"2009\",\"Month\":\"2\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2009/2/5\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2009/1/29\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2009/1/22\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2009/1/15\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2009/1/8\"},{\"Year\":\"2009\",\"Month\":\"1\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2009/1/1\"}]}"
63
+ http_version: "1.1"
64
+ - !ruby/struct:VCR::HTTPInteraction
65
+ request: !ruby/struct:VCR::Request
66
+ method: :get
67
+ uri: http://api.usatoday.com:80/open/bestsellers/books/dates/2008?api_key=foobar&encoding=json&maxyear=&minyear=
68
+ body:
69
+ headers:
70
+ response: !ruby/struct:VCR::Response
71
+ status: !ruby/struct:VCR::ResponseStatus
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ x-aspnet-version:
76
+ - 2.0.50727
77
+ p3p:
78
+ - CP="CAO CUR ADM DEVa TAIi PSAa PSDa CONi OUR OTRi IND PHY ONL UNI COM NAV DEM", POLICYREF="URI"
79
+ content-type:
80
+ - application/json; charset=utf-8
81
+ x-mashery-responder:
82
+ - proxyworker-i-3966f350.mashery.com
83
+ server:
84
+ - Microsoft-IIS/7.5
85
+ date:
86
+ - Tue, 02 Aug 2011 19:12:00 GMT
87
+ content-length:
88
+ - "4327"
89
+ cache-control:
90
+ - private
91
+ accept-ranges:
92
+ - bytes
93
+ body: "{\"APIParameters\":{\"ISBN\":\"\",\"Year\":\"2008\",\"Month\":\"\",\"Date\":\"\",\"MinYear\":\"\",\"MaxYear\":\"\",\"Title\":\"\",\"Author\":\"\",\"Category\":\"\",\"Class\":\"\",\"ExcludeCurrentWeek\":\"true\",\"RecentWeekAllowance\":\"24\",\"Count\":0},\"BookListDates\":[{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2008/12/25\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2008/12/18\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2008/12/11\"},{\"Year\":\"2008\",\"Month\":\"12\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2008/12/4\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2008/11/27\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2008/11/20\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2008/11/13\"},{\"Year\":\"2008\",\"Month\":\"11\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2008/11/6\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"30\",\"BookListAPIUrl\":\"BookLists/2008/10/30\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"23\",\"BookListAPIUrl\":\"BookLists/2008/10/23\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"16\",\"BookListAPIUrl\":\"BookLists/2008/10/16\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"9\",\"BookListAPIUrl\":\"BookLists/2008/10/9\"},{\"Year\":\"2008\",\"Month\":\"10\",\"Date\":\"2\",\"BookListAPIUrl\":\"BookLists/2008/10/2\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"25\",\"BookListAPIUrl\":\"BookLists/2008/9/25\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"18\",\"BookListAPIUrl\":\"BookLists/2008/9/18\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"11\",\"BookListAPIUrl\":\"BookLists/2008/9/11\"},{\"Year\":\"2008\",\"Month\":\"9\",\"Date\":\"4\",\"BookListAPIUrl\":\"BookLists/2008/9/4\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2008/8/28\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2008/8/21\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2008/8/14\"},{\"Year\":\"2008\",\"Month\":\"8\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2008/8/7\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2008/7/31\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/7/24\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/7/17\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/7/10\"},{\"Year\":\"2008\",\"Month\":\"7\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/7/3\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"26\",\"BookListAPIUrl\":\"BookLists/2008/6/26\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"19\",\"BookListAPIUrl\":\"BookLists/2008/6/19\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"12\",\"BookListAPIUrl\":\"BookLists/2008/6/12\"},{\"Year\":\"2008\",\"Month\":\"6\",\"Date\":\"5\",\"BookListAPIUrl\":\"BookLists/2008/6/5\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"29\",\"BookListAPIUrl\":\"BookLists/2008/5/29\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"22\",\"BookListAPIUrl\":\"BookLists/2008/5/22\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"15\",\"BookListAPIUrl\":\"BookLists/2008/5/15\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"8\",\"BookListAPIUrl\":\"BookLists/2008/5/8\"},{\"Year\":\"2008\",\"Month\":\"5\",\"Date\":\"1\",\"BookListAPIUrl\":\"BookLists/2008/5/1\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/4/24\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/4/17\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/4/10\"},{\"Year\":\"2008\",\"Month\":\"4\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/4/3\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"27\",\"BookListAPIUrl\":\"BookLists/2008/3/27\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"20\",\"BookListAPIUrl\":\"BookLists/2008/3/20\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"13\",\"BookListAPIUrl\":\"BookLists/2008/3/13\"},{\"Year\":\"2008\",\"Month\":\"3\",\"Date\":\"6\",\"BookListAPIUrl\":\"BookLists/2008/3/6\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"28\",\"BookListAPIUrl\":\"BookLists/2008/2/28\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"21\",\"BookListAPIUrl\":\"BookLists/2008/2/21\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"14\",\"BookListAPIUrl\":\"BookLists/2008/2/14\"},{\"Year\":\"2008\",\"Month\":\"2\",\"Date\":\"7\",\"BookListAPIUrl\":\"BookLists/2008/2/7\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"31\",\"BookListAPIUrl\":\"BookLists/2008/1/31\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"24\",\"BookListAPIUrl\":\"BookLists/2008/1/24\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"17\",\"BookListAPIUrl\":\"BookLists/2008/1/17\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"10\",\"BookListAPIUrl\":\"BookLists/2008/1/10\"},{\"Year\":\"2008\",\"Month\":\"1\",\"Date\":\"3\",\"BookListAPIUrl\":\"BookLists/2008/1/3\"}]}"
94
+ http_version: "1.1"